1 package validator
2
3 var iso3166_1_alpha2 = map[string]bool{
4
5 "AF": true, "AX": true, "AL": true, "DZ": true, "AS": true,
6 "AD": true, "AO": true, "AI": true, "AQ": true, "AG": true,
7 "AR": true, "AM": true, "AW": true, "AU": true, "AT": true,
8 "AZ": true, "BS": true, "BH": true, "BD": true, "BB": true,
9 "BY": true, "BE": true, "BZ": true, "BJ": true, "BM": true,
10 "BT": true, "BO": true, "BQ": true, "BA": true, "BW": true,
11 "BV": true, "BR": true, "IO": true, "BN": true, "BG": true,
12 "BF": true, "BI": true, "KH": true, "CM": true, "CA": true,
13 "CV": true, "KY": true, "CF": true, "TD": true, "CL": true,
14 "CN": true, "CX": true, "CC": true, "CO": true, "KM": true,
15 "CG": true, "CD": true, "CK": true, "CR": true, "CI": true,
16 "HR": true, "CU": true, "CW": true, "CY": true, "CZ": true,
17 "DK": true, "DJ": true, "DM": true, "DO": true, "EC": true,
18 "EG": true, "SV": true, "GQ": true, "ER": true, "EE": true,
19 "ET": true, "FK": true, "FO": true, "FJ": true, "FI": true,
20 "FR": true, "GF": true, "PF": true, "TF": true, "GA": true,
21 "GM": true, "GE": true, "DE": true, "GH": true, "GI": true,
22 "GR": true, "GL": true, "GD": true, "GP": true, "GU": true,
23 "GT": true, "GG": true, "GN": true, "GW": true, "GY": true,
24 "HT": true, "HM": true, "VA": true, "HN": true, "HK": true,
25 "HU": true, "IS": true, "IN": true, "ID": true, "IR": true,
26 "IQ": true, "IE": true, "IM": true, "IL": true, "IT": true,
27 "JM": true, "JP": true, "JE": true, "JO": true, "KZ": true,
28 "KE": true, "KI": true, "KP": true, "KR": true, "KW": true,
29 "KG": true, "LA": true, "LV": true, "LB": true, "LS": true,
30 "LR": true, "LY": true, "LI": true, "LT": true, "LU": true,
31 "MO": true, "MK": true, "MG": true, "MW": true, "MY": true,
32 "MV": true, "ML": true, "MT": true, "MH": true, "MQ": true,
33 "MR": true, "MU": true, "YT": true, "MX": true, "FM": true,
34 "MD": true, "MC": true, "MN": true, "ME": true, "MS": true,
35 "MA": true, "MZ": true, "MM": true, "NA": true, "NR": true,
36 "NP": true, "NL": true, "NC": true, "NZ": true, "NI": true,
37 "NE": true, "NG": true, "NU": true, "NF": true, "MP": true,
38 "NO": true, "OM": true, "PK": true, "PW": true, "PS": true,
39 "PA": true, "PG": true, "PY": true, "PE": true, "PH": true,
40 "PN": true, "PL": true, "PT": true, "PR": true, "QA": true,
41 "RE": true, "RO": true, "RU": true, "RW": true, "BL": true,
42 "SH": true, "KN": true, "LC": true, "MF": true, "PM": true,
43 "VC": true, "WS": true, "SM": true, "ST": true, "SA": true,
44 "SN": true, "RS": true, "SC": true, "SL": true, "SG": true,
45 "SX": true, "SK": true, "SI": true, "SB": true, "SO": true,
46 "ZA": true, "GS": true, "SS": true, "ES": true, "LK": true,
47 "SD": true, "SR": true, "SJ": true, "SZ": true, "SE": true,
48 "CH": true, "SY": true, "TW": true, "TJ": true, "TZ": true,
49 "TH": true, "TL": true, "TG": true, "TK": true, "TO": true,
50 "TT": true, "TN": true, "TR": true, "TM": true, "TC": true,
51 "TV": true, "UG": true, "UA": true, "AE": true, "GB": true,
52 "US": true, "UM": true, "UY": true, "UZ": true, "VU": true,
53 "VE": true, "VN": true, "VG": true, "VI": true, "WF": true,
54 "EH": true, "YE": true, "ZM": true, "ZW": true, "XK": true,
55 }
56
57 var iso3166_1_alpha3 = map[string]bool{
58
59 "AFG": true, "ALB": true, "DZA": true, "ASM": true, "AND": true,
60 "AGO": true, "AIA": true, "ATA": true, "ATG": true, "ARG": true,
61 "ARM": true, "ABW": true, "AUS": true, "AUT": true, "AZE": true,
62 "BHS": true, "BHR": true, "BGD": true, "BRB": true, "BLR": true,
63 "BEL": true, "BLZ": true, "BEN": true, "BMU": true, "BTN": true,
64 "BOL": true, "BES": true, "BIH": true, "BWA": true, "BVT": true,
65 "BRA": true, "IOT": true, "BRN": true, "BGR": true, "BFA": true,
66 "BDI": true, "CPV": true, "KHM": true, "CMR": true, "CAN": true,
67 "CYM": true, "CAF": true, "TCD": true, "CHL": true, "CHN": true,
68 "CXR": true, "CCK": true, "COL": true, "COM": true, "COD": true,
69 "COG": true, "COK": true, "CRI": true, "HRV": true, "CUB": true,
70 "CUW": true, "CYP": true, "CZE": true, "CIV": true, "DNK": true,
71 "DJI": true, "DMA": true, "DOM": true, "ECU": true, "EGY": true,
72 "SLV": true, "GNQ": true, "ERI": true, "EST": true, "SWZ": true,
73 "ETH": true, "FLK": true, "FRO": true, "FJI": true, "FIN": true,
74 "FRA": true, "GUF": true, "PYF": true, "ATF": true, "GAB": true,
75 "GMB": true, "GEO": true, "DEU": true, "GHA": true, "GIB": true,
76 "GRC": true, "GRL": true, "GRD": true, "GLP": true, "GUM": true,
77 "GTM": true, "GGY": true, "GIN": true, "GNB": true, "GUY": true,
78 "HTI": true, "HMD": true, "VAT": true, "HND": true, "HKG": true,
79 "HUN": true, "ISL": true, "IND": true, "IDN": true, "IRN": true,
80 "IRQ": true, "IRL": true, "IMN": true, "ISR": true, "ITA": true,
81 "JAM": true, "JPN": true, "JEY": true, "JOR": true, "KAZ": true,
82 "KEN": true, "KIR": true, "PRK": true, "KOR": true, "KWT": true,
83 "KGZ": true, "LAO": true, "LVA": true, "LBN": true, "LSO": true,
84 "LBR": true, "LBY": true, "LIE": true, "LTU": true, "LUX": true,
85 "MAC": true, "MDG": true, "MWI": true, "MYS": true, "MDV": true,
86 "MLI": true, "MLT": true, "MHL": true, "MTQ": true, "MRT": true,
87 "MUS": true, "MYT": true, "MEX": true, "FSM": true, "MDA": true,
88 "MCO": true, "MNG": true, "MNE": true, "MSR": true, "MAR": true,
89 "MOZ": true, "MMR": true, "NAM": true, "NRU": true, "NPL": true,
90 "NLD": true, "NCL": true, "NZL": true, "NIC": true, "NER": true,
91 "NGA": true, "NIU": true, "NFK": true, "MKD": true, "MNP": true,
92 "NOR": true, "OMN": true, "PAK": true, "PLW": true, "PSE": true,
93 "PAN": true, "PNG": true, "PRY": true, "PER": true, "PHL": true,
94 "PCN": true, "POL": true, "PRT": true, "PRI": true, "QAT": true,
95 "ROU": true, "RUS": true, "RWA": true, "REU": true, "BLM": true,
96 "SHN": true, "KNA": true, "LCA": true, "MAF": true, "SPM": true,
97 "VCT": true, "WSM": true, "SMR": true, "STP": true, "SAU": true,
98 "SEN": true, "SRB": true, "SYC": true, "SLE": true, "SGP": true,
99 "SXM": true, "SVK": true, "SVN": true, "SLB": true, "SOM": true,
100 "ZAF": true, "SGS": true, "SSD": true, "ESP": true, "LKA": true,
101 "SDN": true, "SUR": true, "SJM": true, "SWE": true, "CHE": true,
102 "SYR": true, "TWN": true, "TJK": true, "TZA": true, "THA": true,
103 "TLS": true, "TGO": true, "TKL": true, "TON": true, "TTO": true,
104 "TUN": true, "TUR": true, "TKM": true, "TCA": true, "TUV": true,
105 "UGA": true, "UKR": true, "ARE": true, "GBR": true, "UMI": true,
106 "USA": true, "URY": true, "UZB": true, "VUT": true, "VEN": true,
107 "VNM": true, "VGB": true, "VIR": true, "WLF": true, "ESH": true,
108 "YEM": true, "ZMB": true, "ZWE": true, "ALA": true, "UNK": true,
109 }
110 var iso3166_1_alpha_numeric = map[int]bool{
111
112 4: true, 8: true, 12: true, 16: true, 20: true,
113 24: true, 660: true, 10: true, 28: true, 32: true,
114 51: true, 533: true, 36: true, 40: true, 31: true,
115 44: true, 48: true, 50: true, 52: true, 112: true,
116 56: true, 84: true, 204: true, 60: true, 64: true,
117 68: true, 535: true, 70: true, 72: true, 74: true,
118 76: true, 86: true, 96: true, 100: true, 854: true,
119 108: true, 132: true, 116: true, 120: true, 124: true,
120 136: true, 140: true, 148: true, 152: true, 156: true,
121 162: true, 166: true, 170: true, 174: true, 180: true,
122 178: true, 184: true, 188: true, 191: true, 192: true,
123 531: true, 196: true, 203: true, 384: true, 208: true,
124 262: true, 212: true, 214: true, 218: true, 818: true,
125 222: true, 226: true, 232: true, 233: true, 748: true,
126 231: true, 238: true, 234: true, 242: true, 246: true,
127 250: true, 254: true, 258: true, 260: true, 266: true,
128 270: true, 268: true, 276: true, 288: true, 292: true,
129 300: true, 304: true, 308: true, 312: true, 316: true,
130 320: true, 831: true, 324: true, 624: true, 328: true,
131 332: true, 334: true, 336: true, 340: true, 344: true,
132 348: true, 352: true, 356: true, 360: true, 364: true,
133 368: true, 372: true, 833: true, 376: true, 380: true,
134 388: true, 392: true, 832: true, 400: true, 398: true,
135 404: true, 296: true, 408: true, 410: true, 414: true,
136 417: true, 418: true, 428: true, 422: true, 426: true,
137 430: true, 434: true, 438: true, 440: true, 442: true,
138 446: true, 450: true, 454: true, 458: true, 462: true,
139 466: true, 470: true, 584: true, 474: true, 478: true,
140 480: true, 175: true, 484: true, 583: true, 498: true,
141 492: true, 496: true, 499: true, 500: true, 504: true,
142 508: true, 104: true, 516: true, 520: true, 524: true,
143 528: true, 540: true, 554: true, 558: true, 562: true,
144 566: true, 570: true, 574: true, 807: true, 580: true,
145 578: true, 512: true, 586: true, 585: true, 275: true,
146 591: true, 598: true, 600: true, 604: true, 608: true,
147 612: true, 616: true, 620: true, 630: true, 634: true,
148 642: true, 643: true, 646: true, 638: true, 652: true,
149 654: true, 659: true, 662: true, 663: true, 666: true,
150 670: true, 882: true, 674: true, 678: true, 682: true,
151 686: true, 688: true, 690: true, 694: true, 702: true,
152 534: true, 703: true, 705: true, 90: true, 706: true,
153 710: true, 239: true, 728: true, 724: true, 144: true,
154 729: true, 740: true, 744: true, 752: true, 756: true,
155 760: true, 158: true, 762: true, 834: true, 764: true,
156 626: true, 768: true, 772: true, 776: true, 780: true,
157 788: true, 792: true, 795: true, 796: true, 798: true,
158 800: true, 804: true, 784: true, 826: true, 581: true,
159 840: true, 858: true, 860: true, 548: true, 862: true,
160 704: true, 92: true, 850: true, 876: true, 732: true,
161 887: true, 894: true, 716: true, 248: true, 153: true,
162 }
163
164 var iso3166_2 = map[string]bool{
165 "AD-02": true, "AD-03": true, "AD-04": true, "AD-05": true, "AD-06": true,
166 "AD-07": true, "AD-08": true, "AE-AJ": true, "AE-AZ": true, "AE-DU": true,
167 "AE-FU": true, "AE-RK": true, "AE-SH": true, "AE-UQ": true, "AF-BAL": true,
168 "AF-BAM": true, "AF-BDG": true, "AF-BDS": true, "AF-BGL": true, "AF-DAY": true,
169 "AF-FRA": true, "AF-FYB": true, "AF-GHA": true, "AF-GHO": true, "AF-HEL": true,
170 "AF-HER": true, "AF-JOW": true, "AF-KAB": true, "AF-KAN": true, "AF-KAP": true,
171 "AF-KDZ": true, "AF-KHO": true, "AF-KNR": true, "AF-LAG": true, "AF-LOG": true,
172 "AF-NAN": true, "AF-NIM": true, "AF-NUR": true, "AF-PAN": true, "AF-PAR": true,
173 "AF-PIA": true, "AF-PKA": true, "AF-SAM": true, "AF-SAR": true, "AF-TAK": true,
174 "AF-URU": true, "AF-WAR": true, "AF-ZAB": true, "AG-03": true, "AG-04": true,
175 "AG-05": true, "AG-06": true, "AG-07": true, "AG-08": true, "AG-10": true,
176 "AG-11": true, "AL-01": true, "AL-02": true, "AL-03": true, "AL-04": true,
177 "AL-05": true, "AL-06": true, "AL-07": true, "AL-08": true, "AL-09": true,
178 "AL-10": true, "AL-11": true, "AL-12": true, "AL-BR": true, "AL-BU": true,
179 "AL-DI": true, "AL-DL": true, "AL-DR": true, "AL-DV": true, "AL-EL": true,
180 "AL-ER": true, "AL-FR": true, "AL-GJ": true, "AL-GR": true, "AL-HA": true,
181 "AL-KA": true, "AL-KB": true, "AL-KC": true, "AL-KO": true, "AL-KR": true,
182 "AL-KU": true, "AL-LB": true, "AL-LE": true, "AL-LU": true, "AL-MK": true,
183 "AL-MM": true, "AL-MR": true, "AL-MT": true, "AL-PG": true, "AL-PQ": true,
184 "AL-PR": true, "AL-PU": true, "AL-SH": true, "AL-SK": true, "AL-SR": true,
185 "AL-TE": true, "AL-TP": true, "AL-TR": true, "AL-VL": true, "AM-AG": true,
186 "AM-AR": true, "AM-AV": true, "AM-ER": true, "AM-GR": true, "AM-KT": true,
187 "AM-LO": true, "AM-SH": true, "AM-SU": true, "AM-TV": true, "AM-VD": true,
188 "AO-BGO": true, "AO-BGU": true, "AO-BIE": true, "AO-CAB": true, "AO-CCU": true,
189 "AO-CNN": true, "AO-CNO": true, "AO-CUS": true, "AO-HUA": true, "AO-HUI": true,
190 "AO-LNO": true, "AO-LSU": true, "AO-LUA": true, "AO-MAL": true, "AO-MOX": true,
191 "AO-NAM": true, "AO-UIG": true, "AO-ZAI": true, "AR-A": true, "AR-B": true,
192 "AR-C": true, "AR-D": true, "AR-E": true, "AR-F": true, "AR-G": true, "AR-H": true,
193 "AR-J": true, "AR-K": true, "AR-L": true, "AR-M": true, "AR-N": true,
194 "AR-P": true, "AR-Q": true, "AR-R": true, "AR-S": true, "AR-T": true,
195 "AR-U": true, "AR-V": true, "AR-W": true, "AR-X": true, "AR-Y": true,
196 "AR-Z": true, "AT-1": true, "AT-2": true, "AT-3": true, "AT-4": true,
197 "AT-5": true, "AT-6": true, "AT-7": true, "AT-8": true, "AT-9": true,
198 "AU-ACT": true, "AU-NSW": true, "AU-NT": true, "AU-QLD": true, "AU-SA": true,
199 "AU-TAS": true, "AU-VIC": true, "AU-WA": true, "AZ-ABS": true, "AZ-AGA": true,
200 "AZ-AGC": true, "AZ-AGM": true, "AZ-AGS": true, "AZ-AGU": true, "AZ-AST": true,
201 "AZ-BA": true, "AZ-BAB": true, "AZ-BAL": true, "AZ-BAR": true, "AZ-BEY": true,
202 "AZ-BIL": true, "AZ-CAB": true, "AZ-CAL": true, "AZ-CUL": true, "AZ-DAS": true,
203 "AZ-FUZ": true, "AZ-GA": true, "AZ-GAD": true, "AZ-GOR": true, "AZ-GOY": true,
204 "AZ-GYG": true, "AZ-HAC": true, "AZ-IMI": true, "AZ-ISM": true, "AZ-KAL": true,
205 "AZ-KAN": true, "AZ-KUR": true, "AZ-LA": true, "AZ-LAC": true, "AZ-LAN": true,
206 "AZ-LER": true, "AZ-MAS": true, "AZ-MI": true, "AZ-NA": true, "AZ-NEF": true,
207 "AZ-NV": true, "AZ-NX": true, "AZ-OGU": true, "AZ-ORD": true, "AZ-QAB": true,
208 "AZ-QAX": true, "AZ-QAZ": true, "AZ-QBA": true, "AZ-QBI": true, "AZ-QOB": true,
209 "AZ-QUS": true, "AZ-SA": true, "AZ-SAB": true, "AZ-SAD": true, "AZ-SAH": true,
210 "AZ-SAK": true, "AZ-SAL": true, "AZ-SAR": true, "AZ-SAT": true, "AZ-SBN": true,
211 "AZ-SIY": true, "AZ-SKR": true, "AZ-SM": true, "AZ-SMI": true, "AZ-SMX": true,
212 "AZ-SR": true, "AZ-SUS": true, "AZ-TAR": true, "AZ-TOV": true, "AZ-UCA": true,
213 "AZ-XA": true, "AZ-XAC": true, "AZ-XCI": true, "AZ-XIZ": true, "AZ-XVD": true,
214 "AZ-YAR": true, "AZ-YE": true, "AZ-YEV": true, "AZ-ZAN": true, "AZ-ZAQ": true,
215 "AZ-ZAR": true, "BA-01": true, "BA-02": true, "BA-03": true, "BA-04": true,
216 "BA-05": true, "BA-06": true, "BA-07": true, "BA-08": true, "BA-09": true,
217 "BA-10": true, "BA-BIH": true, "BA-BRC": true, "BA-SRP": true, "BB-01": true,
218 "BB-02": true, "BB-03": true, "BB-04": true, "BB-05": true, "BB-06": true,
219 "BB-07": true, "BB-08": true, "BB-09": true, "BB-10": true, "BB-11": true,
220 "BD-01": true, "BD-02": true, "BD-03": true, "BD-04": true, "BD-05": true,
221 "BD-06": true, "BD-07": true, "BD-08": true, "BD-09": true, "BD-10": true,
222 "BD-11": true, "BD-12": true, "BD-13": true, "BD-14": true, "BD-15": true,
223 "BD-16": true, "BD-17": true, "BD-18": true, "BD-19": true, "BD-20": true,
224 "BD-21": true, "BD-22": true, "BD-23": true, "BD-24": true, "BD-25": true,
225 "BD-26": true, "BD-27": true, "BD-28": true, "BD-29": true, "BD-30": true,
226 "BD-31": true, "BD-32": true, "BD-33": true, "BD-34": true, "BD-35": true,
227 "BD-36": true, "BD-37": true, "BD-38": true, "BD-39": true, "BD-40": true,
228 "BD-41": true, "BD-42": true, "BD-43": true, "BD-44": true, "BD-45": true,
229 "BD-46": true, "BD-47": true, "BD-48": true, "BD-49": true, "BD-50": true,
230 "BD-51": true, "BD-52": true, "BD-53": true, "BD-54": true, "BD-55": true,
231 "BD-56": true, "BD-57": true, "BD-58": true, "BD-59": true, "BD-60": true,
232 "BD-61": true, "BD-62": true, "BD-63": true, "BD-64": true, "BD-A": true,
233 "BD-B": true, "BD-C": true, "BD-D": true, "BD-E": true, "BD-F": true,
234 "BD-G": true, "BE-BRU": true, "BE-VAN": true, "BE-VBR": true, "BE-VLG": true,
235 "BE-VLI": true, "BE-VOV": true, "BE-VWV": true, "BE-WAL": true, "BE-WBR": true,
236 "BE-WHT": true, "BE-WLG": true, "BE-WLX": true, "BE-WNA": true, "BF-01": true,
237 "BF-02": true, "BF-03": true, "BF-04": true, "BF-05": true, "BF-06": true,
238 "BF-07": true, "BF-08": true, "BF-09": true, "BF-10": true, "BF-11": true,
239 "BF-12": true, "BF-13": true, "BF-BAL": true, "BF-BAM": true, "BF-BAN": true,
240 "BF-BAZ": true, "BF-BGR": true, "BF-BLG": true, "BF-BLK": true, "BF-COM": true,
241 "BF-GAN": true, "BF-GNA": true, "BF-GOU": true, "BF-HOU": true, "BF-IOB": true,
242 "BF-KAD": true, "BF-KEN": true, "BF-KMD": true, "BF-KMP": true, "BF-KOP": true,
243 "BF-KOS": true, "BF-KOT": true, "BF-KOW": true, "BF-LER": true, "BF-LOR": true,
244 "BF-MOU": true, "BF-NAM": true, "BF-NAO": true, "BF-NAY": true, "BF-NOU": true,
245 "BF-OUB": true, "BF-OUD": true, "BF-PAS": true, "BF-PON": true, "BF-SEN": true,
246 "BF-SIS": true, "BF-SMT": true, "BF-SNG": true, "BF-SOM": true, "BF-SOR": true,
247 "BF-TAP": true, "BF-TUI": true, "BF-YAG": true, "BF-YAT": true, "BF-ZIR": true,
248 "BF-ZON": true, "BF-ZOU": true, "BG-01": true, "BG-02": true, "BG-03": true,
249 "BG-04": true, "BG-05": true, "BG-06": true, "BG-07": true, "BG-08": true,
250 "BG-09": true, "BG-10": true, "BG-11": true, "BG-12": true, "BG-13": true,
251 "BG-14": true, "BG-15": true, "BG-16": true, "BG-17": true, "BG-18": true,
252 "BG-19": true, "BG-20": true, "BG-21": true, "BG-22": true, "BG-23": true,
253 "BG-24": true, "BG-25": true, "BG-26": true, "BG-27": true, "BG-28": true,
254 "BH-13": true, "BH-14": true, "BH-15": true, "BH-16": true, "BH-17": true,
255 "BI-BB": true, "BI-BL": true, "BI-BM": true, "BI-BR": true, "BI-CA": true,
256 "BI-CI": true, "BI-GI": true, "BI-KI": true, "BI-KR": true, "BI-KY": true,
257 "BI-MA": true, "BI-MU": true, "BI-MW": true, "BI-NG": true, "BI-RM": true, "BI-RT": true,
258 "BI-RY": true, "BJ-AK": true, "BJ-AL": true, "BJ-AQ": true, "BJ-BO": true,
259 "BJ-CO": true, "BJ-DO": true, "BJ-KO": true, "BJ-LI": true, "BJ-MO": true,
260 "BJ-OU": true, "BJ-PL": true, "BJ-ZO": true, "BN-BE": true, "BN-BM": true,
261 "BN-TE": true, "BN-TU": true, "BO-B": true, "BO-C": true, "BO-H": true,
262 "BO-L": true, "BO-N": true, "BO-O": true, "BO-P": true, "BO-S": true,
263 "BO-T": true, "BQ-BO": true, "BQ-SA": true, "BQ-SE": true, "BR-AC": true,
264 "BR-AL": true, "BR-AM": true, "BR-AP": true, "BR-BA": true, "BR-CE": true,
265 "BR-DF": true, "BR-ES": true, "BR-FN": true, "BR-GO": true, "BR-MA": true,
266 "BR-MG": true, "BR-MS": true, "BR-MT": true, "BR-PA": true, "BR-PB": true,
267 "BR-PE": true, "BR-PI": true, "BR-PR": true, "BR-RJ": true, "BR-RN": true,
268 "BR-RO": true, "BR-RR": true, "BR-RS": true, "BR-SC": true, "BR-SE": true,
269 "BR-SP": true, "BR-TO": true, "BS-AK": true, "BS-BI": true, "BS-BP": true,
270 "BS-BY": true, "BS-CE": true, "BS-CI": true, "BS-CK": true, "BS-CO": true,
271 "BS-CS": true, "BS-EG": true, "BS-EX": true, "BS-FP": true, "BS-GC": true,
272 "BS-HI": true, "BS-HT": true, "BS-IN": true, "BS-LI": true, "BS-MC": true,
273 "BS-MG": true, "BS-MI": true, "BS-NE": true, "BS-NO": true, "BS-NP": true, "BS-NS": true,
274 "BS-RC": true, "BS-RI": true, "BS-SA": true, "BS-SE": true, "BS-SO": true,
275 "BS-SS": true, "BS-SW": true, "BS-WG": true, "BT-11": true, "BT-12": true,
276 "BT-13": true, "BT-14": true, "BT-15": true, "BT-21": true, "BT-22": true,
277 "BT-23": true, "BT-24": true, "BT-31": true, "BT-32": true, "BT-33": true,
278 "BT-34": true, "BT-41": true, "BT-42": true, "BT-43": true, "BT-44": true,
279 "BT-45": true, "BT-GA": true, "BT-TY": true, "BW-CE": true, "BW-CH": true, "BW-GH": true,
280 "BW-KG": true, "BW-KL": true, "BW-KW": true, "BW-NE": true, "BW-NW": true,
281 "BW-SE": true, "BW-SO": true, "BY-BR": true, "BY-HM": true, "BY-HO": true,
282 "BY-HR": true, "BY-MA": true, "BY-MI": true, "BY-VI": true, "BZ-BZ": true,
283 "BZ-CY": true, "BZ-CZL": true, "BZ-OW": true, "BZ-SC": true, "BZ-TOL": true,
284 "CA-AB": true, "CA-BC": true, "CA-MB": true, "CA-NB": true, "CA-NL": true,
285 "CA-NS": true, "CA-NT": true, "CA-NU": true, "CA-ON": true, "CA-PE": true,
286 "CA-QC": true, "CA-SK": true, "CA-YT": true, "CD-BC": true, "CD-BN": true,
287 "CD-EQ": true, "CD-HK": true, "CD-IT": true, "CD-KA": true, "CD-KC": true, "CD-KE": true, "CD-KG": true, "CD-KN": true,
288 "CD-KW": true, "CD-KS": true, "CD-LU": true, "CD-MA": true, "CD-NK": true, "CD-OR": true, "CD-SA": true, "CD-SK": true,
289 "CD-TA": true, "CD-TO": true, "CF-AC": true, "CF-BB": true, "CF-BGF": true, "CF-BK": true, "CF-HK": true, "CF-HM": true,
290 "CF-HS": true, "CF-KB": true, "CF-KG": true, "CF-LB": true, "CF-MB": true,
291 "CF-MP": true, "CF-NM": true, "CF-OP": true, "CF-SE": true, "CF-UK": true,
292 "CF-VK": true, "CG-11": true, "CG-12": true, "CG-13": true, "CG-14": true,
293 "CG-15": true, "CG-16": true, "CG-2": true, "CG-5": true, "CG-7": true, "CG-8": true,
294 "CG-9": true, "CG-BZV": true, "CH-AG": true, "CH-AI": true, "CH-AR": true,
295 "CH-BE": true, "CH-BL": true, "CH-BS": true, "CH-FR": true, "CH-GE": true,
296 "CH-GL": true, "CH-GR": true, "CH-JU": true, "CH-LU": true, "CH-NE": true,
297 "CH-NW": true, "CH-OW": true, "CH-SG": true, "CH-SH": true, "CH-SO": true,
298 "CH-SZ": true, "CH-TG": true, "CH-TI": true, "CH-UR": true, "CH-VD": true,
299 "CH-VS": true, "CH-ZG": true, "CH-ZH": true, "CI-AB": true, "CI-BS": true,
300 "CI-CM": true, "CI-DN": true, "CI-GD": true, "CI-LC": true, "CI-LG": true,
301 "CI-MG": true, "CI-SM": true, "CI-SV": true, "CI-VB": true, "CI-WR": true,
302 "CI-YM": true, "CI-ZZ": true, "CL-AI": true, "CL-AN": true, "CL-AP": true,
303 "CL-AR": true, "CL-AT": true, "CL-BI": true, "CL-CO": true, "CL-LI": true,
304 "CL-LL": true, "CL-LR": true, "CL-MA": true, "CL-ML": true, "CL-NB": true, "CL-RM": true,
305 "CL-TA": true, "CL-VS": true, "CM-AD": true, "CM-CE": true, "CM-EN": true,
306 "CM-ES": true, "CM-LT": true, "CM-NO": true, "CM-NW": true, "CM-OU": true,
307 "CM-SU": true, "CM-SW": true, "CN-AH": true, "CN-BJ": true, "CN-CQ": true,
308 "CN-FJ": true, "CN-GS": true, "CN-GD": true, "CN-GX": true, "CN-GZ": true,
309 "CN-HI": true, "CN-HE": true, "CN-HL": true, "CN-HA": true, "CN-HB": true,
310 "CN-HN": true, "CN-JS": true, "CN-JX": true, "CN-JL": true, "CN-LN": true,
311 "CN-NM": true, "CN-NX": true, "CN-QH": true, "CN-SN": true, "CN-SD": true, "CN-SH": true,
312 "CN-SX": true, "CN-SC": true, "CN-TJ": true, "CN-XJ": true, "CN-XZ": true, "CN-YN": true,
313 "CN-ZJ": true, "CO-AMA": true, "CO-ANT": true, "CO-ARA": true, "CO-ATL": true,
314 "CO-BOL": true, "CO-BOY": true, "CO-CAL": true, "CO-CAQ": true, "CO-CAS": true,
315 "CO-CAU": true, "CO-CES": true, "CO-CHO": true, "CO-COR": true, "CO-CUN": true,
316 "CO-DC": true, "CO-GUA": true, "CO-GUV": true, "CO-HUI": true, "CO-LAG": true,
317 "CO-MAG": true, "CO-MET": true, "CO-NAR": true, "CO-NSA": true, "CO-PUT": true,
318 "CO-QUI": true, "CO-RIS": true, "CO-SAN": true, "CO-SAP": true, "CO-SUC": true,
319 "CO-TOL": true, "CO-VAC": true, "CO-VAU": true, "CO-VID": true, "CR-A": true,
320 "CR-C": true, "CR-G": true, "CR-H": true, "CR-L": true, "CR-P": true,
321 "CR-SJ": true, "CU-01": true, "CU-02": true, "CU-03": true, "CU-04": true,
322 "CU-05": true, "CU-06": true, "CU-07": true, "CU-08": true, "CU-09": true,
323 "CU-10": true, "CU-11": true, "CU-12": true, "CU-13": true, "CU-14": true, "CU-15": true,
324 "CU-16": true, "CU-99": true, "CV-B": true, "CV-BR": true, "CV-BV": true, "CV-CA": true,
325 "CV-CF": true, "CV-CR": true, "CV-MA": true, "CV-MO": true, "CV-PA": true,
326 "CV-PN": true, "CV-PR": true, "CV-RB": true, "CV-RG": true, "CV-RS": true,
327 "CV-S": true, "CV-SD": true, "CV-SF": true, "CV-SL": true, "CV-SM": true,
328 "CV-SO": true, "CV-SS": true, "CV-SV": true, "CV-TA": true, "CV-TS": true,
329 "CY-01": true, "CY-02": true, "CY-03": true, "CY-04": true, "CY-05": true,
330 "CY-06": true, "CZ-10": true, "CZ-101": true, "CZ-102": true, "CZ-103": true,
331 "CZ-104": true, "CZ-105": true, "CZ-106": true, "CZ-107": true, "CZ-108": true,
332 "CZ-109": true, "CZ-110": true, "CZ-111": true, "CZ-112": true, "CZ-113": true,
333 "CZ-114": true, "CZ-115": true, "CZ-116": true, "CZ-117": true, "CZ-118": true,
334 "CZ-119": true, "CZ-120": true, "CZ-121": true, "CZ-122": true, "CZ-20": true,
335 "CZ-201": true, "CZ-202": true, "CZ-203": true, "CZ-204": true, "CZ-205": true,
336 "CZ-206": true, "CZ-207": true, "CZ-208": true, "CZ-209": true, "CZ-20A": true,
337 "CZ-20B": true, "CZ-20C": true, "CZ-31": true, "CZ-311": true, "CZ-312": true,
338 "CZ-313": true, "CZ-314": true, "CZ-315": true, "CZ-316": true, "CZ-317": true,
339 "CZ-32": true, "CZ-321": true, "CZ-322": true, "CZ-323": true, "CZ-324": true,
340 "CZ-325": true, "CZ-326": true, "CZ-327": true, "CZ-41": true, "CZ-411": true,
341 "CZ-412": true, "CZ-413": true, "CZ-42": true, "CZ-421": true, "CZ-422": true,
342 "CZ-423": true, "CZ-424": true, "CZ-425": true, "CZ-426": true, "CZ-427": true,
343 "CZ-51": true, "CZ-511": true, "CZ-512": true, "CZ-513": true, "CZ-514": true,
344 "CZ-52": true, "CZ-521": true, "CZ-522": true, "CZ-523": true, "CZ-524": true,
345 "CZ-525": true, "CZ-53": true, "CZ-531": true, "CZ-532": true, "CZ-533": true,
346 "CZ-534": true, "CZ-63": true, "CZ-631": true, "CZ-632": true, "CZ-633": true,
347 "CZ-634": true, "CZ-635": true, "CZ-64": true, "CZ-641": true, "CZ-642": true,
348 "CZ-643": true, "CZ-644": true, "CZ-645": true, "CZ-646": true, "CZ-647": true,
349 "CZ-71": true, "CZ-711": true, "CZ-712": true, "CZ-713": true, "CZ-714": true,
350 "CZ-715": true, "CZ-72": true, "CZ-721": true, "CZ-722": true, "CZ-723": true,
351 "CZ-724": true, "CZ-80": true, "CZ-801": true, "CZ-802": true, "CZ-803": true,
352 "CZ-804": true, "CZ-805": true, "CZ-806": true, "DE-BB": true, "DE-BE": true,
353 "DE-BW": true, "DE-BY": true, "DE-HB": true, "DE-HE": true, "DE-HH": true,
354 "DE-MV": true, "DE-NI": true, "DE-NW": true, "DE-RP": true, "DE-SH": true,
355 "DE-SL": true, "DE-SN": true, "DE-ST": true, "DE-TH": true, "DJ-AR": true,
356 "DJ-AS": true, "DJ-DI": true, "DJ-DJ": true, "DJ-OB": true, "DJ-TA": true,
357 "DK-81": true, "DK-82": true, "DK-83": true, "DK-84": true, "DK-85": true,
358 "DM-01": true, "DM-02": true, "DM-03": true, "DM-04": true, "DM-05": true,
359 "DM-06": true, "DM-07": true, "DM-08": true, "DM-09": true, "DM-10": true,
360 "DO-01": true, "DO-02": true, "DO-03": true, "DO-04": true, "DO-05": true,
361 "DO-06": true, "DO-07": true, "DO-08": true, "DO-09": true, "DO-10": true,
362 "DO-11": true, "DO-12": true, "DO-13": true, "DO-14": true, "DO-15": true,
363 "DO-16": true, "DO-17": true, "DO-18": true, "DO-19": true, "DO-20": true,
364 "DO-21": true, "DO-22": true, "DO-23": true, "DO-24": true, "DO-25": true,
365 "DO-26": true, "DO-27": true, "DO-28": true, "DO-29": true, "DO-30": true, "DO-31": true,
366 "DZ-01": true, "DZ-02": true, "DZ-03": true, "DZ-04": true, "DZ-05": true,
367 "DZ-06": true, "DZ-07": true, "DZ-08": true, "DZ-09": true, "DZ-10": true,
368 "DZ-11": true, "DZ-12": true, "DZ-13": true, "DZ-14": true, "DZ-15": true,
369 "DZ-16": true, "DZ-17": true, "DZ-18": true, "DZ-19": true, "DZ-20": true,
370 "DZ-21": true, "DZ-22": true, "DZ-23": true, "DZ-24": true, "DZ-25": true,
371 "DZ-26": true, "DZ-27": true, "DZ-28": true, "DZ-29": true, "DZ-30": true,
372 "DZ-31": true, "DZ-32": true, "DZ-33": true, "DZ-34": true, "DZ-35": true,
373 "DZ-36": true, "DZ-37": true, "DZ-38": true, "DZ-39": true, "DZ-40": true,
374 "DZ-41": true, "DZ-42": true, "DZ-43": true, "DZ-44": true, "DZ-45": true,
375 "DZ-46": true, "DZ-47": true, "DZ-48": true, "DZ-49": true, "DZ-51": true,
376 "DZ-53": true, "DZ-55": true, "DZ-56": true, "DZ-57": true, "EC-A": true, "EC-B": true,
377 "EC-C": true, "EC-D": true, "EC-E": true, "EC-F": true, "EC-G": true,
378 "EC-H": true, "EC-I": true, "EC-L": true, "EC-M": true, "EC-N": true,
379 "EC-O": true, "EC-P": true, "EC-R": true, "EC-S": true, "EC-SD": true,
380 "EC-SE": true, "EC-T": true, "EC-U": true, "EC-W": true, "EC-X": true,
381 "EC-Y": true, "EC-Z": true, "EE-37": true, "EE-39": true, "EE-44": true, "EE-45": true,
382 "EE-49": true, "EE-50": true, "EE-51": true, "EE-52": true, "EE-56": true, "EE-57": true,
383 "EE-59": true, "EE-60": true, "EE-64": true, "EE-65": true, "EE-67": true, "EE-68": true,
384 "EE-70": true, "EE-71": true, "EE-74": true, "EE-78": true, "EE-79": true, "EE-81": true, "EE-82": true,
385 "EE-84": true, "EE-86": true, "EE-87": true, "EG-ALX": true, "EG-ASN": true, "EG-AST": true,
386 "EG-BA": true, "EG-BH": true, "EG-BNS": true, "EG-C": true, "EG-DK": true,
387 "EG-DT": true, "EG-FYM": true, "EG-GH": true, "EG-GZ": true, "EG-HU": true,
388 "EG-IS": true, "EG-JS": true, "EG-KB": true, "EG-KFS": true, "EG-KN": true,
389 "EG-LX": true, "EG-MN": true, "EG-MNF": true, "EG-MT": true, "EG-PTS": true, "EG-SHG": true,
390 "EG-SHR": true, "EG-SIN": true, "EG-SU": true, "EG-SUZ": true, "EG-WAD": true,
391 "ER-AN": true, "ER-DK": true, "ER-DU": true, "ER-GB": true, "ER-MA": true,
392 "ER-SK": true, "ES-A": true, "ES-AB": true, "ES-AL": true, "ES-AN": true,
393 "ES-AR": true, "ES-AS": true, "ES-AV": true, "ES-B": true, "ES-BA": true,
394 "ES-BI": true, "ES-BU": true, "ES-C": true, "ES-CA": true, "ES-CB": true,
395 "ES-CC": true, "ES-CE": true, "ES-CL": true, "ES-CM": true, "ES-CN": true,
396 "ES-CO": true, "ES-CR": true, "ES-CS": true, "ES-CT": true, "ES-CU": true,
397 "ES-EX": true, "ES-GA": true, "ES-GC": true, "ES-GI": true, "ES-GR": true,
398 "ES-GU": true, "ES-H": true, "ES-HU": true, "ES-IB": true, "ES-J": true,
399 "ES-L": true, "ES-LE": true, "ES-LO": true, "ES-LU": true, "ES-M": true,
400 "ES-MA": true, "ES-MC": true, "ES-MD": true, "ES-ML": true, "ES-MU": true,
401 "ES-NA": true, "ES-NC": true, "ES-O": true, "ES-OR": true, "ES-P": true,
402 "ES-PM": true, "ES-PO": true, "ES-PV": true, "ES-RI": true, "ES-S": true,
403 "ES-SA": true, "ES-SE": true, "ES-SG": true, "ES-SO": true, "ES-SS": true,
404 "ES-T": true, "ES-TE": true, "ES-TF": true, "ES-TO": true, "ES-V": true,
405 "ES-VA": true, "ES-VC": true, "ES-VI": true, "ES-Z": true, "ES-ZA": true,
406 "ET-AA": true, "ET-AF": true, "ET-AM": true, "ET-BE": true, "ET-DD": true,
407 "ET-GA": true, "ET-HA": true, "ET-OR": true, "ET-SN": true, "ET-SO": true,
408 "ET-TI": true, "FI-01": true, "FI-02": true, "FI-03": true, "FI-04": true,
409 "FI-05": true, "FI-06": true, "FI-07": true, "FI-08": true, "FI-09": true,
410 "FI-10": true, "FI-11": true, "FI-12": true, "FI-13": true, "FI-14": true,
411 "FI-15": true, "FI-16": true, "FI-17": true, "FI-18": true, "FI-19": true,
412 "FJ-C": true, "FJ-E": true, "FJ-N": true, "FJ-R": true, "FJ-W": true,
413 "FM-KSA": true, "FM-PNI": true, "FM-TRK": true, "FM-YAP": true, "FR-01": true,
414 "FR-02": true, "FR-03": true, "FR-04": true, "FR-05": true, "FR-06": true,
415 "FR-07": true, "FR-08": true, "FR-09": true, "FR-10": true, "FR-11": true,
416 "FR-12": true, "FR-13": true, "FR-14": true, "FR-15": true, "FR-16": true,
417 "FR-17": true, "FR-18": true, "FR-19": true, "FR-20R": true, "FR-21": true, "FR-22": true,
418 "FR-23": true, "FR-24": true, "FR-25": true, "FR-26": true, "FR-27": true,
419 "FR-28": true, "FR-29": true, "FR-2A": true, "FR-2B": true, "FR-30": true,
420 "FR-31": true, "FR-32": true, "FR-33": true, "FR-34": true, "FR-35": true,
421 "FR-36": true, "FR-37": true, "FR-38": true, "FR-39": true, "FR-40": true,
422 "FR-41": true, "FR-42": true, "FR-43": true, "FR-44": true, "FR-45": true,
423 "FR-46": true, "FR-47": true, "FR-48": true, "FR-49": true, "FR-50": true,
424 "FR-51": true, "FR-52": true, "FR-53": true, "FR-54": true, "FR-55": true,
425 "FR-56": true, "FR-57": true, "FR-58": true, "FR-59": true, "FR-60": true,
426 "FR-61": true, "FR-62": true, "FR-63": true, "FR-64": true, "FR-65": true,
427 "FR-66": true, "FR-67": true, "FR-68": true, "FR-69": true, "FR-70": true,
428 "FR-71": true, "FR-72": true, "FR-73": true, "FR-74": true, "FR-75": true,
429 "FR-76": true, "FR-77": true, "FR-78": true, "FR-79": true, "FR-80": true,
430 "FR-81": true, "FR-82": true, "FR-83": true, "FR-84": true, "FR-85": true,
431 "FR-86": true, "FR-87": true, "FR-88": true, "FR-89": true, "FR-90": true,
432 "FR-91": true, "FR-92": true, "FR-93": true, "FR-94": true, "FR-95": true,
433 "FR-ARA": true, "FR-BFC": true, "FR-BL": true, "FR-BRE": true, "FR-COR": true,
434 "FR-CP": true, "FR-CVL": true, "FR-GES": true, "FR-GF": true, "FR-GP": true,
435 "FR-GUA": true, "FR-HDF": true, "FR-IDF": true, "FR-LRE": true, "FR-MAY": true,
436 "FR-MF": true, "FR-MQ": true, "FR-NAQ": true, "FR-NC": true, "FR-NOR": true,
437 "FR-OCC": true, "FR-PAC": true, "FR-PDL": true, "FR-PF": true, "FR-PM": true,
438 "FR-RE": true, "FR-TF": true, "FR-WF": true, "FR-YT": true, "GA-1": true,
439 "GA-2": true, "GA-3": true, "GA-4": true, "GA-5": true, "GA-6": true,
440 "GA-7": true, "GA-8": true, "GA-9": true, "GB-ABC": true, "GB-ABD": true,
441 "GB-ABE": true, "GB-AGB": true, "GB-AGY": true, "GB-AND": true, "GB-ANN": true,
442 "GB-ANS": true, "GB-BAS": true, "GB-BBD": true, "GB-BDF": true, "GB-BDG": true,
443 "GB-BEN": true, "GB-BEX": true, "GB-BFS": true, "GB-BGE": true, "GB-BGW": true,
444 "GB-BIR": true, "GB-BKM": true, "GB-BMH": true, "GB-BNE": true, "GB-BNH": true,
445 "GB-BNS": true, "GB-BOL": true, "GB-BPL": true, "GB-BRC": true, "GB-BRD": true,
446 "GB-BRY": true, "GB-BST": true, "GB-BUR": true, "GB-CAM": true, "GB-CAY": true,
447 "GB-CBF": true, "GB-CCG": true, "GB-CGN": true, "GB-CHE": true, "GB-CHW": true,
448 "GB-CLD": true, "GB-CLK": true, "GB-CMA": true, "GB-CMD": true, "GB-CMN": true,
449 "GB-CON": true, "GB-COV": true, "GB-CRF": true, "GB-CRY": true, "GB-CWY": true,
450 "GB-DAL": true, "GB-DBY": true, "GB-DEN": true, "GB-DER": true, "GB-DEV": true,
451 "GB-DGY": true, "GB-DNC": true, "GB-DND": true, "GB-DOR": true, "GB-DRS": true,
452 "GB-DUD": true, "GB-DUR": true, "GB-EAL": true, "GB-EAW": true, "GB-EAY": true,
453 "GB-EDH": true, "GB-EDU": true, "GB-ELN": true, "GB-ELS": true, "GB-ENF": true,
454 "GB-ENG": true, "GB-ERW": true, "GB-ERY": true, "GB-ESS": true, "GB-ESX": true,
455 "GB-FAL": true, "GB-FIF": true, "GB-FLN": true, "GB-FMO": true, "GB-GAT": true,
456 "GB-GBN": true, "GB-GLG": true, "GB-GLS": true, "GB-GRE": true, "GB-GWN": true,
457 "GB-HAL": true, "GB-HAM": true, "GB-HAV": true, "GB-HCK": true, "GB-HEF": true,
458 "GB-HIL": true, "GB-HLD": true, "GB-HMF": true, "GB-HNS": true, "GB-HPL": true,
459 "GB-HRT": true, "GB-HRW": true, "GB-HRY": true, "GB-IOS": true, "GB-IOW": true,
460 "GB-ISL": true, "GB-IVC": true, "GB-KEC": true, "GB-KEN": true, "GB-KHL": true,
461 "GB-KIR": true, "GB-KTT": true, "GB-KWL": true, "GB-LAN": true, "GB-LBC": true,
462 "GB-LBH": true, "GB-LCE": true, "GB-LDS": true, "GB-LEC": true, "GB-LEW": true,
463 "GB-LIN": true, "GB-LIV": true, "GB-LND": true, "GB-LUT": true, "GB-MAN": true,
464 "GB-MDB": true, "GB-MDW": true, "GB-MEA": true, "GB-MIK": true, "GD-01": true,
465 "GB-MLN": true, "GB-MON": true, "GB-MRT": true, "GB-MRY": true, "GB-MTY": true,
466 "GB-MUL": true, "GB-NAY": true, "GB-NBL": true, "GB-NEL": true, "GB-NET": true,
467 "GB-NFK": true, "GB-NGM": true, "GB-NIR": true, "GB-NLK": true, "GB-NLN": true,
468 "GB-NMD": true, "GB-NSM": true, "GB-NTH": true, "GB-NTL": true, "GB-NTT": true,
469 "GB-NTY": true, "GB-NWM": true, "GB-NWP": true, "GB-NYK": true, "GB-OLD": true,
470 "GB-ORK": true, "GB-OXF": true, "GB-PEM": true, "GB-PKN": true, "GB-PLY": true,
471 "GB-POL": true, "GB-POR": true, "GB-POW": true, "GB-PTE": true, "GB-RCC": true,
472 "GB-RCH": true, "GB-RCT": true, "GB-RDB": true, "GB-RDG": true, "GB-RFW": true,
473 "GB-RIC": true, "GB-ROT": true, "GB-RUT": true, "GB-SAW": true, "GB-SAY": true,
474 "GB-SCB": true, "GB-SCT": true, "GB-SFK": true, "GB-SFT": true, "GB-SGC": true,
475 "GB-SHF": true, "GB-SHN": true, "GB-SHR": true, "GB-SKP": true, "GB-SLF": true,
476 "GB-SLG": true, "GB-SLK": true, "GB-SND": true, "GB-SOL": true, "GB-SOM": true,
477 "GB-SOS": true, "GB-SRY": true, "GB-STE": true, "GB-STG": true, "GB-STH": true,
478 "GB-STN": true, "GB-STS": true, "GB-STT": true, "GB-STY": true, "GB-SWA": true,
479 "GB-SWD": true, "GB-SWK": true, "GB-TAM": true, "GB-TFW": true, "GB-THR": true,
480 "GB-TOB": true, "GB-TOF": true, "GB-TRF": true, "GB-TWH": true, "GB-UKM": true,
481 "GB-VGL": true, "GB-WAR": true, "GB-WBK": true, "GB-WDU": true, "GB-WFT": true,
482 "GB-WGN": true, "GB-WIL": true, "GB-WKF": true, "GB-WLL": true, "GB-WLN": true,
483 "GB-WLS": true, "GB-WLV": true, "GB-WND": true, "GB-WNM": true, "GB-WOK": true,
484 "GB-WOR": true, "GB-WRL": true, "GB-WRT": true, "GB-WRX": true, "GB-WSM": true,
485 "GB-WSX": true, "GB-YOR": true, "GB-ZET": true, "GD-02": true, "GD-03": true,
486 "GD-04": true, "GD-05": true, "GD-06": true, "GD-10": true, "GE-AB": true,
487 "GE-AJ": true, "GE-GU": true, "GE-IM": true, "GE-KA": true, "GE-KK": true,
488 "GE-MM": true, "GE-RL": true, "GE-SJ": true, "GE-SK": true, "GE-SZ": true,
489 "GE-TB": true, "GH-AA": true, "GH-AH": true, "GH-AF": true, "GH-BA": true, "GH-BO": true, "GH-BE": true, "GH-CP": true,
490 "GH-EP": true, "GH-NP": true, "GH-TV": true, "GH-UE": true, "GH-UW": true,
491 "GH-WP": true, "GL-AV": true, "GL-KU": true, "GL-QA": true, "GL-QT": true, "GL-QE": true, "GL-SM": true,
492 "GM-B": true, "GM-L": true, "GM-M": true, "GM-N": true, "GM-U": true,
493 "GM-W": true, "GN-B": true, "GN-BE": true, "GN-BF": true, "GN-BK": true,
494 "GN-C": true, "GN-CO": true, "GN-D": true, "GN-DB": true, "GN-DI": true,
495 "GN-DL": true, "GN-DU": true, "GN-F": true, "GN-FA": true, "GN-FO": true,
496 "GN-FR": true, "GN-GA": true, "GN-GU": true, "GN-K": true, "GN-KA": true,
497 "GN-KB": true, "GN-KD": true, "GN-KE": true, "GN-KN": true, "GN-KO": true,
498 "GN-KS": true, "GN-L": true, "GN-LA": true, "GN-LE": true, "GN-LO": true,
499 "GN-M": true, "GN-MC": true, "GN-MD": true, "GN-ML": true, "GN-MM": true,
500 "GN-N": true, "GN-NZ": true, "GN-PI": true, "GN-SI": true, "GN-TE": true,
501 "GN-TO": true, "GN-YO": true, "GQ-AN": true, "GQ-BN": true, "GQ-BS": true,
502 "GQ-C": true, "GQ-CS": true, "GQ-I": true, "GQ-KN": true, "GQ-LI": true,
503 "GQ-WN": true, "GR-01": true, "GR-03": true, "GR-04": true, "GR-05": true,
504 "GR-06": true, "GR-07": true, "GR-11": true, "GR-12": true, "GR-13": true,
505 "GR-14": true, "GR-15": true, "GR-16": true, "GR-17": true, "GR-21": true,
506 "GR-22": true, "GR-23": true, "GR-24": true, "GR-31": true, "GR-32": true,
507 "GR-33": true, "GR-34": true, "GR-41": true, "GR-42": true, "GR-43": true,
508 "GR-44": true, "GR-51": true, "GR-52": true, "GR-53": true, "GR-54": true,
509 "GR-55": true, "GR-56": true, "GR-57": true, "GR-58": true, "GR-59": true,
510 "GR-61": true, "GR-62": true, "GR-63": true, "GR-64": true, "GR-69": true,
511 "GR-71": true, "GR-72": true, "GR-73": true, "GR-81": true, "GR-82": true,
512 "GR-83": true, "GR-84": true, "GR-85": true, "GR-91": true, "GR-92": true,
513 "GR-93": true, "GR-94": true, "GR-A": true, "GR-A1": true, "GR-B": true,
514 "GR-C": true, "GR-D": true, "GR-E": true, "GR-F": true, "GR-G": true,
515 "GR-H": true, "GR-I": true, "GR-J": true, "GR-K": true, "GR-L": true,
516 "GR-M": true, "GT-01": true, "GT-02": true, "GT-03": true, "GT-04": true,
517 "GT-05": true, "GT-06": true, "GT-07": true, "GT-08": true, "GT-09": true,
518 "GT-10": true, "GT-11": true, "GT-12": true, "GT-13": true, "GT-14": true,
519 "GT-15": true, "GT-16": true, "GT-17": true, "GT-18": true, "GT-19": true,
520 "GT-20": true, "GT-21": true, "GT-22": true, "GW-BA": true, "GW-BL": true,
521 "GW-BM": true, "GW-BS": true, "GW-CA": true, "GW-GA": true, "GW-L": true,
522 "GW-N": true, "GW-OI": true, "GW-QU": true, "GW-S": true, "GW-TO": true,
523 "GY-BA": true, "GY-CU": true, "GY-DE": true, "GY-EB": true, "GY-ES": true,
524 "GY-MA": true, "GY-PM": true, "GY-PT": true, "GY-UD": true, "GY-UT": true,
525 "HN-AT": true, "HN-CH": true, "HN-CL": true, "HN-CM": true, "HN-CP": true,
526 "HN-CR": true, "HN-EP": true, "HN-FM": true, "HN-GD": true, "HN-IB": true,
527 "HN-IN": true, "HN-LE": true, "HN-LP": true, "HN-OC": true, "HN-OL": true,
528 "HN-SB": true, "HN-VA": true, "HN-YO": true, "HR-01": true, "HR-02": true,
529 "HR-03": true, "HR-04": true, "HR-05": true, "HR-06": true, "HR-07": true,
530 "HR-08": true, "HR-09": true, "HR-10": true, "HR-11": true, "HR-12": true,
531 "HR-13": true, "HR-14": true, "HR-15": true, "HR-16": true, "HR-17": true,
532 "HR-18": true, "HR-19": true, "HR-20": true, "HR-21": true, "HT-AR": true,
533 "HT-CE": true, "HT-GA": true, "HT-ND": true, "HT-NE": true, "HT-NO": true, "HT-NI": true,
534 "HT-OU": true, "HT-SD": true, "HT-SE": true, "HU-BA": true, "HU-BC": true,
535 "HU-BE": true, "HU-BK": true, "HU-BU": true, "HU-BZ": true, "HU-CS": true,
536 "HU-DE": true, "HU-DU": true, "HU-EG": true, "HU-ER": true, "HU-FE": true,
537 "HU-GS": true, "HU-GY": true, "HU-HB": true, "HU-HE": true, "HU-HV": true,
538 "HU-JN": true, "HU-KE": true, "HU-KM": true, "HU-KV": true, "HU-MI": true,
539 "HU-NK": true, "HU-NO": true, "HU-NY": true, "HU-PE": true, "HU-PS": true,
540 "HU-SD": true, "HU-SF": true, "HU-SH": true, "HU-SK": true, "HU-SN": true,
541 "HU-SO": true, "HU-SS": true, "HU-ST": true, "HU-SZ": true, "HU-TB": true,
542 "HU-TO": true, "HU-VA": true, "HU-VE": true, "HU-VM": true, "HU-ZA": true,
543 "HU-ZE": true, "ID-AC": true, "ID-BA": true, "ID-BB": true, "ID-BE": true,
544 "ID-BT": true, "ID-GO": true, "ID-IJ": true, "ID-JA": true, "ID-JB": true,
545 "ID-JI": true, "ID-JK": true, "ID-JT": true, "ID-JW": true, "ID-KA": true,
546 "ID-KB": true, "ID-KI": true, "ID-KU": true, "ID-KR": true, "ID-KS": true,
547 "ID-KT": true, "ID-LA": true, "ID-MA": true, "ID-ML": true, "ID-MU": true,
548 "ID-NB": true, "ID-NT": true, "ID-NU": true, "ID-PA": true, "ID-PB": true,
549 "ID-PE": true, "ID-PP": true, "ID-PS": true, "ID-PT": true, "ID-RI": true,
550 "ID-SA": true, "ID-SB": true, "ID-SG": true, "ID-SL": true, "ID-SM": true,
551 "ID-SN": true, "ID-SR": true, "ID-SS": true, "ID-ST": true, "ID-SU": true,
552 "ID-YO": true, "IE-C": true, "IE-CE": true, "IE-CN": true, "IE-CO": true,
553 "IE-CW": true, "IE-D": true, "IE-DL": true, "IE-G": true, "IE-KE": true,
554 "IE-KK": true, "IE-KY": true, "IE-L": true, "IE-LD": true, "IE-LH": true,
555 "IE-LK": true, "IE-LM": true, "IE-LS": true, "IE-M": true, "IE-MH": true,
556 "IE-MN": true, "IE-MO": true, "IE-OY": true, "IE-RN": true, "IE-SO": true,
557 "IE-TA": true, "IE-U": true, "IE-WD": true, "IE-WH": true, "IE-WW": true,
558 "IE-WX": true, "IL-D": true, "IL-HA": true, "IL-JM": true, "IL-M": true,
559 "IL-TA": true, "IL-Z": true, "IN-AN": true, "IN-AP": true, "IN-AR": true,
560 "IN-AS": true, "IN-BR": true, "IN-CH": true, "IN-CT": true, "IN-DH": true,
561 "IN-DL": true, "IN-DN": true, "IN-GA": true, "IN-GJ": true, "IN-HP": true,
562 "IN-HR": true, "IN-JH": true, "IN-JK": true, "IN-KA": true, "IN-KL": true,
563 "IN-LD": true, "IN-MH": true, "IN-ML": true, "IN-MN": true, "IN-MP": true,
564 "IN-MZ": true, "IN-NL": true, "IN-TG": true, "IN-OR": true, "IN-PB": true, "IN-PY": true,
565 "IN-RJ": true, "IN-SK": true, "IN-TN": true, "IN-TR": true, "IN-UP": true,
566 "IN-UT": true, "IN-WB": true, "IQ-AN": true, "IQ-AR": true, "IQ-BA": true,
567 "IQ-BB": true, "IQ-BG": true, "IQ-DA": true, "IQ-DI": true, "IQ-DQ": true,
568 "IQ-KA": true, "IQ-KI": true, "IQ-MA": true, "IQ-MU": true, "IQ-NA": true, "IQ-NI": true,
569 "IQ-QA": true, "IQ-SD": true, "IQ-SW": true, "IQ-SU": true, "IQ-TS": true, "IQ-WA": true,
570 "IR-00": true, "IR-01": true, "IR-02": true, "IR-03": true, "IR-04": true, "IR-05": true,
571 "IR-06": true, "IR-07": true, "IR-08": true, "IR-09": true, "IR-10": true, "IR-11": true,
572 "IR-12": true, "IR-13": true, "IR-14": true, "IR-15": true, "IR-16": true,
573 "IR-17": true, "IR-18": true, "IR-19": true, "IR-20": true, "IR-21": true,
574 "IR-22": true, "IR-23": true, "IR-24": true, "IR-25": true, "IR-26": true,
575 "IR-27": true, "IR-28": true, "IR-29": true, "IR-30": true, "IR-31": true,
576 "IS-0": true, "IS-1": true, "IS-2": true, "IS-3": true, "IS-4": true,
577 "IS-5": true, "IS-6": true, "IS-7": true, "IS-8": true, "IT-21": true,
578 "IT-23": true, "IT-25": true, "IT-32": true, "IT-34": true, "IT-36": true,
579 "IT-42": true, "IT-45": true, "IT-52": true, "IT-55": true, "IT-57": true,
580 "IT-62": true, "IT-65": true, "IT-67": true, "IT-72": true, "IT-75": true,
581 "IT-77": true, "IT-78": true, "IT-82": true, "IT-88": true, "IT-AG": true,
582 "IT-AL": true, "IT-AN": true, "IT-AO": true, "IT-AP": true, "IT-AQ": true,
583 "IT-AR": true, "IT-AT": true, "IT-AV": true, "IT-BA": true, "IT-BG": true,
584 "IT-BI": true, "IT-BL": true, "IT-BN": true, "IT-BO": true, "IT-BR": true,
585 "IT-BS": true, "IT-BT": true, "IT-BZ": true, "IT-CA": true, "IT-CB": true,
586 "IT-CE": true, "IT-CH": true, "IT-CI": true, "IT-CL": true, "IT-CN": true,
587 "IT-CO": true, "IT-CR": true, "IT-CS": true, "IT-CT": true, "IT-CZ": true,
588 "IT-EN": true, "IT-FC": true, "IT-FE": true, "IT-FG": true, "IT-FI": true,
589 "IT-FM": true, "IT-FR": true, "IT-GE": true, "IT-GO": true, "IT-GR": true,
590 "IT-IM": true, "IT-IS": true, "IT-KR": true, "IT-LC": true, "IT-LE": true,
591 "IT-LI": true, "IT-LO": true, "IT-LT": true, "IT-LU": true, "IT-MB": true,
592 "IT-MC": true, "IT-ME": true, "IT-MI": true, "IT-MN": true, "IT-MO": true,
593 "IT-MS": true, "IT-MT": true, "IT-NA": true, "IT-NO": true, "IT-NU": true,
594 "IT-OG": true, "IT-OR": true, "IT-OT": true, "IT-PA": true, "IT-PC": true,
595 "IT-PD": true, "IT-PE": true, "IT-PG": true, "IT-PI": true, "IT-PN": true,
596 "IT-PO": true, "IT-PR": true, "IT-PT": true, "IT-PU": true, "IT-PV": true,
597 "IT-PZ": true, "IT-RA": true, "IT-RC": true, "IT-RE": true, "IT-RG": true,
598 "IT-RI": true, "IT-RM": true, "IT-RN": true, "IT-RO": true, "IT-SA": true,
599 "IT-SI": true, "IT-SO": true, "IT-SP": true, "IT-SR": true, "IT-SS": true,
600 "IT-SV": true, "IT-TA": true, "IT-TE": true, "IT-TN": true, "IT-TO": true,
601 "IT-TP": true, "IT-TR": true, "IT-TS": true, "IT-TV": true, "IT-UD": true,
602 "IT-VA": true, "IT-VB": true, "IT-VC": true, "IT-VE": true, "IT-VI": true,
603 "IT-VR": true, "IT-VS": true, "IT-VT": true, "IT-VV": true, "JM-01": true,
604 "JM-02": true, "JM-03": true, "JM-04": true, "JM-05": true, "JM-06": true,
605 "JM-07": true, "JM-08": true, "JM-09": true, "JM-10": true, "JM-11": true,
606 "JM-12": true, "JM-13": true, "JM-14": true, "JO-AJ": true, "JO-AM": true,
607 "JO-AQ": true, "JO-AT": true, "JO-AZ": true, "JO-BA": true, "JO-IR": true,
608 "JO-JA": true, "JO-KA": true, "JO-MA": true, "JO-MD": true, "JO-MN": true,
609 "JP-01": true, "JP-02": true, "JP-03": true, "JP-04": true, "JP-05": true,
610 "JP-06": true, "JP-07": true, "JP-08": true, "JP-09": true, "JP-10": true,
611 "JP-11": true, "JP-12": true, "JP-13": true, "JP-14": true, "JP-15": true,
612 "JP-16": true, "JP-17": true, "JP-18": true, "JP-19": true, "JP-20": true,
613 "JP-21": true, "JP-22": true, "JP-23": true, "JP-24": true, "JP-25": true,
614 "JP-26": true, "JP-27": true, "JP-28": true, "JP-29": true, "JP-30": true,
615 "JP-31": true, "JP-32": true, "JP-33": true, "JP-34": true, "JP-35": true,
616 "JP-36": true, "JP-37": true, "JP-38": true, "JP-39": true, "JP-40": true,
617 "JP-41": true, "JP-42": true, "JP-43": true, "JP-44": true, "JP-45": true,
618 "JP-46": true, "JP-47": true, "KE-01": true, "KE-02": true, "KE-03": true,
619 "KE-04": true, "KE-05": true, "KE-06": true, "KE-07": true, "KE-08": true,
620 "KE-09": true, "KE-10": true, "KE-11": true, "KE-12": true, "KE-13": true,
621 "KE-14": true, "KE-15": true, "KE-16": true, "KE-17": true, "KE-18": true,
622 "KE-19": true, "KE-20": true, "KE-21": true, "KE-22": true, "KE-23": true,
623 "KE-24": true, "KE-25": true, "KE-26": true, "KE-27": true, "KE-28": true,
624 "KE-29": true, "KE-30": true, "KE-31": true, "KE-32": true, "KE-33": true,
625 "KE-34": true, "KE-35": true, "KE-36": true, "KE-37": true, "KE-38": true,
626 "KE-39": true, "KE-40": true, "KE-41": true, "KE-42": true, "KE-43": true,
627 "KE-44": true, "KE-45": true, "KE-46": true, "KE-47": true, "KG-B": true,
628 "KG-C": true, "KG-GB": true, "KG-GO": true, "KG-J": true, "KG-N": true, "KG-O": true,
629 "KG-T": true, "KG-Y": true, "KH-1": true, "KH-10": true, "KH-11": true,
630 "KH-12": true, "KH-13": true, "KH-14": true, "KH-15": true, "KH-16": true,
631 "KH-17": true, "KH-18": true, "KH-19": true, "KH-2": true, "KH-20": true,
632 "KH-21": true, "KH-22": true, "KH-23": true, "KH-24": true, "KH-3": true,
633 "KH-4": true, "KH-5": true, "KH-6": true, "KH-7": true, "KH-8": true,
634 "KH-9": true, "KI-G": true, "KI-L": true, "KI-P": true, "KM-A": true,
635 "KM-G": true, "KM-M": true, "KN-01": true, "KN-02": true, "KN-03": true,
636 "KN-04": true, "KN-05": true, "KN-06": true, "KN-07": true, "KN-08": true,
637 "KN-09": true, "KN-10": true, "KN-11": true, "KN-12": true, "KN-13": true,
638 "KN-15": true, "KN-K": true, "KN-N": true, "KP-01": true, "KP-02": true,
639 "KP-03": true, "KP-04": true, "KP-05": true, "KP-06": true, "KP-07": true,
640 "KP-08": true, "KP-09": true, "KP-10": true, "KP-13": true, "KR-11": true,
641 "KR-26": true, "KR-27": true, "KR-28": true, "KR-29": true, "KR-30": true,
642 "KR-31": true, "KR-41": true, "KR-42": true, "KR-43": true, "KR-44": true,
643 "KR-45": true, "KR-46": true, "KR-47": true, "KR-48": true, "KR-49": true,
644 "KW-AH": true, "KW-FA": true, "KW-HA": true, "KW-JA": true, "KW-KU": true,
645 "KW-MU": true, "KZ-10": true, "KZ-75": true, "KZ-19": true, "KZ-11": true,
646 "KZ-15": true, "KZ-71": true, "KZ-23": true, "KZ-27": true, "KZ-47": true,
647 "KZ-55": true, "KZ-35": true, "KZ-39": true, "KZ-43": true, "KZ-63": true,
648 "KZ-79": true, "KZ-59": true, "KZ-61": true, "KZ-62": true, "KZ-31": true,
649 "KZ-33": true, "LA-AT": true, "LA-BK": true, "LA-BL": true,
650 "LA-CH": true, "LA-HO": true, "LA-KH": true, "LA-LM": true, "LA-LP": true,
651 "LA-OU": true, "LA-PH": true, "LA-SL": true, "LA-SV": true, "LA-VI": true,
652 "LA-VT": true, "LA-XA": true, "LA-XE": true, "LA-XI": true, "LA-XS": true,
653 "LB-AK": true, "LB-AS": true, "LB-BA": true, "LB-BH": true, "LB-BI": true,
654 "LB-JA": true, "LB-JL": true, "LB-NA": true, "LC-01": true, "LC-02": true,
655 "LC-03": true, "LC-05": true, "LC-06": true, "LC-07": true, "LC-08": true,
656 "LC-10": true, "LC-11": true, "LI-01": true, "LI-02": true,
657 "LI-03": true, "LI-04": true, "LI-05": true, "LI-06": true, "LI-07": true,
658 "LI-08": true, "LI-09": true, "LI-10": true, "LI-11": true, "LK-1": true,
659 "LK-11": true, "LK-12": true, "LK-13": true, "LK-2": true, "LK-21": true,
660 "LK-22": true, "LK-23": true, "LK-3": true, "LK-31": true, "LK-32": true,
661 "LK-33": true, "LK-4": true, "LK-41": true, "LK-42": true, "LK-43": true,
662 "LK-44": true, "LK-45": true, "LK-5": true, "LK-51": true, "LK-52": true,
663 "LK-53": true, "LK-6": true, "LK-61": true, "LK-62": true, "LK-7": true,
664 "LK-71": true, "LK-72": true, "LK-8": true, "LK-81": true, "LK-82": true,
665 "LK-9": true, "LK-91": true, "LK-92": true, "LR-BG": true, "LR-BM": true,
666 "LR-CM": true, "LR-GB": true, "LR-GG": true, "LR-GK": true, "LR-LO": true,
667 "LR-MG": true, "LR-MO": true, "LR-MY": true, "LR-NI": true, "LR-RI": true,
668 "LR-SI": true, "LS-A": true, "LS-B": true, "LS-C": true, "LS-D": true,
669 "LS-E": true, "LS-F": true, "LS-G": true, "LS-H": true, "LS-J": true,
670 "LS-K": true, "LT-AL": true, "LT-KL": true, "LT-KU": true, "LT-MR": true,
671 "LT-PN": true, "LT-SA": true, "LT-TA": true, "LT-TE": true, "LT-UT": true,
672 "LT-VL": true, "LU-CA": true, "LU-CL": true, "LU-DI": true, "LU-EC": true,
673 "LU-ES": true, "LU-GR": true, "LU-LU": true, "LU-ME": true, "LU-RD": true,
674 "LU-RM": true, "LU-VD": true, "LU-WI": true, "LU-D": true, "LU-G": true, "LU-L": true,
675 "LV-001": true, "LV-111": true, "LV-112": true, "LV-113": true,
676 "LV-002": true, "LV-003": true, "LV-004": true, "LV-005": true, "LV-006": true,
677 "LV-007": true, "LV-008": true, "LV-009": true, "LV-010": true, "LV-011": true,
678 "LV-012": true, "LV-013": true, "LV-014": true, "LV-015": true, "LV-016": true,
679 "LV-017": true, "LV-018": true, "LV-019": true, "LV-020": true, "LV-021": true,
680 "LV-022": true, "LV-023": true, "LV-024": true, "LV-025": true, "LV-026": true,
681 "LV-027": true, "LV-028": true, "LV-029": true, "LV-030": true, "LV-031": true,
682 "LV-032": true, "LV-033": true, "LV-034": true, "LV-035": true, "LV-036": true,
683 "LV-037": true, "LV-038": true, "LV-039": true, "LV-040": true, "LV-041": true,
684 "LV-042": true, "LV-043": true, "LV-044": true, "LV-045": true, "LV-046": true,
685 "LV-047": true, "LV-048": true, "LV-049": true, "LV-050": true, "LV-051": true,
686 "LV-052": true, "LV-053": true, "LV-054": true, "LV-055": true, "LV-056": true,
687 "LV-057": true, "LV-058": true, "LV-059": true, "LV-060": true, "LV-061": true,
688 "LV-062": true, "LV-063": true, "LV-064": true, "LV-065": true, "LV-066": true,
689 "LV-067": true, "LV-068": true, "LV-069": true, "LV-070": true, "LV-071": true,
690 "LV-072": true, "LV-073": true, "LV-074": true, "LV-075": true, "LV-076": true,
691 "LV-077": true, "LV-078": true, "LV-079": true, "LV-080": true, "LV-081": true,
692 "LV-082": true, "LV-083": true, "LV-084": true, "LV-085": true, "LV-086": true,
693 "LV-087": true, "LV-088": true, "LV-089": true, "LV-090": true, "LV-091": true,
694 "LV-092": true, "LV-093": true, "LV-094": true, "LV-095": true, "LV-096": true,
695 "LV-097": true, "LV-098": true, "LV-099": true, "LV-100": true, "LV-101": true,
696 "LV-102": true, "LV-103": true, "LV-104": true, "LV-105": true, "LV-106": true,
697 "LV-107": true, "LV-108": true, "LV-109": true, "LV-110": true, "LV-DGV": true,
698 "LV-JEL": true, "LV-JKB": true, "LV-JUR": true, "LV-LPX": true, "LV-REZ": true,
699 "LV-RIX": true, "LV-VEN": true, "LV-VMR": true, "LY-BA": true, "LY-BU": true,
700 "LY-DR": true, "LY-GT": true, "LY-JA": true, "LY-JB": true, "LY-JG": true,
701 "LY-JI": true, "LY-JU": true, "LY-KF": true, "LY-MB": true, "LY-MI": true,
702 "LY-MJ": true, "LY-MQ": true, "LY-NL": true, "LY-NQ": true, "LY-SB": true,
703 "LY-SR": true, "LY-TB": true, "LY-WA": true, "LY-WD": true, "LY-WS": true,
704 "LY-ZA": true, "MA-01": true, "MA-02": true, "MA-03": true, "MA-04": true,
705 "MA-05": true, "MA-06": true, "MA-07": true, "MA-08": true, "MA-09": true,
706 "MA-10": true, "MA-11": true, "MA-12": true, "MA-13": true, "MA-14": true,
707 "MA-15": true, "MA-16": true, "MA-AGD": true, "MA-AOU": true, "MA-ASZ": true,
708 "MA-AZI": true, "MA-BEM": true, "MA-BER": true, "MA-BES": true, "MA-BOD": true,
709 "MA-BOM": true, "MA-CAS": true, "MA-CHE": true, "MA-CHI": true, "MA-CHT": true,
710 "MA-ERR": true, "MA-ESI": true, "MA-ESM": true, "MA-FAH": true, "MA-FES": true,
711 "MA-FIG": true, "MA-GUE": true, "MA-HAJ": true, "MA-HAO": true, "MA-HOC": true,
712 "MA-IFR": true, "MA-INE": true, "MA-JDI": true, "MA-JRA": true, "MA-KEN": true,
713 "MA-KES": true, "MA-KHE": true, "MA-KHN": true, "MA-KHO": true, "MA-LAA": true,
714 "MA-LAR": true, "MA-MED": true, "MA-MEK": true, "MA-MMD": true, "MA-MMN": true,
715 "MA-MOH": true, "MA-MOU": true, "MA-NAD": true, "MA-NOU": true, "MA-OUA": true,
716 "MA-OUD": true, "MA-OUJ": true, "MA-RAB": true, "MA-SAF": true, "MA-SAL": true,
717 "MA-SEF": true, "MA-SET": true, "MA-SIK": true, "MA-SKH": true, "MA-SYB": true,
718 "MA-TAI": true, "MA-TAO": true, "MA-TAR": true, "MA-TAT": true, "MA-TAZ": true,
719 "MA-TET": true, "MA-TIZ": true, "MA-TNG": true, "MA-TNT": true, "MA-ZAG": true,
720 "MC-CL": true, "MC-CO": true, "MC-FO": true, "MC-GA": true, "MC-JE": true,
721 "MC-LA": true, "MC-MA": true, "MC-MC": true, "MC-MG": true, "MC-MO": true,
722 "MC-MU": true, "MC-PH": true, "MC-SD": true, "MC-SO": true, "MC-SP": true,
723 "MC-SR": true, "MC-VR": true, "MD-AN": true, "MD-BA": true, "MD-BD": true,
724 "MD-BR": true, "MD-BS": true, "MD-CA": true, "MD-CL": true, "MD-CM": true,
725 "MD-CR": true, "MD-CS": true, "MD-CT": true, "MD-CU": true, "MD-DO": true,
726 "MD-DR": true, "MD-DU": true, "MD-ED": true, "MD-FA": true, "MD-FL": true,
727 "MD-GA": true, "MD-GL": true, "MD-HI": true, "MD-IA": true, "MD-LE": true,
728 "MD-NI": true, "MD-OC": true, "MD-OR": true, "MD-RE": true, "MD-RI": true,
729 "MD-SD": true, "MD-SI": true, "MD-SN": true, "MD-SO": true, "MD-ST": true,
730 "MD-SV": true, "MD-TA": true, "MD-TE": true, "MD-UN": true, "ME-01": true,
731 "ME-02": true, "ME-03": true, "ME-04": true, "ME-05": true, "ME-06": true,
732 "ME-07": true, "ME-08": true, "ME-09": true, "ME-10": true, "ME-11": true,
733 "ME-12": true, "ME-13": true, "ME-14": true, "ME-15": true, "ME-16": true,
734 "ME-17": true, "ME-18": true, "ME-19": true, "ME-20": true, "ME-21": true, "ME-24": true,
735 "MG-A": true, "MG-D": true, "MG-F": true, "MG-M": true, "MG-T": true,
736 "MG-U": true, "MH-ALK": true, "MH-ALL": true, "MH-ARN": true, "MH-AUR": true,
737 "MH-EBO": true, "MH-ENI": true, "MH-JAB": true, "MH-JAL": true, "MH-KIL": true,
738 "MH-KWA": true, "MH-L": true, "MH-LAE": true, "MH-LIB": true, "MH-LIK": true,
739 "MH-MAJ": true, "MH-MAL": true, "MH-MEJ": true, "MH-MIL": true, "MH-NMK": true,
740 "MH-NMU": true, "MH-RON": true, "MH-T": true, "MH-UJA": true, "MH-UTI": true,
741 "MH-WTJ": true, "MH-WTN": true, "MK-101": true, "MK-102": true, "MK-103": true,
742 "MK-104": true, "MK-105": true,
743 "MK-106": true, "MK-107": true, "MK-108": true, "MK-109": true, "MK-201": true,
744 "MK-202": true, "MK-205": true, "MK-206": true, "MK-207": true, "MK-208": true,
745 "MK-209": true, "MK-210": true, "MK-211": true, "MK-301": true, "MK-303": true,
746 "MK-307": true, "MK-308": true, "MK-310": true, "MK-311": true, "MK-312": true,
747 "MK-401": true, "MK-402": true, "MK-403": true, "MK-404": true, "MK-405": true,
748 "MK-406": true, "MK-408": true, "MK-409": true, "MK-410": true, "MK-501": true,
749 "MK-502": true, "MK-503": true, "MK-505": true, "MK-506": true, "MK-507": true,
750 "MK-508": true, "MK-509": true, "MK-601": true, "MK-602": true, "MK-604": true,
751 "MK-605": true, "MK-606": true, "MK-607": true, "MK-608": true, "MK-609": true,
752 "MK-701": true, "MK-702": true, "MK-703": true, "MK-704": true, "MK-705": true,
753 "MK-803": true, "MK-804": true, "MK-806": true, "MK-807": true, "MK-809": true,
754 "MK-810": true, "MK-811": true, "MK-812": true, "MK-813": true, "MK-814": true,
755 "MK-816": true, "ML-1": true, "ML-2": true, "ML-3": true, "ML-4": true,
756 "ML-5": true, "ML-6": true, "ML-7": true, "ML-8": true, "ML-BKO": true,
757 "MM-01": true, "MM-02": true, "MM-03": true, "MM-04": true, "MM-05": true,
758 "MM-06": true, "MM-07": true, "MM-11": true, "MM-12": true, "MM-13": true,
759 "MM-14": true, "MM-15": true, "MM-16": true, "MM-17": true, "MM-18": true, "MN-035": true,
760 "MN-037": true, "MN-039": true, "MN-041": true, "MN-043": true, "MN-046": true,
761 "MN-047": true, "MN-049": true, "MN-051": true, "MN-053": true, "MN-055": true,
762 "MN-057": true, "MN-059": true, "MN-061": true, "MN-063": true, "MN-064": true,
763 "MN-065": true, "MN-067": true, "MN-069": true, "MN-071": true, "MN-073": true,
764 "MN-1": true, "MR-01": true, "MR-02": true, "MR-03": true, "MR-04": true,
765 "MR-05": true, "MR-06": true, "MR-07": true, "MR-08": true, "MR-09": true,
766 "MR-10": true, "MR-11": true, "MR-12": true, "MR-13": true, "MR-NKC": true, "MT-01": true,
767 "MT-02": true, "MT-03": true, "MT-04": true, "MT-05": true, "MT-06": true,
768 "MT-07": true, "MT-08": true, "MT-09": true, "MT-10": true, "MT-11": true,
769 "MT-12": true, "MT-13": true, "MT-14": true, "MT-15": true, "MT-16": true,
770 "MT-17": true, "MT-18": true, "MT-19": true, "MT-20": true, "MT-21": true,
771 "MT-22": true, "MT-23": true, "MT-24": true, "MT-25": true, "MT-26": true,
772 "MT-27": true, "MT-28": true, "MT-29": true, "MT-30": true, "MT-31": true,
773 "MT-32": true, "MT-33": true, "MT-34": true, "MT-35": true, "MT-36": true,
774 "MT-37": true, "MT-38": true, "MT-39": true, "MT-40": true, "MT-41": true,
775 "MT-42": true, "MT-43": true, "MT-44": true, "MT-45": true, "MT-46": true,
776 "MT-47": true, "MT-48": true, "MT-49": true, "MT-50": true, "MT-51": true,
777 "MT-52": true, "MT-53": true, "MT-54": true, "MT-55": true, "MT-56": true,
778 "MT-57": true, "MT-58": true, "MT-59": true, "MT-60": true, "MT-61": true,
779 "MT-62": true, "MT-63": true, "MT-64": true, "MT-65": true, "MT-66": true,
780 "MT-67": true, "MT-68": true, "MU-AG": true, "MU-BL": true, "MU-BR": true,
781 "MU-CC": true, "MU-CU": true, "MU-FL": true, "MU-GP": true, "MU-MO": true,
782 "MU-PA": true, "MU-PL": true, "MU-PU": true, "MU-PW": true, "MU-QB": true,
783 "MU-RO": true, "MU-RP": true, "MU-RR": true, "MU-SA": true, "MU-VP": true, "MV-00": true,
784 "MV-01": true, "MV-02": true, "MV-03": true, "MV-04": true, "MV-05": true,
785 "MV-07": true, "MV-08": true, "MV-12": true, "MV-13": true, "MV-14": true,
786 "MV-17": true, "MV-20": true, "MV-23": true, "MV-24": true, "MV-25": true,
787 "MV-26": true, "MV-27": true, "MV-28": true, "MV-29": true, "MV-CE": true,
788 "MV-MLE": true, "MV-NC": true, "MV-NO": true, "MV-SC": true, "MV-SU": true,
789 "MV-UN": true, "MV-US": true, "MW-BA": true, "MW-BL": true, "MW-C": true,
790 "MW-CK": true, "MW-CR": true, "MW-CT": true, "MW-DE": true, "MW-DO": true,
791 "MW-KR": true, "MW-KS": true, "MW-LI": true, "MW-LK": true, "MW-MC": true,
792 "MW-MG": true, "MW-MH": true, "MW-MU": true, "MW-MW": true, "MW-MZ": true,
793 "MW-N": true, "MW-NB": true, "MW-NE": true, "MW-NI": true, "MW-NK": true,
794 "MW-NS": true, "MW-NU": true, "MW-PH": true, "MW-RU": true, "MW-S": true,
795 "MW-SA": true, "MW-TH": true, "MW-ZO": true, "MX-AGU": true, "MX-BCN": true,
796 "MX-BCS": true, "MX-CAM": true, "MX-CHH": true, "MX-CHP": true, "MX-COA": true,
797 "MX-COL": true, "MX-CMX": true, "MX-DIF": true, "MX-DUR": true, "MX-GRO": true, "MX-GUA": true,
798 "MX-HID": true, "MX-JAL": true, "MX-MEX": true, "MX-MIC": true, "MX-MOR": true,
799 "MX-NAY": true, "MX-NLE": true, "MX-OAX": true, "MX-PUE": true, "MX-QUE": true,
800 "MX-ROO": true, "MX-SIN": true, "MX-SLP": true, "MX-SON": true, "MX-TAB": true,
801 "MX-TAM": true, "MX-TLA": true, "MX-VER": true, "MX-YUC": true, "MX-ZAC": true,
802 "MY-01": true, "MY-02": true, "MY-03": true, "MY-04": true, "MY-05": true,
803 "MY-06": true, "MY-07": true, "MY-08": true, "MY-09": true, "MY-10": true,
804 "MY-11": true, "MY-12": true, "MY-13": true, "MY-14": true, "MY-15": true,
805 "MY-16": true, "MZ-A": true, "MZ-B": true, "MZ-G": true, "MZ-I": true,
806 "MZ-L": true, "MZ-MPM": true, "MZ-N": true, "MZ-P": true, "MZ-Q": true,
807 "MZ-S": true, "MZ-T": true, "NA-CA": true, "NA-ER": true, "NA-HA": true,
808 "NA-KA": true, "NA-KE": true, "NA-KH": true, "NA-KU": true, "NA-KW": true, "NA-OD": true, "NA-OH": true,
809 "NA-OK": true, "NA-ON": true, "NA-OS": true, "NA-OT": true, "NA-OW": true,
810 "NE-1": true, "NE-2": true, "NE-3": true, "NE-4": true, "NE-5": true,
811 "NE-6": true, "NE-7": true, "NE-8": true, "NG-AB": true, "NG-AD": true,
812 "NG-AK": true, "NG-AN": true, "NG-BA": true, "NG-BE": true, "NG-BO": true,
813 "NG-BY": true, "NG-CR": true, "NG-DE": true, "NG-EB": true, "NG-ED": true,
814 "NG-EK": true, "NG-EN": true, "NG-FC": true, "NG-GO": true, "NG-IM": true,
815 "NG-JI": true, "NG-KD": true, "NG-KE": true, "NG-KN": true, "NG-KO": true,
816 "NG-KT": true, "NG-KW": true, "NG-LA": true, "NG-NA": true, "NG-NI": true,
817 "NG-OG": true, "NG-ON": true, "NG-OS": true, "NG-OY": true, "NG-PL": true,
818 "NG-RI": true, "NG-SO": true, "NG-TA": true, "NG-YO": true, "NG-ZA": true,
819 "NI-AN": true, "NI-AS": true, "NI-BO": true, "NI-CA": true, "NI-CI": true,
820 "NI-CO": true, "NI-ES": true, "NI-GR": true, "NI-JI": true, "NI-LE": true,
821 "NI-MD": true, "NI-MN": true, "NI-MS": true, "NI-MT": true, "NI-NS": true,
822 "NI-RI": true, "NI-SJ": true, "NL-AW": true, "NL-BQ1": true, "NL-BQ2": true,
823 "NL-BQ3": true, "NL-CW": true, "NL-DR": true, "NL-FL": true, "NL-FR": true,
824 "NL-GE": true, "NL-GR": true, "NL-LI": true, "NL-NB": true, "NL-NH": true,
825 "NL-OV": true, "NL-SX": true, "NL-UT": true, "NL-ZE": true, "NL-ZH": true,
826 "NO-03": true, "NO-11": true, "NO-15": true, "NO-16": true, "NO-17": true,
827 "NO-18": true, "NO-21": true, "NO-30": true, "NO-34": true, "NO-38": true,
828 "NO-42": true, "NO-46": true, "NO-50": true, "NO-54": true,
829 "NO-22": true, "NP-1": true, "NP-2": true, "NP-3": true, "NP-4": true,
830 "NP-5": true, "NP-BA": true, "NP-BH": true, "NP-DH": true, "NP-GA": true,
831 "NP-JA": true, "NP-KA": true, "NP-KO": true, "NP-LU": true, "NP-MA": true,
832 "NP-ME": true, "NP-NA": true, "NP-RA": true, "NP-SA": true, "NP-SE": true,
833 "NR-01": true, "NR-02": true, "NR-03": true, "NR-04": true, "NR-05": true,
834 "NR-06": true, "NR-07": true, "NR-08": true, "NR-09": true, "NR-10": true,
835 "NR-11": true, "NR-12": true, "NR-13": true, "NR-14": true, "NZ-AUK": true,
836 "NZ-BOP": true, "NZ-CAN": true, "NZ-CIT": true, "NZ-GIS": true, "NZ-HKB": true,
837 "NZ-MBH": true, "NZ-MWT": true, "NZ-N": true, "NZ-NSN": true, "NZ-NTL": true,
838 "NZ-OTA": true, "NZ-S": true, "NZ-STL": true, "NZ-TAS": true, "NZ-TKI": true,
839 "NZ-WGN": true, "NZ-WKO": true, "NZ-WTC": true, "OM-BA": true, "OM-BS": true, "OM-BU": true, "OM-BJ": true,
840 "OM-DA": true, "OM-MA": true, "OM-MU": true, "OM-SH": true, "OM-SJ": true, "OM-SS": true, "OM-WU": true,
841 "OM-ZA": true, "OM-ZU": true, "PA-1": true, "PA-2": true, "PA-3": true,
842 "PA-4": true, "PA-5": true, "PA-6": true, "PA-7": true, "PA-8": true,
843 "PA-9": true, "PA-EM": true, "PA-KY": true, "PA-NB": true, "PE-AMA": true,
844 "PE-ANC": true, "PE-APU": true, "PE-ARE": true, "PE-AYA": true, "PE-CAJ": true,
845 "PE-CAL": true, "PE-CUS": true, "PE-HUC": true, "PE-HUV": true, "PE-ICA": true,
846 "PE-JUN": true, "PE-LAL": true, "PE-LAM": true, "PE-LIM": true, "PE-LMA": true,
847 "PE-LOR": true, "PE-MDD": true, "PE-MOQ": true, "PE-PAS": true, "PE-PIU": true,
848 "PE-PUN": true, "PE-SAM": true, "PE-TAC": true, "PE-TUM": true, "PE-UCA": true,
849 "PG-CPK": true, "PG-CPM": true, "PG-EBR": true, "PG-EHG": true, "PG-EPW": true,
850 "PG-ESW": true, "PG-GPK": true, "PG-MBA": true, "PG-MPL": true, "PG-MPM": true,
851 "PG-MRL": true, "PG-NCD": true, "PG-NIK": true, "PG-NPP": true, "PG-NSB": true,
852 "PG-SAN": true, "PG-SHM": true, "PG-WBK": true, "PG-WHM": true, "PG-WPD": true,
853 "PH-00": true, "PH-01": true, "PH-02": true, "PH-03": true, "PH-05": true,
854 "PH-06": true, "PH-07": true, "PH-08": true, "PH-09": true, "PH-10": true,
855 "PH-11": true, "PH-12": true, "PH-13": true, "PH-14": true, "PH-15": true,
856 "PH-40": true, "PH-41": true, "PH-ABR": true, "PH-AGN": true, "PH-AGS": true,
857 "PH-AKL": true, "PH-ALB": true, "PH-ANT": true, "PH-APA": true, "PH-AUR": true,
858 "PH-BAN": true, "PH-BAS": true, "PH-BEN": true, "PH-BIL": true, "PH-BOH": true,
859 "PH-BTG": true, "PH-BTN": true, "PH-BUK": true, "PH-BUL": true, "PH-CAG": true,
860 "PH-CAM": true, "PH-CAN": true, "PH-CAP": true, "PH-CAS": true, "PH-CAT": true,
861 "PH-CAV": true, "PH-CEB": true, "PH-COM": true, "PH-DAO": true, "PH-DAS": true,
862 "PH-DAV": true, "PH-DIN": true, "PH-EAS": true, "PH-GUI": true, "PH-IFU": true,
863 "PH-ILI": true, "PH-ILN": true, "PH-ILS": true, "PH-ISA": true, "PH-KAL": true,
864 "PH-LAG": true, "PH-LAN": true, "PH-LAS": true, "PH-LEY": true, "PH-LUN": true,
865 "PH-MAD": true, "PH-MAG": true, "PH-MAS": true, "PH-MDC": true, "PH-MDR": true,
866 "PH-MOU": true, "PH-MSC": true, "PH-MSR": true, "PH-NCO": true, "PH-NEC": true,
867 "PH-NER": true, "PH-NSA": true, "PH-NUE": true, "PH-NUV": true, "PH-PAM": true,
868 "PH-PAN": true, "PH-PLW": true, "PH-QUE": true, "PH-QUI": true, "PH-RIZ": true,
869 "PH-ROM": true, "PH-SAR": true, "PH-SCO": true, "PH-SIG": true, "PH-SLE": true,
870 "PH-SLU": true, "PH-SOR": true, "PH-SUK": true, "PH-SUN": true, "PH-SUR": true,
871 "PH-TAR": true, "PH-TAW": true, "PH-WSA": true, "PH-ZAN": true, "PH-ZAS": true,
872 "PH-ZMB": true, "PH-ZSI": true, "PK-BA": true, "PK-GB": true, "PK-IS": true,
873 "PK-JK": true, "PK-KP": true, "PK-PB": true, "PK-SD": true, "PK-TA": true,
874 "PL-02": true, "PL-04": true, "PL-06": true, "PL-08": true, "PL-10": true,
875 "PL-12": true, "PL-14": true, "PL-16": true, "PL-18": true, "PL-20": true,
876 "PL-22": true, "PL-24": true, "PL-26": true, "PL-28": true, "PL-30": true, "PL-32": true,
877 "PS-BTH": true, "PS-DEB": true, "PS-GZA": true, "PS-HBN": true,
878 "PS-JEM": true, "PS-JEN": true, "PS-JRH": true, "PS-KYS": true, "PS-NBS": true,
879 "PS-NGZ": true, "PS-QQA": true, "PS-RBH": true, "PS-RFH": true, "PS-SLT": true,
880 "PS-TBS": true, "PS-TKM": true, "PT-01": true, "PT-02": true, "PT-03": true,
881 "PT-04": true, "PT-05": true, "PT-06": true, "PT-07": true, "PT-08": true,
882 "PT-09": true, "PT-10": true, "PT-11": true, "PT-12": true, "PT-13": true,
883 "PT-14": true, "PT-15": true, "PT-16": true, "PT-17": true, "PT-18": true,
884 "PT-20": true, "PT-30": true, "PW-002": true, "PW-004": true, "PW-010": true,
885 "PW-050": true, "PW-100": true, "PW-150": true, "PW-212": true, "PW-214": true,
886 "PW-218": true, "PW-222": true, "PW-224": true, "PW-226": true, "PW-227": true,
887 "PW-228": true, "PW-350": true, "PW-370": true, "PY-1": true, "PY-10": true,
888 "PY-11": true, "PY-12": true, "PY-13": true, "PY-14": true, "PY-15": true,
889 "PY-16": true, "PY-19": true, "PY-2": true, "PY-3": true, "PY-4": true,
890 "PY-5": true, "PY-6": true, "PY-7": true, "PY-8": true, "PY-9": true,
891 "PY-ASU": true, "QA-DA": true, "QA-KH": true, "QA-MS": true, "QA-RA": true,
892 "QA-US": true, "QA-WA": true, "QA-ZA": true, "RO-AB": true, "RO-AG": true,
893 "RO-AR": true, "RO-B": true, "RO-BC": true, "RO-BH": true, "RO-BN": true,
894 "RO-BR": true, "RO-BT": true, "RO-BV": true, "RO-BZ": true, "RO-CJ": true,
895 "RO-CL": true, "RO-CS": true, "RO-CT": true, "RO-CV": true, "RO-DB": true,
896 "RO-DJ": true, "RO-GJ": true, "RO-GL": true, "RO-GR": true, "RO-HD": true,
897 "RO-HR": true, "RO-IF": true, "RO-IL": true, "RO-IS": true, "RO-MH": true,
898 "RO-MM": true, "RO-MS": true, "RO-NT": true, "RO-OT": true, "RO-PH": true,
899 "RO-SB": true, "RO-SJ": true, "RO-SM": true, "RO-SV": true, "RO-TL": true,
900 "RO-TM": true, "RO-TR": true, "RO-VL": true, "RO-VN": true, "RO-VS": true,
901 "RS-00": true, "RS-01": true, "RS-02": true, "RS-03": true, "RS-04": true,
902 "RS-05": true, "RS-06": true, "RS-07": true, "RS-08": true, "RS-09": true,
903 "RS-10": true, "RS-11": true, "RS-12": true, "RS-13": true, "RS-14": true,
904 "RS-15": true, "RS-16": true, "RS-17": true, "RS-18": true, "RS-19": true,
905 "RS-20": true, "RS-21": true, "RS-22": true, "RS-23": true, "RS-24": true,
906 "RS-25": true, "RS-26": true, "RS-27": true, "RS-28": true, "RS-29": true,
907 "RS-KM": true, "RS-VO": true, "RU-AD": true, "RU-AL": true, "RU-ALT": true,
908 "RU-AMU": true, "RU-ARK": true, "RU-AST": true, "RU-BA": true, "RU-BEL": true,
909 "RU-BRY": true, "RU-BU": true, "RU-CE": true, "RU-CHE": true, "RU-CHU": true,
910 "RU-CU": true, "RU-DA": true, "RU-IN": true, "RU-IRK": true, "RU-IVA": true,
911 "RU-KAM": true, "RU-KB": true, "RU-KC": true, "RU-KDA": true, "RU-KEM": true,
912 "RU-KGD": true, "RU-KGN": true, "RU-KHA": true, "RU-KHM": true, "RU-KIR": true,
913 "RU-KK": true, "RU-KL": true, "RU-KLU": true, "RU-KO": true, "RU-KOS": true,
914 "RU-KR": true, "RU-KRS": true, "RU-KYA": true, "RU-LEN": true, "RU-LIP": true,
915 "RU-MAG": true, "RU-ME": true, "RU-MO": true, "RU-MOS": true, "RU-MOW": true,
916 "RU-MUR": true, "RU-NEN": true, "RU-NGR": true, "RU-NIZ": true, "RU-NVS": true,
917 "RU-OMS": true, "RU-ORE": true, "RU-ORL": true, "RU-PER": true, "RU-PNZ": true,
918 "RU-PRI": true, "RU-PSK": true, "RU-ROS": true, "RU-RYA": true, "RU-SA": true,
919 "RU-SAK": true, "RU-SAM": true, "RU-SAR": true, "RU-SE": true, "RU-SMO": true,
920 "RU-SPE": true, "RU-STA": true, "RU-SVE": true, "RU-TA": true, "RU-TAM": true,
921 "RU-TOM": true, "RU-TUL": true, "RU-TVE": true, "RU-TY": true, "RU-TYU": true,
922 "RU-UD": true, "RU-ULY": true, "RU-VGG": true, "RU-VLA": true, "RU-VLG": true,
923 "RU-VOR": true, "RU-YAN": true, "RU-YAR": true, "RU-YEV": true, "RU-ZAB": true,
924 "RW-01": true, "RW-02": true, "RW-03": true, "RW-04": true, "RW-05": true,
925 "SA-01": true, "SA-02": true, "SA-03": true, "SA-04": true, "SA-05": true,
926 "SA-06": true, "SA-07": true, "SA-08": true, "SA-09": true, "SA-10": true,
927 "SA-11": true, "SA-12": true, "SA-14": true, "SB-CE": true, "SB-CH": true,
928 "SB-CT": true, "SB-GU": true, "SB-IS": true, "SB-MK": true, "SB-ML": true,
929 "SB-RB": true, "SB-TE": true, "SB-WE": true, "SC-01": true, "SC-02": true,
930 "SC-03": true, "SC-04": true, "SC-05": true, "SC-06": true, "SC-07": true,
931 "SC-08": true, "SC-09": true, "SC-10": true, "SC-11": true, "SC-12": true,
932 "SC-13": true, "SC-14": true, "SC-15": true, "SC-16": true, "SC-17": true,
933 "SC-18": true, "SC-19": true, "SC-20": true, "SC-21": true, "SC-22": true,
934 "SC-23": true, "SC-24": true, "SC-25": true, "SD-DC": true, "SD-DE": true,
935 "SD-DN": true, "SD-DS": true, "SD-DW": true, "SD-GD": true, "SD-GK": true, "SD-GZ": true,
936 "SD-KA": true, "SD-KH": true, "SD-KN": true, "SD-KS": true, "SD-NB": true,
937 "SD-NO": true, "SD-NR": true, "SD-NW": true, "SD-RS": true, "SD-SI": true,
938 "SE-AB": true, "SE-AC": true, "SE-BD": true, "SE-C": true, "SE-D": true,
939 "SE-E": true, "SE-F": true, "SE-G": true, "SE-H": true, "SE-I": true,
940 "SE-K": true, "SE-M": true, "SE-N": true, "SE-O": true, "SE-S": true,
941 "SE-T": true, "SE-U": true, "SE-W": true, "SE-X": true, "SE-Y": true,
942 "SE-Z": true, "SG-01": true, "SG-02": true, "SG-03": true, "SG-04": true,
943 "SG-05": true, "SH-AC": true, "SH-HL": true, "SH-TA": true, "SI-001": true,
944 "SI-002": true, "SI-003": true, "SI-004": true, "SI-005": true, "SI-006": true,
945 "SI-007": true, "SI-008": true, "SI-009": true, "SI-010": true, "SI-011": true,
946 "SI-012": true, "SI-013": true, "SI-014": true, "SI-015": true, "SI-016": true,
947 "SI-017": true, "SI-018": true, "SI-019": true, "SI-020": true, "SI-021": true,
948 "SI-022": true, "SI-023": true, "SI-024": true, "SI-025": true, "SI-026": true,
949 "SI-027": true, "SI-028": true, "SI-029": true, "SI-030": true, "SI-031": true,
950 "SI-032": true, "SI-033": true, "SI-034": true, "SI-035": true, "SI-036": true,
951 "SI-037": true, "SI-038": true, "SI-039": true, "SI-040": true, "SI-041": true,
952 "SI-042": true, "SI-043": true, "SI-044": true, "SI-045": true, "SI-046": true,
953 "SI-047": true, "SI-048": true, "SI-049": true, "SI-050": true, "SI-051": true,
954 "SI-052": true, "SI-053": true, "SI-054": true, "SI-055": true, "SI-056": true,
955 "SI-057": true, "SI-058": true, "SI-059": true, "SI-060": true, "SI-061": true,
956 "SI-062": true, "SI-063": true, "SI-064": true, "SI-065": true, "SI-066": true,
957 "SI-067": true, "SI-068": true, "SI-069": true, "SI-070": true, "SI-071": true,
958 "SI-072": true, "SI-073": true, "SI-074": true, "SI-075": true, "SI-076": true,
959 "SI-077": true, "SI-078": true, "SI-079": true, "SI-080": true, "SI-081": true,
960 "SI-082": true, "SI-083": true, "SI-084": true, "SI-085": true, "SI-086": true,
961 "SI-087": true, "SI-088": true, "SI-089": true, "SI-090": true, "SI-091": true,
962 "SI-092": true, "SI-093": true, "SI-094": true, "SI-095": true, "SI-096": true,
963 "SI-097": true, "SI-098": true, "SI-099": true, "SI-100": true, "SI-101": true,
964 "SI-102": true, "SI-103": true, "SI-104": true, "SI-105": true, "SI-106": true,
965 "SI-107": true, "SI-108": true, "SI-109": true, "SI-110": true, "SI-111": true,
966 "SI-112": true, "SI-113": true, "SI-114": true, "SI-115": true, "SI-116": true,
967 "SI-117": true, "SI-118": true, "SI-119": true, "SI-120": true, "SI-121": true,
968 "SI-122": true, "SI-123": true, "SI-124": true, "SI-125": true, "SI-126": true,
969 "SI-127": true, "SI-128": true, "SI-129": true, "SI-130": true, "SI-131": true,
970 "SI-132": true, "SI-133": true, "SI-134": true, "SI-135": true, "SI-136": true,
971 "SI-137": true, "SI-138": true, "SI-139": true, "SI-140": true, "SI-141": true,
972 "SI-142": true, "SI-143": true, "SI-144": true, "SI-146": true, "SI-147": true,
973 "SI-148": true, "SI-149": true, "SI-150": true, "SI-151": true, "SI-152": true,
974 "SI-153": true, "SI-154": true, "SI-155": true, "SI-156": true, "SI-157": true,
975 "SI-158": true, "SI-159": true, "SI-160": true, "SI-161": true, "SI-162": true,
976 "SI-163": true, "SI-164": true, "SI-165": true, "SI-166": true, "SI-167": true,
977 "SI-168": true, "SI-169": true, "SI-170": true, "SI-171": true, "SI-172": true,
978 "SI-173": true, "SI-174": true, "SI-175": true, "SI-176": true, "SI-177": true,
979 "SI-178": true, "SI-179": true, "SI-180": true, "SI-181": true, "SI-182": true,
980 "SI-183": true, "SI-184": true, "SI-185": true, "SI-186": true, "SI-187": true,
981 "SI-188": true, "SI-189": true, "SI-190": true, "SI-191": true, "SI-192": true,
982 "SI-193": true, "SI-194": true, "SI-195": true, "SI-196": true, "SI-197": true,
983 "SI-198": true, "SI-199": true, "SI-200": true, "SI-201": true, "SI-202": true,
984 "SI-203": true, "SI-204": true, "SI-205": true, "SI-206": true, "SI-207": true,
985 "SI-208": true, "SI-209": true, "SI-210": true, "SI-211": true, "SI-212": true, "SI-213": true, "SK-BC": true,
986 "SK-BL": true, "SK-KI": true, "SK-NI": true, "SK-PV": true, "SK-TA": true,
987 "SK-TC": true, "SK-ZI": true, "SL-E": true, "SL-N": true, "SL-S": true,
988 "SL-W": true, "SM-01": true, "SM-02": true, "SM-03": true, "SM-04": true,
989 "SM-05": true, "SM-06": true, "SM-07": true, "SM-08": true, "SM-09": true,
990 "SN-DB": true, "SN-DK": true, "SN-FK": true, "SN-KA": true, "SN-KD": true,
991 "SN-KE": true, "SN-KL": true, "SN-LG": true, "SN-MT": true, "SN-SE": true,
992 "SN-SL": true, "SN-TC": true, "SN-TH": true, "SN-ZG": true, "SO-AW": true,
993 "SO-BK": true, "SO-BN": true, "SO-BR": true, "SO-BY": true, "SO-GA": true,
994 "SO-GE": true, "SO-HI": true, "SO-JD": true, "SO-JH": true, "SO-MU": true,
995 "SO-NU": true, "SO-SA": true, "SO-SD": true, "SO-SH": true, "SO-SO": true,
996 "SO-TO": true, "SO-WO": true, "SR-BR": true, "SR-CM": true, "SR-CR": true,
997 "SR-MA": true, "SR-NI": true, "SR-PM": true, "SR-PR": true, "SR-SA": true,
998 "SR-SI": true, "SR-WA": true, "SS-BN": true, "SS-BW": true, "SS-EC": true,
999 "SS-EE8": true, "SS-EE": true, "SS-EW": true, "SS-JG": true, "SS-LK": true, "SS-NU": true,
1000 "SS-UY": true, "SS-WR": true, "ST-01": true, "ST-P": true, "ST-S": true, "SV-AH": true,
1001 "SV-CA": true, "SV-CH": true, "SV-CU": true, "SV-LI": true, "SV-MO": true,
1002 "SV-PA": true, "SV-SA": true, "SV-SM": true, "SV-SO": true, "SV-SS": true,
1003 "SV-SV": true, "SV-UN": true, "SV-US": true, "SY-DI": true, "SY-DR": true,
1004 "SY-DY": true, "SY-HA": true, "SY-HI": true, "SY-HL": true, "SY-HM": true,
1005 "SY-ID": true, "SY-LA": true, "SY-QU": true, "SY-RA": true, "SY-RD": true,
1006 "SY-SU": true, "SY-TA": true, "SZ-HH": true, "SZ-LU": true, "SZ-MA": true,
1007 "SZ-SH": true, "TD-BA": true, "TD-BG": true, "TD-BO": true, "TD-CB": true,
1008 "TD-EN": true, "TD-GR": true, "TD-HL": true, "TD-KA": true, "TD-LC": true,
1009 "TD-LO": true, "TD-LR": true, "TD-MA": true, "TD-MC": true, "TD-ME": true,
1010 "TD-MO": true, "TD-ND": true, "TD-OD": true, "TD-SA": true, "TD-SI": true,
1011 "TD-TA": true, "TD-TI": true, "TD-WF": true, "TG-C": true, "TG-K": true,
1012 "TG-M": true, "TG-P": true, "TG-S": true, "TH-10": true, "TH-11": true,
1013 "TH-12": true, "TH-13": true, "TH-14": true, "TH-15": true, "TH-16": true,
1014 "TH-17": true, "TH-18": true, "TH-19": true, "TH-20": true, "TH-21": true,
1015 "TH-22": true, "TH-23": true, "TH-24": true, "TH-25": true, "TH-26": true,
1016 "TH-27": true, "TH-30": true, "TH-31": true, "TH-32": true, "TH-33": true,
1017 "TH-34": true, "TH-35": true, "TH-36": true, "TH-37": true, "TH-38": true, "TH-39": true,
1018 "TH-40": true, "TH-41": true, "TH-42": true, "TH-43": true, "TH-44": true,
1019 "TH-45": true, "TH-46": true, "TH-47": true, "TH-48": true, "TH-49": true,
1020 "TH-50": true, "TH-51": true, "TH-52": true, "TH-53": true, "TH-54": true,
1021 "TH-55": true, "TH-56": true, "TH-57": true, "TH-58": true, "TH-60": true,
1022 "TH-61": true, "TH-62": true, "TH-63": true, "TH-64": true, "TH-65": true,
1023 "TH-66": true, "TH-67": true, "TH-70": true, "TH-71": true, "TH-72": true,
1024 "TH-73": true, "TH-74": true, "TH-75": true, "TH-76": true, "TH-77": true,
1025 "TH-80": true, "TH-81": true, "TH-82": true, "TH-83": true, "TH-84": true,
1026 "TH-85": true, "TH-86": true, "TH-90": true, "TH-91": true, "TH-92": true,
1027 "TH-93": true, "TH-94": true, "TH-95": true, "TH-96": true, "TH-S": true,
1028 "TJ-GB": true, "TJ-KT": true, "TJ-SU": true, "TJ-DU": true, "TJ-RA": true, "TL-AL": true, "TL-AN": true,
1029 "TL-BA": true, "TL-BO": true, "TL-CO": true, "TL-DI": true, "TL-ER": true,
1030 "TL-LA": true, "TL-LI": true, "TL-MF": true, "TL-MT": true, "TL-OE": true,
1031 "TL-VI": true, "TM-A": true, "TM-B": true, "TM-D": true, "TM-L": true,
1032 "TM-M": true, "TM-S": true, "TN-11": true, "TN-12": true, "TN-13": true,
1033 "TN-14": true, "TN-21": true, "TN-22": true, "TN-23": true, "TN-31": true,
1034 "TN-32": true, "TN-33": true, "TN-34": true, "TN-41": true, "TN-42": true,
1035 "TN-43": true, "TN-51": true, "TN-52": true, "TN-53": true, "TN-61": true,
1036 "TN-71": true, "TN-72": true, "TN-73": true, "TN-81": true, "TN-82": true,
1037 "TN-83": true, "TO-01": true, "TO-02": true, "TO-03": true, "TO-04": true,
1038 "TO-05": true, "TR-01": true, "TR-02": true, "TR-03": true, "TR-04": true,
1039 "TR-05": true, "TR-06": true, "TR-07": true, "TR-08": true, "TR-09": true,
1040 "TR-10": true, "TR-11": true, "TR-12": true, "TR-13": true, "TR-14": true,
1041 "TR-15": true, "TR-16": true, "TR-17": true, "TR-18": true, "TR-19": true,
1042 "TR-20": true, "TR-21": true, "TR-22": true, "TR-23": true, "TR-24": true,
1043 "TR-25": true, "TR-26": true, "TR-27": true, "TR-28": true, "TR-29": true,
1044 "TR-30": true, "TR-31": true, "TR-32": true, "TR-33": true, "TR-34": true,
1045 "TR-35": true, "TR-36": true, "TR-37": true, "TR-38": true, "TR-39": true,
1046 "TR-40": true, "TR-41": true, "TR-42": true, "TR-43": true, "TR-44": true,
1047 "TR-45": true, "TR-46": true, "TR-47": true, "TR-48": true, "TR-49": true,
1048 "TR-50": true, "TR-51": true, "TR-52": true, "TR-53": true, "TR-54": true,
1049 "TR-55": true, "TR-56": true, "TR-57": true, "TR-58": true, "TR-59": true,
1050 "TR-60": true, "TR-61": true, "TR-62": true, "TR-63": true, "TR-64": true,
1051 "TR-65": true, "TR-66": true, "TR-67": true, "TR-68": true, "TR-69": true,
1052 "TR-70": true, "TR-71": true, "TR-72": true, "TR-73": true, "TR-74": true,
1053 "TR-75": true, "TR-76": true, "TR-77": true, "TR-78": true, "TR-79": true,
1054 "TR-80": true, "TR-81": true, "TT-ARI": true, "TT-CHA": true, "TT-CTT": true,
1055 "TT-DMN": true, "TT-ETO": true, "TT-MRC": true, "TT-TOB": true, "TT-PED": true, "TT-POS": true, "TT-PRT": true,
1056 "TT-PTF": true, "TT-RCM": true, "TT-SFO": true, "TT-SGE": true, "TT-SIP": true,
1057 "TT-SJL": true, "TT-TUP": true, "TT-WTO": true, "TV-FUN": true, "TV-NIT": true,
1058 "TV-NKF": true, "TV-NKL": true, "TV-NMA": true, "TV-NMG": true, "TV-NUI": true,
1059 "TV-VAI": true, "TW-CHA": true, "TW-CYI": true, "TW-CYQ": true, "TW-KIN": true, "TW-HSQ": true,
1060 "TW-HSZ": true, "TW-HUA": true, "TW-LIE": true, "TW-ILA": true, "TW-KEE": true, "TW-KHH": true,
1061 "TW-KHQ": true, "TW-MIA": true, "TW-NAN": true, "TW-NWT": true, "TW-PEN": true, "TW-PIF": true,
1062 "TW-TAO": true, "TW-TNN": true, "TW-TNQ": true, "TW-TPE": true, "TW-TPQ": true,
1063 "TW-TTT": true, "TW-TXG": true, "TW-TXQ": true, "TW-YUN": true, "TZ-01": true,
1064 "TZ-02": true, "TZ-03": true, "TZ-04": true, "TZ-05": true, "TZ-06": true,
1065 "TZ-07": true, "TZ-08": true, "TZ-09": true, "TZ-10": true, "TZ-11": true,
1066 "TZ-12": true, "TZ-13": true, "TZ-14": true, "TZ-15": true, "TZ-16": true,
1067 "TZ-17": true, "TZ-18": true, "TZ-19": true, "TZ-20": true, "TZ-21": true,
1068 "TZ-22": true, "TZ-23": true, "TZ-24": true, "TZ-25": true, "TZ-26": true, "TZ-27": true, "TZ-28": true, "TZ-29": true, "TZ-30": true, "TZ-31": true,
1069 "UA-05": true, "UA-07": true, "UA-09": true, "UA-12": true, "UA-14": true,
1070 "UA-18": true, "UA-21": true, "UA-23": true, "UA-26": true, "UA-30": true,
1071 "UA-32": true, "UA-35": true, "UA-40": true, "UA-43": true, "UA-46": true,
1072 "UA-48": true, "UA-51": true, "UA-53": true, "UA-56": true, "UA-59": true,
1073 "UA-61": true, "UA-63": true, "UA-65": true, "UA-68": true, "UA-71": true,
1074 "UA-74": true, "UA-77": true, "UG-101": true, "UG-102": true, "UG-103": true,
1075 "UG-104": true, "UG-105": true, "UG-106": true, "UG-107": true, "UG-108": true,
1076 "UG-109": true, "UG-110": true, "UG-111": true, "UG-112": true, "UG-113": true,
1077 "UG-114": true, "UG-115": true, "UG-116": true, "UG-201": true, "UG-202": true,
1078 "UG-203": true, "UG-204": true, "UG-205": true, "UG-206": true, "UG-207": true,
1079 "UG-208": true, "UG-209": true, "UG-210": true, "UG-211": true, "UG-212": true,
1080 "UG-213": true, "UG-214": true, "UG-215": true, "UG-216": true, "UG-217": true,
1081 "UG-218": true, "UG-219": true, "UG-220": true, "UG-221": true, "UG-222": true,
1082 "UG-223": true, "UG-224": true, "UG-301": true, "UG-302": true, "UG-303": true,
1083 "UG-304": true, "UG-305": true, "UG-306": true, "UG-307": true, "UG-308": true,
1084 "UG-309": true, "UG-310": true, "UG-311": true, "UG-312": true, "UG-313": true,
1085 "UG-314": true, "UG-315": true, "UG-316": true, "UG-317": true, "UG-318": true,
1086 "UG-319": true, "UG-320": true, "UG-321": true, "UG-401": true, "UG-402": true,
1087 "UG-403": true, "UG-404": true, "UG-405": true, "UG-406": true, "UG-407": true,
1088 "UG-408": true, "UG-409": true, "UG-410": true, "UG-411": true, "UG-412": true,
1089 "UG-413": true, "UG-414": true, "UG-415": true, "UG-416": true, "UG-417": true,
1090 "UG-418": true, "UG-419": true, "UG-C": true, "UG-E": true, "UG-N": true,
1091 "UG-W": true, "UG-322": true, "UG-323": true, "UG-420": true, "UG-117": true,
1092 "UG-118": true, "UG-225": true, "UG-120": true, "UG-226": true,
1093 "UG-121": true, "UG-122": true, "UG-227": true, "UG-421": true,
1094 "UG-325": true, "UG-228": true, "UG-123": true, "UG-422": true,
1095 "UG-326": true, "UG-229": true, "UG-124": true, "UG-423": true,
1096 "UG-230": true, "UG-327": true, "UG-424": true, "UG-328": true,
1097 "UG-425": true, "UG-426": true, "UG-330": true,
1098 "UM-67": true, "UM-71": true, "UM-76": true, "UM-79": true,
1099 "UM-81": true, "UM-84": true, "UM-86": true, "UM-89": true, "UM-95": true,
1100 "US-AK": true, "US-AL": true, "US-AR": true, "US-AS": true, "US-AZ": true,
1101 "US-CA": true, "US-CO": true, "US-CT": true, "US-DC": true, "US-DE": true,
1102 "US-FL": true, "US-GA": true, "US-GU": true, "US-HI": true, "US-IA": true,
1103 "US-ID": true, "US-IL": true, "US-IN": true, "US-KS": true, "US-KY": true,
1104 "US-LA": true, "US-MA": true, "US-MD": true, "US-ME": true, "US-MI": true,
1105 "US-MN": true, "US-MO": true, "US-MP": true, "US-MS": true, "US-MT": true,
1106 "US-NC": true, "US-ND": true, "US-NE": true, "US-NH": true, "US-NJ": true,
1107 "US-NM": true, "US-NV": true, "US-NY": true, "US-OH": true, "US-OK": true,
1108 "US-OR": true, "US-PA": true, "US-PR": true, "US-RI": true, "US-SC": true,
1109 "US-SD": true, "US-TN": true, "US-TX": true, "US-UM": true, "US-UT": true,
1110 "US-VA": true, "US-VI": true, "US-VT": true, "US-WA": true, "US-WI": true,
1111 "US-WV": true, "US-WY": true, "UY-AR": true, "UY-CA": true, "UY-CL": true,
1112 "UY-CO": true, "UY-DU": true, "UY-FD": true, "UY-FS": true, "UY-LA": true,
1113 "UY-MA": true, "UY-MO": true, "UY-PA": true, "UY-RN": true, "UY-RO": true,
1114 "UY-RV": true, "UY-SA": true, "UY-SJ": true, "UY-SO": true, "UY-TA": true,
1115 "UY-TT": true, "UZ-AN": true, "UZ-BU": true, "UZ-FA": true, "UZ-JI": true,
1116 "UZ-NG": true, "UZ-NW": true, "UZ-QA": true, "UZ-QR": true, "UZ-SA": true,
1117 "UZ-SI": true, "UZ-SU": true, "UZ-TK": true, "UZ-TO": true, "UZ-XO": true,
1118 "VC-01": true, "VC-02": true, "VC-03": true, "VC-04": true, "VC-05": true,
1119 "VC-06": true, "VE-A": true, "VE-B": true, "VE-C": true, "VE-D": true,
1120 "VE-E": true, "VE-F": true, "VE-G": true, "VE-H": true, "VE-I": true,
1121 "VE-J": true, "VE-K": true, "VE-L": true, "VE-M": true, "VE-N": true,
1122 "VE-O": true, "VE-P": true, "VE-R": true, "VE-S": true, "VE-T": true,
1123 "VE-U": true, "VE-V": true, "VE-W": true, "VE-X": true, "VE-Y": true,
1124 "VE-Z": true, "VN-01": true, "VN-02": true, "VN-03": true, "VN-04": true,
1125 "VN-05": true, "VN-06": true, "VN-07": true, "VN-09": true, "VN-13": true,
1126 "VN-14": true, "VN-15": true, "VN-18": true, "VN-20": true, "VN-21": true,
1127 "VN-22": true, "VN-23": true, "VN-24": true, "VN-25": true, "VN-26": true,
1128 "VN-27": true, "VN-28": true, "VN-29": true, "VN-30": true, "VN-31": true,
1129 "VN-32": true, "VN-33": true, "VN-34": true, "VN-35": true, "VN-36": true,
1130 "VN-37": true, "VN-39": true, "VN-40": true, "VN-41": true, "VN-43": true,
1131 "VN-44": true, "VN-45": true, "VN-46": true, "VN-47": true, "VN-49": true,
1132 "VN-50": true, "VN-51": true, "VN-52": true, "VN-53": true, "VN-54": true,
1133 "VN-55": true, "VN-56": true, "VN-57": true, "VN-58": true, "VN-59": true,
1134 "VN-61": true, "VN-63": true, "VN-66": true, "VN-67": true, "VN-68": true,
1135 "VN-69": true, "VN-70": true, "VN-71": true, "VN-72": true, "VN-73": true,
1136 "VN-CT": true, "VN-DN": true, "VN-HN": true, "VN-HP": true, "VN-SG": true,
1137 "VU-MAP": true, "VU-PAM": true, "VU-SAM": true, "VU-SEE": true, "VU-TAE": true,
1138 "VU-TOB": true, "WF-SG": true, "WF-UV": true, "WS-AA": true, "WS-AL": true, "WS-AT": true, "WS-FA": true,
1139 "WS-GE": true, "WS-GI": true, "WS-PA": true, "WS-SA": true, "WS-TU": true,
1140 "WS-VF": true, "WS-VS": true, "YE-AB": true, "YE-AD": true, "YE-AM": true,
1141 "YE-BA": true, "YE-DA": true, "YE-DH": true, "YE-HD": true, "YE-HJ": true, "YE-HU": true,
1142 "YE-IB": true, "YE-JA": true, "YE-LA": true, "YE-MA": true, "YE-MR": true,
1143 "YE-MU": true, "YE-MW": true, "YE-RA": true, "YE-SA": true, "YE-SD": true, "YE-SH": true,
1144 "YE-SN": true, "YE-TA": true, "ZA-EC": true, "ZA-FS": true, "ZA-GP": true,
1145 "ZA-LP": true, "ZA-MP": true, "ZA-NC": true, "ZA-NW": true, "ZA-WC": true,
1146 "ZA-ZN": true, "ZA-KZN": true, "ZM-01": true, "ZM-02": true, "ZM-03": true, "ZM-04": true,
1147 "ZM-05": true, "ZM-06": true, "ZM-07": true, "ZM-08": true, "ZM-09": true, "ZM-10": true,
1148 "ZW-BU": true, "ZW-HA": true, "ZW-MA": true, "ZW-MC": true, "ZW-ME": true,
1149 "ZW-MI": true, "ZW-MN": true, "ZW-MS": true, "ZW-MV": true, "ZW-MW": true,
1150 }
1151
View as plain text