@temboplus/frontend-core 0.2.5 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -14
- package/esm/src/data/countries.d.ts +12 -2
- package/esm/src/data/countries.js +496 -248
- package/esm/src/models/amount/amount.d.ts.map +1 -1
- package/esm/src/models/amount/amount.js +1 -1
- package/esm/src/models/bank/bank.d.ts +127 -0
- package/esm/src/models/bank/bank.d.ts.map +1 -1
- package/esm/src/models/bank/bank.js +264 -7
- package/esm/src/models/bank/index.d.ts +0 -1
- package/esm/src/models/bank/index.d.ts.map +1 -1
- package/esm/src/models/bank/index.js +0 -1
- package/esm/src/models/country/country.d.ts +162 -24
- package/esm/src/models/country/country.d.ts.map +1 -1
- package/esm/src/models/country/country.js +442 -42
- package/esm/src/models/country/index.d.ts +1 -1
- package/esm/src/models/country/index.d.ts.map +1 -1
- package/esm/src/models/country/index.js +1 -1
- package/esm/src/models/country/types.d.ts +53 -0
- package/esm/src/models/country/types.d.ts.map +1 -0
- package/esm/src/models/country/types.js +43 -0
- package/esm/src/models/currency/currency.d.ts +127 -4
- package/esm/src/models/currency/currency.d.ts.map +1 -1
- package/esm/src/models/currency/currency.js +229 -11
- package/esm/src/models/currency/index.d.ts +1 -1
- package/esm/src/models/currency/index.d.ts.map +1 -1
- package/esm/src/models/currency/index.js +1 -1
- package/esm/src/models/currency/types.d.ts +20 -0
- package/esm/src/models/currency/types.d.ts.map +1 -0
- package/esm/src/models/currency/types.js +13 -0
- package/esm/src/models/phone_number/global/phone_number.d.ts +3 -2
- package/esm/src/models/phone_number/global/phone_number.d.ts.map +1 -1
- package/esm/src/models/phone_number/global/service.d.ts +27 -20
- package/esm/src/models/phone_number/global/service.d.ts.map +1 -1
- package/esm/src/models/phone_number/global/service.js +61 -40
- package/package.json +1 -1
- package/script/src/data/countries.d.ts +12 -2
- package/script/src/data/countries.js +496 -248
- package/script/src/models/amount/amount.d.ts.map +1 -1
- package/script/src/models/amount/amount.js +4 -4
- package/script/src/models/bank/bank.d.ts +127 -0
- package/script/src/models/bank/bank.d.ts.map +1 -1
- package/script/src/models/bank/bank.js +273 -12
- package/script/src/models/bank/index.d.ts +0 -1
- package/script/src/models/bank/index.d.ts.map +1 -1
- package/script/src/models/bank/index.js +0 -1
- package/script/src/models/country/country.d.ts +162 -24
- package/script/src/models/country/country.d.ts.map +1 -1
- package/script/src/models/country/country.js +453 -49
- package/script/src/models/country/index.d.ts +1 -1
- package/script/src/models/country/index.d.ts.map +1 -1
- package/script/src/models/country/index.js +1 -1
- package/script/src/models/country/types.d.ts +53 -0
- package/script/src/models/country/types.d.ts.map +1 -0
- package/script/src/models/country/types.js +46 -0
- package/script/src/models/currency/currency.d.ts +127 -4
- package/script/src/models/currency/currency.d.ts.map +1 -1
- package/script/src/models/currency/currency.js +237 -15
- package/script/src/models/currency/index.d.ts +1 -1
- package/script/src/models/currency/index.d.ts.map +1 -1
- package/script/src/models/currency/index.js +1 -1
- package/script/src/models/currency/types.d.ts +20 -0
- package/script/src/models/currency/types.d.ts.map +1 -0
- package/script/src/models/currency/types.js +14 -0
- package/script/src/models/phone_number/global/phone_number.d.ts +3 -2
- package/script/src/models/phone_number/global/phone_number.d.ts.map +1 -1
- package/script/src/models/phone_number/global/service.d.ts +27 -20
- package/script/src/models/phone_number/global/service.d.ts.map +1 -1
- package/script/src/models/phone_number/global/service.js +61 -40
- package/esm/src/models/bank/service.d.ts +0 -106
- package/esm/src/models/bank/service.d.ts.map +0 -1
- package/esm/src/models/bank/service.js +0 -240
- package/esm/src/models/country/service.d.ts +0 -111
- package/esm/src/models/country/service.d.ts.map +0 -1
- package/esm/src/models/country/service.js +0 -366
- package/esm/src/models/currency/service.d.ts +0 -96
- package/esm/src/models/currency/service.d.ts.map +0 -1
- package/esm/src/models/currency/service.js +0 -194
- package/script/src/models/bank/service.d.ts +0 -106
- package/script/src/models/bank/service.d.ts.map +0 -1
- package/script/src/models/bank/service.js +0 -247
- package/script/src/models/country/service.d.ts +0 -111
- package/script/src/models/country/service.d.ts.map +0 -1
- package/script/src/models/country/service.js +0 -373
- package/script/src/models/currency/service.d.ts +0 -96
- package/script/src/models/currency/service.d.ts.map +0 -1
- package/script/src/models/currency/service.js +0 -201
|
@@ -2,13 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.default = {
|
|
4
4
|
"dataset_name": "World Countries List",
|
|
5
|
-
"version": "1.0.
|
|
6
|
-
"description": "A list of world countries and territories, including common names, official names, ISO codes (alpha-2, alpha-3), geographical information (continent, UN M49 region), and flag emojis. Based on ISO 3166-1
|
|
5
|
+
"version": "1.0.1",
|
|
6
|
+
"description": "A list of world countries and territories, including common names, official names, ISO codes (alpha-2, alpha-3, currency), geographical information (continent, UN M49 region), and flag emojis. Based on ISO 3166-1, ISO 4217, and UN M49 regional codes.",
|
|
7
7
|
"source(s)": [
|
|
8
8
|
{
|
|
9
9
|
"name": "ISO 3166-1",
|
|
10
10
|
"url": "https://www.iso.org/iso-3166-country-codes.html"
|
|
11
11
|
},
|
|
12
|
+
{
|
|
13
|
+
"name": "ISO 4217",
|
|
14
|
+
"url": "https://www.iso.org/iso-4217-currency-codes.html"
|
|
15
|
+
},
|
|
12
16
|
{
|
|
13
17
|
"name": "UN M49",
|
|
14
18
|
"url": "https://unstats.un.org/unsd/methodology/m49/"
|
|
@@ -22,12 +26,12 @@ exports.default = {
|
|
|
22
26
|
"url": null
|
|
23
27
|
}
|
|
24
28
|
],
|
|
25
|
-
"last_updated": "2025-03-
|
|
29
|
+
"last_updated": "2025-03-26T12:54:40Z",
|
|
26
30
|
"creation_date": "2025-03-26",
|
|
27
31
|
"license": "CC-BY-4.0",
|
|
28
32
|
"coverage": "Includes countries, territories, and special areas based on ISO 3166-1 standard, excluding previously listed obsolete codes AN and CS. Includes added entries for Montenegro, Serbia, and South Sudan.",
|
|
29
33
|
"contact_info": "Okello Gerald",
|
|
30
|
-
"notes": "Dataset includes entries based on ISO 3166-1 standard. The listing of entities, common names ('name'), and official names ('name_official') does not imply political endorsement. Designations and names for entities like Taiwan, Palestine, Western Sahara, Afghanistan, and others may be politically sensitive, disputed, or reflect specific viewpoints or time periods. Official names generally reflect usage by the entity itself or international bodies (e.g., UN, ISO) where applicable.",
|
|
34
|
+
"notes": "Dataset includes entries based on ISO 3166-1 standard. The listing of entities, common names ('name'), and official names ('name_official') does not imply political endorsement. Designations and names for entities like Taiwan, Palestine, Western Sahara, Afghanistan, and others may be politically sensitive, disputed, or reflect specific viewpoints or time periods. Official names generally reflect usage by the entity itself or international bodies (e.g., UN, ISO) where applicable. Currency codes represent the primary official ISO 4217 code; 'null' is used where no single official code applies or is designated.",
|
|
31
35
|
"countries": [
|
|
32
36
|
{
|
|
33
37
|
"name": "Afghanistan",
|
|
@@ -36,7 +40,8 @@ exports.default = {
|
|
|
36
40
|
"iso_3": "AFG",
|
|
37
41
|
"flag_emoji": "🇦🇫",
|
|
38
42
|
"continent": "Asia",
|
|
39
|
-
"region": "Southern Asia"
|
|
43
|
+
"region": "Southern Asia",
|
|
44
|
+
"currency_iso_code": "AFN"
|
|
40
45
|
},
|
|
41
46
|
{
|
|
42
47
|
"name": "Åland Islands",
|
|
@@ -45,7 +50,8 @@ exports.default = {
|
|
|
45
50
|
"iso_3": "ALA",
|
|
46
51
|
"flag_emoji": "🇦🇽",
|
|
47
52
|
"continent": "Europe",
|
|
48
|
-
"region": "Northern Europe"
|
|
53
|
+
"region": "Northern Europe",
|
|
54
|
+
"currency_iso_code": "EUR"
|
|
49
55
|
},
|
|
50
56
|
{
|
|
51
57
|
"name": "Albania",
|
|
@@ -54,7 +60,8 @@ exports.default = {
|
|
|
54
60
|
"iso_3": "ALB",
|
|
55
61
|
"flag_emoji": "🇦🇱",
|
|
56
62
|
"continent": "Europe",
|
|
57
|
-
"region": "Southern Europe"
|
|
63
|
+
"region": "Southern Europe",
|
|
64
|
+
"currency_iso_code": "ALL"
|
|
58
65
|
},
|
|
59
66
|
{
|
|
60
67
|
"name": "Algeria",
|
|
@@ -63,7 +70,8 @@ exports.default = {
|
|
|
63
70
|
"iso_3": "DZA",
|
|
64
71
|
"flag_emoji": "🇩🇿",
|
|
65
72
|
"continent": "Africa",
|
|
66
|
-
"region": "Northern Africa"
|
|
73
|
+
"region": "Northern Africa",
|
|
74
|
+
"currency_iso_code": "DZD"
|
|
67
75
|
},
|
|
68
76
|
{
|
|
69
77
|
"name": "American Samoa",
|
|
@@ -72,7 +80,8 @@ exports.default = {
|
|
|
72
80
|
"iso_3": "ASM",
|
|
73
81
|
"flag_emoji": "🇦🇸",
|
|
74
82
|
"continent": "Oceania",
|
|
75
|
-
"region": "Polynesia"
|
|
83
|
+
"region": "Polynesia",
|
|
84
|
+
"currency_iso_code": "USD"
|
|
76
85
|
},
|
|
77
86
|
{
|
|
78
87
|
"name": "Andorra",
|
|
@@ -81,7 +90,8 @@ exports.default = {
|
|
|
81
90
|
"iso_3": "AND",
|
|
82
91
|
"flag_emoji": "🇦🇩",
|
|
83
92
|
"continent": "Europe",
|
|
84
|
-
"region": "Southern Europe"
|
|
93
|
+
"region": "Southern Europe",
|
|
94
|
+
"currency_iso_code": "EUR"
|
|
85
95
|
},
|
|
86
96
|
{
|
|
87
97
|
"name": "Angola",
|
|
@@ -90,7 +100,8 @@ exports.default = {
|
|
|
90
100
|
"iso_3": "AGO",
|
|
91
101
|
"flag_emoji": "🇦🇴",
|
|
92
102
|
"continent": "Africa",
|
|
93
|
-
"region": "Middle Africa"
|
|
103
|
+
"region": "Middle Africa",
|
|
104
|
+
"currency_iso_code": "AOA"
|
|
94
105
|
},
|
|
95
106
|
{
|
|
96
107
|
"name": "Anguilla",
|
|
@@ -99,7 +110,8 @@ exports.default = {
|
|
|
99
110
|
"iso_3": "AIA",
|
|
100
111
|
"flag_emoji": "🇦🇮",
|
|
101
112
|
"continent": "North America",
|
|
102
|
-
"region": "Caribbean"
|
|
113
|
+
"region": "Caribbean",
|
|
114
|
+
"currency_iso_code": "XCD"
|
|
103
115
|
},
|
|
104
116
|
{
|
|
105
117
|
"name": "Antarctica",
|
|
@@ -108,7 +120,8 @@ exports.default = {
|
|
|
108
120
|
"iso_3": "ATA",
|
|
109
121
|
"flag_emoji": "🇦🇶",
|
|
110
122
|
"continent": "Antarctica",
|
|
111
|
-
"region": "Antarctica"
|
|
123
|
+
"region": "Antarctica",
|
|
124
|
+
"currency_iso_code": null
|
|
112
125
|
},
|
|
113
126
|
{
|
|
114
127
|
"name": "Antigua and Barbuda",
|
|
@@ -117,7 +130,8 @@ exports.default = {
|
|
|
117
130
|
"iso_3": "ATG",
|
|
118
131
|
"flag_emoji": "🇦🇬",
|
|
119
132
|
"continent": "North America",
|
|
120
|
-
"region": "Caribbean"
|
|
133
|
+
"region": "Caribbean",
|
|
134
|
+
"currency_iso_code": "XCD"
|
|
121
135
|
},
|
|
122
136
|
{
|
|
123
137
|
"name": "Argentina",
|
|
@@ -126,7 +140,8 @@ exports.default = {
|
|
|
126
140
|
"iso_3": "ARG",
|
|
127
141
|
"flag_emoji": "🇦🇷",
|
|
128
142
|
"continent": "South America",
|
|
129
|
-
"region": "South America"
|
|
143
|
+
"region": "South America",
|
|
144
|
+
"currency_iso_code": "ARS"
|
|
130
145
|
},
|
|
131
146
|
{
|
|
132
147
|
"name": "Armenia",
|
|
@@ -135,7 +150,8 @@ exports.default = {
|
|
|
135
150
|
"iso_3": "ARM",
|
|
136
151
|
"flag_emoji": "🇦🇲",
|
|
137
152
|
"continent": "Asia",
|
|
138
|
-
"region": "Western Asia"
|
|
153
|
+
"region": "Western Asia",
|
|
154
|
+
"currency_iso_code": "AMD"
|
|
139
155
|
},
|
|
140
156
|
{
|
|
141
157
|
"name": "Aruba",
|
|
@@ -144,7 +160,8 @@ exports.default = {
|
|
|
144
160
|
"iso_3": "ABW",
|
|
145
161
|
"flag_emoji": "🇦🇼",
|
|
146
162
|
"continent": "North America",
|
|
147
|
-
"region": "Caribbean"
|
|
163
|
+
"region": "Caribbean",
|
|
164
|
+
"currency_iso_code": "AWG"
|
|
148
165
|
},
|
|
149
166
|
{
|
|
150
167
|
"name": "Australia",
|
|
@@ -153,7 +170,8 @@ exports.default = {
|
|
|
153
170
|
"iso_3": "AUS",
|
|
154
171
|
"flag_emoji": "🇦🇺",
|
|
155
172
|
"continent": "Oceania",
|
|
156
|
-
"region": "Australia and New Zealand"
|
|
173
|
+
"region": "Australia and New Zealand",
|
|
174
|
+
"currency_iso_code": "AUD"
|
|
157
175
|
},
|
|
158
176
|
{
|
|
159
177
|
"name": "Austria",
|
|
@@ -162,7 +180,8 @@ exports.default = {
|
|
|
162
180
|
"iso_3": "AUT",
|
|
163
181
|
"flag_emoji": "🇦🇹",
|
|
164
182
|
"continent": "Europe",
|
|
165
|
-
"region": "Western Europe"
|
|
183
|
+
"region": "Western Europe",
|
|
184
|
+
"currency_iso_code": "EUR"
|
|
166
185
|
},
|
|
167
186
|
{
|
|
168
187
|
"name": "Azerbaijan",
|
|
@@ -171,7 +190,8 @@ exports.default = {
|
|
|
171
190
|
"iso_3": "AZE",
|
|
172
191
|
"flag_emoji": "🇦🇿",
|
|
173
192
|
"continent": "Asia",
|
|
174
|
-
"region": "Western Asia"
|
|
193
|
+
"region": "Western Asia",
|
|
194
|
+
"currency_iso_code": "AZN"
|
|
175
195
|
},
|
|
176
196
|
{
|
|
177
197
|
"name": "Bahamas",
|
|
@@ -180,7 +200,8 @@ exports.default = {
|
|
|
180
200
|
"iso_3": "BHS",
|
|
181
201
|
"flag_emoji": "🇧🇸",
|
|
182
202
|
"continent": "North America",
|
|
183
|
-
"region": "Caribbean"
|
|
203
|
+
"region": "Caribbean",
|
|
204
|
+
"currency_iso_code": "BSD"
|
|
184
205
|
},
|
|
185
206
|
{
|
|
186
207
|
"name": "Bahrain",
|
|
@@ -189,7 +210,8 @@ exports.default = {
|
|
|
189
210
|
"iso_3": "BHR",
|
|
190
211
|
"flag_emoji": "🇧🇭",
|
|
191
212
|
"continent": "Asia",
|
|
192
|
-
"region": "Western Asia"
|
|
213
|
+
"region": "Western Asia",
|
|
214
|
+
"currency_iso_code": "BHD"
|
|
193
215
|
},
|
|
194
216
|
{
|
|
195
217
|
"name": "Bangladesh",
|
|
@@ -198,7 +220,8 @@ exports.default = {
|
|
|
198
220
|
"iso_3": "BGD",
|
|
199
221
|
"flag_emoji": "🇧🇩",
|
|
200
222
|
"continent": "Asia",
|
|
201
|
-
"region": "Southern Asia"
|
|
223
|
+
"region": "Southern Asia",
|
|
224
|
+
"currency_iso_code": "BDT"
|
|
202
225
|
},
|
|
203
226
|
{
|
|
204
227
|
"name": "Barbados",
|
|
@@ -207,7 +230,8 @@ exports.default = {
|
|
|
207
230
|
"iso_3": "BRB",
|
|
208
231
|
"flag_emoji": "🇧🇧",
|
|
209
232
|
"continent": "North America",
|
|
210
|
-
"region": "Caribbean"
|
|
233
|
+
"region": "Caribbean",
|
|
234
|
+
"currency_iso_code": "BBD"
|
|
211
235
|
},
|
|
212
236
|
{
|
|
213
237
|
"name": "Belarus",
|
|
@@ -216,7 +240,8 @@ exports.default = {
|
|
|
216
240
|
"iso_3": "BLR",
|
|
217
241
|
"flag_emoji": "🇧🇾",
|
|
218
242
|
"continent": "Europe",
|
|
219
|
-
"region": "Eastern Europe"
|
|
243
|
+
"region": "Eastern Europe",
|
|
244
|
+
"currency_iso_code": "BYN"
|
|
220
245
|
},
|
|
221
246
|
{
|
|
222
247
|
"name": "Belgium",
|
|
@@ -225,7 +250,8 @@ exports.default = {
|
|
|
225
250
|
"iso_3": "BEL",
|
|
226
251
|
"flag_emoji": "🇧🇪",
|
|
227
252
|
"continent": "Europe",
|
|
228
|
-
"region": "Western Europe"
|
|
253
|
+
"region": "Western Europe",
|
|
254
|
+
"currency_iso_code": "EUR"
|
|
229
255
|
},
|
|
230
256
|
{
|
|
231
257
|
"name": "Belize",
|
|
@@ -234,7 +260,8 @@ exports.default = {
|
|
|
234
260
|
"iso_3": "BLZ",
|
|
235
261
|
"flag_emoji": "🇧🇿",
|
|
236
262
|
"continent": "North America",
|
|
237
|
-
"region": "Central America"
|
|
263
|
+
"region": "Central America",
|
|
264
|
+
"currency_iso_code": "BZD"
|
|
238
265
|
},
|
|
239
266
|
{
|
|
240
267
|
"name": "Benin",
|
|
@@ -243,7 +270,8 @@ exports.default = {
|
|
|
243
270
|
"iso_3": "BEN",
|
|
244
271
|
"flag_emoji": "🇧🇯",
|
|
245
272
|
"continent": "Africa",
|
|
246
|
-
"region": "Western Africa"
|
|
273
|
+
"region": "Western Africa",
|
|
274
|
+
"currency_iso_code": "XOF"
|
|
247
275
|
},
|
|
248
276
|
{
|
|
249
277
|
"name": "Bermuda",
|
|
@@ -252,7 +280,8 @@ exports.default = {
|
|
|
252
280
|
"iso_3": "BMU",
|
|
253
281
|
"flag_emoji": "🇧🇲",
|
|
254
282
|
"continent": "North America",
|
|
255
|
-
"region": "Northern America"
|
|
283
|
+
"region": "Northern America",
|
|
284
|
+
"currency_iso_code": "BMD"
|
|
256
285
|
},
|
|
257
286
|
{
|
|
258
287
|
"name": "Bhutan",
|
|
@@ -261,7 +290,8 @@ exports.default = {
|
|
|
261
290
|
"iso_3": "BTN",
|
|
262
291
|
"flag_emoji": "🇧🇹",
|
|
263
292
|
"continent": "Asia",
|
|
264
|
-
"region": "Southern Asia"
|
|
293
|
+
"region": "Southern Asia",
|
|
294
|
+
"currency_iso_code": "BTN"
|
|
265
295
|
},
|
|
266
296
|
{
|
|
267
297
|
"name": "Bolivia",
|
|
@@ -270,7 +300,8 @@ exports.default = {
|
|
|
270
300
|
"iso_3": "BOL",
|
|
271
301
|
"flag_emoji": "🇧🇴",
|
|
272
302
|
"continent": "South America",
|
|
273
|
-
"region": "South America"
|
|
303
|
+
"region": "South America",
|
|
304
|
+
"currency_iso_code": "BOB"
|
|
274
305
|
},
|
|
275
306
|
{
|
|
276
307
|
"name": "Bosnia and Herzegovina",
|
|
@@ -279,7 +310,8 @@ exports.default = {
|
|
|
279
310
|
"iso_3": "BIH",
|
|
280
311
|
"flag_emoji": "🇧🇦",
|
|
281
312
|
"continent": "Europe",
|
|
282
|
-
"region": "Southern Europe"
|
|
313
|
+
"region": "Southern Europe",
|
|
314
|
+
"currency_iso_code": "BAM"
|
|
283
315
|
},
|
|
284
316
|
{
|
|
285
317
|
"name": "Botswana",
|
|
@@ -288,7 +320,8 @@ exports.default = {
|
|
|
288
320
|
"iso_3": "BWA",
|
|
289
321
|
"flag_emoji": "🇧🇼",
|
|
290
322
|
"continent": "Africa",
|
|
291
|
-
"region": "Southern Africa"
|
|
323
|
+
"region": "Southern Africa",
|
|
324
|
+
"currency_iso_code": "BWP"
|
|
292
325
|
},
|
|
293
326
|
{
|
|
294
327
|
"name": "Bouvet Island",
|
|
@@ -297,7 +330,8 @@ exports.default = {
|
|
|
297
330
|
"iso_3": "BVT",
|
|
298
331
|
"flag_emoji": "🇧🇻",
|
|
299
332
|
"continent": "Antarctica",
|
|
300
|
-
"region": "Antarctica"
|
|
333
|
+
"region": "Antarctica",
|
|
334
|
+
"currency_iso_code": null
|
|
301
335
|
},
|
|
302
336
|
{
|
|
303
337
|
"name": "Brazil",
|
|
@@ -306,7 +340,8 @@ exports.default = {
|
|
|
306
340
|
"iso_3": "BRA",
|
|
307
341
|
"flag_emoji": "🇧🇷",
|
|
308
342
|
"continent": "South America",
|
|
309
|
-
"region": "South America"
|
|
343
|
+
"region": "South America",
|
|
344
|
+
"currency_iso_code": "BRL"
|
|
310
345
|
},
|
|
311
346
|
{
|
|
312
347
|
"name": "British Indian Ocean Territory",
|
|
@@ -315,7 +350,8 @@ exports.default = {
|
|
|
315
350
|
"iso_3": "IOT",
|
|
316
351
|
"flag_emoji": "🇮🇴",
|
|
317
352
|
"continent": "Africa",
|
|
318
|
-
"region": "Eastern Africa"
|
|
353
|
+
"region": "Eastern Africa",
|
|
354
|
+
"currency_iso_code": "USD"
|
|
319
355
|
},
|
|
320
356
|
{
|
|
321
357
|
"name": "British Virgin Islands",
|
|
@@ -324,7 +360,8 @@ exports.default = {
|
|
|
324
360
|
"iso_3": "VGB",
|
|
325
361
|
"flag_emoji": "🇻🇬",
|
|
326
362
|
"continent": "North America",
|
|
327
|
-
"region": "Caribbean"
|
|
363
|
+
"region": "Caribbean",
|
|
364
|
+
"currency_iso_code": "USD"
|
|
328
365
|
},
|
|
329
366
|
{
|
|
330
367
|
"name": "Brunei",
|
|
@@ -333,7 +370,8 @@ exports.default = {
|
|
|
333
370
|
"iso_3": "BRN",
|
|
334
371
|
"flag_emoji": "🇧🇳",
|
|
335
372
|
"continent": "Asia",
|
|
336
|
-
"region": "South-eastern Asia"
|
|
373
|
+
"region": "South-eastern Asia",
|
|
374
|
+
"currency_iso_code": "BND"
|
|
337
375
|
},
|
|
338
376
|
{
|
|
339
377
|
"name": "Bulgaria",
|
|
@@ -342,7 +380,8 @@ exports.default = {
|
|
|
342
380
|
"iso_3": "BGR",
|
|
343
381
|
"flag_emoji": "🇧🇬",
|
|
344
382
|
"continent": "Europe",
|
|
345
|
-
"region": "Eastern Europe"
|
|
383
|
+
"region": "Eastern Europe",
|
|
384
|
+
"currency_iso_code": "BGN"
|
|
346
385
|
},
|
|
347
386
|
{
|
|
348
387
|
"name": "Burkina Faso",
|
|
@@ -351,7 +390,8 @@ exports.default = {
|
|
|
351
390
|
"iso_3": "BFA",
|
|
352
391
|
"flag_emoji": "🇧🇫",
|
|
353
392
|
"continent": "Africa",
|
|
354
|
-
"region": "Western Africa"
|
|
393
|
+
"region": "Western Africa",
|
|
394
|
+
"currency_iso_code": "XOF"
|
|
355
395
|
},
|
|
356
396
|
{
|
|
357
397
|
"name": "Burundi",
|
|
@@ -360,7 +400,8 @@ exports.default = {
|
|
|
360
400
|
"iso_3": "BDI",
|
|
361
401
|
"flag_emoji": "🇧🇮",
|
|
362
402
|
"continent": "Africa",
|
|
363
|
-
"region": "Eastern Africa"
|
|
403
|
+
"region": "Eastern Africa",
|
|
404
|
+
"currency_iso_code": "BIF"
|
|
364
405
|
},
|
|
365
406
|
{
|
|
366
407
|
"name": "Cabo Verde",
|
|
@@ -369,7 +410,8 @@ exports.default = {
|
|
|
369
410
|
"iso_3": "CPV",
|
|
370
411
|
"flag_emoji": "🇨🇻",
|
|
371
412
|
"continent": "Africa",
|
|
372
|
-
"region": "Western Africa"
|
|
413
|
+
"region": "Western Africa",
|
|
414
|
+
"currency_iso_code": "CVE"
|
|
373
415
|
},
|
|
374
416
|
{
|
|
375
417
|
"name": "Cambodia",
|
|
@@ -378,7 +420,8 @@ exports.default = {
|
|
|
378
420
|
"iso_3": "KHM",
|
|
379
421
|
"flag_emoji": "🇰🇭",
|
|
380
422
|
"continent": "Asia",
|
|
381
|
-
"region": "South-eastern Asia"
|
|
423
|
+
"region": "South-eastern Asia",
|
|
424
|
+
"currency_iso_code": "KHR"
|
|
382
425
|
},
|
|
383
426
|
{
|
|
384
427
|
"name": "Cameroon",
|
|
@@ -387,7 +430,8 @@ exports.default = {
|
|
|
387
430
|
"iso_3": "CMR",
|
|
388
431
|
"flag_emoji": "🇨🇲",
|
|
389
432
|
"continent": "Africa",
|
|
390
|
-
"region": "Middle Africa"
|
|
433
|
+
"region": "Middle Africa",
|
|
434
|
+
"currency_iso_code": "XAF"
|
|
391
435
|
},
|
|
392
436
|
{
|
|
393
437
|
"name": "Canada",
|
|
@@ -396,7 +440,8 @@ exports.default = {
|
|
|
396
440
|
"iso_3": "CAN",
|
|
397
441
|
"flag_emoji": "🇨🇦",
|
|
398
442
|
"continent": "North America",
|
|
399
|
-
"region": "Northern America"
|
|
443
|
+
"region": "Northern America",
|
|
444
|
+
"currency_iso_code": "CAD"
|
|
400
445
|
},
|
|
401
446
|
{
|
|
402
447
|
"name": "Cayman Islands",
|
|
@@ -405,7 +450,8 @@ exports.default = {
|
|
|
405
450
|
"iso_3": "CYM",
|
|
406
451
|
"flag_emoji": "🇰🇾",
|
|
407
452
|
"continent": "North America",
|
|
408
|
-
"region": "Caribbean"
|
|
453
|
+
"region": "Caribbean",
|
|
454
|
+
"currency_iso_code": "KYD"
|
|
409
455
|
},
|
|
410
456
|
{
|
|
411
457
|
"name": "Central African Republic",
|
|
@@ -414,7 +460,8 @@ exports.default = {
|
|
|
414
460
|
"iso_3": "CAF",
|
|
415
461
|
"flag_emoji": "🇨🇫",
|
|
416
462
|
"continent": "Africa",
|
|
417
|
-
"region": "Middle Africa"
|
|
463
|
+
"region": "Middle Africa",
|
|
464
|
+
"currency_iso_code": "XAF"
|
|
418
465
|
},
|
|
419
466
|
{
|
|
420
467
|
"name": "Chad",
|
|
@@ -423,7 +470,8 @@ exports.default = {
|
|
|
423
470
|
"iso_3": "TCD",
|
|
424
471
|
"flag_emoji": "🇹🇩",
|
|
425
472
|
"continent": "Africa",
|
|
426
|
-
"region": "Middle Africa"
|
|
473
|
+
"region": "Middle Africa",
|
|
474
|
+
"currency_iso_code": "XAF"
|
|
427
475
|
},
|
|
428
476
|
{
|
|
429
477
|
"name": "Chile",
|
|
@@ -432,7 +480,8 @@ exports.default = {
|
|
|
432
480
|
"iso_3": "CHL",
|
|
433
481
|
"flag_emoji": "🇨🇱",
|
|
434
482
|
"continent": "South America",
|
|
435
|
-
"region": "South America"
|
|
483
|
+
"region": "South America",
|
|
484
|
+
"currency_iso_code": "CLP"
|
|
436
485
|
},
|
|
437
486
|
{
|
|
438
487
|
"name": "China",
|
|
@@ -441,7 +490,8 @@ exports.default = {
|
|
|
441
490
|
"iso_3": "CHN",
|
|
442
491
|
"flag_emoji": "🇨🇳",
|
|
443
492
|
"continent": "Asia",
|
|
444
|
-
"region": "Eastern Asia"
|
|
493
|
+
"region": "Eastern Asia",
|
|
494
|
+
"currency_iso_code": "CNY"
|
|
445
495
|
},
|
|
446
496
|
{
|
|
447
497
|
"name": "Christmas Island",
|
|
@@ -450,7 +500,8 @@ exports.default = {
|
|
|
450
500
|
"iso_3": "CXR",
|
|
451
501
|
"flag_emoji": "🇨🇽",
|
|
452
502
|
"continent": "Oceania",
|
|
453
|
-
"region": "Australia and New Zealand"
|
|
503
|
+
"region": "Australia and New Zealand",
|
|
504
|
+
"currency_iso_code": "AUD"
|
|
454
505
|
},
|
|
455
506
|
{
|
|
456
507
|
"name": "Cocos (Keeling) Islands",
|
|
@@ -459,7 +510,8 @@ exports.default = {
|
|
|
459
510
|
"iso_3": "CCK",
|
|
460
511
|
"flag_emoji": "🇨🇨",
|
|
461
512
|
"continent": "Oceania",
|
|
462
|
-
"region": "Australia and New Zealand"
|
|
513
|
+
"region": "Australia and New Zealand",
|
|
514
|
+
"currency_iso_code": "AUD"
|
|
463
515
|
},
|
|
464
516
|
{
|
|
465
517
|
"name": "Colombia",
|
|
@@ -468,7 +520,8 @@ exports.default = {
|
|
|
468
520
|
"iso_3": "COL",
|
|
469
521
|
"flag_emoji": "🇨🇴",
|
|
470
522
|
"continent": "South America",
|
|
471
|
-
"region": "South America"
|
|
523
|
+
"region": "South America",
|
|
524
|
+
"currency_iso_code": "COP"
|
|
472
525
|
},
|
|
473
526
|
{
|
|
474
527
|
"name": "Comoros",
|
|
@@ -477,7 +530,8 @@ exports.default = {
|
|
|
477
530
|
"iso_3": "COM",
|
|
478
531
|
"flag_emoji": "🇰🇲",
|
|
479
532
|
"continent": "Africa",
|
|
480
|
-
"region": "Eastern Africa"
|
|
533
|
+
"region": "Eastern Africa",
|
|
534
|
+
"currency_iso_code": "KMF"
|
|
481
535
|
},
|
|
482
536
|
{
|
|
483
537
|
"name": "Congo",
|
|
@@ -486,7 +540,8 @@ exports.default = {
|
|
|
486
540
|
"iso_3": "COG",
|
|
487
541
|
"flag_emoji": "🇨🇬",
|
|
488
542
|
"continent": "Africa",
|
|
489
|
-
"region": "Middle Africa"
|
|
543
|
+
"region": "Middle Africa",
|
|
544
|
+
"currency_iso_code": "XAF"
|
|
490
545
|
},
|
|
491
546
|
{
|
|
492
547
|
"name": "Cook Islands",
|
|
@@ -495,7 +550,8 @@ exports.default = {
|
|
|
495
550
|
"iso_3": "COK",
|
|
496
551
|
"flag_emoji": "🇨🇰",
|
|
497
552
|
"continent": "Oceania",
|
|
498
|
-
"region": "Polynesia"
|
|
553
|
+
"region": "Polynesia",
|
|
554
|
+
"currency_iso_code": "NZD"
|
|
499
555
|
},
|
|
500
556
|
{
|
|
501
557
|
"name": "Costa Rica",
|
|
@@ -504,7 +560,8 @@ exports.default = {
|
|
|
504
560
|
"iso_3": "CRI",
|
|
505
561
|
"flag_emoji": "🇨🇷",
|
|
506
562
|
"continent": "North America",
|
|
507
|
-
"region": "Central America"
|
|
563
|
+
"region": "Central America",
|
|
564
|
+
"currency_iso_code": "CRC"
|
|
508
565
|
},
|
|
509
566
|
{
|
|
510
567
|
"name": "Cote d'Ivoire",
|
|
@@ -513,7 +570,8 @@ exports.default = {
|
|
|
513
570
|
"iso_3": "CIV",
|
|
514
571
|
"flag_emoji": "🇨🇮",
|
|
515
572
|
"continent": "Africa",
|
|
516
|
-
"region": "Western Africa"
|
|
573
|
+
"region": "Western Africa",
|
|
574
|
+
"currency_iso_code": "XOF"
|
|
517
575
|
},
|
|
518
576
|
{
|
|
519
577
|
"name": "Croatia",
|
|
@@ -522,7 +580,8 @@ exports.default = {
|
|
|
522
580
|
"iso_3": "HRV",
|
|
523
581
|
"flag_emoji": "🇭🇷",
|
|
524
582
|
"continent": "Europe",
|
|
525
|
-
"region": "Southern Europe"
|
|
583
|
+
"region": "Southern Europe",
|
|
584
|
+
"currency_iso_code": "EUR"
|
|
526
585
|
},
|
|
527
586
|
{
|
|
528
587
|
"name": "Cuba",
|
|
@@ -531,7 +590,8 @@ exports.default = {
|
|
|
531
590
|
"iso_3": "CUB",
|
|
532
591
|
"flag_emoji": "🇨🇺",
|
|
533
592
|
"continent": "North America",
|
|
534
|
-
"region": "Caribbean"
|
|
593
|
+
"region": "Caribbean",
|
|
594
|
+
"currency_iso_code": "CUP"
|
|
535
595
|
},
|
|
536
596
|
{
|
|
537
597
|
"name": "Cyprus",
|
|
@@ -540,7 +600,8 @@ exports.default = {
|
|
|
540
600
|
"iso_3": "CYP",
|
|
541
601
|
"flag_emoji": "🇨🇾",
|
|
542
602
|
"continent": "Asia",
|
|
543
|
-
"region": "Western Asia"
|
|
603
|
+
"region": "Western Asia",
|
|
604
|
+
"currency_iso_code": "EUR"
|
|
544
605
|
},
|
|
545
606
|
{
|
|
546
607
|
"name": "Czechia",
|
|
@@ -549,7 +610,8 @@ exports.default = {
|
|
|
549
610
|
"iso_3": "CZE",
|
|
550
611
|
"flag_emoji": "🇨🇿",
|
|
551
612
|
"continent": "Europe",
|
|
552
|
-
"region": "Eastern Europe"
|
|
613
|
+
"region": "Eastern Europe",
|
|
614
|
+
"currency_iso_code": "CZK"
|
|
553
615
|
},
|
|
554
616
|
{
|
|
555
617
|
"name": "Democratic Republic of the Congo",
|
|
@@ -558,7 +620,8 @@ exports.default = {
|
|
|
558
620
|
"iso_3": "COD",
|
|
559
621
|
"flag_emoji": "🇨🇩",
|
|
560
622
|
"continent": "Africa",
|
|
561
|
-
"region": "Middle Africa"
|
|
623
|
+
"region": "Middle Africa",
|
|
624
|
+
"currency_iso_code": "CDF"
|
|
562
625
|
},
|
|
563
626
|
{
|
|
564
627
|
"name": "Denmark",
|
|
@@ -567,7 +630,8 @@ exports.default = {
|
|
|
567
630
|
"iso_3": "DNK",
|
|
568
631
|
"flag_emoji": "🇩🇰",
|
|
569
632
|
"continent": "Europe",
|
|
570
|
-
"region": "Northern Europe"
|
|
633
|
+
"region": "Northern Europe",
|
|
634
|
+
"currency_iso_code": "DKK"
|
|
571
635
|
},
|
|
572
636
|
{
|
|
573
637
|
"name": "Djibouti",
|
|
@@ -576,7 +640,8 @@ exports.default = {
|
|
|
576
640
|
"iso_3": "DJI",
|
|
577
641
|
"flag_emoji": "🇩🇯",
|
|
578
642
|
"continent": "Africa",
|
|
579
|
-
"region": "Eastern Africa"
|
|
643
|
+
"region": "Eastern Africa",
|
|
644
|
+
"currency_iso_code": "DJF"
|
|
580
645
|
},
|
|
581
646
|
{
|
|
582
647
|
"name": "Dominica",
|
|
@@ -585,7 +650,8 @@ exports.default = {
|
|
|
585
650
|
"iso_3": "DMA",
|
|
586
651
|
"flag_emoji": "🇩🇲",
|
|
587
652
|
"continent": "North America",
|
|
588
|
-
"region": "Caribbean"
|
|
653
|
+
"region": "Caribbean",
|
|
654
|
+
"currency_iso_code": "XCD"
|
|
589
655
|
},
|
|
590
656
|
{
|
|
591
657
|
"name": "Dominican Republic",
|
|
@@ -594,7 +660,8 @@ exports.default = {
|
|
|
594
660
|
"iso_3": "DOM",
|
|
595
661
|
"flag_emoji": "🇩🇴",
|
|
596
662
|
"continent": "North America",
|
|
597
|
-
"region": "Caribbean"
|
|
663
|
+
"region": "Caribbean",
|
|
664
|
+
"currency_iso_code": "DOP"
|
|
598
665
|
},
|
|
599
666
|
{
|
|
600
667
|
"name": "Ecuador",
|
|
@@ -603,7 +670,8 @@ exports.default = {
|
|
|
603
670
|
"iso_3": "ECU",
|
|
604
671
|
"flag_emoji": "🇪🇨",
|
|
605
672
|
"continent": "South America",
|
|
606
|
-
"region": "South America"
|
|
673
|
+
"region": "South America",
|
|
674
|
+
"currency_iso_code": "USD"
|
|
607
675
|
},
|
|
608
676
|
{
|
|
609
677
|
"name": "Egypt",
|
|
@@ -612,7 +680,8 @@ exports.default = {
|
|
|
612
680
|
"iso_3": "EGY",
|
|
613
681
|
"flag_emoji": "🇪🇬",
|
|
614
682
|
"continent": "Africa",
|
|
615
|
-
"region": "Northern Africa"
|
|
683
|
+
"region": "Northern Africa",
|
|
684
|
+
"currency_iso_code": "EGP"
|
|
616
685
|
},
|
|
617
686
|
{
|
|
618
687
|
"name": "El Salvador",
|
|
@@ -621,7 +690,8 @@ exports.default = {
|
|
|
621
690
|
"iso_3": "SLV",
|
|
622
691
|
"flag_emoji": "🇸🇻",
|
|
623
692
|
"continent": "North America",
|
|
624
|
-
"region": "Central America"
|
|
693
|
+
"region": "Central America",
|
|
694
|
+
"currency_iso_code": "USD"
|
|
625
695
|
},
|
|
626
696
|
{
|
|
627
697
|
"name": "Equatorial Guinea",
|
|
@@ -630,7 +700,8 @@ exports.default = {
|
|
|
630
700
|
"iso_3": "GNQ",
|
|
631
701
|
"flag_emoji": "🇬🇶",
|
|
632
702
|
"continent": "Africa",
|
|
633
|
-
"region": "Middle Africa"
|
|
703
|
+
"region": "Middle Africa",
|
|
704
|
+
"currency_iso_code": "XAF"
|
|
634
705
|
},
|
|
635
706
|
{
|
|
636
707
|
"name": "Eritrea",
|
|
@@ -639,7 +710,8 @@ exports.default = {
|
|
|
639
710
|
"iso_3": "ERI",
|
|
640
711
|
"flag_emoji": "🇪🇷",
|
|
641
712
|
"continent": "Africa",
|
|
642
|
-
"region": "Eastern Africa"
|
|
713
|
+
"region": "Eastern Africa",
|
|
714
|
+
"currency_iso_code": "ERN"
|
|
643
715
|
},
|
|
644
716
|
{
|
|
645
717
|
"name": "Estonia",
|
|
@@ -648,7 +720,8 @@ exports.default = {
|
|
|
648
720
|
"iso_3": "EST",
|
|
649
721
|
"flag_emoji": "🇪🇪",
|
|
650
722
|
"continent": "Europe",
|
|
651
|
-
"region": "Northern Europe"
|
|
723
|
+
"region": "Northern Europe",
|
|
724
|
+
"currency_iso_code": "EUR"
|
|
652
725
|
},
|
|
653
726
|
{
|
|
654
727
|
"name": "Eswatini",
|
|
@@ -657,7 +730,8 @@ exports.default = {
|
|
|
657
730
|
"iso_3": "SWZ",
|
|
658
731
|
"flag_emoji": "🇸🇿",
|
|
659
732
|
"continent": "Africa",
|
|
660
|
-
"region": "Southern Africa"
|
|
733
|
+
"region": "Southern Africa",
|
|
734
|
+
"currency_iso_code": "SZL"
|
|
661
735
|
},
|
|
662
736
|
{
|
|
663
737
|
"name": "Ethiopia",
|
|
@@ -666,7 +740,8 @@ exports.default = {
|
|
|
666
740
|
"iso_3": "ETH",
|
|
667
741
|
"flag_emoji": "🇪🇹",
|
|
668
742
|
"continent": "Africa",
|
|
669
|
-
"region": "Eastern Africa"
|
|
743
|
+
"region": "Eastern Africa",
|
|
744
|
+
"currency_iso_code": "ETB"
|
|
670
745
|
},
|
|
671
746
|
{
|
|
672
747
|
"name": "Falkland Islands (Malvinas)",
|
|
@@ -675,7 +750,8 @@ exports.default = {
|
|
|
675
750
|
"iso_3": "FLK",
|
|
676
751
|
"flag_emoji": "🇫🇰",
|
|
677
752
|
"continent": "South America",
|
|
678
|
-
"region": "South America"
|
|
753
|
+
"region": "South America",
|
|
754
|
+
"currency_iso_code": "FKP"
|
|
679
755
|
},
|
|
680
756
|
{
|
|
681
757
|
"name": "Faroe Islands",
|
|
@@ -684,7 +760,8 @@ exports.default = {
|
|
|
684
760
|
"iso_3": "FRO",
|
|
685
761
|
"flag_emoji": "🇫🇴",
|
|
686
762
|
"continent": "Europe",
|
|
687
|
-
"region": "Northern Europe"
|
|
763
|
+
"region": "Northern Europe",
|
|
764
|
+
"currency_iso_code": "DKK"
|
|
688
765
|
},
|
|
689
766
|
{
|
|
690
767
|
"name": "Fiji",
|
|
@@ -693,7 +770,8 @@ exports.default = {
|
|
|
693
770
|
"iso_3": "FJI",
|
|
694
771
|
"flag_emoji": "🇫🇯",
|
|
695
772
|
"continent": "Oceania",
|
|
696
|
-
"region": "Melanesia"
|
|
773
|
+
"region": "Melanesia",
|
|
774
|
+
"currency_iso_code": "FJD"
|
|
697
775
|
},
|
|
698
776
|
{
|
|
699
777
|
"name": "Finland",
|
|
@@ -702,7 +780,8 @@ exports.default = {
|
|
|
702
780
|
"iso_3": "FIN",
|
|
703
781
|
"flag_emoji": "🇫🇮",
|
|
704
782
|
"continent": "Europe",
|
|
705
|
-
"region": "Northern Europe"
|
|
783
|
+
"region": "Northern Europe",
|
|
784
|
+
"currency_iso_code": "EUR"
|
|
706
785
|
},
|
|
707
786
|
{
|
|
708
787
|
"name": "France",
|
|
@@ -711,7 +790,8 @@ exports.default = {
|
|
|
711
790
|
"iso_3": "FRA",
|
|
712
791
|
"flag_emoji": "🇫🇷",
|
|
713
792
|
"continent": "Europe",
|
|
714
|
-
"region": "Western Europe"
|
|
793
|
+
"region": "Western Europe",
|
|
794
|
+
"currency_iso_code": "EUR"
|
|
715
795
|
},
|
|
716
796
|
{
|
|
717
797
|
"name": "French Guiana",
|
|
@@ -720,7 +800,8 @@ exports.default = {
|
|
|
720
800
|
"iso_3": "GUF",
|
|
721
801
|
"flag_emoji": "🇬🇫",
|
|
722
802
|
"continent": "South America",
|
|
723
|
-
"region": "South America"
|
|
803
|
+
"region": "South America",
|
|
804
|
+
"currency_iso_code": "EUR"
|
|
724
805
|
},
|
|
725
806
|
{
|
|
726
807
|
"name": "French Polynesia",
|
|
@@ -729,7 +810,8 @@ exports.default = {
|
|
|
729
810
|
"iso_3": "PYF",
|
|
730
811
|
"flag_emoji": "🇵🇫",
|
|
731
812
|
"continent": "Oceania",
|
|
732
|
-
"region": "Polynesia"
|
|
813
|
+
"region": "Polynesia",
|
|
814
|
+
"currency_iso_code": "XPF"
|
|
733
815
|
},
|
|
734
816
|
{
|
|
735
817
|
"name": "French Southern Territories",
|
|
@@ -738,7 +820,8 @@ exports.default = {
|
|
|
738
820
|
"iso_3": "ATF",
|
|
739
821
|
"flag_emoji": "🇹🇫",
|
|
740
822
|
"continent": "Antarctica",
|
|
741
|
-
"region": "Antarctica"
|
|
823
|
+
"region": "Antarctica",
|
|
824
|
+
"currency_iso_code": "EUR"
|
|
742
825
|
},
|
|
743
826
|
{
|
|
744
827
|
"name": "Gabon",
|
|
@@ -747,7 +830,8 @@ exports.default = {
|
|
|
747
830
|
"iso_3": "GAB",
|
|
748
831
|
"flag_emoji": "🇬🇦",
|
|
749
832
|
"continent": "Africa",
|
|
750
|
-
"region": "Middle Africa"
|
|
833
|
+
"region": "Middle Africa",
|
|
834
|
+
"currency_iso_code": "XAF"
|
|
751
835
|
},
|
|
752
836
|
{
|
|
753
837
|
"name": "Gambia",
|
|
@@ -756,7 +840,8 @@ exports.default = {
|
|
|
756
840
|
"iso_3": "GMB",
|
|
757
841
|
"flag_emoji": "🇬🇲",
|
|
758
842
|
"continent": "Africa",
|
|
759
|
-
"region": "Western Africa"
|
|
843
|
+
"region": "Western Africa",
|
|
844
|
+
"currency_iso_code": "GMD"
|
|
760
845
|
},
|
|
761
846
|
{
|
|
762
847
|
"name": "Georgia",
|
|
@@ -765,7 +850,8 @@ exports.default = {
|
|
|
765
850
|
"iso_3": "GEO",
|
|
766
851
|
"flag_emoji": "🇬🇪",
|
|
767
852
|
"continent": "Asia",
|
|
768
|
-
"region": "Western Asia"
|
|
853
|
+
"region": "Western Asia",
|
|
854
|
+
"currency_iso_code": "GEL"
|
|
769
855
|
},
|
|
770
856
|
{
|
|
771
857
|
"name": "Germany",
|
|
@@ -774,7 +860,8 @@ exports.default = {
|
|
|
774
860
|
"iso_3": "DEU",
|
|
775
861
|
"flag_emoji": "🇩🇪",
|
|
776
862
|
"continent": "Europe",
|
|
777
|
-
"region": "Western Europe"
|
|
863
|
+
"region": "Western Europe",
|
|
864
|
+
"currency_iso_code": "EUR"
|
|
778
865
|
},
|
|
779
866
|
{
|
|
780
867
|
"name": "Ghana",
|
|
@@ -783,7 +870,8 @@ exports.default = {
|
|
|
783
870
|
"iso_3": "GHA",
|
|
784
871
|
"flag_emoji": "🇬🇭",
|
|
785
872
|
"continent": "Africa",
|
|
786
|
-
"region": "Western Africa"
|
|
873
|
+
"region": "Western Africa",
|
|
874
|
+
"currency_iso_code": "GHS"
|
|
787
875
|
},
|
|
788
876
|
{
|
|
789
877
|
"name": "Gibraltar",
|
|
@@ -792,7 +880,8 @@ exports.default = {
|
|
|
792
880
|
"iso_3": "GIB",
|
|
793
881
|
"flag_emoji": "🇬🇮",
|
|
794
882
|
"continent": "Europe",
|
|
795
|
-
"region": "Southern Europe"
|
|
883
|
+
"region": "Southern Europe",
|
|
884
|
+
"currency_iso_code": "GIP"
|
|
796
885
|
},
|
|
797
886
|
{
|
|
798
887
|
"name": "Greece",
|
|
@@ -801,7 +890,8 @@ exports.default = {
|
|
|
801
890
|
"iso_3": "GRC",
|
|
802
891
|
"flag_emoji": "🇬🇷",
|
|
803
892
|
"continent": "Europe",
|
|
804
|
-
"region": "Southern Europe"
|
|
893
|
+
"region": "Southern Europe",
|
|
894
|
+
"currency_iso_code": "EUR"
|
|
805
895
|
},
|
|
806
896
|
{
|
|
807
897
|
"name": "Greenland",
|
|
@@ -810,7 +900,8 @@ exports.default = {
|
|
|
810
900
|
"iso_3": "GRL",
|
|
811
901
|
"flag_emoji": "🇬🇱",
|
|
812
902
|
"continent": "North America",
|
|
813
|
-
"region": "Northern America"
|
|
903
|
+
"region": "Northern America",
|
|
904
|
+
"currency_iso_code": "DKK"
|
|
814
905
|
},
|
|
815
906
|
{
|
|
816
907
|
"name": "Grenada",
|
|
@@ -819,7 +910,8 @@ exports.default = {
|
|
|
819
910
|
"iso_3": "GRD",
|
|
820
911
|
"flag_emoji": "🇬🇩",
|
|
821
912
|
"continent": "North America",
|
|
822
|
-
"region": "Caribbean"
|
|
913
|
+
"region": "Caribbean",
|
|
914
|
+
"currency_iso_code": "XCD"
|
|
823
915
|
},
|
|
824
916
|
{
|
|
825
917
|
"name": "Guadeloupe",
|
|
@@ -828,7 +920,8 @@ exports.default = {
|
|
|
828
920
|
"iso_3": "GLP",
|
|
829
921
|
"flag_emoji": "🇬🇵",
|
|
830
922
|
"continent": "North America",
|
|
831
|
-
"region": "Caribbean"
|
|
923
|
+
"region": "Caribbean",
|
|
924
|
+
"currency_iso_code": "EUR"
|
|
832
925
|
},
|
|
833
926
|
{
|
|
834
927
|
"name": "Guam",
|
|
@@ -837,7 +930,8 @@ exports.default = {
|
|
|
837
930
|
"iso_3": "GUM",
|
|
838
931
|
"flag_emoji": "🇬🇺",
|
|
839
932
|
"continent": "Oceania",
|
|
840
|
-
"region": "Micronesia"
|
|
933
|
+
"region": "Micronesia",
|
|
934
|
+
"currency_iso_code": "USD"
|
|
841
935
|
},
|
|
842
936
|
{
|
|
843
937
|
"name": "Guatemala",
|
|
@@ -846,7 +940,8 @@ exports.default = {
|
|
|
846
940
|
"iso_3": "GTM",
|
|
847
941
|
"flag_emoji": "🇬🇹",
|
|
848
942
|
"continent": "North America",
|
|
849
|
-
"region": "Central America"
|
|
943
|
+
"region": "Central America",
|
|
944
|
+
"currency_iso_code": "GTQ"
|
|
850
945
|
},
|
|
851
946
|
{
|
|
852
947
|
"name": "Guernsey",
|
|
@@ -855,7 +950,8 @@ exports.default = {
|
|
|
855
950
|
"iso_3": "GGY",
|
|
856
951
|
"flag_emoji": "🇬🇬",
|
|
857
952
|
"continent": "Europe",
|
|
858
|
-
"region": "Northern Europe"
|
|
953
|
+
"region": "Northern Europe",
|
|
954
|
+
"currency_iso_code": "GBP"
|
|
859
955
|
},
|
|
860
956
|
{
|
|
861
957
|
"name": "Guinea",
|
|
@@ -864,7 +960,8 @@ exports.default = {
|
|
|
864
960
|
"iso_3": "GIN",
|
|
865
961
|
"flag_emoji": "🇬🇳",
|
|
866
962
|
"continent": "Africa",
|
|
867
|
-
"region": "Western Africa"
|
|
963
|
+
"region": "Western Africa",
|
|
964
|
+
"currency_iso_code": "GNF"
|
|
868
965
|
},
|
|
869
966
|
{
|
|
870
967
|
"name": "Guinea-Bissau",
|
|
@@ -873,7 +970,8 @@ exports.default = {
|
|
|
873
970
|
"iso_3": "GNB",
|
|
874
971
|
"flag_emoji": "🇬🇼",
|
|
875
972
|
"continent": "Africa",
|
|
876
|
-
"region": "Western Africa"
|
|
973
|
+
"region": "Western Africa",
|
|
974
|
+
"currency_iso_code": "XOF"
|
|
877
975
|
},
|
|
878
976
|
{
|
|
879
977
|
"name": "Guyana",
|
|
@@ -882,7 +980,8 @@ exports.default = {
|
|
|
882
980
|
"iso_3": "GUY",
|
|
883
981
|
"flag_emoji": "🇬🇾",
|
|
884
982
|
"continent": "South America",
|
|
885
|
-
"region": "South America"
|
|
983
|
+
"region": "South America",
|
|
984
|
+
"currency_iso_code": "GYD"
|
|
886
985
|
},
|
|
887
986
|
{
|
|
888
987
|
"name": "Haiti",
|
|
@@ -891,7 +990,8 @@ exports.default = {
|
|
|
891
990
|
"iso_3": "HTI",
|
|
892
991
|
"flag_emoji": "🇭🇹",
|
|
893
992
|
"continent": "North America",
|
|
894
|
-
"region": "Caribbean"
|
|
993
|
+
"region": "Caribbean",
|
|
994
|
+
"currency_iso_code": "HTG"
|
|
895
995
|
},
|
|
896
996
|
{
|
|
897
997
|
"name": "Heard Island and McDonald Islands",
|
|
@@ -900,7 +1000,8 @@ exports.default = {
|
|
|
900
1000
|
"iso_3": "HMD",
|
|
901
1001
|
"flag_emoji": "🇭🇲",
|
|
902
1002
|
"continent": "Antarctica",
|
|
903
|
-
"region": "Antarctica"
|
|
1003
|
+
"region": "Antarctica",
|
|
1004
|
+
"currency_iso_code": "AUD"
|
|
904
1005
|
},
|
|
905
1006
|
{
|
|
906
1007
|
"name": "Holy See",
|
|
@@ -909,7 +1010,8 @@ exports.default = {
|
|
|
909
1010
|
"iso_3": "VAT",
|
|
910
1011
|
"flag_emoji": "🇻🇦",
|
|
911
1012
|
"continent": "Europe",
|
|
912
|
-
"region": "Southern Europe"
|
|
1013
|
+
"region": "Southern Europe",
|
|
1014
|
+
"currency_iso_code": "EUR"
|
|
913
1015
|
},
|
|
914
1016
|
{
|
|
915
1017
|
"name": "Honduras",
|
|
@@ -918,7 +1020,8 @@ exports.default = {
|
|
|
918
1020
|
"iso_3": "HND",
|
|
919
1021
|
"flag_emoji": "🇭🇳",
|
|
920
1022
|
"continent": "North America",
|
|
921
|
-
"region": "Central America"
|
|
1023
|
+
"region": "Central America",
|
|
1024
|
+
"currency_iso_code": "HNL"
|
|
922
1025
|
},
|
|
923
1026
|
{
|
|
924
1027
|
"name": "Hong Kong",
|
|
@@ -927,7 +1030,8 @@ exports.default = {
|
|
|
927
1030
|
"iso_3": "HKG",
|
|
928
1031
|
"flag_emoji": "🇭🇰",
|
|
929
1032
|
"continent": "Asia",
|
|
930
|
-
"region": "Eastern Asia"
|
|
1033
|
+
"region": "Eastern Asia",
|
|
1034
|
+
"currency_iso_code": "HKD"
|
|
931
1035
|
},
|
|
932
1036
|
{
|
|
933
1037
|
"name": "Hungary",
|
|
@@ -936,7 +1040,8 @@ exports.default = {
|
|
|
936
1040
|
"iso_3": "HUN",
|
|
937
1041
|
"flag_emoji": "🇭🇺",
|
|
938
1042
|
"continent": "Europe",
|
|
939
|
-
"region": "Eastern Europe"
|
|
1043
|
+
"region": "Eastern Europe",
|
|
1044
|
+
"currency_iso_code": "HUF"
|
|
940
1045
|
},
|
|
941
1046
|
{
|
|
942
1047
|
"name": "Iceland",
|
|
@@ -945,7 +1050,8 @@ exports.default = {
|
|
|
945
1050
|
"iso_3": "ISL",
|
|
946
1051
|
"flag_emoji": "🇮🇸",
|
|
947
1052
|
"continent": "Europe",
|
|
948
|
-
"region": "Northern Europe"
|
|
1053
|
+
"region": "Northern Europe",
|
|
1054
|
+
"currency_iso_code": "ISK"
|
|
949
1055
|
},
|
|
950
1056
|
{
|
|
951
1057
|
"name": "India",
|
|
@@ -954,7 +1060,8 @@ exports.default = {
|
|
|
954
1060
|
"iso_3": "IND",
|
|
955
1061
|
"flag_emoji": "🇮🇳",
|
|
956
1062
|
"continent": "Asia",
|
|
957
|
-
"region": "Southern Asia"
|
|
1063
|
+
"region": "Southern Asia",
|
|
1064
|
+
"currency_iso_code": "INR"
|
|
958
1065
|
},
|
|
959
1066
|
{
|
|
960
1067
|
"name": "Indonesia",
|
|
@@ -963,7 +1070,8 @@ exports.default = {
|
|
|
963
1070
|
"iso_3": "IDN",
|
|
964
1071
|
"flag_emoji": "🇮🇩",
|
|
965
1072
|
"continent": "Asia",
|
|
966
|
-
"region": "South-eastern Asia"
|
|
1073
|
+
"region": "South-eastern Asia",
|
|
1074
|
+
"currency_iso_code": "IDR"
|
|
967
1075
|
},
|
|
968
1076
|
{
|
|
969
1077
|
"name": "Iran",
|
|
@@ -972,7 +1080,8 @@ exports.default = {
|
|
|
972
1080
|
"iso_3": "IRN",
|
|
973
1081
|
"flag_emoji": "🇮🇷",
|
|
974
1082
|
"continent": "Asia",
|
|
975
|
-
"region": "Southern Asia"
|
|
1083
|
+
"region": "Southern Asia",
|
|
1084
|
+
"currency_iso_code": "IRR"
|
|
976
1085
|
},
|
|
977
1086
|
{
|
|
978
1087
|
"name": "Iraq",
|
|
@@ -981,7 +1090,8 @@ exports.default = {
|
|
|
981
1090
|
"iso_3": "IRQ",
|
|
982
1091
|
"flag_emoji": "🇮🇶",
|
|
983
1092
|
"continent": "Asia",
|
|
984
|
-
"region": "Western Asia"
|
|
1093
|
+
"region": "Western Asia",
|
|
1094
|
+
"currency_iso_code": "IQD"
|
|
985
1095
|
},
|
|
986
1096
|
{
|
|
987
1097
|
"name": "Ireland",
|
|
@@ -990,7 +1100,8 @@ exports.default = {
|
|
|
990
1100
|
"iso_3": "IRL",
|
|
991
1101
|
"flag_emoji": "🇮🇪",
|
|
992
1102
|
"continent": "Europe",
|
|
993
|
-
"region": "Northern Europe"
|
|
1103
|
+
"region": "Northern Europe",
|
|
1104
|
+
"currency_iso_code": "EUR"
|
|
994
1105
|
},
|
|
995
1106
|
{
|
|
996
1107
|
"name": "Isle of Man",
|
|
@@ -999,7 +1110,8 @@ exports.default = {
|
|
|
999
1110
|
"iso_3": "IMN",
|
|
1000
1111
|
"flag_emoji": "🇮🇲",
|
|
1001
1112
|
"continent": "Europe",
|
|
1002
|
-
"region": "Northern Europe"
|
|
1113
|
+
"region": "Northern Europe",
|
|
1114
|
+
"currency_iso_code": "GBP"
|
|
1003
1115
|
},
|
|
1004
1116
|
{
|
|
1005
1117
|
"name": "Israel",
|
|
@@ -1008,7 +1120,8 @@ exports.default = {
|
|
|
1008
1120
|
"iso_3": "ISR",
|
|
1009
1121
|
"flag_emoji": "🇮🇱",
|
|
1010
1122
|
"continent": "Asia",
|
|
1011
|
-
"region": "Western Asia"
|
|
1123
|
+
"region": "Western Asia",
|
|
1124
|
+
"currency_iso_code": "ILS"
|
|
1012
1125
|
},
|
|
1013
1126
|
{
|
|
1014
1127
|
"name": "Italy",
|
|
@@ -1017,7 +1130,8 @@ exports.default = {
|
|
|
1017
1130
|
"iso_3": "ITA",
|
|
1018
1131
|
"flag_emoji": "🇮🇹",
|
|
1019
1132
|
"continent": "Europe",
|
|
1020
|
-
"region": "Southern Europe"
|
|
1133
|
+
"region": "Southern Europe",
|
|
1134
|
+
"currency_iso_code": "EUR"
|
|
1021
1135
|
},
|
|
1022
1136
|
{
|
|
1023
1137
|
"name": "Jamaica",
|
|
@@ -1026,7 +1140,8 @@ exports.default = {
|
|
|
1026
1140
|
"iso_3": "JAM",
|
|
1027
1141
|
"flag_emoji": "🇯🇲",
|
|
1028
1142
|
"continent": "North America",
|
|
1029
|
-
"region": "Caribbean"
|
|
1143
|
+
"region": "Caribbean",
|
|
1144
|
+
"currency_iso_code": "JMD"
|
|
1030
1145
|
},
|
|
1031
1146
|
{
|
|
1032
1147
|
"name": "Japan",
|
|
@@ -1035,7 +1150,8 @@ exports.default = {
|
|
|
1035
1150
|
"iso_3": "JPN",
|
|
1036
1151
|
"flag_emoji": "🇯🇵",
|
|
1037
1152
|
"continent": "Asia",
|
|
1038
|
-
"region": "Eastern Asia"
|
|
1153
|
+
"region": "Eastern Asia",
|
|
1154
|
+
"currency_iso_code": "JPY"
|
|
1039
1155
|
},
|
|
1040
1156
|
{
|
|
1041
1157
|
"name": "Jersey",
|
|
@@ -1044,7 +1160,8 @@ exports.default = {
|
|
|
1044
1160
|
"iso_3": "JEY",
|
|
1045
1161
|
"flag_emoji": "🇯🇪",
|
|
1046
1162
|
"continent": "Europe",
|
|
1047
|
-
"region": "Northern Europe"
|
|
1163
|
+
"region": "Northern Europe",
|
|
1164
|
+
"currency_iso_code": "GBP"
|
|
1048
1165
|
},
|
|
1049
1166
|
{
|
|
1050
1167
|
"name": "Jordan",
|
|
@@ -1053,7 +1170,8 @@ exports.default = {
|
|
|
1053
1170
|
"iso_3": "JOR",
|
|
1054
1171
|
"flag_emoji": "🇯🇴",
|
|
1055
1172
|
"continent": "Asia",
|
|
1056
|
-
"region": "Western Asia"
|
|
1173
|
+
"region": "Western Asia",
|
|
1174
|
+
"currency_iso_code": "JOD"
|
|
1057
1175
|
},
|
|
1058
1176
|
{
|
|
1059
1177
|
"name": "Kazakhstan",
|
|
@@ -1062,7 +1180,8 @@ exports.default = {
|
|
|
1062
1180
|
"iso_3": "KAZ",
|
|
1063
1181
|
"flag_emoji": "🇰🇿",
|
|
1064
1182
|
"continent": "Asia",
|
|
1065
|
-
"region": "Central Asia"
|
|
1183
|
+
"region": "Central Asia",
|
|
1184
|
+
"currency_iso_code": "KZT"
|
|
1066
1185
|
},
|
|
1067
1186
|
{
|
|
1068
1187
|
"name": "Kenya",
|
|
@@ -1071,7 +1190,8 @@ exports.default = {
|
|
|
1071
1190
|
"iso_3": "KEN",
|
|
1072
1191
|
"flag_emoji": "🇰🇪",
|
|
1073
1192
|
"continent": "Africa",
|
|
1074
|
-
"region": "Eastern Africa"
|
|
1193
|
+
"region": "Eastern Africa",
|
|
1194
|
+
"currency_iso_code": "KES"
|
|
1075
1195
|
},
|
|
1076
1196
|
{
|
|
1077
1197
|
"name": "Kiribati",
|
|
@@ -1080,7 +1200,8 @@ exports.default = {
|
|
|
1080
1200
|
"iso_3": "KIR",
|
|
1081
1201
|
"flag_emoji": "🇰🇮",
|
|
1082
1202
|
"continent": "Oceania",
|
|
1083
|
-
"region": "Micronesia"
|
|
1203
|
+
"region": "Micronesia",
|
|
1204
|
+
"currency_iso_code": "AUD"
|
|
1084
1205
|
},
|
|
1085
1206
|
{
|
|
1086
1207
|
"name": "Kuwait",
|
|
@@ -1089,7 +1210,8 @@ exports.default = {
|
|
|
1089
1210
|
"iso_3": "KWT",
|
|
1090
1211
|
"flag_emoji": "🇰🇼",
|
|
1091
1212
|
"continent": "Asia",
|
|
1092
|
-
"region": "Western Asia"
|
|
1213
|
+
"region": "Western Asia",
|
|
1214
|
+
"currency_iso_code": "KWD"
|
|
1093
1215
|
},
|
|
1094
1216
|
{
|
|
1095
1217
|
"name": "Kyrgyzstan",
|
|
@@ -1098,7 +1220,8 @@ exports.default = {
|
|
|
1098
1220
|
"iso_3": "KGZ",
|
|
1099
1221
|
"flag_emoji": "🇰🇬",
|
|
1100
1222
|
"continent": "Asia",
|
|
1101
|
-
"region": "Central Asia"
|
|
1223
|
+
"region": "Central Asia",
|
|
1224
|
+
"currency_iso_code": "KGS"
|
|
1102
1225
|
},
|
|
1103
1226
|
{
|
|
1104
1227
|
"name": "Laos",
|
|
@@ -1107,7 +1230,8 @@ exports.default = {
|
|
|
1107
1230
|
"iso_3": "LAO",
|
|
1108
1231
|
"flag_emoji": "🇱🇦",
|
|
1109
1232
|
"continent": "Asia",
|
|
1110
|
-
"region": "South-eastern Asia"
|
|
1233
|
+
"region": "South-eastern Asia",
|
|
1234
|
+
"currency_iso_code": "LAK"
|
|
1111
1235
|
},
|
|
1112
1236
|
{
|
|
1113
1237
|
"name": "Latvia",
|
|
@@ -1116,7 +1240,8 @@ exports.default = {
|
|
|
1116
1240
|
"iso_3": "LVA",
|
|
1117
1241
|
"flag_emoji": "🇱🇻",
|
|
1118
1242
|
"continent": "Europe",
|
|
1119
|
-
"region": "Northern Europe"
|
|
1243
|
+
"region": "Northern Europe",
|
|
1244
|
+
"currency_iso_code": "EUR"
|
|
1120
1245
|
},
|
|
1121
1246
|
{
|
|
1122
1247
|
"name": "Lebanon",
|
|
@@ -1125,7 +1250,8 @@ exports.default = {
|
|
|
1125
1250
|
"iso_3": "LBN",
|
|
1126
1251
|
"flag_emoji": "🇱🇧",
|
|
1127
1252
|
"continent": "Asia",
|
|
1128
|
-
"region": "Western Asia"
|
|
1253
|
+
"region": "Western Asia",
|
|
1254
|
+
"currency_iso_code": "LBP"
|
|
1129
1255
|
},
|
|
1130
1256
|
{
|
|
1131
1257
|
"name": "Lesotho",
|
|
@@ -1134,7 +1260,8 @@ exports.default = {
|
|
|
1134
1260
|
"iso_3": "LSO",
|
|
1135
1261
|
"flag_emoji": "🇱🇸",
|
|
1136
1262
|
"continent": "Africa",
|
|
1137
|
-
"region": "Southern Africa"
|
|
1263
|
+
"region": "Southern Africa",
|
|
1264
|
+
"currency_iso_code": "LSL"
|
|
1138
1265
|
},
|
|
1139
1266
|
{
|
|
1140
1267
|
"name": "Liberia",
|
|
@@ -1143,7 +1270,8 @@ exports.default = {
|
|
|
1143
1270
|
"iso_3": "LBR",
|
|
1144
1271
|
"flag_emoji": "🇱🇷",
|
|
1145
1272
|
"continent": "Africa",
|
|
1146
|
-
"region": "Western Africa"
|
|
1273
|
+
"region": "Western Africa",
|
|
1274
|
+
"currency_iso_code": "LRD"
|
|
1147
1275
|
},
|
|
1148
1276
|
{
|
|
1149
1277
|
"name": "Libya",
|
|
@@ -1152,7 +1280,8 @@ exports.default = {
|
|
|
1152
1280
|
"iso_3": "LBY",
|
|
1153
1281
|
"flag_emoji": "🇱🇾",
|
|
1154
1282
|
"continent": "Africa",
|
|
1155
|
-
"region": "Northern Africa"
|
|
1283
|
+
"region": "Northern Africa",
|
|
1284
|
+
"currency_iso_code": "LYD"
|
|
1156
1285
|
},
|
|
1157
1286
|
{
|
|
1158
1287
|
"name": "Liechtenstein",
|
|
@@ -1161,7 +1290,8 @@ exports.default = {
|
|
|
1161
1290
|
"iso_3": "LIE",
|
|
1162
1291
|
"flag_emoji": "🇱🇮",
|
|
1163
1292
|
"continent": "Europe",
|
|
1164
|
-
"region": "Western Europe"
|
|
1293
|
+
"region": "Western Europe",
|
|
1294
|
+
"currency_iso_code": "CHF"
|
|
1165
1295
|
},
|
|
1166
1296
|
{
|
|
1167
1297
|
"name": "Lithuania",
|
|
@@ -1170,7 +1300,8 @@ exports.default = {
|
|
|
1170
1300
|
"iso_3": "LTU",
|
|
1171
1301
|
"flag_emoji": "🇱🇹",
|
|
1172
1302
|
"continent": "Europe",
|
|
1173
|
-
"region": "Northern Europe"
|
|
1303
|
+
"region": "Northern Europe",
|
|
1304
|
+
"currency_iso_code": "EUR"
|
|
1174
1305
|
},
|
|
1175
1306
|
{
|
|
1176
1307
|
"name": "Luxembourg",
|
|
@@ -1179,7 +1310,8 @@ exports.default = {
|
|
|
1179
1310
|
"iso_3": "LUX",
|
|
1180
1311
|
"flag_emoji": "🇱🇺",
|
|
1181
1312
|
"continent": "Europe",
|
|
1182
|
-
"region": "Western Europe"
|
|
1313
|
+
"region": "Western Europe",
|
|
1314
|
+
"currency_iso_code": "EUR"
|
|
1183
1315
|
},
|
|
1184
1316
|
{
|
|
1185
1317
|
"name": "Macao",
|
|
@@ -1188,7 +1320,8 @@ exports.default = {
|
|
|
1188
1320
|
"iso_3": "MAC",
|
|
1189
1321
|
"flag_emoji": "🇲🇴",
|
|
1190
1322
|
"continent": "Asia",
|
|
1191
|
-
"region": "Eastern Asia"
|
|
1323
|
+
"region": "Eastern Asia",
|
|
1324
|
+
"currency_iso_code": "MOP"
|
|
1192
1325
|
},
|
|
1193
1326
|
{
|
|
1194
1327
|
"name": "Madagascar",
|
|
@@ -1197,7 +1330,8 @@ exports.default = {
|
|
|
1197
1330
|
"iso_3": "MDG",
|
|
1198
1331
|
"flag_emoji": "🇲🇬",
|
|
1199
1332
|
"continent": "Africa",
|
|
1200
|
-
"region": "Eastern Africa"
|
|
1333
|
+
"region": "Eastern Africa",
|
|
1334
|
+
"currency_iso_code": "MGA"
|
|
1201
1335
|
},
|
|
1202
1336
|
{
|
|
1203
1337
|
"name": "Malawi",
|
|
@@ -1206,7 +1340,8 @@ exports.default = {
|
|
|
1206
1340
|
"iso_3": "MWI",
|
|
1207
1341
|
"flag_emoji": "🇲🇼",
|
|
1208
1342
|
"continent": "Africa",
|
|
1209
|
-
"region": "Eastern Africa"
|
|
1343
|
+
"region": "Eastern Africa",
|
|
1344
|
+
"currency_iso_code": "MWK"
|
|
1210
1345
|
},
|
|
1211
1346
|
{
|
|
1212
1347
|
"name": "Malaysia",
|
|
@@ -1215,7 +1350,8 @@ exports.default = {
|
|
|
1215
1350
|
"iso_3": "MYS",
|
|
1216
1351
|
"flag_emoji": "🇲🇾",
|
|
1217
1352
|
"continent": "Asia",
|
|
1218
|
-
"region": "South-eastern Asia"
|
|
1353
|
+
"region": "South-eastern Asia",
|
|
1354
|
+
"currency_iso_code": "MYR"
|
|
1219
1355
|
},
|
|
1220
1356
|
{
|
|
1221
1357
|
"name": "Maldives",
|
|
@@ -1224,7 +1360,8 @@ exports.default = {
|
|
|
1224
1360
|
"iso_3": "MDV",
|
|
1225
1361
|
"flag_emoji": "🇲🇻",
|
|
1226
1362
|
"continent": "Asia",
|
|
1227
|
-
"region": "Southern Asia"
|
|
1363
|
+
"region": "Southern Asia",
|
|
1364
|
+
"currency_iso_code": "MVR"
|
|
1228
1365
|
},
|
|
1229
1366
|
{
|
|
1230
1367
|
"name": "Mali",
|
|
@@ -1233,7 +1370,8 @@ exports.default = {
|
|
|
1233
1370
|
"iso_3": "MLI",
|
|
1234
1371
|
"flag_emoji": "🇲🇱",
|
|
1235
1372
|
"continent": "Africa",
|
|
1236
|
-
"region": "Western Africa"
|
|
1373
|
+
"region": "Western Africa",
|
|
1374
|
+
"currency_iso_code": "XOF"
|
|
1237
1375
|
},
|
|
1238
1376
|
{
|
|
1239
1377
|
"name": "Malta",
|
|
@@ -1242,7 +1380,8 @@ exports.default = {
|
|
|
1242
1380
|
"iso_3": "MLT",
|
|
1243
1381
|
"flag_emoji": "🇲🇹",
|
|
1244
1382
|
"continent": "Europe",
|
|
1245
|
-
"region": "Southern Europe"
|
|
1383
|
+
"region": "Southern Europe",
|
|
1384
|
+
"currency_iso_code": "EUR"
|
|
1246
1385
|
},
|
|
1247
1386
|
{
|
|
1248
1387
|
"name": "Marshall Islands",
|
|
@@ -1251,7 +1390,8 @@ exports.default = {
|
|
|
1251
1390
|
"iso_3": "MHL",
|
|
1252
1391
|
"flag_emoji": "🇲🇭",
|
|
1253
1392
|
"continent": "Oceania",
|
|
1254
|
-
"region": "Micronesia"
|
|
1393
|
+
"region": "Micronesia",
|
|
1394
|
+
"currency_iso_code": "USD"
|
|
1255
1395
|
},
|
|
1256
1396
|
{
|
|
1257
1397
|
"name": "Martinique",
|
|
@@ -1260,7 +1400,8 @@ exports.default = {
|
|
|
1260
1400
|
"iso_3": "MTQ",
|
|
1261
1401
|
"flag_emoji": "🇲🇶",
|
|
1262
1402
|
"continent": "North America",
|
|
1263
|
-
"region": "Caribbean"
|
|
1403
|
+
"region": "Caribbean",
|
|
1404
|
+
"currency_iso_code": "EUR"
|
|
1264
1405
|
},
|
|
1265
1406
|
{
|
|
1266
1407
|
"name": "Mauritania",
|
|
@@ -1269,7 +1410,8 @@ exports.default = {
|
|
|
1269
1410
|
"iso_3": "MRT",
|
|
1270
1411
|
"flag_emoji": "🇲🇷",
|
|
1271
1412
|
"continent": "Africa",
|
|
1272
|
-
"region": "Western Africa"
|
|
1413
|
+
"region": "Western Africa",
|
|
1414
|
+
"currency_iso_code": "MRU"
|
|
1273
1415
|
},
|
|
1274
1416
|
{
|
|
1275
1417
|
"name": "Mauritius",
|
|
@@ -1278,7 +1420,8 @@ exports.default = {
|
|
|
1278
1420
|
"iso_3": "MUS",
|
|
1279
1421
|
"flag_emoji": "🇲🇺",
|
|
1280
1422
|
"continent": "Africa",
|
|
1281
|
-
"region": "Eastern Africa"
|
|
1423
|
+
"region": "Eastern Africa",
|
|
1424
|
+
"currency_iso_code": "MUR"
|
|
1282
1425
|
},
|
|
1283
1426
|
{
|
|
1284
1427
|
"name": "Mayotte",
|
|
@@ -1287,7 +1430,8 @@ exports.default = {
|
|
|
1287
1430
|
"iso_3": "MYT",
|
|
1288
1431
|
"flag_emoji": "🇾🇹",
|
|
1289
1432
|
"continent": "Africa",
|
|
1290
|
-
"region": "Eastern Africa"
|
|
1433
|
+
"region": "Eastern Africa",
|
|
1434
|
+
"currency_iso_code": "EUR"
|
|
1291
1435
|
},
|
|
1292
1436
|
{
|
|
1293
1437
|
"name": "Mexico",
|
|
@@ -1296,7 +1440,8 @@ exports.default = {
|
|
|
1296
1440
|
"iso_3": "MEX",
|
|
1297
1441
|
"flag_emoji": "🇲🇽",
|
|
1298
1442
|
"continent": "North America",
|
|
1299
|
-
"region": "Central America"
|
|
1443
|
+
"region": "Central America",
|
|
1444
|
+
"currency_iso_code": "MXN"
|
|
1300
1445
|
},
|
|
1301
1446
|
{
|
|
1302
1447
|
"name": "Micronesia",
|
|
@@ -1305,7 +1450,8 @@ exports.default = {
|
|
|
1305
1450
|
"iso_3": "FSM",
|
|
1306
1451
|
"flag_emoji": "🇫🇲",
|
|
1307
1452
|
"continent": "Oceania",
|
|
1308
|
-
"region": "Micronesia"
|
|
1453
|
+
"region": "Micronesia",
|
|
1454
|
+
"currency_iso_code": "USD"
|
|
1309
1455
|
},
|
|
1310
1456
|
{
|
|
1311
1457
|
"name": "Moldova",
|
|
@@ -1314,7 +1460,8 @@ exports.default = {
|
|
|
1314
1460
|
"iso_3": "MDA",
|
|
1315
1461
|
"flag_emoji": "🇲🇩",
|
|
1316
1462
|
"continent": "Europe",
|
|
1317
|
-
"region": "Eastern Europe"
|
|
1463
|
+
"region": "Eastern Europe",
|
|
1464
|
+
"currency_iso_code": "MDL"
|
|
1318
1465
|
},
|
|
1319
1466
|
{
|
|
1320
1467
|
"name": "Monaco",
|
|
@@ -1323,7 +1470,8 @@ exports.default = {
|
|
|
1323
1470
|
"iso_3": "MCO",
|
|
1324
1471
|
"flag_emoji": "🇲🇨",
|
|
1325
1472
|
"continent": "Europe",
|
|
1326
|
-
"region": "Western Europe"
|
|
1473
|
+
"region": "Western Europe",
|
|
1474
|
+
"currency_iso_code": "EUR"
|
|
1327
1475
|
},
|
|
1328
1476
|
{
|
|
1329
1477
|
"name": "Mongolia",
|
|
@@ -1332,7 +1480,8 @@ exports.default = {
|
|
|
1332
1480
|
"iso_3": "MNG",
|
|
1333
1481
|
"flag_emoji": "🇲🇳",
|
|
1334
1482
|
"continent": "Asia",
|
|
1335
|
-
"region": "Eastern Asia"
|
|
1483
|
+
"region": "Eastern Asia",
|
|
1484
|
+
"currency_iso_code": "MNT"
|
|
1336
1485
|
},
|
|
1337
1486
|
{
|
|
1338
1487
|
"name": "Montenegro",
|
|
@@ -1341,7 +1490,8 @@ exports.default = {
|
|
|
1341
1490
|
"iso_3": "MNE",
|
|
1342
1491
|
"flag_emoji": "🇲🇪",
|
|
1343
1492
|
"continent": "Europe",
|
|
1344
|
-
"region": "Southern Europe"
|
|
1493
|
+
"region": "Southern Europe",
|
|
1494
|
+
"currency_iso_code": "EUR"
|
|
1345
1495
|
},
|
|
1346
1496
|
{
|
|
1347
1497
|
"name": "Montserrat",
|
|
@@ -1350,7 +1500,8 @@ exports.default = {
|
|
|
1350
1500
|
"iso_3": "MSR",
|
|
1351
1501
|
"flag_emoji": "🇲🇸",
|
|
1352
1502
|
"continent": "North America",
|
|
1353
|
-
"region": "Caribbean"
|
|
1503
|
+
"region": "Caribbean",
|
|
1504
|
+
"currency_iso_code": "XCD"
|
|
1354
1505
|
},
|
|
1355
1506
|
{
|
|
1356
1507
|
"name": "Morocco",
|
|
@@ -1359,7 +1510,8 @@ exports.default = {
|
|
|
1359
1510
|
"iso_3": "MAR",
|
|
1360
1511
|
"flag_emoji": "🇲🇦",
|
|
1361
1512
|
"continent": "Africa",
|
|
1362
|
-
"region": "Northern Africa"
|
|
1513
|
+
"region": "Northern Africa",
|
|
1514
|
+
"currency_iso_code": "MAD"
|
|
1363
1515
|
},
|
|
1364
1516
|
{
|
|
1365
1517
|
"name": "Mozambique",
|
|
@@ -1368,7 +1520,8 @@ exports.default = {
|
|
|
1368
1520
|
"iso_3": "MOZ",
|
|
1369
1521
|
"flag_emoji": "🇲🇿",
|
|
1370
1522
|
"continent": "Africa",
|
|
1371
|
-
"region": "Eastern Africa"
|
|
1523
|
+
"region": "Eastern Africa",
|
|
1524
|
+
"currency_iso_code": "MZN"
|
|
1372
1525
|
},
|
|
1373
1526
|
{
|
|
1374
1527
|
"name": "Myanmar",
|
|
@@ -1377,7 +1530,8 @@ exports.default = {
|
|
|
1377
1530
|
"iso_3": "MMR",
|
|
1378
1531
|
"flag_emoji": "🇲🇲",
|
|
1379
1532
|
"continent": "Asia",
|
|
1380
|
-
"region": "South-eastern Asia"
|
|
1533
|
+
"region": "South-eastern Asia",
|
|
1534
|
+
"currency_iso_code": "MMK"
|
|
1381
1535
|
},
|
|
1382
1536
|
{
|
|
1383
1537
|
"name": "Namibia",
|
|
@@ -1386,7 +1540,8 @@ exports.default = {
|
|
|
1386
1540
|
"iso_3": "NAM",
|
|
1387
1541
|
"flag_emoji": "🇳🇦",
|
|
1388
1542
|
"continent": "Africa",
|
|
1389
|
-
"region": "Southern Africa"
|
|
1543
|
+
"region": "Southern Africa",
|
|
1544
|
+
"currency_iso_code": "NAD"
|
|
1390
1545
|
},
|
|
1391
1546
|
{
|
|
1392
1547
|
"name": "Nauru",
|
|
@@ -1395,7 +1550,8 @@ exports.default = {
|
|
|
1395
1550
|
"iso_3": "NRU",
|
|
1396
1551
|
"flag_emoji": "🇳🇷",
|
|
1397
1552
|
"continent": "Oceania",
|
|
1398
|
-
"region": "Micronesia"
|
|
1553
|
+
"region": "Micronesia",
|
|
1554
|
+
"currency_iso_code": "AUD"
|
|
1399
1555
|
},
|
|
1400
1556
|
{
|
|
1401
1557
|
"name": "Nepal",
|
|
@@ -1404,7 +1560,8 @@ exports.default = {
|
|
|
1404
1560
|
"iso_3": "NPL",
|
|
1405
1561
|
"flag_emoji": "🇳🇵",
|
|
1406
1562
|
"continent": "Asia",
|
|
1407
|
-
"region": "Southern Asia"
|
|
1563
|
+
"region": "Southern Asia",
|
|
1564
|
+
"currency_iso_code": "NPR"
|
|
1408
1565
|
},
|
|
1409
1566
|
{
|
|
1410
1567
|
"name": "Netherlands",
|
|
@@ -1413,7 +1570,8 @@ exports.default = {
|
|
|
1413
1570
|
"iso_3": "NLD",
|
|
1414
1571
|
"flag_emoji": "🇳🇱",
|
|
1415
1572
|
"continent": "Europe",
|
|
1416
|
-
"region": "Western Europe"
|
|
1573
|
+
"region": "Western Europe",
|
|
1574
|
+
"currency_iso_code": "EUR"
|
|
1417
1575
|
},
|
|
1418
1576
|
{
|
|
1419
1577
|
"name": "New Caledonia",
|
|
@@ -1422,7 +1580,8 @@ exports.default = {
|
|
|
1422
1580
|
"iso_3": "NCL",
|
|
1423
1581
|
"flag_emoji": "🇳🇨",
|
|
1424
1582
|
"continent": "Oceania",
|
|
1425
|
-
"region": "Melanesia"
|
|
1583
|
+
"region": "Melanesia",
|
|
1584
|
+
"currency_iso_code": "XPF"
|
|
1426
1585
|
},
|
|
1427
1586
|
{
|
|
1428
1587
|
"name": "New Zealand",
|
|
@@ -1431,7 +1590,8 @@ exports.default = {
|
|
|
1431
1590
|
"iso_3": "NZL",
|
|
1432
1591
|
"flag_emoji": "🇳🇿",
|
|
1433
1592
|
"continent": "Oceania",
|
|
1434
|
-
"region": "Australia and New Zealand"
|
|
1593
|
+
"region": "Australia and New Zealand",
|
|
1594
|
+
"currency_iso_code": "NZD"
|
|
1435
1595
|
},
|
|
1436
1596
|
{
|
|
1437
1597
|
"name": "Nicaragua",
|
|
@@ -1440,7 +1600,8 @@ exports.default = {
|
|
|
1440
1600
|
"iso_3": "NIC",
|
|
1441
1601
|
"flag_emoji": "🇳🇮",
|
|
1442
1602
|
"continent": "North America",
|
|
1443
|
-
"region": "Central America"
|
|
1603
|
+
"region": "Central America",
|
|
1604
|
+
"currency_iso_code": "NIO"
|
|
1444
1605
|
},
|
|
1445
1606
|
{
|
|
1446
1607
|
"name": "Niger",
|
|
@@ -1449,7 +1610,8 @@ exports.default = {
|
|
|
1449
1610
|
"iso_3": "NER",
|
|
1450
1611
|
"flag_emoji": "🇳🇪",
|
|
1451
1612
|
"continent": "Africa",
|
|
1452
|
-
"region": "Western Africa"
|
|
1613
|
+
"region": "Western Africa",
|
|
1614
|
+
"currency_iso_code": "XOF"
|
|
1453
1615
|
},
|
|
1454
1616
|
{
|
|
1455
1617
|
"name": "Nigeria",
|
|
@@ -1458,7 +1620,8 @@ exports.default = {
|
|
|
1458
1620
|
"iso_3": "NGA",
|
|
1459
1621
|
"flag_emoji": "🇳🇬",
|
|
1460
1622
|
"continent": "Africa",
|
|
1461
|
-
"region": "Western Africa"
|
|
1623
|
+
"region": "Western Africa",
|
|
1624
|
+
"currency_iso_code": "NGN"
|
|
1462
1625
|
},
|
|
1463
1626
|
{
|
|
1464
1627
|
"name": "Niue",
|
|
@@ -1467,7 +1630,8 @@ exports.default = {
|
|
|
1467
1630
|
"iso_3": "NIU",
|
|
1468
1631
|
"flag_emoji": "🇳🇺",
|
|
1469
1632
|
"continent": "Oceania",
|
|
1470
|
-
"region": "Polynesia"
|
|
1633
|
+
"region": "Polynesia",
|
|
1634
|
+
"currency_iso_code": "NZD"
|
|
1471
1635
|
},
|
|
1472
1636
|
{
|
|
1473
1637
|
"name": "Norfolk Island",
|
|
@@ -1476,7 +1640,8 @@ exports.default = {
|
|
|
1476
1640
|
"iso_3": "NFK",
|
|
1477
1641
|
"flag_emoji": "🇳🇫",
|
|
1478
1642
|
"continent": "Oceania",
|
|
1479
|
-
"region": "Australia and New Zealand"
|
|
1643
|
+
"region": "Australia and New Zealand",
|
|
1644
|
+
"currency_iso_code": "AUD"
|
|
1480
1645
|
},
|
|
1481
1646
|
{
|
|
1482
1647
|
"name": "North Korea",
|
|
@@ -1485,7 +1650,8 @@ exports.default = {
|
|
|
1485
1650
|
"iso_3": "PRK",
|
|
1486
1651
|
"flag_emoji": "🇰🇵",
|
|
1487
1652
|
"continent": "Asia",
|
|
1488
|
-
"region": "Eastern Asia"
|
|
1653
|
+
"region": "Eastern Asia",
|
|
1654
|
+
"currency_iso_code": "KPW"
|
|
1489
1655
|
},
|
|
1490
1656
|
{
|
|
1491
1657
|
"name": "North Macedonia",
|
|
@@ -1494,7 +1660,8 @@ exports.default = {
|
|
|
1494
1660
|
"iso_3": "MKD",
|
|
1495
1661
|
"flag_emoji": "🇲🇰",
|
|
1496
1662
|
"continent": "Europe",
|
|
1497
|
-
"region": "Southern Europe"
|
|
1663
|
+
"region": "Southern Europe",
|
|
1664
|
+
"currency_iso_code": "MKD"
|
|
1498
1665
|
},
|
|
1499
1666
|
{
|
|
1500
1667
|
"name": "Northern Mariana Islands",
|
|
@@ -1503,7 +1670,8 @@ exports.default = {
|
|
|
1503
1670
|
"iso_3": "MNP",
|
|
1504
1671
|
"flag_emoji": "🇲🇵",
|
|
1505
1672
|
"continent": "Oceania",
|
|
1506
|
-
"region": "Micronesia"
|
|
1673
|
+
"region": "Micronesia",
|
|
1674
|
+
"currency_iso_code": "USD"
|
|
1507
1675
|
},
|
|
1508
1676
|
{
|
|
1509
1677
|
"name": "Norway",
|
|
@@ -1512,7 +1680,8 @@ exports.default = {
|
|
|
1512
1680
|
"iso_3": "NOR",
|
|
1513
1681
|
"flag_emoji": "🇳🇴",
|
|
1514
1682
|
"continent": "Europe",
|
|
1515
|
-
"region": "Northern Europe"
|
|
1683
|
+
"region": "Northern Europe",
|
|
1684
|
+
"currency_iso_code": "NOK"
|
|
1516
1685
|
},
|
|
1517
1686
|
{
|
|
1518
1687
|
"name": "Oman",
|
|
@@ -1521,7 +1690,8 @@ exports.default = {
|
|
|
1521
1690
|
"iso_3": "OMN",
|
|
1522
1691
|
"flag_emoji": "🇴🇲",
|
|
1523
1692
|
"continent": "Asia",
|
|
1524
|
-
"region": "Western Asia"
|
|
1693
|
+
"region": "Western Asia",
|
|
1694
|
+
"currency_iso_code": "OMR"
|
|
1525
1695
|
},
|
|
1526
1696
|
{
|
|
1527
1697
|
"name": "Pakistan",
|
|
@@ -1530,7 +1700,8 @@ exports.default = {
|
|
|
1530
1700
|
"iso_3": "PAK",
|
|
1531
1701
|
"flag_emoji": "🇵🇰",
|
|
1532
1702
|
"continent": "Asia",
|
|
1533
|
-
"region": "Southern Asia"
|
|
1703
|
+
"region": "Southern Asia",
|
|
1704
|
+
"currency_iso_code": "PKR"
|
|
1534
1705
|
},
|
|
1535
1706
|
{
|
|
1536
1707
|
"name": "Palau",
|
|
@@ -1539,7 +1710,8 @@ exports.default = {
|
|
|
1539
1710
|
"iso_3": "PLW",
|
|
1540
1711
|
"flag_emoji": "🇵🇼",
|
|
1541
1712
|
"continent": "Oceania",
|
|
1542
|
-
"region": "Micronesia"
|
|
1713
|
+
"region": "Micronesia",
|
|
1714
|
+
"currency_iso_code": "USD"
|
|
1543
1715
|
},
|
|
1544
1716
|
{
|
|
1545
1717
|
"name": "Palestine",
|
|
@@ -1548,7 +1720,8 @@ exports.default = {
|
|
|
1548
1720
|
"iso_3": "PSE",
|
|
1549
1721
|
"flag_emoji": "🇵🇸",
|
|
1550
1722
|
"continent": "Asia",
|
|
1551
|
-
"region": "Western Asia"
|
|
1723
|
+
"region": "Western Asia",
|
|
1724
|
+
"currency_iso_code": null
|
|
1552
1725
|
},
|
|
1553
1726
|
{
|
|
1554
1727
|
"name": "Panama",
|
|
@@ -1557,7 +1730,8 @@ exports.default = {
|
|
|
1557
1730
|
"iso_3": "PAN",
|
|
1558
1731
|
"flag_emoji": "🇵🇦",
|
|
1559
1732
|
"continent": "North America",
|
|
1560
|
-
"region": "Central America"
|
|
1733
|
+
"region": "Central America",
|
|
1734
|
+
"currency_iso_code": "USD"
|
|
1561
1735
|
},
|
|
1562
1736
|
{
|
|
1563
1737
|
"name": "Papua New Guinea",
|
|
@@ -1566,7 +1740,8 @@ exports.default = {
|
|
|
1566
1740
|
"iso_3": "PNG",
|
|
1567
1741
|
"flag_emoji": "🇵🇬",
|
|
1568
1742
|
"continent": "Oceania",
|
|
1569
|
-
"region": "Melanesia"
|
|
1743
|
+
"region": "Melanesia",
|
|
1744
|
+
"currency_iso_code": "PGK"
|
|
1570
1745
|
},
|
|
1571
1746
|
{
|
|
1572
1747
|
"name": "Paraguay",
|
|
@@ -1575,7 +1750,8 @@ exports.default = {
|
|
|
1575
1750
|
"iso_3": "PRY",
|
|
1576
1751
|
"flag_emoji": "🇵🇾",
|
|
1577
1752
|
"continent": "South America",
|
|
1578
|
-
"region": "South America"
|
|
1753
|
+
"region": "South America",
|
|
1754
|
+
"currency_iso_code": "PYG"
|
|
1579
1755
|
},
|
|
1580
1756
|
{
|
|
1581
1757
|
"name": "Peru",
|
|
@@ -1584,7 +1760,8 @@ exports.default = {
|
|
|
1584
1760
|
"iso_3": "PER",
|
|
1585
1761
|
"flag_emoji": "🇵🇪",
|
|
1586
1762
|
"continent": "South America",
|
|
1587
|
-
"region": "South America"
|
|
1763
|
+
"region": "South America",
|
|
1764
|
+
"currency_iso_code": "PEN"
|
|
1588
1765
|
},
|
|
1589
1766
|
{
|
|
1590
1767
|
"name": "Philippines",
|
|
@@ -1593,7 +1770,8 @@ exports.default = {
|
|
|
1593
1770
|
"iso_3": "PHL",
|
|
1594
1771
|
"flag_emoji": "🇵🇭",
|
|
1595
1772
|
"continent": "Asia",
|
|
1596
|
-
"region": "South-eastern Asia"
|
|
1773
|
+
"region": "South-eastern Asia",
|
|
1774
|
+
"currency_iso_code": "PHP"
|
|
1597
1775
|
},
|
|
1598
1776
|
{
|
|
1599
1777
|
"name": "Pitcairn",
|
|
@@ -1602,7 +1780,8 @@ exports.default = {
|
|
|
1602
1780
|
"iso_3": "PCN",
|
|
1603
1781
|
"flag_emoji": "🇵🇳",
|
|
1604
1782
|
"continent": "Oceania",
|
|
1605
|
-
"region": "Polynesia"
|
|
1783
|
+
"region": "Polynesia",
|
|
1784
|
+
"currency_iso_code": "NZD"
|
|
1606
1785
|
},
|
|
1607
1786
|
{
|
|
1608
1787
|
"name": "Poland",
|
|
@@ -1611,7 +1790,8 @@ exports.default = {
|
|
|
1611
1790
|
"iso_3": "POL",
|
|
1612
1791
|
"flag_emoji": "🇵🇱",
|
|
1613
1792
|
"continent": "Europe",
|
|
1614
|
-
"region": "Eastern Europe"
|
|
1793
|
+
"region": "Eastern Europe",
|
|
1794
|
+
"currency_iso_code": "PLN"
|
|
1615
1795
|
},
|
|
1616
1796
|
{
|
|
1617
1797
|
"name": "Portugal",
|
|
@@ -1620,7 +1800,8 @@ exports.default = {
|
|
|
1620
1800
|
"iso_3": "PRT",
|
|
1621
1801
|
"flag_emoji": "🇵🇹",
|
|
1622
1802
|
"continent": "Europe",
|
|
1623
|
-
"region": "Southern Europe"
|
|
1803
|
+
"region": "Southern Europe",
|
|
1804
|
+
"currency_iso_code": "EUR"
|
|
1624
1805
|
},
|
|
1625
1806
|
{
|
|
1626
1807
|
"name": "Puerto Rico",
|
|
@@ -1629,7 +1810,8 @@ exports.default = {
|
|
|
1629
1810
|
"iso_3": "PRI",
|
|
1630
1811
|
"flag_emoji": "🇵🇷",
|
|
1631
1812
|
"continent": "North America",
|
|
1632
|
-
"region": "Caribbean"
|
|
1813
|
+
"region": "Caribbean",
|
|
1814
|
+
"currency_iso_code": "USD"
|
|
1633
1815
|
},
|
|
1634
1816
|
{
|
|
1635
1817
|
"name": "Qatar",
|
|
@@ -1638,7 +1820,8 @@ exports.default = {
|
|
|
1638
1820
|
"iso_3": "QAT",
|
|
1639
1821
|
"flag_emoji": "🇶🇦",
|
|
1640
1822
|
"continent": "Asia",
|
|
1641
|
-
"region": "Western Asia"
|
|
1823
|
+
"region": "Western Asia",
|
|
1824
|
+
"currency_iso_code": "QAR"
|
|
1642
1825
|
},
|
|
1643
1826
|
{
|
|
1644
1827
|
"name": "Reunion",
|
|
@@ -1647,7 +1830,8 @@ exports.default = {
|
|
|
1647
1830
|
"iso_3": "REU",
|
|
1648
1831
|
"flag_emoji": "🇷🇪",
|
|
1649
1832
|
"continent": "Africa",
|
|
1650
|
-
"region": "Eastern Africa"
|
|
1833
|
+
"region": "Eastern Africa",
|
|
1834
|
+
"currency_iso_code": "EUR"
|
|
1651
1835
|
},
|
|
1652
1836
|
{
|
|
1653
1837
|
"name": "Romania",
|
|
@@ -1656,7 +1840,8 @@ exports.default = {
|
|
|
1656
1840
|
"iso_3": "ROU",
|
|
1657
1841
|
"flag_emoji": "🇷🇴",
|
|
1658
1842
|
"continent": "Europe",
|
|
1659
|
-
"region": "Eastern Europe"
|
|
1843
|
+
"region": "Eastern Europe",
|
|
1844
|
+
"currency_iso_code": "RON"
|
|
1660
1845
|
},
|
|
1661
1846
|
{
|
|
1662
1847
|
"name": "Russia",
|
|
@@ -1665,7 +1850,8 @@ exports.default = {
|
|
|
1665
1850
|
"iso_3": "RUS",
|
|
1666
1851
|
"flag_emoji": "🇷🇺",
|
|
1667
1852
|
"continent": "Europe",
|
|
1668
|
-
"region": "Eastern Europe"
|
|
1853
|
+
"region": "Eastern Europe",
|
|
1854
|
+
"currency_iso_code": "RUB"
|
|
1669
1855
|
},
|
|
1670
1856
|
{
|
|
1671
1857
|
"name": "Rwanda",
|
|
@@ -1674,7 +1860,8 @@ exports.default = {
|
|
|
1674
1860
|
"iso_3": "RWA",
|
|
1675
1861
|
"flag_emoji": "🇷🇼",
|
|
1676
1862
|
"continent": "Africa",
|
|
1677
|
-
"region": "Eastern Africa"
|
|
1863
|
+
"region": "Eastern Africa",
|
|
1864
|
+
"currency_iso_code": "RWF"
|
|
1678
1865
|
},
|
|
1679
1866
|
{
|
|
1680
1867
|
"name": "Saint Helena",
|
|
@@ -1683,7 +1870,8 @@ exports.default = {
|
|
|
1683
1870
|
"iso_3": "SHN",
|
|
1684
1871
|
"flag_emoji": "🇸🇭",
|
|
1685
1872
|
"continent": "Africa",
|
|
1686
|
-
"region": "Western Africa"
|
|
1873
|
+
"region": "Western Africa",
|
|
1874
|
+
"currency_iso_code": "SHP"
|
|
1687
1875
|
},
|
|
1688
1876
|
{
|
|
1689
1877
|
"name": "Saint Kitts and Nevis",
|
|
@@ -1692,7 +1880,8 @@ exports.default = {
|
|
|
1692
1880
|
"iso_3": "KNA",
|
|
1693
1881
|
"flag_emoji": "🇰🇳",
|
|
1694
1882
|
"continent": "North America",
|
|
1695
|
-
"region": "Caribbean"
|
|
1883
|
+
"region": "Caribbean",
|
|
1884
|
+
"currency_iso_code": "XCD"
|
|
1696
1885
|
},
|
|
1697
1886
|
{
|
|
1698
1887
|
"name": "Saint Lucia",
|
|
@@ -1701,7 +1890,8 @@ exports.default = {
|
|
|
1701
1890
|
"iso_3": "LCA",
|
|
1702
1891
|
"flag_emoji": "🇱🇨",
|
|
1703
1892
|
"continent": "North America",
|
|
1704
|
-
"region": "Caribbean"
|
|
1893
|
+
"region": "Caribbean",
|
|
1894
|
+
"currency_iso_code": "XCD"
|
|
1705
1895
|
},
|
|
1706
1896
|
{
|
|
1707
1897
|
"name": "Saint Pierre and Miquelon",
|
|
@@ -1710,7 +1900,8 @@ exports.default = {
|
|
|
1710
1900
|
"iso_3": "SPM",
|
|
1711
1901
|
"flag_emoji": "🇵🇲",
|
|
1712
1902
|
"continent": "North America",
|
|
1713
|
-
"region": "Northern America"
|
|
1903
|
+
"region": "Northern America",
|
|
1904
|
+
"currency_iso_code": "EUR"
|
|
1714
1905
|
},
|
|
1715
1906
|
{
|
|
1716
1907
|
"name": "Saint Vincent and the Grenadines",
|
|
@@ -1719,7 +1910,8 @@ exports.default = {
|
|
|
1719
1910
|
"iso_3": "VCT",
|
|
1720
1911
|
"flag_emoji": "🇻🇨",
|
|
1721
1912
|
"continent": "North America",
|
|
1722
|
-
"region": "Caribbean"
|
|
1913
|
+
"region": "Caribbean",
|
|
1914
|
+
"currency_iso_code": "XCD"
|
|
1723
1915
|
},
|
|
1724
1916
|
{
|
|
1725
1917
|
"name": "Samoa",
|
|
@@ -1728,7 +1920,8 @@ exports.default = {
|
|
|
1728
1920
|
"iso_3": "WSM",
|
|
1729
1921
|
"flag_emoji": "🇼🇸",
|
|
1730
1922
|
"continent": "Oceania",
|
|
1731
|
-
"region": "Polynesia"
|
|
1923
|
+
"region": "Polynesia",
|
|
1924
|
+
"currency_iso_code": "WST"
|
|
1732
1925
|
},
|
|
1733
1926
|
{
|
|
1734
1927
|
"name": "San Marino",
|
|
@@ -1737,7 +1930,8 @@ exports.default = {
|
|
|
1737
1930
|
"iso_3": "SMR",
|
|
1738
1931
|
"flag_emoji": "🇸🇲",
|
|
1739
1932
|
"continent": "Europe",
|
|
1740
|
-
"region": "Southern Europe"
|
|
1933
|
+
"region": "Southern Europe",
|
|
1934
|
+
"currency_iso_code": "EUR"
|
|
1741
1935
|
},
|
|
1742
1936
|
{
|
|
1743
1937
|
"name": "Sao Tome and Principe",
|
|
@@ -1746,7 +1940,8 @@ exports.default = {
|
|
|
1746
1940
|
"iso_3": "STP",
|
|
1747
1941
|
"flag_emoji": "🇸🇹",
|
|
1748
1942
|
"continent": "Africa",
|
|
1749
|
-
"region": "Middle Africa"
|
|
1943
|
+
"region": "Middle Africa",
|
|
1944
|
+
"currency_iso_code": "STN"
|
|
1750
1945
|
},
|
|
1751
1946
|
{
|
|
1752
1947
|
"name": "Saudi Arabia",
|
|
@@ -1755,7 +1950,8 @@ exports.default = {
|
|
|
1755
1950
|
"iso_3": "SAU",
|
|
1756
1951
|
"flag_emoji": "🇸🇦",
|
|
1757
1952
|
"continent": "Asia",
|
|
1758
|
-
"region": "Western Asia"
|
|
1953
|
+
"region": "Western Asia",
|
|
1954
|
+
"currency_iso_code": "SAR"
|
|
1759
1955
|
},
|
|
1760
1956
|
{
|
|
1761
1957
|
"name": "Senegal",
|
|
@@ -1764,7 +1960,8 @@ exports.default = {
|
|
|
1764
1960
|
"iso_3": "SEN",
|
|
1765
1961
|
"flag_emoji": "🇸🇳",
|
|
1766
1962
|
"continent": "Africa",
|
|
1767
|
-
"region": "Western Africa"
|
|
1963
|
+
"region": "Western Africa",
|
|
1964
|
+
"currency_iso_code": "XOF"
|
|
1768
1965
|
},
|
|
1769
1966
|
{
|
|
1770
1967
|
"name": "Serbia",
|
|
@@ -1773,7 +1970,8 @@ exports.default = {
|
|
|
1773
1970
|
"iso_3": "SRB",
|
|
1774
1971
|
"flag_emoji": "🇷🇸",
|
|
1775
1972
|
"continent": "Europe",
|
|
1776
|
-
"region": "Southern Europe"
|
|
1973
|
+
"region": "Southern Europe",
|
|
1974
|
+
"currency_iso_code": "RSD"
|
|
1777
1975
|
},
|
|
1778
1976
|
{
|
|
1779
1977
|
"name": "Seychelles",
|
|
@@ -1782,7 +1980,8 @@ exports.default = {
|
|
|
1782
1980
|
"iso_3": "SYC",
|
|
1783
1981
|
"flag_emoji": "🇸🇨",
|
|
1784
1982
|
"continent": "Africa",
|
|
1785
|
-
"region": "Eastern Africa"
|
|
1983
|
+
"region": "Eastern Africa",
|
|
1984
|
+
"currency_iso_code": "SCR"
|
|
1786
1985
|
},
|
|
1787
1986
|
{
|
|
1788
1987
|
"name": "Sierra Leone",
|
|
@@ -1791,7 +1990,8 @@ exports.default = {
|
|
|
1791
1990
|
"iso_3": "SLE",
|
|
1792
1991
|
"flag_emoji": "🇸🇱",
|
|
1793
1992
|
"continent": "Africa",
|
|
1794
|
-
"region": "Western Africa"
|
|
1993
|
+
"region": "Western Africa",
|
|
1994
|
+
"currency_iso_code": "SLL"
|
|
1795
1995
|
},
|
|
1796
1996
|
{
|
|
1797
1997
|
"name": "Singapore",
|
|
@@ -1800,7 +2000,8 @@ exports.default = {
|
|
|
1800
2000
|
"iso_3": "SGP",
|
|
1801
2001
|
"flag_emoji": "🇸🇬",
|
|
1802
2002
|
"continent": "Asia",
|
|
1803
|
-
"region": "South-eastern Asia"
|
|
2003
|
+
"region": "South-eastern Asia",
|
|
2004
|
+
"currency_iso_code": "SGD"
|
|
1804
2005
|
},
|
|
1805
2006
|
{
|
|
1806
2007
|
"name": "Slovakia",
|
|
@@ -1809,7 +2010,8 @@ exports.default = {
|
|
|
1809
2010
|
"iso_3": "SVK",
|
|
1810
2011
|
"flag_emoji": "🇸🇰",
|
|
1811
2012
|
"continent": "Europe",
|
|
1812
|
-
"region": "Eastern Europe"
|
|
2013
|
+
"region": "Eastern Europe",
|
|
2014
|
+
"currency_iso_code": "EUR"
|
|
1813
2015
|
},
|
|
1814
2016
|
{
|
|
1815
2017
|
"name": "Slovenia",
|
|
@@ -1818,7 +2020,8 @@ exports.default = {
|
|
|
1818
2020
|
"iso_3": "SVN",
|
|
1819
2021
|
"flag_emoji": "🇸🇮",
|
|
1820
2022
|
"continent": "Europe",
|
|
1821
|
-
"region": "Southern Europe"
|
|
2023
|
+
"region": "Southern Europe",
|
|
2024
|
+
"currency_iso_code": "EUR"
|
|
1822
2025
|
},
|
|
1823
2026
|
{
|
|
1824
2027
|
"name": "Solomon Islands",
|
|
@@ -1827,7 +2030,8 @@ exports.default = {
|
|
|
1827
2030
|
"iso_3": "SLB",
|
|
1828
2031
|
"flag_emoji": "🇸🇧",
|
|
1829
2032
|
"continent": "Oceania",
|
|
1830
|
-
"region": "Melanesia"
|
|
2033
|
+
"region": "Melanesia",
|
|
2034
|
+
"currency_iso_code": "SBD"
|
|
1831
2035
|
},
|
|
1832
2036
|
{
|
|
1833
2037
|
"name": "Somalia",
|
|
@@ -1836,7 +2040,8 @@ exports.default = {
|
|
|
1836
2040
|
"iso_3": "SOM",
|
|
1837
2041
|
"flag_emoji": "🇸🇴",
|
|
1838
2042
|
"continent": "Africa",
|
|
1839
|
-
"region": "Eastern Africa"
|
|
2043
|
+
"region": "Eastern Africa",
|
|
2044
|
+
"currency_iso_code": "SOS"
|
|
1840
2045
|
},
|
|
1841
2046
|
{
|
|
1842
2047
|
"name": "South Africa",
|
|
@@ -1845,7 +2050,8 @@ exports.default = {
|
|
|
1845
2050
|
"iso_3": "ZAF",
|
|
1846
2051
|
"flag_emoji": "🇿🇦",
|
|
1847
2052
|
"continent": "Africa",
|
|
1848
|
-
"region": "Southern Africa"
|
|
2053
|
+
"region": "Southern Africa",
|
|
2054
|
+
"currency_iso_code": "ZAR"
|
|
1849
2055
|
},
|
|
1850
2056
|
{
|
|
1851
2057
|
"name": "South Georgia and the South Sandwich Islands",
|
|
@@ -1854,7 +2060,8 @@ exports.default = {
|
|
|
1854
2060
|
"iso_3": "SGS",
|
|
1855
2061
|
"flag_emoji": "🇬🇸",
|
|
1856
2062
|
"continent": "Antarctica",
|
|
1857
|
-
"region": "Antarctica"
|
|
2063
|
+
"region": "Antarctica",
|
|
2064
|
+
"currency_iso_code": "GBP"
|
|
1858
2065
|
},
|
|
1859
2066
|
{
|
|
1860
2067
|
"name": "South Korea",
|
|
@@ -1863,7 +2070,8 @@ exports.default = {
|
|
|
1863
2070
|
"iso_3": "KOR",
|
|
1864
2071
|
"flag_emoji": "🇰🇷",
|
|
1865
2072
|
"continent": "Asia",
|
|
1866
|
-
"region": "Eastern Asia"
|
|
2073
|
+
"region": "Eastern Asia",
|
|
2074
|
+
"currency_iso_code": "KRW"
|
|
1867
2075
|
},
|
|
1868
2076
|
{
|
|
1869
2077
|
"name": "South Sudan",
|
|
@@ -1872,7 +2080,8 @@ exports.default = {
|
|
|
1872
2080
|
"iso_3": "SSD",
|
|
1873
2081
|
"flag_emoji": "🇸🇸",
|
|
1874
2082
|
"continent": "Africa",
|
|
1875
|
-
"region": "Eastern Africa"
|
|
2083
|
+
"region": "Eastern Africa",
|
|
2084
|
+
"currency_iso_code": "SSP"
|
|
1876
2085
|
},
|
|
1877
2086
|
{
|
|
1878
2087
|
"name": "Spain",
|
|
@@ -1881,7 +2090,8 @@ exports.default = {
|
|
|
1881
2090
|
"iso_3": "ESP",
|
|
1882
2091
|
"flag_emoji": "🇪🇸",
|
|
1883
2092
|
"continent": "Europe",
|
|
1884
|
-
"region": "Southern Europe"
|
|
2093
|
+
"region": "Southern Europe",
|
|
2094
|
+
"currency_iso_code": "EUR"
|
|
1885
2095
|
},
|
|
1886
2096
|
{
|
|
1887
2097
|
"name": "Sri Lanka",
|
|
@@ -1890,7 +2100,8 @@ exports.default = {
|
|
|
1890
2100
|
"iso_3": "LKA",
|
|
1891
2101
|
"flag_emoji": "🇱🇰",
|
|
1892
2102
|
"continent": "Asia",
|
|
1893
|
-
"region": "Southern Asia"
|
|
2103
|
+
"region": "Southern Asia",
|
|
2104
|
+
"currency_iso_code": "LKR"
|
|
1894
2105
|
},
|
|
1895
2106
|
{
|
|
1896
2107
|
"name": "Sudan",
|
|
@@ -1899,7 +2110,8 @@ exports.default = {
|
|
|
1899
2110
|
"iso_3": "SDN",
|
|
1900
2111
|
"flag_emoji": "🇸🇩",
|
|
1901
2112
|
"continent": "Africa",
|
|
1902
|
-
"region": "Northern Africa"
|
|
2113
|
+
"region": "Northern Africa",
|
|
2114
|
+
"currency_iso_code": "SDG"
|
|
1903
2115
|
},
|
|
1904
2116
|
{
|
|
1905
2117
|
"name": "Suriname",
|
|
@@ -1908,7 +2120,8 @@ exports.default = {
|
|
|
1908
2120
|
"iso_3": "SUR",
|
|
1909
2121
|
"flag_emoji": "🇸🇷",
|
|
1910
2122
|
"continent": "South America",
|
|
1911
|
-
"region": "South America"
|
|
2123
|
+
"region": "South America",
|
|
2124
|
+
"currency_iso_code": "SRD"
|
|
1912
2125
|
},
|
|
1913
2126
|
{
|
|
1914
2127
|
"name": "Svalbard and Jan Mayen",
|
|
@@ -1917,7 +2130,8 @@ exports.default = {
|
|
|
1917
2130
|
"iso_3": "SJM",
|
|
1918
2131
|
"flag_emoji": "🇸🇯",
|
|
1919
2132
|
"continent": "Europe",
|
|
1920
|
-
"region": "Northern Europe"
|
|
2133
|
+
"region": "Northern Europe",
|
|
2134
|
+
"currency_iso_code": "NOK"
|
|
1921
2135
|
},
|
|
1922
2136
|
{
|
|
1923
2137
|
"name": "Sweden",
|
|
@@ -1926,7 +2140,8 @@ exports.default = {
|
|
|
1926
2140
|
"iso_3": "SWE",
|
|
1927
2141
|
"flag_emoji": "🇸🇪",
|
|
1928
2142
|
"continent": "Europe",
|
|
1929
|
-
"region": "Northern Europe"
|
|
2143
|
+
"region": "Northern Europe",
|
|
2144
|
+
"currency_iso_code": "SEK"
|
|
1930
2145
|
},
|
|
1931
2146
|
{
|
|
1932
2147
|
"name": "Switzerland",
|
|
@@ -1935,7 +2150,8 @@ exports.default = {
|
|
|
1935
2150
|
"iso_3": "CHE",
|
|
1936
2151
|
"flag_emoji": "🇨🇭",
|
|
1937
2152
|
"continent": "Europe",
|
|
1938
|
-
"region": "Western Europe"
|
|
2153
|
+
"region": "Western Europe",
|
|
2154
|
+
"currency_iso_code": "CHF"
|
|
1939
2155
|
},
|
|
1940
2156
|
{
|
|
1941
2157
|
"name": "Syria",
|
|
@@ -1944,7 +2160,8 @@ exports.default = {
|
|
|
1944
2160
|
"iso_3": "SYR",
|
|
1945
2161
|
"flag_emoji": "🇸🇾",
|
|
1946
2162
|
"continent": "Asia",
|
|
1947
|
-
"region": "Western Asia"
|
|
2163
|
+
"region": "Western Asia",
|
|
2164
|
+
"currency_iso_code": "SYP"
|
|
1948
2165
|
},
|
|
1949
2166
|
{
|
|
1950
2167
|
"name": "Taiwan",
|
|
@@ -1953,7 +2170,8 @@ exports.default = {
|
|
|
1953
2170
|
"iso_3": "TWN",
|
|
1954
2171
|
"flag_emoji": "🇹🇼",
|
|
1955
2172
|
"continent": "Asia",
|
|
1956
|
-
"region": "Eastern Asia"
|
|
2173
|
+
"region": "Eastern Asia",
|
|
2174
|
+
"currency_iso_code": "TWD"
|
|
1957
2175
|
},
|
|
1958
2176
|
{
|
|
1959
2177
|
"name": "Tajikistan",
|
|
@@ -1962,7 +2180,8 @@ exports.default = {
|
|
|
1962
2180
|
"iso_3": "TJK",
|
|
1963
2181
|
"flag_emoji": "🇹🇯",
|
|
1964
2182
|
"continent": "Asia",
|
|
1965
|
-
"region": "Central Asia"
|
|
2183
|
+
"region": "Central Asia",
|
|
2184
|
+
"currency_iso_code": "TJS"
|
|
1966
2185
|
},
|
|
1967
2186
|
{
|
|
1968
2187
|
"name": "Tanzania",
|
|
@@ -1971,7 +2190,8 @@ exports.default = {
|
|
|
1971
2190
|
"iso_3": "TZA",
|
|
1972
2191
|
"flag_emoji": "🇹🇿",
|
|
1973
2192
|
"continent": "Africa",
|
|
1974
|
-
"region": "Eastern Africa"
|
|
2193
|
+
"region": "Eastern Africa",
|
|
2194
|
+
"currency_iso_code": "TZS"
|
|
1975
2195
|
},
|
|
1976
2196
|
{
|
|
1977
2197
|
"name": "Thailand",
|
|
@@ -1980,7 +2200,8 @@ exports.default = {
|
|
|
1980
2200
|
"iso_3": "THA",
|
|
1981
2201
|
"flag_emoji": "🇹🇭",
|
|
1982
2202
|
"continent": "Asia",
|
|
1983
|
-
"region": "South-eastern Asia"
|
|
2203
|
+
"region": "South-eastern Asia",
|
|
2204
|
+
"currency_iso_code": "THB"
|
|
1984
2205
|
},
|
|
1985
2206
|
{
|
|
1986
2207
|
"name": "Timor-Leste",
|
|
@@ -1989,7 +2210,8 @@ exports.default = {
|
|
|
1989
2210
|
"iso_3": "TLS",
|
|
1990
2211
|
"flag_emoji": "🇹🇱",
|
|
1991
2212
|
"continent": "Asia",
|
|
1992
|
-
"region": "South-eastern Asia"
|
|
2213
|
+
"region": "South-eastern Asia",
|
|
2214
|
+
"currency_iso_code": "USD"
|
|
1993
2215
|
},
|
|
1994
2216
|
{
|
|
1995
2217
|
"name": "Togo",
|
|
@@ -1998,7 +2220,8 @@ exports.default = {
|
|
|
1998
2220
|
"iso_3": "TGO",
|
|
1999
2221
|
"flag_emoji": "🇹🇬",
|
|
2000
2222
|
"continent": "Africa",
|
|
2001
|
-
"region": "Western Africa"
|
|
2223
|
+
"region": "Western Africa",
|
|
2224
|
+
"currency_iso_code": "XOF"
|
|
2002
2225
|
},
|
|
2003
2226
|
{
|
|
2004
2227
|
"name": "Tokelau",
|
|
@@ -2007,7 +2230,8 @@ exports.default = {
|
|
|
2007
2230
|
"iso_3": "TKL",
|
|
2008
2231
|
"flag_emoji": "🇹🇰",
|
|
2009
2232
|
"continent": "Oceania",
|
|
2010
|
-
"region": "Polynesia"
|
|
2233
|
+
"region": "Polynesia",
|
|
2234
|
+
"currency_iso_code": "NZD"
|
|
2011
2235
|
},
|
|
2012
2236
|
{
|
|
2013
2237
|
"name": "Tonga",
|
|
@@ -2016,7 +2240,8 @@ exports.default = {
|
|
|
2016
2240
|
"iso_3": "TON",
|
|
2017
2241
|
"flag_emoji": "🇹🇴",
|
|
2018
2242
|
"continent": "Oceania",
|
|
2019
|
-
"region": "Polynesia"
|
|
2243
|
+
"region": "Polynesia",
|
|
2244
|
+
"currency_iso_code": "TOP"
|
|
2020
2245
|
},
|
|
2021
2246
|
{
|
|
2022
2247
|
"name": "Trinidad and Tobago",
|
|
@@ -2025,7 +2250,8 @@ exports.default = {
|
|
|
2025
2250
|
"iso_3": "TTO",
|
|
2026
2251
|
"flag_emoji": "🇹🇹",
|
|
2027
2252
|
"continent": "North America",
|
|
2028
|
-
"region": "Caribbean"
|
|
2253
|
+
"region": "Caribbean",
|
|
2254
|
+
"currency_iso_code": "TTD"
|
|
2029
2255
|
},
|
|
2030
2256
|
{
|
|
2031
2257
|
"name": "Tunisia",
|
|
@@ -2034,7 +2260,8 @@ exports.default = {
|
|
|
2034
2260
|
"iso_3": "TUN",
|
|
2035
2261
|
"flag_emoji": "🇹🇳",
|
|
2036
2262
|
"continent": "Africa",
|
|
2037
|
-
"region": "Northern Africa"
|
|
2263
|
+
"region": "Northern Africa",
|
|
2264
|
+
"currency_iso_code": "TND"
|
|
2038
2265
|
},
|
|
2039
2266
|
{
|
|
2040
2267
|
"name": "Turkey",
|
|
@@ -2043,7 +2270,8 @@ exports.default = {
|
|
|
2043
2270
|
"iso_3": "TUR",
|
|
2044
2271
|
"flag_emoji": "🇹🇷",
|
|
2045
2272
|
"continent": "Asia",
|
|
2046
|
-
"region": "Western Asia"
|
|
2273
|
+
"region": "Western Asia",
|
|
2274
|
+
"currency_iso_code": "TRY"
|
|
2047
2275
|
},
|
|
2048
2276
|
{
|
|
2049
2277
|
"name": "Turkmenistan",
|
|
@@ -2052,7 +2280,8 @@ exports.default = {
|
|
|
2052
2280
|
"iso_3": "TKM",
|
|
2053
2281
|
"flag_emoji": "🇹🇲",
|
|
2054
2282
|
"continent": "Asia",
|
|
2055
|
-
"region": "Central Asia"
|
|
2283
|
+
"region": "Central Asia",
|
|
2284
|
+
"currency_iso_code": "TMT"
|
|
2056
2285
|
},
|
|
2057
2286
|
{
|
|
2058
2287
|
"name": "Turks and Caicos Islands",
|
|
@@ -2061,7 +2290,8 @@ exports.default = {
|
|
|
2061
2290
|
"iso_3": "TCA",
|
|
2062
2291
|
"flag_emoji": "🇹🇨",
|
|
2063
2292
|
"continent": "North America",
|
|
2064
|
-
"region": "Caribbean"
|
|
2293
|
+
"region": "Caribbean",
|
|
2294
|
+
"currency_iso_code": "USD"
|
|
2065
2295
|
},
|
|
2066
2296
|
{
|
|
2067
2297
|
"name": "Tuvalu",
|
|
@@ -2070,7 +2300,8 @@ exports.default = {
|
|
|
2070
2300
|
"iso_3": "TUV",
|
|
2071
2301
|
"flag_emoji": "🇹🇻",
|
|
2072
2302
|
"continent": "Oceania",
|
|
2073
|
-
"region": "Polynesia"
|
|
2303
|
+
"region": "Polynesia",
|
|
2304
|
+
"currency_iso_code": "AUD"
|
|
2074
2305
|
},
|
|
2075
2306
|
{
|
|
2076
2307
|
"name": "U.S. Virgin Islands",
|
|
@@ -2079,7 +2310,8 @@ exports.default = {
|
|
|
2079
2310
|
"iso_3": "VIR",
|
|
2080
2311
|
"flag_emoji": "🇻🇮",
|
|
2081
2312
|
"continent": "North America",
|
|
2082
|
-
"region": "Caribbean"
|
|
2313
|
+
"region": "Caribbean",
|
|
2314
|
+
"currency_iso_code": "USD"
|
|
2083
2315
|
},
|
|
2084
2316
|
{
|
|
2085
2317
|
"name": "Uganda",
|
|
@@ -2088,7 +2320,8 @@ exports.default = {
|
|
|
2088
2320
|
"iso_3": "UGA",
|
|
2089
2321
|
"flag_emoji": "🇺🇬",
|
|
2090
2322
|
"continent": "Africa",
|
|
2091
|
-
"region": "Eastern Africa"
|
|
2323
|
+
"region": "Eastern Africa",
|
|
2324
|
+
"currency_iso_code": "UGX"
|
|
2092
2325
|
},
|
|
2093
2326
|
{
|
|
2094
2327
|
"name": "Ukraine",
|
|
@@ -2097,7 +2330,8 @@ exports.default = {
|
|
|
2097
2330
|
"iso_3": "UKR",
|
|
2098
2331
|
"flag_emoji": "🇺🇦",
|
|
2099
2332
|
"continent": "Europe",
|
|
2100
|
-
"region": "Eastern Europe"
|
|
2333
|
+
"region": "Eastern Europe",
|
|
2334
|
+
"currency_iso_code": "UAH"
|
|
2101
2335
|
},
|
|
2102
2336
|
{
|
|
2103
2337
|
"name": "United Arab Emirates",
|
|
@@ -2106,7 +2340,8 @@ exports.default = {
|
|
|
2106
2340
|
"iso_3": "ARE",
|
|
2107
2341
|
"flag_emoji": "🇦🇪",
|
|
2108
2342
|
"continent": "Asia",
|
|
2109
|
-
"region": "Western Asia"
|
|
2343
|
+
"region": "Western Asia",
|
|
2344
|
+
"currency_iso_code": "AED"
|
|
2110
2345
|
},
|
|
2111
2346
|
{
|
|
2112
2347
|
"name": "United Kingdom",
|
|
@@ -2115,7 +2350,8 @@ exports.default = {
|
|
|
2115
2350
|
"iso_3": "GBR",
|
|
2116
2351
|
"flag_emoji": "🇬🇧",
|
|
2117
2352
|
"continent": "Europe",
|
|
2118
|
-
"region": "Northern Europe"
|
|
2353
|
+
"region": "Northern Europe",
|
|
2354
|
+
"currency_iso_code": "GBP"
|
|
2119
2355
|
},
|
|
2120
2356
|
{
|
|
2121
2357
|
"name": "United States",
|
|
@@ -2124,7 +2360,8 @@ exports.default = {
|
|
|
2124
2360
|
"iso_3": "USA",
|
|
2125
2361
|
"flag_emoji": "🇺🇸",
|
|
2126
2362
|
"continent": "North America",
|
|
2127
|
-
"region": "Northern America"
|
|
2363
|
+
"region": "Northern America",
|
|
2364
|
+
"currency_iso_code": "USD"
|
|
2128
2365
|
},
|
|
2129
2366
|
{
|
|
2130
2367
|
"name": "United States Minor Outlying Islands",
|
|
@@ -2133,7 +2370,8 @@ exports.default = {
|
|
|
2133
2370
|
"iso_3": "UMI",
|
|
2134
2371
|
"flag_emoji": "🇺🇲",
|
|
2135
2372
|
"continent": "Oceania",
|
|
2136
|
-
"region": "Micronesia"
|
|
2373
|
+
"region": "Micronesia",
|
|
2374
|
+
"currency_iso_code": "USD"
|
|
2137
2375
|
},
|
|
2138
2376
|
{
|
|
2139
2377
|
"name": "Uruguay",
|
|
@@ -2142,7 +2380,8 @@ exports.default = {
|
|
|
2142
2380
|
"iso_3": "URY",
|
|
2143
2381
|
"flag_emoji": "🇺🇾",
|
|
2144
2382
|
"continent": "South America",
|
|
2145
|
-
"region": "South America"
|
|
2383
|
+
"region": "South America",
|
|
2384
|
+
"currency_iso_code": "UYU"
|
|
2146
2385
|
},
|
|
2147
2386
|
{
|
|
2148
2387
|
"name": "Uzbekistan",
|
|
@@ -2151,7 +2390,8 @@ exports.default = {
|
|
|
2151
2390
|
"iso_3": "UZB",
|
|
2152
2391
|
"flag_emoji": "🇺🇿",
|
|
2153
2392
|
"continent": "Asia",
|
|
2154
|
-
"region": "Central Asia"
|
|
2393
|
+
"region": "Central Asia",
|
|
2394
|
+
"currency_iso_code": "UZS"
|
|
2155
2395
|
},
|
|
2156
2396
|
{
|
|
2157
2397
|
"name": "Vanuatu",
|
|
@@ -2160,7 +2400,8 @@ exports.default = {
|
|
|
2160
2400
|
"iso_3": "VUT",
|
|
2161
2401
|
"flag_emoji": "🇻🇺",
|
|
2162
2402
|
"continent": "Oceania",
|
|
2163
|
-
"region": "Melanesia"
|
|
2403
|
+
"region": "Melanesia",
|
|
2404
|
+
"currency_iso_code": "VUV"
|
|
2164
2405
|
},
|
|
2165
2406
|
{
|
|
2166
2407
|
"name": "Venezuela",
|
|
@@ -2169,7 +2410,8 @@ exports.default = {
|
|
|
2169
2410
|
"iso_3": "VEN",
|
|
2170
2411
|
"flag_emoji": "🇻🇪",
|
|
2171
2412
|
"continent": "South America",
|
|
2172
|
-
"region": "South America"
|
|
2413
|
+
"region": "South America",
|
|
2414
|
+
"currency_iso_code": "VES"
|
|
2173
2415
|
},
|
|
2174
2416
|
{
|
|
2175
2417
|
"name": "Vietnam",
|
|
@@ -2178,7 +2420,8 @@ exports.default = {
|
|
|
2178
2420
|
"iso_3": "VNM",
|
|
2179
2421
|
"flag_emoji": "🇻🇳",
|
|
2180
2422
|
"continent": "Asia",
|
|
2181
|
-
"region": "South-eastern Asia"
|
|
2423
|
+
"region": "South-eastern Asia",
|
|
2424
|
+
"currency_iso_code": "VND"
|
|
2182
2425
|
},
|
|
2183
2426
|
{
|
|
2184
2427
|
"name": "Wallis and Futuna",
|
|
@@ -2187,7 +2430,8 @@ exports.default = {
|
|
|
2187
2430
|
"iso_3": "WLF",
|
|
2188
2431
|
"flag_emoji": "🇼🇫",
|
|
2189
2432
|
"continent": "Oceania",
|
|
2190
|
-
"region": "Polynesia"
|
|
2433
|
+
"region": "Polynesia",
|
|
2434
|
+
"currency_iso_code": "XPF"
|
|
2191
2435
|
},
|
|
2192
2436
|
{
|
|
2193
2437
|
"name": "Western Sahara",
|
|
@@ -2196,7 +2440,8 @@ exports.default = {
|
|
|
2196
2440
|
"iso_3": "ESH",
|
|
2197
2441
|
"flag_emoji": "🇪🇭",
|
|
2198
2442
|
"continent": "Africa",
|
|
2199
|
-
"region": "Northern Africa"
|
|
2443
|
+
"region": "Northern Africa",
|
|
2444
|
+
"currency_iso_code": null
|
|
2200
2445
|
},
|
|
2201
2446
|
{
|
|
2202
2447
|
"name": "Yemen",
|
|
@@ -2205,7 +2450,8 @@ exports.default = {
|
|
|
2205
2450
|
"iso_3": "YEM",
|
|
2206
2451
|
"flag_emoji": "🇾🇪",
|
|
2207
2452
|
"continent": "Asia",
|
|
2208
|
-
"region": "Western Asia"
|
|
2453
|
+
"region": "Western Asia",
|
|
2454
|
+
"currency_iso_code": "YER"
|
|
2209
2455
|
},
|
|
2210
2456
|
{
|
|
2211
2457
|
"name": "Zambia",
|
|
@@ -2214,7 +2460,8 @@ exports.default = {
|
|
|
2214
2460
|
"iso_3": "ZMB",
|
|
2215
2461
|
"flag_emoji": "🇿🇲",
|
|
2216
2462
|
"continent": "Africa",
|
|
2217
|
-
"region": "Eastern Africa"
|
|
2463
|
+
"region": "Eastern Africa",
|
|
2464
|
+
"currency_iso_code": "ZMW"
|
|
2218
2465
|
},
|
|
2219
2466
|
{
|
|
2220
2467
|
"name": "Zimbabwe",
|
|
@@ -2223,7 +2470,8 @@ exports.default = {
|
|
|
2223
2470
|
"iso_3": "ZWE",
|
|
2224
2471
|
"flag_emoji": "🇿🇼",
|
|
2225
2472
|
"continent": "Africa",
|
|
2226
|
-
"region": "Eastern Africa"
|
|
2473
|
+
"region": "Eastern Africa",
|
|
2474
|
+
"currency_iso_code": "USD"
|
|
2227
2475
|
}
|
|
2228
2476
|
]
|
|
2229
2477
|
};
|