@sil/data 0.1.8 → 0.1.10
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/dist/sil-data.cjs +398 -197
- package/dist/sil-data.cjs.map +1 -1
- package/dist/sil-data.js +398 -197
- package/dist/sil-data.js.map +1 -1
- package/dist/types/data/countries.d.ts +5 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/types/index.d.ts +46 -0
- package/package.json +1 -1
package/dist/sil-data.js
CHANGED
|
@@ -10,7 +10,8 @@ const countries = [
|
|
|
10
10
|
continent: "Asia",
|
|
11
11
|
currency: "AFN",
|
|
12
12
|
languages: ["Dari", "Pashto"],
|
|
13
|
-
tld: ".af"
|
|
13
|
+
tld: ".af",
|
|
14
|
+
recognized: true
|
|
14
15
|
},
|
|
15
16
|
{
|
|
16
17
|
name: "Albania",
|
|
@@ -23,7 +24,8 @@ const countries = [
|
|
|
23
24
|
continent: "Europe",
|
|
24
25
|
currency: "ALL",
|
|
25
26
|
languages: ["Albanian"],
|
|
26
|
-
tld: ".al"
|
|
27
|
+
tld: ".al",
|
|
28
|
+
recognized: true
|
|
27
29
|
},
|
|
28
30
|
{
|
|
29
31
|
name: "Algeria",
|
|
@@ -36,7 +38,8 @@ const countries = [
|
|
|
36
38
|
continent: "Africa",
|
|
37
39
|
currency: "DZD",
|
|
38
40
|
languages: ["Arabic", "Tamazight"],
|
|
39
|
-
tld: ".dz"
|
|
41
|
+
tld: ".dz",
|
|
42
|
+
recognized: true
|
|
40
43
|
},
|
|
41
44
|
{
|
|
42
45
|
name: "Andorra",
|
|
@@ -49,7 +52,8 @@ const countries = [
|
|
|
49
52
|
continent: "Europe",
|
|
50
53
|
currency: "EUR",
|
|
51
54
|
languages: ["Catalan"],
|
|
52
|
-
tld: ".ad"
|
|
55
|
+
tld: ".ad",
|
|
56
|
+
recognized: true
|
|
53
57
|
},
|
|
54
58
|
{
|
|
55
59
|
name: "Angola",
|
|
@@ -62,7 +66,8 @@ const countries = [
|
|
|
62
66
|
continent: "Africa",
|
|
63
67
|
currency: "AOA",
|
|
64
68
|
languages: ["Portuguese"],
|
|
65
|
-
tld: ".ao"
|
|
69
|
+
tld: ".ao",
|
|
70
|
+
recognized: true
|
|
66
71
|
},
|
|
67
72
|
{
|
|
68
73
|
name: "Antigua and Barbuda",
|
|
@@ -75,7 +80,8 @@ const countries = [
|
|
|
75
80
|
continent: "North America",
|
|
76
81
|
currency: "XCD",
|
|
77
82
|
languages: ["English"],
|
|
78
|
-
tld: ".ag"
|
|
83
|
+
tld: ".ag",
|
|
84
|
+
recognized: true
|
|
79
85
|
},
|
|
80
86
|
{
|
|
81
87
|
name: "Argentina",
|
|
@@ -88,7 +94,8 @@ const countries = [
|
|
|
88
94
|
continent: "South America",
|
|
89
95
|
currency: "ARS",
|
|
90
96
|
languages: ["Spanish"],
|
|
91
|
-
tld: ".ar"
|
|
97
|
+
tld: ".ar",
|
|
98
|
+
recognized: true
|
|
92
99
|
},
|
|
93
100
|
{
|
|
94
101
|
name: "Armenia",
|
|
@@ -101,7 +108,8 @@ const countries = [
|
|
|
101
108
|
continent: "Asia",
|
|
102
109
|
currency: "AMD",
|
|
103
110
|
languages: ["Armenian"],
|
|
104
|
-
tld: ".am"
|
|
111
|
+
tld: ".am",
|
|
112
|
+
recognized: true
|
|
105
113
|
},
|
|
106
114
|
{
|
|
107
115
|
name: "Australia",
|
|
@@ -114,7 +122,8 @@ const countries = [
|
|
|
114
122
|
continent: "Oceania",
|
|
115
123
|
currency: "AUD",
|
|
116
124
|
languages: ["English"],
|
|
117
|
-
tld: ".au"
|
|
125
|
+
tld: ".au",
|
|
126
|
+
recognized: true
|
|
118
127
|
},
|
|
119
128
|
{
|
|
120
129
|
name: "Austria",
|
|
@@ -127,7 +136,8 @@ const countries = [
|
|
|
127
136
|
continent: "Europe",
|
|
128
137
|
currency: "EUR",
|
|
129
138
|
languages: ["German"],
|
|
130
|
-
tld: ".at"
|
|
139
|
+
tld: ".at",
|
|
140
|
+
recognized: true
|
|
131
141
|
},
|
|
132
142
|
{
|
|
133
143
|
name: "Azerbaijan",
|
|
@@ -140,7 +150,8 @@ const countries = [
|
|
|
140
150
|
continent: "Asia",
|
|
141
151
|
currency: "AZN",
|
|
142
152
|
languages: ["Azerbaijani"],
|
|
143
|
-
tld: ".az"
|
|
153
|
+
tld: ".az",
|
|
154
|
+
recognized: true
|
|
144
155
|
},
|
|
145
156
|
{
|
|
146
157
|
name: "Bahamas",
|
|
@@ -153,7 +164,8 @@ const countries = [
|
|
|
153
164
|
continent: "North America",
|
|
154
165
|
currency: "BSD",
|
|
155
166
|
languages: ["English"],
|
|
156
|
-
tld: ".bs"
|
|
167
|
+
tld: ".bs",
|
|
168
|
+
recognized: true
|
|
157
169
|
},
|
|
158
170
|
{
|
|
159
171
|
name: "Bahrain",
|
|
@@ -166,7 +178,8 @@ const countries = [
|
|
|
166
178
|
continent: "Asia",
|
|
167
179
|
currency: "BHD",
|
|
168
180
|
languages: ["Arabic"],
|
|
169
|
-
tld: ".bh"
|
|
181
|
+
tld: ".bh",
|
|
182
|
+
recognized: true
|
|
170
183
|
},
|
|
171
184
|
{
|
|
172
185
|
name: "Bangladesh",
|
|
@@ -179,7 +192,8 @@ const countries = [
|
|
|
179
192
|
continent: "Asia",
|
|
180
193
|
currency: "BDT",
|
|
181
194
|
languages: ["Bengali"],
|
|
182
|
-
tld: ".bd"
|
|
195
|
+
tld: ".bd",
|
|
196
|
+
recognized: true
|
|
183
197
|
},
|
|
184
198
|
{
|
|
185
199
|
name: "Barbados",
|
|
@@ -192,7 +206,8 @@ const countries = [
|
|
|
192
206
|
continent: "North America",
|
|
193
207
|
currency: "BBD",
|
|
194
208
|
languages: ["English"],
|
|
195
|
-
tld: ".bb"
|
|
209
|
+
tld: ".bb",
|
|
210
|
+
recognized: true
|
|
196
211
|
},
|
|
197
212
|
{
|
|
198
213
|
name: "Belarus",
|
|
@@ -205,7 +220,8 @@ const countries = [
|
|
|
205
220
|
continent: "Europe",
|
|
206
221
|
currency: "BYN",
|
|
207
222
|
languages: ["Belarusian", "Russian"],
|
|
208
|
-
tld: ".by"
|
|
223
|
+
tld: ".by",
|
|
224
|
+
recognized: true
|
|
209
225
|
},
|
|
210
226
|
{
|
|
211
227
|
name: "Belgium",
|
|
@@ -218,7 +234,8 @@ const countries = [
|
|
|
218
234
|
continent: "Europe",
|
|
219
235
|
currency: "EUR",
|
|
220
236
|
languages: ["Dutch", "French", "German"],
|
|
221
|
-
tld: ".be"
|
|
237
|
+
tld: ".be",
|
|
238
|
+
recognized: true
|
|
222
239
|
},
|
|
223
240
|
{
|
|
224
241
|
name: "Belize",
|
|
@@ -231,7 +248,8 @@ const countries = [
|
|
|
231
248
|
continent: "North America",
|
|
232
249
|
currency: "BZD",
|
|
233
250
|
languages: ["English"],
|
|
234
|
-
tld: ".bz"
|
|
251
|
+
tld: ".bz",
|
|
252
|
+
recognized: true
|
|
235
253
|
},
|
|
236
254
|
{
|
|
237
255
|
name: "Benin",
|
|
@@ -244,7 +262,8 @@ const countries = [
|
|
|
244
262
|
continent: "Africa",
|
|
245
263
|
currency: "XOF",
|
|
246
264
|
languages: ["French"],
|
|
247
|
-
tld: ".bj"
|
|
265
|
+
tld: ".bj",
|
|
266
|
+
recognized: true
|
|
248
267
|
},
|
|
249
268
|
{
|
|
250
269
|
name: "Bhutan",
|
|
@@ -257,7 +276,8 @@ const countries = [
|
|
|
257
276
|
continent: "Asia",
|
|
258
277
|
currency: "BTN",
|
|
259
278
|
languages: ["Dzongkha"],
|
|
260
|
-
tld: ".bt"
|
|
279
|
+
tld: ".bt",
|
|
280
|
+
recognized: true
|
|
261
281
|
},
|
|
262
282
|
{
|
|
263
283
|
name: "Bolivia",
|
|
@@ -270,7 +290,8 @@ const countries = [
|
|
|
270
290
|
continent: "South America",
|
|
271
291
|
currency: "BOB",
|
|
272
292
|
languages: ["Spanish", "Quechua", "Aymara"],
|
|
273
|
-
tld: ".bo"
|
|
293
|
+
tld: ".bo",
|
|
294
|
+
recognized: true
|
|
274
295
|
},
|
|
275
296
|
{
|
|
276
297
|
name: "Bosnia and Herzegovina",
|
|
@@ -283,7 +304,8 @@ const countries = [
|
|
|
283
304
|
continent: "Europe",
|
|
284
305
|
currency: "BAM",
|
|
285
306
|
languages: ["Bosnian", "Serbian", "Croatian"],
|
|
286
|
-
tld: ".ba"
|
|
307
|
+
tld: ".ba",
|
|
308
|
+
recognized: true
|
|
287
309
|
},
|
|
288
310
|
{
|
|
289
311
|
name: "Botswana",
|
|
@@ -296,7 +318,8 @@ const countries = [
|
|
|
296
318
|
continent: "Africa",
|
|
297
319
|
currency: "BWP",
|
|
298
320
|
languages: ["English", "Tswana"],
|
|
299
|
-
tld: ".bw"
|
|
321
|
+
tld: ".bw",
|
|
322
|
+
recognized: true
|
|
300
323
|
},
|
|
301
324
|
{
|
|
302
325
|
name: "Brazil",
|
|
@@ -309,7 +332,8 @@ const countries = [
|
|
|
309
332
|
continent: "South America",
|
|
310
333
|
currency: "BRL",
|
|
311
334
|
languages: ["Portuguese"],
|
|
312
|
-
tld: ".br"
|
|
335
|
+
tld: ".br",
|
|
336
|
+
recognized: true
|
|
313
337
|
},
|
|
314
338
|
{
|
|
315
339
|
name: "Brunei",
|
|
@@ -322,7 +346,8 @@ const countries = [
|
|
|
322
346
|
continent: "Asia",
|
|
323
347
|
currency: "BND",
|
|
324
348
|
languages: ["Malay", "English"],
|
|
325
|
-
tld: ".bn"
|
|
349
|
+
tld: ".bn",
|
|
350
|
+
recognized: true
|
|
326
351
|
},
|
|
327
352
|
{
|
|
328
353
|
name: "Bulgaria",
|
|
@@ -335,7 +360,8 @@ const countries = [
|
|
|
335
360
|
continent: "Europe",
|
|
336
361
|
currency: "BGN",
|
|
337
362
|
languages: ["Bulgarian"],
|
|
338
|
-
tld: ".bg"
|
|
363
|
+
tld: ".bg",
|
|
364
|
+
recognized: true
|
|
339
365
|
},
|
|
340
366
|
{
|
|
341
367
|
name: "Burkina Faso",
|
|
@@ -348,7 +374,8 @@ const countries = [
|
|
|
348
374
|
continent: "Africa",
|
|
349
375
|
currency: "XOF",
|
|
350
376
|
languages: ["French"],
|
|
351
|
-
tld: ".bf"
|
|
377
|
+
tld: ".bf",
|
|
378
|
+
recognized: true
|
|
352
379
|
},
|
|
353
380
|
{
|
|
354
381
|
name: "Burundi",
|
|
@@ -361,7 +388,8 @@ const countries = [
|
|
|
361
388
|
continent: "Africa",
|
|
362
389
|
currency: "BIF",
|
|
363
390
|
languages: ["Kirundi", "French"],
|
|
364
|
-
tld: ".bi"
|
|
391
|
+
tld: ".bi",
|
|
392
|
+
recognized: true
|
|
365
393
|
},
|
|
366
394
|
{
|
|
367
395
|
name: "Cabo Verde",
|
|
@@ -374,7 +402,8 @@ const countries = [
|
|
|
374
402
|
continent: "Africa",
|
|
375
403
|
currency: "CVE",
|
|
376
404
|
languages: ["Portuguese"],
|
|
377
|
-
tld: ".cv"
|
|
405
|
+
tld: ".cv",
|
|
406
|
+
recognized: true
|
|
378
407
|
},
|
|
379
408
|
{
|
|
380
409
|
name: "Cambodia",
|
|
@@ -387,7 +416,8 @@ const countries = [
|
|
|
387
416
|
continent: "Asia",
|
|
388
417
|
currency: "KHR",
|
|
389
418
|
languages: ["Khmer"],
|
|
390
|
-
tld: ".kh"
|
|
419
|
+
tld: ".kh",
|
|
420
|
+
recognized: true
|
|
391
421
|
},
|
|
392
422
|
{
|
|
393
423
|
name: "Cameroon",
|
|
@@ -400,7 +430,8 @@ const countries = [
|
|
|
400
430
|
continent: "Africa",
|
|
401
431
|
currency: "XAF",
|
|
402
432
|
languages: ["French", "English"],
|
|
403
|
-
tld: ".cm"
|
|
433
|
+
tld: ".cm",
|
|
434
|
+
recognized: true
|
|
404
435
|
},
|
|
405
436
|
{
|
|
406
437
|
name: "Canada",
|
|
@@ -413,7 +444,8 @@ const countries = [
|
|
|
413
444
|
continent: "North America",
|
|
414
445
|
currency: "CAD",
|
|
415
446
|
languages: ["English", "French"],
|
|
416
|
-
tld: ".ca"
|
|
447
|
+
tld: ".ca",
|
|
448
|
+
recognized: true
|
|
417
449
|
},
|
|
418
450
|
{
|
|
419
451
|
name: "Central African Republic",
|
|
@@ -426,7 +458,8 @@ const countries = [
|
|
|
426
458
|
continent: "Africa",
|
|
427
459
|
currency: "XAF",
|
|
428
460
|
languages: ["French", "Sango"],
|
|
429
|
-
tld: ".cf"
|
|
461
|
+
tld: ".cf",
|
|
462
|
+
recognized: true
|
|
430
463
|
},
|
|
431
464
|
{
|
|
432
465
|
name: "Chad",
|
|
@@ -439,7 +472,8 @@ const countries = [
|
|
|
439
472
|
continent: "Africa",
|
|
440
473
|
currency: "XAF",
|
|
441
474
|
languages: ["French", "Arabic"],
|
|
442
|
-
tld: ".td"
|
|
475
|
+
tld: ".td",
|
|
476
|
+
recognized: true
|
|
443
477
|
},
|
|
444
478
|
{
|
|
445
479
|
name: "Chile",
|
|
@@ -452,7 +486,8 @@ const countries = [
|
|
|
452
486
|
continent: "South America",
|
|
453
487
|
currency: "CLP",
|
|
454
488
|
languages: ["Spanish"],
|
|
455
|
-
tld: ".cl"
|
|
489
|
+
tld: ".cl",
|
|
490
|
+
recognized: true
|
|
456
491
|
},
|
|
457
492
|
{
|
|
458
493
|
name: "China",
|
|
@@ -465,7 +500,8 @@ const countries = [
|
|
|
465
500
|
continent: "Asia",
|
|
466
501
|
currency: "CNY",
|
|
467
502
|
languages: ["Mandarin"],
|
|
468
|
-
tld: ".cn"
|
|
503
|
+
tld: ".cn",
|
|
504
|
+
recognized: true
|
|
469
505
|
},
|
|
470
506
|
{
|
|
471
507
|
name: "Colombia",
|
|
@@ -478,7 +514,8 @@ const countries = [
|
|
|
478
514
|
continent: "South America",
|
|
479
515
|
currency: "COP",
|
|
480
516
|
languages: ["Spanish"],
|
|
481
|
-
tld: ".co"
|
|
517
|
+
tld: ".co",
|
|
518
|
+
recognized: true
|
|
482
519
|
},
|
|
483
520
|
{
|
|
484
521
|
name: "Comoros",
|
|
@@ -491,7 +528,8 @@ const countries = [
|
|
|
491
528
|
continent: "Africa",
|
|
492
529
|
currency: "KMF",
|
|
493
530
|
languages: ["Comorian", "Arabic", "French"],
|
|
494
|
-
tld: ".km"
|
|
531
|
+
tld: ".km",
|
|
532
|
+
recognized: true
|
|
495
533
|
},
|
|
496
534
|
{
|
|
497
535
|
name: "Congo (Democratic Republic)",
|
|
@@ -504,7 +542,8 @@ const countries = [
|
|
|
504
542
|
continent: "Africa",
|
|
505
543
|
currency: "CDF",
|
|
506
544
|
languages: ["French"],
|
|
507
|
-
tld: ".cd"
|
|
545
|
+
tld: ".cd",
|
|
546
|
+
recognized: true
|
|
508
547
|
},
|
|
509
548
|
{
|
|
510
549
|
name: "Congo (Republic)",
|
|
@@ -517,7 +556,8 @@ const countries = [
|
|
|
517
556
|
continent: "Africa",
|
|
518
557
|
currency: "XAF",
|
|
519
558
|
languages: ["French"],
|
|
520
|
-
tld: ".cg"
|
|
559
|
+
tld: ".cg",
|
|
560
|
+
recognized: true
|
|
521
561
|
},
|
|
522
562
|
{
|
|
523
563
|
name: "Costa Rica",
|
|
@@ -530,7 +570,8 @@ const countries = [
|
|
|
530
570
|
continent: "North America",
|
|
531
571
|
currency: "CRC",
|
|
532
572
|
languages: ["Spanish"],
|
|
533
|
-
tld: ".cr"
|
|
573
|
+
tld: ".cr",
|
|
574
|
+
recognized: true
|
|
534
575
|
},
|
|
535
576
|
{
|
|
536
577
|
name: "Croatia",
|
|
@@ -543,7 +584,8 @@ const countries = [
|
|
|
543
584
|
continent: "Europe",
|
|
544
585
|
currency: "EUR",
|
|
545
586
|
languages: ["Croatian"],
|
|
546
|
-
tld: ".hr"
|
|
587
|
+
tld: ".hr",
|
|
588
|
+
recognized: true
|
|
547
589
|
},
|
|
548
590
|
{
|
|
549
591
|
name: "Cuba",
|
|
@@ -556,7 +598,8 @@ const countries = [
|
|
|
556
598
|
continent: "North America",
|
|
557
599
|
currency: "CUP",
|
|
558
600
|
languages: ["Spanish"],
|
|
559
|
-
tld: ".cu"
|
|
601
|
+
tld: ".cu",
|
|
602
|
+
recognized: true
|
|
560
603
|
},
|
|
561
604
|
{
|
|
562
605
|
name: "Cyprus",
|
|
@@ -569,7 +612,8 @@ const countries = [
|
|
|
569
612
|
continent: "Asia",
|
|
570
613
|
currency: "EUR",
|
|
571
614
|
languages: ["Greek", "Turkish"],
|
|
572
|
-
tld: ".cy"
|
|
615
|
+
tld: ".cy",
|
|
616
|
+
recognized: true
|
|
573
617
|
},
|
|
574
618
|
{
|
|
575
619
|
name: "Czech Republic",
|
|
@@ -582,7 +626,8 @@ const countries = [
|
|
|
582
626
|
continent: "Europe",
|
|
583
627
|
currency: "CZK",
|
|
584
628
|
languages: ["Czech"],
|
|
585
|
-
tld: ".cz"
|
|
629
|
+
tld: ".cz",
|
|
630
|
+
recognized: true
|
|
586
631
|
},
|
|
587
632
|
{
|
|
588
633
|
name: "Denmark",
|
|
@@ -595,7 +640,8 @@ const countries = [
|
|
|
595
640
|
continent: "Europe",
|
|
596
641
|
currency: "DKK",
|
|
597
642
|
languages: ["Danish"],
|
|
598
|
-
tld: ".dk"
|
|
643
|
+
tld: ".dk",
|
|
644
|
+
recognized: true
|
|
599
645
|
},
|
|
600
646
|
{
|
|
601
647
|
name: "Djibouti",
|
|
@@ -608,7 +654,8 @@ const countries = [
|
|
|
608
654
|
continent: "Africa",
|
|
609
655
|
currency: "DJF",
|
|
610
656
|
languages: ["French", "Arabic"],
|
|
611
|
-
tld: ".dj"
|
|
657
|
+
tld: ".dj",
|
|
658
|
+
recognized: true
|
|
612
659
|
},
|
|
613
660
|
{
|
|
614
661
|
name: "Dominica",
|
|
@@ -621,7 +668,8 @@ const countries = [
|
|
|
621
668
|
continent: "North America",
|
|
622
669
|
currency: "XCD",
|
|
623
670
|
languages: ["English"],
|
|
624
|
-
tld: ".dm"
|
|
671
|
+
tld: ".dm",
|
|
672
|
+
recognized: true
|
|
625
673
|
},
|
|
626
674
|
{
|
|
627
675
|
name: "Dominican Republic",
|
|
@@ -634,7 +682,8 @@ const countries = [
|
|
|
634
682
|
continent: "North America",
|
|
635
683
|
currency: "DOP",
|
|
636
684
|
languages: ["Spanish"],
|
|
637
|
-
tld: ".do"
|
|
685
|
+
tld: ".do",
|
|
686
|
+
recognized: true
|
|
638
687
|
},
|
|
639
688
|
{
|
|
640
689
|
name: "Ecuador",
|
|
@@ -647,7 +696,8 @@ const countries = [
|
|
|
647
696
|
continent: "South America",
|
|
648
697
|
currency: "USD",
|
|
649
698
|
languages: ["Spanish"],
|
|
650
|
-
tld: ".ec"
|
|
699
|
+
tld: ".ec",
|
|
700
|
+
recognized: true
|
|
651
701
|
},
|
|
652
702
|
{
|
|
653
703
|
name: "Egypt",
|
|
@@ -660,7 +710,8 @@ const countries = [
|
|
|
660
710
|
continent: "Africa",
|
|
661
711
|
currency: "EGP",
|
|
662
712
|
languages: ["Arabic"],
|
|
663
|
-
tld: ".eg"
|
|
713
|
+
tld: ".eg",
|
|
714
|
+
recognized: true
|
|
664
715
|
},
|
|
665
716
|
{
|
|
666
717
|
name: "El Salvador",
|
|
@@ -673,7 +724,8 @@ const countries = [
|
|
|
673
724
|
continent: "North America",
|
|
674
725
|
currency: "USD",
|
|
675
726
|
languages: ["Spanish"],
|
|
676
|
-
tld: ".sv"
|
|
727
|
+
tld: ".sv",
|
|
728
|
+
recognized: true
|
|
677
729
|
},
|
|
678
730
|
{
|
|
679
731
|
name: "Equatorial Guinea",
|
|
@@ -686,7 +738,8 @@ const countries = [
|
|
|
686
738
|
continent: "Africa",
|
|
687
739
|
currency: "XAF",
|
|
688
740
|
languages: ["Spanish", "French", "Portuguese"],
|
|
689
|
-
tld: ".gq"
|
|
741
|
+
tld: ".gq",
|
|
742
|
+
recognized: true
|
|
690
743
|
},
|
|
691
744
|
{
|
|
692
745
|
name: "Eritrea",
|
|
@@ -699,7 +752,8 @@ const countries = [
|
|
|
699
752
|
continent: "Africa",
|
|
700
753
|
currency: "ERN",
|
|
701
754
|
languages: ["Tigrinya", "Arabic", "English"],
|
|
702
|
-
tld: ".er"
|
|
755
|
+
tld: ".er",
|
|
756
|
+
recognized: true
|
|
703
757
|
},
|
|
704
758
|
{
|
|
705
759
|
name: "Estonia",
|
|
@@ -712,7 +766,8 @@ const countries = [
|
|
|
712
766
|
continent: "Europe",
|
|
713
767
|
currency: "EUR",
|
|
714
768
|
languages: ["Estonian"],
|
|
715
|
-
tld: ".ee"
|
|
769
|
+
tld: ".ee",
|
|
770
|
+
recognized: true
|
|
716
771
|
},
|
|
717
772
|
{
|
|
718
773
|
name: "Eswatini",
|
|
@@ -725,7 +780,8 @@ const countries = [
|
|
|
725
780
|
continent: "Africa",
|
|
726
781
|
currency: "SZL",
|
|
727
782
|
languages: ["English", "Swati"],
|
|
728
|
-
tld: ".sz"
|
|
783
|
+
tld: ".sz",
|
|
784
|
+
recognized: true
|
|
729
785
|
},
|
|
730
786
|
{
|
|
731
787
|
name: "Ethiopia",
|
|
@@ -738,7 +794,8 @@ const countries = [
|
|
|
738
794
|
continent: "Africa",
|
|
739
795
|
currency: "ETB",
|
|
740
796
|
languages: ["Amharic"],
|
|
741
|
-
tld: ".et"
|
|
797
|
+
tld: ".et",
|
|
798
|
+
recognized: true
|
|
742
799
|
},
|
|
743
800
|
{
|
|
744
801
|
name: "Fiji",
|
|
@@ -751,7 +808,8 @@ const countries = [
|
|
|
751
808
|
continent: "Oceania",
|
|
752
809
|
currency: "FJD",
|
|
753
810
|
languages: ["English", "Fijian", "Hindi"],
|
|
754
|
-
tld: ".fj"
|
|
811
|
+
tld: ".fj",
|
|
812
|
+
recognized: true
|
|
755
813
|
},
|
|
756
814
|
{
|
|
757
815
|
name: "Finland",
|
|
@@ -764,7 +822,8 @@ const countries = [
|
|
|
764
822
|
continent: "Europe",
|
|
765
823
|
currency: "EUR",
|
|
766
824
|
languages: ["Finnish", "Swedish"],
|
|
767
|
-
tld: ".fi"
|
|
825
|
+
tld: ".fi",
|
|
826
|
+
recognized: true
|
|
768
827
|
},
|
|
769
828
|
{
|
|
770
829
|
name: "France",
|
|
@@ -777,7 +836,8 @@ const countries = [
|
|
|
777
836
|
continent: "Europe",
|
|
778
837
|
currency: "EUR",
|
|
779
838
|
languages: ["French"],
|
|
780
|
-
tld: ".fr"
|
|
839
|
+
tld: ".fr",
|
|
840
|
+
recognized: true
|
|
781
841
|
},
|
|
782
842
|
{
|
|
783
843
|
name: "Gabon",
|
|
@@ -790,7 +850,8 @@ const countries = [
|
|
|
790
850
|
continent: "Africa",
|
|
791
851
|
currency: "XAF",
|
|
792
852
|
languages: ["French"],
|
|
793
|
-
tld: ".ga"
|
|
853
|
+
tld: ".ga",
|
|
854
|
+
recognized: true
|
|
794
855
|
},
|
|
795
856
|
{
|
|
796
857
|
name: "Gambia",
|
|
@@ -803,7 +864,8 @@ const countries = [
|
|
|
803
864
|
continent: "Africa",
|
|
804
865
|
currency: "GMD",
|
|
805
866
|
languages: ["English"],
|
|
806
|
-
tld: ".gm"
|
|
867
|
+
tld: ".gm",
|
|
868
|
+
recognized: true
|
|
807
869
|
},
|
|
808
870
|
{
|
|
809
871
|
name: "Georgia",
|
|
@@ -816,7 +878,8 @@ const countries = [
|
|
|
816
878
|
continent: "Asia",
|
|
817
879
|
currency: "GEL",
|
|
818
880
|
languages: ["Georgian"],
|
|
819
|
-
tld: ".ge"
|
|
881
|
+
tld: ".ge",
|
|
882
|
+
recognized: true
|
|
820
883
|
},
|
|
821
884
|
{
|
|
822
885
|
name: "Germany",
|
|
@@ -829,7 +892,8 @@ const countries = [
|
|
|
829
892
|
continent: "Europe",
|
|
830
893
|
currency: "EUR",
|
|
831
894
|
languages: ["German"],
|
|
832
|
-
tld: ".de"
|
|
895
|
+
tld: ".de",
|
|
896
|
+
recognized: true
|
|
833
897
|
},
|
|
834
898
|
{
|
|
835
899
|
name: "Ghana",
|
|
@@ -842,7 +906,8 @@ const countries = [
|
|
|
842
906
|
continent: "Africa",
|
|
843
907
|
currency: "GHS",
|
|
844
908
|
languages: ["English"],
|
|
845
|
-
tld: ".gh"
|
|
909
|
+
tld: ".gh",
|
|
910
|
+
recognized: true
|
|
846
911
|
},
|
|
847
912
|
{
|
|
848
913
|
name: "Greece",
|
|
@@ -855,7 +920,8 @@ const countries = [
|
|
|
855
920
|
continent: "Europe",
|
|
856
921
|
currency: "EUR",
|
|
857
922
|
languages: ["Greek"],
|
|
858
|
-
tld: ".gr"
|
|
923
|
+
tld: ".gr",
|
|
924
|
+
recognized: true
|
|
859
925
|
},
|
|
860
926
|
{
|
|
861
927
|
name: "Grenada",
|
|
@@ -868,7 +934,8 @@ const countries = [
|
|
|
868
934
|
continent: "North America",
|
|
869
935
|
currency: "XCD",
|
|
870
936
|
languages: ["English"],
|
|
871
|
-
tld: ".gd"
|
|
937
|
+
tld: ".gd",
|
|
938
|
+
recognized: true
|
|
872
939
|
},
|
|
873
940
|
{
|
|
874
941
|
name: "Guatemala",
|
|
@@ -881,7 +948,8 @@ const countries = [
|
|
|
881
948
|
continent: "North America",
|
|
882
949
|
currency: "GTQ",
|
|
883
950
|
languages: ["Spanish"],
|
|
884
|
-
tld: ".gt"
|
|
951
|
+
tld: ".gt",
|
|
952
|
+
recognized: true
|
|
885
953
|
},
|
|
886
954
|
{
|
|
887
955
|
name: "Guinea",
|
|
@@ -894,7 +962,8 @@ const countries = [
|
|
|
894
962
|
continent: "Africa",
|
|
895
963
|
currency: "GNF",
|
|
896
964
|
languages: ["French"],
|
|
897
|
-
tld: ".gn"
|
|
965
|
+
tld: ".gn",
|
|
966
|
+
recognized: true
|
|
898
967
|
},
|
|
899
968
|
{
|
|
900
969
|
name: "Guinea-Bissau",
|
|
@@ -907,7 +976,8 @@ const countries = [
|
|
|
907
976
|
continent: "Africa",
|
|
908
977
|
currency: "XOF",
|
|
909
978
|
languages: ["Portuguese"],
|
|
910
|
-
tld: ".gw"
|
|
979
|
+
tld: ".gw",
|
|
980
|
+
recognized: true
|
|
911
981
|
},
|
|
912
982
|
{
|
|
913
983
|
name: "Guyana",
|
|
@@ -920,7 +990,8 @@ const countries = [
|
|
|
920
990
|
continent: "South America",
|
|
921
991
|
currency: "GYD",
|
|
922
992
|
languages: ["English"],
|
|
923
|
-
tld: ".gy"
|
|
993
|
+
tld: ".gy",
|
|
994
|
+
recognized: true
|
|
924
995
|
},
|
|
925
996
|
{
|
|
926
997
|
name: "Haiti",
|
|
@@ -933,7 +1004,8 @@ const countries = [
|
|
|
933
1004
|
continent: "North America",
|
|
934
1005
|
currency: "HTG",
|
|
935
1006
|
languages: ["French", "Haitian Creole"],
|
|
936
|
-
tld: ".ht"
|
|
1007
|
+
tld: ".ht",
|
|
1008
|
+
recognized: true
|
|
937
1009
|
},
|
|
938
1010
|
{
|
|
939
1011
|
name: "Honduras",
|
|
@@ -946,7 +1018,8 @@ const countries = [
|
|
|
946
1018
|
continent: "North America",
|
|
947
1019
|
currency: "HNL",
|
|
948
1020
|
languages: ["Spanish"],
|
|
949
|
-
tld: ".hn"
|
|
1021
|
+
tld: ".hn",
|
|
1022
|
+
recognized: true
|
|
950
1023
|
},
|
|
951
1024
|
{
|
|
952
1025
|
name: "Hungary",
|
|
@@ -959,7 +1032,8 @@ const countries = [
|
|
|
959
1032
|
continent: "Europe",
|
|
960
1033
|
currency: "HUF",
|
|
961
1034
|
languages: ["Hungarian"],
|
|
962
|
-
tld: ".hu"
|
|
1035
|
+
tld: ".hu",
|
|
1036
|
+
recognized: true
|
|
963
1037
|
},
|
|
964
1038
|
{
|
|
965
1039
|
name: "Iceland",
|
|
@@ -972,7 +1046,8 @@ const countries = [
|
|
|
972
1046
|
continent: "Europe",
|
|
973
1047
|
currency: "ISK",
|
|
974
1048
|
languages: ["Icelandic"],
|
|
975
|
-
tld: ".is"
|
|
1049
|
+
tld: ".is",
|
|
1050
|
+
recognized: true
|
|
976
1051
|
},
|
|
977
1052
|
{
|
|
978
1053
|
name: "India",
|
|
@@ -985,7 +1060,8 @@ const countries = [
|
|
|
985
1060
|
continent: "Asia",
|
|
986
1061
|
currency: "INR",
|
|
987
1062
|
languages: ["Hindi", "English"],
|
|
988
|
-
tld: ".in"
|
|
1063
|
+
tld: ".in",
|
|
1064
|
+
recognized: true
|
|
989
1065
|
},
|
|
990
1066
|
{
|
|
991
1067
|
name: "Indonesia",
|
|
@@ -998,7 +1074,8 @@ const countries = [
|
|
|
998
1074
|
continent: "Asia",
|
|
999
1075
|
currency: "IDR",
|
|
1000
1076
|
languages: ["Indonesian"],
|
|
1001
|
-
tld: ".id"
|
|
1077
|
+
tld: ".id",
|
|
1078
|
+
recognized: true
|
|
1002
1079
|
},
|
|
1003
1080
|
{
|
|
1004
1081
|
name: "Iran",
|
|
@@ -1011,7 +1088,8 @@ const countries = [
|
|
|
1011
1088
|
continent: "Asia",
|
|
1012
1089
|
currency: "IRR",
|
|
1013
1090
|
languages: ["Persian"],
|
|
1014
|
-
tld: ".ir"
|
|
1091
|
+
tld: ".ir",
|
|
1092
|
+
recognized: true
|
|
1015
1093
|
},
|
|
1016
1094
|
{
|
|
1017
1095
|
name: "Iraq",
|
|
@@ -1024,7 +1102,8 @@ const countries = [
|
|
|
1024
1102
|
continent: "Asia",
|
|
1025
1103
|
currency: "IQD",
|
|
1026
1104
|
languages: ["Arabic", "Kurdish"],
|
|
1027
|
-
tld: ".iq"
|
|
1105
|
+
tld: ".iq",
|
|
1106
|
+
recognized: true
|
|
1028
1107
|
},
|
|
1029
1108
|
{
|
|
1030
1109
|
name: "Ireland",
|
|
@@ -1037,7 +1116,8 @@ const countries = [
|
|
|
1037
1116
|
continent: "Europe",
|
|
1038
1117
|
currency: "EUR",
|
|
1039
1118
|
languages: ["Irish", "English"],
|
|
1040
|
-
tld: ".ie"
|
|
1119
|
+
tld: ".ie",
|
|
1120
|
+
recognized: true
|
|
1041
1121
|
},
|
|
1042
1122
|
{
|
|
1043
1123
|
name: "Israel",
|
|
@@ -1050,7 +1130,8 @@ const countries = [
|
|
|
1050
1130
|
continent: "Asia",
|
|
1051
1131
|
currency: "ILS",
|
|
1052
1132
|
languages: ["Hebrew", "Arabic"],
|
|
1053
|
-
tld: ".il"
|
|
1133
|
+
tld: ".il",
|
|
1134
|
+
recognized: true
|
|
1054
1135
|
},
|
|
1055
1136
|
{
|
|
1056
1137
|
name: "Italy",
|
|
@@ -1063,7 +1144,8 @@ const countries = [
|
|
|
1063
1144
|
continent: "Europe",
|
|
1064
1145
|
currency: "EUR",
|
|
1065
1146
|
languages: ["Italian"],
|
|
1066
|
-
tld: ".it"
|
|
1147
|
+
tld: ".it",
|
|
1148
|
+
recognized: true
|
|
1067
1149
|
},
|
|
1068
1150
|
{
|
|
1069
1151
|
name: "Jamaica",
|
|
@@ -1076,7 +1158,8 @@ const countries = [
|
|
|
1076
1158
|
continent: "North America",
|
|
1077
1159
|
currency: "JMD",
|
|
1078
1160
|
languages: ["English"],
|
|
1079
|
-
tld: ".jm"
|
|
1161
|
+
tld: ".jm",
|
|
1162
|
+
recognized: true
|
|
1080
1163
|
},
|
|
1081
1164
|
{
|
|
1082
1165
|
name: "Japan",
|
|
@@ -1089,7 +1172,8 @@ const countries = [
|
|
|
1089
1172
|
continent: "Asia",
|
|
1090
1173
|
currency: "JPY",
|
|
1091
1174
|
languages: ["Japanese"],
|
|
1092
|
-
tld: ".jp"
|
|
1175
|
+
tld: ".jp",
|
|
1176
|
+
recognized: true
|
|
1093
1177
|
},
|
|
1094
1178
|
{
|
|
1095
1179
|
name: "Jordan",
|
|
@@ -1102,7 +1186,8 @@ const countries = [
|
|
|
1102
1186
|
continent: "Asia",
|
|
1103
1187
|
currency: "JOD",
|
|
1104
1188
|
languages: ["Arabic"],
|
|
1105
|
-
tld: ".jo"
|
|
1189
|
+
tld: ".jo",
|
|
1190
|
+
recognized: true
|
|
1106
1191
|
},
|
|
1107
1192
|
{
|
|
1108
1193
|
name: "Kazakhstan",
|
|
@@ -1115,7 +1200,8 @@ const countries = [
|
|
|
1115
1200
|
continent: "Asia",
|
|
1116
1201
|
currency: "KZT",
|
|
1117
1202
|
languages: ["Kazakh", "Russian"],
|
|
1118
|
-
tld: ".kz"
|
|
1203
|
+
tld: ".kz",
|
|
1204
|
+
recognized: true
|
|
1119
1205
|
},
|
|
1120
1206
|
{
|
|
1121
1207
|
name: "Kenya",
|
|
@@ -1128,7 +1214,8 @@ const countries = [
|
|
|
1128
1214
|
continent: "Africa",
|
|
1129
1215
|
currency: "KES",
|
|
1130
1216
|
languages: ["Swahili", "English"],
|
|
1131
|
-
tld: ".ke"
|
|
1217
|
+
tld: ".ke",
|
|
1218
|
+
recognized: true
|
|
1132
1219
|
},
|
|
1133
1220
|
{
|
|
1134
1221
|
name: "Kiribati",
|
|
@@ -1141,7 +1228,8 @@ const countries = [
|
|
|
1141
1228
|
continent: "Oceania",
|
|
1142
1229
|
currency: "AUD",
|
|
1143
1230
|
languages: ["English", "Gilbertese"],
|
|
1144
|
-
tld: ".ki"
|
|
1231
|
+
tld: ".ki",
|
|
1232
|
+
recognized: true
|
|
1145
1233
|
},
|
|
1146
1234
|
{
|
|
1147
1235
|
name: "Kosovo",
|
|
@@ -1154,7 +1242,8 @@ const countries = [
|
|
|
1154
1242
|
continent: "Europe",
|
|
1155
1243
|
currency: "EUR",
|
|
1156
1244
|
languages: ["Albanian", "Serbian"],
|
|
1157
|
-
tld: ".xk"
|
|
1245
|
+
tld: ".xk",
|
|
1246
|
+
recognized: false
|
|
1158
1247
|
},
|
|
1159
1248
|
{
|
|
1160
1249
|
name: "Kuwait",
|
|
@@ -1167,7 +1256,8 @@ const countries = [
|
|
|
1167
1256
|
continent: "Asia",
|
|
1168
1257
|
currency: "KWD",
|
|
1169
1258
|
languages: ["Arabic"],
|
|
1170
|
-
tld: ".kw"
|
|
1259
|
+
tld: ".kw",
|
|
1260
|
+
recognized: true
|
|
1171
1261
|
},
|
|
1172
1262
|
{
|
|
1173
1263
|
name: "Kyrgyzstan",
|
|
@@ -1180,7 +1270,8 @@ const countries = [
|
|
|
1180
1270
|
continent: "Asia",
|
|
1181
1271
|
currency: "KGS",
|
|
1182
1272
|
languages: ["Kyrgyz", "Russian"],
|
|
1183
|
-
tld: ".kg"
|
|
1273
|
+
tld: ".kg",
|
|
1274
|
+
recognized: true
|
|
1184
1275
|
},
|
|
1185
1276
|
{
|
|
1186
1277
|
name: "Laos",
|
|
@@ -1193,7 +1284,8 @@ const countries = [
|
|
|
1193
1284
|
continent: "Asia",
|
|
1194
1285
|
currency: "LAK",
|
|
1195
1286
|
languages: ["Lao"],
|
|
1196
|
-
tld: ".la"
|
|
1287
|
+
tld: ".la",
|
|
1288
|
+
recognized: true
|
|
1197
1289
|
},
|
|
1198
1290
|
{
|
|
1199
1291
|
name: "Latvia",
|
|
@@ -1206,7 +1298,8 @@ const countries = [
|
|
|
1206
1298
|
continent: "Europe",
|
|
1207
1299
|
currency: "EUR",
|
|
1208
1300
|
languages: ["Latvian"],
|
|
1209
|
-
tld: ".lv"
|
|
1301
|
+
tld: ".lv",
|
|
1302
|
+
recognized: true
|
|
1210
1303
|
},
|
|
1211
1304
|
{
|
|
1212
1305
|
name: "Lebanon",
|
|
@@ -1219,7 +1312,8 @@ const countries = [
|
|
|
1219
1312
|
continent: "Asia",
|
|
1220
1313
|
currency: "LBP",
|
|
1221
1314
|
languages: ["Arabic", "French"],
|
|
1222
|
-
tld: ".lb"
|
|
1315
|
+
tld: ".lb",
|
|
1316
|
+
recognized: true
|
|
1223
1317
|
},
|
|
1224
1318
|
{
|
|
1225
1319
|
name: "Lesotho",
|
|
@@ -1232,7 +1326,8 @@ const countries = [
|
|
|
1232
1326
|
continent: "Africa",
|
|
1233
1327
|
currency: "LSL",
|
|
1234
1328
|
languages: ["Sesotho", "English"],
|
|
1235
|
-
tld: ".ls"
|
|
1329
|
+
tld: ".ls",
|
|
1330
|
+
recognized: true
|
|
1236
1331
|
},
|
|
1237
1332
|
{
|
|
1238
1333
|
name: "Liberia",
|
|
@@ -1245,7 +1340,8 @@ const countries = [
|
|
|
1245
1340
|
continent: "Africa",
|
|
1246
1341
|
currency: "LRD",
|
|
1247
1342
|
languages: ["English"],
|
|
1248
|
-
tld: ".lr"
|
|
1343
|
+
tld: ".lr",
|
|
1344
|
+
recognized: true
|
|
1249
1345
|
},
|
|
1250
1346
|
{
|
|
1251
1347
|
name: "Libya",
|
|
@@ -1258,7 +1354,8 @@ const countries = [
|
|
|
1258
1354
|
continent: "Africa",
|
|
1259
1355
|
currency: "LYD",
|
|
1260
1356
|
languages: ["Arabic"],
|
|
1261
|
-
tld: ".ly"
|
|
1357
|
+
tld: ".ly",
|
|
1358
|
+
recognized: true
|
|
1262
1359
|
},
|
|
1263
1360
|
{
|
|
1264
1361
|
name: "Liechtenstein",
|
|
@@ -1271,7 +1368,8 @@ const countries = [
|
|
|
1271
1368
|
continent: "Europe",
|
|
1272
1369
|
currency: "CHF",
|
|
1273
1370
|
languages: ["German"],
|
|
1274
|
-
tld: ".li"
|
|
1371
|
+
tld: ".li",
|
|
1372
|
+
recognized: true
|
|
1275
1373
|
},
|
|
1276
1374
|
{
|
|
1277
1375
|
name: "Lithuania",
|
|
@@ -1284,7 +1382,8 @@ const countries = [
|
|
|
1284
1382
|
continent: "Europe",
|
|
1285
1383
|
currency: "EUR",
|
|
1286
1384
|
languages: ["Lithuanian"],
|
|
1287
|
-
tld: ".lt"
|
|
1385
|
+
tld: ".lt",
|
|
1386
|
+
recognized: true
|
|
1288
1387
|
},
|
|
1289
1388
|
{
|
|
1290
1389
|
name: "Luxembourg",
|
|
@@ -1297,7 +1396,8 @@ const countries = [
|
|
|
1297
1396
|
continent: "Europe",
|
|
1298
1397
|
currency: "EUR",
|
|
1299
1398
|
languages: ["Luxembourgish", "French", "German"],
|
|
1300
|
-
tld: ".lu"
|
|
1399
|
+
tld: ".lu",
|
|
1400
|
+
recognized: true
|
|
1301
1401
|
},
|
|
1302
1402
|
{
|
|
1303
1403
|
name: "Madagascar",
|
|
@@ -1310,7 +1410,8 @@ const countries = [
|
|
|
1310
1410
|
continent: "Africa",
|
|
1311
1411
|
currency: "MGA",
|
|
1312
1412
|
languages: ["Malagasy", "French"],
|
|
1313
|
-
tld: ".mg"
|
|
1413
|
+
tld: ".mg",
|
|
1414
|
+
recognized: true
|
|
1314
1415
|
},
|
|
1315
1416
|
{
|
|
1316
1417
|
name: "Malawi",
|
|
@@ -1323,7 +1424,8 @@ const countries = [
|
|
|
1323
1424
|
continent: "Africa",
|
|
1324
1425
|
currency: "MWK",
|
|
1325
1426
|
languages: ["English", "Chichewa"],
|
|
1326
|
-
tld: ".mw"
|
|
1427
|
+
tld: ".mw",
|
|
1428
|
+
recognized: true
|
|
1327
1429
|
},
|
|
1328
1430
|
{
|
|
1329
1431
|
name: "Malaysia",
|
|
@@ -1336,7 +1438,8 @@ const countries = [
|
|
|
1336
1438
|
continent: "Asia",
|
|
1337
1439
|
currency: "MYR",
|
|
1338
1440
|
languages: ["Malay"],
|
|
1339
|
-
tld: ".my"
|
|
1441
|
+
tld: ".my",
|
|
1442
|
+
recognized: true
|
|
1340
1443
|
},
|
|
1341
1444
|
{
|
|
1342
1445
|
name: "Maldives",
|
|
@@ -1349,7 +1452,8 @@ const countries = [
|
|
|
1349
1452
|
continent: "Asia",
|
|
1350
1453
|
currency: "MVR",
|
|
1351
1454
|
languages: ["Dhivehi"],
|
|
1352
|
-
tld: ".mv"
|
|
1455
|
+
tld: ".mv",
|
|
1456
|
+
recognized: true
|
|
1353
1457
|
},
|
|
1354
1458
|
{
|
|
1355
1459
|
name: "Mali",
|
|
@@ -1362,7 +1466,8 @@ const countries = [
|
|
|
1362
1466
|
continent: "Africa",
|
|
1363
1467
|
currency: "XOF",
|
|
1364
1468
|
languages: ["French"],
|
|
1365
|
-
tld: ".ml"
|
|
1469
|
+
tld: ".ml",
|
|
1470
|
+
recognized: true
|
|
1366
1471
|
},
|
|
1367
1472
|
{
|
|
1368
1473
|
name: "Malta",
|
|
@@ -1375,7 +1480,8 @@ const countries = [
|
|
|
1375
1480
|
continent: "Europe",
|
|
1376
1481
|
currency: "EUR",
|
|
1377
1482
|
languages: ["Maltese", "English"],
|
|
1378
|
-
tld: ".mt"
|
|
1483
|
+
tld: ".mt",
|
|
1484
|
+
recognized: true
|
|
1379
1485
|
},
|
|
1380
1486
|
{
|
|
1381
1487
|
name: "Marshall Islands",
|
|
@@ -1388,7 +1494,8 @@ const countries = [
|
|
|
1388
1494
|
continent: "Oceania",
|
|
1389
1495
|
currency: "USD",
|
|
1390
1496
|
languages: ["Marshallese", "English"],
|
|
1391
|
-
tld: ".mh"
|
|
1497
|
+
tld: ".mh",
|
|
1498
|
+
recognized: true
|
|
1392
1499
|
},
|
|
1393
1500
|
{
|
|
1394
1501
|
name: "Mauritania",
|
|
@@ -1401,7 +1508,8 @@ const countries = [
|
|
|
1401
1508
|
continent: "Africa",
|
|
1402
1509
|
currency: "MRU",
|
|
1403
1510
|
languages: ["Arabic"],
|
|
1404
|
-
tld: ".mr"
|
|
1511
|
+
tld: ".mr",
|
|
1512
|
+
recognized: true
|
|
1405
1513
|
},
|
|
1406
1514
|
{
|
|
1407
1515
|
name: "Mauritius",
|
|
@@ -1414,7 +1522,8 @@ const countries = [
|
|
|
1414
1522
|
continent: "Africa",
|
|
1415
1523
|
currency: "MUR",
|
|
1416
1524
|
languages: ["English", "French"],
|
|
1417
|
-
tld: ".mu"
|
|
1525
|
+
tld: ".mu",
|
|
1526
|
+
recognized: true
|
|
1418
1527
|
},
|
|
1419
1528
|
{
|
|
1420
1529
|
name: "Mexico",
|
|
@@ -1427,7 +1536,8 @@ const countries = [
|
|
|
1427
1536
|
continent: "North America",
|
|
1428
1537
|
currency: "MXN",
|
|
1429
1538
|
languages: ["Spanish"],
|
|
1430
|
-
tld: ".mx"
|
|
1539
|
+
tld: ".mx",
|
|
1540
|
+
recognized: true
|
|
1431
1541
|
},
|
|
1432
1542
|
{
|
|
1433
1543
|
name: "Micronesia",
|
|
@@ -1440,7 +1550,8 @@ const countries = [
|
|
|
1440
1550
|
continent: "Oceania",
|
|
1441
1551
|
currency: "USD",
|
|
1442
1552
|
languages: ["English"],
|
|
1443
|
-
tld: ".fm"
|
|
1553
|
+
tld: ".fm",
|
|
1554
|
+
recognized: true
|
|
1444
1555
|
},
|
|
1445
1556
|
{
|
|
1446
1557
|
name: "Moldova",
|
|
@@ -1453,7 +1564,8 @@ const countries = [
|
|
|
1453
1564
|
continent: "Europe",
|
|
1454
1565
|
currency: "MDL",
|
|
1455
1566
|
languages: ["Romanian"],
|
|
1456
|
-
tld: ".md"
|
|
1567
|
+
tld: ".md",
|
|
1568
|
+
recognized: true
|
|
1457
1569
|
},
|
|
1458
1570
|
{
|
|
1459
1571
|
name: "Monaco",
|
|
@@ -1466,7 +1578,8 @@ const countries = [
|
|
|
1466
1578
|
continent: "Europe",
|
|
1467
1579
|
currency: "EUR",
|
|
1468
1580
|
languages: ["French"],
|
|
1469
|
-
tld: ".mc"
|
|
1581
|
+
tld: ".mc",
|
|
1582
|
+
recognized: true
|
|
1470
1583
|
},
|
|
1471
1584
|
{
|
|
1472
1585
|
name: "Mongolia",
|
|
@@ -1479,7 +1592,8 @@ const countries = [
|
|
|
1479
1592
|
continent: "Asia",
|
|
1480
1593
|
currency: "MNT",
|
|
1481
1594
|
languages: ["Mongolian"],
|
|
1482
|
-
tld: ".mn"
|
|
1595
|
+
tld: ".mn",
|
|
1596
|
+
recognized: true
|
|
1483
1597
|
},
|
|
1484
1598
|
{
|
|
1485
1599
|
name: "Montenegro",
|
|
@@ -1492,7 +1606,8 @@ const countries = [
|
|
|
1492
1606
|
continent: "Europe",
|
|
1493
1607
|
currency: "EUR",
|
|
1494
1608
|
languages: ["Montenegrin"],
|
|
1495
|
-
tld: ".me"
|
|
1609
|
+
tld: ".me",
|
|
1610
|
+
recognized: true
|
|
1496
1611
|
},
|
|
1497
1612
|
{
|
|
1498
1613
|
name: "Morocco",
|
|
@@ -1505,7 +1620,8 @@ const countries = [
|
|
|
1505
1620
|
continent: "Africa",
|
|
1506
1621
|
currency: "MAD",
|
|
1507
1622
|
languages: ["Arabic", "Tamazight"],
|
|
1508
|
-
tld: ".ma"
|
|
1623
|
+
tld: ".ma",
|
|
1624
|
+
recognized: true
|
|
1509
1625
|
},
|
|
1510
1626
|
{
|
|
1511
1627
|
name: "Mozambique",
|
|
@@ -1518,7 +1634,8 @@ const countries = [
|
|
|
1518
1634
|
continent: "Africa",
|
|
1519
1635
|
currency: "MZN",
|
|
1520
1636
|
languages: ["Portuguese"],
|
|
1521
|
-
tld: ".mz"
|
|
1637
|
+
tld: ".mz",
|
|
1638
|
+
recognized: true
|
|
1522
1639
|
},
|
|
1523
1640
|
{
|
|
1524
1641
|
name: "Myanmar",
|
|
@@ -1531,7 +1648,8 @@ const countries = [
|
|
|
1531
1648
|
continent: "Asia",
|
|
1532
1649
|
currency: "MMK",
|
|
1533
1650
|
languages: ["Burmese"],
|
|
1534
|
-
tld: ".mm"
|
|
1651
|
+
tld: ".mm",
|
|
1652
|
+
recognized: true
|
|
1535
1653
|
},
|
|
1536
1654
|
{
|
|
1537
1655
|
name: "Nagorno-Karabakh",
|
|
@@ -1543,7 +1661,8 @@ const countries = [
|
|
|
1543
1661
|
capital: "Stepanakert",
|
|
1544
1662
|
continent: "Asia",
|
|
1545
1663
|
currency: "AMD",
|
|
1546
|
-
languages: ["Armenian"]
|
|
1664
|
+
languages: ["Armenian"],
|
|
1665
|
+
recognized: false
|
|
1547
1666
|
},
|
|
1548
1667
|
{
|
|
1549
1668
|
name: "Namibia",
|
|
@@ -1556,7 +1675,8 @@ const countries = [
|
|
|
1556
1675
|
continent: "Africa",
|
|
1557
1676
|
currency: "NAD",
|
|
1558
1677
|
languages: ["English"],
|
|
1559
|
-
tld: ".na"
|
|
1678
|
+
tld: ".na",
|
|
1679
|
+
recognized: true
|
|
1560
1680
|
},
|
|
1561
1681
|
{
|
|
1562
1682
|
name: "Nauru",
|
|
@@ -1569,7 +1689,8 @@ const countries = [
|
|
|
1569
1689
|
continent: "Oceania",
|
|
1570
1690
|
currency: "AUD",
|
|
1571
1691
|
languages: ["Nauruan", "English"],
|
|
1572
|
-
tld: ".nr"
|
|
1692
|
+
tld: ".nr",
|
|
1693
|
+
recognized: true
|
|
1573
1694
|
},
|
|
1574
1695
|
{
|
|
1575
1696
|
name: "Nepal",
|
|
@@ -1582,7 +1703,8 @@ const countries = [
|
|
|
1582
1703
|
continent: "Asia",
|
|
1583
1704
|
currency: "NPR",
|
|
1584
1705
|
languages: ["Nepali"],
|
|
1585
|
-
tld: ".np"
|
|
1706
|
+
tld: ".np",
|
|
1707
|
+
recognized: true
|
|
1586
1708
|
},
|
|
1587
1709
|
{
|
|
1588
1710
|
name: "Netherlands",
|
|
@@ -1595,7 +1717,8 @@ const countries = [
|
|
|
1595
1717
|
continent: "Europe",
|
|
1596
1718
|
currency: "EUR",
|
|
1597
1719
|
languages: ["Dutch"],
|
|
1598
|
-
tld: ".nl"
|
|
1720
|
+
tld: ".nl",
|
|
1721
|
+
recognized: true
|
|
1599
1722
|
},
|
|
1600
1723
|
{
|
|
1601
1724
|
name: "New Zealand",
|
|
@@ -1608,7 +1731,8 @@ const countries = [
|
|
|
1608
1731
|
continent: "Oceania",
|
|
1609
1732
|
currency: "NZD",
|
|
1610
1733
|
languages: ["English", "Māori"],
|
|
1611
|
-
tld: ".nz"
|
|
1734
|
+
tld: ".nz",
|
|
1735
|
+
recognized: true
|
|
1612
1736
|
},
|
|
1613
1737
|
{
|
|
1614
1738
|
name: "Nicaragua",
|
|
@@ -1621,7 +1745,8 @@ const countries = [
|
|
|
1621
1745
|
continent: "North America",
|
|
1622
1746
|
currency: "NIO",
|
|
1623
1747
|
languages: ["Spanish"],
|
|
1624
|
-
tld: ".ni"
|
|
1748
|
+
tld: ".ni",
|
|
1749
|
+
recognized: true
|
|
1625
1750
|
},
|
|
1626
1751
|
{
|
|
1627
1752
|
name: "Niger",
|
|
@@ -1634,7 +1759,8 @@ const countries = [
|
|
|
1634
1759
|
continent: "Africa",
|
|
1635
1760
|
currency: "XOF",
|
|
1636
1761
|
languages: ["French"],
|
|
1637
|
-
tld: ".ne"
|
|
1762
|
+
tld: ".ne",
|
|
1763
|
+
recognized: true
|
|
1638
1764
|
},
|
|
1639
1765
|
{
|
|
1640
1766
|
name: "Nigeria",
|
|
@@ -1647,7 +1773,8 @@ const countries = [
|
|
|
1647
1773
|
continent: "Africa",
|
|
1648
1774
|
currency: "NGN",
|
|
1649
1775
|
languages: ["English"],
|
|
1650
|
-
tld: ".ng"
|
|
1776
|
+
tld: ".ng",
|
|
1777
|
+
recognized: true
|
|
1651
1778
|
},
|
|
1652
1779
|
{
|
|
1653
1780
|
name: "North Korea",
|
|
@@ -1660,7 +1787,8 @@ const countries = [
|
|
|
1660
1787
|
continent: "Asia",
|
|
1661
1788
|
currency: "KPW",
|
|
1662
1789
|
languages: ["Korean"],
|
|
1663
|
-
tld: ".kp"
|
|
1790
|
+
tld: ".kp",
|
|
1791
|
+
recognized: true
|
|
1664
1792
|
},
|
|
1665
1793
|
{
|
|
1666
1794
|
name: "North Macedonia",
|
|
@@ -1673,7 +1801,8 @@ const countries = [
|
|
|
1673
1801
|
continent: "Europe",
|
|
1674
1802
|
currency: "MKD",
|
|
1675
1803
|
languages: ["Macedonian", "Albanian"],
|
|
1676
|
-
tld: ".mk"
|
|
1804
|
+
tld: ".mk",
|
|
1805
|
+
recognized: true
|
|
1677
1806
|
},
|
|
1678
1807
|
{
|
|
1679
1808
|
name: "Norway",
|
|
@@ -1686,7 +1815,8 @@ const countries = [
|
|
|
1686
1815
|
continent: "Europe",
|
|
1687
1816
|
currency: "NOK",
|
|
1688
1817
|
languages: ["Norwegian"],
|
|
1689
|
-
tld: ".no"
|
|
1818
|
+
tld: ".no",
|
|
1819
|
+
recognized: true
|
|
1690
1820
|
},
|
|
1691
1821
|
{
|
|
1692
1822
|
name: "Oman",
|
|
@@ -1699,7 +1829,8 @@ const countries = [
|
|
|
1699
1829
|
continent: "Asia",
|
|
1700
1830
|
currency: "OMR",
|
|
1701
1831
|
languages: ["Arabic"],
|
|
1702
|
-
tld: ".om"
|
|
1832
|
+
tld: ".om",
|
|
1833
|
+
recognized: true
|
|
1703
1834
|
},
|
|
1704
1835
|
{
|
|
1705
1836
|
name: "Pakistan",
|
|
@@ -1712,7 +1843,8 @@ const countries = [
|
|
|
1712
1843
|
continent: "Asia",
|
|
1713
1844
|
currency: "PKR",
|
|
1714
1845
|
languages: ["Urdu", "English"],
|
|
1715
|
-
tld: ".pk"
|
|
1846
|
+
tld: ".pk",
|
|
1847
|
+
recognized: true
|
|
1716
1848
|
},
|
|
1717
1849
|
{
|
|
1718
1850
|
name: "Palau",
|
|
@@ -1725,7 +1857,8 @@ const countries = [
|
|
|
1725
1857
|
continent: "Oceania",
|
|
1726
1858
|
currency: "USD",
|
|
1727
1859
|
languages: ["Palauan", "English"],
|
|
1728
|
-
tld: ".pw"
|
|
1860
|
+
tld: ".pw",
|
|
1861
|
+
recognized: true
|
|
1729
1862
|
},
|
|
1730
1863
|
{
|
|
1731
1864
|
name: "Palestine",
|
|
@@ -1738,7 +1871,8 @@ const countries = [
|
|
|
1738
1871
|
continent: "Asia",
|
|
1739
1872
|
currency: "ILS",
|
|
1740
1873
|
languages: ["Arabic"],
|
|
1741
|
-
tld: ".ps"
|
|
1874
|
+
tld: ".ps",
|
|
1875
|
+
recognized: true
|
|
1742
1876
|
},
|
|
1743
1877
|
{
|
|
1744
1878
|
name: "Panama",
|
|
@@ -1751,7 +1885,8 @@ const countries = [
|
|
|
1751
1885
|
continent: "North America",
|
|
1752
1886
|
currency: "PAB",
|
|
1753
1887
|
languages: ["Spanish"],
|
|
1754
|
-
tld: ".pa"
|
|
1888
|
+
tld: ".pa",
|
|
1889
|
+
recognized: true
|
|
1755
1890
|
},
|
|
1756
1891
|
{
|
|
1757
1892
|
name: "Papua New Guinea",
|
|
@@ -1764,7 +1899,8 @@ const countries = [
|
|
|
1764
1899
|
continent: "Oceania",
|
|
1765
1900
|
currency: "PGK",
|
|
1766
1901
|
languages: ["English", "Tok Pisin"],
|
|
1767
|
-
tld: ".pg"
|
|
1902
|
+
tld: ".pg",
|
|
1903
|
+
recognized: true
|
|
1768
1904
|
},
|
|
1769
1905
|
{
|
|
1770
1906
|
name: "Paraguay",
|
|
@@ -1777,7 +1913,8 @@ const countries = [
|
|
|
1777
1913
|
continent: "South America",
|
|
1778
1914
|
currency: "PYG",
|
|
1779
1915
|
languages: ["Spanish", "Guaraní"],
|
|
1780
|
-
tld: ".py"
|
|
1916
|
+
tld: ".py",
|
|
1917
|
+
recognized: true
|
|
1781
1918
|
},
|
|
1782
1919
|
{
|
|
1783
1920
|
name: "Peru",
|
|
@@ -1790,7 +1927,8 @@ const countries = [
|
|
|
1790
1927
|
continent: "South America",
|
|
1791
1928
|
currency: "PEN",
|
|
1792
1929
|
languages: ["Spanish", "Quechua", "Aymara"],
|
|
1793
|
-
tld: ".pe"
|
|
1930
|
+
tld: ".pe",
|
|
1931
|
+
recognized: true
|
|
1794
1932
|
},
|
|
1795
1933
|
{
|
|
1796
1934
|
name: "Philippines",
|
|
@@ -1803,7 +1941,8 @@ const countries = [
|
|
|
1803
1941
|
continent: "Asia",
|
|
1804
1942
|
currency: "PHP",
|
|
1805
1943
|
languages: ["Filipino", "English"],
|
|
1806
|
-
tld: ".ph"
|
|
1944
|
+
tld: ".ph",
|
|
1945
|
+
recognized: true
|
|
1807
1946
|
},
|
|
1808
1947
|
{
|
|
1809
1948
|
name: "Poland",
|
|
@@ -1816,7 +1955,8 @@ const countries = [
|
|
|
1816
1955
|
continent: "Europe",
|
|
1817
1956
|
currency: "PLN",
|
|
1818
1957
|
languages: ["Polish"],
|
|
1819
|
-
tld: ".pl"
|
|
1958
|
+
tld: ".pl",
|
|
1959
|
+
recognized: true
|
|
1820
1960
|
},
|
|
1821
1961
|
{
|
|
1822
1962
|
name: "Portugal",
|
|
@@ -1829,7 +1969,8 @@ const countries = [
|
|
|
1829
1969
|
continent: "Europe",
|
|
1830
1970
|
currency: "EUR",
|
|
1831
1971
|
languages: ["Portuguese"],
|
|
1832
|
-
tld: ".pt"
|
|
1972
|
+
tld: ".pt",
|
|
1973
|
+
recognized: true
|
|
1833
1974
|
},
|
|
1834
1975
|
{
|
|
1835
1976
|
name: "Qatar",
|
|
@@ -1842,7 +1983,8 @@ const countries = [
|
|
|
1842
1983
|
continent: "Asia",
|
|
1843
1984
|
currency: "QAR",
|
|
1844
1985
|
languages: ["Arabic"],
|
|
1845
|
-
tld: ".qa"
|
|
1986
|
+
tld: ".qa",
|
|
1987
|
+
recognized: true
|
|
1846
1988
|
},
|
|
1847
1989
|
{
|
|
1848
1990
|
name: "Romania",
|
|
@@ -1855,7 +1997,8 @@ const countries = [
|
|
|
1855
1997
|
continent: "Europe",
|
|
1856
1998
|
currency: "RON",
|
|
1857
1999
|
languages: ["Romanian"],
|
|
1858
|
-
tld: ".ro"
|
|
2000
|
+
tld: ".ro",
|
|
2001
|
+
recognized: true
|
|
1859
2002
|
},
|
|
1860
2003
|
{
|
|
1861
2004
|
name: "Russia",
|
|
@@ -1868,7 +2011,8 @@ const countries = [
|
|
|
1868
2011
|
continent: "Europe",
|
|
1869
2012
|
currency: "RUB",
|
|
1870
2013
|
languages: ["Russian"],
|
|
1871
|
-
tld: ".ru"
|
|
2014
|
+
tld: ".ru",
|
|
2015
|
+
recognized: true
|
|
1872
2016
|
},
|
|
1873
2017
|
{
|
|
1874
2018
|
name: "Rwanda",
|
|
@@ -1881,7 +2025,8 @@ const countries = [
|
|
|
1881
2025
|
continent: "Africa",
|
|
1882
2026
|
currency: "RWF",
|
|
1883
2027
|
languages: ["Kinyarwanda", "French", "English"],
|
|
1884
|
-
tld: ".rw"
|
|
2028
|
+
tld: ".rw",
|
|
2029
|
+
recognized: true
|
|
1885
2030
|
},
|
|
1886
2031
|
{
|
|
1887
2032
|
name: "Saint Kitts and Nevis",
|
|
@@ -1894,7 +2039,8 @@ const countries = [
|
|
|
1894
2039
|
continent: "North America",
|
|
1895
2040
|
currency: "XCD",
|
|
1896
2041
|
languages: ["English"],
|
|
1897
|
-
tld: ".kn"
|
|
2042
|
+
tld: ".kn",
|
|
2043
|
+
recognized: true
|
|
1898
2044
|
},
|
|
1899
2045
|
{
|
|
1900
2046
|
name: "Saint Lucia",
|
|
@@ -1907,7 +2053,8 @@ const countries = [
|
|
|
1907
2053
|
continent: "North America",
|
|
1908
2054
|
currency: "XCD",
|
|
1909
2055
|
languages: ["English"],
|
|
1910
|
-
tld: ".lc"
|
|
2056
|
+
tld: ".lc",
|
|
2057
|
+
recognized: true
|
|
1911
2058
|
},
|
|
1912
2059
|
{
|
|
1913
2060
|
name: "Saint Vincent and the Grenadines",
|
|
@@ -1920,7 +2067,8 @@ const countries = [
|
|
|
1920
2067
|
continent: "North America",
|
|
1921
2068
|
currency: "XCD",
|
|
1922
2069
|
languages: ["English"],
|
|
1923
|
-
tld: ".vc"
|
|
2070
|
+
tld: ".vc",
|
|
2071
|
+
recognized: true
|
|
1924
2072
|
},
|
|
1925
2073
|
{
|
|
1926
2074
|
name: "Samoa",
|
|
@@ -1933,7 +2081,8 @@ const countries = [
|
|
|
1933
2081
|
continent: "Oceania",
|
|
1934
2082
|
currency: "WST",
|
|
1935
2083
|
languages: ["Samoan", "English"],
|
|
1936
|
-
tld: ".ws"
|
|
2084
|
+
tld: ".ws",
|
|
2085
|
+
recognized: true
|
|
1937
2086
|
},
|
|
1938
2087
|
{
|
|
1939
2088
|
name: "San Marino",
|
|
@@ -1946,7 +2095,8 @@ const countries = [
|
|
|
1946
2095
|
continent: "Europe",
|
|
1947
2096
|
currency: "EUR",
|
|
1948
2097
|
languages: ["Italian"],
|
|
1949
|
-
tld: ".sm"
|
|
2098
|
+
tld: ".sm",
|
|
2099
|
+
recognized: true
|
|
1950
2100
|
},
|
|
1951
2101
|
{
|
|
1952
2102
|
name: "São Tomé and Príncipe",
|
|
@@ -1959,7 +2109,8 @@ const countries = [
|
|
|
1959
2109
|
continent: "Africa",
|
|
1960
2110
|
currency: "STN",
|
|
1961
2111
|
languages: ["Portuguese"],
|
|
1962
|
-
tld: ".st"
|
|
2112
|
+
tld: ".st",
|
|
2113
|
+
recognized: true
|
|
1963
2114
|
},
|
|
1964
2115
|
{
|
|
1965
2116
|
name: "Saudi Arabia",
|
|
@@ -1972,7 +2123,8 @@ const countries = [
|
|
|
1972
2123
|
continent: "Asia",
|
|
1973
2124
|
currency: "SAR",
|
|
1974
2125
|
languages: ["Arabic"],
|
|
1975
|
-
tld: ".sa"
|
|
2126
|
+
tld: ".sa",
|
|
2127
|
+
recognized: true
|
|
1976
2128
|
},
|
|
1977
2129
|
{
|
|
1978
2130
|
name: "Senegal",
|
|
@@ -1985,7 +2137,8 @@ const countries = [
|
|
|
1985
2137
|
continent: "Africa",
|
|
1986
2138
|
currency: "XOF",
|
|
1987
2139
|
languages: ["French"],
|
|
1988
|
-
tld: ".sn"
|
|
2140
|
+
tld: ".sn",
|
|
2141
|
+
recognized: true
|
|
1989
2142
|
},
|
|
1990
2143
|
{
|
|
1991
2144
|
name: "Serbia",
|
|
@@ -1998,7 +2151,8 @@ const countries = [
|
|
|
1998
2151
|
continent: "Europe",
|
|
1999
2152
|
currency: "RSD",
|
|
2000
2153
|
languages: ["Serbian"],
|
|
2001
|
-
tld: ".rs"
|
|
2154
|
+
tld: ".rs",
|
|
2155
|
+
recognized: true
|
|
2002
2156
|
},
|
|
2003
2157
|
{
|
|
2004
2158
|
name: "Seychelles",
|
|
@@ -2011,7 +2165,8 @@ const countries = [
|
|
|
2011
2165
|
continent: "Africa",
|
|
2012
2166
|
currency: "SCR",
|
|
2013
2167
|
languages: ["Seychellois Creole", "English", "French"],
|
|
2014
|
-
tld: ".sc"
|
|
2168
|
+
tld: ".sc",
|
|
2169
|
+
recognized: true
|
|
2015
2170
|
},
|
|
2016
2171
|
{
|
|
2017
2172
|
name: "Sierra Leone",
|
|
@@ -2024,7 +2179,8 @@ const countries = [
|
|
|
2024
2179
|
continent: "Africa",
|
|
2025
2180
|
currency: "SLL",
|
|
2026
2181
|
languages: ["English"],
|
|
2027
|
-
tld: ".sl"
|
|
2182
|
+
tld: ".sl",
|
|
2183
|
+
recognized: true
|
|
2028
2184
|
},
|
|
2029
2185
|
{
|
|
2030
2186
|
name: "Singapore",
|
|
@@ -2037,7 +2193,8 @@ const countries = [
|
|
|
2037
2193
|
continent: "Asia",
|
|
2038
2194
|
currency: "SGD",
|
|
2039
2195
|
languages: ["English", "Malay", "Mandarin", "Tamil"],
|
|
2040
|
-
tld: ".sg"
|
|
2196
|
+
tld: ".sg",
|
|
2197
|
+
recognized: true
|
|
2041
2198
|
},
|
|
2042
2199
|
{
|
|
2043
2200
|
name: "Slovakia",
|
|
@@ -2050,7 +2207,8 @@ const countries = [
|
|
|
2050
2207
|
continent: "Europe",
|
|
2051
2208
|
currency: "EUR",
|
|
2052
2209
|
languages: ["Slovak"],
|
|
2053
|
-
tld: ".sk"
|
|
2210
|
+
tld: ".sk",
|
|
2211
|
+
recognized: true
|
|
2054
2212
|
},
|
|
2055
2213
|
{
|
|
2056
2214
|
name: "Slovenia",
|
|
@@ -2063,7 +2221,8 @@ const countries = [
|
|
|
2063
2221
|
continent: "Europe",
|
|
2064
2222
|
currency: "EUR",
|
|
2065
2223
|
languages: ["Slovenian"],
|
|
2066
|
-
tld: ".si"
|
|
2224
|
+
tld: ".si",
|
|
2225
|
+
recognized: true
|
|
2067
2226
|
},
|
|
2068
2227
|
{
|
|
2069
2228
|
name: "Solomon Islands",
|
|
@@ -2076,7 +2235,8 @@ const countries = [
|
|
|
2076
2235
|
continent: "Oceania",
|
|
2077
2236
|
currency: "SBD",
|
|
2078
2237
|
languages: ["English"],
|
|
2079
|
-
tld: ".sb"
|
|
2238
|
+
tld: ".sb",
|
|
2239
|
+
recognized: true
|
|
2080
2240
|
},
|
|
2081
2241
|
{
|
|
2082
2242
|
name: "Somalia",
|
|
@@ -2089,7 +2249,8 @@ const countries = [
|
|
|
2089
2249
|
continent: "Africa",
|
|
2090
2250
|
currency: "SOS",
|
|
2091
2251
|
languages: ["Somali", "Arabic"],
|
|
2092
|
-
tld: ".so"
|
|
2252
|
+
tld: ".so",
|
|
2253
|
+
recognized: true
|
|
2093
2254
|
},
|
|
2094
2255
|
{
|
|
2095
2256
|
name: "South Africa",
|
|
@@ -2102,7 +2263,8 @@ const countries = [
|
|
|
2102
2263
|
continent: "Africa",
|
|
2103
2264
|
currency: "ZAR",
|
|
2104
2265
|
languages: ["Zulu", "Xhosa", "Afrikaans", "English"],
|
|
2105
|
-
tld: ".za"
|
|
2266
|
+
tld: ".za",
|
|
2267
|
+
recognized: true
|
|
2106
2268
|
},
|
|
2107
2269
|
{
|
|
2108
2270
|
name: "South Korea",
|
|
@@ -2115,7 +2277,8 @@ const countries = [
|
|
|
2115
2277
|
continent: "Asia",
|
|
2116
2278
|
currency: "KRW",
|
|
2117
2279
|
languages: ["Korean"],
|
|
2118
|
-
tld: ".kr"
|
|
2280
|
+
tld: ".kr",
|
|
2281
|
+
recognized: true
|
|
2119
2282
|
},
|
|
2120
2283
|
{
|
|
2121
2284
|
name: "South Sudan",
|
|
@@ -2128,7 +2291,8 @@ const countries = [
|
|
|
2128
2291
|
continent: "Africa",
|
|
2129
2292
|
currency: "SSP",
|
|
2130
2293
|
languages: ["English"],
|
|
2131
|
-
tld: ".ss"
|
|
2294
|
+
tld: ".ss",
|
|
2295
|
+
recognized: true
|
|
2132
2296
|
},
|
|
2133
2297
|
{
|
|
2134
2298
|
name: "Spain",
|
|
@@ -2141,7 +2305,8 @@ const countries = [
|
|
|
2141
2305
|
continent: "Europe",
|
|
2142
2306
|
currency: "EUR",
|
|
2143
2307
|
languages: ["Spanish"],
|
|
2144
|
-
tld: ".es"
|
|
2308
|
+
tld: ".es",
|
|
2309
|
+
recognized: true
|
|
2145
2310
|
},
|
|
2146
2311
|
{
|
|
2147
2312
|
name: "Sri Lanka",
|
|
@@ -2154,7 +2319,8 @@ const countries = [
|
|
|
2154
2319
|
continent: "Asia",
|
|
2155
2320
|
currency: "LKR",
|
|
2156
2321
|
languages: ["Sinhala", "Tamil"],
|
|
2157
|
-
tld: ".lk"
|
|
2322
|
+
tld: ".lk",
|
|
2323
|
+
recognized: true
|
|
2158
2324
|
},
|
|
2159
2325
|
{
|
|
2160
2326
|
name: "Sudan",
|
|
@@ -2167,7 +2333,8 @@ const countries = [
|
|
|
2167
2333
|
continent: "Africa",
|
|
2168
2334
|
currency: "SDG",
|
|
2169
2335
|
languages: ["Arabic", "English"],
|
|
2170
|
-
tld: ".sd"
|
|
2336
|
+
tld: ".sd",
|
|
2337
|
+
recognized: true
|
|
2171
2338
|
},
|
|
2172
2339
|
{
|
|
2173
2340
|
name: "Suriname",
|
|
@@ -2180,7 +2347,8 @@ const countries = [
|
|
|
2180
2347
|
continent: "South America",
|
|
2181
2348
|
currency: "SRD",
|
|
2182
2349
|
languages: ["Dutch"],
|
|
2183
|
-
tld: ".sr"
|
|
2350
|
+
tld: ".sr",
|
|
2351
|
+
recognized: true
|
|
2184
2352
|
},
|
|
2185
2353
|
{
|
|
2186
2354
|
name: "Sweden",
|
|
@@ -2193,7 +2361,8 @@ const countries = [
|
|
|
2193
2361
|
continent: "Europe",
|
|
2194
2362
|
currency: "SEK",
|
|
2195
2363
|
languages: ["Swedish"],
|
|
2196
|
-
tld: ".se"
|
|
2364
|
+
tld: ".se",
|
|
2365
|
+
recognized: true
|
|
2197
2366
|
},
|
|
2198
2367
|
{
|
|
2199
2368
|
name: "Switzerland",
|
|
@@ -2206,7 +2375,8 @@ const countries = [
|
|
|
2206
2375
|
continent: "Europe",
|
|
2207
2376
|
currency: "CHF",
|
|
2208
2377
|
languages: ["German", "French", "Italian", "Romansh"],
|
|
2209
|
-
tld: ".ch"
|
|
2378
|
+
tld: ".ch",
|
|
2379
|
+
recognized: true
|
|
2210
2380
|
},
|
|
2211
2381
|
{
|
|
2212
2382
|
name: "Syria",
|
|
@@ -2219,7 +2389,8 @@ const countries = [
|
|
|
2219
2389
|
continent: "Asia",
|
|
2220
2390
|
currency: "SYP",
|
|
2221
2391
|
languages: ["Arabic"],
|
|
2222
|
-
tld: ".sy"
|
|
2392
|
+
tld: ".sy",
|
|
2393
|
+
recognized: true
|
|
2223
2394
|
},
|
|
2224
2395
|
{
|
|
2225
2396
|
name: "Taiwan",
|
|
@@ -2232,7 +2403,8 @@ const countries = [
|
|
|
2232
2403
|
continent: "Asia",
|
|
2233
2404
|
currency: "TWD",
|
|
2234
2405
|
languages: ["Mandarin"],
|
|
2235
|
-
tld: ".tw"
|
|
2406
|
+
tld: ".tw",
|
|
2407
|
+
recognized: true
|
|
2236
2408
|
},
|
|
2237
2409
|
{
|
|
2238
2410
|
name: "Tajikistan",
|
|
@@ -2245,7 +2417,8 @@ const countries = [
|
|
|
2245
2417
|
continent: "Asia",
|
|
2246
2418
|
currency: "TJS",
|
|
2247
2419
|
languages: ["Tajik"],
|
|
2248
|
-
tld: ".tj"
|
|
2420
|
+
tld: ".tj",
|
|
2421
|
+
recognized: true
|
|
2249
2422
|
},
|
|
2250
2423
|
{
|
|
2251
2424
|
name: "Tanzania",
|
|
@@ -2258,7 +2431,8 @@ const countries = [
|
|
|
2258
2431
|
continent: "Africa",
|
|
2259
2432
|
currency: "TZS",
|
|
2260
2433
|
languages: ["Swahili", "English"],
|
|
2261
|
-
tld: ".tz"
|
|
2434
|
+
tld: ".tz",
|
|
2435
|
+
recognized: true
|
|
2262
2436
|
},
|
|
2263
2437
|
{
|
|
2264
2438
|
name: "Thailand",
|
|
@@ -2271,7 +2445,8 @@ const countries = [
|
|
|
2271
2445
|
continent: "Asia",
|
|
2272
2446
|
currency: "THB",
|
|
2273
2447
|
languages: ["Thai"],
|
|
2274
|
-
tld: ".th"
|
|
2448
|
+
tld: ".th",
|
|
2449
|
+
recognized: true
|
|
2275
2450
|
},
|
|
2276
2451
|
{
|
|
2277
2452
|
name: "Timor-Leste",
|
|
@@ -2284,7 +2459,8 @@ const countries = [
|
|
|
2284
2459
|
continent: "Asia",
|
|
2285
2460
|
currency: "USD",
|
|
2286
2461
|
languages: ["Portuguese", "Tetum"],
|
|
2287
|
-
tld: ".tl"
|
|
2462
|
+
tld: ".tl",
|
|
2463
|
+
recognized: true
|
|
2288
2464
|
},
|
|
2289
2465
|
{
|
|
2290
2466
|
name: "Togo",
|
|
@@ -2297,7 +2473,8 @@ const countries = [
|
|
|
2297
2473
|
continent: "Africa",
|
|
2298
2474
|
currency: "XOF",
|
|
2299
2475
|
languages: ["French"],
|
|
2300
|
-
tld: ".tg"
|
|
2476
|
+
tld: ".tg",
|
|
2477
|
+
recognized: true
|
|
2301
2478
|
},
|
|
2302
2479
|
{
|
|
2303
2480
|
name: "Tonga",
|
|
@@ -2310,7 +2487,8 @@ const countries = [
|
|
|
2310
2487
|
continent: "Oceania",
|
|
2311
2488
|
currency: "TOP",
|
|
2312
2489
|
languages: ["Tongan", "English"],
|
|
2313
|
-
tld: ".to"
|
|
2490
|
+
tld: ".to",
|
|
2491
|
+
recognized: true
|
|
2314
2492
|
},
|
|
2315
2493
|
{
|
|
2316
2494
|
name: "Trinidad and Tobago",
|
|
@@ -2323,7 +2501,8 @@ const countries = [
|
|
|
2323
2501
|
continent: "North America",
|
|
2324
2502
|
currency: "TTD",
|
|
2325
2503
|
languages: ["English"],
|
|
2326
|
-
tld: ".tt"
|
|
2504
|
+
tld: ".tt",
|
|
2505
|
+
recognized: true
|
|
2327
2506
|
},
|
|
2328
2507
|
{
|
|
2329
2508
|
name: "Tunisia",
|
|
@@ -2336,7 +2515,8 @@ const countries = [
|
|
|
2336
2515
|
continent: "Africa",
|
|
2337
2516
|
currency: "TND",
|
|
2338
2517
|
languages: ["Arabic"],
|
|
2339
|
-
tld: ".tn"
|
|
2518
|
+
tld: ".tn",
|
|
2519
|
+
recognized: true
|
|
2340
2520
|
},
|
|
2341
2521
|
{
|
|
2342
2522
|
name: "Turkey",
|
|
@@ -2349,7 +2529,8 @@ const countries = [
|
|
|
2349
2529
|
continent: "Asia",
|
|
2350
2530
|
currency: "TRY",
|
|
2351
2531
|
languages: ["Turkish"],
|
|
2352
|
-
tld: ".tr"
|
|
2532
|
+
tld: ".tr",
|
|
2533
|
+
recognized: true
|
|
2353
2534
|
},
|
|
2354
2535
|
{
|
|
2355
2536
|
name: "Turkmenistan",
|
|
@@ -2362,7 +2543,8 @@ const countries = [
|
|
|
2362
2543
|
continent: "Asia",
|
|
2363
2544
|
currency: "TMT",
|
|
2364
2545
|
languages: ["Turkmen"],
|
|
2365
|
-
tld: ".tm"
|
|
2546
|
+
tld: ".tm",
|
|
2547
|
+
recognized: true
|
|
2366
2548
|
},
|
|
2367
2549
|
{
|
|
2368
2550
|
name: "Tuvalu",
|
|
@@ -2375,7 +2557,8 @@ const countries = [
|
|
|
2375
2557
|
continent: "Oceania",
|
|
2376
2558
|
currency: "AUD",
|
|
2377
2559
|
languages: ["Tuvaluan", "English"],
|
|
2378
|
-
tld: ".tv"
|
|
2560
|
+
tld: ".tv",
|
|
2561
|
+
recognized: true
|
|
2379
2562
|
},
|
|
2380
2563
|
{
|
|
2381
2564
|
name: "Uganda",
|
|
@@ -2388,7 +2571,8 @@ const countries = [
|
|
|
2388
2571
|
continent: "Africa",
|
|
2389
2572
|
currency: "UGX",
|
|
2390
2573
|
languages: ["English", "Swahili"],
|
|
2391
|
-
tld: ".ug"
|
|
2574
|
+
tld: ".ug",
|
|
2575
|
+
recognized: true
|
|
2392
2576
|
},
|
|
2393
2577
|
{
|
|
2394
2578
|
name: "Ukraine",
|
|
@@ -2401,7 +2585,8 @@ const countries = [
|
|
|
2401
2585
|
continent: "Europe",
|
|
2402
2586
|
currency: "UAH",
|
|
2403
2587
|
languages: ["Ukrainian"],
|
|
2404
|
-
tld: ".ua"
|
|
2588
|
+
tld: ".ua",
|
|
2589
|
+
recognized: true
|
|
2405
2590
|
},
|
|
2406
2591
|
{
|
|
2407
2592
|
name: "United Arab Emirates",
|
|
@@ -2414,7 +2599,8 @@ const countries = [
|
|
|
2414
2599
|
continent: "Asia",
|
|
2415
2600
|
currency: "AED",
|
|
2416
2601
|
languages: ["Arabic"],
|
|
2417
|
-
tld: ".ae"
|
|
2602
|
+
tld: ".ae",
|
|
2603
|
+
recognized: true
|
|
2418
2604
|
},
|
|
2419
2605
|
{
|
|
2420
2606
|
name: "United Kingdom",
|
|
@@ -2427,7 +2613,8 @@ const countries = [
|
|
|
2427
2613
|
continent: "Europe",
|
|
2428
2614
|
currency: "GBP",
|
|
2429
2615
|
languages: ["English"],
|
|
2430
|
-
tld: ".uk"
|
|
2616
|
+
tld: ".uk",
|
|
2617
|
+
recognized: true
|
|
2431
2618
|
},
|
|
2432
2619
|
{
|
|
2433
2620
|
name: "United States",
|
|
@@ -2440,7 +2627,8 @@ const countries = [
|
|
|
2440
2627
|
continent: "North America",
|
|
2441
2628
|
currency: "USD",
|
|
2442
2629
|
languages: ["English"],
|
|
2443
|
-
tld: ".us"
|
|
2630
|
+
tld: ".us",
|
|
2631
|
+
recognized: true
|
|
2444
2632
|
},
|
|
2445
2633
|
{
|
|
2446
2634
|
name: "Uruguay",
|
|
@@ -2453,7 +2641,8 @@ const countries = [
|
|
|
2453
2641
|
continent: "South America",
|
|
2454
2642
|
currency: "UYU",
|
|
2455
2643
|
languages: ["Spanish"],
|
|
2456
|
-
tld: ".uy"
|
|
2644
|
+
tld: ".uy",
|
|
2645
|
+
recognized: true
|
|
2457
2646
|
},
|
|
2458
2647
|
{
|
|
2459
2648
|
name: "Uzbekistan",
|
|
@@ -2466,7 +2655,8 @@ const countries = [
|
|
|
2466
2655
|
continent: "Asia",
|
|
2467
2656
|
currency: "UZS",
|
|
2468
2657
|
languages: ["Uzbek"],
|
|
2469
|
-
tld: ".uz"
|
|
2658
|
+
tld: ".uz",
|
|
2659
|
+
recognized: true
|
|
2470
2660
|
},
|
|
2471
2661
|
{
|
|
2472
2662
|
name: "Vanuatu",
|
|
@@ -2479,7 +2669,8 @@ const countries = [
|
|
|
2479
2669
|
continent: "Oceania",
|
|
2480
2670
|
currency: "VUV",
|
|
2481
2671
|
languages: ["Bislama", "English", "French"],
|
|
2482
|
-
tld: ".vu"
|
|
2672
|
+
tld: ".vu",
|
|
2673
|
+
recognized: true
|
|
2483
2674
|
},
|
|
2484
2675
|
{
|
|
2485
2676
|
name: "Vatican City",
|
|
@@ -2492,7 +2683,8 @@ const countries = [
|
|
|
2492
2683
|
continent: "Europe",
|
|
2493
2684
|
currency: "EUR",
|
|
2494
2685
|
languages: ["Italian", "Latin"],
|
|
2495
|
-
tld: ".va"
|
|
2686
|
+
tld: ".va",
|
|
2687
|
+
recognized: true
|
|
2496
2688
|
},
|
|
2497
2689
|
{
|
|
2498
2690
|
name: "Venezuela",
|
|
@@ -2505,7 +2697,8 @@ const countries = [
|
|
|
2505
2697
|
continent: "South America",
|
|
2506
2698
|
currency: "VES",
|
|
2507
2699
|
languages: ["Spanish"],
|
|
2508
|
-
tld: ".ve"
|
|
2700
|
+
tld: ".ve",
|
|
2701
|
+
recognized: true
|
|
2509
2702
|
},
|
|
2510
2703
|
{
|
|
2511
2704
|
name: "Vietnam",
|
|
@@ -2518,7 +2711,8 @@ const countries = [
|
|
|
2518
2711
|
continent: "Asia",
|
|
2519
2712
|
currency: "VND",
|
|
2520
2713
|
languages: ["Vietnamese"],
|
|
2521
|
-
tld: ".vn"
|
|
2714
|
+
tld: ".vn",
|
|
2715
|
+
recognized: true
|
|
2522
2716
|
},
|
|
2523
2717
|
{
|
|
2524
2718
|
name: "Yemen",
|
|
@@ -2531,7 +2725,8 @@ const countries = [
|
|
|
2531
2725
|
continent: "Asia",
|
|
2532
2726
|
currency: "YER",
|
|
2533
2727
|
languages: ["Arabic"],
|
|
2534
|
-
tld: ".ye"
|
|
2728
|
+
tld: ".ye",
|
|
2729
|
+
recognized: true
|
|
2535
2730
|
},
|
|
2536
2731
|
{
|
|
2537
2732
|
name: "Zambia",
|
|
@@ -2544,7 +2739,8 @@ const countries = [
|
|
|
2544
2739
|
continent: "Africa",
|
|
2545
2740
|
currency: "ZMW",
|
|
2546
2741
|
languages: ["English"],
|
|
2547
|
-
tld: ".zm"
|
|
2742
|
+
tld: ".zm",
|
|
2743
|
+
recognized: true
|
|
2548
2744
|
},
|
|
2549
2745
|
{
|
|
2550
2746
|
name: "Zimbabwe",
|
|
@@ -2557,7 +2753,8 @@ const countries = [
|
|
|
2557
2753
|
continent: "Africa",
|
|
2558
2754
|
currency: "ZWL",
|
|
2559
2755
|
languages: ["English", "Shona", "Ndebele"],
|
|
2560
|
-
tld: ".zw"
|
|
2756
|
+
tld: ".zw",
|
|
2757
|
+
recognized: true
|
|
2561
2758
|
}
|
|
2562
2759
|
];
|
|
2563
2760
|
function getCountryByCode(code) {
|
|
@@ -2572,6 +2769,9 @@ function getCountryFlag(alpha2) {
|
|
|
2572
2769
|
const OFFSET = 127397;
|
|
2573
2770
|
return [...alpha2.toUpperCase()].map((char) => String.fromCodePoint(char.charCodeAt(0) + OFFSET)).join("");
|
|
2574
2771
|
}
|
|
2772
|
+
function getRecognizedCountries() {
|
|
2773
|
+
return countries.filter((c) => c.recognized);
|
|
2774
|
+
}
|
|
2575
2775
|
const phoneCountryCodes = [
|
|
2576
2776
|
...countries.map((country) => ({
|
|
2577
2777
|
country: country.name,
|
|
@@ -4933,6 +5133,7 @@ export {
|
|
|
4933
5133
|
getLandlockedCountries,
|
|
4934
5134
|
getNeighbors,
|
|
4935
5135
|
getPhoneCodeByCountry,
|
|
5136
|
+
getRecognizedCountries,
|
|
4936
5137
|
getSimilarFlags,
|
|
4937
5138
|
getStateByCode,
|
|
4938
5139
|
getStatesByCountry,
|