-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso-3166-2.json
5847 lines (5847 loc) · 342 KB
/
iso-3166-2.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
{
"BE": {
"name": "Belgium",
"sub": {
"BE-VLG": { "type": "Region", "name": "Flanders" },
"BE-WAL": { "type": "Region", "name": "Wallonia" },
"BE-BRU": { "type": "Region", "name": "Brussels" }
}
},
"BF": {
"name": "Burkina Faso",
"sub": {
"BF-01": { "type": "Region", "name": "Boucle du Mouhoun" },
"BF-02": { "type": "Region", "name": "Cascades" },
"BF-03": { "type": "Region", "name": "Centre" },
"BF-04": { "type": "Region", "name": "Centre-Est" },
"BF-05": { "type": "Region", "name": "Centre-Nord" },
"BF-06": { "type": "Region", "name": "Centre-Ouest" },
"BF-07": { "type": "Region", "name": "Centre-Sud" },
"BF-08": { "type": "Region", "name": "Est" },
"BF-09": { "type": "Region", "name": "Hauts-Bassins" },
"BF-13": { "type": "Region", "name": "Sud-Ouest" },
"BF-12": { "type": "Region", "name": "Sahel" },
"BF-11": { "type": "Region", "name": "Plateau-Central" },
"BF-10": { "type": "Region", "name": "Nord" }
}
},
"BG": {
"name": "Bulgaria",
"sub": {
"BG-14": { "type": "Region", "name": "Pernik" },
"BG-15": { "type": "Region", "name": "Pleven" },
"BG-16": { "type": "Region", "name": "Plovdiv" },
"BG-17": { "type": "Region", "name": "Razgrad" },
"BG-10": { "type": "Region", "name": "Kyustendil" },
"BG-11": { "type": "Region", "name": "Lovech" },
"BG-12": { "type": "Region", "name": "Montana" },
"BG-13": { "type": "Region", "name": "Pazardzhik" },
"BG-18": { "type": "Region", "name": "Ruse" },
"BG-19": { "type": "Region", "name": "Silistra" },
"BG-25": { "type": "Region", "name": "Targovishte" },
"BG-24": { "type": "Region", "name": "Stara Zagora" },
"BG-27": { "type": "Region", "name": "Shumen" },
"BG-07": { "type": "Region", "name": "Gabrovo" },
"BG-06": { "type": "Region", "name": "Vratsa" },
"BG-23": { "type": "Region", "name": "Sofia" },
"BG-04": { "type": "Region", "name": "Veliko Tarnovo" },
"BG-09": { "type": "Region", "name": "Kardzhali" },
"BG-08": { "type": "Region", "name": "Dobrich" },
"BG-28": { "type": "Region", "name": "Yambol" },
"BG-03": { "type": "Region", "name": "Varna" },
"BG-02": { "type": "Region", "name": "Burgas" },
"BG-01": { "type": "Region", "name": "Blagoevgrad" },
"BG-26": { "type": "Region", "name": "Haskovo" },
"BG-21": { "type": "Region", "name": "Smolyan" },
"BG-20": { "type": "Region", "name": "Sliven" },
"BG-05": { "type": "Region", "name": "Vidin" },
"BG-22": { "type": "Region", "name": "Sofia" }
}
},
"BA": {
"name": "Bosnia and Herzegovina",
"sub": {
"BA-BRC": { "type": "District with special status", "name": "Brčko distrikt" },
"BA-SRP": { "type": "entity", "name": "Republika Srpska" },
"BA-BIH": { "type": "entity", "name": "Federacija Bosne i Hercegovine" }
}
},
"BB": {
"name": "Barbados",
"sub": {
"BB-11": { "type": "Parish", "name": "Saint Thomas" },
"BB-10": { "type": "Parish", "name": "Saint Philip" },
"BB-08": { "type": "Parish", "name": "Saint Michael" },
"BB-09": { "type": "Parish", "name": "Saint Peter" },
"BB-04": { "type": "Parish", "name": "Saint James" },
"BB-05": { "type": "Parish", "name": "Saint John" },
"BB-06": { "type": "Parish", "name": "Saint Joseph" },
"BB-07": { "type": "Parish", "name": "Saint Lucy" },
"BB-01": { "type": "Parish", "name": "Christ Church" },
"BB-02": { "type": "Parish", "name": "Saint Andrew" },
"BB-03": { "type": "Parish", "name": "Saint George" }
}
},
"WF": {
"name": "Wallis & Futuna Islands",
"sub": {
"WF-AL": { "type": "Subdivision", "name": "Alo" },
"WF-SG": { "type": "Subdivision", "name": "Sigave" },
"WF-UV": { "type": "Subdivision", "name": "Uvea" }
}
},
"BL": { "name": "St. Barthélemy", "sub": { "BL-BL": { "type": "Country", "name": "St. Barthélemy" } } },
"BM": { "name": "Bermuda", "sub": { "BM-BM": { "type": "Country", "name": "Bermuda" } } },
"BN": {
"name": "Brunei Darussalam",
"sub": {
"BN-TE": { "type": "District", "name": "Temburong" },
"BN-BM": { "type": "District", "name": "Brunei-Muara" },
"BN-TU": { "type": "District", "name": "Tutong" },
"BN-BE": { "type": "District", "name": "Belait" }
}
},
"BO": {
"name": "Bolivia",
"sub": {
"BO-B": { "type": "Department", "name": "El Beni" },
"BO-C": { "type": "Department", "name": "Cochabamba" },
"BO-N": { "type": "Department", "name": "Pando" },
"BO-O": { "type": "Department", "name": "Oruro" },
"BO-L": { "type": "Department", "name": "La Paz" },
"BO-H": { "type": "Department", "name": "Chuquisaca" },
"BO-T": { "type": "Department", "name": "Tarija" },
"BO-S": { "type": "Department", "name": "Santa Cruz" },
"BO-P": { "type": "Department", "name": "Potosí" }
}
},
"BH": {
"name": "Bahrain",
"sub": {
"BH-13": { "type": "Governorate", "name": "Al ‘Āşimah" },
"BH-15": { "type": "Governorate", "name": "Al Muḩarraq" },
"BH-14": { "type": "Governorate", "name": "Al Janūbīyah" },
"BH-17": { "type": "Governorate", "name": "Ash Shamālīyah" }
}
},
"BI": {
"name": "Burundi",
"sub": {
"BI-BB": { "type": "Province", "name": "Bubanza" },
"BI-MA": { "type": "Province", "name": "Makamba" },
"BI-CI": { "type": "Province", "name": "Cibitoke" },
"BI-KR": { "type": "Province", "name": "Karuzi" },
"BI-NG": { "type": "Province", "name": "Ngozi" },
"BI-RY": { "type": "Province", "name": "Ruyigi" },
"BI-RT": { "type": "Province", "name": "Rutana" },
"BI-CA": { "type": "Province", "name": "Cankuzo" },
"BI-BM": { "type": "Province", "name": "Bujumbura Mairie" },
"BI-BL": { "type": "Province", "name": "Bujumbura Rural" },
"BI-BR": { "type": "Province", "name": "Bururi" },
"BI-MW": { "type": "Province", "name": "Mwaro" },
"BI-KI": { "type": "Province", "name": "Kirundo" },
"BI-MU": { "type": "Province", "name": "Muramvya" },
"BI-GI": { "type": "Province", "name": "Gitega" },
"BI-MY": { "type": "Province", "name": "Muyinga" },
"BI-KY": { "type": "Province", "name": "Kayanza" }
}
},
"BJ": {
"name": "Benin",
"sub": {
"BJ-AK": { "type": "Department", "name": "Atakora" },
"BJ-BO": { "type": "Department", "name": "Borgou" },
"BJ-CO": { "type": "Department", "name": "Collines" },
"BJ-AL": { "type": "Department", "name": "Alibori" },
"BJ-MO": { "type": "Department", "name": "Mono" },
"BJ-LI": { "type": "Department", "name": "Littoral" },
"BJ-ZO": { "type": "Department", "name": "Zou" },
"BJ-OU": { "type": "Department", "name": "Ouémé" },
"BJ-PL": { "type": "Department", "name": "Plateau" },
"BJ-DO": { "type": "Department", "name": "Donga" },
"BJ-AQ": { "type": "Department", "name": "Atlantique" },
"BJ-KO": { "type": "Department", "name": "Kouffo" }
}
},
"BT": {
"name": "Bhutan",
"sub": {
"BT-33": { "type": "District", "name": "Bumthang" },
"BT-42": { "type": "District", "name": "Monggar" },
"BT-GA": { "type": "District", "name": "Gasa" },
"BT-32": { "type": "District", "name": "Trongsa" },
"BT-34": { "type": "District", "name": "Zhemgang" },
"BT-45": { "type": "District", "name": "Samdrup Jongkhar" },
"BT-15": { "type": "District", "name": "Thimphu" },
"BT-14": { "type": "District", "name": "Samtse" },
"BT-31": { "type": "District", "name": "Sarpang" },
"BT-TY": { "type": "District", "name": "Trashi Yangtse" },
"BT-11": { "type": "District", "name": "Paro" },
"BT-44": { "type": "District", "name": "Lhuentse" },
"BT-13": { "type": "District", "name": "Haa" },
"BT-12": { "type": "District", "name": "Chhukha" },
"BT-24": { "type": "District", "name": "Wangdue Phodrang" },
"BT-43": { "type": "District", "name": "Pema Gatshel" },
"BT-41": { "type": "District", "name": "Trashigang" },
"BT-21": { "type": "District", "name": "Tsirang" },
"BT-22": { "type": "District", "name": "Dagana" },
"BT-23": { "type": "District", "name": "Punakha" }
}
},
"JM": {
"name": "Jamaica",
"sub": {
"JM-12": { "type": "Parish", "name": "Manchester" },
"JM-14": { "type": "Parish", "name": "Saint Catherine" },
"JM-11": { "type": "Parish", "name": "Saint Elizabeth" },
"JM-10": { "type": "Parish", "name": "Westmoreland" },
"JM-01": { "type": "Parish", "name": "Kingston" },
"JM-13": { "type": "Parish", "name": "Clarendon" },
"JM-03": { "type": "Parish", "name": "Saint Thomas" },
"JM-02": { "type": "Parish", "name": "Saint Andrew" },
"JM-05": { "type": "Parish", "name": "Saint Mary" },
"JM-04": { "type": "Parish", "name": "Portland" },
"JM-07": { "type": "Parish", "name": "Trelawny" },
"JM-06": { "type": "Parish", "name": "Saint Ann" },
"JM-09": { "type": "Parish", "name": "Hanover" },
"JM-08": { "type": "Parish", "name": "Saint James" }
}
},
"BW": {
"name": "Botswana",
"sub": {
"BW-KW": { "type": "District", "name": "Kweneng" },
"BW-JW": { "type": "Town", "name": "Jwaneng" },
"BW-FR": { "type": "City", "name": "Francistown" },
"BW-CH": { "type": "District", "name": "Chobe" },
"BW-SO": { "type": "District", "name": "Southern" },
"BW-LO": { "type": "Town", "name": "Lobatse" },
"BW-ST": { "type": "Town", "name": "Sowa Town" },
"BW-CE": { "type": "District", "name": "Central" },
"BW-NW": { "type": "District", "name": "North West" },
"BW-KG": { "type": "District", "name": "Kgalagadi" },
"BW-GA": { "type": "City", "name": "Gaborone" },
"BW-SP": { "type": "Town", "name": "Selibe Phikwe" },
"BW-GH": { "type": "District", "name": "Ghanzi" },
"BW-SE": { "type": "District", "name": "South East" },
"BW-NE": { "type": "District", "name": "North East" },
"BW-KL": { "type": "District", "name": "Kgatleng" }
}
},
"WS": {
"name": "Samoa",
"sub": {
"WS-AA": { "type": "District", "name": "A'ana" },
"WS-VF": { "type": "District", "name": "Va'a-o-Fonoti" },
"WS-SA": { "type": "District", "name": "Satupa'itea" },
"WS-FA": { "type": "District", "name": "Fa'asaleleaga" },
"WS-VS": { "type": "District", "name": "Vaisigano" },
"WS-AL": { "type": "District", "name": "Aiga-i-le-Tai" },
"WS-GI": { "type": "District", "name": "Gagaifomauga" },
"WS-PA": { "type": "District", "name": "Palauli" },
"WS-AT": { "type": "District", "name": "Atua" },
"WS-TU": { "type": "District", "name": "Tuamasaga" },
"WS-GE": { "type": "District", "name": "Gaga'emauga" }
}
},
"BQ": {
"name": "Bonaire, Sint Eustatius and Saba",
"sub": {
"BQ-SE": { "type": "Special municipality", "name": "Sint Eustatius" },
"BQ-BO": { "type": "Special municipality", "name": "Bonaire" },
"BQ-SA": { "type": "Special municipality", "name": "Saba" }
}
},
"BR": {
"name": "Brazil",
"sub": {
"BR-RJ": { "type": "State", "name": "Rio de Janeiro" },
"BR-BA": { "type": "State", "name": "Bahia" },
"BR-SE": { "type": "State", "name": "Sergipe" },
"BR-DF": { "type": "Federal district", "name": "Distrito Federal" },
"BR-SP": { "type": "State", "name": "São Paulo" },
"BR-SC": { "type": "State", "name": "Santa Catarina" },
"BR-RR": { "type": "State", "name": "Roraima" },
"BR-RS": { "type": "State", "name": "Rio Grande do Sul" },
"BR-AP": { "type": "State", "name": "Amapá" },
"BR-CE": { "type": "State", "name": "Ceará" },
"BR-GO": { "type": "State", "name": "Goiás" },
"BR-AM": { "type": "State", "name": "Amazonas" },
"BR-AL": { "type": "State", "name": "Alagoas" },
"BR-AC": { "type": "State", "name": "Acre" },
"BR-PI": { "type": "State", "name": "Piauí" },
"BR-RN": { "type": "State", "name": "Rio Grande do Norte" },
"BR-RO": { "type": "State", "name": "Rondônia" },
"BR-MT": { "type": "State", "name": "Mato Grosso" },
"BR-MS": { "type": "State", "name": "Mato Grosso do Sul" },
"BR-PA": { "type": "State", "name": "Pará" },
"BR-PB": { "type": "State", "name": "Paraíba" },
"BR-ES": { "type": "State", "name": "Espírito Santo" },
"BR-PR": { "type": "State", "name": "Paraná" },
"BR-PE": { "type": "State", "name": "Pernambuco" },
"BR-MG": { "type": "State", "name": "Minas Gerais" },
"BR-MA": { "type": "State", "name": "Maranhão" },
"BR-TO": { "type": "State", "name": "Tocantins" }
}
},
"BS": {
"name": "Bahamas",
"sub": {
"BS-SA": { "type": "District", "name": "South Andros" },
"BS-EX": { "type": "District", "name": "Exuma" },
"BS-CS": { "type": "District", "name": "Central Andros" },
"BS-CK": { "type": "District", "name": "Crooked Island and Long Cay" },
"BS-CI": { "type": "District", "name": "Cat Island" },
"BS-GC": { "type": "District", "name": "Grand Cay" },
"BS-EG": { "type": "District", "name": "East Grand Bahama" },
"BS-CE": { "type": "District", "name": "Central Eleuthera" },
"BS-RI": { "type": "District", "name": "Ragged Island" },
"BS-RC": { "type": "District", "name": "Rum Cay" },
"BS-AK": { "type": "District", "name": "Acklins" },
"BS-MG": { "type": "District", "name": "Mayaguana" },
"BS-IN": { "type": "District", "name": "Inagua" },
"BS-MC": { "type": "District", "name": "Mangrove Cay" },
"BS-MI": { "type": "District", "name": "Moore's Island" },
"BS-BY": { "type": "District", "name": "Berry Islands" },
"BS-FP": { "type": "District", "name": "City of Freeport" },
"BS-BP": { "type": "District", "name": "Black Point" },
"BS-LI": { "type": "District", "name": "Long Island" },
"BS-BI": { "type": "District", "name": "Bimini" },
"BS-WG": { "type": "District", "name": "West Grand Bahama" },
"BS-NO": { "type": "District", "name": "North Abaco" },
"BS-SO": { "type": "District", "name": "South Abaco" },
"BS-NE": { "type": "District", "name": "North Eleuthera" },
"BS-HT": { "type": "District", "name": "Hope Town" },
"BS-SE": { "type": "District", "name": "South Eleuthera" },
"BS-HI": { "type": "District", "name": "Harbour Island" },
"BS-SS": { "type": "District", "name": "San Salvador" },
"BS-SW": { "type": "District", "name": "Spanish Wells" },
"BS-NS": { "type": "District", "name": "North Andros" },
"BS-CO": { "type": "District", "name": "Central Abaco" }
}
},
"JE": { "name": "Jersey", "sub": { "JE-JE": { "type": "Country", "name": "Jersey" } } },
"BY": {
"name": "Belarus",
"sub": {
"BY-HM": { "type": "City", "name": "Minskaja oblast'" },
"BY-BR": { "type": "Oblast", "name": "Brestskaja oblast'" },
"BY-HO": { "type": "Oblast", "name": "Gomel'skaja oblast'" },
"BY-MA": { "type": "Oblast", "name": "Mogilevskaja oblast'" },
"BY-MI": { "type": "Oblast", "name": "Gorod Minsk" },
"BY-VI": { "type": "Oblast", "name": "Vitebskaja oblast'" },
"BY-HR": { "type": "Oblast", "name": "Grodnenskaja oblast'" }
}
},
"BZ": {
"name": "Belize",
"sub": {
"BZ-CY": { "type": "District", "name": "Cayo" },
"BZ-CZL": { "type": "District", "name": "Corozal" },
"BZ-SC": { "type": "District", "name": "Stann Creek" },
"BZ-BZ": { "type": "District", "name": "Belize" },
"BZ-TOL": { "type": "District", "name": "Toledo" },
"BZ-OW": { "type": "District", "name": "Orange Walk" }
}
},
"RU": {
"name": "Russia",
"sub": {
"RU-PNZ": { "type": "Administrative region", "name": "Penzenskaja oblast'" },
"RU-KRS": { "type": "Administrative region", "name": "Kurskaja oblast'" },
"RU-ULY": { "type": "Administrative region", "name": "Ul'janovskaja oblast'" },
"RU-BEL": { "type": "Administrative region", "name": "Belgorodskaja oblast'" },
"RU-SAK": { "type": "Administrative region", "name": "Sahalinskaja oblast'" },
"RU-KYA": { "type": "Administrative territory", "name": "Krasnojarskij kraj" },
"RU-STA": { "type": "Administrative territory", "name": "Stavropol'skij kraj" },
"RU-IVA": { "type": "Administrative region", "name": "Ivanovskaja oblast'" },
"RU-LIP": { "type": "Administrative region", "name": "Lipeckaja oblast'" },
"RU-AST": { "type": "Administrative region", "name": "Astrahanskaja oblast'" },
"RU-CE": { "type": "Republic", "name": "Čečenskaja Respublika" },
"RU-KHA": { "type": "Administrative territory", "name": "Habarovskij kraj" },
"RU-ORE": { "type": "Administrative region", "name": "Orenburgskaja oblast'" },
"RU-VLG": { "type": "Administrative region", "name": "Vologodskaja oblast'" },
"RU-YAR": { "type": "Administrative region", "name": "Jaroslavskaja oblast'" },
"RU-NGR": { "type": "Administrative region", "name": "Novgorodskaja oblast'" },
"RU-KLU": { "type": "Administrative region", "name": "Kaluzhskaya oblast'" },
"RU-OMS": { "type": "Administrative region", "name": "Omskaja oblast'" },
"RU-IRK": { "type": "Administrative region", "name": "Irkutskaja oblast'" },
"RU-ORL": { "type": "Administrative region", "name": "Orlovskaja oblast'" },
"RU-DA": { "type": "Republic", "name": "Dagestan, Respublika" },
"RU-PRI": { "type": "Administrative territory", "name": "Primorskij kraj" },
"RU-SAM": { "type": "Administrative region", "name": "Samarskaja oblast'" },
"RU-SAR": { "type": "Administrative region", "name": "Saratovskaja oblast'" },
"RU-KOS": { "type": "Administrative region", "name": "Kostromskaja oblast'" },
"RU-SPE": { "type": "Autonomous city", "name": "Sankt-Peterburg" },
"RU-NIZ": { "type": "Administrative region", "name": "Nižegorodskaja oblast'" },
"RU-SA": { "type": "Republic", "name": "Saha, Respublika" },
"RU-KHM": { "type": "Autonomous district", "name": "Hanty-Mansijskij avtonomnyj okrug" },
"RU-LEN": { "type": "Administrative region", "name": "Leningradskaja oblast'" },
"RU-CHE": { "type": "Administrative region", "name": "Čeljabinskaja oblast'" },
"RU-BA": { "type": "Republic", "name": "Bashkortostan, Respublika" },
"RU-SE": { "type": "Republic", "name": "Severnaja Osetija, Respublika" },
"RU-MOS": { "type": "Administrative region", "name": "Moskovskaja oblast'" },
"RU-YAN": { "type": "Autonomous district", "name": "Jamalo-Neneckij avtonomnyj okrug" },
"RU-KGD": { "type": "Administrative region", "name": "Kaliningradskaja oblast'" },
"RU-MOW": { "type": "Autonomous city", "name": "Moskva" },
"RU-KAM": { "type": "Administrative territory", "name": "Kamčatskij kraj" },
"RU-ARK": { "type": "Administrative region", "name": "Arhangel'skaja oblast'" },
"RU-BU": { "type": "Republic", "name": "Burjatija, Respublika" },
"RU-KEM": { "type": "Administrative region", "name": "Kemerovskaja oblast'" },
"RU-CHU": { "type": "Autonomous district", "name": "Chukotskiy avtonomnyy okrug" },
"RU-UD": { "type": "Republic", "name": "Udmurtskaja Respublika" },
"RU-KGN": { "type": "Administrative region", "name": "Kurganskaja oblast'" },
"RU-TUL": { "type": "Administrative region", "name": "Tul'skaja oblast'" },
"RU-KIR": { "type": "Administrative region", "name": "Kirovskaja oblast'" },
"RU-KR": { "type": "Republic", "name": "Karelija, Respublika" },
"RU-ME": { "type": "Republic", "name": "Marij Èl, Respublika" },
"RU-IN": { "type": "Republic", "name": "Ingušetija, Respublika" },
"RU-MAG": { "type": "Administrative region", "name": "Magadanskaja oblast'" },
"RU-MO": { "type": "Republic", "name": "Mordovija, Respublika" },
"RU-TA": { "type": "Republic", "name": "Tatarstan, Respublika" },
"RU-SVE": { "type": "Administrative region", "name": "Sverdlovskaja oblast'" },
"RU-RYA": { "type": "Administrative region", "name": "Rjazanskaja oblast'" },
"RU-ZAB": { "type": "Administrative territory", "name": "Zabajkal'skij kraj" },
"RU-NEN": { "type": "Autonomous district", "name": "Neneckij avtonomnyj okrug" },
"RU-KB": { "type": "Republic", "name": "Kabardino-Balkarskaja Respublika" },
"RU-ALT": { "type": "Administrative territory", "name": "Altajskij kraj" },
"RU-TY": { "type": "Republic", "name": "Tyva, Respublika" },
"RU-MUR": { "type": "Administrative region", "name": "Murmanskaja oblast'" },
"RU-VOR": { "type": "Administrative region", "name": "Voronezhskaya oblast'" },
"RU-PSK": { "type": "Administrative region", "name": "Pskovskaja oblast'" },
"RU-TVE": { "type": "Administrative region", "name": "Tverskaja oblast'" },
"RU-VGG": { "type": "Administrative region", "name": "Volgogradskaja oblast'" },
"RU-KK": { "type": "Republic", "name": "Hakasija, Respublika" },
"RU-KL": { "type": "Republic", "name": "Kalmykija, Respublika" },
"RU-TOM": { "type": "Administrative region", "name": "Tomskaja oblast'" },
"RU-KO": { "type": "Republic", "name": "Komi, Respublika" },
"RU-TYU": { "type": "Administrative region", "name": "Tjumenskaja oblast'" },
"RU-TAM": { "type": "Administrative region", "name": "Tambovskaja oblast'" },
"RU-NVS": { "type": "Administrative region", "name": "Novosibirskaja oblast'" },
"RU-AD": { "type": "Republic", "name": "Adygeja, Respublika" },
"RU-PER": { "type": "Administrative territory", "name": "Permskij kraj" },
"RU-ROS": { "type": "Administrative region", "name": "Rostovskaja oblast'" },
"RU-AMU": { "type": "Administrative region", "name": "Amurskaja oblast'" },
"RU-AL": { "type": "Republic", "name": "Altaj, Respublika" },
"RU-KC": { "type": "Republic", "name": "Karačaevo-Čerkesskaja Respublika" },
"RU-KDA": { "type": "Administrative territory", "name": "Krasnodarskij kraj" },
"RU-YEV": { "type": "Autonomous region", "name": "Evrejskaja avtonomnaja oblast'" },
"RU-VLA": { "type": "Administrative region", "name": "Vladimirskaja oblast'" },
"RU-BRY": { "type": "Administrative region", "name": "Brjanskaja oblast'" },
"RU-SMO": { "type": "Administrative region", "name": "Smolenskaja oblast'" },
"RU-CU": { "type": "Republic", "name": "Chuvashskaya Respublika" }
}
},
"RW": {
"name": "Rwanda",
"sub": {
"RW-03": { "type": "Province", "name": "Nord" },
"RW-02": { "type": "Province", "name": "Est" },
"RW-01": { "type": "Town council", "name": "Ville de Kigal" },
"RW-05": { "type": "Province", "name": "Sud" },
"RW-04": { "type": "Province", "name": "Ouest" }
}
},
"RS": {
"name": "Serbia",
"sub": {
"RS-07": { "type": "District", "name": "Sremski" },
"RS-06": { "type": "District", "name": "Južnobački" },
"RS-05": { "type": "District", "name": "Zapadnobački" },
"RS-04": { "type": "District", "name": "Južnobanatski" },
"RS-03": { "type": "District", "name": "Severnobanatski" },
"RS-02": { "type": "District", "name": "Srednjebanatski" },
"RS-01": { "type": "District", "name": "Severnobački" },
"RS-00": { "type": "City", "name": "Beograd" },
"RS-09": { "type": "District", "name": "Kolubarski" },
"RS-08": { "type": "District", "name": "Mačvanski" },
"RS-21": { "type": "District", "name": "Toplički" },
"RS-20": { "type": "District", "name": "Nišavski" },
"RS-23": { "type": "District", "name": "Jablanički" },
"RS-22": { "type": "District", "name": "Pirotski" },
"RS-24": { "type": "District", "name": "Pčinjski" },
"RS-10": { "type": "District", "name": "Podunavski" },
"RS-11": { "type": "District", "name": "Braničevski" },
"RS-12": { "type": "District", "name": "Šumadijski" },
"RS-13": { "type": "District", "name": "Pomoravski" },
"RS-14": { "type": "District", "name": "Borski" },
"RS-15": { "type": "District", "name": "Zaječarski" },
"RS-16": { "type": "District", "name": "Zlatiborski" },
"RS-17": { "type": "District", "name": "Moravički" },
"RS-18": { "type": "District", "name": "Raški" },
"RS-19": { "type": "District", "name": "Rasinski" }
}
},
"TL": {
"name": "East Timor",
"sub": {
"TL-ER": { "type": "District", "name": "Ermera" },
"TL-LA": { "type": "District", "name": "Lautém" },
"TL-OE": { "type": "District", "name": "Oecussi" },
"TL-AN": { "type": "District", "name": "Ainaro" },
"TL-AL": { "type": "District", "name": "Aileu" },
"TL-MF": { "type": "District", "name": "Manufahi" },
"TL-MT": { "type": "District", "name": "Manatuto" },
"TL-VI": { "type": "District", "name": "Vikeke" },
"TL-BO": { "type": "District", "name": "Bobonaro" },
"TL-CO": { "type": "District", "name": "Cova Lima" },
"TL-BA": { "type": "District", "name": "Baucau" },
"TL-LI": { "type": "District", "name": "Likisá" },
"TL-DI": { "type": "District", "name": "Díli" }
}
},
"RE": { "name": "Reunion", "sub": { "RE-RE": { "type": "Country", "name": "Reunion" } } },
"TM": {
"name": "Turkmenistan",
"sub": {
"TM-S": { "type": "City", "name": "Aşgabat" },
"TM-L": { "type": "Region", "name": "Lebap" },
"TM-M": { "type": "Region", "name": "Mary" },
"TM-D": { "type": "Region", "name": "Daşoguz" },
"TM-B": { "type": "Region", "name": "Balkan" },
"TM-A": { "type": "Region", "name": "Ahal" }
}
},
"TJ": {
"name": "Tajikistan",
"sub": {
"TJ-GB": { "type": "Autonomous region", "name": "Kŭhistoni Badakhshon" },
"TJ-SU": { "type": "Region", "name": "Sughd" },
"TJ-DU": { "type": "Capital territory", "name": "Dushanbe" },
"TJ-KT": { "type": "Region", "name": "Khatlon" }
}
},
"RO": {
"name": "Romania",
"sub": {
"RO-SB": { "type": "Department", "name": "Sibiu" },
"RO-DB": { "type": "Department", "name": "Dâmboviţa" },
"RO-SM": { "type": "Department", "name": "Satu Mare" },
"RO-SJ": { "type": "Department", "name": "Sălaj" },
"RO-DJ": { "type": "Department", "name": "Dolj" },
"RO-HD": { "type": "Department", "name": "Hunedoara" },
"RO-SV": { "type": "Department", "name": "Suceava" },
"RO-B": { "type": "Municipality", "name": "Bucureşti" },
"RO-HR": { "type": "Department", "name": "Harghita" },
"RO-VS": { "type": "Department", "name": "Vaslui" },
"RO-NT": { "type": "Department", "name": "Neamţ" },
"RO-CV": { "type": "Department", "name": "Covasna" },
"RO-CT": { "type": "Department", "name": "Constanţa" },
"RO-CS": { "type": "Department", "name": "Caraş-Severin" },
"RO-GR": { "type": "Department", "name": "Giurgiu" },
"RO-VN": { "type": "Department", "name": "Vrancea" },
"RO-AR": { "type": "Department", "name": "Arad" },
"RO-GJ": { "type": "Department", "name": "Gorj" },
"RO-GL": { "type": "Department", "name": "Galaţi" },
"RO-CL": { "type": "Department", "name": "Călăraşi" },
"RO-AG": { "type": "Department", "name": "Argeş" },
"RO-CJ": { "type": "Department", "name": "Cluj" },
"RO-AB": { "type": "Department", "name": "Alba" },
"RO-PH": { "type": "Department", "name": "Prahova" },
"RO-TR": { "type": "Department", "name": "Teleorman" },
"RO-OT": { "type": "Department", "name": "Olt" },
"RO-IS": { "type": "Department", "name": "Iaşi" },
"RO-VL": { "type": "Department", "name": "Vâlcea" },
"RO-MS": { "type": "Department", "name": "Mureş" },
"RO-MH": { "type": "Department", "name": "Mehedinţi" },
"RO-IF": { "type": "Department", "name": "Ilfov" },
"RO-MM": { "type": "Department", "name": "Maramureş" },
"RO-IL": { "type": "Department", "name": "Ialomiţa" },
"RO-TM": { "type": "Department", "name": "Timiş" },
"RO-TL": { "type": "Department", "name": "Tulcea" },
"RO-BT": { "type": "Department", "name": "Botoşani" },
"RO-BV": { "type": "Department", "name": "Braşov" },
"RO-BR": { "type": "Department", "name": "Brăila" },
"RO-BZ": { "type": "Department", "name": "Buzău" },
"RO-BC": { "type": "Department", "name": "Bacău" },
"RO-BN": { "type": "Department", "name": "Bistriţa-Năsăud" },
"RO-BH": { "type": "Department", "name": "Bihor" }
}
},
"TK": { "name": "Tokelau", "sub": { "TK-TK": { "type": "Country", "name": "Tokelau" } } },
"GW": {
"name": "Guinea-Bissau",
"sub": {
"GW-BL": { "type": "Region", "name": "Bolama" },
"GW-BM": { "type": "Region", "name": "Biombo" },
"GW-CA": { "type": "Region", "name": "Cacheu" },
"GW-QU": { "type": "Region", "name": "Quinara" },
"GW-S": { "type": "Province", "name": "Sul" },
"GW-OI": { "type": "Region", "name": "Oio" },
"GW-L": { "type": "Province", "name": "Leste" },
"GW-N": { "type": "Province", "name": "Norte" },
"GW-BA": { "type": "Region", "name": "Bafatá" },
"GW-TO": { "type": "Region", "name": "Tombali" },
"GW-GA": { "type": "Region", "name": "Gabú" },
"GW-BS": { "type": "Autonomous sector", "name": "Bissau" }
}
},
"GU": { "name": "Guam", "sub": { "GU-GU": { "type": "Country", "name": "Guam" } } },
"GT": {
"name": "Guatemala",
"sub": {
"GT-SO": { "type": "Department", "name": "Sololá" },
"GT-SM": { "type": "Department", "name": "San Marcos" },
"GT-JA": { "type": "Department", "name": "Jalapa" },
"GT-BV": { "type": "Department", "name": "Baja Verapaz" },
"GT-QZ": { "type": "Department", "name": "Quetzaltenango" },
"GT-SA": { "type": "Department", "name": "Sacatepéquez" },
"GT-JU": { "type": "Department", "name": "Jutiapa" },
"GT-HU": { "type": "Department", "name": "Huehuetenango" },
"GT-QC": { "type": "Department", "name": "Quiché" },
"GT-SU": { "type": "Department", "name": "Suchitepéquez" },
"GT-SR": { "type": "Department", "name": "Santa Rosa" },
"GT-ZA": { "type": "Department", "name": "Zacapa" },
"GT-RE": { "type": "Department", "name": "Retalhuleu" },
"GT-PE": { "type": "Department", "name": "Petén" },
"GT-CQ": { "type": "Department", "name": "Chiquimula" },
"GT-TO": { "type": "Department", "name": "Totonicapán" },
"GT-CM": { "type": "Department", "name": "Chimaltenango" },
"GT-IZ": { "type": "Department", "name": "Izabal" },
"GT-PR": { "type": "Department", "name": "El Progreso" },
"GT-AV": { "type": "Department", "name": "Alta Verapaz" },
"GT-GU": { "type": "Department", "name": "Guatemala" },
"GT-ES": { "type": "Department", "name": "Escuintla" }
}
},
"GR": {
"name": "Greece",
"sub": {
"GR-85": { "type": "Department", "name": "Chíos" },
"GR-84": { "type": "Department", "name": "Sámos" },
"GR-64": { "type": "Department", "name": "Chalkidikí" },
"GR-81": { "type": "Department", "name": "Dodekánisa" },
"GR-83": { "type": "Department", "name": "Lésvos" },
"GR-54": { "type": "Department", "name": "Thessaloníki" },
"GR-A": { "type": "Administrative region", "name": "Anatolikí Makedonía kai Thráki" },
"GR-G": { "type": "Administrative region", "name": "Dytikí Elláda" },
"GR-B": { "type": "Administrative region", "name": "Kentrikí Makedonía" },
"GR-73": { "type": "Department", "name": "Rodópi" },
"GR-J": { "type": "Administrative region", "name": "Peloponnísos" },
"GR-I": { "type": "Administrative region", "name": "Attikí" },
"GR-34": { "type": "Department", "name": "Préveza" },
"GR-53": { "type": "Department", "name": "Imathía" },
"GR-51": { "type": "Department", "name": "Grevená" },
"GR-56": { "type": "Department", "name": "Kastoriá" },
"GR-31": { "type": "Department", "name": "Árta" },
"GR-32": { "type": "Department", "name": "Thesprotía" },
"GR-33": { "type": "Department", "name": "Ioánnina" },
"GR-71": { "type": "Department", "name": "Évros" },
"GR-58": { "type": "Department", "name": "Kozáni" },
"GR-59": { "type": "Department", "name": "Pélla" },
"GR-16": { "type": "Department", "name": "Lakonía" },
"GR-17": { "type": "Department", "name": "Messinía" },
"GR-14": { "type": "Department", "name": "Ileía" },
"GR-15": { "type": "Department", "name": "Korinthía" },
"GR-12": { "type": "Department", "name": "Arkadía" },
"GR-13": { "type": "Department", "name": "Achaḯa" },
"GR-11": { "type": "Department", "name": "Argolída" },
"GR-52": { "type": "Department", "name": "Dráma" },
"GR-94": { "type": "Department", "name": "Chaniá" },
"GR-92": { "type": "Department", "name": "Lasíthi" },
"GR-93": { "type": "Department", "name": "Rethýmnis" },
"GR-91": { "type": "Department", "name": "Irakleío" },
"GR-L": { "type": "Administrative region", "name": "Notío Aigaío" },
"GR-A1": { "type": "Department", "name": "Attikí" },
"GR-05": { "type": "Department", "name": "Evrytanía" },
"GR-04": { "type": "Department", "name": "Évvoia" },
"GR-82": { "type": "Department", "name": "Kykládes" },
"GR-07": { "type": "Department", "name": "Fokída" },
"GR-57": { "type": "Department", "name": "Kilkís" },
"GR-41": { "type": "Department", "name": "Kardítsa" },
"GR-M": { "type": "Administrative region", "name": "Krítí" },
"GR-43": { "type": "Department", "name": "Magnisía" },
"GR-42": { "type": "Department", "name": "Lárisa" },
"GR-H": { "type": "Administrative region", "name": "Stereá Elláda" },
"GR-44": { "type": "Department", "name": "Tríkala" },
"GR-69": { "type": "Self-governed part", "name": "Ágion Óros" },
"GR-K": { "type": "Administrative region", "name": "Voreío Aigaío" },
"GR-D": { "type": "Administrative region", "name": "Ípeiros" },
"GR-E": { "type": "Administrative region", "name": "Thessalía" },
"GR-F": { "type": "Administrative region", "name": "Ionía Nísia" },
"GR-55": { "type": "Department", "name": "Kavála" },
"GR-63": { "type": "Department", "name": "Flórina" },
"GR-62": { "type": "Department", "name": "Sérres" },
"GR-61": { "type": "Department", "name": "Piería" },
"GR-C": { "type": "Administrative region", "name": "Dytikí Makedonía" },
"GR-23": { "type": "Department", "name": "Kefallinía" },
"GR-22": { "type": "Department", "name": "Kérkyra" },
"GR-21": { "type": "Department", "name": "Zákynthos" },
"GR-06": { "type": "Department", "name": "Fthiótida" },
"GR-01": { "type": "Department", "name": "Aitoloakarnanía" },
"GR-72": { "type": "Department", "name": "Xánthi" },
"GR-03": { "type": "Department", "name": "Voiotía" },
"GR-24": { "type": "Department", "name": "Lefkáda" }
}
},
"GQ": {
"name": "Equatorial Guinea",
"sub": {
"GQ-LI": { "type": "Province", "name": "Litoral" },
"GQ-C": { "type": "Region", "name": "Região Continental" },
"GQ-BN": { "type": "Province", "name": "Bioko Nord" },
"GQ-AN": { "type": "Province", "name": "Annobón" },
"GQ-I": { "type": "Region", "name": "Região Insular" },
"GQ-KN": { "type": "Province", "name": "Kié-Ntem" },
"GQ-BS": { "type": "Province", "name": "Bioko Sud" },
"GQ-CS": { "type": "Province", "name": "Centro Sud" },
"GQ-WN": { "type": "Province", "name": "Wele-Nzas" }
}
},
"GP": { "name": "Guadeloupe", "sub": { "GP-GP": { "type": "Country", "name": "Guadeloupe" } } },
"JP": {
"name": "Japan",
"sub": {
"JP-37": { "type": "Prefecture", "name": "Kagawa" },
"JP-36": { "type": "Prefecture", "name": "Tokushima" },
"JP-35": { "type": "Prefecture", "name": "Yamaguchi" },
"JP-34": { "type": "Prefecture", "name": "Hiroshima" },
"JP-33": { "type": "Prefecture", "name": "Okayama" },
"JP-32": { "type": "Prefecture", "name": "Shimane" },
"JP-31": { "type": "Prefecture", "name": "Tottori" },
"JP-30": { "type": "Prefecture", "name": "Wakayama" },
"JP-39": { "type": "Prefecture", "name": "Kochi" },
"JP-38": { "type": "Prefecture", "name": "Ehime" },
"JP-19": { "type": "Prefecture", "name": "Yamanashi" },
"JP-18": { "type": "Prefecture", "name": "Fukui" },
"JP-11": { "type": "Prefecture", "name": "Saitama" },
"JP-10": { "type": "Prefecture", "name": "Gunma" },
"JP-13": { "type": "Prefecture", "name": "Tôkyô" },
"JP-12": { "type": "Prefecture", "name": "Chiba" },
"JP-15": { "type": "Prefecture", "name": "Niigata" },
"JP-14": { "type": "Prefecture", "name": "Kanagawa" },
"JP-17": { "type": "Prefecture", "name": "Ishikawa" },
"JP-16": { "type": "Prefecture", "name": "Toyama" },
"JP-20": { "type": "Prefecture", "name": "Nagano" },
"JP-21": { "type": "Prefecture", "name": "Gifu" },
"JP-22": { "type": "Prefecture", "name": "Shizuoka" },
"JP-23": { "type": "Prefecture", "name": "Aichi" },
"JP-24": { "type": "Prefecture", "name": "Mie" },
"JP-25": { "type": "Prefecture", "name": "Shiga" },
"JP-26": { "type": "Prefecture", "name": "Kyoto" },
"JP-27": { "type": "Prefecture", "name": "Osaka" },
"JP-28": { "type": "Prefecture", "name": "Hyogo" },
"JP-29": { "type": "Prefecture", "name": "Nara" },
"JP-46": { "type": "Prefecture", "name": "Kagoshima" },
"JP-47": { "type": "Prefecture", "name": "Okinawa" },
"JP-08": { "type": "Prefecture", "name": "Ibaraki" },
"JP-09": { "type": "Prefecture", "name": "Tochigi" },
"JP-42": { "type": "Prefecture", "name": "Nagasaki" },
"JP-43": { "type": "Prefecture", "name": "Kumamoto" },
"JP-40": { "type": "Prefecture", "name": "Fukuoka" },
"JP-41": { "type": "Prefecture", "name": "Saga" },
"JP-02": { "type": "Prefecture", "name": "Aomori" },
"JP-03": { "type": "Prefecture", "name": "Iwate" },
"JP-01": { "type": "Prefecture", "name": "Hokkaido" },
"JP-06": { "type": "Prefecture", "name": "Yamagata" },
"JP-07": { "type": "Prefecture", "name": "Fukushima" },
"JP-04": { "type": "Prefecture", "name": "Miyagi" },
"JP-05": { "type": "Prefecture", "name": "Akita" },
"JP-44": { "type": "Prefecture", "name": "Oita" },
"JP-45": { "type": "Prefecture", "name": "Miyazaki" }
}
},
"GY": {
"name": "Guyana",
"sub": {
"GY-UT": { "type": "Region", "name": "Upper Takutu-Upper Essequibo" },
"GY-MA": { "type": "Region", "name": "Mahaica-Berbice" },
"GY-PM": { "type": "Region", "name": "Pomeroon-Supenaam" },
"GY-UD": { "type": "Region", "name": "Upper Demerara-Berbice" },
"GY-ES": { "type": "Region", "name": "Essequibo Islands-West Demerara" },
"GY-EB": { "type": "Region", "name": "East Berbice-Corentyne" },
"GY-PT": { "type": "Region", "name": "Potaro-Siparuni" },
"GY-CU": { "type": "Region", "name": "Cuyuni-Mazaruni" },
"GY-BA": { "type": "Region", "name": "Barima-Waini" },
"GY-DE": { "type": "Region", "name": "Demerara-Mahaica" }
}
},
"GG": { "name": "Guernsey", "sub": { "GG-GG": { "type": "Country", "name": "Guernsey" } } },
"GF": { "name": "French Guiana", "sub": { "GF-GF": { "type": "Country", "name": "French Guiana" } } },
"GE": {
"name": "Georgia",
"sub": {
"GE-GU": { "type": "Region", "name": "Guria" },
"GE-SK": { "type": "Region", "name": "Shida Kartli" },
"GE-SJ": { "type": "Region", "name": "Samtskhe-Javakheti" },
"GE-AB": { "type": "Autonomous republic", "name": "Abkhazia" },
"GE-MM": { "type": "Region", "name": "Mtskheta-Mtianeti" },
"GE-AJ": { "type": "Autonomous republic", "name": "Ajaria" },
"GE-TB": { "type": "City", "name": "Tbilisi" },
"GE-KA": { "type": "Region", "name": "K'akheti" },
"GE-IM": { "type": "Region", "name": "Imereti" },
"GE-SZ": { "type": "Region", "name": "Samegrelo-Zemo Svaneti" },
"GE-KK": { "type": "Region", "name": "Kvemo Kartli" },
"GE-RL": { "type": "Region", "name": "Rach'a-Lechkhumi-Kvemo Svaneti" }
}
},
"GD": {
"name": "Grenada",
"sub": {
"GD-03": { "type": "Parish", "name": "Saint George" },
"GD-02": { "type": "Parish", "name": "Saint David" },
"GD-01": { "type": "Parish", "name": "Saint Andrew" },
"GD-06": { "type": "Parish", "name": "Saint Patrick" },
"GD-05": { "type": "Parish", "name": "Saint Mark" },
"GD-04": { "type": "Parish", "name": "Saint John" },
"GD-10": { "type": "Dependency", "name": "Southern Grenadine Islands" }
}
},
"GB": {
"name": "United Kingdom",
"sub": {
"GB-TRF": { "type": "Metropolitan district", "name": "Trafford" },
"GB-WRX": { "type": "Unitary authority", "name": "Wrexham" },
"GB-BEN": { "type": "London borough", "name": "Brent" },
"GB-HRW": { "type": "London borough", "name": "Harrow" },
"GB-WRT": { "type": "Unitary authority", "name": "Warrington" },
"GB-LBH": { "type": "London borough", "name": "Lambeth" },
"GB-DAL": { "type": "Unitary authority", "name": "Darlington" },
"GB-WRL": { "type": "Metropolitan district", "name": "Wirral" },
"GB-MYL": { "type": "District council area", "name": "Moyle" },
"GB-UKM": { "type": "Nation", "name": "United Kingdom" },
"GB-BEX": { "type": "London borough", "name": "Bexley" },
"GB-BUR": { "type": "Metropolitan district", "name": "Bury" },
"GB-KIR": { "type": "Metropolitan district", "name": "Kirklees" },
"GB-FER": { "type": "District council area", "name": "Fermanagh" },
"GB-NBL": { "type": "Unitary authority", "name": "Northumberland" },
"GB-DRY": { "type": "District council area", "name": "Derry" },
"GB-CKF": { "type": "District council area", "name": "Carrickfergus" },
"GB-ERY": { "type": "Unitary authority", "name": "East Riding of Yorkshire" },
"GB-CMA": { "type": "Two-tier county", "name": "Cumbria" },
"GB-HCK": { "type": "London borough", "name": "Hackney" },
"GB-CRY": { "type": "London borough", "name": "Croydon" },
"GB-ABE": { "type": "Council area", "name": "Aberdeen City" },
"GB-ABD": { "type": "Council area", "name": "Aberdeenshire" },
"GB-CKT": { "type": "District council area", "name": "Cookstown" },
"GB-ERW": { "type": "Council area", "name": "East Renfrewshire" },
"GB-HIL": { "type": "London borough", "name": "Hillingdon" },
"GB-NLN": { "type": "Unitary authority", "name": "North Lincolnshire" },
"GB-WSX": { "type": "Two-tier county", "name": "West Sussex" },
"GB-BIR": { "type": "Metropolitan district", "name": "Birmingham" },
"GB-WBK": { "type": "Unitary authority", "name": "West Berkshire" },
"GB-EDU": { "type": "Council area", "name": "East Dunbartonshire" },
"GB-WSM": { "type": "London borough", "name": "Westminster" },
"GB-STS": { "type": "Two-tier county", "name": "Staffordshire" },
"GB-HRT": { "type": "Two-tier county", "name": "Hertfordshire" },
"GB-LSB": { "type": "District council area", "name": "Lisburn" },
"GB-EDH": { "type": "Council area", "name": "Edinburgh, City of" },
"GB-HRY": { "type": "London borough", "name": "Haringey" },
"GB-LAN": { "type": "Two-tier county", "name": "Lancashire" },
"GB-RIC": { "type": "London borough", "name": "Richmond upon Thames" },
"GB-LRN": { "type": "District council area", "name": "Larne" },
"GB-ZET": { "type": "Council area", "name": "Shetland Islands" },
"GB-ELS": { "type": "Council area", "name": "Eilean Siar" },
"GB-NTA": { "type": "District council area", "name": "Newtownabbey" },
"GB-SRY": { "type": "Two-tier county", "name": "Surrey" },
"GB-BMH": { "type": "Unitary authority", "name": "Bournemouth" },
"GB-CHE": { "type": "Unitary authority", "name": "Cheshire East" },
"GB-FLN": { "type": "Unitary authority", "name": "Flintshire" },
"GB-NET": { "type": "Metropolitan district", "name": "Newcastle upon Tyne" },
"GB-NTH": { "type": "Two-tier county", "name": "Northamptonshire" },
"GB-NTT": { "type": "Two-tier county", "name": "Nottinghamshire" },
"GB-NTL": { "type": "Unitary authority", "name": "Neath Port Talbot" },
"GB-ESX": { "type": "Two-tier county", "name": "East Sussex" },
"GB-KTT": { "type": "London borough", "name": "Kingston upon Thames" },
"GB-MRT": { "type": "London borough", "name": "Merton" },
"GB-OXF": { "type": "Two-tier county", "name": "Oxfordshire" },
"GB-MRY": { "type": "Council area", "name": "Moray" },
"GB-ESS": { "type": "Two-tier county", "name": "Essex" },
"GB-CHW": { "type": "Unitary authority", "name": "Cheshire West and Chester" },
"GB-SOS": { "type": "Unitary authority", "name": "Southend-on-Sea" },
"GB-PEM": { "type": "Unitary authority", "name": "Pembrokeshire" },
"GB-NTY": { "type": "Metropolitan district", "name": "North Tyneside" },
"GB-NEL": { "type": "Unitary authority", "name": "North East Lincolnshire" },
"GB-HAL": { "type": "Unitary authority", "name": "Halton" },
"GB-RFW": { "type": "Council area", "name": "Renfrewshire" },
"GB-LUT": { "type": "Unitary authority", "name": "Luton" },
"GB-WOK": { "type": "Unitary authority", "name": "Wokingham" },
"GB-WOR": { "type": "Two-tier county", "name": "Worcestershire" },
"GB-HLD": { "type": "Council area", "name": "Highland" },
"GB-MFT": { "type": "District council area", "name": "Magherafelt" },
"GB-NSM": { "type": "Unitary authority", "name": "North Somerset" },
"GB-LDS": { "type": "Metropolitan district", "name": "Leeds" },
"GB-KWL": { "type": "Metropolitan district", "name": "Knowsley" },
"GB-SOM": { "type": "Two-tier county", "name": "Somerset" },
"GB-DEN": { "type": "Unitary authority", "name": "Denbighshire" },
"GB-BST": { "type": "Unitary authority", "name": "Bristol, City of" },
"GB-EAL": { "type": "London borough", "name": "Ealing" },
"GB-RDB": { "type": "London borough", "name": "Redbridge" },
"GB-CSR": { "type": "District council area", "name": "Castlereagh" },
"GB-RDG": { "type": "Unitary authority", "name": "Reading" },
"GB-EAW": { "type": "Nation", "name": "England and Wales" },
"GB-CMD": { "type": "London borough", "name": "Camden" },
"GB-MON": { "type": "Unitary authority", "name": "Monmouthshire" },
"GB-OLD": { "type": "Metropolitan district", "name": "Oldham" },
"GB-CON": { "type": "Unitary authority", "name": "Cornwall" },
"GB-CMN": { "type": "Unitary authority", "name": "Carmarthenshire" },
"GB-EAY": { "type": "Council area", "name": "East Ayrshire" },
"GB-HEF": { "type": "Unitary authority", "name": "Herefordshire" },
"GB-ROT": { "type": "Metropolitan district", "name": "Rotherham" },
"GB-NAY": { "type": "Council area", "name": "North Ayrshire" },
"GB-BBD": { "type": "Unitary authority", "name": "Blackburn with Darwen" },
"GB-TOF": { "type": "Unitary authority", "name": "Torfaen" },
"GB-WDU": { "type": "Council area", "name": "West Dunbartonshire" },
"GB-WLL": { "type": "Metropolitan district", "name": "Walsall" },
"GB-WLN": { "type": "Council area", "name": "West Lothian" },
"GB-GRE": { "type": "London borough", "name": "Greenwich" },
"GB-MIK": { "type": "Unitary authority", "name": "Milton Keynes" },
"GB-KEC": { "type": "London borough", "name": "Kensington and Chelsea" },
"GB-MAN": { "type": "Metropolitan district", "name": "Manchester" },
"GB-WLV": { "type": "Metropolitan district", "name": "Wolverhampton" },
"GB-WLS": { "type": "Country", "name": "Wales" },
"GB-ELN": { "type": "Council area", "name": "East Lothian" },
"GB-CBF": { "type": "Unitary authority", "name": "Central Bedfordshire" },
"GB-STH": { "type": "Unitary authority", "name": "Southampton" },
"GB-KEN": { "type": "Two-tier county", "name": "Kent" },
"GB-STY": { "type": "Metropolitan district", "name": "South Tyneside" },
"GB-LCE": { "type": "Unitary authority", "name": "Leicester" },
"GB-ARM": { "type": "District council area", "name": "Armagh" },
"GB-BKM": { "type": "Two-tier county", "name": "Buckinghamshire" },
"GB-SLG": { "type": "Unitary authority", "name": "Slough" },
"GB-SLF": { "type": "Metropolitan district", "name": "Salford" },
"GB-ORK": { "type": "Council area", "name": "Orkney Islands" },
"GB-ARD": { "type": "District council area", "name": "Ards" },
"GB-SLK": { "type": "Council area", "name": "South Lanarkshire" },
"GB-BRY": { "type": "London borough", "name": "Bromley" },
"GB-STT": { "type": "Unitary authority", "name": "Stockton-on-Tees" },
"GB-POL": { "type": "Unitary authority", "name": "Poole" },
"GB-BRC": { "type": "Unitary authority", "name": "Bracknell Forest" },
"GB-SHN": { "type": "Metropolitan district", "name": "St. Helens" },
"GB-POW": { "type": "Unitary authority", "name": "Powys" },
"GB-GBN": { "type": "Nation", "name": "Great Britain" },
"GB-BRD": { "type": "Metropolitan district", "name": "Bradford" },
"GB-CRF": { "type": "Unitary authority", "name": "Cardiff" },
"GB-STB": { "type": "District council area", "name": "Strabane" },
"GB-STE": { "type": "Unitary authority", "name": "Stoke-on-Trent" },
"GB-DBY": { "type": "Two-tier county", "name": "Derbyshire" },
"GB-STG": { "type": "Council area", "name": "Stirling" },
"GB-AGB": { "type": "Council area", "name": "Argyll and Bute" },
"GB-DEV": { "type": "Two-tier county", "name": "Devon" },
"GB-WIL": { "type": "Unitary authority", "name": "Wiltshire" },
"GB-DER": { "type": "Unitary authority", "name": "Derby" },
"GB-HNS": { "type": "London borough", "name": "Hounslow" },
"GB-SAW": { "type": "Metropolitan district", "name": "Sandwell" },
"GB-PLY": { "type": "Unitary authority", "name": "Plymouth" },
"GB-NIR": { "type": "Province", "name": "Northern Ireland" },
"GB-THR": { "type": "Unitary authority", "name": "Thurrock" },
"GB-BAS": { "type": "Unitary authority", "name": "Bath and North East Somerset" },
"GB-FIF": { "type": "Council area", "name": "Fife" },
"GB-AGY": { "type": "Unitary authority", "name": "Isle of Anglesey" },
"GB-SAY": { "type": "Council area", "name": "South Ayrshire" },
"GB-NFK": { "type": "Two-tier county", "name": "Norfolk" },
"GB-TFW": { "type": "Unitary authority", "name": "Telford and Wrekin" },
"GB-BNE": { "type": "London borough", "name": "Barnet" },
"GB-BNB": { "type": "District council area", "name": "Banbridge" },
"GB-TOB": { "type": "Unitary authority", "name": "Torbay" },
"GB-CGN": { "type": "Unitary authority", "name": "Ceredigion" },
"GB-BFS": { "type": "District council area", "name": "Belfast" },
"GB-BNH": { "type": "Unitary authority", "name": "Brighton and Hove" },
"GB-WAR": { "type": "Two-tier county", "name": "Warwickshire" },
"GB-CGV": { "type": "District council area", "name": "Craigavon" },
"GB-BNS": { "type": "Metropolitan district", "name": "Barnsley" },
"GB-TWH": { "type": "London borough", "name": "Tower Hamlets" },
"GB-ANS": { "type": "Council area", "name": "Angus" },
"GB-FAL": { "type": "Council area", "name": "Falkirk" },
"GB-NYK": { "type": "Two-tier county", "name": "North Yorkshire" },
"GB-ANT": { "type": "District council area", "name": "Antrim" },
"GB-SWD": { "type": "Unitary authority", "name": "Swindon" },
"GB-IOS": { "type": "Unitary authority", "name": "Isles of Scilly" },
"GB-WNM": { "type": "Unitary authority", "name": "Windsor and Maidenhead" },
"GB-IOW": { "type": "Unitary authority", "name": "Isle of Wight" },
"GB-GLS": { "type": "Two-tier county", "name": "Gloucestershire" },
"GB-SFT": { "type": "Metropolitan district", "name": "Sefton" },
"GB-IVC": { "type": "Council area", "name": "Inverclyde" },
"GB-WND": { "type": "London borough", "name": "Wandsworth" },
"GB-LEC": { "type": "Two-tier county", "name": "Leicestershire" },
"GB-SWK": { "type": "London borough", "name": "Southwark" },
"GB-YOR": { "type": "Unitary authority", "name": "York" },
"GB-GLG": { "type": "Council area", "name": "Glasgow City" },
"GB-RUT": { "type": "Unitary authority", "name": "Rutland" },
"GB-HMF": { "type": "London borough", "name": "Hammersmith and Fulham" },
"GB-SFK": { "type": "Two-tier county", "name": "Suffolk" },
"GB-LEW": { "type": "London borough", "name": "Lewisham" },
"GB-NYM": { "type": "District council area", "name": "Newry and Mourne" },
"GB-DUD": { "type": "Metropolitan district", "name": "Dudley" },
"GB-CLR": { "type": "District council area", "name": "Coleraine" },
"GB-CWY": { "type": "Unitary authority", "name": "Conwy" },
"GB-SND": { "type": "Metropolitan district", "name": "Sunderland" },
"GB-BPL": { "type": "Unitary authority", "name": "Blackpool" },
"GB-VGL": { "type": "Unitary authority", "name": "Vale of Glamorgan, The" },
"GB-WFT": { "type": "London borough", "name": "Waltham Forest" },
"GB-LND": { "type": "City corporation", "name": "London, City of" },
"GB-CLD": { "type": "Metropolitan district", "name": "Calderdale" },
"GB-GWN": { "type": "Unitary authority", "name": "Gwynedd" },
"GB-DUR": { "type": "Unitary authority", "name": "Durham County" },
"GB-SCT": { "type": "Country", "name": "Scotland" },
"GB-CLK": { "type": "Council area", "name": "Clackmannanshire" },
"GB-ENG": { "type": "Country", "name": "England" },
"GB-MDW": { "type": "Unitary authority", "name": "Medway" },
"GB-SCB": { "type": "Council area", "name": "Scottish Borders, The" },
"GB-DNC": { "type": "Metropolitan district", "name": "Doncaster" },
"GB-TAM": { "type": "Metropolitan district", "name": "Tameside" },
"GB-WGN": { "type": "Metropolitan district", "name": "Wigan" },
"GB-DGY": { "type": "Council area", "name": "Dumfries and Galloway" },
"GB-PTE": { "type": "Unitary authority", "name": "Peterborough" },
"GB-SKP": { "type": "Metropolitan district", "name": "Stockport" },
"GB-NWP": { "type": "Unitary authority", "name": "Newport" },
"GB-ISL": { "type": "London borough", "name": "Islington" },
"GB-SGC": { "type": "Unitary authority", "name": "South Gloucestershire" },
"GB-CAY": { "type": "Unitary authority", "name": "Caerphilly" },
"GB-DGN": { "type": "District council area", "name": "Dungannon and South Tyrone" },
"GB-WKF": { "type": "Metropolitan district", "name": "Wakefield" },
"GB-NWM": { "type": "London borough", "name": "Newham" },
"GB-MDB": { "type": "Unitary authority", "name": "Middlesbrough" },
"GB-CAM": { "type": "Two-tier county", "name": "Cambridgeshire" },
"GB-SWA": { "type": "Unitary authority", "name": "Swansea" },
"GB-DOW": { "type": "District council area", "name": "Down" },
"GB-BLA": { "type": "District council area", "name": "Ballymena" },
"GB-HAV": { "type": "London borough", "name": "Havering" },
"GB-DOR": { "type": "Two-tier county", "name": "Dorset" },