-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathELO_init.py
241 lines (241 loc) · 5.59 KB
/
ELO_init.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
ELOinit = {
"Brazil": 2169,
"Argentina": 2143,
"Netherlands": 2050,
"Spain": 2048,
"Belgium": 2007,
"Portugal": 2006,
"France": 2005,
"Italy": 1974,
"Denmark": 1971,
"Germany": 1963,
"England": 1957,
"Uruguay": 1936,
"Croatia": 1927,
"Colombia": 1919,
"Switzerland": 1902,
"Serbia": 1898,
"Ecuador": 1871,
"Peru": 1851,
"Hungary": 1825,
"Ukraine": 1822,
"Poland": 1814,
"Mexico": 1809,
"United States": 1798,
"Wales": 1790,
"Japan": 1787,
"South Korea": 1786,
"Czech Republic": 1779,
"Canada": 1776,
"Morocco": 1766,
"Iran": 1760,
"Sweden": 1758,
"Norway": 1754,
"Russia": 1753,
"Scotland": 1752,
"Austria": 1752,
"Costa Rica": 1743,
"Paraguay": 1726,
"Australia": 1719,
"Turkey": 1712,
"Algeria": 1707,
"Tunisia": 1707,
"Chile": 1697,
"Greece": 1690,
"Finland": 1689,
"Venezuela": 1684,
"Senegal": 1677,
"Republic of Ireland": 1676,
"Ivory Coast": 1670,
"Slovenia": 1667,
"Egypt": 1662,
"Georgia": 1652,
"Panama": 1646,
"Qatar": 1642,
"Saudi Arabia": 1635,
"Nigeria": 1631,
"Mali": 1620,
"Israel": 1620,
"Bolivia": 1618,
"Bosnia and Herzegovina": 1616,
"Romania": 1610,
"Cameroon": 1610,
"Burkina Faso": 1604,
"Jordan": 1590,
"Slovakia": 1580,
"Uzbekistan": 1573,
"Iraq": 1572,
"Ghana": 1567,
"Jamaica": 1556,
"Oman": 1553,
"South Africa": 1543,
"Iceland": 1543,
"Albania": 1543,
"Montenegro": 1540,
"Northern Ireland": 1540,
"Haiti": 1536,
"North Macedonia": 1534,
"New Zealand": 1527,
"Bulgaria": 1522,
"Kosovo": 1507,
"Bahrain": 1494,
"Gabon": 1490,
"United Arab Emirates": 1488,
"Cape Verde": 1485,
"El Salvador": 1484,
"Honduras": 1472,
"China PR": 1468,
"Zambia": 1466,
"Democratic Republic of Congo": 1458,
"Northern Cyprus": 1457,
"Armenia": 1452,
"Guatemala": 1450,
"Luxembourg": 1443,
"Equatorial Guinea": 1434,
"Palestine": 1430,
"Estonia": 1430,
"Kurdistan": 1425,
"Syria": 1424,
"Gambia": 1424,
"Azerbaijan": 1423,
"Belarus": 1415,
"Angola": 1407,
"Uganda": 1394,
"Benin": 1392,
"Mauritania": 1392,
"Kazakhstan": 1391,
"Vietnam": 1391,
"Thailand": 1390,
"Martinique": 1387,
"Guinea": 1386,
"Curaçao": 1384,
"Guinea-Bissau": 1383,
"North Korea": 1375,
"Kenya": 1375,
"Namibia": 1369,
"Réunion": 1369,
"Botswana": 1364,
"Cyprus": 1355,
"Libya": 1352,
"Latvia": 1352,
"Ethiopia": 1352,
"French Guiana": 1349,
"Trinidad and Tobago": 1340,
"Sierra Leone": 1338,
"Zanzibar": 1328,
"Cuba": 1327,
"Tajikistan": 1325,
"Mozambique": 1322,
"Lebanon": 1320,
"Togo": 1320,
"Zimbabwe": 1318,
"Kuwait": 1315,
"Tanzania": 1315,
"Liberia": 1311,
"Suriname": 1308,
"Faroe Islands": 1308,
"Sudan": 1305,
"Madagascar": 1303,
"Congo": 1302,
"Eswatini": 1299,
"Malawi": 1296,
"Rwanda": 1280,
"Indonesia": 1271,
"Central African Republic": 1265,
"Kyrgyzstan": 1264,
"Malta": 1260,
"Nicaragua": 1258,
"Burundi": 1257,
"Turkmenistan": 1249,
"Fiji": 1249,
"Lithuania": 1248,
"Comoros": 1247,
"Niger": 1244,
"Moldova": 1233,
"Mayotte": 1225,
"Papua New Guinea": 1223,
"Lesotho": 1223,
"India": 1217,
"Guadeloupe": 1215,
"Solomon Islands": 1208,
"Malaysia": 1207,
"Bermuda": 1205,
"Chad": 1189,
"Guyana": 1184,
"Saint Kitts and Nevis": 1177,
"Dominican Republic": 1176,
"New Caledonia": 1172,
"Antigua and Barbuda": 1164,
"Tahiti": 1158,
"Eritrea": 1144,
"Hong Kong": 1139,
"Grenada": 1136,
"Vanuatu": 1126,
"Singapore": 1122,
"Andorra": 1108,
"South Sudan": 1104,
"Yemen": 1098,
"Philippines": 1095,
"Afghanistan": 1095,
"Puerto Rico": 1088,
"Belize": 1077,
"São Tomé and Príncipe": 1071,
"Gibraltar": 1069,
"Saint Vincent and the Grenadines": 1064,
"Saint Lucia": 1049,
"Barbados": 1007,
"Somaliland": 1002,
"Bonaire": 999,
"Western Sahara": 996,
"Dominica": 991,
"Liechtenstein": 978,
"Montserrat": 965,
"Greenland": 963,
"Mauritius": 951,
"Maldives": 936,
"Nepal": 933,
"Myanmar": 930,
"Aruba": 928,
"Monaco": 903,
"Somalia": 899,
"Seychelles": 884,
"Taiwan": 881,
"Pakistan": 870,
"Djibouti": 864,
"Bahamas": 861,
"Cambodia": 847,
"Bangladesh": 844,
"Cayman Islands": 840,
"Saint Martin": 840,
"Mongolia": 803,
"San Marino": 784,
"Sint Maarten": 780,
"Chagos Islands": 776,
"Tuvalu": 738,
"Turks and Caicos Islands": 730,
"Saint Barthélemy": 715,
"Guam": 705,
"Wallis and Futuna": 701,
"Macao": 698,
"Vatican": 692,
"Cook Islands": 683,
"Samoa": 678,
"Saint Pierre and Miquelon": 677,
"Sri Lanka": 675,
"US Virgin Islands": 662,
"Laos": 653,
"Tibet": 630,
"East Timor": 623,
"Anguilla": 621,
"British Virgin Islands": 616,
"Brunei": 615,
"Falkland Islands": 580,
"Federated States of Micronesia": 564,
"Bhutan": 563,
"Kiribati": 545,
"Tonga": 528,
"Niue": 496,
"Eastern Samoa": 472,
"Northern Mariana Islands": 404,
"Palau": 403
}