-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcountries.ts
More file actions
3215 lines (3213 loc) · 85.5 KB
/
Copy pathcountries.ts
File metadata and controls
3215 lines (3213 loc) · 85.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Country lookup table.
*
* Records are derived from UN M49 and ISO 3166-1. `aliases` holds additional lowercase
* forms — historical names (Burma, Persia, Ceylon), common alternates (Ivory
* Coast, Czech Republic), and native-language variants — that resolve to the
* record's iso3 alongside the canonical `name`. Input is trimmed and lowercased
* before lookup, then matched exactly against the alias index; partial / fuzzy
* matching is not supported.
*
* The aliases below have been deliberately canonicalized: Latin and Arabic
* diacritics are stripped, apostrophes / periods / parens / commas removed,
* hyphens replaced with spaces, and `st` expanded to `saint`. This is
* intentional — `lookupAlpha3` applies the same `sanitize` transform to user
* input at lookup time, so accented / punctuated forms (e.g. "Côte d'Ivoire",
* "U.K.", "Guinea-Bissau", "St. Kitts") still resolve. Storing the canonical
* form keeps the alias list smaller and avoids redundant variants. Don't add
* accented or punctuated variants by hand.
*
* Aliases within each record are sorted with `Intl.Collator("en")` so emoji come first, then
* Latin (with `æ` / `ø` interleaved next to ASCII), then non-Latin scripts.
*
* To add custom records (private codes for sub-national regions, historical
* countries, disputed areas, etc.), don't edit this file — pass your own
* records to `createLookup` from `./index` and use the returned scoped helpers.
*/
export interface CountryRecord {
/** ISO 3166-1 alpha-3 code; canonical id returned by `lookupAlpha3`. */
readonly iso3: string;
/** ISO 3166-1 alpha-2 code. May be blank on user-assigned records passed to `createLookup`. */
readonly iso2: string;
/**
* UN M49 numeric code, 3-digit zero-padded string (e.g. "004" for Afghanistan).
* May be blank on user-assigned records passed to `createLookup`.
*/
readonly m49: string;
/** English short name as it appears in the UN M49. */
readonly name: string;
/**
* Additional lowercase forms (excluding the canonical `name`) that resolve
* to this record's iso3. These are **match keys**, not display strings:
* stored lowercased and in sanitized form (no diacritics, apostrophes,
* `.` `()` `,` `[]`; hyphens turned into spaces; `st` expanded to `saint`;
* no leading `the`). `lookupAlpha3` applies the same `sanitize` transform
* to user input before matching, so accented or punctuated variants would
* be redundant — and adding them by hand will trip the duplicate-detection
* check. Consumers reading this field (e.g. `lookup("FRA")?.aliases`) get
* the raw match-key strings, not human-readable display names.
*/
readonly aliases: readonly string[];
}
export const COUNTRIES: ReadonlyArray<CountryRecord> = [
{
iso3: "ABW",
iso2: "AW",
m49: "533",
name: "Aruba",
aliases: ["🇦🇼", "country of aruba", "land aruba", "pais aruba"],
},
{
iso3: "AFG",
iso2: "AF",
m49: "004",
name: "Afghanistan",
aliases: [
"🇦🇫",
"affghanistan",
"affghanisthan",
"affghaunistan",
"afghania",
"afghanisthan",
"afghaunistan",
"afghaunistaun",
"afgoniston",
"de afghanistan islami jumhuriyat",
"owganystan",
"афғонистон",
"أفغانستان",
"افغانستان",
"د افغانستان اسلامی جمهوریت",
],
},
{
iso3: "AGO",
iso2: "AO",
m49: "024",
name: "Angola",
aliases: ["🇦🇴", "republic of angola", "republica de angola"],
},
{
iso3: "AIA",
iso2: "AI",
m49: "660",
name: "Anguilla",
aliases: ["🇦🇮", "malliouhana"],
},
{
iso3: "ALA",
iso2: "AX",
m49: "248",
name: "Åland Islands",
aliases: [
"🇦🇽",
"aaland",
"aaland islands",
"ahvenanmaa",
"aland",
"aland isles",
"aland region",
"alands lan",
"landskapet aland",
],
},
{
iso3: "ALB",
iso2: "AL",
m49: "008",
name: "Albania",
aliases: [
"🇦🇱",
"peoples republic of albania",
"peoples socialist republic of albania",
"republic of albania",
"republika e shqiperise",
"shqiperi",
"shqiperia",
"shqiperise",
"socialist republic of albania",
],
},
{
iso3: "AND",
iso2: "AD",
m49: "020",
name: "Andorra",
aliases: [
"🇦🇩",
"el pais dels pirineus",
"les valls dandorra",
"principality of andorra",
"principality of the valleys of andorra",
"principat dandorra",
"valls dandorra",
],
},
{
iso3: "ARE",
iso2: "AE",
m49: "784",
name: "United Arab Emirates",
aliases: [
"🇦🇪",
"emirates",
"uae",
"الإمارات",
"الإمارات العربية المتحدة",
"الامارات",
"الامارات العربية المتحدة",
"دولة الإمارات العربية المتحدة",
],
},
{
iso3: "ARG",
iso2: "AR",
m49: "032",
name: "Argentina",
aliases: ["🇦🇷", "argentine republic", "nacion argentina", "republic of argentina", "republica argentina"],
},
{
iso3: "ARM",
iso2: "AM",
m49: "051",
name: "Armenia",
aliases: [
"🇦🇲",
"hayastan",
"hayastani hanrapetutyun",
"republic of armenia",
"հայաստան",
"հայաստանի հանրապետություն",
"հայք",
"հհ",
],
},
{
iso3: "ASM",
iso2: "AS",
m49: "016",
name: "American Samoa",
aliases: [
"🇦🇸",
"amerika samoa",
"east samoa",
"samoa american",
"samoa united states",
"territory of american samoa",
"us samoa",
],
},
{
iso3: "ATA",
iso2: "AQ",
m49: "010",
name: "Antarctica",
aliases: ["🇦🇶", "antarctica treaty area"],
},
{
iso3: "ATF",
iso2: "TF",
m49: "260",
name: "French Southern Territories",
aliases: [
"🇹🇫",
"taaf",
"terres australes et antarctiques francaises",
"terres australes francaises",
"terres australes francaises les",
"territoire des terres australes et antarctiques francaises",
],
},
{
iso3: "ATG",
iso2: "AG",
m49: "028",
name: "Antigua and Barbuda",
aliases: ["🇦🇬", "antigua", "antigua barbuda", "barbuda"],
},
{
iso3: "AUS",
iso2: "AU",
m49: "036",
name: "Australia",
aliases: ["🇦🇺", "commonwealth of australia", "new holland", "new hollandia", "nova hollandia"],
},
{
iso3: "AUT",
iso2: "AT",
m49: "040",
name: "Austria",
aliases: ["🇦🇹", "osterreich", "republic of austria", "republik osterreich", "zweite republik"],
},
{
iso3: "AZE",
iso2: "AZ",
m49: "031",
name: "Azerbaijan",
aliases: ["🇦🇿", "azərbaycan", "azərbaycan respublikası", "republic of azerbaijan"],
},
{
iso3: "BDI",
iso2: "BI",
m49: "108",
name: "Burundi",
aliases: [
"🇧🇮",
"gouvernement du burundi",
"la republique du burundi",
"republic of burundi",
"republika yu burundi",
"republika yuburundi",
"republique du burundi",
"repuburika yuburundi",
"uburundi",
],
},
{
iso3: "BEL",
iso2: "BE",
m49: "056",
name: "Belgium",
aliases: [
"🇧🇪",
"belg",
"belgie",
"belgien",
"belgique",
"kingdom of belgium",
"konigreich belgien",
"koninkrijk belgie",
"royaume de belgique",
],
},
{
iso3: "BEN",
iso2: "BJ",
m49: "204",
name: "Benin",
aliases: ["🇧🇯", "dahomey", "la republique du benin", "republic of benin", "republique du benin"],
},
{
iso3: "BES",
iso2: "BQ",
m49: "535",
name: "Bonaire, Sint Eustatius and Saba",
aliases: [
"🇧🇶",
"bes eilanden",
"bes islands",
"bijzondere gemeente",
"bonaire",
"bonaire saint eustatius and saba",
"bonaire sint eustatius en saba",
"caraibisch nederland",
"caribbean netherlands",
"caribisch nederland",
"hulanda karibense",
"islanan bes",
"netherlands antilles",
"saba",
"sint eustatius",
],
},
{
iso3: "BFA",
iso2: "BF",
m49: "854",
name: "Burkina Faso",
aliases: ["🇧🇫", "republic of burkina faso", "republic of upper volta"],
},
{
iso3: "BGD",
iso2: "BD",
m49: "050",
name: "Bangladesh",
aliases: [
"🇧🇩",
"bangla desh",
"gonaoprojatontri bangladesh",
"peoples republic of bangladesh",
"গণপ্রজাতন্ত্রী বাংলাদেশ",
"বাংলা দেশ",
"বাংলাদেশ",
"বিডি",
],
},
{
iso3: "BGR",
iso2: "BG",
m49: "100",
name: "Bulgaria",
aliases: [
"🇧🇬",
"bulgarian republic",
"republic of bulgaria",
"republika bulgaria",
"republika bulgariya",
"бг",
"българия",
"република българия",
],
},
{
iso3: "BHR",
iso2: "BH",
m49: "048",
name: "Bahrain",
aliases: ["🇧🇭", "bahrein islands", "kingdom of bahrain", "البحرين", "دولة البحرين", "مملكة البحرين"],
},
{
iso3: "BHS",
iso2: "BS",
m49: "044",
name: "Bahamas",
aliases: ["🇧🇸", "bahama islands", "bahamas the", "commonwealth of the bahamas"],
},
{
iso3: "BIH",
iso2: "BA",
m49: "070",
name: "Bosnia and Herzegovina",
aliases: [
"🇧🇦",
"bosna",
"bosna i hercegovina",
"bosnia",
"bosnia and hercegovina",
"bosnia herzegovina",
"hercegovina",
"herzegovina",
"бих",
"босна",
"босна и херцеговина",
"бх",
],
},
{
iso3: "BLM",
iso2: "BL",
m49: "652",
name: "Saint Barthélemy",
aliases: [
"🇧🇱",
"collectivite doutre mer de saint barthelemy",
"collectivite territoriale de saint barthelemy",
"collectivity of saint barthelemy",
"saint barth",
"saint barths",
"saint barts",
"saint bartz",
],
},
{
iso3: "BLR",
iso2: "BY",
m49: "112",
name: "Belarus",
aliases: [
"🇧🇾",
"republic of belarus",
"respublika belarus",
"respublika byelarus",
"беларуская рэспубліка",
"беларусь",
"белая русь",
"белоруссия",
"рб",
"республика беларусь",
"рэспубліка беларусь",
],
},
{
iso3: "BLZ",
iso2: "BZ",
m49: "084",
name: "Belize",
aliases: ["🇧🇿"],
},
{
iso3: "BMU",
iso2: "BM",
m49: "060",
name: "Bermuda",
aliases: [
"🇧🇲",
"barmuda",
"barmuda i",
"barmuda isl",
"barmuda islands",
"barmudas",
"bermoothes",
"bermuda islands",
"bermudas",
"bermudian islands",
"colony of bermuda",
"devils isles",
"isle of devils",
"somers islands",
"somers isles",
"summers isles",
"territory of bermuda",
"virgineola",
],
},
{
iso3: "BOL",
iso2: "BO",
m49: "068",
name: "Bolivia (Plurinational State of)",
aliases: [
"🇧🇴",
"bolivia",
"bulibiya",
"estado plurinacional de bolivia",
"plurinational state of bolivia",
"puliwya",
"republic of bolivia",
"republica de bolivia",
"volivia",
"wuliwiya",
"wuliwya",
],
},
{
iso3: "BRA",
iso2: "BR",
m49: "076",
name: "Brazil",
aliases: ["🇧🇷", "brasil", "federative republic of brazil", "pindorama", "republica federativa do brasil"],
},
{
iso3: "BRB",
iso2: "BB",
m49: "052",
name: "Barbados",
aliases: ["🇧🇧", "barbadoes"],
},
{
iso3: "BRN",
iso2: "BN",
m49: "096",
name: "Brunei Darussalam",
aliases: ["🇧🇳", "brunei", "nation of brunei the abode of peace", "negara brunei darussalam"],
},
{
iso3: "BTN",
iso2: "BT",
m49: "064",
name: "Bhutan",
aliases: ["🇧🇹", "kingdom of bhutan", "འབྲུག", "འབྲུག་ཡུལ་", "འབྲུགཡུལ་་"],
},
{
iso3: "BVT",
iso2: "BV",
m49: "074",
name: "Bouvet Island",
aliases: ["🇧🇻"],
},
{
iso3: "BWA",
iso2: "BW",
m49: "072",
name: "Botswana",
aliases: ["🇧🇼", "lefatshe la botswana", "republic of botswana"],
},
{
iso3: "CAF",
iso2: "CF",
m49: "140",
name: "Central African Republic",
aliases: [
"🇨🇫",
"centrafricaine republique",
"centrafrique",
"central africa",
"kodorosese ti beafrika",
"la republique",
"rep centrafrique",
"republique centrafricaine",
],
},
{
iso3: "CAN",
iso2: "CA",
m49: "124",
name: "Canada",
aliases: ["🇨🇦", "le canada"],
},
{
iso3: "CCK",
iso2: "CC",
m49: "166",
name: "Cocos (Keeling) Islands",
aliases: ["🇨🇨", "cocos islands", "keeling islands", "territory of the cocos keeling islands"],
},
{
iso3: "CHE",
iso2: "CH",
m49: "756",
name: "Switzerland",
aliases: [
"🇨🇭",
"confederation helvetique",
"confederation suisse",
"confederazione elvetica",
"confederazione svizzera",
"confederaziun svizra",
"confoederatio helvetica",
"confœderatio helvetica",
"eidgenossenschaft",
"elvezia",
"helvetie",
"la confederation suisse",
"schweiz",
"schweizerische eidgenossenschaft",
"suisse",
"svizra",
"svizzera",
"swiss",
"swiss confederation",
],
},
{
iso3: "CHL",
iso2: "CL",
m49: "152",
name: "Chile",
aliases: ["🇨🇱", "republic of chile", "republica de chile"],
},
{
iso3: "CHN",
iso2: "CN",
m49: "156",
name: "China",
aliases: ["🇨🇳", "china pr", "peoples republic of china", "pr china", "prc", "中华人民共和国", "中国"],
},
{
iso3: "CIV",
iso2: "CI",
m49: "384",
name: "Côte d'Ivoire",
aliases: [
"🇨🇮",
"cote ivoire",
"ivory coast",
"republic of cote divoire",
"republic of ivory coast",
"republic of the ivory coast",
"republique de cote divoire",
],
},
{
iso3: "CMR",
iso2: "CM",
m49: "120",
name: "Cameroon",
aliases: ["🇨🇲", "cameroun", "la republique du cameroun", "republic of cameroon", "republique du cameroun"],
},
{
iso3: "COD",
iso2: "CD",
m49: "180",
name: "Democratic Republic of the Congo",
aliases: [
"🇨🇩",
"congo belge",
"congo democratic republic of the",
"congo kinshasa",
"dem rep congo",
"dem republic of congo",
"dem republic of the congo",
"democratic republic of congo",
"dr congo",
"rd congo",
"rep demcongo",
"republic of the congo",
"republique democratique du congo",
"republique du zaire",
"zaire",
],
},
{
iso3: "COG",
iso2: "CG",
m49: "178",
name: "Congo",
aliases: [
"🇨🇬",
"congo brazza",
"congo brazzaville",
"congo republic",
"rep congo",
"republic of congo",
"republique du congo",
],
},
{
iso3: "COK",
iso2: "CK",
m49: "184",
name: "Cook Islands",
aliases: ["🇨🇰", "cook group", "hervey islands"],
},
{
iso3: "COL",
iso2: "CO",
m49: "170",
name: "Colombia",
aliases: ["🇨🇴", "republic of colombia", "republica de colombia"],
},
{
iso3: "COM",
iso2: "KM",
m49: "174",
name: "Comoros",
aliases: [
"🇰🇲",
"comores",
"comores archipel",
"etat comorien",
"lunion des comores",
"republique des comores",
"republique federale et islamique des comores",
"republique federale islamique des comores",
"territoire des comores",
"union des comores",
"union of the comoros",
"إتحاد القمر",
"اتحاد جزر القمر",
"الاتحاد القمري",
"القمر",
"جزر القمر",
"جمهورية القمر المتحدة",
"جمهورية جزر القمر الاتحادية الإسلامية",
"جمهورية جزرالقمر المتحدة",
],
},
{
iso3: "CPV",
iso2: "CV",
m49: "132",
name: "Cabo Verde",
aliases: [
"🇨🇻",
"cape verde",
"cape verde islands",
"kab verd",
"kabu verdi",
"kauberdi",
"republic of cabo verde",
"republic of cape verde",
"republica de cabo verde",
],
},
{
iso3: "CRI",
iso2: "CR",
m49: "188",
name: "Costa Rica",
aliases: ["🇨🇷", "republic of costa rica", "republica de costa rica"],
},
{
iso3: "CUB",
iso2: "CU",
m49: "192",
name: "Cuba",
aliases: ["🇨🇺", "isla juana", "republic of cuba", "republica de cuba"],
},
{
iso3: "CUW",
iso2: "CW",
m49: "531",
name: "Curaçao",
aliases: [
"🇨🇼",
"corsou",
"corsouw",
"corsow",
"country of curacao",
"curacau",
"curacoa",
"curazao",
"curaςao",
"curocao",
"island territory of curacao",
"korsou",
"land curacao",
"pais korsou",
],
},
{
iso3: "CXR",
iso2: "CX",
m49: "162",
name: "Christmas Island",
aliases: [
"🇨🇽",
"christmas island other territories",
"christmas island other territories australia",
"territory of christmas island",
],
},
{
iso3: "CYM",
iso2: "KY",
m49: "136",
name: "Cayman Islands",
aliases: ["🇰🇾", "caymans"],
},
{
iso3: "CYP",
iso2: "CY",
m49: "196",
name: "Cyprus",
aliases: [
"🇨🇾",
"greek administration of southern cyprus",
"greek cypriot state",
"guney kıbrıs",
"guney kıbrıs rum cumhuriyeti",
"guney kıbrıs rum kesimi",
"guney kıbrıs rum yonetimi",
"kipriaki dhimokratia",
"kıbrıs",
"kıbrıs cumhuriyeti",
"kıbrıs rum kesimi",
"kypriaki dimokratia",
"kypros",
"republic of cyprus",
"κυπριακη δημοκρατια",
"κυπρος",
],
},
{
iso3: "CZE",
iso2: "CZ",
m49: "203",
name: "Czechia",
aliases: ["🇨🇿", "ceska republika", "ceske kraje", "ceske uzemi", "ceske zeme", "cesko", "cr", "czech republic"],
},
{
iso3: "DEU",
iso2: "DE",
m49: "276",
name: "Germany",
aliases: [
"🇩🇪",
"br deutschland",
"bundesrepublik",
"bundesrepublik deutschland",
"deutschland",
"federal republic of germany",
],
},
{
iso3: "DJI",
iso2: "DJ",
m49: "262",
name: "Djibouti",
aliases: [
"🇩🇯",
"la republique de djibouti",
"republic of djibouti",
"republique de djibouti",
"جمهورية جيبوتي",
"جيبوتي",
],
},
{
iso3: "DMA",
iso2: "DM",
m49: "212",
name: "Dominica",
aliases: ["🇩🇲", "commonwealth of dominica", "island of dominica", "waitu kubuli"],
},
{
iso3: "DNK",
iso2: "DK",
m49: "208",
name: "Denmark",
aliases: ["🇩🇰", "dania", "danmark", "denmark proper", "kongeriget danmark", "metropolitan denmark"],
},
{
iso3: "DOM",
iso2: "DO",
m49: "214",
name: "Dominican Republic",
aliases: [
"🇩🇴",
"dominicana",
"domrep",
"haiti espanol",
"quisqueya",
"republica de santo domingo",
"republica dominicana",
"santo domingo",
],
},
{
iso3: "DZA",
iso2: "DZ",
m49: "012",
name: "Algeria",
aliases: [
"🇩🇿",
"peoples democratic republic of algeria",
"الجزائر",
"الجزاير",
"الجمهورية الجزائرية الديمقراطية الشعبية",
"الدزاير",
"دزاير",
],
},
{
iso3: "ECU",
iso2: "EC",
m49: "218",
name: "Ecuador",
aliases: [
"🇪🇨",
"ecuadorian state",
"el ecuador",
"estado ecuatoriano",
"republic of ecuador",
"republic of equator",
"republic of the equator",
"republica del ecuador",
],
},
{
iso3: "EGY",
iso2: "EG",
m49: "818",
name: "Egypt",
aliases: [
"🇪🇬",
"arab rep egypt",
"arab republic of egypt",
"rep egypt",
"republic of egypt",
"جمهورية مصر العربية",
"مصر",
],
},
{
iso3: "ERI",
iso2: "ER",
m49: "232",
name: "Eritrea",
aliases: [
"🇪🇷",
"ertra",
"hagere ertra",
"hagere iertra",
"iertra",
"iritriya",
"state of eritrea",
"إرتريا",
"إريتريا",
"ارتريا",
"ارتيريا",
"اريتريا",
"دولة إرتريا",
"دولة إريتريا",
"ሃገረ ኤርትራ",
"ኤርትራ",
],
},
{
iso3: "ESH",
iso2: "EH",
m49: "732",
name: "Western Sahara",
aliases: ["🇪🇭", "southern provinces", "spanish sahara", "west sahara"],
},
{
iso3: "ESP",
iso2: "ES",
m49: "724",
name: "Spain",
aliases: ["🇪🇸", "espana", "estado espanol", "kingdom of spain", "reino de espana"],
},
{
iso3: "EST",
iso2: "EE",
m49: "233",
name: "Estonia",
aliases: [
"🇪🇪",
"eesti",
"eesti noukogude sotsialistlik vabariik",
"eesti vabariik",
"estland",
"republic of estonia",
],
},
{
iso3: "ETH",
iso2: "ET",
m49: "231",
name: "Ethiopia",
aliases: [
"🇪🇹",
"federal democratic republic of ethiopia",
"ityopiya",
"yeityopiya federalawi demokrasiyawi ripeblik",
"yeityopiya hizbawi dimokrasiyawi ripublik",
"ኢትዮጵያ",
"የኢትዮጵያ ፌዴራላዊ ዴሞክራሲያዊ ሪፐብሊክ",
],
},
{
iso3: "FIN",
iso2: "FI",
m49: "246",
name: "Finland",
aliases: ["🇫🇮", "republic of finland", "republiken finland", "suomen tasavalta", "suomi"],
},
{
iso3: "FJI",
iso2: "FJ",
m49: "242",
name: "Fiji",
aliases: [
"🇫🇯",
"fiji ganarajya",
"matanitu ko viti",
"matanitu tugalala o viti",
"republic of fiji",
"republic of the fiji islands",
"viti",
],
},
{
iso3: "FLK",
iso2: "FK",
m49: "238",
name: "Falkland Islands (Malvinas)",
aliases: [
"🇫🇰",
"colony of the falkland islands",
"falkland islands",
"falklands",
"islas malvinas",
"malvinas",
"malvinas islands",
],
},
{