Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5b80b4b5
authored
Nov 01, 2019
by
tonihei
Committed by
Oliver Woodman
Nov 05, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Update initial bitrate estimates.
PiperOrigin-RevId: 277911191
parent
b972fd1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
171 additions
and
174 deletions
library/core/src/main/java/com/google/android/exoplayer2/upstream/DefaultBandwidthMeter.java
library/core/src/main/java/com/google/android/exoplayer2/upstream/DefaultBandwidthMeter.java
View file @
5b80b4b5
...
...
@@ -56,19 +56,19 @@ public final class DefaultBandwidthMeter implements BandwidthMeter, TransferList
/** Default initial Wifi bitrate estimate in bits per second. */
public
static
final
long
[]
DEFAULT_INITIAL_BITRATE_ESTIMATES_WIFI
=
new
long
[]
{
5_
400_000
,
3_400_000
,
1_900_000
,
1_100_000
,
40
0_000
};
new
long
[]
{
5_
700_000
,
3_500_000
,
2_000_000
,
1_100_000
,
47
0_000
};
/** Default initial 2G bitrate estimates in bits per second. */
public
static
final
long
[]
DEFAULT_INITIAL_BITRATE_ESTIMATES_2G
=
new
long
[]
{
170_000
,
139_000
,
122_000
,
107_000
,
90
_000
};
new
long
[]
{
200_000
,
148_000
,
132_000
,
115_000
,
95
_000
};
/** Default initial 3G bitrate estimates in bits per second. */
public
static
final
long
[]
DEFAULT_INITIAL_BITRATE_ESTIMATES_3G
=
new
long
[]
{
2_
100_000
,
1_300_000
,
960_000
,
770_000
,
45
0_000
};
new
long
[]
{
2_
200_000
,
1_300_000
,
970_000
,
810_000
,
49
0_000
};
/** Default initial 4G bitrate estimates in bits per second. */
public
static
final
long
[]
DEFAULT_INITIAL_BITRATE_ESTIMATES_4G
=
new
long
[]
{
6_000_000
,
3_400_000
,
2_100_000
,
1_400_000
,
57
0_000
};
new
long
[]
{
5_300_000
,
3_200_000
,
2_000_000
,
1_400_000
,
69
0_000
};
/**
* Default initial bitrate estimate used when the device is offline or the network type cannot be
...
...
@@ -487,247 +487,244 @@ public final class DefaultBandwidthMeter implements BandwidthMeter, TransferList
private
static
Map
<
String
,
int
[]>
createInitialBitrateCountryGroupAssignment
()
{
HashMap
<
String
,
int
[]>
countryGroupAssignment
=
new
HashMap
<>();
countryGroupAssignment
.
put
(
"AD"
,
new
int
[]
{
1
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"AD"
,
new
int
[]
{
1
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"AE"
,
new
int
[]
{
1
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"AF"
,
new
int
[]
{
4
,
4
,
3
,
3
});
countryGroupAssignment
.
put
(
"AG"
,
new
int
[]
{
3
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"AI"
,
new
int
[]
{
1
,
0
,
1
,
3
});
countryGroupAssignment
.
put
(
"AL"
,
new
int
[]
{
1
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"AM"
,
new
int
[]
{
2
,
2
,
3
,
2
});
countryGroupAssignment
.
put
(
"AG"
,
new
int
[]
{
3
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"AI"
,
new
int
[]
{
1
,
0
,
0
,
3
});
countryGroupAssignment
.
put
(
"AL"
,
new
int
[]
{
1
,
2
,
0
,
1
});
countryGroupAssignment
.
put
(
"AM"
,
new
int
[]
{
2
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"AO"
,
new
int
[]
{
3
,
4
,
2
,
0
});
countryGroupAssignment
.
put
(
"AQ"
,
new
int
[]
{
4
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"AR"
,
new
int
[]
{
2
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"AS"
,
new
int
[]
{
3
,
3
,
4
,
1
});
countryGroupAssignment
.
put
(
"AT"
,
new
int
[]
{
0
,
2
,
0
,
0
});
countryGroupAssignment
.
put
(
"AU"
,
new
int
[]
{
0
,
1
,
1
,
1
});
countryGroupAssignment
.
put
(
"AW"
,
new
int
[]
{
1
,
1
,
0
,
2
});
countryGroupAssignment
.
put
(
"AX"
,
new
int
[]
{
0
,
2
,
1
,
0
});
countryGroupAssignment
.
put
(
"AZ"
,
new
int
[]
{
3
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"BA"
,
new
int
[]
{
1
,
1
,
1
,
2
});
countryGroupAssignment
.
put
(
"BB"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"BD"
,
new
int
[]
{
2
,
2
,
3
,
2
});
countryGroupAssignment
.
put
(
"AS"
,
new
int
[]
{
3
,
0
,
4
,
2
});
countryGroupAssignment
.
put
(
"AT"
,
new
int
[]
{
0
,
3
,
0
,
0
});
countryGroupAssignment
.
put
(
"AU"
,
new
int
[]
{
0
,
3
,
0
,
1
});
countryGroupAssignment
.
put
(
"AW"
,
new
int
[]
{
1
,
1
,
0
,
3
});
countryGroupAssignment
.
put
(
"AX"
,
new
int
[]
{
0
,
3
,
0
,
2
});
countryGroupAssignment
.
put
(
"AZ"
,
new
int
[]
{
3
,
3
,
3
,
3
});
countryGroupAssignment
.
put
(
"BA"
,
new
int
[]
{
1
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"BB"
,
new
int
[]
{
0
,
2
,
0
,
0
});
countryGroupAssignment
.
put
(
"BD"
,
new
int
[]
{
2
,
1
,
3
,
3
});
countryGroupAssignment
.
put
(
"BE"
,
new
int
[]
{
0
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"BF"
,
new
int
[]
{
4
,
4
,
3
,
1
});
countryGroupAssignment
.
put
(
"BF"
,
new
int
[]
{
4
,
4
,
4
,
1
});
countryGroupAssignment
.
put
(
"BG"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"BH"
,
new
int
[]
{
2
,
1
,
3
,
4
});
countryGroupAssignment
.
put
(
"BI"
,
new
int
[]
{
4
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"BJ"
,
new
int
[]
{
4
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"BL"
,
new
int
[]
{
1
,
0
,
2
,
3
});
countryGroupAssignment
.
put
(
"BM"
,
new
int
[]
{
1
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"BN"
,
new
int
[]
{
4
,
2
,
3
,
3
});
countryGroupAssignment
.
put
(
"BO"
,
new
int
[]
{
2
,
2
,
3
,
2
});
countryGroupAssignment
.
put
(
"BQ"
,
new
int
[]
{
1
,
0
,
3
,
4
});
countryGroupAssignment
.
put
(
"BI"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"BJ"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"BL"
,
new
int
[]
{
1
,
0
,
2
,
2
});
countryGroupAssignment
.
put
(
"BM"
,
new
int
[]
{
1
,
2
,
0
,
0
});
countryGroupAssignment
.
put
(
"BN"
,
new
int
[]
{
4
,
1
,
3
,
2
});
countryGroupAssignment
.
put
(
"BO"
,
new
int
[]
{
1
,
2
,
3
,
2
});
countryGroupAssignment
.
put
(
"BQ"
,
new
int
[]
{
1
,
1
,
2
,
4
});
countryGroupAssignment
.
put
(
"BR"
,
new
int
[]
{
2
,
3
,
3
,
2
});
countryGroupAssignment
.
put
(
"BS"
,
new
int
[]
{
2
,
0
,
1
,
4
});
countryGroupAssignment
.
put
(
"BT"
,
new
int
[]
{
3
,
0
,
2
,
1
});
countryGroupAssignment
.
put
(
"BS"
,
new
int
[]
{
2
,
1
,
1
,
4
});
countryGroupAssignment
.
put
(
"BT"
,
new
int
[]
{
3
,
0
,
3
,
1
});
countryGroupAssignment
.
put
(
"BW"
,
new
int
[]
{
4
,
4
,
1
,
2
});
countryGroupAssignment
.
put
(
"BY"
,
new
int
[]
{
0
,
1
,
1
,
2
});
countryGroupAssignment
.
put
(
"BZ"
,
new
int
[]
{
2
,
2
,
3
,
1
});
countryGroupAssignment
.
put
(
"CA"
,
new
int
[]
{
0
,
3
,
3
,
3
});
countryGroupAssignment
.
put
(
"CD"
,
new
int
[]
{
4
,
4
,
3
,
2
});
countryGroupAssignment
.
put
(
"CF"
,
new
int
[]
{
4
,
3
,
3
,
4
});
countryGroupAssignment
.
put
(
"CG"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"CH"
,
new
int
[]
{
0
,
0
,
1
,
1
});
countryGroupAssignment
.
put
(
"BZ"
,
new
int
[]
{
2
,
2
,
2
,
1
});
countryGroupAssignment
.
put
(
"CA"
,
new
int
[]
{
0
,
3
,
1
,
3
});
countryGroupAssignment
.
put
(
"CD"
,
new
int
[]
{
4
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"CF"
,
new
int
[]
{
4
,
4
,
3
,
0
});
countryGroupAssignment
.
put
(
"CG"
,
new
int
[]
{
3
,
4
,
2
,
4
});
countryGroupAssignment
.
put
(
"CH"
,
new
int
[]
{
0
,
0
,
1
,
0
});
countryGroupAssignment
.
put
(
"CI"
,
new
int
[]
{
3
,
4
,
3
,
3
});
countryGroupAssignment
.
put
(
"CK"
,
new
int
[]
{
2
,
4
,
1
,
0
});
countryGroupAssignment
.
put
(
"CL"
,
new
int
[]
{
2
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"CM"
,
new
int
[]
{
3
,
4
,
2
,
1
});
countryGroupAssignment
.
put
(
"CN"
,
new
int
[]
{
2
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"CL"
,
new
int
[]
{
1
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"CM"
,
new
int
[]
{
3
,
4
,
3
,
1
});
countryGroupAssignment
.
put
(
"CN"
,
new
int
[]
{
2
,
0
,
2
,
3
});
countryGroupAssignment
.
put
(
"CO"
,
new
int
[]
{
2
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"CR"
,
new
int
[]
{
2
,
2
,
4
,
4
});
countryGroupAssignment
.
put
(
"CR"
,
new
int
[]
{
2
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"CU"
,
new
int
[]
{
4
,
4
,
3
,
1
});
countryGroupAssignment
.
put
(
"CV"
,
new
int
[]
{
2
,
3
,
2
,
4
});
countryGroupAssignment
.
put
(
"CW"
,
new
int
[]
{
1
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"CX"
,
new
int
[]
{
2
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"CY"
,
new
int
[]
{
1
,
1
,
1
,
1
});
countryGroupAssignment
.
put
(
"CV"
,
new
int
[]
{
2
,
3
,
1
,
2
});
countryGroupAssignment
.
put
(
"CW"
,
new
int
[]
{
1
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"CY"
,
new
int
[]
{
1
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"CZ"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"DE"
,
new
int
[]
{
0
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"DJ"
,
new
int
[]
{
3
,
3
,
4
,
0
});
countryGroupAssignment
.
put
(
"DK"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"DM"
,
new
int
[]
{
1
,
0
,
0
,
3
});
countryGroupAssignment
.
put
(
"DE"
,
new
int
[]
{
0
,
1
,
1
,
3
});
countryGroupAssignment
.
put
(
"DJ"
,
new
int
[]
{
4
,
3
,
4
,
1
});
countryGroupAssignment
.
put
(
"DK"
,
new
int
[]
{
0
,
0
,
1
,
1
});
countryGroupAssignment
.
put
(
"DM"
,
new
int
[]
{
1
,
0
,
1
,
3
});
countryGroupAssignment
.
put
(
"DO"
,
new
int
[]
{
3
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"DZ"
,
new
int
[]
{
3
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"EC"
,
new
int
[]
{
2
,
4
,
4
,
2
});
countryGroupAssignment
.
put
(
"EE"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"EC"
,
new
int
[]
{
2
,
3
,
4
,
3
});
countryGroupAssignment
.
put
(
"EE"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"EG"
,
new
int
[]
{
3
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"EH"
,
new
int
[]
{
2
,
0
,
3
,
3
});
countryGroupAssignment
.
put
(
"ER"
,
new
int
[]
{
4
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"ER"
,
new
int
[]
{
4
,
2
,
2
,
0
});
countryGroupAssignment
.
put
(
"ES"
,
new
int
[]
{
0
,
1
,
1
,
1
});
countryGroupAssignment
.
put
(
"ET"
,
new
int
[]
{
4
,
4
,
4
,
0
});
countryGroupAssignment
.
put
(
"FI"
,
new
int
[]
{
0
,
0
,
1
,
0
});
countryGroupAssignment
.
put
(
"FJ"
,
new
int
[]
{
3
,
1
,
3
,
3
});
countryGroupAssignment
.
put
(
"FK"
,
new
int
[]
{
4
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"FM"
,
new
int
[]
{
4
,
2
,
4
,
0
});
countryGroupAssignment
.
put
(
"FJ"
,
new
int
[]
{
3
,
0
,
3
,
3
});
countryGroupAssignment
.
put
(
"FK"
,
new
int
[]
{
3
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"FM"
,
new
int
[]
{
4
,
0
,
4
,
0
});
countryGroupAssignment
.
put
(
"FO"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"FR"
,
new
int
[]
{
1
,
0
,
3
,
1
});
countryGroupAssignment
.
put
(
"GA"
,
new
int
[]
{
3
,
3
,
2
,
1
});
countryGroupAssignment
.
put
(
"GA"
,
new
int
[]
{
3
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"GB"
,
new
int
[]
{
0
,
1
,
3
,
3
});
countryGroupAssignment
.
put
(
"GD"
,
new
int
[]
{
2
,
0
,
4
,
4
});
countryGroupAssignment
.
put
(
"GE"
,
new
int
[]
{
1
,
1
,
0
,
3
});
countryGroupAssignment
.
put
(
"GF"
,
new
int
[]
{
1
,
2
,
4
,
4
});
countryGroupAssignment
.
put
(
"GG"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"GH"
,
new
int
[]
{
3
,
3
,
3
,
2
});
countryGroupAssignment
.
put
(
"GE"
,
new
int
[]
{
1
,
1
,
1
,
4
});
countryGroupAssignment
.
put
(
"GF"
,
new
int
[]
{
2
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"GG"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"GH"
,
new
int
[]
{
3
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"GI"
,
new
int
[]
{
0
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"GL"
,
new
int
[]
{
2
,
2
,
3
,
4
});
countryGroupAssignment
.
put
(
"GM"
,
new
int
[]
{
4
,
3
,
3
,
2
});
countryGroupAssignment
.
put
(
"GN"
,
new
int
[]
{
4
,
4
,
4
,
0
});
countryGroupAssignment
.
put
(
"GP"
,
new
int
[]
{
2
,
2
,
1
,
3
});
countryGroupAssignment
.
put
(
"GQ"
,
new
int
[]
{
4
,
3
,
3
,
0
});
countryGroupAssignment
.
put
(
"GR"
,
new
int
[]
{
1
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"GT"
,
new
int
[]
{
3
,
3
,
3
,
4
});
countryGroupAssignment
.
put
(
"GL"
,
new
int
[]
{
2
,
2
,
0
,
2
});
countryGroupAssignment
.
put
(
"GM"
,
new
int
[]
{
4
,
4
,
3
,
4
});
countryGroupAssignment
.
put
(
"GN"
,
new
int
[]
{
3
,
4
,
4
,
2
});
countryGroupAssignment
.
put
(
"GP"
,
new
int
[]
{
2
,
1
,
1
,
4
});
countryGroupAssignment
.
put
(
"GQ"
,
new
int
[]
{
4
,
4
,
3
,
0
});
countryGroupAssignment
.
put
(
"GR"
,
new
int
[]
{
1
,
1
,
0
,
2
});
countryGroupAssignment
.
put
(
"GT"
,
new
int
[]
{
3
,
3
,
3
,
3
});
countryGroupAssignment
.
put
(
"GU"
,
new
int
[]
{
1
,
2
,
4
,
4
});
countryGroupAssignment
.
put
(
"GW"
,
new
int
[]
{
4
,
4
,
4
,
0
});
countryGroupAssignment
.
put
(
"GY"
,
new
int
[]
{
3
,
4
,
1
,
0
});
countryGroupAssignment
.
put
(
"HK"
,
new
int
[]
{
0
,
1
,
4
,
4
});
countryGroupAssignment
.
put
(
"HN"
,
new
int
[]
{
3
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"HR"
,
new
int
[]
{
1
,
0
,
0
,
2
});
countryGroupAssignment
.
put
(
"HT"
,
new
int
[]
{
3
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"HU"
,
new
int
[]
{
0
,
0
,
1
,
0
});
countryGroupAssignment
.
put
(
"GW"
,
new
int
[]
{
4
,
4
,
4
,
1
});
countryGroupAssignment
.
put
(
"GY"
,
new
int
[]
{
3
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"HK"
,
new
int
[]
{
0
,
2
,
3
,
4
});
countryGroupAssignment
.
put
(
"HN"
,
new
int
[]
{
3
,
2
,
3
,
2
});
countryGroupAssignment
.
put
(
"HR"
,
new
int
[]
{
1
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"HT"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"HU"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"ID"
,
new
int
[]
{
3
,
2
,
3
,
4
});
countryGroupAssignment
.
put
(
"IE"
,
new
int
[]
{
0
,
0
,
3
,
2
});
countryGroupAssignment
.
put
(
"IL"
,
new
int
[]
{
0
,
1
,
2
,
3
});
countryGroupAssignment
.
put
(
"IE"
,
new
int
[]
{
1
,
0
,
1
,
1
});
countryGroupAssignment
.
put
(
"IL"
,
new
int
[]
{
0
,
0
,
2
,
3
});
countryGroupAssignment
.
put
(
"IM"
,
new
int
[]
{
0
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"IN"
,
new
int
[]
{
2
,
2
,
4
,
4
});
countryGroupAssignment
.
put
(
"IO"
,
new
int
[]
{
4
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"IQ"
,
new
int
[]
{
3
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"IR"
,
new
int
[]
{
1
,
0
,
1
,
0
});
countryGroupAssignment
.
put
(
"IS"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"IT"
,
new
int
[]
{
1
,
0
,
1
,
1
});
countryGroupAssignment
.
put
(
"IO"
,
new
int
[]
{
4
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"IQ"
,
new
int
[]
{
3
,
3
,
4
,
2
});
countryGroupAssignment
.
put
(
"IR"
,
new
int
[]
{
3
,
0
,
2
,
2
});
countryGroupAssignment
.
put
(
"IS"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"IT"
,
new
int
[]
{
1
,
0
,
1
,
2
});
countryGroupAssignment
.
put
(
"JE"
,
new
int
[]
{
1
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"JM"
,
new
int
[]
{
3
,
2
,
2
,
1
});
countryGroupAssignment
.
put
(
"JO"
,
new
int
[]
{
1
,
1
,
1
,
2
});
countryGroupAssignment
.
put
(
"JP"
,
new
int
[]
{
0
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"KE"
,
new
int
[]
{
3
,
3
,
3
,
3
});
countryGroupAssignment
.
put
(
"KG"
,
new
int
[]
{
1
,
1
,
2
,
3
});
countryGroupAssignment
.
put
(
"KH"
,
new
int
[]
{
2
,
0
,
4
,
4
});
countryGroupAssignment
.
put
(
"JM"
,
new
int
[]
{
2
,
3
,
3
,
1
});
countryGroupAssignment
.
put
(
"JO"
,
new
int
[]
{
1
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"JP"
,
new
int
[]
{
0
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"KE"
,
new
int
[]
{
3
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"KG"
,
new
int
[]
{
1
,
1
,
2
,
2
});
countryGroupAssignment
.
put
(
"KH"
,
new
int
[]
{
1
,
0
,
4
,
4
});
countryGroupAssignment
.
put
(
"KI"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"KM"
,
new
int
[]
{
4
,
4
,
3
,
3
});
countryGroupAssignment
.
put
(
"KN"
,
new
int
[]
{
1
,
0
,
1
,
4
});
countryGroupAssignment
.
put
(
"KP"
,
new
int
[]
{
1
,
2
,
0
,
2
});
countryGroupAssignment
.
put
(
"KR"
,
new
int
[]
{
0
,
3
,
0
,
2
});
countryGroupAssignment
.
put
(
"KW"
,
new
int
[]
{
2
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"KY"
,
new
int
[]
{
1
,
1
,
0
,
2
});
countryGroupAssignment
.
put
(
"KZ"
,
new
int
[]
{
1
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"LA"
,
new
int
[]
{
2
,
1
,
1
,
0
});
countryGroupAssignment
.
put
(
"KM"
,
new
int
[]
{
4
,
3
,
2
,
3
});
countryGroupAssignment
.
put
(
"KN"
,
new
int
[]
{
1
,
0
,
1
,
3
});
countryGroupAssignment
.
put
(
"KP"
,
new
int
[]
{
4
,
2
,
4
,
2
});
countryGroupAssignment
.
put
(
"KR"
,
new
int
[]
{
0
,
1
,
1
,
1
});
countryGroupAssignment
.
put
(
"KW"
,
new
int
[]
{
2
,
3
,
1
,
1
});
countryGroupAssignment
.
put
(
"KY"
,
new
int
[]
{
1
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"KZ"
,
new
int
[]
{
1
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"LA"
,
new
int
[]
{
2
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"LB"
,
new
int
[]
{
3
,
2
,
0
,
0
});
countryGroupAssignment
.
put
(
"LC"
,
new
int
[]
{
2
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"LI"
,
new
int
[]
{
0
,
0
,
2
,
2
});
countryGroupAssignment
.
put
(
"LK"
,
new
int
[]
{
1
,
1
,
2
,
2
});
countryGroupAssignment
.
put
(
"LR"
,
new
int
[]
{
3
,
4
,
4
,
1
});
countryGroupAssignment
.
put
(
"LC"
,
new
int
[]
{
1
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"LI"
,
new
int
[]
{
0
,
0
,
2
,
4
});
countryGroupAssignment
.
put
(
"LK"
,
new
int
[]
{
2
,
1
,
2
,
3
});
countryGroupAssignment
.
put
(
"LR"
,
new
int
[]
{
3
,
4
,
3
,
1
});
countryGroupAssignment
.
put
(
"LS"
,
new
int
[]
{
3
,
3
,
2
,
0
});
countryGroupAssignment
.
put
(
"LT"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"LU"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"LU"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"LV"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"LY"
,
new
int
[]
{
4
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"MA"
,
new
int
[]
{
2
,
1
,
2
,
2
});
countryGroupAssignment
.
put
(
"MC"
,
new
int
[]
{
1
,
0
,
1
,
0
});
countryGroupAssignment
.
put
(
"LY"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"MA"
,
new
int
[]
{
2
,
1
,
2
,
1
});
countryGroupAssignment
.
put
(
"MC"
,
new
int
[]
{
0
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"MD"
,
new
int
[]
{
1
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"ME"
,
new
int
[]
{
1
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"MF"
,
new
int
[]
{
1
,
4
,
2
,
1
});
countryGroupAssignment
.
put
(
"MG"
,
new
int
[]
{
3
,
4
,
1
,
3
});
countryGroupAssignment
.
put
(
"MH"
,
new
int
[]
{
4
,
0
,
2
,
3
});
countryGroupAssignment
.
put
(
"ME"
,
new
int
[]
{
1
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"MF"
,
new
int
[]
{
1
,
1
,
1
,
1
});
countryGroupAssignment
.
put
(
"MG"
,
new
int
[]
{
3
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"MH"
,
new
int
[]
{
4
,
0
,
2
,
4
});
countryGroupAssignment
.
put
(
"MK"
,
new
int
[]
{
1
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"ML"
,
new
int
[]
{
4
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"MM"
,
new
int
[]
{
2
,
3
,
1
,
2
});
countryGroupAssignment
.
put
(
"MN"
,
new
int
[]
{
2
,
3
,
2
,
4
});
countryGroupAssignment
.
put
(
"ML"
,
new
int
[]
{
4
,
4
,
2
,
0
});
countryGroupAssignment
.
put
(
"MM"
,
new
int
[]
{
3
,
3
,
1
,
2
});
countryGroupAssignment
.
put
(
"MN"
,
new
int
[]
{
2
,
3
,
2
,
3
});
countryGroupAssignment
.
put
(
"MO"
,
new
int
[]
{
0
,
0
,
4
,
4
});
countryGroupAssignment
.
put
(
"MP"
,
new
int
[]
{
0
,
2
,
4
,
4
});
countryGroupAssignment
.
put
(
"MQ"
,
new
int
[]
{
1
,
1
,
1
,
3
});
countryGroupAssignment
.
put
(
"MR"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"MS"
,
new
int
[]
{
1
,
4
,
0
,
3
});
countryGroupAssignment
.
put
(
"MQ"
,
new
int
[]
{
2
,
1
,
1
,
4
});
countryGroupAssignment
.
put
(
"MR"
,
new
int
[]
{
4
,
2
,
4
,
2
});
countryGroupAssignment
.
put
(
"MS"
,
new
int
[]
{
1
,
2
,
3
,
3
});
countryGroupAssignment
.
put
(
"MT"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"MU"
,
new
int
[]
{
2
,
2
,
3
,
4
});
countryGroupAssignment
.
put
(
"MV"
,
new
int
[]
{
3
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"MW"
,
new
int
[]
{
4
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"MX"
,
new
int
[]
{
2
,
4
,
3
,
2
});
countryGroupAssignment
.
put
(
"MY"
,
new
int
[]
{
2
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"MZ"
,
new
int
[]
{
3
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"NA"
,
new
int
[]
{
3
,
2
,
2
,
1
});
countryGroupAssignment
.
put
(
"NC"
,
new
int
[]
{
2
,
1
,
3
,
2
});
countryGroupAssignment
.
put
(
"MV"
,
new
int
[]
{
4
,
3
,
0
,
2
});
countryGroupAssignment
.
put
(
"MW"
,
new
int
[]
{
3
,
2
,
1
,
0
});
countryGroupAssignment
.
put
(
"MX"
,
new
int
[]
{
2
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"MY"
,
new
int
[]
{
2
,
2
,
3
,
3
});
countryGroupAssignment
.
put
(
"MZ"
,
new
int
[]
{
3
,
3
,
2
,
1
});
countryGroupAssignment
.
put
(
"NA"
,
new
int
[]
{
3
,
3
,
2
,
1
});
countryGroupAssignment
.
put
(
"NC"
,
new
int
[]
{
2
,
0
,
3
,
3
});
countryGroupAssignment
.
put
(
"NE"
,
new
int
[]
{
4
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"NF"
,
new
int
[]
{
1
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"NG"
,
new
int
[]
{
3
,
4
,
3
,
2
});
countryGroupAssignment
.
put
(
"NI"
,
new
int
[]
{
3
,
3
,
3
,
4
});
countryGroupAssignment
.
put
(
"NL"
,
new
int
[]
{
0
,
2
,
4
,
3
});
countryGroupAssignment
.
put
(
"NO"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"NP"
,
new
int
[]
{
3
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"NR"
,
new
int
[]
{
4
,
0
,
4
,
0
});
countryGroupAssignment
.
put
(
"NU"
,
new
int
[]
{
2
,
2
,
2
,
1
});
countryGroupAssignment
.
put
(
"NZ"
,
new
int
[]
{
0
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"OM"
,
new
int
[]
{
2
,
2
,
1
,
3
});
countryGroupAssignment
.
put
(
"NG"
,
new
int
[]
{
3
,
4
,
3
,
1
});
countryGroupAssignment
.
put
(
"NI"
,
new
int
[]
{
3
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"NL"
,
new
int
[]
{
0
,
2
,
3
,
3
});
countryGroupAssignment
.
put
(
"NO"
,
new
int
[]
{
0
,
1
,
1
,
0
});
countryGroupAssignment
.
put
(
"NP"
,
new
int
[]
{
2
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"NR"
,
new
int
[]
{
4
,
0
,
3
,
1
});
countryGroupAssignment
.
put
(
"NZ"
,
new
int
[]
{
0
,
0
,
1
,
2
});
countryGroupAssignment
.
put
(
"OM"
,
new
int
[]
{
3
,
2
,
1
,
3
});
countryGroupAssignment
.
put
(
"PA"
,
new
int
[]
{
1
,
3
,
3
,
4
});
countryGroupAssignment
.
put
(
"PE"
,
new
int
[]
{
2
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"PF"
,
new
int
[]
{
3
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"PG"
,
new
int
[]
{
4
,
3
,
1
,
1
});
countryGroupAssignment
.
put
(
"PH"
,
new
int
[]
{
3
,
0
,
4
,
4
});
countryGroupAssignment
.
put
(
"PF"
,
new
int
[]
{
2
,
2
,
0
,
1
});
countryGroupAssignment
.
put
(
"PG"
,
new
int
[]
{
4
,
3
,
3
,
1
});
countryGroupAssignment
.
put
(
"PH"
,
new
int
[]
{
3
,
0
,
3
,
4
});
countryGroupAssignment
.
put
(
"PK"
,
new
int
[]
{
3
,
3
,
3
,
3
});
countryGroupAssignment
.
put
(
"PL"
,
new
int
[]
{
1
,
1
,
1
,
3
});
countryGroupAssignment
.
put
(
"PM"
,
new
int
[]
{
0
,
2
,
0
,
0
});
countryGroupAssignment
.
put
(
"PR"
,
new
int
[]
{
2
,
1
,
3
,
3
});
countryGroupAssignment
.
put
(
"PS"
,
new
int
[]
{
3
,
3
,
1
,
4
});
countryGroupAssignment
.
put
(
"PT"
,
new
int
[]
{
1
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"PW"
,
new
int
[]
{
2
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"PY"
,
new
int
[]
{
3
,
1
,
3
,
3
});
countryGroupAssignment
.
put
(
"QA"
,
new
int
[]
{
2
,
3
,
0
,
1
});
countryGroupAssignment
.
put
(
"PL"
,
new
int
[]
{
1
,
0
,
1
,
3
});
countryGroupAssignment
.
put
(
"PM"
,
new
int
[]
{
0
,
2
,
2
,
0
});
countryGroupAssignment
.
put
(
"PR"
,
new
int
[]
{
1
,
2
,
3
,
3
});
countryGroupAssignment
.
put
(
"PS"
,
new
int
[]
{
3
,
3
,
2
,
4
});
countryGroupAssignment
.
put
(
"PT"
,
new
int
[]
{
1
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"PW"
,
new
int
[]
{
2
,
1
,
2
,
0
});
countryGroupAssignment
.
put
(
"PY"
,
new
int
[]
{
2
,
0
,
2
,
3
});
countryGroupAssignment
.
put
(
"QA"
,
new
int
[]
{
2
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"RE"
,
new
int
[]
{
1
,
0
,
2
,
2
});
countryGroupAssignment
.
put
(
"RO"
,
new
int
[]
{
0
,
1
,
1
,
2
});
countryGroupAssignment
.
put
(
"RS"
,
new
int
[]
{
1
,
2
,
0
,
0
});
countryGroupAssignment
.
put
(
"RU"
,
new
int
[]
{
0
,
1
,
1
,
1
});
countryGroupAssignment
.
put
(
"RW"
,
new
int
[]
{
3
,
4
,
2
,
4
});
countryGroupAssignment
.
put
(
"SA"
,
new
int
[]
{
2
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"RW"
,
new
int
[]
{
4
,
4
,
2
,
4
});
countryGroupAssignment
.
put
(
"SA"
,
new
int
[]
{
2
,
2
,
2
,
1
});
countryGroupAssignment
.
put
(
"SB"
,
new
int
[]
{
4
,
4
,
3
,
0
});
countryGroupAssignment
.
put
(
"SC"
,
new
int
[]
{
4
,
2
,
0
,
1
});
countryGroupAssignment
.
put
(
"SD"
,
new
int
[]
{
4
,
4
,
4
,
2
});
countryGroupAssignment
.
put
(
"SD"
,
new
int
[]
{
4
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"SE"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"SG"
,
new
int
[]
{
1
,
2
,
3
,
3
});
countryGroupAssignment
.
put
(
"SG"
,
new
int
[]
{
0
,
2
,
3
,
3
});
countryGroupAssignment
.
put
(
"SH"
,
new
int
[]
{
4
,
4
,
2
,
3
});
countryGroupAssignment
.
put
(
"SI"
,
new
int
[]
{
0
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"SJ"
,
new
int
[]
{
0
,
0
,
2
,
0
});
countryGroupAssignment
.
put
(
"SK"
,
new
int
[]
{
0
,
1
,
0
,
1
});
countryGroupAssignment
.
put
(
"SL"
,
new
int
[]
{
4
,
3
,
2
,
4
});
countryGroupAssignment
.
put
(
"SM"
,
new
int
[]
{
0
,
0
,
1
,
3
});
countryGroupAssignment
.
put
(
"SN"
,
new
int
[]
{
4
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"SO"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"SR"
,
new
int
[]
{
3
,
2
,
2
,
4
});
countryGroupAssignment
.
put
(
"SS"
,
new
int
[]
{
4
,
2
,
4
,
2
});
countryGroupAssignment
.
put
(
"SI"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"SJ"
,
new
int
[]
{
2
,
0
,
2
,
4
});
countryGroupAssignment
.
put
(
"SK"
,
new
int
[]
{
0
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"SL"
,
new
int
[]
{
4
,
3
,
3
,
3
});
countryGroupAssignment
.
put
(
"SM"
,
new
int
[]
{
0
,
0
,
2
,
4
});
countryGroupAssignment
.
put
(
"SN"
,
new
int
[]
{
3
,
4
,
4
,
2
});
countryGroupAssignment
.
put
(
"SO"
,
new
int
[]
{
3
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"SR"
,
new
int
[]
{
2
,
2
,
1
,
0
});
countryGroupAssignment
.
put
(
"SS"
,
new
int
[]
{
4
,
3
,
4
,
3
});
countryGroupAssignment
.
put
(
"ST"
,
new
int
[]
{
3
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"SV"
,
new
int
[]
{
2
,
3
,
3
,
4
});
countryGroupAssignment
.
put
(
"SX"
,
new
int
[]
{
2
,
4
,
1
,
0
});
countryGroupAssignment
.
put
(
"SY"
,
new
int
[]
{
4
,
4
,
1
,
0
});
countryGroupAssignment
.
put
(
"SZ"
,
new
int
[]
{
3
,
4
,
2
,
3
});
countryGroupAssignment
.
put
(
"TC"
,
new
int
[]
{
1
,
1
,
3
,
1
});
countryGroupAssignment
.
put
(
"TD"
,
new
int
[]
{
4
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"SY"
,
new
int
[]
{
4
,
3
,
2
,
1
});
countryGroupAssignment
.
put
(
"SZ"
,
new
int
[]
{
4
,
4
,
3
,
4
});
countryGroupAssignment
.
put
(
"TC"
,
new
int
[]
{
1
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"TD"
,
new
int
[]
{
4
,
4
,
4
,
2
});
countryGroupAssignment
.
put
(
"TG"
,
new
int
[]
{
3
,
3
,
1
,
0
});
countryGroupAssignment
.
put
(
"TH"
,
new
int
[]
{
1
,
3
,
4
,
4
});
countryGroupAssignment
.
put
(
"TJ"
,
new
int
[]
{
4
,
4
,
4
,
4
});
countryGroupAssignment
.
put
(
"TL"
,
new
int
[]
{
4
,
2
,
4
,
4
});
countryGroupAssignment
.
put
(
"TM"
,
new
int
[]
{
4
,
1
,
2
,
3
});
countryGroupAssignment
.
put
(
"TN"
,
new
int
[]
{
2
,
1
,
1
,
1
});
countryGroupAssignment
.
put
(
"TM"
,
new
int
[]
{
4
,
1
,
2
,
2
});
countryGroupAssignment
.
put
(
"TN"
,
new
int
[]
{
2
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"TO"
,
new
int
[]
{
3
,
3
,
3
,
1
});
countryGroupAssignment
.
put
(
"TR"
,
new
int
[]
{
1
,
2
,
0
,
1
});
countryGroupAssignment
.
put
(
"TT"
,
new
int
[]
{
2
,
3
,
1
,
2
});
countryGroupAssignment
.
put
(
"TR"
,
new
int
[]
{
2
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"TT"
,
new
int
[]
{
1
,
3
,
1
,
2
});
countryGroupAssignment
.
put
(
"TV"
,
new
int
[]
{
4
,
2
,
2
,
4
});
countryGroupAssignment
.
put
(
"TW"
,
new
int
[]
{
0
,
0
,
0
,
1
});
countryGroupAssignment
.
put
(
"TW"
,
new
int
[]
{
0
,
0
,
0
,
0
});
countryGroupAssignment
.
put
(
"TZ"
,
new
int
[]
{
3
,
3
,
4
,
3
});
countryGroupAssignment
.
put
(
"UA"
,
new
int
[]
{
0
,
2
,
1
,
2
});
countryGroupAssignment
.
put
(
"UG"
,
new
int
[]
{
4
,
3
,
2
,
3
});
countryGroupAssignment
.
put
(
"US"
,
new
int
[]
{
0
,
1
,
3
,
3
});
countryGroupAssignment
.
put
(
"UY"
,
new
int
[]
{
2
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"UZ"
,
new
int
[]
{
3
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"VA"
,
new
int
[]
{
1
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"VC"
,
new
int
[]
{
2
,
1
,
0
,
0
});
countryGroupAssignment
.
put
(
"UG"
,
new
int
[]
{
4
,
3
,
3
,
2
});
countryGroupAssignment
.
put
(
"US"
,
new
int
[]
{
1
,
1
,
3
,
3
});
countryGroupAssignment
.
put
(
"UY"
,
new
int
[]
{
2
,
2
,
1
,
1
});
countryGroupAssignment
.
put
(
"UZ"
,
new
int
[]
{
2
,
2
,
2
,
2
});
countryGroupAssignment
.
put
(
"VA"
,
new
int
[]
{
1
,
2
,
4
,
2
});
countryGroupAssignment
.
put
(
"VC"
,
new
int
[]
{
2
,
0
,
2
,
4
});
countryGroupAssignment
.
put
(
"VE"
,
new
int
[]
{
4
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"VG"
,
new
int
[]
{
2
,
1
,
1
,
2
});
countryGroupAssignment
.
put
(
"VI"
,
new
int
[]
{
1
,
0
,
2
,
4
});
countryGroupAssignment
.
put
(
"VG"
,
new
int
[]
{
3
,
0
,
1
,
3
});
countryGroupAssignment
.
put
(
"VI"
,
new
int
[]
{
1
,
1
,
4
,
4
});
countryGroupAssignment
.
put
(
"VN"
,
new
int
[]
{
0
,
2
,
4
,
4
});
countryGroupAssignment
.
put
(
"VU"
,
new
int
[]
{
4
,
1
,
3
,
1
});
countryGroupAssignment
.
put
(
"WS"
,
new
int
[]
{
3
,
2
,
3
,
1
});
countryGroupAssignment
.
put
(
"WS"
,
new
int
[]
{
3
,
3
,
3
,
2
});
countryGroupAssignment
.
put
(
"XK"
,
new
int
[]
{
1
,
2
,
1
,
0
});
countryGroupAssignment
.
put
(
"YE"
,
new
int
[]
{
4
,
4
,
4
,
2
});
countryGroupAssignment
.
put
(
"YT"
,
new
int
[]
{
2
,
0
,
2
,
3
});
countryGroupAssignment
.
put
(
"ZA"
,
new
int
[]
{
2
,
3
,
2
,
2
});
countryGroupAssignment
.
put
(
"ZM"
,
new
int
[]
{
3
,
3
,
2
,
1
});
countryGroupAssignment
.
put
(
"ZW"
,
new
int
[]
{
3
,
3
,
3
,
1
});
countryGroupAssignment
.
put
(
"YE"
,
new
int
[]
{
4
,
4
,
4
,
3
});
countryGroupAssignment
.
put
(
"YT"
,
new
int
[]
{
2
,
2
,
2
,
3
});
countryGroupAssignment
.
put
(
"ZA"
,
new
int
[]
{
2
,
4
,
2
,
2
});
countryGroupAssignment
.
put
(
"ZM"
,
new
int
[]
{
3
,
2
,
2
,
1
});
countryGroupAssignment
.
put
(
"ZW"
,
new
int
[]
{
3
,
3
,
2
,
1
});
return
Collections
.
unmodifiableMap
(
countryGroupAssignment
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment