-
Notifications
You must be signed in to change notification settings - Fork 0
/
countries.json
18806 lines (18806 loc) · 694 KB
/
countries.json
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
[
{
"name": {
"common": "Aruba",
"official": "Aruba",
"native": {
"nld": { "official": "Aruba", "common": "Aruba" },
"pap": { "official": "Aruba", "common": "Aruba" }
}
},
"tld": [".aw"],
"cca2": "AW",
"ccn3": "533",
"cca3": "ABW",
"cioc": "ARU",
"independent": false,
"status": "officially-assigned",
"currencies": { "AWG": { "name": "Aruban florin", "symbol": "ƒ" } },
"idd": { "root": "+2", "suffixes": ["97"] },
"capital": ["Oranjestad"],
"altSpellings": ["AW"],
"region": "Americas",
"subregion": "Caribbean",
"languages": { "nld": "Dutch", "pap": "Papiamento" },
"translations": {
"ces": { "official": "Aruba", "common": "Aruba" },
"deu": { "official": "Aruba", "common": "Aruba" },
"est": { "official": "Aruba", "common": "Aruba" },
"fin": { "official": "Aruba", "common": "Aruba" },
"fra": { "official": "Aruba", "common": "Aruba" },
"hrv": { "official": "Aruba", "common": "Aruba" },
"hun": { "official": "Aruba", "common": "Aruba" },
"ita": { "official": "Aruba", "common": "Aruba" },
"jpn": { "official": "アルバ", "common": "アルバ" },
"kor": { "official": "아루바", "common": "아루바" },
"nld": { "official": "Aruba", "common": "Aruba" },
"per": { "official": "آروبا", "common": "آروبا" },
"pol": { "official": "Aruba", "common": "Aruba" },
"por": { "official": "Aruba", "common": "Aruba" },
"rus": { "official": "Аруба", "common": "Аруба" },
"slk": { "official": "Aruba", "common": "Aruba" },
"spa": { "official": "Aruba", "common": "Aruba" },
"urd": { "official": "اروبا", "common": "اروبا" },
"zho": { "official": "阿鲁巴", "common": "阿鲁巴" }
},
"latlng": [12.5, -69.96666666],
"landlocked": false,
"borders": [],
"area": 180,
"flag": "🇦🇼",
"demonyms": {
"eng": { "f": "Aruban", "m": "Aruban" },
"fra": { "f": "Arubaise", "m": "Arubais" }
},
"callingCodes": ["+297"]
},
{
"name": {
"common": "Afghanistan",
"official": "Islamic Republic of Afghanistan",
"native": {
"prs": { "official": "جمهوری اسلامی افغانستان", "common": "افغانستان" },
"pus": {
"official": "د افغانستان اسلامي جمهوریت",
"common": "افغانستان"
},
"tuk": {
"official": "Owganystan Yslam Respublikasy",
"common": "Owganystan"
}
}
},
"tld": [".af"],
"cca2": "AF",
"ccn3": "004",
"cca3": "AFG",
"cioc": "AFG",
"independent": true,
"status": "officially-assigned",
"currencies": { "AFN": { "name": "Afghan afghani", "symbol": "؋" } },
"idd": { "root": "+9", "suffixes": ["3"] },
"capital": ["Kabul"],
"altSpellings": ["AF", "Afġānistān"],
"region": "Asia",
"subregion": "Southern Asia",
"languages": { "prs": "Dari", "pus": "Pashto", "tuk": "Turkmen" },
"translations": {
"ces": {
"official": "Afghánská islámská republika",
"common": "Afghánistán"
},
"cym": {
"official": "Gweriniaeth Islamaidd Affganistan",
"common": "Affganistan"
},
"deu": {
"official": "Islamische Republik Afghanistan",
"common": "Afghanistan"
},
"est": {
"official": "Afganistani Islamivabariik",
"common": "Afganistan"
},
"fin": {
"official": "Afganistanin islamilainen tasavalta",
"common": "Afganistan"
},
"fra": {
"official": "République islamique d'Afghanistan",
"common": "Afghanistan"
},
"hrv": {
"official": "Islamska Republika Afganistan",
"common": "Afganistan"
},
"hun": {
"official": "Afganisztáni Iszlám Köztársaság",
"common": "Afganisztán"
},
"ita": {
"official": "Repubblica islamica dell'Afghanistan",
"common": "Afghanistan"
},
"jpn": {
"official": "アフガニスタン·イスラム共和国",
"common": "アフガニスタン"
},
"kor": {
"official": "아프가니스탄 이슬람 공화국",
"common": "아프가니스탄"
},
"nld": {
"official": "Islamitische Republiek Afghanistan",
"common": "Afghanistan"
},
"per": { "official": "جمهوری اسلامی افغانستان", "common": "افغانستان" },
"pol": {
"official": "Islamska Republika Afganistanu",
"common": "Afganistan"
},
"por": {
"official": "República Islâmica do Afeganistão",
"common": "Afeganistão"
},
"rus": {
"official": "Исламская Республика Афганистан",
"common": "Афганистан"
},
"slk": { "official": "Afgánsky islamský štát", "common": "Afganistan" },
"spa": {
"official": "República Islámica de Afganistán",
"common": "Afganistán"
},
"urd": { "official": "اسلامی جمہوریہ افغانستان", "common": "افغانستان" },
"zho": { "official": "阿富汗伊斯兰共和国", "common": "阿富汗" }
},
"latlng": [33, 65],
"landlocked": true,
"borders": ["IRN", "PAK", "TKM", "UZB", "TJK", "CHN"],
"area": 652230,
"flag": "🇦🇫",
"demonyms": {
"eng": { "f": "Afghan", "m": "Afghan" },
"fra": { "f": "Afghane", "m": "Afghan" }
},
"callingCodes": ["+93"]
},
{
"name": {
"common": "Angola",
"official": "Republic of Angola",
"native": {
"por": { "official": "República de Angola", "common": "Angola" }
}
},
"tld": [".ao"],
"cca2": "AO",
"ccn3": "024",
"cca3": "AGO",
"cioc": "ANG",
"independent": true,
"status": "officially-assigned",
"currencies": { "AOA": { "name": "Angolan kwanza", "symbol": "Kz" } },
"idd": { "root": "+2", "suffixes": ["44"] },
"capital": ["Luanda"],
"altSpellings": ["AO", "República de Angola", "ʁɛpublika de an'ɡɔla"],
"region": "Africa",
"subregion": "Middle Africa",
"languages": { "por": "Portuguese" },
"translations": {
"ces": { "official": "Angolská republika", "common": "Angola" },
"cym": { "official": "Gweriniaeth Angola", "common": "Angola" },
"deu": { "official": "Republik Angola", "common": "Angola" },
"est": { "official": "Angola Vabariik", "common": "Angola" },
"fin": { "official": "Angolan tasavalta", "common": "Angola" },
"fra": { "official": "République d'Angola", "common": "Angola" },
"hrv": { "official": "Republika Angola", "common": "Angola" },
"hun": { "official": "Angola", "common": "Angola" },
"ita": { "official": "Repubblica dell'Angola", "common": "Angola" },
"jpn": { "official": "アンゴラ共和国", "common": "アンゴラ" },
"kor": { "official": "앙골라 공화국", "common": "앙골라" },
"nld": { "official": "Republiek Angola", "common": "Angola" },
"per": { "official": "جمهوری آنگولا", "common": "آنگولا" },
"pol": { "official": "Republika Angoli", "common": "Angola" },
"por": { "official": "República de Angola", "common": "Angola" },
"rus": { "official": "Республика Ангола", "common": "Ангола" },
"slk": { "official": "Angolská republika", "common": "Angola" },
"spa": { "official": "República de Angola", "common": "Angola" },
"urd": { "official": "جمہوریہ انگولہ", "common": "انگولہ" },
"zho": { "official": "安哥拉共和国", "common": "安哥拉" }
},
"latlng": [-12.5, 18.5],
"landlocked": false,
"borders": ["COG", "COD", "ZMB", "NAM"],
"area": 1246700,
"flag": "🇦🇴",
"demonyms": {
"eng": { "f": "Angolan", "m": "Angolan" },
"fra": { "f": "Angolaise", "m": "Angolais" }
},
"callingCodes": ["+244"]
},
{
"name": {
"common": "Anguilla",
"official": "Anguilla",
"native": { "eng": { "official": "Anguilla", "common": "Anguilla" } }
},
"tld": [".ai"],
"cca2": "AI",
"ccn3": "660",
"cca3": "AIA",
"cioc": "",
"independent": false,
"status": "officially-assigned",
"currencies": {
"XCD": { "name": "Eastern Caribbean dollar", "symbol": "$" }
},
"idd": { "root": "+1", "suffixes": ["264"] },
"capital": ["The Valley"],
"altSpellings": ["AI"],
"region": "Americas",
"subregion": "Caribbean",
"languages": { "eng": "English" },
"translations": {
"ces": { "official": "Anguilla", "common": "Anguilla" },
"deu": { "official": "Anguilla", "common": "Anguilla" },
"est": { "official": "Anguilla", "common": "Anguilla" },
"fin": { "official": "Anguilla", "common": "Anguilla" },
"fra": { "official": "Anguilla", "common": "Anguilla" },
"hrv": { "official": "Anguilla", "common": "Angvila" },
"hun": { "official": "Anguilla", "common": "Anguilla" },
"ita": { "official": "Anguilla", "common": "Anguilla" },
"jpn": { "official": "アングィラ", "common": "アンギラ" },
"kor": { "official": "앵귈라", "common": "앵귈라" },
"nld": { "official": "Anguilla", "common": "Anguilla" },
"per": { "official": "آنگویلا", "common": "آنگویلا" },
"pol": { "official": "Anguilla", "common": "Anguilla" },
"por": { "official": "Anguilla", "common": "Anguilla" },
"rus": { "official": "Ангилья", "common": "Ангилья" },
"slk": { "official": "Anguilla", "common": "Anguilla" },
"spa": { "official": "Anguila", "common": "Anguilla" },
"urd": { "official": "اینگویلا", "common": "اینگویلا" },
"zho": { "official": "安圭拉", "common": "安圭拉" }
},
"latlng": [18.25, -63.16666666],
"landlocked": false,
"borders": [],
"area": 91,
"flag": "🇦🇮",
"demonyms": {
"eng": { "f": "Anguillian", "m": "Anguillian" },
"fra": { "f": "Anguillane", "m": "Anguillan" }
},
"callingCodes": ["+1264"]
},
{
"name": {
"common": "Åland Islands",
"official": "Åland Islands",
"native": { "swe": { "official": "Landskapet Åland", "common": "Åland" } }
},
"tld": [".ax"],
"cca2": "AX",
"ccn3": "248",
"cca3": "ALA",
"cioc": "",
"independent": false,
"status": "officially-assigned",
"currencies": { "EUR": { "name": "Euro", "symbol": "€" } },
"idd": { "root": "+3", "suffixes": ["5818"] },
"capital": ["Mariehamn"],
"altSpellings": ["AX", "Aaland", "Aland", "Ahvenanmaa"],
"region": "Europe",
"subregion": "Northern Europe",
"languages": { "swe": "Swedish" },
"translations": {
"ces": { "official": "Ålandské ostrovy", "common": "Ålandy" },
"deu": { "official": "Åland-Inseln", "common": "Åland" },
"est": { "official": "Ahvenamaa maakond", "common": "Ahvenamaa" },
"fin": { "official": "Ahvenanmaan maakunta", "common": "Ahvenanmaa" },
"fra": { "official": "Ahvenanmaa", "common": "Ahvenanmaa" },
"hrv": { "official": "Aland Islands", "common": "Ålandski otoci" },
"hun": { "official": "Åland-szigetek", "common": "Åland-szigetek" },
"ita": { "official": "Isole Åland", "common": "Isole Aland" },
"jpn": { "official": "オーランド諸島", "common": "オーランド諸島" },
"kor": { "official": "올란드 제도", "common": "올란드 제도" },
"nld": { "official": "Åland eilanden", "common": "Ålandeilanden" },
"per": { "official": "جزایر الند", "common": "جزایر الند" },
"pol": { "official": "Wyspy Alandzkie", "common": "Wyspy Alandzkie" },
"por": { "official": "Ilhas Åland", "common": "Alândia" },
"rus": { "official": "Аландские острова", "common": "Аландские острова" },
"slk": { "official": "Alandské ostrovy", "common": "Alandy" },
"spa": { "official": "Islas Åland", "common": "Alandia" },
"urd": { "official": "جزائر اولند", "common": "جزائر اولند" },
"zho": { "official": "奥兰群岛", "common": "奥兰群岛" }
},
"latlng": [60.116667, 19.9],
"landlocked": false,
"borders": [],
"area": 1580,
"flag": "🇦🇽",
"demonyms": {
"eng": { "f": "Ålandish", "m": "Ålandish" },
"fra": { "f": "Ålandaise", "m": "Ålandais" }
},
"callingCodes": ["+35818"]
},
{
"name": {
"common": "Albania",
"official": "Republic of Albania",
"native": {
"sqi": { "official": "Republika e Shqipërisë", "common": "Shqipëria" }
}
},
"tld": [".al"],
"cca2": "AL",
"ccn3": "008",
"cca3": "ALB",
"cioc": "ALB",
"independent": true,
"status": "officially-assigned",
"currencies": { "ALL": { "name": "Albanian lek", "symbol": "L" } },
"idd": { "root": "+3", "suffixes": ["55"] },
"capital": ["Tirana"],
"altSpellings": ["AL", "Shqipëri", "Shqipëria", "Shqipnia"],
"region": "Europe",
"subregion": "Southern Europe",
"languages": { "sqi": "Albanian" },
"translations": {
"ces": { "official": "Albánská republika", "common": "Albánie" },
"cym": { "official": "Gweriniaeth Albania", "common": "Albania" },
"deu": { "official": "Republik Albanien", "common": "Albanien" },
"est": { "official": "Albaania Vabariik", "common": "Albaania" },
"fin": { "official": "Albanian tasavalta", "common": "Albania" },
"fra": { "official": "République d'Albanie", "common": "Albanie" },
"hrv": { "official": "Republika Albanija", "common": "Albanija" },
"hun": { "official": "Albán Köztársaság", "common": "Albánia" },
"ita": { "official": "Repubblica d'Albania", "common": "Albania" },
"jpn": { "official": "アルバニア共和国", "common": "アルバニア" },
"kor": { "official": "알바니아 공화국", "common": "알바니아" },
"nld": { "official": "Republiek Albanië", "common": "Albanië" },
"per": { "official": "جمهوری آلبانی", "common": "آلبانی" },
"pol": { "official": "Republika Albanii", "common": "Albania" },
"por": { "official": "República da Albânia", "common": "Albânia" },
"rus": { "official": "Республика Албания", "common": "Албания" },
"slk": { "official": "Albánska republika", "common": "Albánsko" },
"spa": { "official": "República de Albania", "common": "Albania" },
"urd": { "official": "جمہوریہ البانیا", "common": "البانیا" },
"zho": { "official": "阿尔巴尼亚共和国", "common": "阿尔巴尼亚" }
},
"latlng": [41, 20],
"landlocked": false,
"borders": ["MNE", "GRC", "MKD", "UNK"],
"area": 28748,
"flag": "🇦🇱",
"demonyms": {
"eng": { "f": "Albanian", "m": "Albanian" },
"fra": { "f": "Albanaise", "m": "Albanais" }
},
"callingCodes": ["+355"]
},
{
"name": {
"common": "Andorra",
"official": "Principality of Andorra",
"native": {
"cat": { "official": "Principat d'Andorra", "common": "Andorra" }
}
},
"tld": [".ad"],
"cca2": "AD",
"ccn3": "020",
"cca3": "AND",
"cioc": "AND",
"independent": true,
"status": "officially-assigned",
"currencies": { "EUR": { "name": "Euro", "symbol": "€" } },
"idd": { "root": "+3", "suffixes": ["76"] },
"capital": ["Andorra la Vella"],
"altSpellings": ["AD", "Principality of Andorra", "Principat d'Andorra"],
"region": "Europe",
"subregion": "Southern Europe",
"languages": { "cat": "Catalan" },
"translations": {
"ces": { "official": "Andorrské knížectví", "common": "Andorra" },
"cym": { "official": "Tywysogaeth Andorra", "common": "Andorra" },
"deu": { "official": "Fürstentum Andorra", "common": "Andorra" },
"est": { "official": "Andorra Vürstiriik", "common": "Andorra" },
"fin": { "official": "Andorran ruhtinaskunta", "common": "Andorra" },
"fra": { "official": "Principauté d'Andorre", "common": "Andorre" },
"hrv": { "official": "Kneževina Andora", "common": "Andora" },
"hun": { "official": "Andorra", "common": "Andorra" },
"ita": { "official": "Principato di Andorra", "common": "Andorra" },
"jpn": { "official": "アンドラ公国", "common": "アンドラ" },
"kor": { "official": "안도라 공국", "common": "안도라" },
"nld": { "official": "Prinsdom Andorra", "common": "Andorra" },
"per": { "official": "شاهزادهنشین آندورا", "common": "آندورا" },
"pol": { "official": "Księstwo Andory", "common": "Andora" },
"por": { "official": "Principado de Andorra", "common": "Andorra" },
"rus": { "official": "Княжество Андорра", "common": "Андорра" },
"slk": { "official": "Andorrské kniežatstvo", "common": "Andorra" },
"spa": { "official": "Principado de Andorra", "common": "Andorra" },
"urd": { "official": "اماراتِ انڈورا", "common": "انڈورا" },
"zho": { "official": "安道尔公国", "common": "安道尔" }
},
"latlng": [42.5, 1.5],
"landlocked": true,
"borders": ["FRA", "ESP"],
"area": 468,
"flag": "🇦🇩",
"demonyms": {
"eng": { "f": "Andorran", "m": "Andorran" },
"fra": { "f": "Andorrane", "m": "Andorran" }
},
"callingCodes": ["+376"]
},
{
"name": {
"common": "United Arab Emirates",
"official": "United Arab Emirates",
"native": {
"ara": {
"official": "الإمارات العربية المتحدة",
"common": "دولة الإمارات العربية المتحدة"
}
}
},
"tld": [".ae", "امارات."],
"cca2": "AE",
"ccn3": "784",
"cca3": "ARE",
"cioc": "UAE",
"independent": true,
"status": "officially-assigned",
"currencies": {
"AED": { "name": "United Arab Emirates dirham", "symbol": "د.إ" }
},
"idd": { "root": "+9", "suffixes": ["71"] },
"capital": ["Abu Dhabi"],
"altSpellings": ["AE", "UAE", "Emirates"],
"region": "Asia",
"subregion": "Western Asia",
"languages": { "ara": "Arabic" },
"translations": {
"ces": {
"official": "Spojené arabské emiráty",
"common": "Spojené arabské emiráty"
},
"deu": {
"official": "Vereinigte Arabische Emirate",
"common": "Vereinigte Arabische Emirate"
},
"est": {
"official": "Araabia Ühendemiraadid",
"common": "Araabia Ühendemiraadid"
},
"fin": {
"official": "Yhdistyneet arabiemiirikunnat",
"common": "Arabiemiraatit"
},
"fra": {
"official": "Émirats arabes unis",
"common": "Émirats arabes unis"
},
"hrv": {
"official": "Ujedinjeni Arapski Emirati",
"common": "Ujedinjeni Arapski Emirati"
},
"hun": {
"official": "Egyesült Arab Emírségek",
"common": "Egyesült Arab Emírségek"
},
"ita": {
"official": "Emirati Arabi Uniti",
"common": "Emirati Arabi Uniti"
},
"jpn": { "official": "アラブ首長国連邦", "common": "アラブ首長国連邦" },
"kor": { "official": "아랍 토후국 연방", "common": "아랍에미리트" },
"nld": {
"official": "Verenigde Arabische Emiraten",
"common": "Verenigde Arabische Emiraten"
},
"per": { "official": "امارات متحده عربی", "common": "امارات" },
"pol": {
"official": "Zjednoczone Emiraty Arabskie",
"common": "Zjednoczone Emiraty Arabskie"
},
"por": {
"official": "Emirados Árabes Unidos",
"common": "Emirados Árabes Unidos"
},
"rus": {
"official": "Объединенные Арабские Эмираты",
"common": "Объединённые Арабские Эмираты"
},
"slk": {
"official": "Spojené arabské emiráty",
"common": "Spojené arabské emiráty"
},
"spa": {
"official": "Emiratos Árabes Unidos",
"common": "Emiratos Árabes Unidos"
},
"urd": { "official": "متحدہ عرب امارات", "common": "متحدہ عرب امارات" },
"zho": { "official": "阿拉伯联合酋长国", "common": "阿拉伯联合酋长国" }
},
"latlng": [24, 54],
"landlocked": false,
"borders": ["OMN", "SAU"],
"area": 83600,
"flag": "🇦🇪",
"demonyms": {
"eng": { "f": "Emirati", "m": "Emirati" },
"fra": { "f": "Emirienne", "m": "Emirien" }
},
"callingCodes": ["+971"]
},
{
"name": {
"common": "Argentina",
"official": "Argentine Republic",
"native": {
"grn": { "official": "Argentine Republic", "common": "Argentina" },
"spa": { "official": "República Argentina", "common": "Argentina" }
}
},
"tld": [".ar"],
"cca2": "AR",
"ccn3": "032",
"cca3": "ARG",
"cioc": "ARG",
"independent": true,
"status": "officially-assigned",
"currencies": { "ARS": { "name": "Argentine peso", "symbol": "$" } },
"idd": { "root": "+5", "suffixes": ["4"] },
"capital": ["Buenos Aires"],
"altSpellings": ["AR", "Argentine Republic", "República Argentina"],
"region": "Americas",
"subregion": "South America",
"languages": { "grn": "Guaraní", "spa": "Spanish" },
"translations": {
"ces": { "official": "Argentinská republika", "common": "Argentina" },
"cym": { "official": "Gweriniaeth yr Ariannin", "common": "Ariannin" },
"deu": { "official": "Argentinische Republik", "common": "Argentinien" },
"est": { "official": "Argentina Vabariik", "common": "Argentina" },
"fin": { "official": "Argentiinan tasavalta", "common": "Argentiina" },
"fra": { "official": "République argentine", "common": "Argentine" },
"hrv": { "official": "Argentinski Republika", "common": "Argentina" },
"hun": { "official": "Argentin Köztársaság", "common": "Argentína" },
"ita": { "official": "Repubblica Argentina", "common": "Argentina" },
"jpn": { "official": "アルゼンチン共和国", "common": "アルゼンチン" },
"kor": { "official": "아르헨티나 공화국", "common": "아르헨티나" },
"nld": { "official": "Argentijnse Republiek", "common": "Argentinië" },
"per": { "official": "جمهوری آرژانتین", "common": "آرژانتین" },
"pol": { "official": "Republika Argentyńska", "common": "Argentyna" },
"por": { "official": "República Argentina", "common": "Argentina" },
"rus": { "official": "Аргентинская Республика", "common": "Аргентина" },
"slk": { "official": "Argentínska republika", "common": "Argentína" },
"spa": { "official": "República Argentina", "common": "Argentina" },
"urd": { "official": "جمہوریہ ارجنٹائن", "common": "ارجنٹائن" },
"zho": { "official": "阿根廷共和国", "common": "阿根廷" }
},
"latlng": [-34, -64],
"landlocked": false,
"borders": ["BOL", "BRA", "CHL", "PRY", "URY"],
"area": 2780400,
"flag": "🇦🇷",
"demonyms": {
"eng": { "f": "Argentine", "m": "Argentine" },
"fra": { "f": "Argentine", "m": "Argentin" }
},
"callingCodes": ["+54"]
},
{
"name": {
"common": "Armenia",
"official": "Republic of Armenia",
"native": {
"hye": { "official": "Հայաստանի Հանրապետություն", "common": "Հայաստան" }
}
},
"tld": [".am"],
"cca2": "AM",
"ccn3": "051",
"cca3": "ARM",
"cioc": "ARM",
"independent": true,
"status": "officially-assigned",
"currencies": { "AMD": { "name": "Armenian dram", "symbol": "֏" } },
"idd": { "root": "+3", "suffixes": ["74"] },
"capital": ["Yerevan"],
"altSpellings": [
"AM",
"Hayastan",
"Republic of Armenia",
"Հայաստանի Հանրապետություն"
],
"region": "Asia",
"subregion": "Western Asia",
"languages": { "hye": "Armenian" },
"translations": {
"ces": { "official": "Arménská republika", "common": "Arménie" },
"cym": { "official": "Gweriniaeth Armenia", "common": "Armenia" },
"deu": { "official": "Republik Armenien", "common": "Armenien" },
"est": { "official": "Armeenia Vabariik", "common": "Armeenia" },
"fin": { "official": "Armenian tasavalta", "common": "Armenia" },
"fra": { "official": "République d'Arménie", "common": "Arménie" },
"hrv": { "official": "Republika Armenija", "common": "Armenija" },
"hun": { "official": "Örményország", "common": "Örményország" },
"ita": { "official": "Repubblica di Armenia", "common": "Armenia" },
"jpn": { "official": "アルメニア共和国", "common": "アルメニア" },
"kor": { "official": "아르메니아 공화국", "common": "아르메니아" },
"nld": { "official": "Republiek Armenië", "common": "Armenië" },
"per": { "official": "جمهوری ارمنستان", "common": "ارمنستان" },
"pol": { "official": "Republika Armenii", "common": "Armenia" },
"por": { "official": "República da Arménia", "common": "Arménia" },
"rus": { "official": "Республика Армения", "common": "Армения" },
"slk": { "official": "Arménska republika", "common": "Arménsko" },
"spa": { "official": "República de Armenia", "common": "Armenia" },
"urd": { "official": "جمہوریہ آرمینیا", "common": "آرمینیا" },
"zho": { "official": "亚美尼亚共和国", "common": "亚美尼亚" }
},
"latlng": [40, 45],
"landlocked": true,
"borders": ["AZE", "GEO", "IRN", "TUR"],
"area": 29743,
"flag": "🇦🇲",
"demonyms": {
"eng": { "f": "Armenian", "m": "Armenian" },
"fra": { "f": "Arménienne", "m": "Arménien" }
},
"callingCodes": ["+374"]
},
{
"name": {
"common": "American Samoa",
"official": "American Samoa",
"native": {
"eng": { "official": "American Samoa", "common": "American Samoa" },
"smo": { "official": "Sāmoa Amelika", "common": "Sāmoa Amelika" }
}
},
"tld": [".as"],
"cca2": "AS",
"ccn3": "016",
"cca3": "ASM",
"cioc": "ASA",
"independent": false,
"status": "officially-assigned",
"currencies": { "USD": { "name": "United States dollar", "symbol": "$" } },
"idd": { "root": "+1", "suffixes": ["684"] },
"capital": ["Pago Pago"],
"altSpellings": ["AS", "Amerika Sāmoa", "Amelika Sāmoa", "Sāmoa Amelika"],
"region": "Oceania",
"subregion": "Polynesia",
"languages": { "eng": "English", "smo": "Samoan" },
"translations": {
"ces": { "official": "Americká Samoa", "common": "Americká Samoa" },
"deu": {
"official": "Amerikanisch-Samoa",
"common": "Amerikanisch-Samoa"
},
"est": { "official": "Ameerika Samoa", "common": "Ameerika Samoa" },
"fin": { "official": "Amerikan Samoa", "common": "Amerikan Samoa" },
"fra": { "official": "Samoa américaines", "common": "Samoa américaines" },
"hrv": { "official": "američka Samoa", "common": "Američka Samoa" },
"hun": { "official": "Szamoa", "common": "Szamoa" },
"ita": { "official": "Samoa americane", "common": "Samoa Americane" },
"jpn": { "official": "米サモア", "common": "アメリカ領サモア" },
"kor": { "official": "아메리칸사모아", "common": "아메리칸사모아" },
"nld": { "official": "Amerikaans Samoa", "common": "Amerikaans Samoa" },
"per": { "official": "ساموآی آمریکا", "common": "ساموآی آمریکا" },
"pol": {
"official": "Samoa Amerykańskie",
"common": "Samoa Amerykańskie"
},
"por": { "official": "Samoa americana", "common": "Samoa Americana" },
"rus": {
"official": "американское Самоа",
"common": "Американское Самоа"
},
"slk": { "official": "Americká Samoa", "common": "Americká Samoa" },
"spa": { "official": "Samoa Americana", "common": "Samoa Americana" },
"urd": { "official": "امریکی سمووا", "common": "امریکی سمووا" },
"zho": { "official": "美属萨摩亚", "common": "美属萨摩亚" }
},
"latlng": [-14.33333333, -170],
"landlocked": false,
"borders": [],
"area": 199,
"flag": "🇦🇸",
"demonyms": {
"eng": { "f": "American Samoan", "m": "American Samoan" },
"fra": { "f": "Samoane", "m": "Samoan" }
},
"callingCodes": ["+1684"]
},
{
"name": { "common": "Antarctica", "official": "Antarctica", "native": {} },
"tld": [".aq"],
"cca2": "AQ",
"ccn3": "010",
"cca3": "ATA",
"cioc": "",
"independent": false,
"status": "officially-assigned",
"currencies": [],
"idd": { "root": "", "suffixes": [] },
"capital": [""],
"altSpellings": ["AQ"],
"region": "Antarctic",
"subregion": "",
"languages": {},
"translations": {
"ces": { "official": "Antarktida", "common": "Antarktida" },
"cym": { "official": "Yr Antarctig", "common": "Yr Antarctig" },
"deu": { "official": "Antarktika", "common": "Antarktis" },
"est": { "official": "Antarktika", "common": "Antarktika" },
"fin": { "official": "Etelämanner", "common": "Etelämanner" },
"fra": { "official": "Antarctique", "common": "Antarctique" },
"hrv": { "official": "Antarktika", "common": "Antarktika" },
"hun": { "official": "Antarktisz", "common": "Antarktisz" },
"ita": { "official": "Antartide", "common": "Antartide" },
"jpn": { "official": "南極大陸", "common": "南極" },
"kor": { "official": "남극", "common": "남극" },
"nld": { "official": "Antarctica", "common": "Antarctica" },
"per": { "official": "جنوبگان", "common": "جنوبگان" },
"pol": { "official": "Antarktyka", "common": "Antarktyka" },
"por": { "official": "Antártica", "common": "Antártida" },
"rus": { "official": "Антарктида", "common": "Антарктида" },
"slk": { "official": "Antarktída", "common": "Antarktída" },
"spa": { "official": "Antártida", "common": "Antártida" },
"urd": { "official": "انٹارکٹکا", "common": "انٹارکٹکا" },
"zho": { "official": "南极洲", "common": "南极洲" }
},
"latlng": [-90, 0],
"landlocked": false,
"borders": [],
"area": 14000000,
"flag": "🇦🇶",
"demonyms": {
"eng": { "f": "Antarctican", "m": "Antarctican" },
"fra": { "f": "Antarcticaine", "m": "Antarcticain" }
},
"callingCodes": []
},
{
"name": {
"common": "French Southern and Antarctic Lands",
"official": "Territory of the French Southern and Antarctic Lands",
"native": {
"fra": {
"official": "Territoire des Terres australes et antarctiques françaises",
"common": "Terres australes et antarctiques françaises"
}
}
},
"tld": [".tf"],
"cca2": "TF",
"ccn3": "260",
"cca3": "ATF",
"cioc": "",
"independent": false,
"status": "officially-assigned",
"currencies": { "EUR": { "name": "Euro", "symbol": "€" } },
"idd": { "root": "+2", "suffixes": ["62"] },
"capital": ["Port-aux-Français"],
"altSpellings": ["TF", "French Southern Territories"],
"region": "Antarctic",
"subregion": "",
"languages": { "fra": "French" },
"translations": {
"ces": {
"official": "Teritorium Francouzská jižní a antarktická území",
"common": "Francouzská jižní a antarktická území"
},
"deu": {
"official": "Gebiet der Französisch Süd- und Antarktisgebiete",
"common": "Französische Süd- und Antarktisgebiete"
},
"est": {
"official": "Prantsuse Lõunaalad",
"common": "Prantsuse Lõunaalad"
},
"fin": {
"official": "Ranskan eteläiset ja antarktiset alueet",
"common": "Ranskan eteläiset ja antarktiset alueet"
},
"fra": {
"official": "Territoire des Terres australes et antarctiques françaises",
"common": "Terres australes et antarctiques françaises"
},
"hrv": {
"official": "Teritoriju Francuski južni i antarktički teritoriji",
"common": "Francuski južni i antarktički teritoriji"
},
"hun": {
"official": "Francia déli és antarktiszi területek",
"common": "Francia déli és antarktiszi területek"
},
"ita": {
"official": "Territorio della australi e antartiche francesi Terre",
"common": "Territori Francesi del Sud"
},
"jpn": {
"official": "フランス領南方·南極地域の領土",
"common": "フランス領南方・南極地域"
},
"kor": {
"official": "프랑스령 남부와 남극 지역",
"common": "프랑스령 남부와 남극 지역"
},
"nld": {
"official": "Grondgebied van de Franse Zuidelijke en Antarctische gebieden",
"common": "Franse Gebieden in de zuidelijke Indische Oceaan"
},
"per": {
"official": "سرزمینهای جنوبی و جنوبگانی فرانسه",
"common": "سرزمینهای جنوبی و جنوبگانی فرانسه"
},
"pol": {
"official": "Francuskie Terytoria Południowe i Antarktyczne",
"common": "Francuskie Terytoria Południowe i Antarktyczne"
},
"por": {
"official": "Território do Sul e Antártica Francesa",
"common": "Terras Austrais e Antárticas Francesas"
},
"rus": {
"official": "Территория Французские Южные и Антарктические земли",
"common": "Французские Южные и Антарктические территории"
},
"slk": {
"official": "Francúzske južné a antarktické územia",
"common": "Francúzske juŽné a antarktické územia"
},
"spa": {
"official": "Territorio del Francés Tierras australes y antárticas",
"common": "Tierras Australes y Antárticas Francesas"
},
"urd": {
"official": "سرزمینِ جنوبی فرانسیسیہ و انٹارکٹیکہ",
"common": "سرزمین جنوبی فرانسیسیہ و انٹارکٹیکا"
},
"zho": {
"official": "法国南部和南极土地",
"common": "法国南部和南极土地"
}
},
"latlng": [-49.25, 69.167],
"landlocked": false,
"borders": [],
"area": 7747,
"flag": "🇹🇫",
"demonyms": {
"eng": { "f": "French", "m": "French" },
"fra": { "f": "Française", "m": "Français" }
},
"callingCodes": ["+262"]
},
{
"name": {
"common": "Antigua and Barbuda",
"official": "Antigua and Barbuda",
"native": {
"eng": {
"official": "Antigua and Barbuda",
"common": "Antigua and Barbuda"
}
}
},
"tld": [".ag"],
"cca2": "AG",
"ccn3": "028",
"cca3": "ATG",
"cioc": "ANT",
"independent": true,
"status": "officially-assigned",
"currencies": {
"XCD": { "name": "Eastern Caribbean dollar", "symbol": "$" }
},
"idd": { "root": "+1", "suffixes": ["268"] },
"capital": ["Saint John's"],
"altSpellings": ["AG"],
"region": "Americas",
"subregion": "Caribbean",
"languages": { "eng": "English" },
"translations": {
"ces": { "official": "Antigua a Barbuda", "common": "Antigua a Barbuda" },
"cym": {
"official": "Antigwa a Barbiwda",
"common": "Antigwa a Barbiwda"
},
"deu": {
"official": "Antigua und Barbuda",
"common": "Antigua und Barbuda"
},
"est": {
"official": "Antigua ja Barbuda",
"common": "Antigua ja Barbuda"
},
"fin": {
"official": "Antigua ja Barbuda",
"common": "Antigua ja Barbuda"
},
"fra": {
"official": "Antigua -et-Barbuda",
"common": "Antigua-et-Barbuda"
},
"hrv": { "official": "Antigva i Barbuda", "common": "Antigva i Barbuda" },
"hun": {
"official": "Antigua és Barbuda",
"common": "Antigua és Barbuda"
},
"ita": { "official": "Antigua e Barbuda", "common": "Antigua e Barbuda" },
"jpn": {
"official": "アンチグアバーブーダ",
"common": "アンティグア・バーブーダ"
},
"kor": { "official": "앤티가 바부다", "common": "앤티가 바부다" },
"nld": {
"official": "Antigua en Barbuda",
"common": "Antigua en Barbuda"
},
"per": { "official": "آنتیگوا و باربودا", "common": "آنتیگوا و باربودا" },
"pol": { "official": "Antigua i Barbuda", "common": "Antigua i Barbuda" },
"por": { "official": "Antigua e Barbuda", "common": "Antígua e Barbuda" },
"rus": { "official": "Антигуа и Барбуда", "common": "Антигуа и Барбуда" },
"slk": { "official": "Antigua a Barbuda", "common": "Antigua a Barbuda" },
"spa": { "official": "Antigua y Barbuda", "common": "Antigua y Barbuda" },
"urd": {
"official": "اینٹیگوا و باربوڈا",
"common": "اینٹیگوا و باربوڈا"
},
"zho": { "official": "安提瓜和巴布达", "common": "安提瓜和巴布达" }
},
"latlng": [17.05, -61.8],
"landlocked": false,
"borders": [],
"area": 442,
"flag": "🇦🇬",
"demonyms": {
"eng": { "f": "Antiguan, Barbudan", "m": "Antiguan, Barbudan" },
"fra": {
"f": "Antiguaise et barbudienne",
"m": "Antiguaise et barbudien"
}
},
"callingCodes": ["+1268"]
},
{
"name": {
"common": "Australia",
"official": "Commonwealth of Australia",
"native": {
"eng": {
"official": "Commonwealth of Australia",
"common": "Australia"
}
}
},
"tld": [".au"],
"cca2": "AU",
"ccn3": "036",
"cca3": "AUS",
"cioc": "AUS",
"independent": true,
"status": "officially-assigned",
"currencies": { "AUD": { "name": "Australian dollar", "symbol": "$" } },
"idd": { "root": "+6", "suffixes": ["1"] },
"capital": ["Canberra"],
"altSpellings": ["AU"],
"region": "Oceania",
"subregion": "Australia and New Zealand",
"languages": { "eng": "English" },
"translations": {
"ces": { "official": "Australské společenství", "common": "Austrálie" },
"cym": { "official": "Cymanwlad Awstralia", "common": "Awstralia" },