Locale-SubCountry-2.07000755000000000000 014134647376 15322 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/Build.PL000444000000000000 132712754264174 16753 0ustar00unknownunknown000000000000use Module::Build; Module::Build -> new ( module_name => 'Locale::SubCountry', license => 'perl', dist_abstract => "Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country", dist_author => 'Kim Ryan ', build_requires => { Test::More => 0.94, Test::Pod => 1.04, }, configure_requires => { Module::Build => 0.3800, }, requires => { locale => 1.00, strict => 0, utf8 => 0, warnings => 0, JSON => 1.00 }, meta_merge => { resources => { repository => 'https://github.com/kimryan/Locale-SubCountry' } } ) -> create_build_script(); Locale-SubCountry-2.07/Changes000444000000000000 3230714134646454 16773 0ustar00unknownunknown000000000000Revision history for Perl CPAN module Locale::SubCountry 2.07 23 Oct 2021 Added Kosovo https://laendercode.net/en/2-letter-code/xk, RT bug #139734 Updated to latest codes from: https://salsa.debian.org/iso-codes-team/ 2.06 12 Jul 2019 Used latest iso-codes package from Debian Salsa 2.05 6 Apr 2019 Used latest iso-codes package from Debian Salsa 2.04 29 Dec 2017 Added strict and warnings pragmas to Codes.pm as per github request by manwar 2.03 27 Dec 2017 Updated to alioth.debian.org codes 3.77 (Dec 2017) 2.02 7 Mar 2017 Fixed RT bug #120002, name space pollution Updated to alioth.debian.org codes 3.74 (Jan 2017) 2.01 15 Aug 2016 Added country's numeric code, accessed from the country_number method Added 'levels' method, return all level types and their totals in a sub country Added JSON to dependency, fix for RT bug #116926, 2.00 11 Aug 2016 Sourced ISO codes from alioth.debian.org in JSON format, Many French Metropolitan departments and Italian provinces added Renamed SubCountry/Data.pm to Codes.pm 'category' method renamed to 'level', as it reflects a sub country's size removed FIPS10_4_code and ISO3166_2_code methods as FIPS is deprecated removed regional_division method, info no longer available from new source data Improved documentation 1.66 23 Jul 2016 Github integration Improved documentation Updated France, all regions reorganised in January 2016 Updated Italy, all regions reorganised in January 2015 Distrito Federal renamed to Ciudad de M憖ico, in Mexico 1.65 25 Apr 2016 Fixed #110905, wrong code for Sulawesi Barat 1.64 7 Apr 2015 Suppressed warnings on printing wide characters in demo.pl removed indirect object notation for 'new' method Fixed #100617, several typos 1.63 9 Apr 2014 Check that a country has sub countries before searching for code and full name, fix for RT bug 89706 Remove minuimum versions for utf8 and strict modules, fix for RT bug 92587 1.62 23 Jul 2013 Removed POD utf encoding directive from SubCountry.pm again and removed utf8 characters from the POD section. They are still causing errors on selected platforms and versions of Perl. Replaced with ASCII text. Fix for RT bug 71228 1.61 15 Feb 2013 Small correction for German data Replaced POD utf encoding directive in SubCountry.pm as some accented characters occur in the POD 1.60 13 Feb 2013 NOTE: On September 2, 2008, FIPS 10-4 was one of ten standards withdrawn by NIST as a Federal Information Processing Standard. FIPS data will remain in this module for now. I may need to withdraw it if it becomes too difficult to align FIPS data with updates to ISO data Added FIPS data to several countries Added Communities to Spain Added Italian regions Allowed for blank lines within subcountry XML data Added FIPS codes to many countries Removed POD utf encoding directive from SubCountry.pm (only needed in Data.pm), fix for RT bug 82933 1.59 22 Jan 2013 Added $VERSION variable into the Locale::SubCountry::World package 1.58 22 Jan 2013 Added '=encoding utf8' to Data.pm to allow POD formatters to work Changed minimimum required version of Test::Pod and Test::Pod::Coverage to 1.04, fix for RT bug 82717 1.57 14 Jan 2013 Moved declaration of $VERSION into the Locale::SubCountry package, fix for RT bug 79734 1.56 7 July 2012 Removed use of $ENV{AUTHOR_TESTING} for running POD tests, caused problems for CPAN testers 1.55 5 July 2012 Fixed xml tagging in Macedonian data, fix for RT bug 78157 Minor updates to data Use $ENV{AUTHOR_TESTING} for running POD tests, fix for RT bug 78123 Print message to STDERR (via call to die) on badly formed country and sub country data Thanks to Ron Savage for the following: Use Test::More everywhere rather than Test::Simple sometimes. Add t/test.t. Clean up pre-reqs in Makefile.PL Add Build.PL. Add encoding to POD in Locale::SubCountry 1.51 2 July 2012 Many new countries added, thanks to Ron Savage Sub countries added to existing countries Many corrections to sub country data Changed to all lower case for the spelling of 'and', 'of' 'the' etc that may occur in names Added 'use utf8' to main.t 1.50 18 Apr 2012 Added Makefile.PL back to the distribution set 1.49 18 Apr 2012 Fixed errors in XML coding Fixed the Brazilian state Rond獼ia, fix for RT bug 73830 Added 3 new Indonesian provinces, fix for RT bug 74763 Added 'use utf8' to Data.pm, fix for RT bug 73829 Added Metro Manila in Philippines, fixed some other provinces, fix for RT bug 69678 1.48 17 Apr 2012 Added South Sudan as a new country Removed states from Sudan Added New Caledonia, Palau, San Marino, Guernsey, Jersey, Saint Martin, Saint Barth幨emy, Sint Maarten, Isle Of Man 1.47 29 Apr 2011 Converted tests to use Test::Simple in main.t Added test for regional_division Added test for initialising with 2 letter country code Improved synopsis Fixed typo in 'new' method that was stopping the use of 2 letter country codes being used as a parameter. Note, this also caused a faliure in the tests for the dependant module, Lingua::EN::AddressParse 1.46 6 Apr 2011 Fixed main.t so tests now use title cased country names. Corrected typos in Changes, README, SubCountry.pm demo.pl, thanks to Glenn Fowler 1.45 5 Apr 2011 Corrected FIPS codes for Repbulic or Ireland and other countries, thanks to Michele Ongaro Added data for Montenegro as a separate country Added data for Serbia as a separate country Added Hong Kong and it's districts (it also appears as a region of China) Corrections to documentation Country names are now stored in title case, not all capitals, as in Fiji and not FIJI. This was done to improve readability (original ISO date used upper case) NOTE, this means that when calling the new method with a country name, you need to specify the name in title case. It will not work if you use upper case. This could cause some backward compatibility issues from your calling code. 1.44 20 Jan 2011 Moved Locale::SubCountryData to Locale::SubCountry::Data name space Added use struct and use warnings Moved all global variables to the Locale::SubCountry name space 1.43 14 Jan 2011 Fixed the number of tests in main.t, should be 17, not 15 1.42 13 Jan 2011 Changed name of UK region St. Helens to Saint Helens, fix for RT bug 38599 Fixed FIPS codes for UK regions Stafforshire and Saint Helens Removed trailing blanks, fix for RT bug 38597 Changed encoding of XML data to UTF-8, thanks to Benjamin Erhart. Fix for RT bug 38559 Moved XML data to separate package, Locale::SubCountry::Data and encoded this file as UTF-8 Added additional tests for unknown sub country codes and names 1.41 20 Apr 2008 Added FIPS codes for UK, thanks to TJMATHER for patch, RT bug #32899 1.40 12 Jan 2008 Changed regexp match on XML country field to account for both Unix and MSDOS line endings Converted files to Unix line endings 1.39 6 Jan 2008 Allowed for sub countries with no ISO code, such as Shariff Kabunsuan in the Phillipines Thanks to Matt Loschert for pointing this out. 1.38 26 Nov 2006 Changed sub country names in Sudan and Phillipines Added examples/demo.pl 1.37 02 Apr 2006 Removed invalid characters in data for Iran, United Arab Emirates and Oman Removed alternate names (appended to end of main names in brackets) from many sub countries NOTE: new method now issues warning and returns undef if invalid country code or name parameter is passed. Previous versions died inside the new method. 1.36 11 Jul 2005 Added regions for Andorra Added regions for Grenada Updated distribution to current CPAN requirements 1.35 04 Jul 2005 Fixed problem with name space pollution for $VERSION variable Added data for the following countries Antigua and Barbuda Andorra Aruba Bhutan Nauru Seychelles For Cape Verde, changed Calheta de S緌 Miguel to S緌 Miguel For Venezuela, changed Distrito Federal to Distrito Capital Added districts for Honduras 1.34 17 Apr 2004 Fixed typo in XML data for American Samoa Added 'has_sub_countries' method to determine if a country has any sub countries (some such a Singapore do not). Updated synopsis to show it's use. 1.33 13 Feb 2004 Fixed pattern matching in data loader to allow for accented characters 1.32 13 Feb 2004 Added 'use locale' to main.t to stop 'make test' errors 1.31 12 Feb 2004 Moved XML data back into main module. Corrected documentation 1.30 8 Feb 2004 Completely updated data, many new countries and sub countries added Added countries without sub countries, such as Singapore Stored data in separate file in XML format Added method 'category' to return the type of subcountry such as state, city etc NOTE: this replaces the 'sub_country_type' method Added method 'regional_division' to return the regional_division of subcountry such as SCT (Scotland) for Edinburgh 1.23 16 Jul 2003 Added data for Finland and Singapore, thanks to Chris McKay 1.22 18 Jan 2003 Removed use of $_ in initialization code, as suggested by Ilya Martynov Corrected country code for Iran, thanks to Todd A. Green Removed Exporter references, as suggested by TJ Mather Added Timor-Leste as a new country (East Timor) Changed Canadian province of Newfoundland to Newfoundland and Labrador 1.21 9 Sep 2002 Fixed bug in test script main.t 1.20 7 Sep 2002 Added methods to new Locale::SubCountry::World package - new - all_full_names - all_codes - full_name_code_hash - code_full_name_hash NOTE! all_full_names method replaces the stand alone all_country_names function all_codes method replaces the stand alone all_country_codes function The above method names duplicate existing method names (polymorphism), so make sure you are working with the right type of object first. These changes were necessary because of user requests for country name and code look ups prior to sub-country lookups. Previous versions would not work with Locale::Country because of a clash in exported names. Thanks to Todd Green for this suggestion. Added the FIPS 10-4 (US standard) for many sub countries Added FIPS10_4_code method Added ISO3166_2_code method Added many corrections to sub country names Thanks to TJ Mather for adding FIPS codes and fixing other data errors Added extra tests to main.t Prefixed internal data structure elements with a dash, to follow OO convention 1.11 23 Mar 2002 Corrected codes for Corsica, France, thanks to Mathias Herberts 1.10 04 Jan 2002 Replaced INIT block with anonymous subroutine. This removed problems that occurred when mod_perl or eval statements were used. 1.09 25 Jul 2001 Added code for US, West Virginia (WV), thanks to Michelle Agnew 1.08 16 Mar 2001 Made many corrections to country data to align it with ISO:3166-2 standard Defined sub country types for all countries Added information for Israel and Albania Removed some MS-DOS line terminators that were generating warnings Added two more tests to main.t 1.07 12 Mar 2001 Corrected errors in German sub countries thanks to Lars Steubesand Corrected errors in data for Austria, Poland, Romania, Turkey, Germany and Columbia. Thanks to Philip Newton. 1.06 20 Feb 2001 Allowed countries to be specified by either full name or two letter code Made country names compatible with ISO 3166-1 standard Added country_code method to retrieve ISO code for current object Added all_country_codes method to retrieve ISO codes for all countries Corrected abbreviation for Canadian province of Nunavut Thanks to Trevor Schellhorn for these suggestions Corrected two Belgium sub countries. Thanks to Wim Verhaegen 1.05 15 Oct 2000 sub_country_type method returns 'unknown' when no data defined Fixed bug in mismatch count in main.t test module 1.04 04 Oct 2000 Added all remaining countries, thanks to Alastair McKinstry Included sub country type (state, county etc) in lookup data Added country and sub_country_type methods Accounted for sub country codes of 0 1.03 20 Aug 2000 Added many more countries, thanks to Alastair McKinstry Now account for any incorrect capitalization of sub country names _clean subroutine only removes dots and spaces, dashes are now allowed Added subroutine to return array of countries that have lookup data Added test in main.t to convert all codes to names and back again Allowed for leading or trailing white space in __DATA__ entries 1.02 14 May 2000 Added Canadian province of Nunavut, thanks to Steve Taylor 1.01 25 Apr 2000 To follow the approach of ISO 3166-2 - renamed module from RegionAbbrev to SubCountry - replaced all references to 'abbreviation' with 'code' Improved regexes in _clean, thanks to Mark Summerfield Replaced regexp with hash lookup for valid countries Accepted all forms of upper/lower case in country name 1.00 8 Apr 2000 First Release Locale-SubCountry-2.07/LICENCE000444000000000000 4443112743115710 16454 0ustar00unknownunknown000000000000This software is copyright (c) 2016 by Kim Ryan. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Terms of the Perl programming language system itself a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- This software is Copyright (c) 2016 by Kim Ryan. This is free software, licensed under: The GNU General Public License, Version 1, February 1989 GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Suite 500, Boston, MA 02110-1335 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too. When we speak of free software, we are referring to freedom, not price. Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any work containing the Program or a portion of it, either verbatim or with modifications. Each licensee is addressed as "you". 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this General Public License and to the absence of any warranty; and give any other recipients of the Program a copy of this General Public License along with the Program. You may charge a fee for the physical act of transferring a copy. 2. You may modify your copy or copies of the Program or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains the Program or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option). c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this General Public License. d) You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another independent work with the Program (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms. 3. You may copy and distribute the Program (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) Source code for a work means the preferred form of the work for making modifications to it. For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system. 4. You may not copy, modify, sublicense, distribute or transfer the Program except as expressly provided under this General Public License. Any attempt otherwise to copy, modify, sublicense, distribute or transfer the Program is void, and will automatically terminate your rights to use the Program under this License. However, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance. 5. By copying, distributing or modifying the Program (or any work based on the Program) you indicate your acceptance of this license to do so, and all its terms and conditions. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. 7. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of the license which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the license, you may choose any version ever published by the Free Software Foundation. 8. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (a program to direct compilers to make passes at assemblers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice That's all there is to it! --- The Artistic License 1.0 --- This software is Copyright (c) 2016 by Kim Ryann. This is free software, licensed under: The Artistic License 1.0 The Artistic License Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. Definitions: - "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. - "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. - "Copyright Holder" is whoever is named in the copyright or copyrights for the package. - "You" is you, if you're thinking about copying or distributing this Package. - "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. b) use the modified Package only within your corporation or organization. c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. d) make other distribution arrangements with the Copyright Holder. 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. b) accompany the distribution with the machine-readable source of the Package with your modifications. c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. d) make other distribution arrangements with the Copyright Holder. 5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. 7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. 8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. The End Locale-SubCountry-2.07/MANIFEST000444000000000000 33012753031564 16553 0ustar00unknownunknown000000000000Build.PL Changes examples/demo.pl lib/Locale/SubCountry.pm lib/Locale/SubCountry/Codes.pm Makefile.PL MANIFEST This list of files README LICENCE t/main.t xt/author/pod-coverage.t xt/author/pod.t META.yml META.json Locale-SubCountry-2.07/META.json000444000000000000 311514134647375 17077 0ustar00unknownunknown000000000000{ "abstract" : "Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country", "author" : [ "Kim Ryan " ], "dynamic_config" : 1, "generated_by" : "Module::Build version 0.4229", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2 }, "name" : "Locale-SubCountry", "prereqs" : { "build" : { "requires" : { "Test::More" : "0.94", "Test::Pod" : "1.04" } }, "configure" : { "requires" : { "Module::Build" : "0.38" } }, "runtime" : { "requires" : { "JSON" : "1", "locale" : "1", "strict" : "0", "utf8" : "0", "warnings" : "0" } } }, "provides" : { "Locale::SubCountry" : { "file" : "lib/Locale/SubCountry.pm", "version" : "2.07" }, "Locale::SubCountry::Codes" : { "file" : "lib/Locale/SubCountry/Codes.pm" }, "Locale::SubCountry::World" : { "file" : "lib/Locale/SubCountry.pm", "version" : "2.07" } }, "release_status" : "stable", "resources" : { "license" : [ "http://dev.perl.org/licenses/" ], "repository" : { "url" : "https://github.com/kimryan/Locale-SubCountry" } }, "version" : "2.07", "x_serialization_backend" : "JSON::PP version 4.04" } Locale-SubCountry-2.07/META.yml000444000000000000 200714134647375 16726 0ustar00unknownunknown000000000000--- abstract: 'Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country' author: - 'Kim Ryan ' build_requires: Test::More: '0.94' Test::Pod: '1.04' configure_requires: Module::Build: '0.38' dynamic_config: 1 generated_by: 'Module::Build version 0.4229, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: Locale-SubCountry provides: Locale::SubCountry: file: lib/Locale/SubCountry.pm version: '2.07' Locale::SubCountry::Codes: file: lib/Locale/SubCountry/Codes.pm Locale::SubCountry::World: file: lib/Locale/SubCountry.pm version: '2.07' requires: JSON: '1' locale: '1' strict: '0' utf8: '0' warnings: '0' resources: license: http://dev.perl.org/licenses/ repository: https://github.com/kimryan/Locale-SubCountry version: '2.07' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' Locale-SubCountry-2.07/Makefile.PL000444000000000000 170412754265656 17436 0ustar00unknownunknown000000000000use 5.008004; use ExtUtils::MakeMaker; WriteMakefile ( 'NAME' => 'Locale::SubCountry', 'VERSION_FROM' => 'lib/Locale/SubCountry.pm', 'ABSTRACT' => 'Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country', 'AUTHOR' => 'Kim Ryan ', 'LICENSE' => 'perl', 'PREREQ_PM' => { locale => 1.00, strict => 1.04, utf8 => 1.09, warnings => 1.12, JSON => 1.00 }, TEST_REQUIRES => { Test::More => 0.94, Test::Pod => 1.04, }, 'LICENSE' => 'perl', META_MERGE => { 'meta-spec' => { version => 2 }, resources => { repository => { type => 'git', url => 'https://github.com/dwimperl/Task-DWIM.git', web => 'https://github.com/dwimperl/Task-DWIM', }, }, } ); Locale-SubCountry-2.07/README000444000000000000 566612754267030 16343 0ustar00unknownunknown000000000000NAME Locale::SubCountry - Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country SYNOPSIS use Locale::SubCountry; my $fr = Locale::SubCountry->new('France'); if ( not $fr ) { die "Invalid country or code: France\n"; } else { print($fr->country,"\n"); # France print($fr->country_code,"\n"); # FR if ( $fr->has_sub_countries ) { print($fr->code('Hautes-Alpes '),"\n"); # 05 print($fr->full_name('03'),"\n"); # Allier my $upper_case = 1; print($fr->full_name('02',$upper_case),"\n"); # AINSE print($fr->level('02'),"\n"); # Metropolitan department print($fr->level('A'),"\n"); # Metropolitan region print($fr->level('BL'),"\n"); # Overseas territorial collectivity print($fr->levels,"\n"); # Metropolitan region => 22, Metropolitan department => 96 ... my @fr_names = $fr->all_full_names; # Ain, Ainse, Allier... my @fr_codes = $fr->all_codes; # 01, 02, 03 ... my %fr_names_keyed_by_code = $fr->code_full_name_hash; # 01 => Ain... my %fr_codes_keyed_by_name = $fr->full_name_code_hash; # Ain => 01 ... foreach my $code ( sort keys %fr_names_keyed_by_code ) { printf("%-3s : %s\n",$code,$fr_names_keyed_by_code{$code}); } } } # Methods for fetching all country codes and names in the world my $world = Locale::SubCountry::World->new(); my @all_countries = $world->all_full_names; my @all_country_codes = $world->all_codes; my %all_countries_keyed_by_name = $world->full_name_code_hash; my %all_country_keyed_by_code = $world->code_full_name_hash; DESCRIPTION This module allows you to convert the full name for a country's administrative region to the code commonly used for postal addressing. The reverse look up can also be done. Lists of sub country codes are useful for web applications that require a valid state, county etc to be entered as part of a users location. Sub countries are termed as states in the US and Australia, provinces in Canada and counties in the UK and Ireland. Other terms include region, department, city and territory. Countries such as France have several levels of sub countries, such as Metropolitan department, Metropolitan region etc. Names and ISO 3166-2 codes for all sub countries in a country can be returned as either a hash or an array. Names and ISO 3166-1 codes for all countries in the world can be returned as either a hash or an array. This in turn can be used to fetch every sub country from every country (see examples/demo.pl). Sub country codes are defined in "ISO 3166-2, Codes for the representation of names of countries and their subdivisions". Locale-SubCountry-2.07/examples000755000000000000 014134647376 17140 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/examples/demo.pl000444000000000000 176312750046006 20546 0ustar00unknownunknown000000000000#!/usr/bin/perl # demo script for Locale::SubCountry use strict; use lib './lib'; use Locale::SubCountry; # For every country # list the country name and its 2 letter code # list each code and full name on a new line my $world = new Locale::SubCountry::World; my @all_countries = $world->all_full_names; my %all_letters; foreach my $country ( sort @all_countries ) { print "\n\n$country : "; my $current_country = new Locale::SubCountry($country); print $current_country->country_code,"\n"; # Are there any sub countries? if ( $current_country->has_sub_countries ) { # Get a hash, key is sub country code, value is full name, such as # SA => 'South Australia', VIC => 'Victoria' ... my %sub_countries_keyed_by_code = $current_country->code_full_name_hash; foreach my $code ( sort keys %sub_countries_keyed_by_code ) { printf("%-3s : %s\n",$code,$sub_countries_keyed_by_code{$code}); } } }Locale-SubCountry-2.07/lib000755000000000000 014134647376 16070 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/lib/Locale000755000000000000 014134647376 17267 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/lib/Locale/SubCountry.pm000444000000000000 5324514134506504 22113 0ustar00unknownunknown000000000000=head1 NAME Locale::SubCountry - Convert state, province, county etc. names to/from ISO 3166-2 codes, get all states in a country =head1 SYNOPSIS use Locale::SubCountry; my $fr = Locale::SubCountry->new('France'); if ( not $fr ) { die "Invalid country or code: France\n"; } else { print($fr->country,"\n"); # France print($fr->country_code,"\n"); # FR print($fr->country_number,"\n"); # 250 if ( $fr->has_sub_countries ) { print($fr->code('Hautes-Alpes '),"\n"); # 05 print($fr->full_name('03'),"\n"); # Allier my $upper_case = 1; print($fr->full_name('02',$upper_case),"\n"); # AINSE print($fr->level('02'),"\n"); # Metropolitan department print($fr->level('A'),"\n"); # Metropolitan region print($fr->level('BL'),"\n"); # Overseas territorial collectivity print($fr->levels,"\n"); # Metropolitan region => 22, Metropolitan department => 96 ... my @fr_names = $fr->all_full_names; # Ain, Ainse, Allier... my @fr_codes = $fr->all_codes; # 01, 02, 03 ... my %fr_names_keyed_by_code = $fr->code_full_name_hash; # 01 => Ain... my %fr_codes_keyed_by_name = $fr->full_name_code_hash; # Ain => 01 ... foreach my $code ( sort keys %fr_names_keyed_by_code ) { printf("%-3s : %s\n",$code,$fr_names_keyed_by_code{$code}); } } } # Methods for fetching all country codes and names in the world my $world = Locale::SubCountry::World->new(); my @all_countries = $world->all_full_names; my @all_country_codes = $world->all_codes; my %all_countries_keyed_by_name = $world->full_name_code_hash; my %all_country_keyed_by_code = $world->code_full_name_hash; =head1 DESCRIPTION This module allows you to convert the full name for a country's administrative region to the code commonly used for postal addressing. The reverse look up can also be done. Lists of sub country codes are useful for web applications that require a valid state, county etc to be entered as part of a users location. Sub countries are termed as states in the US and Australia, provinces in Canada and counties in the UK and Ireland. Other terms include region, department, city and territory. Countries such as France have several levels of sub countries, such as Metropolitan department, Metropolitan region etc. Names and ISO 3166-2 codes for all sub countries in a country can be returned as either a hash or an array. Names and ISO 3166-1 codes for all countries in the world can be returned as either a hash or an array. This in turn can be used to fetch every sub country from every country (see examples/demo.pl). Sub country codes are defined in "ISO 3166-2, Codes for the representation of names of countries and their subdivisions". =head1 METHODS Note that the following methods duplicate some of the functionality of the Locale::Country module (part of the Locale::Codes bundle). They are provided here because you may need to first access the list of countries and ISO 3166-1 codes, before fetching their sub country data. If you only need access to country data, then Locale::Country should be used. Note also the following method names are also used for sub country objects. (interface polymorphism for the technically minded). To avoid confusion, make sure that your chosen method is acting on the correct type of object. all_codes all_full_names code_full_name_hash full_name_code_hash =head2 Locale::SubCountry::World->new() The C method creates an instance of a world country object. This must be called before any of the following methods are invoked. The method takes no arguments. =head2 full_name_code_hash (for world objects) Given a world object, returns a hash of full name/code pairs for every country, keyed by country name. =head2 code_full_name_hash for world objects) Given a world object, returns a hash of full name/code pairs for every country, keyed by country code. =head2 all_full_names (for world objects) Given a world object, returns an array of all country full names, sorted alphabetically. =head2 all_codes (for world objects) Given a world object, returns an array of all country ISO 3166-1 codes, sorted alphabetically. =head2 Locale::SubCountry->new() The C method creates an instance of a sub country object. This must be called before any of the following methods are invoked. The method takes a single argument, the name of the country that contains the sub country that you want to work with. It may be specified either by the ISO 3166-1 alpha-2 code or the full name. For example: AF - Afghanistan AL - Albania DZ - Algeria AO - Angola AR - Argentina AM - Armenia AU - Australia AT - Austria If the code is specified, such as 'AU' the format may be in capitals or lower case If the full name is specified, such as 'Australia', the format must be in title case If a country name or code is specified that the module doesn't recognised, it will issue a warning. =head2 country Returns the current country name of a sub country object. The format is in title case, such as 'United Kingdom' =head2 country_code Given a sub country object, returns the alpha-2 ISO 3166-1 code of the country, such as 'GB' =head2 code Given a sub country object, the C method takes the full name of a sub country and returns the sub country's alpha-2 ISO 3166-2 code. The full name can appear in mixed case. All white space and non alphabetic characters are ignored, except the single space used to separate sub country names such as "New South Wales". The code is returned as a capitalised string, or "unknown" if no match is found. =head2 full_name Given a sub country object, the C method takes the alpha-2 ISO 3166-2 code of a sub country and returns the sub country's full name. The code can appear in mixed case. All white space and non alphabetic characters are ignored. The full name is returned as a title cased string, such as "South Australia". If an optional argument is supplied and set to a true value, the full name is returned as an upper cased string. =head2 level Given a sub country object, the C method takes the alpha-2 ISO 3166-2 code of a sub country and returns the sub country's level . Examples are city, province,state and district, and usually relates to the a regions size. The level is returned as a string, or "unknown" if no match is found. =head2 has_sub_countries Given a sub country object, the C method returns 1 if the current country has sub countries, or 0 if it does not. Some small countries such as New Caledonia" do not have sub countries. =head2 full_name_code_hash (for sub country objects) Given a sub country object, returns a hash of all full name/code pairs, keyed by sub country name. If the country has no sub countries, returns undef. =head2 code_full_name_hash (for sub country objects) Given a sub country object, returns a hash of all code/full name pairs, keyed by sub country code. If the country has no sub countries, returns undef. =head2 all_full_names (for sub country objects) Given a sub country object, returns an array of all sub country full names, sorted alphabetically. If the country has no sub countries, returns undef. =head2 all_codes (for sub country objects) Given a sub country object, returns an array of all sub country alpha-2 ISO 3166-2 codes. If the country has no sub countries, returns undef. =head1 SEE ALSO All codes have been downloaded from the latest version of the Debian Salsa project L and then files iso_3166-1.json, iso_3166-2.json L,L, L,L,L L for obtaining ISO 3166-2 data ISO 3166-1 Codes for the representation of names of countries and their subdivisions - Part 1: Country codes ISO 3166-2 Codes for the representation of names of countries and their subdivisions - Part 2: Country subdivision code =head1 LIMITATIONS The ISO 3166-2 standard romanizes the names of provinces and regions in non-latin script areas, such as Russia and South Korea. One Romanisation is given for each province name. For Russia, the BGN (1947) Romanization is used. Several sub country names have more than one code, and may not return the correct code for that sub country. These entries are usually duplicated because the name represents two different types of sub country, such as a province and a geographical unit. Examples are: AZERBAIJAN : Lankaran; LA (the Municipality), LAN (the Rayon) [see note] AZERBAIJAN : Saki; SA,SAK [see note] AZERBAIJAN : Susa; SS,SUS AZERBAIJAN : Yevlax; YE,YEV LAOS : Vientiane VI the Vientiane, VT the Prefecture MOZAMBIQUE : Maputo; MPM (City),L (Province) Note: these names are spelt with diacrtic characters (such as two dots above some of the 'a' characters). This causes utf8 errors on some versions of Perl, so they are omitted here. See the Locale::SubCountry::Codes module for correct spelling =head1 AUTHOR Locale::SubCountry was written by Kim Ryan . =head1 COPYRIGHT AND LICENCE This software is Copyright (c) 2018 by Kim Ryan. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 CREDITS Ron Savage for many corrections to the data Terrence Brannon produced Locale::US, which was the starting point for this module. =head1 COPYRIGHT AND LICENSE Copyright (c) 2019 Kim Ryan. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut #------------------------------------------------------------------------------- package Locale::SubCountry::World; use strict; use warnings; use locale; use Exporter; use JSON; use Locale::SubCountry::Codes; #------------------------------------------------------------------------------- our $VERSION = '2.07'; # Define all the methods for the 'world' class here. Note that because the # name space inherits from the Locale::SubCountry name space, the # package wide variables $SubCountry::country and $Locale::SubCountry::subcountry are # accessible. #------------------------------------------------------------------------------- # Create new instance of a SubCountry::World object sub new { my $class = shift; my $world = {}; bless($world,$class); return($world); } #------------------------------------------------------------------------------- # Returns a hash of code/name pairs for all countries, keyed by country code. sub code_full_name_hash { my $world = shift; return( %{ $Locale::SubCountry::country{_code_keyed} } ); } #------------------------------------------------------------------------------- # Returns a hash of name/code pairs for all countries, keyed by country name. sub full_name_code_hash { my $world = shift; return( %{ $Locale::SubCountry::country{_full_name_keyed} } ); } #------------------------------------------------------------------------------- # Returns sorted array of all country full names sub all_full_names { my $world = shift; return ( sort keys %{ $Locale::SubCountry::country{_full_name_keyed} }); } #------------------------------------------------------------------------------- # Returns sorted array of all two letter country codes sub all_codes { my $world = shift; return ( sort keys %{ $Locale::SubCountry::country{_code_keyed} }); } #------------------------------------------------------------------------------- package Locale::SubCountry; our $VERSION = '2.07'; #------------------------------------------------------------------------------- # Initialization code which will be run first to create global data structure. # Read in the list of abbreviations and full names defined in the # Locale::SubCountry::Codes package { unless ( $Locale::SubCountry::Codes::JSON ) { die "Could not locate Locale::SubCountry::Codes::JSON variable"; } # Get all the data from the Locale::SubCountry::Codes package and place into a structure # Note: will fail on badly formed JSON data my $json_text = $Locale::SubCountry::Codes::JSON; my $json = JSON->new->allow_nonref; my $all_codes_ref = $json->decode($json_text); foreach my $country_ref ( @{ $all_codes_ref->{'3166-1'} }) { # Create doubly indexed hash, keyed by country code and full name. # The user can supply either form to create a new sub_country # object, and the objects properties will hold both the countries # name and it's code. $Locale::SubCountry::country{_code_keyed}{$country_ref->{alpha_2}} = $country_ref->{name}; $Locale::SubCountry::country{_full_name_keyed}{$country_ref->{name}} = $country_ref->{alpha_2}; # Get numeric code for country, such as Australia = '036' $Locale::SubCountry::country{$country_ref->{name}}{_numeric }= $country_ref->{numeric}; } foreach my $sub_country_ref ( @{ $all_codes_ref->{'3166-2'} }) { my ($country_code,$sub_country_code) = split(/\-/,$sub_country_ref->{code}); my $sub_country_name = $sub_country_ref->{name}; $Locale::SubCountry::subcountry{$country_code}{_code_keyed}{$sub_country_code} = $sub_country_name; $Locale::SubCountry::subcountry{$country_code}{_full_name_keyed}{$sub_country_name} = $sub_country_code; $Locale::SubCountry::subcountry{$country_code}{$sub_country_code}{_level} = $sub_country_ref->{type}; # Record level occurence in a country $Locale::SubCountry::subcountry{$country_code}{_levels}{$sub_country_ref->{type}}++; } } #------------------------------------------------------------------------------- # Create new instance of a sub country object sub new { my $class = shift; my ($country_or_code) = @_; my ($country,$country_code); # Country may be supplied either as a two letter code, or the full name if ( length($country_or_code) == 2 ) { $country_or_code = uc($country_or_code); # lower case codes may be used, so fold to upper case if ( $Locale::SubCountry::country{_code_keyed}{$country_or_code} ) { $country_code = $country_or_code; # set country to it's full name $country = $Locale::SubCountry::country{_code_keyed}{$country_code}; } else { warn "Invalid country code: $country_or_code chosen"; return(undef); } } else { if ( $Locale::SubCountry::country{_full_name_keyed}{$country_or_code} ) { $country = $country_or_code; $country_code = $Locale::SubCountry::country{_full_name_keyed}{$country}; } else { warn "Invalid country name: $country_or_code chosen, names must be in title case"; return(undef); } } my $sub_country = {}; bless($sub_country,$class); $sub_country->{_country} = $country; $sub_country->{_country_code} = $country_code; $sub_country->{_numeric} = $Locale::SubCountry::country{$country}{_numeric}; return($sub_country); } #------------------------------------------------------------------------------- # Returns the current country's name of the sub country object sub country { my $sub_country = shift; return( $sub_country->{_country} ); } #------------------------------------------------------------------------------- # Returns the current country's alpha2 code of the sub country object sub country_code { my $sub_country = shift; return( $sub_country->{_country_code} ); } #------------------------------------------------------------------------------- # Returns the current country's numeric code of the sub country object sub country_number { my $sub_country = shift; return( $sub_country->{_numeric} ); } #------------------------------------------------------------------------------- # Given the full name for a sub country, return the ISO 3166-2 code sub code { my $sub_country = shift; my ($full_name) = @_; unless ( $sub_country->has_sub_countries ) { # this country has no sub countries return; } my $orig = $full_name; $full_name = _clean($full_name); my $code = $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{_full_name_keyed}{$full_name}; # If a code wasn't found, it could be because the user's capitalization # does not match the one in the look up data of this module. For example, # the user may have supplied the sub country "Ag R" (in Turkey) but the # ISO standard defines the spelling as "Ag r". unless ( defined $code ) { # For every sub country, compare upper cased full name supplied by user # to upper cased full name from lookup hash. If they match, return the # correctly cased full name from the lookup hash. my @all_names = $sub_country->all_full_names; my $current_name; foreach $current_name ( @all_names ) { if ( uc($full_name) eq uc($current_name) ) { $code = $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{_full_name_keyed}{$current_name}; } } } if ( defined $code ) { return($code); } else { return('unknown'); } } #------------------------------------------------------------------------------- # Given the alpha-2 ISO 3166-2 code for a sub country, return the full name. # Parameters are the code and a flag, which if set to true # will cause the full name to be uppercased sub full_name { my $sub_country = shift; my ($code,$uc_name) = @_; unless ( $sub_country->has_sub_countries ) { # this country has no sub countries # return; } $code = _clean($code); $code = uc($code); my $full_name = $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{_code_keyed}{$code}; if ( $uc_name ) { $full_name = uc($full_name); } if ( $full_name ) { return($full_name); } else { return('unknown'); } } #------------------------------------------------------------------------------- # Given the alpha-2 ISO 3166-2 code for a sub country, return the level, # being one of state, province, overseas territory, city, council etc sub level { my $sub_country = shift; my ($code) = @_; $code = _clean($code); my $level = $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{$code}{_level}; if ( $level ) { return($level); } else { return('unknown'); } } #------------------------------------------------------------------------------- # Given a sub country object, return a hash of all the levels and their totals # Such as Australia: State => 6, Territory => 2 sub levels { my $sub_country = shift; return( %{ $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{_levels} }); } #------------------------------------------------------------------------------- # Returns 1 if the current country has sub countries. otherwise 0. sub has_sub_countries { my $sub_country = shift; if ( $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{_code_keyed} ) { return(1); } else { return(0); } } #------------------------------------------------------------------------------- # Returns a hash of code/full name pairs, keyed by sub country code. sub code_full_name_hash { my $sub_country = shift; if ( $sub_country->has_sub_countries ) { return( %{ $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{_code_keyed} } ); } else { return(undef); } } #------------------------------------------------------------------------------- # Returns a hash of name/code pairs, keyed by sub country name. sub full_name_code_hash { my $sub_country = shift; if ( $sub_country->has_sub_countries ) { return( %{ $Locale::SubCountry::subcountry{$sub_country->{_country_code}}{_full_name_keyed} } ); } else { return(undef); } } #------------------------------------------------------------------------------- # Returns sorted array of all sub country full names for the current country sub all_full_names { my $sub_country = shift; if ( $sub_country->full_name_code_hash ) { my %all_full_names = $sub_country->full_name_code_hash; if ( %all_full_names ) { return( sort keys %all_full_names ); } } else { return(undef); } } #------------------------------------------------------------------------------- # Returns array of all sub country alpha-2 ISO 3166-2 codes for the current country sub all_codes { my $sub_country = shift; if ( $sub_country->code_full_name_hash ) { my %all_codes = $sub_country->code_full_name_hash; return( sort keys %all_codes ); } else { return(undef); } } #------------------------------------------------------------------------------- sub _clean { my ($input_string) = @_; if ( $input_string =~ /[\. ]/ ) { # remove dots $input_string =~ s/\.//go; # remove repeating spaces $input_string =~ s/ +/ /go; # remove any remaining leading or trailing space $input_string =~ s/^ //; $input_string =~ s/ $//; } return($input_string); } return(1); Locale-SubCountry-2.07/lib/Locale/SubCountry000755000000000000 014134647376 21404 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/lib/Locale/SubCountry/Codes.pm000444000000000000 202033414134647142 23207 0ustar00unknownunknown000000000000=head1 NAME Locale::SubCountry::Codes - data for Locale::SubCountry in JSON format =head1 DESCRIPTION Internal data for the Locale::SubCountry module NOTE, THIS FILE IS CREATED WITH UTF-8 ENCODING. THIS SHOULD NOT BE CHANGED. =head1 SOURCE All codes have been downloaded from the latest version of the Debian Salsa project L and then files iso_3166-1.json, iso_3166-2.json =cut #------------------------------------------------------------------------------ use utf8; use strict; use warnings; our $VERSION = '2.07'; package Locale::SubCountry::Codes; $Locale::SubCountry::Codes::JSON = q{ { "3166-1": [ { "alpha_2": "AW", "alpha_3": "ABW", "name": "Aruba", "numeric": "533" }, { "alpha_2": "AF", "alpha_3": "AFG", "name": "Afghanistan", "numeric": "004", "official_name": "Islamic Republic of Afghanistan" }, { "alpha_2": "AO", "alpha_3": "AGO", "name": "Angola", "numeric": "024", "official_name": "Republic of Angola" }, { "alpha_2": "AI", "alpha_3": "AIA", "name": "Anguilla", "numeric": "660" }, { "alpha_2": "AX", "alpha_3": "ALA", "name": "land Islands", "numeric": "248" }, { "alpha_2": "AL", "alpha_3": "ALB", "name": "Albania", "numeric": "008", "official_name": "Republic of Albania" }, { "alpha_2": "AD", "alpha_3": "AND", "name": "Andorra", "numeric": "020", "official_name": "Principality of Andorra" }, { "alpha_2": "AE", "alpha_3": "ARE", "name": "United Arab Emirates", "numeric": "784" }, { "alpha_2": "AR", "alpha_3": "ARG", "name": "Argentina", "numeric": "032", "official_name": "Argentine Republic" }, { "alpha_2": "AM", "alpha_3": "ARM", "name": "Armenia", "numeric": "051", "official_name": "Republic of Armenia" }, { "alpha_2": "AS", "alpha_3": "ASM", "name": "American Samoa", "numeric": "016" }, { "alpha_2": "AQ", "alpha_3": "ATA", "name": "Antarctica", "numeric": "010" }, { "alpha_2": "TF", "alpha_3": "ATF", "name": "French Southern Territories", "numeric": "260" }, { "alpha_2": "AG", "alpha_3": "ATG", "name": "Antigua and Barbuda", "numeric": "028" }, { "alpha_2": "AU", "alpha_3": "AUS", "name": "Australia", "numeric": "036" }, { "alpha_2": "AT", "alpha_3": "AUT", "name": "Austria", "numeric": "040", "official_name": "Republic of Austria" }, { "alpha_2": "AZ", "alpha_3": "AZE", "name": "Azerbaijan", "numeric": "031", "official_name": "Republic of Azerbaijan" }, { "alpha_2": "BI", "alpha_3": "BDI", "name": "Burundi", "numeric": "108", "official_name": "Republic of Burundi" }, { "alpha_2": "BE", "alpha_3": "BEL", "name": "Belgium", "numeric": "056", "official_name": "Kingdom of Belgium" }, { "alpha_2": "BJ", "alpha_3": "BEN", "name": "Benin", "numeric": "204", "official_name": "Republic of Benin" }, { "alpha_2": "BQ", "alpha_3": "BES", "name": "Bonaire, Sint Eustatius and Saba", "numeric": "535", "official_name": "Bonaire, Sint Eustatius and Saba" }, { "alpha_2": "BF", "alpha_3": "BFA", "name": "Burkina Faso", "numeric": "854" }, { "alpha_2": "BD", "alpha_3": "BGD", "name": "Bangladesh", "numeric": "050", "official_name": "People's Republic of Bangladesh" }, { "alpha_2": "BG", "alpha_3": "BGR", "name": "Bulgaria", "numeric": "100", "official_name": "Republic of Bulgaria" }, { "alpha_2": "BH", "alpha_3": "BHR", "name": "Bahrain", "numeric": "048", "official_name": "Kingdom of Bahrain" }, { "alpha_2": "BS", "alpha_3": "BHS", "name": "Bahamas", "numeric": "044", "official_name": "Commonwealth of the Bahamas" }, { "alpha_2": "BA", "alpha_3": "BIH", "name": "Bosnia and Herzegovina", "numeric": "070", "official_name": "Republic of Bosnia and Herzegovina" }, { "alpha_2": "BL", "alpha_3": "BLM", "name": "Saint Barth矇lemy", "numeric": "652" }, { "alpha_2": "BY", "alpha_3": "BLR", "name": "Belarus", "numeric": "112", "official_name": "Republic of Belarus" }, { "alpha_2": "BZ", "alpha_3": "BLZ", "name": "Belize", "numeric": "084" }, { "alpha_2": "BM", "alpha_3": "BMU", "name": "Bermuda", "numeric": "060" }, { "alpha_2": "BO", "alpha_3": "BOL", "common_name": "Bolivia", "name": "Bolivia, Plurinational State of", "numeric": "068", "official_name": "Plurinational State of Bolivia" }, { "alpha_2": "BR", "alpha_3": "BRA", "name": "Brazil", "numeric": "076", "official_name": "Federative Republic of Brazil" }, { "alpha_2": "BB", "alpha_3": "BRB", "name": "Barbados", "numeric": "052" }, { "alpha_2": "BN", "alpha_3": "BRN", "name": "Brunei Darussalam", "numeric": "096" }, { "alpha_2": "BT", "alpha_3": "BTN", "name": "Bhutan", "numeric": "064", "official_name": "Kingdom of Bhutan" }, { "alpha_2": "BV", "alpha_3": "BVT", "name": "Bouvet Island", "numeric": "074" }, { "alpha_2": "BW", "alpha_3": "BWA", "name": "Botswana", "numeric": "072", "official_name": "Republic of Botswana" }, { "alpha_2": "CF", "alpha_3": "CAF", "name": "Central African Republic", "numeric": "140" }, { "alpha_2": "CA", "alpha_3": "CAN", "name": "Canada", "numeric": "124" }, { "alpha_2": "CC", "alpha_3": "CCK", "name": "Cocos (Keeling) Islands", "numeric": "166" }, { "alpha_2": "CH", "alpha_3": "CHE", "name": "Switzerland", "numeric": "756", "official_name": "Swiss Confederation" }, { "alpha_2": "CL", "alpha_3": "CHL", "name": "Chile", "numeric": "152", "official_name": "Republic of Chile" }, { "alpha_2": "CN", "alpha_3": "CHN", "name": "China", "numeric": "156", "official_name": "People's Republic of China" }, { "alpha_2": "CI", "alpha_3": "CIV", "name": "C繫te d'Ivoire", "numeric": "384", "official_name": "Republic of C繫te d'Ivoire" }, { "alpha_2": "CM", "alpha_3": "CMR", "name": "Cameroon", "numeric": "120", "official_name": "Republic of Cameroon" }, { "alpha_2": "CD", "alpha_3": "COD", "name": "Congo, The Democratic Republic of the", "numeric": "180" }, { "alpha_2": "CG", "alpha_3": "COG", "name": "Congo", "numeric": "178", "official_name": "Republic of the Congo" }, { "alpha_2": "CK", "alpha_3": "COK", "name": "Cook Islands", "numeric": "184" }, { "alpha_2": "CO", "alpha_3": "COL", "name": "Colombia", "numeric": "170", "official_name": "Republic of Colombia" }, { "alpha_2": "KM", "alpha_3": "COM", "name": "Comoros", "numeric": "174", "official_name": "Union of the Comoros" }, { "alpha_2": "CV", "alpha_3": "CPV", "name": "Cabo Verde", "numeric": "132", "official_name": "Republic of Cabo Verde" }, { "alpha_2": "CR", "alpha_3": "CRI", "name": "Costa Rica", "numeric": "188", "official_name": "Republic of Costa Rica" }, { "alpha_2": "CU", "alpha_3": "CUB", "name": "Cuba", "numeric": "192", "official_name": "Republic of Cuba" }, { "alpha_2": "CW", "alpha_3": "CUW", "name": "Cura癟ao", "numeric": "531", "official_name": "Cura癟ao" }, { "alpha_2": "CX", "alpha_3": "CXR", "name": "Christmas Island", "numeric": "162" }, { "alpha_2": "KY", "alpha_3": "CYM", "name": "Cayman Islands", "numeric": "136" }, { "alpha_2": "CY", "alpha_3": "CYP", "name": "Cyprus", "numeric": "196", "official_name": "Republic of Cyprus" }, { "alpha_2": "CZ", "alpha_3": "CZE", "name": "Czechia", "numeric": "203", "official_name": "Czech Republic" }, { "alpha_2": "DE", "alpha_3": "DEU", "name": "Germany", "numeric": "276", "official_name": "Federal Republic of Germany" }, { "alpha_2": "DJ", "alpha_3": "DJI", "name": "Djibouti", "numeric": "262", "official_name": "Republic of Djibouti" }, { "alpha_2": "DM", "alpha_3": "DMA", "name": "Dominica", "numeric": "212", "official_name": "Commonwealth of Dominica" }, { "alpha_2": "DK", "alpha_3": "DNK", "name": "Denmark", "numeric": "208", "official_name": "Kingdom of Denmark" }, { "alpha_2": "DO", "alpha_3": "DOM", "name": "Dominican Republic", "numeric": "214" }, { "alpha_2": "DZ", "alpha_3": "DZA", "name": "Algeria", "numeric": "012", "official_name": "People's Democratic Republic of Algeria" }, { "alpha_2": "EC", "alpha_3": "ECU", "name": "Ecuador", "numeric": "218", "official_name": "Republic of Ecuador" }, { "alpha_2": "EG", "alpha_3": "EGY", "name": "Egypt", "numeric": "818", "official_name": "Arab Republic of Egypt" }, { "alpha_2": "ER", "alpha_3": "ERI", "name": "Eritrea", "numeric": "232", "official_name": "the State of Eritrea" }, { "alpha_2": "EH", "alpha_3": "ESH", "name": "Western Sahara", "numeric": "732" }, { "alpha_2": "ES", "alpha_3": "ESP", "name": "Spain", "numeric": "724", "official_name": "Kingdom of Spain" }, { "alpha_2": "EE", "alpha_3": "EST", "name": "Estonia", "numeric": "233", "official_name": "Republic of Estonia" }, { "alpha_2": "ET", "alpha_3": "ETH", "name": "Ethiopia", "numeric": "231", "official_name": "Federal Democratic Republic of Ethiopia" }, { "alpha_2": "FI", "alpha_3": "FIN", "name": "Finland", "numeric": "246", "official_name": "Republic of Finland" }, { "alpha_2": "FJ", "alpha_3": "FJI", "name": "Fiji", "numeric": "242", "official_name": "Republic of Fiji" }, { "alpha_2": "FK", "alpha_3": "FLK", "name": "Falkland Islands (Malvinas)", "numeric": "238" }, { "alpha_2": "FR", "alpha_3": "FRA", "name": "France", "numeric": "250", "official_name": "French Republic" }, { "alpha_2": "FO", "alpha_3": "FRO", "name": "Faroe Islands", "numeric": "234" }, { "alpha_2": "FM", "alpha_3": "FSM", "name": "Micronesia, Federated States of", "numeric": "583", "official_name": "Federated States of Micronesia" }, { "alpha_2": "GA", "alpha_3": "GAB", "name": "Gabon", "numeric": "266", "official_name": "Gabonese Republic" }, { "alpha_2": "GB", "alpha_3": "GBR", "name": "United Kingdom", "numeric": "826", "official_name": "United Kingdom of Great Britain and Northern Ireland" }, { "alpha_2": "GE", "alpha_3": "GEO", "name": "Georgia", "numeric": "268" }, { "alpha_2": "GG", "alpha_3": "GGY", "name": "Guernsey", "numeric": "831" }, { "alpha_2": "GH", "alpha_3": "GHA", "name": "Ghana", "numeric": "288", "official_name": "Republic of Ghana" }, { "alpha_2": "GI", "alpha_3": "GIB", "name": "Gibraltar", "numeric": "292" }, { "alpha_2": "GN", "alpha_3": "GIN", "name": "Guinea", "numeric": "324", "official_name": "Republic of Guinea" }, { "alpha_2": "GP", "alpha_3": "GLP", "name": "Guadeloupe", "numeric": "312" }, { "alpha_2": "GM", "alpha_3": "GMB", "name": "Gambia", "numeric": "270", "official_name": "Republic of the Gambia" }, { "alpha_2": "GW", "alpha_3": "GNB", "name": "Guinea-Bissau", "numeric": "624", "official_name": "Republic of Guinea-Bissau" }, { "alpha_2": "GQ", "alpha_3": "GNQ", "name": "Equatorial Guinea", "numeric": "226", "official_name": "Republic of Equatorial Guinea" }, { "alpha_2": "GR", "alpha_3": "GRC", "name": "Greece", "numeric": "300", "official_name": "Hellenic Republic" }, { "alpha_2": "GD", "alpha_3": "GRD", "name": "Grenada", "numeric": "308" }, { "alpha_2": "GL", "alpha_3": "GRL", "name": "Greenland", "numeric": "304" }, { "alpha_2": "GT", "alpha_3": "GTM", "name": "Guatemala", "numeric": "320", "official_name": "Republic of Guatemala" }, { "alpha_2": "GF", "alpha_3": "GUF", "name": "French Guiana", "numeric": "254" }, { "alpha_2": "GU", "alpha_3": "GUM", "name": "Guam", "numeric": "316" }, { "alpha_2": "GY", "alpha_3": "GUY", "name": "Guyana", "numeric": "328", "official_name": "Republic of Guyana" }, { "alpha_2": "HK", "alpha_3": "HKG", "name": "Hong Kong", "numeric": "344", "official_name": "Hong Kong Special Administrative Region of China" }, { "alpha_2": "HM", "alpha_3": "HMD", "name": "Heard Island and McDonald Islands", "numeric": "334" }, { "alpha_2": "HN", "alpha_3": "HND", "name": "Honduras", "numeric": "340", "official_name": "Republic of Honduras" }, { "alpha_2": "HR", "alpha_3": "HRV", "name": "Croatia", "numeric": "191", "official_name": "Republic of Croatia" }, { "alpha_2": "HT", "alpha_3": "HTI", "name": "Haiti", "numeric": "332", "official_name": "Republic of Haiti" }, { "alpha_2": "HU", "alpha_3": "HUN", "name": "Hungary", "numeric": "348", "official_name": "Hungary" }, { "alpha_2": "ID", "alpha_3": "IDN", "name": "Indonesia", "numeric": "360", "official_name": "Republic of Indonesia" }, { "alpha_2": "IM", "alpha_3": "IMN", "name": "Isle of Man", "numeric": "833" }, { "alpha_2": "IN", "alpha_3": "IND", "name": "India", "numeric": "356", "official_name": "Republic of India" }, { "alpha_2": "IO", "alpha_3": "IOT", "name": "British Indian Ocean Territory", "numeric": "086" }, { "alpha_2": "IE", "alpha_3": "IRL", "name": "Ireland", "numeric": "372" }, { "alpha_2": "IR", "alpha_3": "IRN", "name": "Iran, Islamic Republic of", "numeric": "364", "official_name": "Islamic Republic of Iran" }, { "alpha_2": "IQ", "alpha_3": "IRQ", "name": "Iraq", "numeric": "368", "official_name": "Republic of Iraq" }, { "alpha_2": "IS", "alpha_3": "ISL", "name": "Iceland", "numeric": "352", "official_name": "Republic of Iceland" }, { "alpha_2": "IL", "alpha_3": "ISR", "name": "Israel", "numeric": "376", "official_name": "State of Israel" }, { "alpha_2": "IT", "alpha_3": "ITA", "name": "Italy", "numeric": "380", "official_name": "Italian Republic" }, { "alpha_2": "JM", "alpha_3": "JAM", "name": "Jamaica", "numeric": "388" }, { "alpha_2": "JE", "alpha_3": "JEY", "name": "Jersey", "numeric": "832" }, { "alpha_2": "JO", "alpha_3": "JOR", "name": "Jordan", "numeric": "400", "official_name": "Hashemite Kingdom of Jordan" }, { "alpha_2": "JP", "alpha_3": "JPN", "name": "Japan", "numeric": "392" }, { "alpha_2": "KZ", "alpha_3": "KAZ", "name": "Kazakhstan", "numeric": "398", "official_name": "Republic of Kazakhstan" }, { "alpha_2": "KE", "alpha_3": "KEN", "name": "Kenya", "numeric": "404", "official_name": "Republic of Kenya" }, { "alpha_2": "KG", "alpha_3": "KGZ", "name": "Kyrgyzstan", "numeric": "417", "official_name": "Kyrgyz Republic" }, { "alpha_2": "KH", "alpha_3": "KHM", "name": "Cambodia", "numeric": "116", "official_name": "Kingdom of Cambodia" }, { "alpha_2": "KI", "alpha_3": "KIR", "name": "Kiribati", "numeric": "296", "official_name": "Republic of Kiribati" }, { "alpha_2": "KN", "alpha_3": "KNA", "name": "Saint Kitts and Nevis", "numeric": "659" }, { "alpha_2": "KR", "alpha_3": "KOR", "name": "Korea, Republic of", "numeric": "410" }, { "alpha_2": "KW", "alpha_3": "KWT", "name": "Kuwait", "numeric": "414", "official_name": "State of Kuwait" }, { "alpha_2": "LA", "alpha_3": "LAO", "name": "Lao People's Democratic Republic", "numeric": "418" }, { "alpha_2": "LB", "alpha_3": "LBN", "name": "Lebanon", "numeric": "422", "official_name": "Lebanese Republic" }, { "alpha_2": "LR", "alpha_3": "LBR", "name": "Liberia", "numeric": "430", "official_name": "Republic of Liberia" }, { "alpha_2": "LY", "alpha_3": "LBY", "name": "Libya", "numeric": "434", "official_name": "Libya" }, { "alpha_2": "LC", "alpha_3": "LCA", "name": "Saint Lucia", "numeric": "662" }, { "alpha_2": "LI", "alpha_3": "LIE", "name": "Liechtenstein", "numeric": "438", "official_name": "Principality of Liechtenstein" }, { "alpha_2": "LK", "alpha_3": "LKA", "name": "Sri Lanka", "numeric": "144", "official_name": "Democratic Socialist Republic of Sri Lanka" }, { "alpha_2": "LS", "alpha_3": "LSO", "name": "Lesotho", "numeric": "426", "official_name": "Kingdom of Lesotho" }, { "alpha_2": "LT", "alpha_3": "LTU", "name": "Lithuania", "numeric": "440", "official_name": "Republic of Lithuania" }, { "alpha_2": "LU", "alpha_3": "LUX", "name": "Luxembourg", "numeric": "442", "official_name": "Grand Duchy of Luxembourg" }, { "alpha_2": "LV", "alpha_3": "LVA", "name": "Latvia", "numeric": "428", "official_name": "Republic of Latvia" }, { "alpha_2": "MO", "alpha_3": "MAC", "name": "Macao", "numeric": "446", "official_name": "Macao Special Administrative Region of China" }, { "alpha_2": "MF", "alpha_3": "MAF", "name": "Saint Martin (French part)", "numeric": "663" }, { "alpha_2": "MA", "alpha_3": "MAR", "name": "Morocco", "numeric": "504", "official_name": "Kingdom of Morocco" }, { "alpha_2": "MC", "alpha_3": "MCO", "name": "Monaco", "numeric": "492", "official_name": "Principality of Monaco" }, { "alpha_2": "MD", "alpha_3": "MDA", "common_name": "Moldova", "name": "Moldova, Republic of", "numeric": "498", "official_name": "Republic of Moldova" }, { "alpha_2": "MG", "alpha_3": "MDG", "name": "Madagascar", "numeric": "450", "official_name": "Republic of Madagascar" }, { "alpha_2": "MV", "alpha_3": "MDV", "name": "Maldives", "numeric": "462", "official_name": "Republic of Maldives" }, { "alpha_2": "MX", "alpha_3": "MEX", "name": "Mexico", "numeric": "484", "official_name": "United Mexican States" }, { "alpha_2": "MH", "alpha_3": "MHL", "name": "Marshall Islands", "numeric": "584", "official_name": "Republic of the Marshall Islands" }, { "alpha_2": "MK", "alpha_3": "MKD", "name": "North Macedonia", "numeric": "807", "official_name": "Republic of North Macedonia" }, { "alpha_2": "ML", "alpha_3": "MLI", "name": "Mali", "numeric": "466", "official_name": "Republic of Mali" }, { "alpha_2": "MT", "alpha_3": "MLT", "name": "Malta", "numeric": "470", "official_name": "Republic of Malta" }, { "alpha_2": "MM", "alpha_3": "MMR", "name": "Myanmar", "numeric": "104", "official_name": "Republic of Myanmar" }, { "alpha_2": "ME", "alpha_3": "MNE", "name": "Montenegro", "numeric": "499", "official_name": "Montenegro" }, { "alpha_2": "MN", "alpha_3": "MNG", "name": "Mongolia", "numeric": "496" }, { "alpha_2": "MP", "alpha_3": "MNP", "name": "Northern Mariana Islands", "numeric": "580", "official_name": "Commonwealth of the Northern Mariana Islands" }, { "alpha_2": "MZ", "alpha_3": "MOZ", "name": "Mozambique", "numeric": "508", "official_name": "Republic of Mozambique" }, { "alpha_2": "MR", "alpha_3": "MRT", "name": "Mauritania", "numeric": "478", "official_name": "Islamic Republic of Mauritania" }, { "alpha_2": "MS", "alpha_3": "MSR", "name": "Montserrat", "numeric": "500" }, { "alpha_2": "MQ", "alpha_3": "MTQ", "name": "Martinique", "numeric": "474" }, { "alpha_2": "MU", "alpha_3": "MUS", "name": "Mauritius", "numeric": "480", "official_name": "Republic of Mauritius" }, { "alpha_2": "MW", "alpha_3": "MWI", "name": "Malawi", "numeric": "454", "official_name": "Republic of Malawi" }, { "alpha_2": "MY", "alpha_3": "MYS", "name": "Malaysia", "numeric": "458" }, { "alpha_2": "YT", "alpha_3": "MYT", "name": "Mayotte", "numeric": "175" }, { "alpha_2": "NA", "alpha_3": "NAM", "name": "Namibia", "numeric": "516", "official_name": "Republic of Namibia" }, { "alpha_2": "NC", "alpha_3": "NCL", "name": "New Caledonia", "numeric": "540" }, { "alpha_2": "NE", "alpha_3": "NER", "name": "Niger", "numeric": "562", "official_name": "Republic of the Niger" }, { "alpha_2": "NF", "alpha_3": "NFK", "name": "Norfolk Island", "numeric": "574" }, { "alpha_2": "NG", "alpha_3": "NGA", "name": "Nigeria", "numeric": "566", "official_name": "Federal Republic of Nigeria" }, { "alpha_2": "NI", "alpha_3": "NIC", "name": "Nicaragua", "numeric": "558", "official_name": "Republic of Nicaragua" }, { "alpha_2": "NU", "alpha_3": "NIU", "name": "Niue", "numeric": "570", "official_name": "Niue" }, { "alpha_2": "NL", "alpha_3": "NLD", "name": "Netherlands", "numeric": "528", "official_name": "Kingdom of the Netherlands" }, { "alpha_2": "NO", "alpha_3": "NOR", "name": "Norway", "numeric": "578", "official_name": "Kingdom of Norway" }, { "alpha_2": "NP", "alpha_3": "NPL", "name": "Nepal", "numeric": "524", "official_name": "Federal Democratic Republic of Nepal" }, { "alpha_2": "NR", "alpha_3": "NRU", "name": "Nauru", "numeric": "520", "official_name": "Republic of Nauru" }, { "alpha_2": "NZ", "alpha_3": "NZL", "name": "New Zealand", "numeric": "554" }, { "alpha_2": "OM", "alpha_3": "OMN", "name": "Oman", "numeric": "512", "official_name": "Sultanate of Oman" }, { "alpha_2": "PK", "alpha_3": "PAK", "name": "Pakistan", "numeric": "586", "official_name": "Islamic Republic of Pakistan" }, { "alpha_2": "PA", "alpha_3": "PAN", "name": "Panama", "numeric": "591", "official_name": "Republic of Panama" }, { "alpha_2": "PN", "alpha_3": "PCN", "name": "Pitcairn", "numeric": "612" }, { "alpha_2": "PE", "alpha_3": "PER", "name": "Peru", "numeric": "604", "official_name": "Republic of Peru" }, { "alpha_2": "PH", "alpha_3": "PHL", "name": "Philippines", "numeric": "608", "official_name": "Republic of the Philippines" }, { "alpha_2": "PW", "alpha_3": "PLW", "name": "Palau", "numeric": "585", "official_name": "Republic of Palau" }, { "alpha_2": "PG", "alpha_3": "PNG", "name": "Papua New Guinea", "numeric": "598", "official_name": "Independent State of Papua New Guinea" }, { "alpha_2": "PL", "alpha_3": "POL", "name": "Poland", "numeric": "616", "official_name": "Republic of Poland" }, { "alpha_2": "PR", "alpha_3": "PRI", "name": "Puerto Rico", "numeric": "630" }, { "alpha_2": "KP", "alpha_3": "PRK", "name": "Korea, Democratic People's Republic of", "numeric": "408", "official_name": "Democratic People's Republic of Korea" }, { "alpha_2": "PT", "alpha_3": "PRT", "name": "Portugal", "numeric": "620", "official_name": "Portuguese Republic" }, { "alpha_2": "PY", "alpha_3": "PRY", "name": "Paraguay", "numeric": "600", "official_name": "Republic of Paraguay" }, { "alpha_2": "PS", "alpha_3": "PSE", "name": "Palestine, State of", "numeric": "275", "official_name": "the State of Palestine" }, { "alpha_2": "PF", "alpha_3": "PYF", "name": "French Polynesia", "numeric": "258" }, { "alpha_2": "QA", "alpha_3": "QAT", "name": "Qatar", "numeric": "634", "official_name": "State of Qatar" }, { "alpha_2": "RE", "alpha_3": "REU", "name": "R矇union", "numeric": "638" }, { "alpha_2": "RO", "alpha_3": "ROU", "name": "Romania", "numeric": "642" }, { "alpha_2": "RU", "alpha_3": "RUS", "name": "Russian Federation", "numeric": "643" }, { "alpha_2": "RW", "alpha_3": "RWA", "name": "Rwanda", "numeric": "646", "official_name": "Rwandese Republic" }, { "alpha_2": "SA", "alpha_3": "SAU", "name": "Saudi Arabia", "numeric": "682", "official_name": "Kingdom of Saudi Arabia" }, { "alpha_2": "SD", "alpha_3": "SDN", "name": "Sudan", "numeric": "729", "official_name": "Republic of the Sudan" }, { "alpha_2": "SN", "alpha_3": "SEN", "name": "Senegal", "numeric": "686", "official_name": "Republic of Senegal" }, { "alpha_2": "SG", "alpha_3": "SGP", "name": "Singapore", "numeric": "702", "official_name": "Republic of Singapore" }, { "alpha_2": "GS", "alpha_3": "SGS", "name": "South Georgia and the South Sandwich Islands", "numeric": "239" }, { "alpha_2": "SH", "alpha_3": "SHN", "name": "Saint Helena, Ascension and Tristan da Cunha", "numeric": "654" }, { "alpha_2": "SJ", "alpha_3": "SJM", "name": "Svalbard and Jan Mayen", "numeric": "744" }, { "alpha_2": "SB", "alpha_3": "SLB", "name": "Solomon Islands", "numeric": "090" }, { "alpha_2": "SL", "alpha_3": "SLE", "name": "Sierra Leone", "numeric": "694", "official_name": "Republic of Sierra Leone" }, { "alpha_2": "SV", "alpha_3": "SLV", "name": "El Salvador", "numeric": "222", "official_name": "Republic of El Salvador" }, { "alpha_2": "SM", "alpha_3": "SMR", "name": "San Marino", "numeric": "674", "official_name": "Republic of San Marino" }, { "alpha_2": "SO", "alpha_3": "SOM", "name": "Somalia", "numeric": "706", "official_name": "Federal Republic of Somalia" }, { "alpha_2": "PM", "alpha_3": "SPM", "name": "Saint Pierre and Miquelon", "numeric": "666" }, { "alpha_2": "RS", "alpha_3": "SRB", "name": "Serbia", "numeric": "688", "official_name": "Republic of Serbia" }, { "alpha_2": "SS", "alpha_3": "SSD", "name": "South Sudan", "numeric": "728", "official_name": "Republic of South Sudan" }, { "alpha_2": "ST", "alpha_3": "STP", "name": "Sao Tome and Principe", "numeric": "678", "official_name": "Democratic Republic of Sao Tome and Principe" }, { "alpha_2": "SR", "alpha_3": "SUR", "name": "Suriname", "numeric": "740", "official_name": "Republic of Suriname" }, { "alpha_2": "SK", "alpha_3": "SVK", "name": "Slovakia", "numeric": "703", "official_name": "Slovak Republic" }, { "alpha_2": "SI", "alpha_3": "SVN", "name": "Slovenia", "numeric": "705", "official_name": "Republic of Slovenia" }, { "alpha_2": "SE", "alpha_3": "SWE", "name": "Sweden", "numeric": "752", "official_name": "Kingdom of Sweden" }, { "alpha_2": "SZ", "alpha_3": "SWZ", "name": "Eswatini", "numeric": "748", "official_name": "Kingdom of Eswatini" }, { "alpha_2": "SX", "alpha_3": "SXM", "name": "Sint Maarten (Dutch part)", "numeric": "534", "official_name": "Sint Maarten (Dutch part)" }, { "alpha_2": "SC", "alpha_3": "SYC", "name": "Seychelles", "numeric": "690", "official_name": "Republic of Seychelles" }, { "alpha_2": "SY", "alpha_3": "SYR", "name": "Syrian Arab Republic", "numeric": "760" }, { "alpha_2": "TC", "alpha_3": "TCA", "name": "Turks and Caicos Islands", "numeric": "796" }, { "alpha_2": "TD", "alpha_3": "TCD", "name": "Chad", "numeric": "148", "official_name": "Republic of Chad" }, { "alpha_2": "TG", "alpha_3": "TGO", "name": "Togo", "numeric": "768", "official_name": "Togolese Republic" }, { "alpha_2": "TH", "alpha_3": "THA", "name": "Thailand", "numeric": "764", "official_name": "Kingdom of Thailand" }, { "alpha_2": "TJ", "alpha_3": "TJK", "name": "Tajikistan", "numeric": "762", "official_name": "Republic of Tajikistan" }, { "alpha_2": "TK", "alpha_3": "TKL", "name": "Tokelau", "numeric": "772" }, { "alpha_2": "TM", "alpha_3": "TKM", "name": "Turkmenistan", "numeric": "795" }, { "alpha_2": "TL", "alpha_3": "TLS", "name": "Timor-Leste", "numeric": "626", "official_name": "Democratic Republic of Timor-Leste" }, { "alpha_2": "TO", "alpha_3": "TON", "name": "Tonga", "numeric": "776", "official_name": "Kingdom of Tonga" }, { "alpha_2": "TT", "alpha_3": "TTO", "name": "Trinidad and Tobago", "numeric": "780", "official_name": "Republic of Trinidad and Tobago" }, { "alpha_2": "TN", "alpha_3": "TUN", "name": "Tunisia", "numeric": "788", "official_name": "Republic of Tunisia" }, { "alpha_2": "TR", "alpha_3": "TUR", "name": "Turkey", "numeric": "792", "official_name": "Republic of Turkey" }, { "alpha_2": "TV", "alpha_3": "TUV", "name": "Tuvalu", "numeric": "798" }, { "alpha_2": "TW", "alpha_3": "TWN", "common_name": "Taiwan", "name": "Taiwan, Province of China", "numeric": "158", "official_name": "Taiwan, Province of China" }, { "alpha_2": "TZ", "alpha_3": "TZA", "common_name": "Tanzania", "name": "Tanzania, United Republic of", "numeric": "834", "official_name": "United Republic of Tanzania" }, { "alpha_2": "UG", "alpha_3": "UGA", "name": "Uganda", "numeric": "800", "official_name": "Republic of Uganda" }, { "alpha_2": "UA", "alpha_3": "UKR", "name": "Ukraine", "numeric": "804" }, { "alpha_2": "UM", "alpha_3": "UMI", "name": "United States Minor Outlying Islands", "numeric": "581" }, { "alpha_2": "UY", "alpha_3": "URY", "name": "Uruguay", "numeric": "858", "official_name": "Eastern Republic of Uruguay" }, { "alpha_2": "US", "alpha_3": "USA", "name": "United States", "numeric": "840", "official_name": "United States of America" }, { "alpha_2": "UZ", "alpha_3": "UZB", "name": "Uzbekistan", "numeric": "860", "official_name": "Republic of Uzbekistan" }, { "alpha_2": "VA", "alpha_3": "VAT", "name": "Holy See (Vatican City State)", "numeric": "336" }, { "alpha_2": "VC", "alpha_3": "VCT", "name": "Saint Vincent and the Grenadines", "numeric": "670" }, { "alpha_2": "VE", "alpha_3": "VEN", "common_name": "Venezuela", "name": "Venezuela, Bolivarian Republic of", "numeric": "862", "official_name": "Bolivarian Republic of Venezuela" }, { "alpha_2": "VG", "alpha_3": "VGB", "name": "Virgin Islands, British", "numeric": "092", "official_name": "British Virgin Islands" }, { "alpha_2": "VI", "alpha_3": "VIR", "name": "Virgin Islands, U.S.", "numeric": "850", "official_name": "Virgin Islands of the United States" }, { "alpha_2": "VN", "alpha_3": "VNM", "common_name": "Vietnam", "name": "Viet Nam", "numeric": "704", "official_name": "Socialist Republic of Viet Nam" }, { "alpha_2": "VU", "alpha_3": "VUT", "name": "Vanuatu", "numeric": "548", "official_name": "Republic of Vanuatu" }, { "alpha_2": "WF", "alpha_3": "WLF", "name": "Wallis and Futuna", "numeric": "876" }, { "alpha_2": "WS", "alpha_3": "WSM", "name": "Samoa", "numeric": "882", "official_name": "Independent State of Samoa" }, { "alpha_2": "YE", "alpha_3": "YEM", "name": "Yemen", "numeric": "887", "official_name": "Republic of Yemen" }, { "alpha_2": "ZA", "alpha_3": "ZAF", "name": "South Africa", "numeric": "710", "official_name": "Republic of South Africa" }, { "alpha_2": "ZM", "alpha_3": "ZMB", "name": "Zambia", "numeric": "894", "official_name": "Republic of Zambia" }, { "alpha_2": "ZW", "alpha_3": "ZWE", "name": "Zimbabwe", "numeric": "716", "official_name": "Republic of Zimbabwe" }, { "alpha_2": "XK", "alpha_3": "XXK", "name": "Kosovo", "numeric": "", "official_name": "Republic of Kosovo" } ], "3166-2": [ { "code": "AD-02", "name": "Canillo", "type": "Parish" }, { "code": "AD-03", "name": "Encamp", "type": "Parish" }, { "code": "AD-04", "name": "La Massana", "type": "Parish" }, { "code": "AD-05", "name": "Ordino", "type": "Parish" }, { "code": "AD-06", "name": "Sant Juli de L簷ria", "type": "Parish" }, { "code": "AD-07", "name": "Andorra la Vella", "type": "Parish" }, { "code": "AD-08", "name": "Escaldes-Engordany", "type": "Parish" }, { "code": "AE-AJ", "name": "Ajmn", "type": "Emirate" }, { "code": "AE-AZ", "name": "Ab贖 Z怬aby", "type": "Emirate" }, { "code": "AE-DU", "name": "Dubayy", "type": "Emirate" }, { "code": "AE-FU", "name": "Al Fujayrah", "type": "Emirate" }, { "code": "AE-RK", "name": "Ras al Khaymah", "type": "Emirate" }, { "code": "AE-SH", "name": "Ash Shriqah", "type": "Emirate" }, { "code": "AE-UQ", "name": "Umm al Qaywayn", "type": "Emirate" }, { "code": "AF-BAL", "name": "Balkh", "type": "Province" }, { "code": "AF-BAM", "name": "Bmyn", "type": "Province" }, { "code": "AF-BDG", "name": "Bdgh蘋s", "type": "Province" }, { "code": "AF-BDS", "name": "Badakhshn", "type": "Province" }, { "code": "AF-BGL", "name": "Baghln", "type": "Province" }, { "code": "AF-DAY", "name": "Dykund蘋", "type": "Province" }, { "code": "AF-FRA", "name": "Farh", "type": "Province" }, { "code": "AF-FYB", "name": "Fryb", "type": "Province" }, { "code": "AF-GHA", "name": "Ghazn蘋", "type": "Province" }, { "code": "AF-GHO", "name": "Ghr", "type": "Province" }, { "code": "AF-HEL", "name": "Helmand", "type": "Province" }, { "code": "AF-HER", "name": "Hert", "type": "Province" }, { "code": "AF-JOW", "name": "Jowzjn", "type": "Province" }, { "code": "AF-KAB", "name": "Kbul", "type": "Province" }, { "code": "AF-KAN", "name": "Kandahr", "type": "Province" }, { "code": "AF-KAP", "name": "Kp蘋s", "type": "Province" }, { "code": "AF-KDZ", "name": "Kunduz", "type": "Province" }, { "code": "AF-KHO", "name": "Khst", "type": "Province" }, { "code": "AF-KNR", "name": "Kuna廜", "type": "Province" }, { "code": "AF-LAG", "name": "Laghmn", "type": "Province" }, { "code": "AF-LOG", "name": "Lgar", "type": "Province" }, { "code": "AF-NAN", "name": "Nangarhr", "type": "Province" }, { "code": "AF-NIM", "name": "N蘋mrz", "type": "Province" }, { "code": "AF-NUR", "name": "N贖ristn", "type": "Province" }, { "code": "AF-PAN", "name": "Panjshayr", "type": "Province" }, { "code": "AF-PAR", "name": "Parwn", "type": "Province" }, { "code": "AF-PIA", "name": "Paktiy", "type": "Province" }, { "code": "AF-PKA", "name": "Pakt蘋k", "type": "Province" }, { "code": "AF-SAM", "name": "Samangn", "type": "Province" }, { "code": "AF-SAR", "name": "Sar-e Pul", "type": "Province" }, { "code": "AF-TAK", "name": "Takhr", "type": "Province" }, { "code": "AF-URU", "name": "Uruzgn", "type": "Province" }, { "code": "AF-WAR", "name": "Wardak", "type": "Province" }, { "code": "AF-ZAB", "name": "Zbul", "type": "Province" }, { "code": "AG-03", "name": "Saint George", "type": "Parish" }, { "code": "AG-04", "name": "Saint John", "type": "Parish" }, { "code": "AG-05", "name": "Saint Mary", "type": "Parish" }, { "code": "AG-06", "name": "Saint Paul", "type": "Parish" }, { "code": "AG-07", "name": "Saint Peter", "type": "Parish" }, { "code": "AG-08", "name": "Saint Philip", "type": "Parish" }, { "code": "AG-10", "name": "Barbuda", "type": "Dependency" }, { "code": "AG-11", "name": "Redonda", "type": "Dependency" }, { "code": "AL-01", "name": "Berat", "type": "County" }, { "code": "AL-02", "name": "Durr禱s", "type": "County" }, { "code": "AL-03", "name": "Elbasan", "type": "County" }, { "code": "AL-04", "name": "Fier", "type": "County" }, { "code": "AL-05", "name": "Gjirokast禱r", "type": "County" }, { "code": "AL-06", "name": "Kor癟禱", "type": "County" }, { "code": "AL-07", "name": "Kuk禱s", "type": "County" }, { "code": "AL-08", "name": "Lezh禱", "type": "County" }, { "code": "AL-09", "name": "Dib禱r", "type": "County" }, { "code": "AL-10", "name": "Shkod禱r", "type": "County" }, { "code": "AL-11", "name": "Tiran禱", "type": "County" }, { "code": "AL-12", "name": "Vlor禱", "type": "County" }, { "code": "AM-AG", "name": "Aragac怗otn", "type": "Region" }, { "code": "AM-AR", "name": "Ararat", "type": "Region" }, { "code": "AM-AV", "name": "Armavir", "type": "Region" }, { "code": "AM-ER", "name": "Erevan", "type": "City" }, { "code": "AM-GR", "name": "Ge纂ark'unik'", "type": "Region" }, { "code": "AM-KT", "name": "Kotayk'", "type": "Region" }, { "code": "AM-LO", "name": "Lo廜i", "type": "Region" }, { "code": "AM-SH", "name": "irak", "type": "Region" }, { "code": "AM-SU", "name": "Syunik'", "type": "Region" }, { "code": "AM-TV", "name": "Tavu禳", "type": "Region" }, { "code": "AM-VD", "name": "Vayo Jor", "type": "Region" }, { "code": "AO-BGO", "name": "Bengo", "type": "Province" }, { "code": "AO-BGU", "name": "Benguela", "type": "Province" }, { "code": "AO-BIE", "name": "Bi矇", "type": "Province" }, { "code": "AO-CAB", "name": "Cabinda", "type": "Province" }, { "code": "AO-CCU", "name": "Cuando Cubango", "type": "Province" }, { "code": "AO-CNN", "name": "Cunene", "type": "Province" }, { "code": "AO-CNO", "name": "Cuanza-Norte", "type": "Province" }, { "code": "AO-CUS", "name": "Cuanza-Sul", "type": "Province" }, { "code": "AO-HUA", "name": "Huambo", "type": "Province" }, { "code": "AO-HUI", "name": "Hu穩la", "type": "Province" }, { "code": "AO-LNO", "name": "Lunda-Norte", "type": "Province" }, { "code": "AO-LSU", "name": "Lunda-Sul", "type": "Province" }, { "code": "AO-LUA", "name": "Luanda", "type": "Province" }, { "code": "AO-MAL", "name": "Malange", "type": "Province" }, { "code": "AO-MOX", "name": "Moxico", "type": "Province" }, { "code": "AO-NAM", "name": "Namibe", "type": "Province" }, { "code": "AO-UIG", "name": "U穩ge", "type": "Province" }, { "code": "AO-ZAI", "name": "Zaire", "type": "Province" }, { "code": "AR-A", "name": "Salta", "type": "Province" }, { "code": "AR-B", "name": "Buenos Aires", "type": "Province" }, { "code": "AR-C", "name": "Ciudad Aut籀noma de Buenos Aires", "type": "City" }, { "code": "AR-D", "name": "San Luis", "type": "Province" }, { "code": "AR-E", "name": "Entre R穩os", "type": "Province" }, { "code": "AR-F", "name": "La Rioja", "type": "Province" }, { "code": "AR-G", "name": "Santiago del Estero", "type": "Province" }, { "code": "AR-H", "name": "Chaco", "type": "Province" }, { "code": "AR-J", "name": "San Juan", "type": "Province" }, { "code": "AR-K", "name": "Catamarca", "type": "Province" }, { "code": "AR-L", "name": "La Pampa", "type": "Province" }, { "code": "AR-M", "name": "Mendoza", "type": "Province" }, { "code": "AR-N", "name": "Misiones", "type": "Province" }, { "code": "AR-P", "name": "Formosa", "type": "Province" }, { "code": "AR-Q", "name": "Neuqu矇n", "type": "Province" }, { "code": "AR-R", "name": "R穩o Negro", "type": "Province" }, { "code": "AR-S", "name": "Santa Fe", "type": "Province" }, { "code": "AR-T", "name": "Tucum獺n", "type": "Province" }, { "code": "AR-U", "name": "Chubut", "type": "Province" }, { "code": "AR-V", "name": "Tierra del Fuego", "type": "Province" }, { "code": "AR-W", "name": "Corrientes", "type": "Province" }, { "code": "AR-X", "name": "C籀rdoba", "type": "Province" }, { "code": "AR-Y", "name": "Jujuy", "type": "Province" }, { "code": "AR-Z", "name": "Santa Cruz", "type": "Province" }, { "code": "AT-1", "name": "Burgenland", "type": "State" }, { "code": "AT-2", "name": "K瓣rnten", "type": "State" }, { "code": "AT-3", "name": "Nieder繹sterreich", "type": "State" }, { "code": "AT-4", "name": "Ober繹sterreich", "type": "State" }, { "code": "AT-5", "name": "Salzburg", "type": "State" }, { "code": "AT-6", "name": "Steiermark", "type": "State" }, { "code": "AT-7", "name": "Tirol", "type": "State" }, { "code": "AT-8", "name": "Vorarlberg", "type": "State" }, { "code": "AT-9", "name": "Wien", "type": "State" }, { "code": "AU-ACT", "name": "Australian Capital Territory", "type": "Territory" }, { "code": "AU-NSW", "name": "New South Wales", "type": "State" }, { "code": "AU-NT", "name": "Northern Territory", "type": "Territory" }, { "code": "AU-QLD", "name": "Queensland", "type": "State" }, { "code": "AU-SA", "name": "South Australia", "type": "State" }, { "code": "AU-TAS", "name": "Tasmania", "type": "State" }, { "code": "AU-VIC", "name": "Victoria", "type": "State" }, { "code": "AU-WA", "name": "Western Australia", "type": "State" }, { "code": "AZ-ABS", "name": "Aberon", "type": "Rayon" }, { "code": "AZ-AGA", "name": "Astafa", "type": "Rayon" }, { "code": "AZ-AGC", "name": "Acabdi", "type": "Rayon" }, { "code": "AZ-AGM", "name": "Adam", "type": "Rayon" }, { "code": "AZ-AGS", "name": "Ada", "type": "Rayon" }, { "code": "AZ-AGU", "name": "Asu", "type": "Rayon" }, { "code": "AZ-AST", "name": "Astara", "type": "Rayon" }, { "code": "AZ-BA", "name": "Bak覺", "type": "Municipality" }, { "code": "AZ-BAB", "name": "Babk", "parent": "NX", "type": "Rayon" }, { "code": "AZ-BAL", "name": "Balakn", "type": "Rayon" }, { "code": "AZ-BAR", "name": "Brd", "type": "Rayon" }, { "code": "AZ-BEY", "name": "Beylqan", "type": "Rayon" }, { "code": "AZ-BIL", "name": "Bilsuvar", "type": "Rayon" }, { "code": "AZ-CAB", "name": "Cbray覺l", "type": "Rayon" }, { "code": "AZ-CAL", "name": "Clilabad", "type": "Rayon" }, { "code": "AZ-CUL", "name": "Culfa", "parent": "NX", "type": "Rayon" }, { "code": "AZ-DAS", "name": "Daksn", "type": "Rayon" }, { "code": "AZ-FUZ", "name": "F羹zuli", "type": "Rayon" }, { "code": "AZ-GA", "name": "Gnc", "type": "Municipality" }, { "code": "AZ-GAD", "name": "Gdby", "type": "Rayon" }, { "code": "AZ-GOR", "name": "Goranboy", "type": "Rayon" }, { "code": "AZ-GOY", "name": "G繹y癟ay", "type": "Rayon" }, { "code": "AZ-GYG", "name": "G繹yg繹l", "type": "Rayon" }, { "code": "AZ-HAC", "name": "Hac覺qabul", "type": "Rayon" }, { "code": "AZ-IMI", "name": "襤mili", "type": "Rayon" }, { "code": "AZ-ISM", "name": "襤smay覺ll覺", "type": "Rayon" }, { "code": "AZ-KAL", "name": "Klbcr", "type": "Rayon" }, { "code": "AZ-KAN", "name": "Kngrli", "parent": "NX", "type": "Rayon" }, { "code": "AZ-KUR", "name": "K羹rdmir", "type": "Rayon" }, { "code": "AZ-LA", "name": "Lnkran", "type": "Municipality" }, { "code": "AZ-LAC", "name": "La癟覺n", "type": "Rayon" }, { "code": "AZ-LAN", "name": "Lnkran", "type": "Rayon" }, { "code": "AZ-LER", "name": "Lerik", "type": "Rayon" }, { "code": "AZ-MAS", "name": "Masall覺", "type": "Rayon" }, { "code": "AZ-MI", "name": "Ming癟evir", "type": "Municipality" }, { "code": "AZ-NA", "name": "Naftalan", "type": "Municipality" }, { "code": "AZ-NEF", "name": "Neft癟ala", "type": "Rayon" }, { "code": "AZ-NV", "name": "Nax癟覺van", "parent": "NX", "type": "Municipality" }, { "code": "AZ-NX", "name": "Nax癟覺van", "type": "Autonomous republic" }, { "code": "AZ-OGU", "name": "Ouz", "type": "Rayon" }, { "code": "AZ-ORD", "name": "Ordubad", "parent": "NX", "type": "Rayon" }, { "code": "AZ-QAB", "name": "Qbl", "type": "Rayon" }, { "code": "AZ-QAX", "name": "Qax", "type": "Rayon" }, { "code": "AZ-QAZ", "name": "Qazax", "type": "Rayon" }, { "code": "AZ-QBA", "name": "Quba", "type": "Rayon" }, { "code": "AZ-QBI", "name": "Qubadl覺", "type": "Rayon" }, { "code": "AZ-QOB", "name": "Qobustan", "type": "Rayon" }, { "code": "AZ-QUS", "name": "Qusar", "type": "Rayon" }, { "code": "AZ-SA", "name": "ki", "type": "Municipality" }, { "code": "AZ-SAB", "name": "Sabirabad", "type": "Rayon" }, { "code": "AZ-SAD", "name": "Sdrk", "parent": "NX", "type": "Rayon" }, { "code": "AZ-SAH", "name": "ahbuz", "parent": "NX", "type": "Rayon" }, { "code": "AZ-SAK", "name": "ki", "type": "Rayon" }, { "code": "AZ-SAL", "name": "Salyan", "type": "Rayon" }, { "code": "AZ-SAR", "name": "rur", "parent": "NX", "type": "Rayon" }, { "code": "AZ-SAT", "name": "Saatl覺", "type": "Rayon" }, { "code": "AZ-SBN", "name": "abran", "type": "Rayon" }, { "code": "AZ-SIY", "name": "Siyzn", "type": "Rayon" }, { "code": "AZ-SKR", "name": "mkir", "type": "Rayon" }, { "code": "AZ-SM", "name": "Sumqay覺t", "type": "Municipality" }, { "code": "AZ-SMI", "name": "amax覺", "type": "Rayon" }, { "code": "AZ-SMX", "name": "Samux", "type": "Rayon" }, { "code": "AZ-SR", "name": "irvan", "type": "Municipality" }, { "code": "AZ-SUS", "name": "ua", "type": "Rayon" }, { "code": "AZ-TAR", "name": "Trtr", "type": "Rayon" }, { "code": "AZ-TOV", "name": "Tovuz", "type": "Rayon" }, { "code": "AZ-UCA", "name": "Ucar", "type": "Rayon" }, { "code": "AZ-XA", "name": "Xankndi", "type": "Municipality" }, { "code": "AZ-XAC", "name": "Xa癟maz", "type": "Rayon" }, { "code": "AZ-XCI", "name": "Xocal覺", "type": "Rayon" }, { "code": "AZ-XIZ", "name": "X覺z覺", "type": "Rayon" }, { "code": "AZ-XVD", "name": "Xocavnd", "type": "Rayon" }, { "code": "AZ-YAR", "name": "Yard覺ml覺", "type": "Rayon" }, { "code": "AZ-YE", "name": "Yevlax", "type": "Municipality" }, { "code": "AZ-YEV", "name": "Yevlax", "type": "Rayon" }, { "code": "AZ-ZAN", "name": "Zngilan", "type": "Rayon" }, { "code": "AZ-ZAQ", "name": "Zaqatala", "type": "Rayon" }, { "code": "AZ-ZAR", "name": "Zrdab", "type": "Rayon" }, { "code": "BA-BIH", "name": "Federacija Bosne i Hercegovine", "type": "Entity" }, { "code": "BA-BRC", "name": "Brko distrikt", "type": "District with special status" }, { "code": "BA-SRP", "name": "Republika Srpska", "type": "Entity" }, { "code": "BB-01", "name": "Christ Church", "type": "Parish" }, { "code": "BB-02", "name": "Saint Andrew", "type": "Parish" }, { "code": "BB-03", "name": "Saint George", "type": "Parish" }, { "code": "BB-04", "name": "Saint James", "type": "Parish" }, { "code": "BB-05", "name": "Saint John", "type": "Parish" }, { "code": "BB-06", "name": "Saint Joseph", "type": "Parish" }, { "code": "BB-07", "name": "Saint Lucy", "type": "Parish" }, { "code": "BB-08", "name": "Saint Michael", "type": "Parish" }, { "code": "BB-09", "name": "Saint Peter", "type": "Parish" }, { "code": "BB-10", "name": "Saint Philip", "type": "Parish" }, { "code": "BB-11", "name": "Saint Thomas", "type": "Parish" }, { "code": "BD-01", "name": "Bandarban", "parent": "B", "type": "District" }, { "code": "BD-02", "name": "Barguna", "parent": "A", "type": "District" }, { "code": "BD-03", "name": "Bogura", "parent": "E", "type": "District" }, { "code": "BD-04", "name": "Brahmanbaria", "parent": "B", "type": "District" }, { "code": "BD-05", "name": "Bagerhat", "parent": "D", "type": "District" }, { "code": "BD-06", "name": "Barishal", "parent": "A", "type": "District" }, { "code": "BD-07", "name": "Bhola", "parent": "A", "type": "District" }, { "code": "BD-08", "name": "Cumilla", "parent": "B", "type": "District" }, { "code": "BD-09", "name": "Chandpur", "parent": "B", "type": "District" }, { "code": "BD-10", "name": "Chattogram", "parent": "B", "type": "District" }, { "code": "BD-11", "name": "Cox's Bazar", "parent": "B", "type": "District" }, { "code": "BD-12", "name": "Chuadanga", "parent": "D", "type": "District" }, { "code": "BD-13", "name": "Dhaka", "parent": "C", "type": "District" }, { "code": "BD-14", "name": "Dinajpur", "parent": "F", "type": "District" }, { "code": "BD-15", "name": "Faridpur", "parent": "C", "type": "District" }, { "code": "BD-16", "name": "Feni", "parent": "B", "type": "District" }, { "code": "BD-17", "name": "Gopalganj", "parent": "C", "type": "District" }, { "code": "BD-18", "name": "Gazipur", "parent": "C", "type": "District" }, { "code": "BD-19", "name": "Gaibandha", "parent": "F", "type": "District" }, { "code": "BD-20", "name": "Habiganj", "parent": "G", "type": "District" }, { "code": "BD-21", "name": "Jamalpur", "parent": "H", "type": "District" }, { "code": "BD-22", "name": "Jashore", "parent": "D", "type": "District" }, { "code": "BD-23", "name": "Jhenaidah", "parent": "D", "type": "District" }, { "code": "BD-24", "name": "Joypurhat", "parent": "E", "type": "District" }, { "code": "BD-25", "name": "Jhalakathi", "parent": "A", "type": "District" }, { "code": "BD-26", "name": "Kishoreganj", "parent": "C", "type": "District" }, { "code": "BD-27", "name": "Khulna", "parent": "D", "type": "District" }, { "code": "BD-28", "name": "Kurigram", "parent": "F", "type": "District" }, { "code": "BD-29", "name": "Khagrachhari", "parent": "B", "type": "District" }, { "code": "BD-30", "name": "Kushtia", "parent": "D", "type": "District" }, { "code": "BD-31", "name": "Lakshmipur", "parent": "B", "type": "District" }, { "code": "BD-32", "name": "Lalmonirhat", "parent": "F", "type": "District" }, { "code": "BD-33", "name": "Manikganj", "parent": "C", "type": "District" }, { "code": "BD-34", "name": "Mymensingh", "parent": "H", "type": "District" }, { "code": "BD-35", "name": "Munshiganj", "parent": "C", "type": "District" }, { "code": "BD-36", "name": "Madaripur", "parent": "C", "type": "District" }, { "code": "BD-37", "name": "Magura", "parent": "D", "type": "District" }, { "code": "BD-38", "name": "Moulvibazar", "parent": "G", "type": "District" }, { "code": "BD-39", "name": "Meherpur", "parent": "D", "type": "District" }, { "code": "BD-40", "name": "Narayanganj", "parent": "C", "type": "District" }, { "code": "BD-41", "name": "Netrakona", "parent": "H", "type": "District" }, { "code": "BD-42", "name": "Narsingdi", "parent": "C", "type": "District" }, { "code": "BD-43", "name": "Narail", "parent": "D", "type": "District" }, { "code": "BD-44", "name": "Natore", "parent": "E", "type": "District" }, { "code": "BD-45", "name": "Chapai Nawabganj", "parent": "E", "type": "District" }, { "code": "BD-46", "name": "Nilphamari", "parent": "F", "type": "District" }, { "code": "BD-47", "name": "Noakhali", "parent": "B", "type": "District" }, { "code": "BD-48", "name": "Naogaon", "parent": "E", "type": "District" }, { "code": "BD-49", "name": "Pabna", "parent": "E", "type": "District" }, { "code": "BD-50", "name": "Pirojpur", "parent": "A", "type": "District" }, { "code": "BD-51", "name": "Patuakhali", "parent": "A", "type": "District" }, { "code": "BD-52", "name": "Panchagarh", "parent": "F", "type": "District" }, { "code": "BD-53", "name": "Rajbari", "parent": "C", "type": "District" }, { "code": "BD-54", "name": "Rajshahi", "parent": "E", "type": "District" }, { "code": "BD-55", "name": "Rangpur", "parent": "F", "type": "District" }, { "code": "BD-56", "name": "Rangamati", "parent": "B", "type": "District" }, { "code": "BD-57", "name": "Sherpur", "parent": "H", "type": "District" }, { "code": "BD-58", "name": "Satkhira", "parent": "D", "type": "District" }, { "code": "BD-59", "name": "Sirajganj", "parent": "E", "type": "District" }, { "code": "BD-60", "name": "Sylhet", "parent": "G", "type": "District" }, { "code": "BD-61", "name": "Sunamganj", "parent": "G", "type": "District" }, { "code": "BD-62", "name": "Shariatpur", "parent": "C", "type": "District" }, { "code": "BD-63", "name": "Tangail", "parent": "C", "type": "District" }, { "code": "BD-64", "name": "Thakurgaon", "parent": "F", "type": "District" }, { "code": "BD-A", "name": "Barishal", "type": "Division" }, { "code": "BD-B", "name": "Chattogram", "type": "Division" }, { "code": "BD-C", "name": "Dhaka", "type": "Division" }, { "code": "BD-D", "name": "Khulna", "type": "Division" }, { "code": "BD-E", "name": "Rajshahi", "type": "Division" }, { "code": "BD-F", "name": "Rangpur", "type": "Division" }, { "code": "BD-G", "name": "Sylhet", "type": "Division" }, { "code": "BD-H", "name": "Mymensingh", "type": "Division" }, { "code": "BE-BRU", "name": "Brussels Hoofdstedelijk Gewest", "type": "Region" }, { "code": "BE-VAN", "name": "Antwerpen", "parent": "VLG", "type": "Province" }, { "code": "BE-VBR", "name": "Vlaams-Brabant", "parent": "VLG", "type": "Province" }, { "code": "BE-VLG", "name": "Vlaams Gewest", "type": "Region" }, { "code": "BE-VLI", "name": "Limburg", "parent": "VLG", "type": "Province" }, { "code": "BE-VOV", "name": "Oost-Vlaanderen", "parent": "VLG", "type": "Province" }, { "code": "BE-VWV", "name": "West-Vlaanderen", "parent": "VLG", "type": "Province" }, { "code": "BE-WAL", "name": "wallonne, R矇gion", "type": "Region" }, { "code": "BE-WBR", "name": "Brabant wallon", "parent": "WAL", "type": "Province" }, { "code": "BE-WHT", "name": "Hainaut", "parent": "WAL", "type": "Province" }, { "code": "BE-WLG", "name": "Li癡ge", "parent": "WAL", "type": "Province" }, { "code": "BE-WLX", "name": "Luxembourg", "parent": "WAL", "type": "Province" }, { "code": "BE-WNA", "name": "Namur", "parent": "WAL", "type": "Province" }, { "code": "BF-01", "name": "Boucle du Mouhoun", "type": "Region" }, { "code": "BF-02", "name": "Cascades", "type": "Region" }, { "code": "BF-03", "name": "Centre", "type": "Region" }, { "code": "BF-04", "name": "Centre-Est", "type": "Region" }, { "code": "BF-05", "name": "Centre-Nord", "type": "Region" }, { "code": "BF-06", "name": "Centre-Ouest", "type": "Region" }, { "code": "BF-07", "name": "Centre-Sud", "type": "Region" }, { "code": "BF-08", "name": "Est", "type": "Region" }, { "code": "BF-09", "name": "Hauts-Bassins", "type": "Region" }, { "code": "BF-10", "name": "Nord", "type": "Region" }, { "code": "BF-11", "name": "Plateau-Central", "type": "Region" }, { "code": "BF-12", "name": "Sahel", "type": "Region" }, { "code": "BF-13", "name": "Sud-Ouest", "type": "Region" }, { "code": "BF-BAL", "name": "Bal矇", "parent": "01", "type": "Province" }, { "code": "BF-BAM", "name": "Bam", "parent": "05", "type": "Province" }, { "code": "BF-BAN", "name": "Banwa", "parent": "01", "type": "Province" }, { "code": "BF-BAZ", "name": "Baz癡ga", "parent": "07", "type": "Province" }, { "code": "BF-BGR", "name": "Bougouriba", "parent": "13", "type": "Province" }, { "code": "BF-BLG", "name": "Boulgou", "parent": "04", "type": "Province" }, { "code": "BF-BLK", "name": "Boulkiemd矇", "parent": "06", "type": "Province" }, { "code": "BF-COM", "name": "Como矇", "parent": "02", "type": "Province" }, { "code": "BF-GAN", "name": "Ganzourgou", "parent": "11", "type": "Province" }, { "code": "BF-GNA", "name": "Gnagna", "parent": "08", "type": "Province" }, { "code": "BF-GOU", "name": "Gourma", "parent": "08", "type": "Province" }, { "code": "BF-HOU", "name": "Houet", "parent": "09", "type": "Province" }, { "code": "BF-IOB", "name": "Ioba", "parent": "13", "type": "Province" }, { "code": "BF-KAD", "name": "Kadiogo", "parent": "03", "type": "Province" }, { "code": "BF-KEN", "name": "K矇n矇dougou", "parent": "09", "type": "Province" }, { "code": "BF-KMD", "name": "Komondjari", "parent": "08", "type": "Province" }, { "code": "BF-KMP", "name": "Kompienga", "parent": "08", "type": "Province" }, { "code": "BF-KOP", "name": "Koulp矇logo", "parent": "04", "type": "Province" }, { "code": "BF-KOS", "name": "Kossi", "parent": "01", "type": "Province" }, { "code": "BF-KOT", "name": "Kouritenga", "parent": "04", "type": "Province" }, { "code": "BF-KOW", "name": "Kourw矇ogo", "parent": "11", "type": "Province" }, { "code": "BF-LER", "name": "L矇raba", "parent": "02", "type": "Province" }, { "code": "BF-LOR", "name": "Loroum", "parent": "10", "type": "Province" }, { "code": "BF-MOU", "name": "Mouhoun", "parent": "01", "type": "Province" }, { "code": "BF-NAM", "name": "Namentenga", "parent": "05", "type": "Province" }, { "code": "BF-NAO", "name": "Nahouri", "parent": "07", "type": "Province" }, { "code": "BF-NAY", "name": "Nayala", "parent": "01", "type": "Province" }, { "code": "BF-NOU", "name": "Noumbiel", "parent": "13", "type": "Province" }, { "code": "BF-OUB", "name": "Oubritenga", "parent": "11", "type": "Province" }, { "code": "BF-OUD", "name": "Oudalan", "parent": "12", "type": "Province" }, { "code": "BF-PAS", "name": "Passor矇", "parent": "10", "type": "Province" }, { "code": "BF-PON", "name": "Poni", "parent": "13", "type": "Province" }, { "code": "BF-SEN", "name": "S矇no", "parent": "12", "type": "Province" }, { "code": "BF-SIS", "name": "Sissili", "parent": "06", "type": "Province" }, { "code": "BF-SMT", "name": "Sanmatenga", "parent": "05", "type": "Province" }, { "code": "BF-SNG", "name": "Sangui矇", "parent": "06", "type": "Province" }, { "code": "BF-SOM", "name": "Soum", "parent": "12", "type": "Province" }, { "code": "BF-SOR", "name": "Sourou", "parent": "01", "type": "Province" }, { "code": "BF-TAP", "name": "Tapoa", "parent": "08", "type": "Province" }, { "code": "BF-TUI", "name": "Tuy", "parent": "09", "type": "Province" }, { "code": "BF-YAG", "name": "Yagha", "parent": "12", "type": "Province" }, { "code": "BF-YAT", "name": "Yatenga", "parent": "10", "type": "Province" }, { "code": "BF-ZIR", "name": "Ziro", "parent": "06", "type": "Province" }, { "code": "BF-ZON", "name": "Zondoma", "parent": "10", "type": "Province" }, { "code": "BF-ZOU", "name": "Zoundw矇ogo", "parent": "07", "type": "Province" }, { "code": "BG-01", "name": "Blagoevgrad", "type": "District" }, { "code": "BG-02", "name": "Burgas", "type": "District" }, { "code": "BG-03", "name": "Varna", "type": "District" }, { "code": "BG-04", "name": "Veliko Tarnovo", "type": "District" }, { "code": "BG-05", "name": "Vidin", "type": "District" }, { "code": "BG-06", "name": "Vratsa", "type": "District" }, { "code": "BG-07", "name": "Gabrovo", "type": "District" }, { "code": "BG-08", "name": "Dobrich", "type": "District" }, { "code": "BG-09", "name": "Kardzhali", "type": "District" }, { "code": "BG-10", "name": "Kyustendil", "type": "District" }, { "code": "BG-11", "name": "Lovech", "type": "District" }, { "code": "BG-12", "name": "Montana", "type": "District" }, { "code": "BG-13", "name": "Pazardzhik", "type": "District" }, { "code": "BG-14", "name": "Pernik", "type": "District" }, { "code": "BG-15", "name": "Pleven", "type": "District" }, { "code": "BG-16", "name": "Plovdiv", "type": "District" }, { "code": "BG-17", "name": "Razgrad", "type": "District" }, { "code": "BG-18", "name": "Ruse", "type": "District" }, { "code": "BG-19", "name": "Silistra", "type": "District" }, { "code": "BG-20", "name": "Sliven", "type": "District" }, { "code": "BG-21", "name": "Smolyan", "type": "District" }, { "code": "BG-22", "name": "Sofia (stolitsa)", "type": "District" }, { "code": "BG-23", "name": "Sofia", "type": "District" }, { "code": "BG-24", "name": "Stara Zagora", "type": "District" }, { "code": "BG-25", "name": "Targovishte", "type": "District" }, { "code": "BG-26", "name": "Haskovo", "type": "District" }, { "code": "BG-27", "name": "Shumen", "type": "District" }, { "code": "BG-28", "name": "Yambol", "type": "District" }, { "code": "BH-13", "name": "Al imah", "type": "Governorate" }, { "code": "BH-14", "name": "Al Jan贖b蘋yah", "type": "Governorate" }, { "code": "BH-15", "name": "Al Mu廎奄rraq", "type": "Governorate" }, { "code": "BH-17", "name": "Ash Shaml蘋yah", "type": "Governorate" }, { "code": "BI-BB", "name": "Bubanza", "type": "Province" }, { "code": "BI-BL", "name": "Bujumbura Rural", "type": "Province" }, { "code": "BI-BM", "name": "Bujumbura Mairie", "type": "Province" }, { "code": "BI-BR", "name": "Bururi", "type": "Province" }, { "code": "BI-CA", "name": "Cankuzo", "type": "Province" }, { "code": "BI-CI", "name": "Cibitoke", "type": "Province" }, { "code": "BI-GI", "name": "Gitega", "type": "Province" }, { "code": "BI-KI", "name": "Kirundo", "type": "Province" }, { "code": "BI-KR", "name": "Karuzi", "type": "Province" }, { "code": "BI-KY", "name": "Kayanza", "type": "Province" }, { "code": "BI-MA", "name": "Makamba", "type": "Province" }, { "code": "BI-MU", "name": "Muramvya", "type": "Province" }, { "code": "BI-MW", "name": "Mwaro", "type": "Province" }, { "code": "BI-MY", "name": "Muyinga", "type": "Province" }, { "code": "BI-NG", "name": "Ngozi", "type": "Province" }, { "code": "BI-RM", "name": "Rumonge", "type": "Province" }, { "code": "BI-RT", "name": "Rutana", "type": "Province" }, { "code": "BI-RY", "name": "Ruyigi", "type": "Province" }, { "code": "BJ-AK", "name": "Atacora", "type": "Department" }, { "code": "BJ-AL", "name": "Alibori", "type": "Department" }, { "code": "BJ-AQ", "name": "Atlantique", "type": "Department" }, { "code": "BJ-BO", "name": "Borgou", "type": "Department" }, { "code": "BJ-CO", "name": "Collines", "type": "Department" }, { "code": "BJ-DO", "name": "Donga", "type": "Department" }, { "code": "BJ-KO", "name": "Couffo", "type": "Department" }, { "code": "BJ-LI", "name": "Littoral", "type": "Department" }, { "code": "BJ-MO", "name": "Mono", "type": "Department" }, { "code": "BJ-OU", "name": "Ou矇m矇", "type": "Department" }, { "code": "BJ-PL", "name": "Plateau", "type": "Department" }, { "code": "BJ-ZO", "name": "Zou", "type": "Department" }, { "code": "BN-BE", "name": "Belait", "type": "District" }, { "code": "BN-BM", "name": "Brunei-Muara", "type": "District" }, { "code": "BN-TE", "name": "Temburong", "type": "District" }, { "code": "BN-TU", "name": "Tutong", "type": "District" }, { "code": "BO-B", "name": "El Beni", "type": "Department" }, { "code": "BO-C", "name": "Cochabamba", "type": "Department" }, { "code": "BO-H", "name": "Chuquisaca", "type": "Department" }, { "code": "BO-L", "name": "La Paz", "type": "Department" }, { "code": "BO-N", "name": "Pando", "type": "Department" }, { "code": "BO-O", "name": "Oruro", "type": "Department" }, { "code": "BO-P", "name": "Potos穩", "type": "Department" }, { "code": "BO-S", "name": "Santa Cruz", "type": "Department" }, { "code": "BO-T", "name": "Tarija", "type": "Department" }, { "code": "BQ-BO", "name": "Bonaire", "type": "Special municipality" }, { "code": "BQ-SA", "name": "Saba", "type": "Special municipality" }, { "code": "BQ-SE", "name": "Sint Eustatius", "type": "Special municipality" }, { "code": "BR-AC", "name": "Acre", "type": "State" }, { "code": "BR-AL", "name": "Alagoas", "type": "State" }, { "code": "BR-AM", "name": "Amazonas", "type": "State" }, { "code": "BR-AP", "name": "Amap獺", "type": "State" }, { "code": "BR-BA", "name": "Bahia", "type": "State" }, { "code": "BR-CE", "name": "Cear獺", "type": "State" }, { "code": "BR-DF", "name": "Distrito Federal", "type": "Federal district" }, { "code": "BR-ES", "name": "Esp穩rito Santo", "type": "State" }, { "code": "BR-GO", "name": "Goi獺s", "type": "State" }, { "code": "BR-MA", "name": "Maranh瓊o", "type": "State" }, { "code": "BR-MG", "name": "Minas Gerais", "type": "State" }, { "code": "BR-MS", "name": "Mato Grosso do Sul", "type": "State" }, { "code": "BR-MT", "name": "Mato Grosso", "type": "State" }, { "code": "BR-PA", "name": "Par獺", "type": "State" }, { "code": "BR-PB", "name": "Para穩ba", "type": "State" }, { "code": "BR-PE", "name": "Pernambuco", "type": "State" }, { "code": "BR-PI", "name": "Piau穩", "type": "State" }, { "code": "BR-PR", "name": "Paran獺", "type": "State" }, { "code": "BR-RJ", "name": "Rio de Janeiro", "type": "State" }, { "code": "BR-RN", "name": "Rio Grande do Norte", "type": "State" }, { "code": "BR-RO", "name": "Rond繫nia", "type": "State" }, { "code": "BR-RR", "name": "Roraima", "type": "State" }, { "code": "BR-RS", "name": "Rio Grande do Sul", "type": "State" }, { "code": "BR-SC", "name": "Santa Catarina", "type": "State" }, { "code": "BR-SE", "name": "Sergipe", "type": "State" }, { "code": "BR-SP", "name": "S瓊o Paulo", "type": "State" }, { "code": "BR-TO", "name": "Tocantins", "type": "State" }, { "code": "BS-AK", "name": "Acklins", "type": "District" }, { "code": "BS-BI", "name": "Bimini", "type": "District" }, { "code": "BS-BP", "name": "Black Point", "type": "District" }, { "code": "BS-BY", "name": "Berry Islands", "type": "District" }, { "code": "BS-CE", "name": "Central Eleuthera", "type": "District" }, { "code": "BS-CI", "name": "Cat Island", "type": "District" }, { "code": "BS-CK", "name": "Crooked Island and Long Cay", "type": "District" }, { "code": "BS-CO", "name": "Central Abaco", "type": "District" }, { "code": "BS-CS", "name": "Central Andros", "type": "District" }, { "code": "BS-EG", "name": "East Grand Bahama", "type": "District" }, { "code": "BS-EX", "name": "Exuma", "type": "District" }, { "code": "BS-FP", "name": "City of Freeport", "type": "District" }, { "code": "BS-GC", "name": "Grand Cay", "type": "District" }, { "code": "BS-HI", "name": "Harbour Island", "type": "District" }, { "code": "BS-HT", "name": "Hope Town", "type": "District" }, { "code": "BS-IN", "name": "Inagua", "type": "District" }, { "code": "BS-LI", "name": "Long Island", "type": "District" }, { "code": "BS-MC", "name": "Mangrove Cay", "type": "District" }, { "code": "BS-MG", "name": "Mayaguana", "type": "District" }, { "code": "BS-MI", "name": "Moore's Island", "type": "District" }, { "code": "BS-NE", "name": "North Eleuthera", "type": "District" }, { "code": "BS-NO", "name": "North Abaco", "type": "District" }, { "code": "BS-NP", "name": "New Providence", "type": "Island" }, { "code": "BS-NS", "name": "North Andros", "type": "District" }, { "code": "BS-RC", "name": "Rum Cay", "type": "District" }, { "code": "BS-RI", "name": "Ragged Island", "type": "District" }, { "code": "BS-SA", "name": "South Andros", "type": "District" }, { "code": "BS-SE", "name": "South Eleuthera", "type": "District" }, { "code": "BS-SO", "name": "South Abaco", "type": "District" }, { "code": "BS-SS", "name": "San Salvador", "type": "District" }, { "code": "BS-SW", "name": "Spanish Wells", "type": "District" }, { "code": "BS-WG", "name": "West Grand Bahama", "type": "District" }, { "code": "BT-11", "name": "Paro", "type": "District" }, { "code": "BT-12", "name": "Chhukha", "type": "District" }, { "code": "BT-13", "name": "Haa", "type": "District" }, { "code": "BT-14", "name": "Samtse", "type": "District" }, { "code": "BT-15", "name": "Thimphu", "type": "District" }, { "code": "BT-21", "name": "Tsirang", "type": "District" }, { "code": "BT-22", "name": "Dagana", "type": "District" }, { "code": "BT-23", "name": "Punakha", "type": "District" }, { "code": "BT-24", "name": "Wangdue Phodrang", "type": "District" }, { "code": "BT-31", "name": "Sarpang", "type": "District" }, { "code": "BT-32", "name": "Trongsa", "type": "District" }, { "code": "BT-33", "name": "Bumthang", "type": "District" }, { "code": "BT-34", "name": "Zhemgang", "type": "District" }, { "code": "BT-41", "name": "Trashigang", "type": "District" }, { "code": "BT-42", "name": "Monggar", "type": "District" }, { "code": "BT-43", "name": "Pema Gatshel", "type": "District" }, { "code": "BT-44", "name": "Lhuentse", "type": "District" }, { "code": "BT-45", "name": "Samdrup Jongkhar", "type": "District" }, { "code": "BT-GA", "name": "Gasa", "type": "District" }, { "code": "BT-TY", "name": "Trashi Yangtse", "type": "District" }, { "code": "BW-CE", "name": "Central", "type": "District" }, { "code": "BW-CH", "name": "Chobe", "type": "District" }, { "code": "BW-FR", "name": "Francistown", "type": "City" }, { "code": "BW-GA", "name": "Gaborone", "type": "City" }, { "code": "BW-GH", "name": "Ghanzi", "type": "District" }, { "code": "BW-JW", "name": "Jwaneng", "type": "Town" }, { "code": "BW-KG", "name": "Kgalagadi", "type": "District" }, { "code": "BW-KL", "name": "Kgatleng", "type": "District" }, { "code": "BW-KW", "name": "Kweneng", "type": "District" }, { "code": "BW-LO", "name": "Lobatse", "type": "Town" }, { "code": "BW-NE", "name": "North East", "type": "District" }, { "code": "BW-NW", "name": "North West", "type": "District" }, { "code": "BW-SE", "name": "South East", "type": "District" }, { "code": "BW-SO", "name": "Southern", "type": "District" }, { "code": "BW-SP", "name": "Selibe Phikwe", "type": "Town" }, { "code": "BW-ST", "name": "Sowa Town", "type": "Town" }, { "code": "BY-BR", "name": "Bresckaja voblas", "type": "Oblast" }, { "code": "BY-HM", "name": "Gorod Minsk", "type": "City" }, { "code": "BY-HO", "name": "Gomel'skaja oblast'", "type": "Oblast" }, { "code": "BY-HR", "name": "Grodnenskaja oblast'", "type": "Oblast" }, { "code": "BY-MA", "name": "Mahilio躑skaja voblas", "type": "Oblast" }, { "code": "BY-MI", "name": "Minskaja oblast'", "type": "Oblast" }, { "code": "BY-VI", "name": "Viciebskaja voblas", "type": "Oblast" }, { "code": "BZ-BZ", "name": "Belize", "type": "District" }, { "code": "BZ-CY", "name": "Cayo", "type": "District" }, { "code": "BZ-CZL", "name": "Corozal", "type": "District" }, { "code": "BZ-OW", "name": "Orange Walk", "type": "District" }, { "code": "BZ-SC", "name": "Stann Creek", "type": "District" }, { "code": "BZ-TOL", "name": "Toledo", "type": "District" }, { "code": "CA-AB", "name": "Alberta", "type": "Province" }, { "code": "CA-BC", "name": "British Columbia", "type": "Province" }, { "code": "CA-MB", "name": "Manitoba", "type": "Province" }, { "code": "CA-NB", "name": "New Brunswick", "type": "Province" }, { "code": "CA-NL", "name": "Newfoundland and Labrador", "type": "Province" }, { "code": "CA-NS", "name": "Nova Scotia", "type": "Province" }, { "code": "CA-NT", "name": "Northwest Territories", "type": "Territory" }, { "code": "CA-NU", "name": "Nunavut", "type": "Territory" }, { "code": "CA-ON", "name": "Ontario", "type": "Province" }, { "code": "CA-PE", "name": "Prince Edward Island", "type": "Province" }, { "code": "CA-QC", "name": "Quebec", "type": "Province" }, { "code": "CA-SK", "name": "Saskatchewan", "type": "Province" }, { "code": "CA-YT", "name": "Yukon", "type": "Territory" }, { "code": "CD-BC", "name": "Kongo Central", "type": "Province" }, { "code": "CD-BU", "name": "Bas-U矇l矇", "type": "Province" }, { "code": "CD-EQ", "name": "quateur", "type": "Province" }, { "code": "CD-HK", "name": "Haut-Katanga", "type": "Province" }, { "code": "CD-HL", "name": "Haut-Lomami", "type": "Province" }, { "code": "CD-HU", "name": "Haut-U矇l矇", "type": "Province" }, { "code": "CD-IT", "name": "Ituri", "type": "Province" }, { "code": "CD-KC", "name": "Kasa簿 Central", "type": "Province" }, { "code": "CD-KE", "name": "Kasa簿 Oriental", "type": "Province" }, { "code": "CD-KG", "name": "Kwango", "type": "Province" }, { "code": "CD-KL", "name": "Kwilu", "type": "Province" }, { "code": "CD-KN", "name": "Kinshasa", "type": "City" }, { "code": "CD-KS", "name": "Kasa簿", "type": "Province" }, { "code": "CD-LO", "name": "Lomami", "type": "Province" }, { "code": "CD-LU", "name": "Lualaba", "type": "Province" }, { "code": "CD-MA", "name": "Maniema", "type": "Province" }, { "code": "CD-MN", "name": "Mai-Ndombe", "type": "Province" }, { "code": "CD-MO", "name": "Mongala", "type": "Province" }, { "code": "CD-NK", "name": "Nord-Kivu", "type": "Province" }, { "code": "CD-NU", "name": "Nord-Ubangi", "type": "Province" }, { "code": "CD-SA", "name": "Sankuru", "type": "Province" }, { "code": "CD-SK", "name": "Sud-Kivu", "type": "Province" }, { "code": "CD-SU", "name": "Sud-Ubangi", "type": "Province" }, { "code": "CD-TA", "name": "Tanganyika", "type": "Province" }, { "code": "CD-TO", "name": "Tshopo", "type": "Province" }, { "code": "CD-TU", "name": "Tshuapa", "type": "Province" }, { "code": "CF-AC", "name": "Ouham", "type": "Prefecture" }, { "code": "CF-BB", "name": "Bamingui-Bangoran", "type": "Prefecture" }, { "code": "CF-BGF", "name": "Bangui", "type": "Commune" }, { "code": "CF-BK", "name": "Basse-Kotto", "type": "Prefecture" }, { "code": "CF-HK", "name": "Haute-Kotto", "type": "Prefecture" }, { "code": "CF-HM", "name": "Haut-Mbomou", "type": "Prefecture" }, { "code": "CF-HS", "name": "Haute-Sangha / Mamb矇r矇-Kad矇簿", "type": "Prefecture" }, { "code": "CF-KB", "name": "Gribingui", "type": "Economic prefecture" }, { "code": "CF-KG", "name": "Kem繹-G簿r簿b簿ng簿", "type": "Prefecture" }, { "code": "CF-LB", "name": "Lobaye", "type": "Prefecture" }, { "code": "CF-MB", "name": "Mbomou", "type": "Prefecture" }, { "code": "CF-MP", "name": "Ombella-Mpoko", "type": "Prefecture" }, { "code": "CF-NM", "name": "Nana-Mamb矇r矇", "type": "Prefecture" }, { "code": "CF-OP", "name": "Ouham-Pend矇", "type": "Prefecture" }, { "code": "CF-SE", "name": "Sangha", "type": "Economic prefecture" }, { "code": "CF-UK", "name": "Ouaka", "type": "Prefecture" }, { "code": "CF-VK", "name": "Vakaga", "type": "Prefecture" }, { "code": "CG-11", "name": "Bouenza", "type": "Department" }, { "code": "CG-12", "name": "Pool", "type": "Department" }, { "code": "CG-13", "name": "Sangha", "type": "Department" }, { "code": "CG-14", "name": "Plateaux", "type": "Department" }, { "code": "CG-15", "name": "Cuvette-Ouest", "type": "Department" }, { "code": "CG-16", "name": "Pointe-Noire", "type": "Department" }, { "code": "CG-2", "name": "L矇koumou", "type": "Department" }, { "code": "CG-5", "name": "Kouilou", "type": "Department" }, { "code": "CG-7", "name": "Likouala", "type": "Department" }, { "code": "CG-8", "name": "Cuvette", "type": "Department" }, { "code": "CG-9", "name": "Niari", "type": "Department" }, { "code": "CG-BZV", "name": "Brazzaville", "type": "Department" }, { "code": "CH-AG", "name": "Aargau", "type": "Canton" }, { "code": "CH-AI", "name": "Appenzell Innerrhoden", "type": "Canton" }, { "code": "CH-AR", "name": "Appenzell Ausserrhoden", "type": "Canton" }, { "code": "CH-BE", "name": "Bern", "type": "Canton" }, { "code": "CH-BL", "name": "Basel-Landschaft", "type": "Canton" }, { "code": "CH-BS", "name": "Basel-Stadt", "type": "Canton" }, { "code": "CH-FR", "name": "Freiburg", "type": "Canton" }, { "code": "CH-GE", "name": "Gen癡ve", "type": "Canton" }, { "code": "CH-GL", "name": "Glarus", "type": "Canton" }, { "code": "CH-GR", "name": "Graub羹nden", "type": "Canton" }, { "code": "CH-JU", "name": "Jura", "type": "Canton" }, { "code": "CH-LU", "name": "Luzern", "type": "Canton" }, { "code": "CH-NE", "name": "Neuch璽tel", "type": "Canton" }, { "code": "CH-NW", "name": "Nidwalden", "type": "Canton" }, { "code": "CH-OW", "name": "Obwalden", "type": "Canton" }, { "code": "CH-SG", "name": "Sankt Gallen", "type": "Canton" }, { "code": "CH-SH", "name": "Schaffhausen", "type": "Canton" }, { "code": "CH-SO", "name": "Solothurn", "type": "Canton" }, { "code": "CH-SZ", "name": "Schwyz", "type": "Canton" }, { "code": "CH-TG", "name": "Thurgau", "type": "Canton" }, { "code": "CH-TI", "name": "Ticino", "type": "Canton" }, { "code": "CH-UR", "name": "Uri", "type": "Canton" }, { "code": "CH-VD", "name": "Vaud", "type": "Canton" }, { "code": "CH-VS", "name": "Valais", "type": "Canton" }, { "code": "CH-ZG", "name": "Zug", "type": "Canton" }, { "code": "CH-ZH", "name": "Z羹rich", "type": "Canton" }, { "code": "CI-AB", "name": "Abidjan", "type": "Autonomous district" }, { "code": "CI-BS", "name": "Bas-Sassandra", "type": "District" }, { "code": "CI-CM", "name": "Como矇", "type": "District" }, { "code": "CI-DN", "name": "Dengu矇l矇", "type": "District" }, { "code": "CI-GD", "name": "G繫h-Djiboua", "type": "District" }, { "code": "CI-LC", "name": "Lacs", "type": "District" }, { "code": "CI-LG", "name": "Lagunes", "type": "District" }, { "code": "CI-MG", "name": "Montagnes", "type": "District" }, { "code": "CI-SM", "name": "Sassandra-Marahou矇", "type": "District" }, { "code": "CI-SV", "name": "Savanes", "type": "District" }, { "code": "CI-VB", "name": "Vall矇e du Bandama", "type": "District" }, { "code": "CI-WR", "name": "Woroba", "type": "District" }, { "code": "CI-YM", "name": "Yamoussoukro", "type": "Autonomous district" }, { "code": "CI-ZZ", "name": "Zanzan", "type": "District" }, { "code": "CL-AI", "name": "Ais矇n del General Carlos Iba簽ez del Campo", "type": "Region" }, { "code": "CL-AN", "name": "Antofagasta", "type": "Region" }, { "code": "CL-AP", "name": "Arica y Parinacota", "type": "Region" }, { "code": "CL-AR", "name": "La Araucan穩a", "type": "Region" }, { "code": "CL-AT", "name": "Atacama", "type": "Region" }, { "code": "CL-BI", "name": "Biob穩o", "type": "Region" }, { "code": "CL-CO", "name": "Coquimbo", "type": "Region" }, { "code": "CL-LI", "name": "Libertador General Bernardo O'Higgins", "type": "Region" }, { "code": "CL-LL", "name": "Los Lagos", "type": "Region" }, { "code": "CL-LR", "name": "Los R穩os", "type": "Region" }, { "code": "CL-MA", "name": "Magallanes", "type": "Region" }, { "code": "CL-ML", "name": "Maule", "type": "Region" }, { "code": "CL-NB", "name": "uble", "type": "Region" }, { "code": "CL-RM", "name": "Regi籀n Metropolitana de Santiago", "type": "Region" }, { "code": "CL-TA", "name": "Tarapac獺", "type": "Region" }, { "code": "CL-VS", "name": "Valpara穩so", "type": "Region" }, { "code": "CM-AD", "name": "Adamaoua", "type": "Region" }, { "code": "CM-CE", "name": "Centre", "type": "Region" }, { "code": "CM-EN", "name": "Far North", "type": "Region" }, { "code": "CM-ES", "name": "East", "type": "Region" }, { "code": "CM-LT", "name": "Littoral", "type": "Region" }, { "code": "CM-NO", "name": "North", "type": "Region" }, { "code": "CM-NW", "name": "North-West", "type": "Region" }, { "code": "CM-OU", "name": "West", "type": "Region" }, { "code": "CM-SU", "name": "South", "type": "Region" }, { "code": "CM-SW", "name": "South-West", "type": "Region" }, { "code": "CN-AH", "name": "Anhui Sheng", "type": "Province" }, { "code": "CN-BJ", "name": "Beijing Shi", "type": "Municipality" }, { "code": "CN-CQ", "name": "Chongqing Shi", "type": "Municipality" }, { "code": "CN-FJ", "name": "Fujian Sheng", "type": "Province" }, { "code": "CN-GD", "name": "Guangdong Sheng", "type": "Province" }, { "code": "CN-GS", "name": "Gansu Sheng", "type": "Province" }, { "code": "CN-GX", "name": "Guangxi Zhuangzu Zizhiqu", "type": "Autonomous region" }, { "code": "CN-GZ", "name": "Guizhou Sheng", "type": "Province" }, { "code": "CN-HA", "name": "Henan Sheng", "type": "Province" }, { "code": "CN-HB", "name": "Hubei Sheng", "type": "Province" }, { "code": "CN-HE", "name": "Hebei Sheng", "type": "Province" }, { "code": "CN-HI", "name": "Hainan Sheng", "type": "Province" }, { "code": "CN-HK", "name": "Hong Kong SAR", "type": "Special administrative region" }, { "code": "CN-HL", "name": "Heilongjiang Sheng", "type": "Province" }, { "code": "CN-HN", "name": "Hunan Sheng", "type": "Province" }, { "code": "CN-JL", "name": "Jilin Sheng", "type": "Province" }, { "code": "CN-JS", "name": "Jiangsu Sheng", "type": "Province" }, { "code": "CN-JX", "name": "Jiangxi Sheng", "type": "Province" }, { "code": "CN-LN", "name": "Liaoning Sheng", "type": "Province" }, { "code": "CN-MO", "name": "Macao SAR", "type": "Special administrative region" }, { "code": "CN-NM", "name": "Nei Mongol Zizhiqu", "type": "Autonomous region" }, { "code": "CN-NX", "name": "Ningxia Huizi Zizhiqu", "type": "Autonomous region" }, { "code": "CN-QH", "name": "Qinghai Sheng", "type": "Province" }, { "code": "CN-SC", "name": "Sichuan Sheng", "type": "Province" }, { "code": "CN-SD", "name": "Shandong Sheng", "type": "Province" }, { "code": "CN-SH", "name": "Shanghai Shi", "type": "Municipality" }, { "code": "CN-SN", "name": "Shaanxi Sheng", "type": "Province" }, { "code": "CN-SX", "name": "Shanxi Sheng", "type": "Province" }, { "code": "CN-TJ", "name": "Tianjin Shi", "type": "Municipality" }, { "code": "CN-TW", "name": "Taiwan Sheng", "type": "Province" }, { "code": "CN-XJ", "name": "Xinjiang Uygur Zizhiqu", "type": "Autonomous region" }, { "code": "CN-XZ", "name": "Xizang Zizhiqu", "type": "Autonomous region" }, { "code": "CN-YN", "name": "Yunnan Sheng", "type": "Province" }, { "code": "CN-ZJ", "name": "Zhejiang Sheng", "type": "Province" }, { "code": "CO-AMA", "name": "Amazonas", "type": "Department" }, { "code": "CO-ANT", "name": "Antioquia", "type": "Department" }, { "code": "CO-ARA", "name": "Arauca", "type": "Department" }, { "code": "CO-ATL", "name": "Atl獺ntico", "type": "Department" }, { "code": "CO-BOL", "name": "Bol穩var", "type": "Department" }, { "code": "CO-BOY", "name": "Boyac獺", "type": "Department" }, { "code": "CO-CAL", "name": "Caldas", "type": "Department" }, { "code": "CO-CAQ", "name": "Caquet獺", "type": "Department" }, { "code": "CO-CAS", "name": "Casanare", "type": "Department" }, { "code": "CO-CAU", "name": "Cauca", "type": "Department" }, { "code": "CO-CES", "name": "Cesar", "type": "Department" }, { "code": "CO-CHO", "name": "Choc籀", "type": "Department" }, { "code": "CO-COR", "name": "C籀rdoba", "type": "Department" }, { "code": "CO-CUN", "name": "Cundinamarca", "type": "Department" }, { "code": "CO-DC", "name": "Distrito Capital de Bogot獺", "type": "Capital district" }, { "code": "CO-GUA", "name": "Guain穩a", "type": "Department" }, { "code": "CO-GUV", "name": "Guaviare", "type": "Department" }, { "code": "CO-HUI", "name": "Huila", "type": "Department" }, { "code": "CO-LAG", "name": "La Guajira", "type": "Department" }, { "code": "CO-MAG", "name": "Magdalena", "type": "Department" }, { "code": "CO-MET", "name": "Meta", "type": "Department" }, { "code": "CO-NAR", "name": "Nari簽o", "type": "Department" }, { "code": "CO-NSA", "name": "Norte de Santander", "type": "Department" }, { "code": "CO-PUT", "name": "Putumayo", "type": "Department" }, { "code": "CO-QUI", "name": "Quind穩o", "type": "Department" }, { "code": "CO-RIS", "name": "Risaralda", "type": "Department" }, { "code": "CO-SAN", "name": "Santander", "type": "Department" }, { "code": "CO-SAP", "name": "San Andr矇s, Providencia y Santa Catalina", "type": "Department" }, { "code": "CO-SUC", "name": "Sucre", "type": "Department" }, { "code": "CO-TOL", "name": "Tolima", "type": "Department" }, { "code": "CO-VAC", "name": "Valle del Cauca", "type": "Department" }, { "code": "CO-VAU", "name": "Vaup矇s", "type": "Department" }, { "code": "CO-VID", "name": "Vichada", "type": "Department" }, { "code": "CR-A", "name": "Alajuela", "type": "Province" }, { "code": "CR-C", "name": "Cartago", "type": "Province" }, { "code": "CR-G", "name": "Guanacaste", "type": "Province" }, { "code": "CR-H", "name": "Heredia", "type": "Province" }, { "code": "CR-L", "name": "Lim籀n", "type": "Province" }, { "code": "CR-P", "name": "Puntarenas", "type": "Province" }, { "code": "CR-SJ", "name": "San Jos矇", "type": "Province" }, { "code": "CU-01", "name": "Pinar del R穩o", "type": "Province" }, { "code": "CU-03", "name": "La Habana", "type": "Province" }, { "code": "CU-04", "name": "Matanzas", "type": "Province" }, { "code": "CU-05", "name": "Villa Clara", "type": "Province" }, { "code": "CU-06", "name": "Cienfuegos", "type": "Province" }, { "code": "CU-07", "name": "Sancti Sp穩ritus", "type": "Province" }, { "code": "CU-08", "name": "Ciego de vila", "type": "Province" }, { "code": "CU-09", "name": "Camag羹ey", "type": "Province" }, { "code": "CU-10", "name": "Las Tunas", "type": "Province" }, { "code": "CU-11", "name": "Holgu穩n", "type": "Province" }, { "code": "CU-12", "name": "Granma", "type": "Province" }, { "code": "CU-13", "name": "Santiago de Cuba", "type": "Province" }, { "code": "CU-14", "name": "Guant獺namo", "type": "Province" }, { "code": "CU-15", "name": "Artemisa", "type": "Province" }, { "code": "CU-16", "name": "Mayabeque", "type": "Province" }, { "code": "CU-99", "name": "Isla de la Juventud", "type": "Special municipality" }, { "code": "CV-B", "name": "Ilhas de Barlavento", "type": "Geographical region" }, { "code": "CV-BR", "name": "Brava", "parent": "S", "type": "Municipality" }, { "code": "CV-BV", "name": "Boa Vista", "parent": "B", "type": "Municipality" }, { "code": "CV-CA", "name": "Santa Catarina", "parent": "S", "type": "Municipality" }, { "code": "CV-CF", "name": "Santa Catarina do Fogo", "parent": "S", "type": "Municipality" }, { "code": "CV-CR", "name": "Santa Cruz", "parent": "S", "type": "Municipality" }, { "code": "CV-MA", "name": "Maio", "parent": "S", "type": "Municipality" }, { "code": "CV-MO", "name": "Mosteiros", "parent": "S", "type": "Municipality" }, { "code": "CV-PA", "name": "Paul", "parent": "B", "type": "Municipality" }, { "code": "CV-PN", "name": "Porto Novo", "parent": "B", "type": "Municipality" }, { "code": "CV-PR", "name": "Praia", "parent": "S", "type": "Municipality" }, { "code": "CV-RB", "name": "Ribeira Brava", "parent": "B", "type": "Municipality" }, { "code": "CV-RG", "name": "Ribeira Grande", "parent": "B", "type": "Municipality" }, { "code": "CV-RS", "name": "Ribeira Grande de Santiago", "parent": "S", "type": "Municipality" }, { "code": "CV-S", "name": "Ilhas de Sotavento", "type": "Geographical region" }, { "code": "CV-SD", "name": "S瓊o Domingos", "parent": "S", "type": "Municipality" }, { "code": "CV-SF", "name": "S瓊o Filipe", "parent": "S", "type": "Municipality" }, { "code": "CV-SL", "name": "Sal", "parent": "B", "type": "Municipality" }, { "code": "CV-SM", "name": "S瓊o Miguel", "parent": "S", "type": "Municipality" }, { "code": "CV-SO", "name": "S瓊o Louren癟o dos rg瓊os", "parent": "S", "type": "Municipality" }, { "code": "CV-SS", "name": "S瓊o Salvador do Mundo", "parent": "S", "type": "Municipality" }, { "code": "CV-SV", "name": "S瓊o Vicente", "parent": "B", "type": "Municipality" }, { "code": "CV-TA", "name": "Tarrafal", "parent": "S", "type": "Municipality" }, { "code": "CV-TS", "name": "Tarrafal de S瓊o Nicolau", "parent": "B", "type": "Municipality" }, { "code": "CY-01", "name": "Lefkosia", "type": "District" }, { "code": "CY-02", "name": "Lemesos", "type": "District" }, { "code": "CY-03", "name": "Larnaka", "type": "District" }, { "code": "CY-04", "name": "Ammochostos", "type": "District" }, { "code": "CY-05", "name": "Baf", "type": "District" }, { "code": "CY-06", "name": "Girne", "type": "District" }, { "code": "CZ-10", "name": "Praha, Hlavn穩 msto", "type": "Capital city" }, { "code": "CZ-20", "name": "Stedoesk羸 kraj", "type": "Region" }, { "code": "CZ-201", "name": "Bene禳ov", "parent": "20", "type": "District" }, { "code": "CZ-202", "name": "Beroun", "parent": "20", "type": "District" }, { "code": "CZ-203", "name": "Kladno", "parent": "20", "type": "District" }, { "code": "CZ-204", "name": "Kol穩n", "parent": "20", "type": "District" }, { "code": "CZ-205", "name": "Kutn獺 Hora", "parent": "20", "type": "District" }, { "code": "CZ-206", "name": "Mln穩k", "parent": "20", "type": "District" }, { "code": "CZ-207", "name": "Mlad獺 Boleslav", "parent": "20", "type": "District" }, { "code": "CZ-208", "name": "Nymburk", "parent": "20", "type": "District" }, { "code": "CZ-209", "name": "Praha-v羸chod", "parent": "20", "type": "District" }, { "code": "CZ-20A", "name": "Praha-z獺pad", "parent": "20", "type": "District" }, { "code": "CZ-20B", "name": "P穩bram", "parent": "20", "type": "District" }, { "code": "CZ-20C", "name": "Rakovn穩k", "parent": "20", "type": "District" }, { "code": "CZ-31", "name": "Jihoesk羸 kraj", "type": "Region" }, { "code": "CZ-311", "name": "esk矇 Budjovice", "parent": "31", "type": "District" }, { "code": "CZ-312", "name": "esk羸 Krumlov", "parent": "31", "type": "District" }, { "code": "CZ-313", "name": "Jindich轡v Hradec", "parent": "31", "type": "District" }, { "code": "CZ-314", "name": "P穩sek", "parent": "31", "type": "District" }, { "code": "CZ-315", "name": "Prachatice", "parent": "31", "type": "District" }, { "code": "CZ-316", "name": "Strakonice", "parent": "31", "type": "District" }, { "code": "CZ-317", "name": "T獺bor", "parent": "31", "type": "District" }, { "code": "CZ-32", "name": "Plzesk羸 kraj", "type": "Region" }, { "code": "CZ-321", "name": "Doma鱉lice", "parent": "32", "type": "District" }, { "code": "CZ-322", "name": "Klatovy", "parent": "32", "type": "District" }, { "code": "CZ-323", "name": "Plze-msto", "parent": "32", "type": "District" }, { "code": "CZ-324", "name": "Plze-jih", "parent": "32", "type": "District" }, { "code": "CZ-325", "name": "Plze-sever", "parent": "32", "type": "District" }, { "code": "CZ-326", "name": "Rokycany", "parent": "32", "type": "District" }, { "code": "CZ-327", "name": "Tachov", "parent": "32", "type": "District" }, { "code": "CZ-41", "name": "Karlovarsk羸 kraj", "type": "Region" }, { "code": "CZ-411", "name": "Cheb", "parent": "41", "type": "District" }, { "code": "CZ-412", "name": "Karlovy Vary", "parent": "41", "type": "District" }, { "code": "CZ-413", "name": "Sokolov", "parent": "41", "type": "District" }, { "code": "CZ-42", "name": "steck羸 kraj", "type": "Region" }, { "code": "CZ-421", "name": "D穩n", "parent": "42", "type": "District" }, { "code": "CZ-422", "name": "Chomutov", "parent": "42", "type": "District" }, { "code": "CZ-423", "name": "Litomice", "parent": "42", "type": "District" }, { "code": "CZ-424", "name": "Louny", "parent": "42", "type": "District" }, { "code": "CZ-425", "name": "Most", "parent": "42", "type": "District" }, { "code": "CZ-426", "name": "Teplice", "parent": "42", "type": "District" }, { "code": "CZ-427", "name": "st穩 nad Labem", "parent": "42", "type": "District" }, { "code": "CZ-51", "name": "Libereck羸 kraj", "type": "Region" }, { "code": "CZ-511", "name": "esk獺 L穩pa", "parent": "51", "type": "District" }, { "code": "CZ-512", "name": "Jablonec nad Nisou", "parent": "51", "type": "District" }, { "code": "CZ-513", "name": "Liberec", "parent": "51", "type": "District" }, { "code": "CZ-514", "name": "Semily", "parent": "51", "type": "District" }, { "code": "CZ-52", "name": "Kr獺lov矇hradeck羸 kraj", "type": "Region" }, { "code": "CZ-521", "name": "Hradec Kr獺lov矇", "parent": "52", "type": "District" }, { "code": "CZ-522", "name": "Ji穩n", "parent": "52", "type": "District" }, { "code": "CZ-523", "name": "N獺chod", "parent": "52", "type": "District" }, { "code": "CZ-524", "name": "Rychnov nad Kn鱉nou", "parent": "52", "type": "District" }, { "code": "CZ-525", "name": "Trutnov", "parent": "52", "type": "District" }, { "code": "CZ-53", "name": "Pardubick羸 kraj", "type": "Region" }, { "code": "CZ-531", "name": "Chrudim", "parent": "53", "type": "District" }, { "code": "CZ-532", "name": "Pardubice", "parent": "53", "type": "District" }, { "code": "CZ-533", "name": "Svitavy", "parent": "53", "type": "District" }, { "code": "CZ-534", "name": "st穩 nad Orlic穩", "parent": "53", "type": "District" }, { "code": "CZ-63", "name": "Kraj Vysoina", "type": "Region" }, { "code": "CZ-631", "name": "Havl穩k轡v Brod", "parent": "63", "type": "District" }, { "code": "CZ-632", "name": "Jihlava", "parent": "63", "type": "District" }, { "code": "CZ-633", "name": "Pelhimov", "parent": "63", "type": "District" }, { "code": "CZ-634", "name": "Teb穩", "parent": "63", "type": "District" }, { "code": "CZ-635", "name": "鬚獺r nad S獺zavou", "parent": "63", "type": "District" }, { "code": "CZ-64", "name": "Jihomoravsk羸 kraj", "type": "Region" }, { "code": "CZ-641", "name": "Blansko", "parent": "64", "type": "District" }, { "code": "CZ-642", "name": "Brno-msto", "parent": "64", "type": "District" }, { "code": "CZ-643", "name": "Brno-venkov", "parent": "64", "type": "District" }, { "code": "CZ-644", "name": "Beclav", "parent": "64", "type": "District" }, { "code": "CZ-645", "name": "Hodon穩n", "parent": "64", "type": "District" }, { "code": "CZ-646", "name": "Vy禳kov", "parent": "64", "type": "District" }, { "code": "CZ-647", "name": "Znojmo", "parent": "64", "type": "District" }, { "code": "CZ-71", "name": "Olomouck羸 kraj", "type": "Region" }, { "code": "CZ-711", "name": "Jesen穩k", "parent": "71", "type": "District" }, { "code": "CZ-712", "name": "Olomouc", "parent": "71", "type": "District" }, { "code": "CZ-713", "name": "Prostjov", "parent": "71", "type": "District" }, { "code": "CZ-714", "name": "Perov", "parent": "71", "type": "District" }, { "code": "CZ-715", "name": "umperk", "parent": "71", "type": "District" }, { "code": "CZ-72", "name": "Zl穩nsk羸 kraj", "type": "Region" }, { "code": "CZ-721", "name": "Krom穩鱉", "parent": "72", "type": "District" }, { "code": "CZ-722", "name": "Uhersk矇 Hradi禳t", "parent": "72", "type": "District" }, { "code": "CZ-723", "name": "Vset穩n", "parent": "72", "type": "District" }, { "code": "CZ-724", "name": "Zl穩n", "parent": "72", "type": "District" }, { "code": "CZ-80", "name": "Moravskoslezsk羸 kraj", "type": "Region" }, { "code": "CZ-801", "name": "Brunt獺l", "parent": "80", "type": "District" }, { "code": "CZ-802", "name": "Fr羸dek-M穩stek", "parent": "80", "type": "District" }, { "code": "CZ-803", "name": "Karvin獺", "parent": "80", "type": "District" }, { "code": "CZ-804", "name": "Nov羸 Ji穩n", "parent": "80", "type": "District" }, { "code": "CZ-805", "name": "Opava", "parent": "80", "type": "District" }, { "code": "CZ-806", "name": "Ostrava-msto", "parent": "80", "type": "District" }, { "code": "DE-BB", "name": "Brandenburg", "type": "Land" }, { "code": "DE-BE", "name": "Berlin", "type": "Land" }, { "code": "DE-BW", "name": "Baden-W羹rttemberg", "type": "Land" }, { "code": "DE-BY", "name": "Bayern", "type": "Land" }, { "code": "DE-HB", "name": "Bremen", "type": "Land" }, { "code": "DE-HE", "name": "Hessen", "type": "Land" }, { "code": "DE-HH", "name": "Hamburg", "type": "Land" }, { "code": "DE-MV", "name": "Mecklenburg-Vorpommern", "type": "Land" }, { "code": "DE-NI", "name": "Niedersachsen", "type": "Land" }, { "code": "DE-NW", "name": "Nordrhein-Westfalen", "type": "Land" }, { "code": "DE-RP", "name": "Rheinland-Pfalz", "type": "Land" }, { "code": "DE-SH", "name": "Schleswig-Holstein", "type": "Land" }, { "code": "DE-SL", "name": "Saarland", "type": "Land" }, { "code": "DE-SN", "name": "Sachsen", "type": "Land" }, { "code": "DE-ST", "name": "Sachsen-Anhalt", "type": "Land" }, { "code": "DE-TH", "name": "Th羹ringen", "type": "Land" }, { "code": "DJ-AR", "name": "Arta", "type": "Region" }, { "code": "DJ-AS", "name": "Ali Sabieh", "type": "Region" }, { "code": "DJ-DI", "name": "Dikhil", "type": "Region" }, { "code": "DJ-DJ", "name": "Djibouti", "type": "City" }, { "code": "DJ-OB", "name": "Awb贖k", "type": "Region" }, { "code": "DJ-TA", "name": "Tadjourah", "type": "Region" }, { "code": "DK-81", "name": "Nordjylland", "type": "Region" }, { "code": "DK-82", "name": "Midtjylland", "type": "Region" }, { "code": "DK-83", "name": "Syddanmark", "type": "Region" }, { "code": "DK-84", "name": "Hovedstaden", "type": "Region" }, { "code": "DK-85", "name": "Sj疆lland", "type": "Region" }, { "code": "DM-02", "name": "Saint Andrew", "type": "Parish" }, { "code": "DM-03", "name": "Saint David", "type": "Parish" }, { "code": "DM-04", "name": "Saint George", "type": "Parish" }, { "code": "DM-05", "name": "Saint John", "type": "Parish" }, { "code": "DM-06", "name": "Saint Joseph", "type": "Parish" }, { "code": "DM-07", "name": "Saint Luke", "type": "Parish" }, { "code": "DM-08", "name": "Saint Mark", "type": "Parish" }, { "code": "DM-09", "name": "Saint Patrick", "type": "Parish" }, { "code": "DM-10", "name": "Saint Paul", "type": "Parish" }, { "code": "DM-11", "name": "Saint Peter", "type": "Parish" }, { "code": "DO-01", "name": "Distrito Nacional (Santo Domingo)", "parent": "40", "type": "District" }, { "code": "DO-02", "name": "Azua", "parent": "41", "type": "Province" }, { "code": "DO-03", "name": "Baoruco", "parent": "38", "type": "Province" }, { "code": "DO-04", "name": "Barahona", "parent": "38", "type": "Province" }, { "code": "DO-05", "name": "Dajab籀n", "parent": "34", "type": "Province" }, { "code": "DO-06", "name": "Duarte", "parent": "33", "type": "Province" }, { "code": "DO-07", "name": "El穩as Pi簽a", "parent": "37", "type": "Province" }, { "code": "DO-08", "name": "El Seibo", "parent": "42", "type": "Province" }, { "code": "DO-09", "name": "Espaillat", "parent": "35", "type": "Province" }, { "code": "DO-10", "name": "Independencia", "parent": "38", "type": "Province" }, { "code": "DO-11", "name": "La Altagracia", "parent": "42", "type": "Province" }, { "code": "DO-12", "name": "La Romana", "parent": "42", "type": "Province" }, { "code": "DO-13", "name": "La Vega", "parent": "36", "type": "Province" }, { "code": "DO-14", "name": "Mar穩a Trinidad S獺nchez", "parent": "33", "type": "Province" }, { "code": "DO-15", "name": "Monte Cristi", "parent": "34", "type": "Province" }, { "code": "DO-16", "name": "Pedernales", "parent": "38", "type": "Province" }, { "code": "DO-17", "name": "Peravia", "parent": "41", "type": "Province" }, { "code": "DO-18", "name": "Puerto Plata", "parent": "35", "type": "Province" }, { "code": "DO-19", "name": "Hermanas Mirabal", "parent": "33", "type": "Province" }, { "code": "DO-20", "name": "Saman獺", "parent": "33", "type": "Province" }, { "code": "DO-21", "name": "San Crist籀bal", "parent": "41", "type": "Province" }, { "code": "DO-22", "name": "San Juan", "parent": "37", "type": "Province" }, { "code": "DO-23", "name": "San Pedro de Macor穩s", "parent": "39", "type": "Province" }, { "code": "DO-24", "name": "S獺nchez Ram穩rez", "parent": "36", "type": "Province" }, { "code": "DO-25", "name": "Santiago", "parent": "35", "type": "Province" }, { "code": "DO-26", "name": "Santiago Rodr穩guez", "parent": "34", "type": "Province" }, { "code": "DO-27", "name": "Valverde", "parent": "34", "type": "Province" }, { "code": "DO-28", "name": "Monse簽or Nouel", "parent": "36", "type": "Province" }, { "code": "DO-29", "name": "Monte Plata", "parent": "39", "type": "Province" }, { "code": "DO-30", "name": "Hato Mayor", "parent": "39", "type": "Province" }, { "code": "DO-31", "name": "San Jos矇 de Ocoa", "parent": "41", "type": "Province" }, { "code": "DO-32", "name": "Santo Domingo", "parent": "40", "type": "Province" }, { "code": "DO-33", "name": "Cibao Nordeste", "type": "Region" }, { "code": "DO-34", "name": "Cibao Noroeste", "type": "Region" }, { "code": "DO-35", "name": "Cibao Norte", "type": "Region" }, { "code": "DO-36", "name": "Cibao Sur", "type": "Region" }, { "code": "DO-37", "name": "El Valle", "type": "Region" }, { "code": "DO-38", "name": "Enriquillo", "type": "Region" }, { "code": "DO-39", "name": "Higuamo", "type": "Region" }, { "code": "DO-40", "name": "Ozama", "type": "Region" }, { "code": "DO-41", "name": "Valdesia", "type": "Region" }, { "code": "DO-42", "name": "Yuma", "type": "Region" }, { "code": "DZ-01", "name": "Adrar", "type": "Province" }, { "code": "DZ-02", "name": "Chlef", "type": "Province" }, { "code": "DZ-03", "name": "Laghouat", "type": "Province" }, { "code": "DZ-04", "name": "Oum el Bouaghi", "type": "Province" }, { "code": "DZ-05", "name": "Batna", "type": "Province" }, { "code": "DZ-06", "name": "B矇ja簿a", "type": "Province" }, { "code": "DZ-07", "name": "Biskra", "type": "Province" }, { "code": "DZ-08", "name": "B矇char", "type": "Province" }, { "code": "DZ-09", "name": "Blida", "type": "Province" }, { "code": "DZ-10", "name": "Bouira", "type": "Province" }, { "code": "DZ-11", "name": "Tamanrasset", "type": "Province" }, { "code": "DZ-12", "name": "T矇bessa", "type": "Province" }, { "code": "DZ-13", "name": "Tlemcen", "type": "Province" }, { "code": "DZ-14", "name": "Tiaret", "type": "Province" }, { "code": "DZ-15", "name": "Tizi Ouzou", "type": "Province" }, { "code": "DZ-16", "name": "Alger", "type": "Province" }, { "code": "DZ-17", "name": "Djelfa", "type": "Province" }, { "code": "DZ-18", "name": "Jijel", "type": "Province" }, { "code": "DZ-19", "name": "S矇tif", "type": "Province" }, { "code": "DZ-20", "name": "Sa簿da", "type": "Province" }, { "code": "DZ-21", "name": "Skikda", "type": "Province" }, { "code": "DZ-22", "name": "Sidi Bel Abb癡s", "type": "Province" }, { "code": "DZ-23", "name": "Annaba", "type": "Province" }, { "code": "DZ-24", "name": "Guelma", "type": "Province" }, { "code": "DZ-25", "name": "Constantine", "type": "Province" }, { "code": "DZ-26", "name": "M矇d矇a", "type": "Province" }, { "code": "DZ-27", "name": "Mostaganem", "type": "Province" }, { "code": "DZ-28", "name": "M'sila", "type": "Province" }, { "code": "DZ-29", "name": "Mascara", "type": "Province" }, { "code": "DZ-30", "name": "Ouargla", "type": "Province" }, { "code": "DZ-31", "name": "Oran", "type": "Province" }, { "code": "DZ-32", "name": "El Bayadh", "type": "Province" }, { "code": "DZ-33", "name": "Illizi", "type": "Province" }, { "code": "DZ-34", "name": "Bordj Bou Arr矇ridj", "type": "Province" }, { "code": "DZ-35", "name": "Boumerd癡s", "type": "Province" }, { "code": "DZ-36", "name": "El Tarf", "type": "Province" }, { "code": "DZ-37", "name": "Tindouf", "type": "Province" }, { "code": "DZ-38", "name": "Tissemsilt", "type": "Province" }, { "code": "DZ-39", "name": "El Oued", "type": "Province" }, { "code": "DZ-40", "name": "Khenchela", "type": "Province" }, { "code": "DZ-41", "name": "Souk Ahras", "type": "Province" }, { "code": "DZ-42", "name": "Tipaza", "type": "Province" }, { "code": "DZ-43", "name": "Mila", "type": "Province" }, { "code": "DZ-44", "name": "A簿n Defla", "type": "Province" }, { "code": "DZ-45", "name": "Naama", "type": "Province" }, { "code": "DZ-46", "name": "A簿n T矇mouchent", "type": "Province" }, { "code": "DZ-47", "name": "Gharda簿a", "type": "Province" }, { "code": "DZ-48", "name": "Relizane", "type": "Province" }, { "code": "EC-A", "name": "Azuay", "type": "Province" }, { "code": "EC-B", "name": "Bol穩var", "type": "Province" }, { "code": "EC-C", "name": "Carchi", "type": "Province" }, { "code": "EC-D", "name": "Orellana", "type": "Province" }, { "code": "EC-E", "name": "Esmeraldas", "type": "Province" }, { "code": "EC-F", "name": "Ca簽ar", "type": "Province" }, { "code": "EC-G", "name": "Guayas", "type": "Province" }, { "code": "EC-H", "name": "Chimborazo", "type": "Province" }, { "code": "EC-I", "name": "Imbabura", "type": "Province" }, { "code": "EC-L", "name": "Loja", "type": "Province" }, { "code": "EC-M", "name": "Manab穩", "type": "Province" }, { "code": "EC-N", "name": "Napo", "type": "Province" }, { "code": "EC-O", "name": "El Oro", "type": "Province" }, { "code": "EC-P", "name": "Pichincha", "type": "Province" }, { "code": "EC-R", "name": "Los R穩os", "type": "Province" }, { "code": "EC-S", "name": "Morona Santiago", "type": "Province" }, { "code": "EC-SD", "name": "Santo Domingo de los Ts獺chilas", "type": "Province" }, { "code": "EC-SE", "name": "Santa Elena", "type": "Province" }, { "code": "EC-T", "name": "Tungurahua", "type": "Province" }, { "code": "EC-U", "name": "Sucumb穩os", "type": "Province" }, { "code": "EC-W", "name": "Gal獺pagos", "type": "Province" }, { "code": "EC-X", "name": "Cotopaxi", "type": "Province" }, { "code": "EC-Y", "name": "Pastaza", "type": "Province" }, { "code": "EC-Z", "name": "Zamora Chinchipe", "type": "Province" }, { "code": "EE-130", "name": "Alutaguse", "parent": "45", "type": "Rural municipality" }, { "code": "EE-141", "name": "Anija", "parent": "37", "type": "Rural municipality" }, { "code": "EE-142", "name": "Antsla", "parent": "87", "type": "Rural municipality" }, { "code": "EE-171", "name": "Elva", "parent": "79", "type": "Rural municipality" }, { "code": "EE-184", "name": "Haapsalu", "parent": "56", "type": "Urban municipality" }, { "code": "EE-191", "name": "Haljala", "parent": "60", "type": "Rural municipality" }, { "code": "EE-198", "name": "Harku", "parent": "37", "type": "Rural municipality" }, { "code": "EE-205", "name": "Hiiumaa", "parent": "39", "type": "Rural municipality" }, { "code": "EE-214", "name": "H瓣瓣demeeste", "parent": "68", "type": "Rural municipality" }, { "code": "EE-245", "name": "J繭el瓣htme", "parent": "37", "type": "Rural municipality" }, { "code": "EE-247", "name": "J繭geva", "parent": "50", "type": "Rural municipality" }, { "code": "EE-251", "name": "J繭hvi", "parent": "45", "type": "Rural municipality" }, { "code": "EE-255", "name": "J瓣rva", "parent": "52", "type": "Rural municipality" }, { "code": "EE-272", "name": "Kadrina", "parent": "60", "type": "Rural municipality" }, { "code": "EE-283", "name": "Kambja", "parent": "79", "type": "Rural municipality" }, { "code": "EE-284", "name": "Kanepi", "parent": "64", "type": "Rural municipality" }, { "code": "EE-291", "name": "Kastre", "parent": "79", "type": "Rural municipality" }, { "code": "EE-293", "name": "Kehtna", "parent": "71", "type": "Rural municipality" }, { "code": "EE-296", "name": "Keila", "parent": "37", "type": "Urban municipality" }, { "code": "EE-303", "name": "Kihnu", "parent": "68", "type": "Rural municipality" }, { "code": "EE-305", "name": "Kiili", "parent": "37", "type": "Rural municipality" }, { "code": "EE-317", "name": "Kohila", "parent": "71", "type": "Rural municipality" }, { "code": "EE-321", "name": "Kohtla-J瓣rve", "parent": "45", "type": "Urban municipality" }, { "code": "EE-338", "name": "Kose", "parent": "37", "type": "Rural municipality" }, { "code": "EE-353", "name": "Kuusalu", "parent": "37", "type": "Rural municipality" }, { "code": "EE-37", "name": "Harjumaa", "type": "County" }, { "code": "EE-39", "name": "Hiiumaa", "type": "County" }, { "code": "EE-424", "name": "Loksa", "parent": "37", "type": "Urban municipality" }, { "code": "EE-430", "name": "L瓣瓣neranna", "parent": "68", "type": "Rural municipality" }, { "code": "EE-431", "name": "L瓣瓣ne-Harju", "parent": "37", "type": "Rural municipality" }, { "code": "EE-432", "name": "Luunja", "parent": "79", "type": "Rural municipality" }, { "code": "EE-441", "name": "L瓣瓣ne-Nigula", "parent": "56", "type": "Rural municipality" }, { "code": "EE-442", "name": "L羹ganuse", "parent": "45", "type": "Rural municipality" }, { "code": "EE-446", "name": "Maardu", "parent": "37", "type": "Urban municipality" }, { "code": "EE-45", "name": "Ida-Virumaa", "type": "County" }, { "code": "EE-478", "name": "Muhu", "parent": "74", "type": "Rural municipality" }, { "code": "EE-480", "name": "Mulgi", "parent": "84", "type": "Rural municipality" }, { "code": "EE-486", "name": "Mustvee", "parent": "50", "type": "Rural municipality" }, { "code": "EE-50", "name": "J繭gevamaa", "type": "County" }, { "code": "EE-503", "name": "M瓣rjamaa", "parent": "71", "type": "Rural municipality" }, { "code": "EE-511", "name": "Narva", "parent": "45", "type": "Urban municipality" }, { "code": "EE-514", "name": "Narva-J繭esuu", "parent": "45", "type": "Urban municipality" }, { "code": "EE-52", "name": "J瓣rvamaa", "type": "County" }, { "code": "EE-528", "name": "N繭o", "parent": "79", "type": "Rural municipality" }, { "code": "EE-557", "name": "Otep瓣瓣", "parent": "81", "type": "Rural municipality" }, { "code": "EE-56", "name": "L瓣瓣nemaa", "type": "County" }, { "code": "EE-567", "name": "Paide", "parent": "52", "type": "Urban municipality" }, { "code": "EE-586", "name": "Peipsi瓣瓣re", "parent": "79", "type": "Rural municipality" }, { "code": "EE-60", "name": "L瓣瓣ne-Virumaa", "type": "County" }, { "code": "EE-615", "name": "P繭hja-Sakala", "parent": "84", "type": "Rural municipality" }, { "code": "EE-618", "name": "P繭ltsamaa", "parent": "50", "type": "Rural municipality" }, { "code": "EE-622", "name": "P繭lva", "parent": "64", "type": "Rural municipality" }, { "code": "EE-624", "name": "P瓣rnu", "parent": "68", "type": "Urban municipality" }, { "code": "EE-638", "name": "P繭hja-P瓣rnumaa", "parent": "68", "type": "Rural municipality" }, { "code": "EE-64", "name": "P繭lvamaa", "type": "County" }, { "code": "EE-651", "name": "Raasiku", "parent": "37", "type": "Rural municipality" }, { "code": "EE-653", "name": "Rae", "parent": "37", "type": "Rural municipality" }, { "code": "EE-661", "name": "Rakvere", "parent": "60", "type": "Rural municipality" }, { "code": "EE-663", "name": "Rakvere", "parent": "60", "type": "Urban municipality" }, { "code": "EE-668", "name": "Rapla", "parent": "71", "type": "Rural municipality" }, { "code": "EE-68", "name": "P瓣rnumaa", "type": "County" }, { "code": "EE-689", "name": "Ruhnu", "parent": "74", "type": "Rural municipality" }, { "code": "EE-698", "name": "R繭uge", "parent": "87", "type": "Rural municipality" }, { "code": "EE-708", "name": "R瓣pina", "parent": "64", "type": "Rural municipality" }, { "code": "EE-71", "name": "Raplamaa", "type": "County" }, { "code": "EE-712", "name": "Saarde", "parent": "68", "type": "Rural municipality" }, { "code": "EE-714", "name": "Saaremaa", "parent": "74", "type": "Rural municipality" }, { "code": "EE-719", "name": "Saku", "parent": "37", "type": "Rural municipality" }, { "code": "EE-726", "name": "Saue", "parent": "37", "type": "Rural municipality" }, { "code": "EE-732", "name": "Setomaa", "parent": "87", "type": "Rural municipality" }, { "code": "EE-735", "name": "Sillam瓣e", "parent": "45", "type": "Urban municipality" }, { "code": "EE-74", "name": "Saaremaa", "type": "County" }, { "code": "EE-784", "name": "Tallinn", "parent": "37", "type": "Urban municipality" }, { "code": "EE-79", "name": "Tartumaa", "type": "County" }, { "code": "EE-792", "name": "Tapa", "parent": "60", "type": "Rural municipality" }, { "code": "EE-793", "name": "Tartu", "parent": "79", "type": "Urban municipality" }, { "code": "EE-796", "name": "Tartu", "parent": "79", "type": "Rural municipality" }, { "code": "EE-803", "name": "Toila", "parent": "45", "type": "Rural municipality" }, { "code": "EE-809", "name": "Tori", "parent": "68", "type": "Rural municipality" }, { "code": "EE-81", "name": "Valgamaa", "type": "County" }, { "code": "EE-824", "name": "T繭rva", "parent": "81", "type": "Rural municipality" }, { "code": "EE-834", "name": "T羹ri", "parent": "52", "type": "Rural municipality" }, { "code": "EE-84", "name": "Viljandimaa", "type": "County" }, { "code": "EE-855", "name": "Valga", "parent": "81", "type": "Rural municipality" }, { "code": "EE-87", "name": "V繭rumaa", "type": "County" }, { "code": "EE-890", "name": "Viimsi", "parent": "37", "type": "Rural municipality" }, { "code": "EE-897", "name": "Viljandi", "parent": "84", "type": "Urban municipality" }, { "code": "EE-899", "name": "Viljandi", "parent": "84", "type": "Rural municipality" }, { "code": "EE-901", "name": "Vinni", "parent": "60", "type": "Rural municipality" }, { "code": "EE-903", "name": "Viru-Nigula", "parent": "60", "type": "Rural municipality" }, { "code": "EE-907", "name": "Vormsi", "parent": "56", "type": "Rural municipality" }, { "code": "EE-917", "name": "V繭ru", "parent": "87", "type": "Rural municipality" }, { "code": "EE-919", "name": "V繭ru", "parent": "87", "type": "Urban municipality" }, { "code": "EE-928", "name": "V瓣ike-Maarja", "parent": "60", "type": "Rural municipality" }, { "code": "EG-ALX", "name": "Al Iskandar蘋yah", "type": "Governorate" }, { "code": "EG-ASN", "name": "Aswn", "type": "Governorate" }, { "code": "EG-AST", "name": "Asy贖籟", "type": "Governorate" }, { "code": "EG-BA", "name": "Al Ba廎姅 al A廎姓ar", "type": "Governorate" }, { "code": "EG-BH", "name": "Al Bu廎奄yrah", "type": "Governorate" }, { "code": "EG-BNS", "name": "Ban蘋 Suwayf", "type": "Governorate" }, { "code": "EG-C", "name": "Al Qhirah", "type": "Governorate" }, { "code": "EG-DK", "name": "Ad Daqahl蘋yah", "type": "Governorate" }, { "code": "EG-DT", "name": "Dumy籟", "type": "Governorate" }, { "code": "EG-FYM", "name": "Al Fayy贖m", "type": "Governorate" }, { "code": "EG-GH", "name": "Al Gharb蘋yah", "type": "Governorate" }, { "code": "EG-GZ", "name": "Al J蘋zah", "type": "Governorate" }, { "code": "EG-IS", "name": "Al Ism'蘋l蘋yah", "type": "Governorate" }, { "code": "EG-JS", "name": "Jan贖b S蘋n'", "type": "Governorate" }, { "code": "EG-KB", "name": "Al Qaly贖b蘋yah", "type": "Governorate" }, { "code": "EG-KFS", "name": "Kafr ash Shaykh", "type": "Governorate" }, { "code": "EG-KN", "name": "Qin", "type": "Governorate" }, { "code": "EG-LX", "name": "Al Uqur", "type": "Governorate" }, { "code": "EG-MN", "name": "Al Miny", "type": "Governorate" }, { "code": "EG-MNF", "name": "Al Min贖f蘋yah", "type": "Governorate" }, { "code": "EG-MT", "name": "Ma籟r贖廎", "type": "Governorate" }, { "code": "EG-PTS", "name": "B贖r Sa蘋d", "type": "Governorate" }, { "code": "EG-SHG", "name": "S贖hj", "type": "Governorate" }, { "code": "EG-SHR", "name": "Ash Sharq蘋yah", "type": "Governorate" }, { "code": "EG-SIN", "name": "Shaml S蘋n'", "type": "Governorate" }, { "code": "EG-SUZ", "name": "As Suways", "type": "Governorate" }, { "code": "EG-WAD", "name": "Al Wd蘋 al Jad蘋d", "type": "Governorate" }, { "code": "ER-AN", "name": "Ansab", "type": "Region" }, { "code": "ER-DK", "name": "Debubawi Keyy蘊廎 Ba廎叵i", "type": "Region" }, { "code": "ER-DU", "name": "Al Jan贖b蘋", "type": "Region" }, { "code": "ER-GB", "name": "Gash-Barka", "type": "Region" }, { "code": "ER-MA", "name": "Al Awsa籟", "type": "Region" }, { "code": "ER-SK", "name": "Semienawi Keyy蘊廎 Ba廎叵i", "type": "Region" }, { "code": "ES-A", "name": "Alacant*", "parent": "VC", "type": "Province" }, { "code": "ES-AB", "name": "Albacete", "parent": "CM", "type": "Province" }, { "code": "ES-AL", "name": "Almer穩a", "parent": "AN", "type": "Province" }, { "code": "ES-AN", "name": "Andaluc穩a", "type": "Autonomous community" }, { "code": "ES-AR", "name": "Arag籀n", "type": "Autonomous community" }, { "code": "ES-AS", "name": "Asturias, Principado de", "type": "Autonomous community" }, { "code": "ES-AV", "name": "vila", "parent": "CL", "type": "Province" }, { "code": "ES-B", "name": "Barcelona [Barcelona]", "parent": "CT", "type": "Province" }, { "code": "ES-BA", "name": "Badajoz", "parent": "EX", "type": "Province" }, { "code": "ES-BI", "name": "Bizkaia", "parent": "PV", "type": "Province" }, { "code": "ES-BU", "name": "Burgos", "parent": "CL", "type": "Province" }, { "code": "ES-C", "name": "A Coru簽a [La Coru簽a]", "parent": "GA", "type": "Province" }, { "code": "ES-CA", "name": "C獺diz", "parent": "AN", "type": "Province" }, { "code": "ES-CB", "name": "Cantabria", "type": "Autonomous community" }, { "code": "ES-CC", "name": "C獺ceres", "parent": "EX", "type": "Province" }, { "code": "ES-CE", "name": "Ceuta", "type": "Autonomous city in north africa" }, { "code": "ES-CL", "name": "Castilla y Le籀n", "type": "Autonomous community" }, { "code": "ES-CM", "name": "Castilla-La Mancha", "type": "Autonomous community" }, { "code": "ES-CN", "name": "Canarias", "type": "Autonomous community" }, { "code": "ES-CO", "name": "C籀rdoba", "parent": "AN", "type": "Province" }, { "code": "ES-CR", "name": "Ciudad Real", "parent": "CM", "type": "Province" }, { "code": "ES-CS", "name": "Castell籀*", "parent": "VC", "type": "Province" }, { "code": "ES-CT", "name": "Catalunya [Catalu簽a]", "type": "Autonomous community" }, { "code": "ES-CU", "name": "Cuenca", "parent": "CM", "type": "Province" }, { "code": "ES-EX", "name": "Extremadura", "type": "Autonomous community" }, { "code": "ES-GA", "name": "Galicia [Galicia]", "type": "Autonomous community" }, { "code": "ES-GC", "name": "Las Palmas", "parent": "CN", "type": "Province" }, { "code": "ES-GI", "name": "Girona [Gerona]", "parent": "CT", "type": "Province" }, { "code": "ES-GR", "name": "Granada", "parent": "AN", "type": "Province" }, { "code": "ES-GU", "name": "Guadalajara", "parent": "CM", "type": "Province" }, { "code": "ES-H", "name": "Huelva", "parent": "AN", "type": "Province" }, { "code": "ES-HU", "name": "Huesca", "parent": "AR", "type": "Province" }, { "code": "ES-IB", "name": "Illes Balears [Islas Baleares]", "type": "Autonomous community" }, { "code": "ES-J", "name": "Ja矇n", "parent": "AN", "type": "Province" }, { "code": "ES-L", "name": "Lleida [L矇rida]", "parent": "CT", "type": "Province" }, { "code": "ES-LE", "name": "Le籀n", "parent": "CL", "type": "Province" }, { "code": "ES-LO", "name": "La Rioja", "parent": "RI", "type": "Province" }, { "code": "ES-LU", "name": "Lugo [Lugo]", "parent": "GA", "type": "Province" }, { "code": "ES-M", "name": "Madrid", "parent": "MD", "type": "Province" }, { "code": "ES-MA", "name": "M獺laga", "parent": "AN", "type": "Province" }, { "code": "ES-MC", "name": "Murcia, Regi籀n de", "type": "Autonomous community" }, { "code": "ES-MD", "name": "Madrid, Comunidad de", "type": "Autonomous community" }, { "code": "ES-ML", "name": "Melilla", "type": "Autonomous city in north africa" }, { "code": "ES-MU", "name": "Murcia", "parent": "MC", "type": "Province" }, { "code": "ES-NA", "name": "Nafarroa*", "parent": "NC", "type": "Province" }, { "code": "ES-NC", "name": "Nafarroako Foru Komunitatea*", "type": "Autonomous community" }, { "code": "ES-O", "name": "Asturias", "parent": "AS", "type": "Province" }, { "code": "ES-OR", "name": "Ourense [Orense]", "parent": "GA", "type": "Province" }, { "code": "ES-P", "name": "Palencia", "parent": "CL", "type": "Province" }, { "code": "ES-PM", "name": "Illes Balears [Islas Baleares]", "parent": "IB", "type": "Province" }, { "code": "ES-PO", "name": "Pontevedra [Pontevedra]", "parent": "GA", "type": "Province" }, { "code": "ES-PV", "name": "Euskal Herria", "type": "Autonomous community" }, { "code": "ES-RI", "name": "La Rioja", "type": "Autonomous community" }, { "code": "ES-S", "name": "Cantabria", "parent": "CB", "type": "Province" }, { "code": "ES-SA", "name": "Salamanca", "parent": "CL", "type": "Province" }, { "code": "ES-SE", "name": "Sevilla", "parent": "AN", "type": "Province" }, { "code": "ES-SG", "name": "Segovia", "parent": "CL", "type": "Province" }, { "code": "ES-SO", "name": "Soria", "parent": "CL", "type": "Province" }, { "code": "ES-SS", "name": "Gipuzkoa", "parent": "PV", "type": "Province" }, { "code": "ES-T", "name": "Tarragona [Tarragona]", "parent": "CT", "type": "Province" }, { "code": "ES-TE", "name": "Teruel", "parent": "AR", "type": "Province" }, { "code": "ES-TF", "name": "Santa Cruz de Tenerife", "parent": "CN", "type": "Province" }, { "code": "ES-TO", "name": "Toledo", "parent": "CM", "type": "Province" }, { "code": "ES-V", "name": "Valencia", "parent": "VC", "type": "Province" }, { "code": "ES-VA", "name": "Valladolid", "parent": "CL", "type": "Province" }, { "code": "ES-VC", "name": "Valenciana, Comunidad", "type": "Autonomous community" }, { "code": "ES-VI", "name": "Araba*", "parent": "PV", "type": "Province" }, { "code": "ES-Z", "name": "Zaragoza", "parent": "AR", "type": "Province" }, { "code": "ES-ZA", "name": "Zamora", "parent": "CL", "type": "Province" }, { "code": "ET-AA", "name": "Addis Ababa", "type": "Administration" }, { "code": "ET-AF", "name": "Afar", "type": "Regional state" }, { "code": "ET-AM", "name": "Amara", "type": "Regional state" }, { "code": "ET-BE", "name": "Benshangul-Gumaz", "type": "Regional state" }, { "code": "ET-DD", "name": "Dire Dawa", "type": "Administration" }, { "code": "ET-GA", "name": "Gambela Peoples", "type": "Regional state" }, { "code": "ET-HA", "name": "Harari People", "type": "Regional state" }, { "code": "ET-OR", "name": "Oromia", "type": "Regional state" }, { "code": "ET-SN", "name": "Southern Nations, Nationalities and Peoples", "type": "Regional state" }, { "code": "ET-SO", "name": "Somali", "type": "Regional state" }, { "code": "ET-TI", "name": "Tigrai", "type": "Regional state" }, { "code": "FI-01", "name": "Ahvenanmaan maakunta", "type": "Region" }, { "code": "FI-02", "name": "Etel瓣-Karjala", "type": "Region" }, { "code": "FI-03", "name": "Etel瓣-Pohjanmaa", "type": "Region" }, { "code": "FI-04", "name": "Etel瓣-Savo", "type": "Region" }, { "code": "FI-05", "name": "Kainuu", "type": "Region" }, { "code": "FI-06", "name": "Egentliga Tavastland", "type": "Region" }, { "code": "FI-07", "name": "Keski-Pohjanmaa", "type": "Region" }, { "code": "FI-08", "name": "Keski-Suomi", "type": "Region" }, { "code": "FI-09", "name": "Kymenlaakso", "type": "Region" }, { "code": "FI-10", "name": "Lappi", "type": "Region" }, { "code": "FI-11", "name": "Birkaland", "type": "Region" }, { "code": "FI-12", "name": "Pohjanmaa", "type": "Region" }, { "code": "FI-13", "name": "Norra Karelen", "type": "Region" }, { "code": "FI-14", "name": "Norra sterbotten", "type": "Region" }, { "code": "FI-15", "name": "Norra Savolax", "type": "Region" }, { "code": "FI-16", "name": "P瓣ij瓣nne-Tavastland", "type": "Region" }, { "code": "FI-17", "name": "Satakunda", "type": "Region" }, { "code": "FI-18", "name": "Nyland", "type": "Region" }, { "code": "FI-19", "name": "Egentliga Finland", "type": "Region" }, { "code": "FJ-01", "name": "Ba", "parent": "W", "type": "Province" }, { "code": "FJ-02", "name": "Bua", "parent": "N", "type": "Province" }, { "code": "FJ-03", "name": "Cakaudrove", "parent": "N", "type": "Province" }, { "code": "FJ-04", "name": "Kadavu", "parent": "E", "type": "Province" }, { "code": "FJ-05", "name": "Lau", "parent": "E", "type": "Province" }, { "code": "FJ-06", "name": "Lomaiviti", "parent": "E", "type": "Province" }, { "code": "FJ-07", "name": "Macuata", "parent": "N", "type": "Province" }, { "code": "FJ-08", "name": "Nadroga and Navosa", "parent": "W", "type": "Province" }, { "code": "FJ-09", "name": "Naitasiri", "parent": "C", "type": "Province" }, { "code": "FJ-10", "name": "Namosi", "parent": "C", "type": "Province" }, { "code": "FJ-11", "name": "Ra", "parent": "W", "type": "Province" }, { "code": "FJ-12", "name": "Rewa", "parent": "C", "type": "Province" }, { "code": "FJ-13", "name": "Serua", "parent": "C", "type": "Province" }, { "code": "FJ-14", "name": "Tailevu", "parent": "C", "type": "Province" }, { "code": "FJ-C", "name": "Central", "type": "Division" }, { "code": "FJ-E", "name": "Eastern", "type": "Division" }, { "code": "FJ-N", "name": "Northern", "type": "Division" }, { "code": "FJ-R", "name": "Rotuma", "type": "Dependency" }, { "code": "FJ-W", "name": "Western", "type": "Division" }, { "code": "FM-KSA", "name": "Kosrae", "type": "State" }, { "code": "FM-PNI", "name": "Pohnpei", "type": "State" }, { "code": "FM-TRK", "name": "Chuuk", "type": "State" }, { "code": "FM-YAP", "name": "Yap", "type": "State" }, { "code": "FR-01", "name": "Ain", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-02", "name": "Aisne", "parent": "HDF", "type": "Metropolitan department" }, { "code": "FR-03", "name": "Allier", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-04", "name": "Alpes-de-Haute-Provence", "parent": "PAC", "type": "Metropolitan department" }, { "code": "FR-05", "name": "Hautes-Alpes", "parent": "PAC", "type": "Metropolitan department" }, { "code": "FR-06", "name": "Alpes-Maritimes", "parent": "PAC", "type": "Metropolitan department" }, { "code": "FR-07", "name": "Ard癡che", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-08", "name": "Ardennes", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-09", "name": "Ari癡ge", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-10", "name": "Aube", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-11", "name": "Aude", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-12", "name": "Aveyron", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-13", "name": "Bouches-du-Rh繫ne", "parent": "PAC", "type": "Metropolitan department" }, { "code": "FR-14", "name": "Calvados", "parent": "NOR", "type": "Metropolitan department" }, { "code": "FR-15", "name": "Cantal", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-16", "name": "Charente", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-17", "name": "Charente-Maritime", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-18", "name": "Cher", "parent": "CVL", "type": "Metropolitan department" }, { "code": "FR-19", "name": "Corr癡ze", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-20R", "name": "Corse", "type": "Metropolitan collectivity with special status" }, { "code": "FR-21", "name": "C繫te-d'Or", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-22", "name": "C繫tes-d'Armor", "parent": "BRE", "type": "Metropolitan department" }, { "code": "FR-23", "name": "Creuse", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-24", "name": "Dordogne", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-25", "name": "Doubs", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-26", "name": "Dr繫me", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-27", "name": "Eure", "parent": "NOR", "type": "Metropolitan department" }, { "code": "FR-28", "name": "Eure-et-Loir", "parent": "CVL", "type": "Metropolitan department" }, { "code": "FR-29", "name": "Finist癡re", "parent": "BRE", "type": "Metropolitan department" }, { "code": "FR-2A", "name": "Corse-du-Sud", "parent": "20R", "type": "Metropolitan department" }, { "code": "FR-2B", "name": "Haute-Corse", "parent": "20R", "type": "Metropolitan department" }, { "code": "FR-30", "name": "Gard", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-31", "name": "Haute-Garonne", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-32", "name": "Gers", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-33", "name": "Gironde", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-34", "name": "H矇rault", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-35", "name": "Ille-et-Vilaine", "parent": "BRE", "type": "Metropolitan department" }, { "code": "FR-36", "name": "Indre", "parent": "CVL", "type": "Metropolitan department" }, { "code": "FR-37", "name": "Indre-et-Loire", "parent": "CVL", "type": "Metropolitan department" }, { "code": "FR-38", "name": "Is癡re", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-39", "name": "Jura", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-40", "name": "Landes", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-41", "name": "Loir-et-Cher", "parent": "CVL", "type": "Metropolitan department" }, { "code": "FR-42", "name": "Loire", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-43", "name": "Haute-Loire", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-44", "name": "Loire-Atlantique", "parent": "PDL", "type": "Metropolitan department" }, { "code": "FR-45", "name": "Loiret", "parent": "CVL", "type": "Metropolitan department" }, { "code": "FR-46", "name": "Lot", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-47", "name": "Lot-et-Garonne", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-48", "name": "Loz癡re", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-49", "name": "Maine-et-Loire", "parent": "PDL", "type": "Metropolitan department" }, { "code": "FR-50", "name": "Manche", "parent": "NOR", "type": "Metropolitan department" }, { "code": "FR-51", "name": "Marne", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-52", "name": "Haute-Marne", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-53", "name": "Mayenne", "parent": "PDL", "type": "Metropolitan department" }, { "code": "FR-54", "name": "Meurthe-et-Moselle", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-55", "name": "Meuse", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-56", "name": "Morbihan", "parent": "BRE", "type": "Metropolitan department" }, { "code": "FR-57", "name": "Moselle", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-58", "name": "Ni癡vre", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-59", "name": "Nord", "parent": "HDF", "type": "Metropolitan department" }, { "code": "FR-60", "name": "Oise", "parent": "HDF", "type": "Metropolitan department" }, { "code": "FR-61", "name": "Orne", "parent": "NOR", "type": "Metropolitan department" }, { "code": "FR-62", "name": "Pas-de-Calais", "parent": "HDF", "type": "Metropolitan department" }, { "code": "FR-63", "name": "Puy-de-D繫me", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-64", "name": "Pyr矇n矇es-Atlantiques", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-65", "name": "Hautes-Pyr矇n矇es", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-66", "name": "Pyr矇n矇es-Orientales", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-67", "name": "Bas-Rhin", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-68", "name": "Haut-Rhin", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-69", "name": "Rh繫ne", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-70", "name": "Haute-Sa繫ne", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-71", "name": "Sa繫ne-et-Loire", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-72", "name": "Sarthe", "parent": "PDL", "type": "Metropolitan department" }, { "code": "FR-73", "name": "Savoie", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-74", "name": "Haute-Savoie", "parent": "ARA", "type": "Metropolitan department" }, { "code": "FR-75", "name": "Paris", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-76", "name": "Seine-Maritime", "parent": "NOR", "type": "Metropolitan department" }, { "code": "FR-77", "name": "Seine-et-Marne", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-78", "name": "Yvelines", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-79", "name": "Deux-S癡vres", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-80", "name": "Somme", "parent": "HDF", "type": "Metropolitan department" }, { "code": "FR-81", "name": "Tarn", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-82", "name": "Tarn-et-Garonne", "parent": "OCC", "type": "Metropolitan department" }, { "code": "FR-83", "name": "Var", "parent": "PAC", "type": "Metropolitan department" }, { "code": "FR-84", "name": "Vaucluse", "parent": "PAC", "type": "Metropolitan department" }, { "code": "FR-85", "name": "Vend矇e", "parent": "PDL", "type": "Metropolitan department" }, { "code": "FR-86", "name": "Vienne", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-87", "name": "Haute-Vienne", "parent": "NAQ", "type": "Metropolitan department" }, { "code": "FR-88", "name": "Vosges", "parent": "GES", "type": "Metropolitan department" }, { "code": "FR-89", "name": "Yonne", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-90", "name": "Territoire de Belfort", "parent": "BFC", "type": "Metropolitan department" }, { "code": "FR-91", "name": "Essonne", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-92", "name": "Hauts-de-Seine", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-93", "name": "Seine-Saint-Denis", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-94", "name": "Val-de-Marne", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-95", "name": "Val-d'Oise", "parent": "IDF", "type": "Metropolitan department" }, { "code": "FR-971", "name": "Guadeloupe", "parent": "GP", "type": "Overseas department" }, { "code": "FR-972", "name": "Martinique", "parent": "MQ", "type": "Overseas department" }, { "code": "FR-973", "name": "Guyane (fran癟aise)", "parent": "GF", "type": "Overseas department" }, { "code": "FR-974", "name": "La R矇union", "parent": "RE", "type": "Overseas department" }, { "code": "FR-976", "name": "Mayotte", "parent": "YT", "type": "Overseas department" }, { "code": "FR-ARA", "name": "Auvergne-Rh繫ne-Alpes", "type": "Metropolitan region" }, { "code": "FR-BFC", "name": "Bourgogne-Franche-Comt矇", "type": "Metropolitan region" }, { "code": "FR-BL", "name": "Saint-Barth矇lemy", "type": "Overseas collectivity" }, { "code": "FR-BRE", "name": "Bretagne", "type": "Metropolitan region" }, { "code": "FR-CP", "name": "Clipperton", "type": "Dependency" }, { "code": "FR-CVL", "name": "Centre-Val de Loire", "type": "Metropolitan region" }, { "code": "FR-GES", "name": "Grand-Est", "type": "Metropolitan region" }, { "code": "FR-GF", "name": "Guyane (fran癟aise)", "type": "Overseas region" }, { "code": "FR-GP", "name": "Guadeloupe", "type": "Overseas region" }, { "code": "FR-HDF", "name": "Hauts-de-France", "type": "Metropolitan region" }, { "code": "FR-IDF", "name": "le-de-France", "type": "Metropolitan region" }, { "code": "FR-MF", "name": "Saint-Martin", "type": "Overseas collectivity" }, { "code": "FR-MQ", "name": "Martinique", "type": "Overseas region" }, { "code": "FR-NAQ", "name": "Nouvelle-Aquitaine", "type": "Metropolitan region" }, { "code": "FR-NC", "name": "Nouvelle-Cal矇donie", "type": "Overseas collectivity with special status" }, { "code": "FR-NOR", "name": "Normandie", "type": "Metropolitan region" }, { "code": "FR-OCC", "name": "Occitanie", "type": "Metropolitan region" }, { "code": "FR-PAC", "name": "Provence-Alpes-C繫te-dAzur", "type": "Metropolitan region" }, { "code": "FR-PDL", "name": "Pays-de-la-Loire", "type": "Metropolitan region" }, { "code": "FR-PF", "name": "Polyn矇sie fran癟aise", "type": "Overseas collectivity" }, { "code": "FR-PM", "name": "Saint-Pierre-et-Miquelon", "type": "Overseas collectivity" }, { "code": "FR-RE", "name": "La R矇union", "type": "Overseas region" }, { "code": "FR-TF", "name": "Terres australes fran癟aises", "type": "Overseas territory" }, { "code": "FR-WF", "name": "Wallis-et-Futuna", "type": "Overseas collectivity" }, { "code": "FR-YT", "name": "Mayotte", "type": "Overseas region" }, { "code": "GA-1", "name": "Estuaire", "type": "Province" }, { "code": "GA-2", "name": "Haut-Ogoou矇", "type": "Province" }, { "code": "GA-3", "name": "Moyen-Ogoou矇", "type": "Province" }, { "code": "GA-4", "name": "Ngouni矇", "type": "Province" }, { "code": "GA-5", "name": "Nyanga", "type": "Province" }, { "code": "GA-6", "name": "Ogoou矇-Ivindo", "type": "Province" }, { "code": "GA-7", "name": "Ogoou矇-Lolo", "type": "Province" }, { "code": "GA-8", "name": "Ogoou矇-Maritime", "type": "Province" }, { "code": "GA-9", "name": "Woleu-Ntem", "type": "Province" }, { "code": "GB-ABC", "name": "Armagh City, Banbridge and Craigavon", "type": "District" }, { "code": "GB-ABD", "name": "Aberdeenshire", "type": "Council area" }, { "code": "GB-ABE", "name": "Aberdeen City", "type": "Council area" }, { "code": "GB-AGB", "name": "Argyll and Bute", "type": "Council area" }, { "code": "GB-AGY", "name": "Isle of Anglesey [Sir Ynys M繫n GB-YNM]", "type": "Unitary authority" }, { "code": "GB-AND", "name": "Ards and North Down", "type": "District" }, { "code": "GB-ANN", "name": "Antrim and Newtownabbey", "type": "District" }, { "code": "GB-ANS", "name": "Angus", "type": "Council area" }, { "code": "GB-BAS", "name": "Bath and North East Somerset", "type": "Unitary authority" }, { "code": "GB-BBD", "name": "Blackburn with Darwen", "type": "Unitary authority" }, { "code": "GB-BCP", "name": "Bournemouth, Christchurch and Poole", "type": "Unitary authority" }, { "code": "GB-BDF", "name": "Bedford", "type": "Unitary authority" }, { "code": "GB-BDG", "name": "Barking and Dagenham", "type": "London borough" }, { "code": "GB-BEN", "name": "Brent", "type": "London borough" }, { "code": "GB-BEX", "name": "Bexley", "type": "London borough" }, { "code": "GB-BFS", "name": "Belfast City", "type": "District" }, { "code": "GB-BGE", "name": "Bridgend [Pen-y-bont ar Ogwr GB-POG]", "type": "Unitary authority" }, { "code": "GB-BGW", "name": "Blaenau Gwent", "type": "Unitary authority" }, { "code": "GB-BIR", "name": "Birmingham", "type": "Metropolitan district" }, { "code": "GB-BKM", "name": "Buckinghamshire", "type": "Two-tier county" }, { "code": "GB-BNE", "name": "Barnet", "type": "London borough" }, { "code": "GB-BNH", "name": "Brighton and Hove", "type": "Unitary authority" }, { "code": "GB-BNS", "name": "Barnsley", "type": "Metropolitan district" }, { "code": "GB-BOL", "name": "Bolton", "type": "Metropolitan district" }, { "code": "GB-BPL", "name": "Blackpool", "type": "Unitary authority" }, { "code": "GB-BRC", "name": "Bracknell Forest", "type": "Unitary authority" }, { "code": "GB-BRD", "name": "Bradford", "type": "Metropolitan district" }, { "code": "GB-BRY", "name": "Bromley", "type": "London borough" }, { "code": "GB-BST", "name": "Bristol, City of", "type": "Unitary authority" }, { "code": "GB-BUR", "name": "Bury", "type": "Metropolitan district" }, { "code": "GB-CAM", "name": "Cambridgeshire", "type": "Two-tier county" }, { "code": "GB-CAY", "name": "Caerphilly [Caerffili GB-CAF]", "type": "Unitary authority" }, { "code": "GB-CBF", "name": "Central Bedfordshire", "type": "Unitary authority" }, { "code": "GB-CCG", "name": "Causeway Coast and Glens", "type": "District" }, { "code": "GB-CGN", "name": "Ceredigion [Sir Ceredigion]", "type": "Unitary authority" }, { "code": "GB-CHE", "name": "Cheshire East", "type": "Unitary authority" }, { "code": "GB-CHW", "name": "Cheshire West and Chester", "type": "Unitary authority" }, { "code": "GB-CLD", "name": "Calderdale", "type": "Metropolitan district" }, { "code": "GB-CLK", "name": "Clackmannanshire", "type": "Council area" }, { "code": "GB-CMA", "name": "Cumbria", "type": "Two-tier county" }, { "code": "GB-CMD", "name": "Camden", "type": "London borough" }, { "code": "GB-CMN", "name": "Carmarthenshire [Sir Gaerfyrddin GB-GFY]", "type": "Unitary authority" }, { "code": "GB-CON", "name": "Cornwall", "type": "Unitary authority" }, { "code": "GB-COV", "name": "Coventry", "type": "Metropolitan district" }, { "code": "GB-CRF", "name": "Cardiff [Caerdydd GB-CRD]", "type": "Unitary authority" }, { "code": "GB-CRY", "name": "Croydon", "type": "London borough" }, { "code": "GB-CWY", "name": "Conwy", "type": "Unitary authority" }, { "code": "GB-DAL", "name": "Darlington", "type": "Unitary authority" }, { "code": "GB-DBY", "name": "Derbyshire", "type": "Two-tier county" }, { "code": "GB-DEN", "name": "Denbighshire [Sir Ddinbych GB-DDB]", "type": "Unitary authority" }, { "code": "GB-DER", "name": "Derby", "type": "Unitary authority" }, { "code": "GB-DEV", "name": "Devon", "type": "Two-tier county" }, { "code": "GB-DGY", "name": "Dumfries and Galloway", "type": "Council area" }, { "code": "GB-DNC", "name": "Doncaster", "type": "Metropolitan district" }, { "code": "GB-DND", "name": "Dundee City", "type": "Council area" }, { "code": "GB-DOR", "name": "Dorset", "type": "Two-tier county" }, { "code": "GB-DRS", "name": "Derry and Strabane", "type": "District" }, { "code": "GB-DUD", "name": "Dudley", "type": "Metropolitan district" }, { "code": "GB-DUR", "name": "Durham, County", "type": "Unitary authority" }, { "code": "GB-EAL", "name": "Ealing", "type": "London borough" }, { "code": "GB-EAY", "name": "East Ayrshire", "type": "Council area" }, { "code": "GB-EDH", "name": "Edinburgh, City of", "type": "Council area" }, { "code": "GB-EDU", "name": "East Dunbartonshire", "type": "Council area" }, { "code": "GB-ELN", "name": "East Lothian", "type": "Council area" }, { "code": "GB-ELS", "name": "Eilean Siar", "type": "Council area" }, { "code": "GB-ENF", "name": "Enfield", "type": "London borough" }, { "code": "GB-ERW", "name": "East Renfrewshire", "type": "Council area" }, { "code": "GB-ERY", "name": "East Riding of Yorkshire", "type": "Unitary authority" }, { "code": "GB-ESS", "name": "Essex", "type": "Two-tier county" }, { "code": "GB-ESX", "name": "East Sussex", "type": "Two-tier county" }, { "code": "GB-FAL", "name": "Falkirk", "type": "Council area" }, { "code": "GB-FIF", "name": "Fife", "type": "Council area" }, { "code": "GB-FLN", "name": "Flintshire [Sir y Fflint GB-FFL]", "type": "Unitary authority" }, { "code": "GB-FMO", "name": "Fermanagh and Omagh", "type": "District" }, { "code": "GB-GAT", "name": "Gateshead", "type": "Metropolitan district" }, { "code": "GB-GLG", "name": "Glasgow City", "type": "Council area" }, { "code": "GB-GLS", "name": "Gloucestershire", "type": "Two-tier county" }, { "code": "GB-GRE", "name": "Greenwich", "type": "London borough" }, { "code": "GB-GWN", "name": "Gwynedd", "type": "Unitary authority" }, { "code": "GB-HAL", "name": "Halton", "type": "Unitary authority" }, { "code": "GB-HAM", "name": "Hampshire", "type": "Two-tier county" }, { "code": "GB-HAV", "name": "Havering", "type": "London borough" }, { "code": "GB-HCK", "name": "Hackney", "type": "London borough" }, { "code": "GB-HEF", "name": "Herefordshire", "type": "Unitary authority" }, { "code": "GB-HIL", "name": "Hillingdon", "type": "London borough" }, { "code": "GB-HLD", "name": "Highland", "type": "Council area" }, { "code": "GB-HMF", "name": "Hammersmith and Fulham", "type": "London borough" }, { "code": "GB-HNS", "name": "Hounslow", "type": "London borough" }, { "code": "GB-HPL", "name": "Hartlepool", "type": "Unitary authority" }, { "code": "GB-HRT", "name": "Hertfordshire", "type": "Two-tier county" }, { "code": "GB-HRW", "name": "Harrow", "type": "London borough" }, { "code": "GB-HRY", "name": "Haringey", "type": "London borough" }, { "code": "GB-IOS", "name": "Isles of Scilly", "type": "Unitary authority" }, { "code": "GB-IOW", "name": "Isle of Wight", "type": "Unitary authority" }, { "code": "GB-ISL", "name": "Islington", "type": "London borough" }, { "code": "GB-IVC", "name": "Inverclyde", "type": "Council area" }, { "code": "GB-KEC", "name": "Kensington and Chelsea", "type": "London borough" }, { "code": "GB-KEN", "name": "Kent", "type": "Two-tier county" }, { "code": "GB-KHL", "name": "Kingston upon Hull", "type": "Unitary authority" }, { "code": "GB-KIR", "name": "Kirklees", "type": "Metropolitan district" }, { "code": "GB-KTT", "name": "Kingston upon Thames", "type": "London borough" }, { "code": "GB-KWL", "name": "Knowsley", "type": "Metropolitan district" }, { "code": "GB-LAN", "name": "Lancashire", "type": "Two-tier county" }, { "code": "GB-LBC", "name": "Lisburn and Castlereagh", "type": "District" }, { "code": "GB-LBH", "name": "Lambeth", "type": "London borough" }, { "code": "GB-LCE", "name": "Leicester", "type": "Unitary authority" }, { "code": "GB-LDS", "name": "Leeds", "type": "Metropolitan district" }, { "code": "GB-LEC", "name": "Leicestershire", "type": "Two-tier county" }, { "code": "GB-LEW", "name": "Lewisham", "type": "London borough" }, { "code": "GB-LIN", "name": "Lincolnshire", "type": "Two-tier county" }, { "code": "GB-LIV", "name": "Liverpool", "type": "Metropolitan district" }, { "code": "GB-LND", "name": "London, City of", "type": "City corporation" }, { "code": "GB-LUT", "name": "Luton", "type": "Unitary authority" }, { "code": "GB-MAN", "name": "Manchester", "type": "Metropolitan district" }, { "code": "GB-MDB", "name": "Middlesbrough", "type": "Unitary authority" }, { "code": "GB-MDW", "name": "Medway", "type": "Unitary authority" }, { "code": "GB-MEA", "name": "Mid and East Antrim", "type": "District" }, { "code": "GB-MIK", "name": "Milton Keynes", "type": "Unitary authority" }, { "code": "GB-MLN", "name": "Midlothian", "type": "Council area" }, { "code": "GB-MON", "name": "Monmouthshire [Sir Fynwy GB-FYN]", "type": "Unitary authority" }, { "code": "GB-MRT", "name": "Merton", "type": "London borough" }, { "code": "GB-MRY", "name": "Moray", "type": "Council area" }, { "code": "GB-MTY", "name": "Merthyr Tydfil [Merthyr Tudful GB-MTU]", "type": "Unitary authority" }, { "code": "GB-MUL", "name": "Mid-Ulster", "type": "District" }, { "code": "GB-NAY", "name": "North Ayrshire", "type": "Council area" }, { "code": "GB-NBL", "name": "Northumberland", "type": "Unitary authority" }, { "code": "GB-NEL", "name": "North East Lincolnshire", "type": "Unitary authority" }, { "code": "GB-NET", "name": "Newcastle upon Tyne", "type": "Metropolitan district" }, { "code": "GB-NFK", "name": "Norfolk", "type": "Two-tier county" }, { "code": "GB-NGM", "name": "Nottingham", "type": "Unitary authority" }, { "code": "GB-NLK", "name": "North Lanarkshire", "type": "Council area" }, { "code": "GB-NLN", "name": "North Lincolnshire", "type": "Unitary authority" }, { "code": "GB-NMD", "name": "Newry, Mourne and Down", "type": "District" }, { "code": "GB-NSM", "name": "North Somerset", "type": "Unitary authority" }, { "code": "GB-NTH", "name": "Northamptonshire", "type": "Two-tier county" }, { "code": "GB-NTL", "name": "Neath Port Talbot [Castell-nedd Port Talbot GB-CTL]", "type": "Unitary authority" }, { "code": "GB-NTT", "name": "Nottinghamshire", "type": "Two-tier county" }, { "code": "GB-NTY", "name": "North Tyneside", "type": "Metropolitan district" }, { "code": "GB-NWM", "name": "Newham", "type": "London borough" }, { "code": "GB-NWP", "name": "Newport [Casnewydd GB-CNW]", "type": "Unitary authority" }, { "code": "GB-NYK", "name": "North Yorkshire", "type": "Two-tier county" }, { "code": "GB-OLD", "name": "Oldham", "type": "Metropolitan district" }, { "code": "GB-ORK", "name": "Orkney Islands", "type": "Council area" }, { "code": "GB-OXF", "name": "Oxfordshire", "type": "Two-tier county" }, { "code": "GB-PEM", "name": "Pembrokeshire [Sir Benfro GB-BNF]", "type": "Unitary authority" }, { "code": "GB-PKN", "name": "Perth and Kinross", "type": "Council area" }, { "code": "GB-PLY", "name": "Plymouth", "type": "Unitary authority" }, { "code": "GB-POR", "name": "Portsmouth", "type": "Unitary authority" }, { "code": "GB-POW", "name": "Powys", "type": "Unitary authority" }, { "code": "GB-PTE", "name": "Peterborough", "type": "Unitary authority" }, { "code": "GB-RCC", "name": "Redcar and Cleveland", "type": "Unitary authority" }, { "code": "GB-RCH", "name": "Rochdale", "type": "Metropolitan district" }, { "code": "GB-RCT", "name": "Rhondda Cynon Taff [Rhondda CynonTaf]", "type": "Unitary authority" }, { "code": "GB-RDB", "name": "Redbridge", "type": "London borough" }, { "code": "GB-RDG", "name": "Reading", "type": "Unitary authority" }, { "code": "GB-RFW", "name": "Renfrewshire", "type": "Council area" }, { "code": "GB-RIC", "name": "Richmond upon Thames", "type": "London borough" }, { "code": "GB-ROT", "name": "Rotherham", "type": "Metropolitan district" }, { "code": "GB-RUT", "name": "Rutland", "type": "Unitary authority" }, { "code": "GB-SAW", "name": "Sandwell", "type": "Metropolitan district" }, { "code": "GB-SAY", "name": "South Ayrshire", "type": "Council area" }, { "code": "GB-SCB", "name": "Scottish Borders", "type": "Council area" }, { "code": "GB-SFK", "name": "Suffolk", "type": "Two-tier county" }, { "code": "GB-SFT", "name": "Sefton", "type": "Metropolitan district" }, { "code": "GB-SGC", "name": "South Gloucestershire", "type": "Unitary authority" }, { "code": "GB-SHF", "name": "Sheffield", "type": "Metropolitan district" }, { "code": "GB-SHN", "name": "St. Helens", "type": "Metropolitan district" }, { "code": "GB-SHR", "name": "Shropshire", "type": "Unitary authority" }, { "code": "GB-SKP", "name": "Stockport", "type": "Metropolitan district" }, { "code": "GB-SLF", "name": "Salford", "type": "Metropolitan district" }, { "code": "GB-SLG", "name": "Slough", "type": "Unitary authority" }, { "code": "GB-SLK", "name": "South Lanarkshire", "type": "Council area" }, { "code": "GB-SND", "name": "Sunderland", "type": "Metropolitan district" }, { "code": "GB-SOL", "name": "Solihull", "type": "Metropolitan district" }, { "code": "GB-SOM", "name": "Somerset", "type": "Two-tier county" }, { "code": "GB-SOS", "name": "Southend-on-Sea", "type": "Unitary authority" }, { "code": "GB-SRY", "name": "Surrey", "type": "Two-tier county" }, { "code": "GB-STE", "name": "Stoke-on-Trent", "type": "Unitary authority" }, { "code": "GB-STG", "name": "Stirling", "type": "Council area" }, { "code": "GB-STH", "name": "Southampton", "type": "Unitary authority" }, { "code": "GB-STN", "name": "Sutton", "type": "London borough" }, { "code": "GB-STS", "name": "Staffordshire", "type": "Two-tier county" }, { "code": "GB-STT", "name": "Stockton-on-Tees", "type": "Unitary authority" }, { "code": "GB-STY", "name": "South Tyneside", "type": "Metropolitan district" }, { "code": "GB-SWA", "name": "Swansea [Abertawe GB-ATA]", "type": "Unitary authority" }, { "code": "GB-SWD", "name": "Swindon", "type": "Unitary authority" }, { "code": "GB-SWK", "name": "Southwark", "type": "London borough" }, { "code": "GB-TAM", "name": "Tameside", "type": "Metropolitan district" }, { "code": "GB-TFW", "name": "Telford and Wrekin", "type": "Unitary authority" }, { "code": "GB-THR", "name": "Thurrock", "type": "Unitary authority" }, { "code": "GB-TOB", "name": "Torbay", "type": "Unitary authority" }, { "code": "GB-TOF", "name": "Torfaen [Tor-faen]", "type": "Unitary authority" }, { "code": "GB-TRF", "name": "Trafford", "type": "Metropolitan district" }, { "code": "GB-TWH", "name": "Tower Hamlets", "type": "London borough" }, { "code": "GB-VGL", "name": "Vale of Glamorgan, The [Bro Morgannwg GB-BMG]", "type": "Unitary authority" }, { "code": "GB-WAR", "name": "Warwickshire", "type": "Two-tier county" }, { "code": "GB-WBK", "name": "West Berkshire", "type": "Unitary authority" }, { "code": "GB-WDU", "name": "West Dunbartonshire", "type": "Council area" }, { "code": "GB-WFT", "name": "Waltham Forest", "type": "London borough" }, { "code": "GB-WGN", "name": "Wigan", "type": "Metropolitan district" }, { "code": "GB-WIL", "name": "Wiltshire", "type": "Unitary authority" }, { "code": "GB-WKF", "name": "Wakefield", "type": "Metropolitan district" }, { "code": "GB-WLL", "name": "Walsall", "type": "Metropolitan district" }, { "code": "GB-WLN", "name": "West Lothian", "type": "Council area" }, { "code": "GB-WLV", "name": "Wolverhampton", "type": "Metropolitan district" }, { "code": "GB-WND", "name": "Wandsworth", "type": "London borough" }, { "code": "GB-WNM", "name": "Windsor and Maidenhead", "type": "Unitary authority" }, { "code": "GB-WOK", "name": "Wokingham", "type": "Unitary authority" }, { "code": "GB-WOR", "name": "Worcestershire", "type": "Two-tier county" }, { "code": "GB-WRL", "name": "Wirral", "type": "Metropolitan district" }, { "code": "GB-WRT", "name": "Warrington", "type": "Unitary authority" }, { "code": "GB-WRX", "name": "Wrexham [Wrecsam GB-WRC]", "type": "Unitary authority" }, { "code": "GB-WSM", "name": "Westminster", "type": "London borough" }, { "code": "GB-WSX", "name": "West Sussex", "type": "Two-tier county" }, { "code": "GB-YOR", "name": "York", "type": "Unitary authority" }, { "code": "GB-ZET", "name": "Shetland Islands", "type": "Council area" }, { "code": "GD-01", "name": "Saint Andrew", "type": "Parish" }, { "code": "GD-02", "name": "Saint David", "type": "Parish" }, { "code": "GD-03", "name": "Saint George", "type": "Parish" }, { "code": "GD-04", "name": "Saint John", "type": "Parish" }, { "code": "GD-05", "name": "Saint Mark", "type": "Parish" }, { "code": "GD-06", "name": "Saint Patrick", "type": "Parish" }, { "code": "GD-10", "name": "Southern Grenadine Islands", "type": "Dependency" }, { "code": "GE-AB", "name": "Abkhazia", "type": "Autonomous republic" }, { "code": "GE-AJ", "name": "Ajaria", "type": "Autonomous republic" }, { "code": "GE-GU", "name": "Guria", "type": "Region" }, { "code": "GE-IM", "name": "Imereti", "type": "Region" }, { "code": "GE-KA", "name": "K'akheti", "type": "Region" }, { "code": "GE-KK", "name": "Kvemo Kartli", "type": "Region" }, { "code": "GE-MM", "name": "Mtskheta-Mtianeti", "type": "Region" }, { "code": "GE-RL", "name": "Rach'a-Lechkhumi-Kvemo Svaneti", "type": "Region" }, { "code": "GE-SJ", "name": "Samtskhe-Javakheti", "type": "Region" }, { "code": "GE-SK", "name": "Shida Kartli", "type": "Region" }, { "code": "GE-SZ", "name": "Samegrelo-Zemo Svaneti", "type": "Region" }, { "code": "GE-TB", "name": "Tbilisi", "type": "City" }, { "code": "GH-AA", "name": "Greater Accra", "type": "Region" }, { "code": "GH-AF", "name": "Ahafo", "type": "Region" }, { "code": "GH-AH", "name": "Ashanti", "type": "Region" }, { "code": "GH-BE", "name": "Bono East", "type": "Region" }, { "code": "GH-BO", "name": "Bono", "type": "Region" }, { "code": "GH-CP", "name": "Central", "type": "Region" }, { "code": "GH-EP", "name": "Eastern", "type": "Region" }, { "code": "GH-NE", "name": "North East", "type": "Region" }, { "code": "GH-NP", "name": "Northern", "type": "Region" }, { "code": "GH-OT", "name": "Oti", "type": "Region" }, { "code": "GH-SV", "name": "Savannah", "type": "Region" }, { "code": "GH-TV", "name": "Volta", "type": "Region" }, { "code": "GH-UE", "name": "Upper East", "type": "Region" }, { "code": "GH-UW", "name": "Upper West", "type": "Region" }, { "code": "GH-WN", "name": "Western North", "type": "Region" }, { "code": "GH-WP", "name": "Western", "type": "Region" }, { "code": "GL-AV", "name": "Avannaata Kommunia", "type": "Municipality" }, { "code": "GL-KU", "name": "Kommune Kujalleq", "type": "Municipality" }, { "code": "GL-QE", "name": "Qeqqata Kommunia", "type": "Municipality" }, { "code": "GL-QT", "name": "Kommune Qeqertalik", "type": "Municipality" }, { "code": "GL-SM", "name": "Kommuneqarfik Sermersooq", "type": "Municipality" }, { "code": "GM-B", "name": "Banjul", "type": "City" }, { "code": "GM-L", "name": "Lower River", "type": "Division" }, { "code": "GM-M", "name": "Central River", "type": "Division" }, { "code": "GM-N", "name": "North Bank", "type": "Division" }, { "code": "GM-U", "name": "Upper River", "type": "Division" }, { "code": "GM-W", "name": "Western", "type": "Division" }, { "code": "GN-B", "name": "Bok矇", "type": "Administrative region" }, { "code": "GN-BE", "name": "Beyla", "parent": "N", "type": "Prefecture" }, { "code": "GN-BF", "name": "Boffa", "parent": "B", "type": "Prefecture" }, { "code": "GN-BK", "name": "Bok矇", "parent": "B", "type": "Prefecture" }, { "code": "GN-C", "name": "Conakry", "type": "Governorate" }, { "code": "GN-CO", "name": "Coyah", "parent": "D", "type": "Prefecture" }, { "code": "GN-D", "name": "Kindia", "type": "Administrative region" }, { "code": "GN-DB", "name": "Dabola", "parent": "F", "type": "Prefecture" }, { "code": "GN-DI", "name": "Dinguiraye", "parent": "F", "type": "Prefecture" }, { "code": "GN-DL", "name": "Dalaba", "parent": "M", "type": "Prefecture" }, { "code": "GN-DU", "name": "Dubr矇ka", "parent": "D", "type": "Prefecture" }, { "code": "GN-F", "name": "Faranah", "type": "Administrative region" }, { "code": "GN-FA", "name": "Faranah", "parent": "F", "type": "Prefecture" }, { "code": "GN-FO", "name": "For矇cariah", "parent": "D", "type": "Prefecture" }, { "code": "GN-FR", "name": "Fria", "parent": "B", "type": "Prefecture" }, { "code": "GN-GA", "name": "Gaoual", "parent": "B", "type": "Prefecture" }, { "code": "GN-GU", "name": "Gu矇k矇dou", "parent": "N", "type": "Prefecture" }, { "code": "GN-K", "name": "Kankan", "type": "Administrative region" }, { "code": "GN-KA", "name": "Kankan", "parent": "K", "type": "Prefecture" }, { "code": "GN-KB", "name": "Koubia", "parent": "L", "type": "Prefecture" }, { "code": "GN-KD", "name": "Kindia", "parent": "D", "type": "Prefecture" }, { "code": "GN-KE", "name": "K矇rouan矇", "parent": "K", "type": "Prefecture" }, { "code": "GN-KN", "name": "Koundara", "parent": "B", "type": "Prefecture" }, { "code": "GN-KO", "name": "Kouroussa", "parent": "K", "type": "Prefecture" }, { "code": "GN-KS", "name": "Kissidougou", "parent": "F", "type": "Prefecture" }, { "code": "GN-L", "name": "Lab矇", "type": "Administrative region" }, { "code": "GN-LA", "name": "Lab矇", "parent": "L", "type": "Prefecture" }, { "code": "GN-LE", "name": "L矇louma", "parent": "L", "type": "Prefecture" }, { "code": "GN-LO", "name": "Lola", "parent": "N", "type": "Prefecture" }, { "code": "GN-M", "name": "Mamou", "type": "Administrative region" }, { "code": "GN-MC", "name": "Macenta", "parent": "N", "type": "Prefecture" }, { "code": "GN-MD", "name": "Mandiana", "parent": "K", "type": "Prefecture" }, { "code": "GN-ML", "name": "Mali", "parent": "L", "type": "Prefecture" }, { "code": "GN-MM", "name": "Mamou", "parent": "M", "type": "Prefecture" }, { "code": "GN-N", "name": "Nz矇r矇kor矇", "type": "Administrative region" }, { "code": "GN-NZ", "name": "Nz矇r矇kor矇", "parent": "N", "type": "Prefecture" }, { "code": "GN-PI", "name": "Pita", "parent": "M", "type": "Prefecture" }, { "code": "GN-SI", "name": "Siguiri", "parent": "K", "type": "Prefecture" }, { "code": "GN-TE", "name": "T矇lim矇l矇", "parent": "D", "type": "Prefecture" }, { "code": "GN-TO", "name": "Tougu矇", "parent": "L", "type": "Prefecture" }, { "code": "GN-YO", "name": "Yomou", "parent": "N", "type": "Prefecture" }, { "code": "GQ-AN", "name": "Annobon", "parent": "I", "type": "Province" }, { "code": "GQ-BN", "name": "Bioko Nord", "parent": "I", "type": "Province" }, { "code": "GQ-BS", "name": "Bioko Sud", "parent": "I", "type": "Province" }, { "code": "GQ-C", "name": "Regi瓊o Continental", "type": "Region" }, { "code": "GQ-CS", "name": "Centro Sud", "parent": "C", "type": "Province" }, { "code": "GQ-DJ", "name": "Djibloho", "parent": "C", "type": "Province" }, { "code": "GQ-I", "name": "Regi瓊o Insular", "type": "Region" }, { "code": "GQ-KN", "name": "Ki矇-Ntem", "parent": "C", "type": "Province" }, { "code": "GQ-LI", "name": "Litoral", "parent": "C", "type": "Province" }, { "code": "GQ-WN", "name": "Wele-Nzas", "parent": "C", "type": "Province" }, { "code": "GR-69", "name": "gion ros", "type": "Self-governed part" }, { "code": "GR-A", "name": "Anatolik穩 Makedon穩a kai Thr獺ki", "type": "Administrative region" }, { "code": "GR-B", "name": "Kentrik穩 Makedon穩a", "type": "Administrative region" }, { "code": "GR-C", "name": "Dytik穩 Makedon穩a", "type": "Administrative region" }, { "code": "GR-D", "name": "peiros", "type": "Administrative region" }, { "code": "GR-E", "name": "Thessal穩a", "type": "Administrative region" }, { "code": "GR-F", "name": "Ion穩a N穩sia", "type": "Administrative region" }, { "code": "GR-G", "name": "Dytik穩 Ell獺da", "type": "Administrative region" }, { "code": "GR-H", "name": "Stere獺 Ell獺da", "type": "Administrative region" }, { "code": "GR-I", "name": "Attik穩", "type": "Administrative region" }, { "code": "GR-J", "name": "Pelop籀nnisos", "type": "Administrative region" }, { "code": "GR-K", "name": "V籀reio Aiga穩o", "type": "Administrative region" }, { "code": "GR-L", "name": "N籀tio Aiga穩o", "type": "Administrative region" }, { "code": "GR-M", "name": "Kr穩ti", "type": "Administrative region" }, { "code": "GT-AV", "name": "Alta Verapaz", "type": "Department" }, { "code": "GT-BV", "name": "Baja Verapaz", "type": "Department" }, { "code": "GT-CM", "name": "Chimaltenango", "type": "Department" }, { "code": "GT-CQ", "name": "Chiquimula", "type": "Department" }, { "code": "GT-ES", "name": "Escuintla", "type": "Department" }, { "code": "GT-GU", "name": "Guatemala", "type": "Department" }, { "code": "GT-HU", "name": "Huehuetenango", "type": "Department" }, { "code": "GT-IZ", "name": "Izabal", "type": "Department" }, { "code": "GT-JA", "name": "Jalapa", "type": "Department" }, { "code": "GT-JU", "name": "Jutiapa", "type": "Department" }, { "code": "GT-PE", "name": "Pet矇n", "type": "Department" }, { "code": "GT-PR", "name": "El Progreso", "type": "Department" }, { "code": "GT-QC", "name": "Quich矇", "type": "Department" }, { "code": "GT-QZ", "name": "Quetzaltenango", "type": "Department" }, { "code": "GT-RE", "name": "Retalhuleu", "type": "Department" }, { "code": "GT-SA", "name": "Sacatep矇quez", "type": "Department" }, { "code": "GT-SM", "name": "San Marcos", "type": "Department" }, { "code": "GT-SO", "name": "Solol獺", "type": "Department" }, { "code": "GT-SR", "name": "Santa Rosa", "type": "Department" }, { "code": "GT-SU", "name": "Suchitep矇quez", "type": "Department" }, { "code": "GT-TO", "name": "Totonicap獺n", "type": "Department" }, { "code": "GT-ZA", "name": "Zacapa", "type": "Department" }, { "code": "GW-BA", "name": "Bafat獺", "parent": "L", "type": "Region" }, { "code": "GW-BL", "name": "Bolama / Bijag籀s", "parent": "S", "type": "Region" }, { "code": "GW-BM", "name": "Biombo", "parent": "N", "type": "Region" }, { "code": "GW-BS", "name": "Bissau", "type": "Autonomous sector" }, { "code": "GW-CA", "name": "Cacheu", "parent": "N", "type": "Region" }, { "code": "GW-GA", "name": "Gab繳", "parent": "L", "type": "Region" }, { "code": "GW-L", "name": "Leste", "type": "Province" }, { "code": "GW-N", "name": "Norte", "type": "Province" }, { "code": "GW-OI", "name": "Oio", "parent": "N", "type": "Region" }, { "code": "GW-QU", "name": "Quinara", "parent": "S", "type": "Region" }, { "code": "GW-S", "name": "Sul", "type": "Province" }, { "code": "GW-TO", "name": "Tombali", "parent": "S", "type": "Region" }, { "code": "GY-BA", "name": "Barima-Waini", "type": "Region" }, { "code": "GY-CU", "name": "Cuyuni-Mazaruni", "type": "Region" }, { "code": "GY-DE", "name": "Demerara-Mahaica", "type": "Region" }, { "code": "GY-EB", "name": "East Berbice-Corentyne", "type": "Region" }, { "code": "GY-ES", "name": "Essequibo Islands-West Demerara", "type": "Region" }, { "code": "GY-MA", "name": "Mahaica-Berbice", "type": "Region" }, { "code": "GY-PM", "name": "Pomeroon-Supenaam", "type": "Region" }, { "code": "GY-PT", "name": "Potaro-Siparuni", "type": "Region" }, { "code": "GY-UD", "name": "Upper Demerara-Berbice", "type": "Region" }, { "code": "GY-UT", "name": "Upper Takutu-Upper Essequibo", "type": "Region" }, { "code": "HN-AT", "name": "Atl獺ntida", "type": "Department" }, { "code": "HN-CH", "name": "Choluteca", "type": "Department" }, { "code": "HN-CL", "name": "Col籀n", "type": "Department" }, { "code": "HN-CM", "name": "Comayagua", "type": "Department" }, { "code": "HN-CP", "name": "Cop獺n", "type": "Department" }, { "code": "HN-CR", "name": "Cort矇s", "type": "Department" }, { "code": "HN-EP", "name": "El Para穩so", "type": "Department" }, { "code": "HN-FM", "name": "Francisco Moraz獺n", "type": "Department" }, { "code": "HN-GD", "name": "Gracias a Dios", "type": "Department" }, { "code": "HN-IB", "name": "Islas de la Bah穩a", "type": "Department" }, { "code": "HN-IN", "name": "Intibuc獺", "type": "Department" }, { "code": "HN-LE", "name": "Lempira", "type": "Department" }, { "code": "HN-LP", "name": "La Paz", "type": "Department" }, { "code": "HN-OC", "name": "Ocotepeque", "type": "Department" }, { "code": "HN-OL", "name": "Olancho", "type": "Department" }, { "code": "HN-SB", "name": "Santa B獺rbara", "type": "Department" }, { "code": "HN-VA", "name": "Valle", "type": "Department" }, { "code": "HN-YO", "name": "Yoro", "type": "Department" }, { "code": "HR-01", "name": "Zagrebaka 鱉upanija", "type": "County" }, { "code": "HR-02", "name": "Krapinsko-zagorska 鱉upanija", "type": "County" }, { "code": "HR-03", "name": "Sisako-moslavaka 鱉upanija", "type": "County" }, { "code": "HR-04", "name": "Karlovaka 鱉upanija", "type": "County" }, { "code": "HR-05", "name": "Vara鱉dinska 鱉upanija", "type": "County" }, { "code": "HR-06", "name": "Koprivniko-kri鱉evaka 鱉upanija", "type": "County" }, { "code": "HR-07", "name": "Bjelovarsko-bilogorska 鱉upanija", "type": "County" }, { "code": "HR-08", "name": "Primorsko-goranska 鱉upanija", "type": "County" }, { "code": "HR-09", "name": "Liko-senjska 鱉upanija", "type": "County" }, { "code": "HR-10", "name": "Virovitiko-podravska 鱉upanija", "type": "County" }, { "code": "HR-11", "name": "Po鱉e禳ko-slavonska 鱉upanija", "type": "County" }, { "code": "HR-12", "name": "Brodsko-posavska 鱉upanija", "type": "County" }, { "code": "HR-13", "name": "Zadarska 鱉upanija", "type": "County" }, { "code": "HR-14", "name": "Osjeko-baranjska 鱉upanija", "type": "County" }, { "code": "HR-15", "name": "ibensko-kninska 鱉upanija", "type": "County" }, { "code": "HR-16", "name": "Vukovarsko-srijemska 鱉upanija", "type": "County" }, { "code": "HR-17", "name": "Splitsko-dalmatinska 鱉upanija", "type": "County" }, { "code": "HR-18", "name": "Istarska 鱉upanija", "type": "County" }, { "code": "HR-19", "name": "Dubrovako-neretvanska 鱉upanija", "type": "County" }, { "code": "HR-20", "name": "Meimurska 鱉upanija", "type": "County" }, { "code": "HR-21", "name": "Grad Zagreb", "type": "City" }, { "code": "HT-AR", "name": "Artibonite", "type": "Department" }, { "code": "HT-CE", "name": "Centre", "type": "Department" }, { "code": "HT-GA", "name": "Grandans", "type": "Department" }, { "code": "HT-ND", "name": "Nord", "type": "Department" }, { "code": "HT-NE", "name": "Nord-Est", "type": "Department" }, { "code": "HT-NI", "name": "Nip", "type": "Department" }, { "code": "HT-NO", "name": "Nord-Ouest", "type": "Department" }, { "code": "HT-OU", "name": "Lw癡s", "type": "Department" }, { "code": "HT-SD", "name": "Sid", "type": "Department" }, { "code": "HT-SE", "name": "Sid癡s", "type": "Department" }, { "code": "HU-BA", "name": "Baranya", "type": "County" }, { "code": "HU-BC", "name": "B矇k矇scsaba", "type": "City with county rights" }, { "code": "HU-BE", "name": "B矇k矇s", "type": "County" }, { "code": "HU-BK", "name": "B獺cs-Kiskun", "type": "County" }, { "code": "HU-BU", "name": "Budapest", "type": "Capital city" }, { "code": "HU-BZ", "name": "Borsod-Aba繳j-Zempl矇n", "type": "County" }, { "code": "HU-CS", "name": "Csongr獺d", "type": "County" }, { "code": "HU-DE", "name": "Debrecen", "type": "City with county rights" }, { "code": "HU-DU", "name": "Duna繳jv獺ros", "type": "City with county rights" }, { "code": "HU-EG", "name": "Eger", "type": "City with county rights" }, { "code": "HU-ER", "name": "rd", "type": "City with county rights" }, { "code": "HU-FE", "name": "Fej矇r", "type": "County" }, { "code": "HU-GS", "name": "Gyr-Moson-Sopron", "type": "County" }, { "code": "HU-GY", "name": "Gyr", "type": "City with county rights" }, { "code": "HU-HB", "name": "Hajd繳-Bihar", "type": "County" }, { "code": "HU-HE", "name": "Heves", "type": "County" }, { "code": "HU-HV", "name": "H籀dmezv獺s獺rhely", "type": "City with county rights" }, { "code": "HU-JN", "name": "J獺sz-Nagykun-Szolnok", "type": "County" }, { "code": "HU-KE", "name": "Kom獺rom-Esztergom", "type": "County" }, { "code": "HU-KM", "name": "Kecskem矇t", "type": "City with county rights" }, { "code": "HU-KV", "name": "Kaposv獺r", "type": "City with county rights" }, { "code": "HU-MI", "name": "Miskolc", "type": "City with county rights" }, { "code": "HU-NK", "name": "Nagykanizsa", "type": "City with county rights" }, { "code": "HU-NO", "name": "N籀gr獺d", "type": "County" }, { "code": "HU-NY", "name": "Ny穩regyh獺za", "type": "City with county rights" }, { "code": "HU-PE", "name": "Pest", "type": "County" }, { "code": "HU-PS", "name": "P矇cs", "type": "City with county rights" }, { "code": "HU-SD", "name": "Szeged", "type": "City with county rights" }, { "code": "HU-SF", "name": "Sz矇kesfeh矇rv獺r", "type": "City with county rights" }, { "code": "HU-SH", "name": "Szombathely", "type": "City with county rights" }, { "code": "HU-SK", "name": "Szolnok", "type": "City with county rights" }, { "code": "HU-SN", "name": "Sopron", "type": "City with county rights" }, { "code": "HU-SO", "name": "Somogy", "type": "County" }, { "code": "HU-SS", "name": "Szeksz獺rd", "type": "City with county rights" }, { "code": "HU-ST", "name": "Salg籀tarj獺n", "type": "City with county rights" }, { "code": "HU-SZ", "name": "Szabolcs-Szatm獺r-Bereg", "type": "County" }, { "code": "HU-TB", "name": "Tatab獺nya", "type": "City with county rights" }, { "code": "HU-TO", "name": "Tolna", "type": "County" }, { "code": "HU-VA", "name": "Vas", "type": "County" }, { "code": "HU-VE", "name": "Veszpr矇m", "type": "County" }, { "code": "HU-VM", "name": "Veszpr矇m", "type": "City with county rights" }, { "code": "HU-ZA", "name": "Zala", "type": "County" }, { "code": "HU-ZE", "name": "Zalaegerszeg", "type": "City with county rights" }, { "code": "ID-AC", "name": "Aceh", "parent": "SM", "type": "Province" }, { "code": "ID-BA", "name": "Bali", "parent": "NU", "type": "Province" }, { "code": "ID-BB", "name": "Kepulauan Bangka Belitung", "parent": "SM", "type": "Province" }, { "code": "ID-BE", "name": "Bengkulu", "parent": "SM", "type": "Province" }, { "code": "ID-BT", "name": "Banten", "parent": "JW", "type": "Province" }, { "code": "ID-GO", "name": "Gorontalo", "parent": "SL", "type": "Province" }, { "code": "ID-JA", "name": "Jambi", "parent": "SM", "type": "Province" }, { "code": "ID-JB", "name": "Jawa Barat", "parent": "JW", "type": "Province" }, { "code": "ID-JI", "name": "Jawa Timur", "parent": "JW", "type": "Province" }, { "code": "ID-JK", "name": "Jakarta Raya", "parent": "JW", "type": "Capital district" }, { "code": "ID-JT", "name": "Jawa Tengah", "parent": "JW", "type": "Province" }, { "code": "ID-JW", "name": "Jawa", "type": "Geographical unit" }, { "code": "ID-KA", "name": "Kalimantan", "type": "Geographical unit" }, { "code": "ID-KB", "name": "Kalimantan Barat", "parent": "KA", "type": "Province" }, { "code": "ID-KI", "name": "Kalimantan Timur", "parent": "KA", "type": "Province" }, { "code": "ID-KR", "name": "Kepulauan Riau", "parent": "SM", "type": "Province" }, { "code": "ID-KS", "name": "Kalimantan Selatan", "parent": "KA", "type": "Province" }, { "code": "ID-KT", "name": "Kalimantan Tengah", "parent": "KA", "type": "Province" }, { "code": "ID-KU", "name": "Kalimantan Utara", "parent": "KA", "type": "Province" }, { "code": "ID-LA", "name": "Lampung", "parent": "SM", "type": "Province" }, { "code": "ID-MA", "name": "Maluku", "parent": "ML", "type": "Province" }, { "code": "ID-ML", "name": "Maluku", "type": "Geographical unit" }, { "code": "ID-MU", "name": "Maluku Utara", "parent": "ML", "type": "Province" }, { "code": "ID-NB", "name": "Nusa Tenggara Barat", "parent": "NU", "type": "Province" }, { "code": "ID-NT", "name": "Nusa Tenggara Timur", "parent": "NU", "type": "Province" }, { "code": "ID-NU", "name": "Nusa Tenggara", "type": "Geographical unit" }, { "code": "ID-PA", "name": "Papua", "parent": "PP", "type": "Province" }, { "code": "ID-PB", "name": "Papua Barat", "parent": "PP", "type": "Province" }, { "code": "ID-PP", "name": "Papua", "type": "Geographical unit" }, { "code": "ID-RI", "name": "Riau", "parent": "SM", "type": "Province" }, { "code": "ID-SA", "name": "Sulawesi Utara", "parent": "SL", "type": "Province" }, { "code": "ID-SB", "name": "Sumatera Barat", "parent": "SM", "type": "Province" }, { "code": "ID-SG", "name": "Sulawesi Tenggara", "parent": "SL", "type": "Province" }, { "code": "ID-SL", "name": "Sulawesi", "type": "Geographical unit" }, { "code": "ID-SM", "name": "Sumatera", "type": "Geographical unit" }, { "code": "ID-SN", "name": "Sulawesi Selatan", "parent": "SL", "type": "Province" }, { "code": "ID-SR", "name": "Sulawesi Barat", "parent": "SL", "type": "Province" }, { "code": "ID-SS", "name": "Sumatera Selatan", "parent": "SM", "type": "Province" }, { "code": "ID-ST", "name": "Sulawesi Tengah", "parent": "SL", "type": "Province" }, { "code": "ID-SU", "name": "Sumatera Utara", "parent": "SM", "type": "Province" }, { "code": "ID-YO", "name": "Yogyakarta", "parent": "JW", "type": "Special region" }, { "code": "IE-C", "name": "Connaught", "type": "Province" }, { "code": "IE-CE", "name": "Clare", "parent": "M", "type": "County" }, { "code": "IE-CN", "name": "Cavan", "parent": "U", "type": "County" }, { "code": "IE-CO", "name": "Cork", "parent": "M", "type": "County" }, { "code": "IE-CW", "name": "Carlow", "parent": "L", "type": "County" }, { "code": "IE-D", "name": "Dublin", "parent": "L", "type": "County" }, { "code": "IE-DL", "name": "Donegal", "parent": "U", "type": "County" }, { "code": "IE-G", "name": "Galway", "parent": "C", "type": "County" }, { "code": "IE-KE", "name": "Kildare", "parent": "L", "type": "County" }, { "code": "IE-KK", "name": "Kilkenny", "parent": "L", "type": "County" }, { "code": "IE-KY", "name": "Kerry", "parent": "M", "type": "County" }, { "code": "IE-L", "name": "Leinster", "type": "Province" }, { "code": "IE-LD", "name": "Longford", "parent": "L", "type": "County" }, { "code": "IE-LH", "name": "Louth", "parent": "L", "type": "County" }, { "code": "IE-LK", "name": "Limerick", "parent": "M", "type": "County" }, { "code": "IE-LM", "name": "Leitrim", "parent": "C", "type": "County" }, { "code": "IE-LS", "name": "Laois", "parent": "L", "type": "County" }, { "code": "IE-M", "name": "Munster", "type": "Province" }, { "code": "IE-MH", "name": "Meath", "parent": "L", "type": "County" }, { "code": "IE-MN", "name": "Monaghan", "parent": "U", "type": "County" }, { "code": "IE-MO", "name": "Mayo", "parent": "C", "type": "County" }, { "code": "IE-OY", "name": "Offaly", "parent": "L", "type": "County" }, { "code": "IE-RN", "name": "Roscommon", "parent": "C", "type": "County" }, { "code": "IE-SO", "name": "Sligo", "parent": "C", "type": "County" }, { "code": "IE-TA", "name": "Tipperary", "parent": "M", "type": "County" }, { "code": "IE-U", "name": "Ulster", "type": "Province" }, { "code": "IE-WD", "name": "Waterford", "parent": "M", "type": "County" }, { "code": "IE-WH", "name": "Westmeath", "parent": "L", "type": "County" }, { "code": "IE-WW", "name": "Wicklow", "parent": "L", "type": "County" }, { "code": "IE-WX", "name": "Wexford", "parent": "L", "type": "County" }, { "code": "IL-D", "name": "Al Jan贖b蘋", "type": "District" }, { "code": "IL-HA", "name": "H戔efa", "type": "District" }, { "code": "IL-JM", "name": "Al Quds", "type": "District" }, { "code": "IL-M", "name": "Al Awsa籟", "type": "District" }, { "code": "IL-TA", "name": "Tall Ab蘋b", "type": "District" }, { "code": "IL-Z", "name": "Ash Shaml蘋", "type": "District" }, { "code": "IN-AN", "name": "Andaman and Nicobar Islands", "type": "Union territory" }, { "code": "IN-AP", "name": "Andhra Pradesh", "type": "State" }, { "code": "IN-AR", "name": "Arunchal Pradesh", "type": "State" }, { "code": "IN-AS", "name": "Assam", "type": "State" }, { "code": "IN-BR", "name": "Bihr", "type": "State" }, { "code": "IN-CH", "name": "Chand蘋garh", "type": "Union territory" }, { "code": "IN-CT", "name": "Chhatt蘋sgarh", "type": "State" }, { "code": "IN-DH", "name": "Ddra and Nagar Haveli and Damn and Diu", "type": "Union territory" }, { "code": "IN-DL", "name": "Delhi", "type": "Union territory" }, { "code": "IN-GA", "name": "Goa", "type": "State" }, { "code": "IN-GJ", "name": "Gujart", "type": "State" }, { "code": "IN-HP", "name": "Himchal Pradesh", "type": "State" }, { "code": "IN-HR", "name": "Haryna", "type": "State" }, { "code": "IN-JH", "name": "Jhrkhand", "type": "State" }, { "code": "IN-JK", "name": "Jammu and Kashm蘋r", "type": "Union territory" }, { "code": "IN-KA", "name": "Karntaka", "type": "State" }, { "code": "IN-KL", "name": "Kerala", "type": "State" }, { "code": "IN-LA", "name": "Ladkh", "type": "Union territory" }, { "code": "IN-LD", "name": "Lakshadweep", "type": "Union territory" }, { "code": "IN-MH", "name": "Mahrshtra", "type": "State" }, { "code": "IN-ML", "name": "Meghlaya", "type": "State" }, { "code": "IN-MN", "name": "Manipur", "type": "State" }, { "code": "IN-MP", "name": "Madhya Pradesh", "type": "State" }, { "code": "IN-MZ", "name": "Mizoram", "type": "State" }, { "code": "IN-NL", "name": "Ngland", "type": "State" }, { "code": "IN-OR", "name": "Odisha", "type": "State" }, { "code": "IN-PB", "name": "Punjab", "type": "State" }, { "code": "IN-PY", "name": "Puducherry", "type": "Union territory" }, { "code": "IN-RJ", "name": "Rjasthn", "type": "State" }, { "code": "IN-SK", "name": "Sikkim", "type": "State" }, { "code": "IN-TG", "name": "Telangna", "type": "State" }, { "code": "IN-TN", "name": "Tamil Ndu", "type": "State" }, { "code": "IN-TR", "name": "Tripura", "type": "State" }, { "code": "IN-UP", "name": "Uttar Pradesh", "type": "State" }, { "code": "IN-UT", "name": "Uttarkhand", "type": "State" }, { "code": "IN-WB", "name": "West Bengal", "type": "State" }, { "code": "IQ-AN", "name": "Al Anbr", "type": "Governorate" }, { "code": "IQ-AR", "name": "Arb蘋l", "type": "Governorate" }, { "code": "IQ-BA", "name": "Al Barah", "type": "Governorate" }, { "code": "IQ-BB", "name": "Bbil", "type": "Governorate" }, { "code": "IQ-BG", "name": "Baghdd", "type": "Governorate" }, { "code": "IQ-DA", "name": "Dah贖k", "type": "Governorate" }, { "code": "IQ-DI", "name": "Diyl獺", "type": "Governorate" }, { "code": "IQ-DQ", "name": "Dh蘋 Qr", "type": "Governorate" }, { "code": "IQ-KA", "name": "Karbal", "type": "Governorate" }, { "code": "IQ-KI", "name": "Kirk贖k", "type": "Governorate" }, { "code": "IQ-MA", "name": "Maysn", "type": "Governorate" }, { "code": "IQ-MU", "name": "Al Muthann獺", "type": "Governorate" }, { "code": "IQ-NA", "name": "An Najaf", "type": "Governorate" }, { "code": "IQ-NI", "name": "N蘋naw獺", "type": "Governorate" }, { "code": "IQ-QA", "name": "Al Qdis蘋yah", "type": "Governorate" }, { "code": "IQ-SD", "name": "al廎 ad D蘋n", "type": "Governorate" }, { "code": "IQ-SU", "name": "As Sulaymn蘋yah", "type": "Governorate" }, { "code": "IQ-WA", "name": "Wsi籟", "type": "Governorate" }, { "code": "IR-00", "name": "Markaz蘋", "type": "Province" }, { "code": "IR-01", "name": "G蘋ln", "type": "Province" }, { "code": "IR-02", "name": "Mzandarn", "type": "Province" }, { "code": "IR-03", "name": "zrbyjn-e Shrq蘋", "type": "Province" }, { "code": "IR-04", "name": "zrbyjn-e Ghrb蘋", "type": "Province" }, { "code": "IR-05", "name": "Kermnshh", "type": "Province" }, { "code": "IR-06", "name": "Kh贖zestn", "type": "Province" }, { "code": "IR-07", "name": "Frs", "type": "Province" }, { "code": "IR-08", "name": "Kermn", "type": "Province" }, { "code": "IR-09", "name": "Khorsn-e Ra廕av蘋", "type": "Province" }, { "code": "IR-10", "name": "Efahn", "type": "Province" }, { "code": "IR-11", "name": "S蘋stn va Bal贖chestn", "type": "Province" }, { "code": "IR-12", "name": "Kordestn", "type": "Province" }, { "code": "IR-13", "name": "Hamadn", "type": "Province" }, { "code": "IR-14", "name": "Chahr Ma廎怯l va Bakht蘋r蘋", "type": "Province" }, { "code": "IR-15", "name": "Lorestn", "type": "Province" }, { "code": "IR-16", "name": "蘆lm", "type": "Province" }, { "code": "IR-17", "name": "Kohg蘋l贖yeh va Bowyer A廎姓ad", "type": "Province" }, { "code": "IR-18", "name": "B贖shehr", "type": "Province" }, { "code": "IR-19", "name": "Zanjn", "type": "Province" }, { "code": "IR-20", "name": "Semnn", "type": "Province" }, { "code": "IR-21", "name": "Yazd", "type": "Province" }, { "code": "IR-22", "name": "Hormozgn", "type": "Province" }, { "code": "IR-23", "name": "Tehrn", "type": "Province" }, { "code": "IR-24", "name": "Ardab蘋l", "type": "Province" }, { "code": "IR-25", "name": "Qom", "type": "Province" }, { "code": "IR-26", "name": "Qazv蘋n", "type": "Province" }, { "code": "IR-27", "name": "Golestn", "type": "Province" }, { "code": "IR-28", "name": "Khorsn-e Shoml蘋", "type": "Province" }, { "code": "IR-29", "name": "Khorsn-e Jon贖b蘋", "type": "Province" }, { "code": "IR-30", "name": "Alborz", "type": "Province" }, { "code": "IS-1", "name": "H繹fu簸borgarsv疆簸i", "type": "Region" }, { "code": "IS-2", "name": "Su簸urnes", "type": "Region" }, { "code": "IS-3", "name": "Vesturland", "type": "Region" }, { "code": "IS-4", "name": "Vestfir簸ir", "type": "Region" }, { "code": "IS-5", "name": "Nor簸urland vestra", "type": "Region" }, { "code": "IS-6", "name": "Nor簸urland eystra", "type": "Region" }, { "code": "IS-7", "name": "Austurland", "type": "Region" }, { "code": "IS-8", "name": "Su簸urland", "type": "Region" }, { "code": "IS-AKH", "name": "Akrahreppur", "parent": "5", "type": "Municipality" }, { "code": "IS-AKN", "name": "Akraneskaupsta簸ur", "parent": "3", "type": "Municipality" }, { "code": "IS-AKU", "name": "Akureyrarb疆r", "parent": "6", "type": "Municipality" }, { "code": "IS-ARN", "name": "rneshreppur", "parent": "4", "type": "Municipality" }, { "code": "IS-ASA", "name": "sahreppur", "parent": "8", "type": "Municipality" }, { "code": "IS-BFJ", "name": "Borgarfjar簸arhreppur", "parent": "7", "type": "Municipality" }, { "code": "IS-BLA", "name": "Bl獺sk籀gabygg簸", "parent": "8", "type": "Municipality" }, { "code": "IS-BLO", "name": "Bl繹ndu籀sb疆r", "parent": "5", "type": "Municipality" }, { "code": "IS-BOG", "name": "Borgarbygg簸", "parent": "3", "type": "Municipality" }, { "code": "IS-BOL", "name": "Bolungarv穩kurkaupsta簸ur", "parent": "4", "type": "Municipality" }, { "code": "IS-DAB", "name": "Dalabygg簸", "parent": "3", "type": "Municipality" }, { "code": "IS-DAV", "name": "Dalv穩kurbygg簸", "parent": "6", "type": "Municipality" }, { "code": "IS-DJU", "name": "Dj繳pavogshreppur", "parent": "7", "type": "Municipality" }, { "code": "IS-EOM", "name": "Eyja- og Miklaholtshreppur", "parent": "3", "type": "Municipality" }, { "code": "IS-EYF", "name": "Eyjafjar簸arsveit", "parent": "6", "type": "Municipality" }, { "code": "IS-FJD", "name": "Fjar簸abygg簸", "parent": "7", "type": "Municipality" }, { "code": "IS-FJL", "name": "Fjallabygg簸", "parent": "6", "type": "Municipality" }, { "code": "IS-FLA", "name": "Fl籀ahreppur", "parent": "8", "type": "Municipality" }, { "code": "IS-FLD", "name": "Flj籀tsdalsh矇ra簸", "parent": "7", "type": "Municipality" }, { "code": "IS-FLR", "name": "Flj籀tsdalshreppur", "parent": "7", "type": "Municipality" }, { "code": "IS-GAR", "name": "Gar簸ab疆r", "parent": "1", "type": "Municipality" }, { "code": "IS-GOG", "name": "Gr穩msnes- og Grafningshreppur", "parent": "8", "type": "Municipality" }, { "code": "IS-GRN", "name": "Grindav穩kurb疆r", "parent": "2", "type": "Municipality" }, { "code": "IS-GRU", "name": "Grundarfjar簸arb疆r", "parent": "3", "type": "Municipality" }, { "code": "IS-GRY", "name": "Gr羸tubakkahreppur", "parent": "6", "type": "Municipality" }, { "code": "IS-HAF", "name": "Hafnarfjar簸arkaupsta簸ur", "parent": "1", "type": "Municipality" }, { "code": "IS-HEL", "name": "Helgafellssveit", "parent": "3", "type": "Municipality" }, { "code": "IS-HRG", "name": "H繹rg獺rsveit", "parent": "6", "type": "Municipality" }, { "code": "IS-HRU", "name": "Hrunamannahreppur", "parent": "8", "type": "Municipality" }, { "code": "IS-HUT", "name": "H繳navatnshreppur", "parent": "5", "type": "Municipality" }, { "code": "IS-HUV", "name": "H繳na臘ing vestra", "parent": "5", "type": "Municipality" }, { "code": "IS-HVA", "name": "Hvalfjar簸arsveit", "parent": "3", "type": "Municipality" }, { "code": "IS-HVE", "name": "Hverager簸isb疆r", "parent": "8", "type": "Municipality" }, { "code": "IS-ISA", "name": "safjar簸arb疆r", "parent": "4", "type": "Municipality" }, { "code": "IS-KAL", "name": "Kaldrananeshreppur", "parent": "4", "type": "Municipality" }, { "code": "IS-KJO", "name": "Kj籀sarhreppur", "parent": "1", "type": "Municipality" }, { "code": "IS-KOP", "name": "K籀pavogsb疆r", "parent": "1", "type": "Municipality" }, { "code": "IS-LAN", "name": "Langanesbygg簸", "parent": "6", "type": "Municipality" }, { "code": "IS-MOS", "name": "Mosfellsb疆r", "parent": "1", "type": "Municipality" }, { "code": "IS-MYR", "name": "M羸rdalshreppur", "parent": "8", "type": "Municipality" }, { "code": "IS-NOR", "name": "Nor簸ur臘ing", "parent": "6", "type": "Municipality" }, { "code": "IS-RGE", "name": "Rang獺r臘ing eystra", "parent": "8", "type": "Municipality" }, { "code": "IS-RGY", "name": "Rang獺r臘ing ytra", "parent": "8", "type": "Municipality" }, { "code": "IS-RHH", "name": "Reykh籀lahreppur", "parent": "4", "type": "Municipality" }, { "code": "IS-RKN", "name": "Reykjanesb疆r", "parent": "2", "type": "Municipality" }, { "code": "IS-RKV", "name": "Reykjav穩kurborg", "parent": "1", "type": "Municipality" }, { "code": "IS-SBH", "name": "Svalbar簸shreppur", "parent": "6", "type": "Municipality" }, { "code": "IS-SBT", "name": "Svalbar簸sstrandarhreppur", "parent": "6", "type": "Municipality" }, { "code": "IS-SDN", "name": "Su簸urnesjab疆r", "parent": "2", "type": "Municipality" }, { "code": "IS-SDV", "name": "S繳簸av穩kurhreppur", "parent": "4", "type": "Municipality" }, { "code": "IS-SEL", "name": "Seltjarnarnesb疆r", "parent": "1", "type": "Municipality" }, { "code": "IS-SEY", "name": "Sey簸isfjar簸arkaupsta簸ur", "parent": "7", "type": "Municipality" }, { "code": "IS-SFA", "name": "Sveitarf矇lagi簸 rborg", "parent": "8", "type": "Municipality" }, { "code": "IS-SHF", "name": "Sveitarf矇lagi簸 Hornafj繹r簸ur", "parent": "7", "type": "Municipality" }, { "code": "IS-SKF", "name": "Skaft獺rhreppur", "parent": "8", "type": "Municipality" }, { "code": "IS-SKG", "name": "Skagabygg簸", "parent": "5", "type": "Municipality" }, { "code": "IS-SKO", "name": "Skorradalshreppur", "parent": "3", "type": "Municipality" }, { "code": "IS-SKU", "name": "Sk繳tusta簸ahreppur", "parent": "6", "type": "Municipality" }, { "code": "IS-SNF", "name": "Sn疆fellsb疆r", "parent": "3", "type": "Municipality" }, { "code": "IS-SOG", "name": "Skei簸a- og Gn繳pverjahreppur", "parent": "8", "type": "Municipality" }, { "code": "IS-SOL", "name": "Sveitarf矇lagi簸 lfus", "parent": "8", "type": "Municipality" }, { "code": "IS-SSF", "name": "Sveitarf矇lagi簸 Skagafj繹r簸ur", "parent": "5", "type": "Municipality" }, { "code": "IS-SSS", "name": "Sveitarf矇lagi簸 Skagastr繹nd", "parent": "5", "type": "Municipality" }, { "code": "IS-STR", "name": "Strandabygg簸", "parent": "4", "type": "Municipality" }, { "code": "IS-STY", "name": "Stykkish籀lmsb疆r", "parent": "3", "type": "Municipality" }, { "code": "IS-SVG", "name": "Sveitarf矇lagi簸 Vogar", "parent": "2", "type": "Municipality" }, { "code": "IS-TAL", "name": "T獺lknafjar簸arhreppur", "parent": "4", "type": "Municipality" }, { "code": "IS-THG", "name": "ingeyjarsveit", "parent": "6", "type": "Municipality" }, { "code": "IS-TJO", "name": "Tj繹rneshreppur", "parent": "6", "type": "Municipality" }, { "code": "IS-VEM", "name": "Vestmannaeyjab疆r", "parent": "8", "type": "Municipality" }, { "code": "IS-VER", "name": "Vesturbygg簸", "parent": "4", "type": "Municipality" }, { "code": "IS-VOP", "name": "Vopnafjar簸arhreppur", "parent": "7", "type": "Municipality" }, { "code": "IT-21", "name": "Piemonte", "type": "Region" }, { "code": "IT-23", "name": "Val d'Aoste", "type": "Autonomous region" }, { "code": "IT-25", "name": "Lombardia", "type": "Region" }, { "code": "IT-32", "name": "Trentino-Alto Adige", "type": "Autonomous region" }, { "code": "IT-34", "name": "Veneto", "type": "Region" }, { "code": "IT-36", "name": "Friuli Venezia Giulia", "type": "Autonomous region" }, { "code": "IT-42", "name": "Liguria", "type": "Region" }, { "code": "IT-45", "name": "Emilia-Romagna", "type": "Region" }, { "code": "IT-52", "name": "Toscana", "type": "Region" }, { "code": "IT-55", "name": "Umbria", "type": "Region" }, { "code": "IT-57", "name": "Marche", "type": "Region" }, { "code": "IT-62", "name": "Lazio", "type": "Region" }, { "code": "IT-65", "name": "Abruzzo", "type": "Region" }, { "code": "IT-67", "name": "Molise", "type": "Region" }, { "code": "IT-72", "name": "Campania", "type": "Region" }, { "code": "IT-75", "name": "Puglia", "type": "Region" }, { "code": "IT-77", "name": "Basilicata", "type": "Region" }, { "code": "IT-78", "name": "Calabria", "type": "Region" }, { "code": "IT-82", "name": "Sicilia", "type": "Autonomous region" }, { "code": "IT-88", "name": "Sardegna", "type": "Autonomous region" }, { "code": "IT-AG", "name": "Agrigento", "parent": "82", "type": "Free municipal consortium" }, { "code": "IT-AL", "name": "Alessandria", "parent": "21", "type": "Province" }, { "code": "IT-AN", "name": "Ancona", "parent": "57", "type": "Province" }, { "code": "IT-AP", "name": "Ascoli Piceno", "parent": "57", "type": "Province" }, { "code": "IT-AQ", "name": "L'Aquila", "parent": "65", "type": "Province" }, { "code": "IT-AR", "name": "Arezzo", "parent": "52", "type": "Province" }, { "code": "IT-AT", "name": "Asti", "parent": "21", "type": "Province" }, { "code": "IT-AV", "name": "Avellino", "parent": "72", "type": "Province" }, { "code": "IT-BA", "name": "Bari", "parent": "75", "type": "Metropolitan city" }, { "code": "IT-BG", "name": "Bergamo", "parent": "25", "type": "Province" }, { "code": "IT-BI", "name": "Biella", "parent": "21", "type": "Province" }, { "code": "IT-BL", "name": "Belluno", "parent": "34", "type": "Province" }, { "code": "IT-BN", "name": "Benevento", "parent": "72", "type": "Province" }, { "code": "IT-BO", "name": "Bologna", "parent": "45", "type": "Metropolitan city" }, { "code": "IT-BR", "name": "Brindisi", "parent": "75", "type": "Province" }, { "code": "IT-BS", "name": "Brescia", "parent": "25", "type": "Province" }, { "code": "IT-BT", "name": "Barletta-Andria-Trani", "parent": "75", "type": "Province" }, { "code": "IT-BZ", "name": "Bolzano", "parent": "32", "type": "Autonomous province" }, { "code": "IT-CA", "name": "Cagliari", "parent": "88", "type": "Metropolitan city" }, { "code": "IT-CB", "name": "Campobasso", "parent": "67", "type": "Province" }, { "code": "IT-CE", "name": "Caserta", "parent": "72", "type": "Province" }, { "code": "IT-CH", "name": "Chieti", "parent": "65", "type": "Province" }, { "code": "IT-CL", "name": "Caltanissetta", "parent": "82", "type": "Free municipal consortium" }, { "code": "IT-CN", "name": "Cuneo", "parent": "21", "type": "Province" }, { "code": "IT-CO", "name": "Como", "parent": "25", "type": "Province" }, { "code": "IT-CR", "name": "Cremona", "parent": "25", "type": "Province" }, { "code": "IT-CS", "name": "Cosenza", "parent": "78", "type": "Province" }, { "code": "IT-CT", "name": "Catania", "parent": "82", "type": "Metropolitan city" }, { "code": "IT-CZ", "name": "Catanzaro", "parent": "78", "type": "Province" }, { "code": "IT-EN", "name": "Enna", "parent": "82", "type": "Free municipal consortium" }, { "code": "IT-FC", "name": "Forl穫-Cesena", "parent": "45", "type": "Province" }, { "code": "IT-FE", "name": "Ferrara", "parent": "45", "type": "Province" }, { "code": "IT-FG", "name": "Foggia", "parent": "75", "type": "Province" }, { "code": "IT-FI", "name": "Firenze", "parent": "52", "type": "Metropolitan city" }, { "code": "IT-FM", "name": "Fermo", "parent": "57", "type": "Province" }, { "code": "IT-FR", "name": "Frosinone", "parent": "62", "type": "Province" }, { "code": "IT-GE", "name": "Genova", "parent": "42", "type": "Metropolitan city" }, { "code": "IT-GO", "name": "Gorizia", "parent": "36", "type": "Decentralized regional entity" }, { "code": "IT-GR", "name": "Grosseto", "parent": "52", "type": "Province" }, { "code": "IT-IM", "name": "Imperia", "parent": "42", "type": "Province" }, { "code": "IT-IS", "name": "Isernia", "parent": "67", "type": "Province" }, { "code": "IT-KR", "name": "Crotone", "parent": "78", "type": "Province" }, { "code": "IT-LC", "name": "Lecco", "parent": "25", "type": "Province" }, { "code": "IT-LE", "name": "Lecce", "parent": "75", "type": "Province" }, { "code": "IT-LI", "name": "Livorno", "parent": "52", "type": "Province" }, { "code": "IT-LO", "name": "Lodi", "parent": "25", "type": "Province" }, { "code": "IT-LT", "name": "Latina", "parent": "62", "type": "Province" }, { "code": "IT-LU", "name": "Lucca", "parent": "52", "type": "Province" }, { "code": "IT-MB", "name": "Monza e Brianza", "parent": "25", "type": "Province" }, { "code": "IT-MC", "name": "Macerata", "parent": "57", "type": "Province" }, { "code": "IT-ME", "name": "Messina", "parent": "82", "type": "Metropolitan city" }, { "code": "IT-MI", "name": "Milano", "parent": "25", "type": "Metropolitan city" }, { "code": "IT-MN", "name": "Mantova", "parent": "25", "type": "Province" }, { "code": "IT-MO", "name": "Modena", "parent": "45", "type": "Province" }, { "code": "IT-MS", "name": "Massa-Carrara", "parent": "52", "type": "Province" }, { "code": "IT-MT", "name": "Matera", "parent": "77", "type": "Province" }, { "code": "IT-NA", "name": "Napoli", "parent": "72", "type": "Metropolitan city" }, { "code": "IT-NO", "name": "Novara", "parent": "21", "type": "Province" }, { "code": "IT-NU", "name": "Nuoro", "parent": "88", "type": "Province" }, { "code": "IT-OR", "name": "Oristano", "parent": "88", "type": "Province" }, { "code": "IT-PA", "name": "Palermo", "parent": "82", "type": "Metropolitan city" }, { "code": "IT-PC", "name": "Piacenza", "parent": "45", "type": "Province" }, { "code": "IT-PD", "name": "Padova", "parent": "34", "type": "Province" }, { "code": "IT-PE", "name": "Pescara", "parent": "65", "type": "Province" }, { "code": "IT-PG", "name": "Perugia", "parent": "55", "type": "Province" }, { "code": "IT-PI", "name": "Pisa", "parent": "52", "type": "Province" }, { "code": "IT-PN", "name": "Pordenone", "parent": "36", "type": "Decentralized regional entity" }, { "code": "IT-PO", "name": "Prato", "parent": "52", "type": "Province" }, { "code": "IT-PR", "name": "Parma", "parent": "45", "type": "Province" }, { "code": "IT-PT", "name": "Pistoia", "parent": "52", "type": "Province" }, { "code": "IT-PU", "name": "Pesaro e Urbino", "parent": "57", "type": "Province" }, { "code": "IT-PV", "name": "Pavia", "parent": "25", "type": "Province" }, { "code": "IT-PZ", "name": "Potenza", "parent": "77", "type": "Province" }, { "code": "IT-RA", "name": "Ravenna", "parent": "45", "type": "Province" }, { "code": "IT-RC", "name": "Reggio Calabria", "parent": "78", "type": "Metropolitan city" }, { "code": "IT-RE", "name": "Reggio Emilia", "parent": "45", "type": "Province" }, { "code": "IT-RG", "name": "Ragusa", "parent": "82", "type": "Free municipal consortium" }, { "code": "IT-RI", "name": "Rieti", "parent": "62", "type": "Province" }, { "code": "IT-RM", "name": "Roma", "parent": "62", "type": "Metropolitan city" }, { "code": "IT-RN", "name": "Rimini", "parent": "45", "type": "Province" }, { "code": "IT-RO", "name": "Rovigo", "parent": "34", "type": "Province" }, { "code": "IT-SA", "name": "Salerno", "parent": "72", "type": "Province" }, { "code": "IT-SI", "name": "Siena", "parent": "52", "type": "Province" }, { "code": "IT-SO", "name": "Sondrio", "parent": "25", "type": "Province" }, { "code": "IT-SP", "name": "La Spezia", "parent": "42", "type": "Province" }, { "code": "IT-SR", "name": "Siracusa", "parent": "82", "type": "Free municipal consortium" }, { "code": "IT-SS", "name": "Sassari", "parent": "88", "type": "Province" }, { "code": "IT-SU", "name": "Sud Sardegna", "parent": "88", "type": "Province" }, { "code": "IT-SV", "name": "Savona", "parent": "42", "type": "Province" }, { "code": "IT-TA", "name": "Taranto", "parent": "75", "type": "Province" }, { "code": "IT-TE", "name": "Teramo", "parent": "65", "type": "Province" }, { "code": "IT-TN", "name": "Trento", "parent": "32", "type": "Autonomous province" }, { "code": "IT-TO", "name": "Torino", "parent": "21", "type": "Metropolitan city" }, { "code": "IT-TP", "name": "Trapani", "parent": "82", "type": "Free municipal consortium" }, { "code": "IT-TR", "name": "Terni", "parent": "55", "type": "Province" }, { "code": "IT-TS", "name": "Trieste", "parent": "36", "type": "Decentralized regional entity" }, { "code": "IT-TV", "name": "Treviso", "parent": "34", "type": "Province" }, { "code": "IT-UD", "name": "Udine", "parent": "36", "type": "Decentralized regional entity" }, { "code": "IT-VA", "name": "Varese", "parent": "25", "type": "Province" }, { "code": "IT-VB", "name": "Verbano-Cusio-Ossola", "parent": "21", "type": "Province" }, { "code": "IT-VC", "name": "Vercelli", "parent": "21", "type": "Province" }, { "code": "IT-VE", "name": "Venezia", "parent": "34", "type": "Metropolitan city" }, { "code": "IT-VI", "name": "Vicenza", "parent": "34", "type": "Province" }, { "code": "IT-VR", "name": "Verona", "parent": "34", "type": "Province" }, { "code": "IT-VT", "name": "Viterbo", "parent": "62", "type": "Province" }, { "code": "IT-VV", "name": "Vibo Valentia", "parent": "78", "type": "Province" }, { "code": "JM-01", "name": "Kingston", "type": "Parish" }, { "code": "JM-02", "name": "Saint Andrew", "type": "Parish" }, { "code": "JM-03", "name": "Saint Thomas", "type": "Parish" }, { "code": "JM-04", "name": "Portland", "type": "Parish" }, { "code": "JM-05", "name": "Saint Mary", "type": "Parish" }, { "code": "JM-06", "name": "Saint Ann", "type": "Parish" }, { "code": "JM-07", "name": "Trelawny", "type": "Parish" }, { "code": "JM-08", "name": "Saint James", "type": "Parish" }, { "code": "JM-09", "name": "Hanover", "type": "Parish" }, { "code": "JM-10", "name": "Westmoreland", "type": "Parish" }, { "code": "JM-11", "name": "Saint Elizabeth", "type": "Parish" }, { "code": "JM-12", "name": "Manchester", "type": "Parish" }, { "code": "JM-13", "name": "Clarendon", "type": "Parish" }, { "code": "JM-14", "name": "Saint Catherine", "type": "Parish" }, { "code": "JO-AJ", "name": "Ajl贖n", "type": "Governorate" }, { "code": "JO-AM", "name": "Al Aimah", "type": "Governorate" }, { "code": "JO-AQ", "name": "Al Aqabah", "type": "Governorate" }, { "code": "JO-AT", "name": "A籟 籠af蘋lah", "type": "Governorate" }, { "code": "JO-AZ", "name": "Az Zarq", "type": "Governorate" }, { "code": "JO-BA", "name": "Al Balq", "type": "Governorate" }, { "code": "JO-IR", "name": "Irbid", "type": "Governorate" }, { "code": "JO-JA", "name": "Jarash", "type": "Governorate" }, { "code": "JO-KA", "name": "Al Karak", "type": "Governorate" }, { "code": "JO-MA", "name": "Al Mafraq", "type": "Governorate" }, { "code": "JO-MD", "name": "Mdab", "type": "Governorate" }, { "code": "JO-MN", "name": "Man", "type": "Governorate" }, { "code": "JP-01", "name": "Hokkaido", "type": "Prefecture" }, { "code": "JP-02", "name": "Aomori", "type": "Prefecture" }, { "code": "JP-03", "name": "Iwate", "type": "Prefecture" }, { "code": "JP-04", "name": "Miyagi", "type": "Prefecture" }, { "code": "JP-05", "name": "Akita", "type": "Prefecture" }, { "code": "JP-06", "name": "Yamagata", "type": "Prefecture" }, { "code": "JP-07", "name": "Fukushima", "type": "Prefecture" }, { "code": "JP-08", "name": "Ibaraki", "type": "Prefecture" }, { "code": "JP-09", "name": "Tochigi", "type": "Prefecture" }, { "code": "JP-10", "name": "Gunma", "type": "Prefecture" }, { "code": "JP-11", "name": "Saitama", "type": "Prefecture" }, { "code": "JP-12", "name": "Chiba", "type": "Prefecture" }, { "code": "JP-13", "name": "Tokyo", "type": "Prefecture" }, { "code": "JP-14", "name": "Kanagawa", "type": "Prefecture" }, { "code": "JP-15", "name": "Niigata", "type": "Prefecture" }, { "code": "JP-16", "name": "Toyama", "type": "Prefecture" }, { "code": "JP-17", "name": "Ishikawa", "type": "Prefecture" }, { "code": "JP-18", "name": "Fukui", "type": "Prefecture" }, { "code": "JP-19", "name": "Yamanashi", "type": "Prefecture" }, { "code": "JP-20", "name": "Nagano", "type": "Prefecture" }, { "code": "JP-21", "name": "Gifu", "type": "Prefecture" }, { "code": "JP-22", "name": "Shizuoka", "type": "Prefecture" }, { "code": "JP-23", "name": "Aichi", "type": "Prefecture" }, { "code": "JP-24", "name": "Mie", "type": "Prefecture" }, { "code": "JP-25", "name": "Shiga", "type": "Prefecture" }, { "code": "JP-26", "name": "Kyoto", "type": "Prefecture" }, { "code": "JP-27", "name": "Osaka", "type": "Prefecture" }, { "code": "JP-28", "name": "Hyogo", "type": "Prefecture" }, { "code": "JP-29", "name": "Nara", "type": "Prefecture" }, { "code": "JP-30", "name": "Wakayama", "type": "Prefecture" }, { "code": "JP-31", "name": "Tottori", "type": "Prefecture" }, { "code": "JP-32", "name": "Shimane", "type": "Prefecture" }, { "code": "JP-33", "name": "Okayama", "type": "Prefecture" }, { "code": "JP-34", "name": "Hiroshima", "type": "Prefecture" }, { "code": "JP-35", "name": "Yamaguchi", "type": "Prefecture" }, { "code": "JP-36", "name": "Tokushima", "type": "Prefecture" }, { "code": "JP-37", "name": "Kagawa", "type": "Prefecture" }, { "code": "JP-38", "name": "Ehime", "type": "Prefecture" }, { "code": "JP-39", "name": "Kochi", "type": "Prefecture" }, { "code": "JP-40", "name": "Fukuoka", "type": "Prefecture" }, { "code": "JP-41", "name": "Saga", "type": "Prefecture" }, { "code": "JP-42", "name": "Nagasaki", "type": "Prefecture" }, { "code": "JP-43", "name": "Kumamoto", "type": "Prefecture" }, { "code": "JP-44", "name": "Oita", "type": "Prefecture" }, { "code": "JP-45", "name": "Miyazaki", "type": "Prefecture" }, { "code": "JP-46", "name": "Kagoshima", "type": "Prefecture" }, { "code": "JP-47", "name": "Okinawa", "type": "Prefecture" }, { "code": "KE-01", "name": "Baringo", "type": "County" }, { "code": "KE-02", "name": "Bomet", "type": "County" }, { "code": "KE-03", "name": "Bungoma", "type": "County" }, { "code": "KE-04", "name": "Busia", "type": "County" }, { "code": "KE-05", "name": "Elgeyo/Marakwet", "type": "County" }, { "code": "KE-06", "name": "Embu", "type": "County" }, { "code": "KE-07", "name": "Garissa", "type": "County" }, { "code": "KE-08", "name": "Homa Bay", "type": "County" }, { "code": "KE-09", "name": "Isiolo", "type": "County" }, { "code": "KE-10", "name": "Kajiado", "type": "County" }, { "code": "KE-11", "name": "Kakamega", "type": "County" }, { "code": "KE-12", "name": "Kericho", "type": "County" }, { "code": "KE-13", "name": "Kiambu", "type": "County" }, { "code": "KE-14", "name": "Kilifi", "type": "County" }, { "code": "KE-15", "name": "Kirinyaga", "type": "County" }, { "code": "KE-16", "name": "Kisii", "type": "County" }, { "code": "KE-17", "name": "Kisumu", "type": "County" }, { "code": "KE-18", "name": "Kitui", "type": "County" }, { "code": "KE-19", "name": "Kwale", "type": "County" }, { "code": "KE-20", "name": "Laikipia", "type": "County" }, { "code": "KE-21", "name": "Lamu", "type": "County" }, { "code": "KE-22", "name": "Machakos", "type": "County" }, { "code": "KE-23", "name": "Makueni", "type": "County" }, { "code": "KE-24", "name": "Mandera", "type": "County" }, { "code": "KE-25", "name": "Marsabit", "type": "County" }, { "code": "KE-26", "name": "Meru", "type": "County" }, { "code": "KE-27", "name": "Migori", "type": "County" }, { "code": "KE-28", "name": "Mombasa", "type": "County" }, { "code": "KE-29", "name": "Murang'a", "type": "County" }, { "code": "KE-30", "name": "Nairobi City", "type": "County" }, { "code": "KE-31", "name": "Nakuru", "type": "County" }, { "code": "KE-32", "name": "Nandi", "type": "County" }, { "code": "KE-33", "name": "Narok", "type": "County" }, { "code": "KE-34", "name": "Nyamira", "type": "County" }, { "code": "KE-35", "name": "Nyandarua", "type": "County" }, { "code": "KE-36", "name": "Nyeri", "type": "County" }, { "code": "KE-37", "name": "Samburu", "type": "County" }, { "code": "KE-38", "name": "Siaya", "type": "County" }, { "code": "KE-39", "name": "Taita/Taveta", "type": "County" }, { "code": "KE-40", "name": "Tana River", "type": "County" }, { "code": "KE-41", "name": "Tharaka-Nithi", "type": "County" }, { "code": "KE-42", "name": "Trans Nzoia", "type": "County" }, { "code": "KE-43", "name": "Turkana", "type": "County" }, { "code": "KE-44", "name": "Uasin Gishu", "type": "County" }, { "code": "KE-45", "name": "Vihiga", "type": "County" }, { "code": "KE-46", "name": "Wajir", "type": "County" }, { "code": "KE-47", "name": "West Pokot", "type": "County" }, { "code": "KG-B", "name": "Batken", "type": "Region" }, { "code": "KG-C", "name": "Chuyskaya oblast'", "type": "Region" }, { "code": "KG-GB", "name": "Bishkek Shaary", "type": "City" }, { "code": "KG-GO", "name": "Gorod Osh", "type": "City" }, { "code": "KG-J", "name": "Dzhalal-Abadskaya oblast'", "type": "Region" }, { "code": "KG-N", "name": "Naryn", "type": "Region" }, { "code": "KG-O", "name": "Osh", "type": "Region" }, { "code": "KG-T", "name": "Talas", "type": "Region" }, { "code": "KG-Y", "name": "Issyk-Kul'skaja oblast'", "type": "Region" }, { "code": "KH-1", "name": "Banteay Mean Choy", "type": "Province" }, { "code": "KH-10", "name": "Kracheh", "type": "Province" }, { "code": "KH-11", "name": "Mondol Kiri", "type": "Province" }, { "code": "KH-12", "name": "Phnom Penh", "type": "Autonomous municipality" }, { "code": "KH-13", "name": "Preah Vihear", "type": "Province" }, { "code": "KH-14", "name": "Prey Veaeng", "type": "Province" }, { "code": "KH-15", "name": "Pousaat", "type": "Province" }, { "code": "KH-16", "name": "Rotanak Kiri", "type": "Province" }, { "code": "KH-17", "name": "Siem Reab", "type": "Province" }, { "code": "KH-18", "name": "Preah Sihanouk", "type": "Province" }, { "code": "KH-19", "name": "Stong Tr礙ng", "type": "Province" }, { "code": "KH-2", "name": "Baat Dambang", "type": "Province" }, { "code": "KH-20", "name": "Svaay Rieng", "type": "Province" }, { "code": "KH-21", "name": "Taakaev", "type": "Province" }, { "code": "KH-22", "name": "Otdar Mean Chey", "type": "Province" }, { "code": "KH-23", "name": "Kaeb", "type": "Province" }, { "code": "KH-24", "name": "Pailin", "type": "Province" }, { "code": "KH-25", "name": "Tbong Khmum", "type": "Province" }, { "code": "KH-3", "name": "Kampong Chaam", "type": "Province" }, { "code": "KH-4", "name": "Kampong Chhnang", "type": "Province" }, { "code": "KH-5", "name": "Kampong Spueu", "type": "Province" }, { "code": "KH-6", "name": "Kampong Thum", "type": "Province" }, { "code": "KH-7", "name": "Kampot", "type": "Province" }, { "code": "KH-8", "name": "Kandaal", "type": "Province" }, { "code": "KH-9", "name": "Kaoh Kong", "type": "Province" }, { "code": "KI-G", "name": "Gilbert Islands", "type": "Group of islands (20 inhabited islands)" }, { "code": "KI-L", "name": "Line Islands", "type": "Group of islands (20 inhabited islands)" }, { "code": "KI-P", "name": "Phoenix Islands", "type": "Group of islands (20 inhabited islands)" }, { "code": "KM-A", "name": "Andjou璽n", "type": "Island" }, { "code": "KM-G", "name": "Andjaz簾dja", "type": "Island" }, { "code": "KM-M", "name": "Moh矇li", "type": "Island" }, { "code": "KN-01", "name": "Christ Church Nichola Town", "parent": "K", "type": "Parish" }, { "code": "KN-02", "name": "Saint Anne Sandy Point", "parent": "K", "type": "Parish" }, { "code": "KN-03", "name": "Saint George Basseterre", "parent": "K", "type": "Parish" }, { "code": "KN-04", "name": "Saint George Gingerland", "parent": "N", "type": "Parish" }, { "code": "KN-05", "name": "Saint James Windward", "parent": "N", "type": "Parish" }, { "code": "KN-06", "name": "Saint John Capisterre", "parent": "K", "type": "Parish" }, { "code": "KN-07", "name": "Saint John Figtree", "parent": "N", "type": "Parish" }, { "code": "KN-08", "name": "Saint Mary Cayon", "parent": "K", "type": "Parish" }, { "code": "KN-09", "name": "Saint Paul Capisterre", "parent": "K", "type": "Parish" }, { "code": "KN-10", "name": "Saint Paul Charlestown", "parent": "N", "type": "Parish" }, { "code": "KN-11", "name": "Saint Peter Basseterre", "parent": "K", "type": "Parish" }, { "code": "KN-12", "name": "Saint Thomas Lowland", "parent": "N", "type": "Parish" }, { "code": "KN-13", "name": "Saint Thomas Middle Island", "parent": "K", "type": "Parish" }, { "code": "KN-15", "name": "Trinity Palmetto Point", "parent": "K", "type": "Parish" }, { "code": "KN-K", "name": "Saint Kitts", "type": "State" }, { "code": "KN-N", "name": "Nevis", "type": "State" }, { "code": "KP-01", "name": "P'yngyang", "type": "Capital city" }, { "code": "KP-02", "name": "P'yngan-namdo", "type": "Province" }, { "code": "KP-03", "name": "P'yngan-bukto", "type": "Province" }, { "code": "KP-04", "name": "Chagang-do", "type": "Province" }, { "code": "KP-05", "name": "Hwanghae-namdo", "type": "Province" }, { "code": "KP-06", "name": "Hwanghae-bukto", "type": "Province" }, { "code": "KP-07", "name": "Kangweonto", "type": "Province" }, { "code": "KP-08", "name": "Hamgyng-namdo", "type": "Province" }, { "code": "KP-09", "name": "Hamgyng-bukto", "type": "Province" }, { "code": "KP-10", "name": "Ryanggang-do", "type": "Province" }, { "code": "KP-13", "name": "Raseon", "type": "Special city" }, { "code": "KP-14", "name": "Nampho", "type": "Metropolitan city" }, { "code": "KR-11", "name": "Seoul-teukbyeolsi", "type": "Special city" }, { "code": "KR-26", "name": "Busan-gwangyeoksi", "type": "Metropolitan city" }, { "code": "KR-27", "name": "Daegu-gwangyeoksi", "type": "Metropolitan city" }, { "code": "KR-28", "name": "Incheon-gwangyeoksi", "type": "Metropolitan city" }, { "code": "KR-29", "name": "Gwangju-gwangyeoksi", "type": "Metropolitan city" }, { "code": "KR-30", "name": "Daejeon-gwangyeoksi", "type": "Metropolitan city" }, { "code": "KR-31", "name": "Ulsan-gwangyeoksi", "type": "Metropolitan city" }, { "code": "KR-41", "name": "Gyeonggi-do", "type": "Province" }, { "code": "KR-42", "name": "Gangwon-do", "type": "Province" }, { "code": "KR-43", "name": "Chungcheongbuk-do", "type": "Province" }, { "code": "KR-44", "name": "Chungcheongnam-do", "type": "Province" }, { "code": "KR-45", "name": "Jeollabuk-do", "type": "Province" }, { "code": "KR-46", "name": "Jeollanam-do", "type": "Province" }, { "code": "KR-47", "name": "Gyeongsangbuk-do", "type": "Province" }, { "code": "KR-48", "name": "Gyeongsangnam-do", "type": "Province" }, { "code": "KR-49", "name": "Jeju-teukbyeoljachido", "type": "Special self-governing province" }, { "code": "KR-50", "name": "Sejong", "type": "Special self-governing city" }, { "code": "KW-AH", "name": "Al A廎姓ad蘋", "type": "Governorate" }, { "code": "KW-FA", "name": "Al Farwn蘋yah", "type": "Governorate" }, { "code": "KW-HA", "name": "廎災wall蘋", "type": "Governorate" }, { "code": "KW-JA", "name": "Al Jahr", "type": "Governorate" }, { "code": "KW-KU", "name": "Al imah", "type": "Governorate" }, { "code": "KW-MU", "name": "Mubrak al Kab蘋r", "type": "Governorate" }, { "code": "KZ-AKM", "name": "Akmolinskaja oblast'", "type": "Region" }, { "code": "KZ-AKT", "name": "Aktjubinskaja oblast'", "type": "Region" }, { "code": "KZ-ALA", "name": "Almaty", "type": "City" }, { "code": "KZ-ALM", "name": "Almatinskaja oblast'", "type": "Region" }, { "code": "KZ-AST", "name": "Nur-Sultan", "type": "City" }, { "code": "KZ-ATY", "name": "Atyrauskaja oblast'", "type": "Region" }, { "code": "KZ-KAR", "name": "Karagandinskaja oblast'", "type": "Region" }, { "code": "KZ-KUS", "name": "Kostanajskaja oblast'", "type": "Region" }, { "code": "KZ-KZY", "name": "Kyzylordinskaja oblast'", "type": "Region" }, { "code": "KZ-MAN", "name": "Mangghysta贖 oblysy", "type": "Region" }, { "code": "KZ-PAV", "name": "Pavlodar oblysy", "type": "Region" }, { "code": "KZ-SEV", "name": "Severo-Kazahstanskaja oblast'", "type": "Region" }, { "code": "KZ-SHY", "name": "Shymkent", "type": "City" }, { "code": "KZ-VOS", "name": "Shyghys Qazaqstan oblysy", "type": "Region" }, { "code": "KZ-YUZ", "name": "Turkestankaya oblast'", "type": "Region" }, { "code": "KZ-ZAP", "name": "Batys Qazaqstan oblysy", "type": "Region" }, { "code": "KZ-ZHA", "name": "Zhambyl oblysy", "type": "Region" }, { "code": "LA-AT", "name": "Attapu", "type": "Province" }, { "code": "LA-BK", "name": "Bok癡o", "type": "Province" }, { "code": "LA-BL", "name": "Bolikhamxai", "type": "Province" }, { "code": "LA-CH", "name": "Champasak", "type": "Province" }, { "code": "LA-HO", "name": "Houaphan", "type": "Province" }, { "code": "LA-KH", "name": "Khammouan", "type": "Province" }, { "code": "LA-LM", "name": "Louang Namtha", "type": "Province" }, { "code": "LA-LP", "name": "Louangphabang", "type": "Province" }, { "code": "LA-OU", "name": "Oud繫mxai", "type": "Province" }, { "code": "LA-PH", "name": "Ph繫ngsali", "type": "Province" }, { "code": "LA-SL", "name": "Salavan", "type": "Province" }, { "code": "LA-SV", "name": "Savannakh矇t", "type": "Province" }, { "code": "LA-VI", "name": "Viangchan", "type": "Province" }, { "code": "LA-VT", "name": "Viangchan", "type": "Prefecture" }, { "code": "LA-XA", "name": "Xaignabouli", "type": "Province" }, { "code": "LA-XE", "name": "X矇kong", "type": "Province" }, { "code": "LA-XI", "name": "Xiangkhouang", "type": "Province" }, { "code": "LA-XS", "name": "Xais繫mboun", "type": "Province" }, { "code": "LB-AK", "name": "Aakk璽r", "type": "Governorate" }, { "code": "LB-AS", "name": "Ash Shiml", "type": "Governorate" }, { "code": "LB-BA", "name": "Bayr贖t", "type": "Governorate" }, { "code": "LB-BH", "name": "Baalbek-Hermel", "type": "Governorate" }, { "code": "LB-BI", "name": "Al Biq", "type": "Governorate" }, { "code": "LB-JA", "name": "Al Jan贖b", "type": "Governorate" }, { "code": "LB-JL", "name": "Jabal Lubnn", "type": "Governorate" }, { "code": "LB-NA", "name": "An Naba籟蘋yah", "type": "Governorate" }, { "code": "LC-01", "name": "Anse la Raye", "type": "District" }, { "code": "LC-02", "name": "Castries", "type": "District" }, { "code": "LC-03", "name": "Choiseul", "type": "District" }, { "code": "LC-05", "name": "Dennery", "type": "District" }, { "code": "LC-06", "name": "Gros Islet", "type": "District" }, { "code": "LC-07", "name": "Laborie", "type": "District" }, { "code": "LC-08", "name": "Micoud", "type": "District" }, { "code": "LC-10", "name": "Soufri癡re", "type": "District" }, { "code": "LC-11", "name": "Vieux Fort", "type": "District" }, { "code": "LC-12", "name": "Canaries", "type": "District" }, { "code": "LI-01", "name": "Balzers", "type": "Commune" }, { "code": "LI-02", "name": "Eschen", "type": "Commune" }, { "code": "LI-03", "name": "Gamprin", "type": "Commune" }, { "code": "LI-04", "name": "Mauren", "type": "Commune" }, { "code": "LI-05", "name": "Planken", "type": "Commune" }, { "code": "LI-06", "name": "Ruggell", "type": "Commune" }, { "code": "LI-07", "name": "Schaan", "type": "Commune" }, { "code": "LI-08", "name": "Schellenberg", "type": "Commune" }, { "code": "LI-09", "name": "Triesen", "type": "Commune" }, { "code": "LI-10", "name": "Triesenberg", "type": "Commune" }, { "code": "LI-11", "name": "Vaduz", "type": "Commune" }, { "code": "LK-1", "name": "Western Province", "type": "Province" }, { "code": "LK-11", "name": "Colombo", "parent": "1", "type": "District" }, { "code": "LK-12", "name": "Gampaha", "parent": "1", "type": "District" }, { "code": "LK-13", "name": "Kalutara", "parent": "1", "type": "District" }, { "code": "LK-2", "name": "Central Province", "type": "Province" }, { "code": "LK-21", "name": "Kandy", "parent": "2", "type": "District" }, { "code": "LK-22", "name": "Matale", "parent": "2", "type": "District" }, { "code": "LK-23", "name": "Nuwara Eliya", "parent": "2", "type": "District" }, { "code": "LK-3", "name": "Southern Province", "type": "Province" }, { "code": "LK-31", "name": "Galle", "parent": "3", "type": "District" }, { "code": "LK-32", "name": "Matara", "parent": "3", "type": "District" }, { "code": "LK-33", "name": "Hambantota", "parent": "3", "type": "District" }, { "code": "LK-4", "name": "Northern Province", "type": "Province" }, { "code": "LK-41", "name": "Jaffna", "parent": "4", "type": "District" }, { "code": "LK-42", "name": "Kilinochchi", "parent": "4", "type": "District" }, { "code": "LK-43", "name": "Mannar", "parent": "4", "type": "District" }, { "code": "LK-44", "name": "Vavuniya", "parent": "4", "type": "District" }, { "code": "LK-45", "name": "Mullaittivu", "parent": "4", "type": "District" }, { "code": "LK-5", "name": "Eastern Province", "type": "Province" }, { "code": "LK-51", "name": "Batticaloa", "parent": "5", "type": "District" }, { "code": "LK-52", "name": "Ampara", "parent": "5", "type": "District" }, { "code": "LK-53", "name": "Trincomalee", "parent": "5", "type": "District" }, { "code": "LK-6", "name": "North Western Province", "type": "Province" }, { "code": "LK-61", "name": "Kurunegala", "parent": "6", "type": "District" }, { "code": "LK-62", "name": "Puttalam", "parent": "6", "type": "District" }, { "code": "LK-7", "name": "North Central Province", "type": "Province" }, { "code": "LK-71", "name": "Anuradhapura", "parent": "7", "type": "District" }, { "code": "LK-72", "name": "Polonnaruwa", "parent": "7", "type": "District" }, { "code": "LK-8", "name": "Uva Province", "type": "Province" }, { "code": "LK-81", "name": "Badulla", "parent": "8", "type": "District" }, { "code": "LK-82", "name": "Monaragala", "parent": "8", "type": "District" }, { "code": "LK-9", "name": "Sabaragamuwa Province", "type": "Province" }, { "code": "LK-91", "name": "Ratnapura", "parent": "9", "type": "District" }, { "code": "LK-92", "name": "Kegalla", "parent": "9", "type": "District" }, { "code": "LR-BG", "name": "Bong", "type": "County" }, { "code": "LR-BM", "name": "Bomi", "type": "County" }, { "code": "LR-CM", "name": "Grand Cape Mount", "type": "County" }, { "code": "LR-GB", "name": "Grand Bassa", "type": "County" }, { "code": "LR-GG", "name": "Grand Gedeh", "type": "County" }, { "code": "LR-GK", "name": "Grand Kru", "type": "County" }, { "code": "LR-GP", "name": "Gbarpolu", "type": "County" }, { "code": "LR-LO", "name": "Lofa", "type": "County" }, { "code": "LR-MG", "name": "Margibi", "type": "County" }, { "code": "LR-MO", "name": "Montserrado", "type": "County" }, { "code": "LR-MY", "name": "Maryland", "type": "County" }, { "code": "LR-NI", "name": "Nimba", "type": "County" }, { "code": "LR-RG", "name": "River Gee", "type": "County" }, { "code": "LR-RI", "name": "River Cess", "type": "County" }, { "code": "LR-SI", "name": "Sinoe", "type": "County" }, { "code": "LS-A", "name": "Maseru", "type": "District" }, { "code": "LS-B", "name": "Botha-Bothe", "type": "District" }, { "code": "LS-C", "name": "Leribe", "type": "District" }, { "code": "LS-D", "name": "Berea", "type": "District" }, { "code": "LS-E", "name": "Mafeteng", "type": "District" }, { "code": "LS-F", "name": "Mohale's Hoek", "type": "District" }, { "code": "LS-G", "name": "Quthing", "type": "District" }, { "code": "LS-H", "name": "Qacha's Nek", "type": "District" }, { "code": "LS-J", "name": "Mokhotlong", "type": "District" }, { "code": "LS-K", "name": "Thaba-Tseka", "type": "District" }, { "code": "LT-01", "name": "Akmen", "type": "District municipality" }, { "code": "LT-02", "name": "Alytaus miestas", "type": "City municipality" }, { "code": "LT-03", "name": "Alytus", "type": "District municipality" }, { "code": "LT-04", "name": "Anyk禳iai", "type": "District municipality" }, { "code": "LT-05", "name": "Bir禳tono", "type": "Municipality" }, { "code": "LT-06", "name": "Bir鱉ai", "type": "District municipality" }, { "code": "LT-07", "name": "Druskininkai", "type": "Municipality" }, { "code": "LT-08", "name": "Elektrnai", "type": "Municipality" }, { "code": "LT-09", "name": "Ignalina", "type": "District municipality" }, { "code": "LT-10", "name": "Jonava", "type": "District municipality" }, { "code": "LT-11", "name": "Joni禳kis", "type": "District municipality" }, { "code": "LT-12", "name": "Jurbarkas", "type": "District municipality" }, { "code": "LT-13", "name": "Kai禳iadorys", "type": "District municipality" }, { "code": "LT-14", "name": "Kalvarijos", "type": "Municipality" }, { "code": "LT-15", "name": "Kauno miestas", "type": "City municipality" }, { "code": "LT-16", "name": "Kaunas", "type": "District municipality" }, { "code": "LT-17", "name": "Kazl鑒 R贖dos", "type": "Municipality" }, { "code": "LT-18", "name": "Kdainiai", "type": "District municipality" }, { "code": "LT-19", "name": "Kelm", "type": "District municipality" }, { "code": "LT-20", "name": "Klaipdos miestas", "type": "City municipality" }, { "code": "LT-21", "name": "Klaipda", "type": "District municipality" }, { "code": "LT-22", "name": "Kretinga", "type": "District municipality" }, { "code": "LT-23", "name": "Kupi禳kis", "type": "District municipality" }, { "code": "LT-24", "name": "Lazdijai", "type": "District municipality" }, { "code": "LT-25", "name": "Marijampol", "type": "District municipality" }, { "code": "LT-26", "name": "Ma鱉eikiai", "type": "District municipality" }, { "code": "LT-27", "name": "Moltai", "type": "District municipality" }, { "code": "LT-28", "name": "Neringa", "type": "Municipality" }, { "code": "LT-29", "name": "Paggiai", "type": "Municipality" }, { "code": "LT-30", "name": "Pakruojis", "type": "District municipality" }, { "code": "LT-31", "name": "Palangos miestas", "type": "City municipality" }, { "code": "LT-32", "name": "Panev鱉io miestas", "type": "City municipality" }, { "code": "LT-33", "name": "Panev鱉ys", "type": "District municipality" }, { "code": "LT-34", "name": "Pasvalys", "type": "District municipality" }, { "code": "LT-35", "name": "Plung", "type": "District municipality" }, { "code": "LT-36", "name": "Prienai", "type": "District municipality" }, { "code": "LT-37", "name": "Radvili禳kis", "type": "District municipality" }, { "code": "LT-38", "name": "Raseiniai", "type": "District municipality" }, { "code": "LT-39", "name": "Rietavo", "type": "Municipality" }, { "code": "LT-40", "name": "Roki禳kis", "type": "District municipality" }, { "code": "LT-41", "name": "akiai", "type": "District municipality" }, { "code": "LT-42", "name": "alininkai", "type": "District municipality" }, { "code": "LT-43", "name": "iauli鑒 miestas", "type": "City municipality" }, { "code": "LT-44", "name": "iauliai", "type": "District municipality" }, { "code": "LT-45", "name": "ilal", "type": "District municipality" }, { "code": "LT-46", "name": "ilut", "type": "District municipality" }, { "code": "LT-47", "name": "irvintos", "type": "District municipality" }, { "code": "LT-48", "name": "Skuodas", "type": "District municipality" }, { "code": "LT-49", "name": "venionys", "type": "District municipality" }, { "code": "LT-50", "name": "Taurag", "type": "District municipality" }, { "code": "LT-51", "name": "Tel禳iai", "type": "District municipality" }, { "code": "LT-52", "name": "Trakai", "type": "District municipality" }, { "code": "LT-53", "name": "Ukmerg", "type": "District municipality" }, { "code": "LT-54", "name": "Utena", "type": "District municipality" }, { "code": "LT-55", "name": "Varna", "type": "District municipality" }, { "code": "LT-56", "name": "Vilkavi禳kis", "type": "District municipality" }, { "code": "LT-57", "name": "Vilniaus miestas", "type": "City municipality" }, { "code": "LT-58", "name": "Vilnius", "type": "District municipality" }, { "code": "LT-59", "name": "Visaginas", "type": "Municipality" }, { "code": "LT-60", "name": "Zarasai", "type": "District municipality" }, { "code": "LT-AL", "name": "Alytaus apskritis", "type": "County" }, { "code": "LT-KL", "name": "Klaipdos apskritis", "type": "County" }, { "code": "LT-KU", "name": "Kauno apskritis", "type": "County" }, { "code": "LT-MR", "name": "Marijampols apskritis", "type": "County" }, { "code": "LT-PN", "name": "Panev鱉io apskritis", "type": "County" }, { "code": "LT-SA", "name": "iauli鑒 apskritis", "type": "County" }, { "code": "LT-TA", "name": "Taurags apskritis", "type": "County" }, { "code": "LT-TE", "name": "Tel禳i鑒 apskritis", "type": "County" }, { "code": "LT-UT", "name": "Utenos apskritis", "type": "County" }, { "code": "LT-VL", "name": "Vilniaus apskritis", "type": "County" }, { "code": "LU-CA", "name": "Capellen", "type": "Canton" }, { "code": "LU-CL", "name": "Clerf", "type": "Canton" }, { "code": "LU-DI", "name": "Diekirch", "type": "Canton" }, { "code": "LU-EC", "name": "Echternach", "type": "Canton" }, { "code": "LU-ES", "name": "Esch an der Alzette", "type": "Canton" }, { "code": "LU-GR", "name": "Grevenmacher", "type": "Canton" }, { "code": "LU-LU", "name": "Luxembourg", "type": "Canton" }, { "code": "LU-ME", "name": "Mersch", "type": "Canton" }, { "code": "LU-RD", "name": "Redange", "type": "Canton" }, { "code": "LU-RM", "name": "Remich", "type": "Canton" }, { "code": "LU-VD", "name": "Veianen", "type": "Canton" }, { "code": "LU-WI", "name": "Wiltz", "type": "Canton" }, { "code": "LV-001", "name": "Aglonas novads", "type": "Municipality" }, { "code": "LV-002", "name": "Aizkraukles novads", "type": "Municipality" }, { "code": "LV-003", "name": "Aizputes novads", "type": "Municipality" }, { "code": "LV-004", "name": "Akn蘋stes novads", "type": "Municipality" }, { "code": "LV-005", "name": "Alojas novads", "type": "Municipality" }, { "code": "LV-006", "name": "Alsungas novads", "type": "Municipality" }, { "code": "LV-007", "name": "Al贖ksnes novads", "type": "Municipality" }, { "code": "LV-008", "name": "Amatas novads", "type": "Municipality" }, { "code": "LV-009", "name": "Apes novads", "type": "Municipality" }, { "code": "LV-010", "name": "Auces novads", "type": "Municipality" }, { "code": "LV-011", "name": "da鱉u novads", "type": "Municipality" }, { "code": "LV-012", "name": "Bab蘋tes novads", "type": "Municipality" }, { "code": "LV-013", "name": "Baldones novads", "type": "Municipality" }, { "code": "LV-014", "name": "Baltinavas novads", "type": "Municipality" }, { "code": "LV-015", "name": "Balvu novads", "type": "Municipality" }, { "code": "LV-016", "name": "Bauskas novads", "type": "Municipality" }, { "code": "LV-017", "name": "Bever蘋nas novads", "type": "Municipality" }, { "code": "LV-018", "name": "Brocnu novads", "type": "Municipality" }, { "code": "LV-019", "name": "Burtnieku novads", "type": "Municipality" }, { "code": "LV-020", "name": "Carnikavas novads", "type": "Municipality" }, { "code": "LV-021", "name": "Cesvaines novads", "type": "Municipality" }, { "code": "LV-022", "name": "Csu novads", "type": "Municipality" }, { "code": "LV-023", "name": "Ciblas novads", "type": "Municipality" }, { "code": "LV-024", "name": "Dagdas novads", "type": "Municipality" }, { "code": "LV-025", "name": "Daugavpils novads", "type": "Municipality" }, { "code": "LV-026", "name": "Dobeles novads", "type": "Municipality" }, { "code": "LV-027", "name": "Dundagas novads", "type": "Municipality" }, { "code": "LV-028", "name": "Durbes novads", "type": "Municipality" }, { "code": "LV-029", "name": "Engures novads", "type": "Municipality" }, { "code": "LV-030", "name": "rg躁u novads", "type": "Municipality" }, { "code": "LV-031", "name": "Garkalnes novads", "type": "Municipality" }, { "code": "LV-032", "name": "Grobias novads", "type": "Municipality" }, { "code": "LV-033", "name": "Gulbenes novads", "type": "Municipality" }, { "code": "LV-034", "name": "Iecavas novads", "type": "Municipality" }, { "code": "LV-035", "name": "Ik禳譟iles novads", "type": "Municipality" }, { "code": "LV-036", "name": "Il贖kstes novads", "type": "Municipality" }, { "code": "LV-037", "name": "Inukalna novads", "type": "Municipality" }, { "code": "LV-038", "name": "Jaunjelgavas novads", "type": "Municipality" }, { "code": "LV-039", "name": "Jaunpiebalgas novads", "type": "Municipality" }, { "code": "LV-040", "name": "Jaunpils novads", "type": "Municipality" }, { "code": "LV-041", "name": "Jelgavas novads", "type": "Municipality" }, { "code": "LV-042", "name": "Jkabpils novads", "type": "Municipality" }, { "code": "LV-043", "name": "Kandavas novads", "type": "Municipality" }, { "code": "LV-044", "name": "Krsavas novads", "type": "Municipality" }, { "code": "LV-045", "name": "Kocnu novads", "type": "Municipality" }, { "code": "LV-046", "name": "Kokneses novads", "type": "Municipality" }, { "code": "LV-047", "name": "Krslavas novads", "type": "Municipality" }, { "code": "LV-048", "name": "Krimuldas novads", "type": "Municipality" }, { "code": "LV-049", "name": "Krustpils novads", "type": "Municipality" }, { "code": "LV-050", "name": "Kuld蘋gas novads", "type": "Municipality" }, { "code": "LV-051", "name": "譯eguma novads", "type": "Municipality" }, { "code": "LV-052", "name": "譯ekavas novads", "type": "Municipality" }, { "code": "LV-053", "name": "Lielvrdes novads", "type": "Municipality" }, { "code": "LV-054", "name": "Limba鱉u novads", "type": "Municipality" }, { "code": "LV-055", "name": "L蘋gatnes novads", "type": "Municipality" }, { "code": "LV-056", "name": "L蘋vnu novads", "type": "Municipality" }, { "code": "LV-057", "name": "Lubnas novads", "type": "Municipality" }, { "code": "LV-058", "name": "Ludzas novads", "type": "Municipality" }, { "code": "LV-059", "name": "Madonas novads", "type": "Municipality" }, { "code": "LV-060", "name": "Mazsalacas novads", "type": "Municipality" }, { "code": "LV-061", "name": "Mlpils novads", "type": "Municipality" }, { "code": "LV-062", "name": "Mrupes novads", "type": "Municipality" }, { "code": "LV-063", "name": "Mrsraga novads", "type": "Municipality" }, { "code": "LV-064", "name": "Nauk禳nu novads", "type": "Municipality" }, { "code": "LV-065", "name": "Neretas novads", "type": "Municipality" }, { "code": "LV-066", "name": "N蘋cas novads", "type": "Municipality" }, { "code": "LV-067", "name": "Ogres novads", "type": "Municipality" }, { "code": "LV-068", "name": "Olaines novads", "type": "Municipality" }, { "code": "LV-069", "name": "Ozolnieku novads", "type": "Municipality" }, { "code": "LV-070", "name": "Prgaujas novads", "type": "Municipality" }, { "code": "LV-071", "name": "Pvilostas novads", "type": "Municipality" }, { "code": "LV-072", "name": "P躁aviu novads", "type": "Municipality" }, { "code": "LV-073", "name": "Prei躁u novads", "type": "Municipality" }, { "code": "LV-074", "name": "Priekules novads", "type": "Municipality" }, { "code": "LV-075", "name": "Prieku躁u novads", "type": "Municipality" }, { "code": "LV-076", "name": "Raunas novads", "type": "Municipality" }, { "code": "LV-077", "name": "Rzeknes novads", "type": "Municipality" }, { "code": "LV-078", "name": "Riebiu novads", "type": "Municipality" }, { "code": "LV-079", "name": "Rojas novads", "type": "Municipality" }, { "code": "LV-080", "name": "Ropa鱉u novads", "type": "Municipality" }, { "code": "LV-081", "name": "Rucavas novads", "type": "Municipality" }, { "code": "LV-082", "name": "Rugju novads", "type": "Municipality" }, { "code": "LV-083", "name": "Rundles novads", "type": "Municipality" }, { "code": "LV-084", "name": "R贖jienas novads", "type": "Municipality" }, { "code": "LV-085", "name": "Salas novads", "type": "Municipality" }, { "code": "LV-086", "name": "Salacgr蘋vas novads", "type": "Municipality" }, { "code": "LV-087", "name": "Salaspils novads", "type": "Municipality" }, { "code": "LV-088", "name": "Saldus novads", "type": "Municipality" }, { "code": "LV-089", "name": "Saulkrastu novads", "type": "Municipality" }, { "code": "LV-090", "name": "Sjas novads", "type": "Municipality" }, { "code": "LV-091", "name": "Siguldas novads", "type": "Municipality" }, { "code": "LV-092", "name": "Skr蘋veru novads", "type": "Municipality" }, { "code": "LV-093", "name": "Skrundas novads", "type": "Municipality" }, { "code": "LV-094", "name": "Smiltenes novads", "type": "Municipality" }, { "code": "LV-095", "name": "Stopiu novads", "type": "Municipality" }, { "code": "LV-096", "name": "Strenu novads", "type": "Municipality" }, { "code": "LV-097", "name": "Talsu novads", "type": "Municipality" }, { "code": "LV-098", "name": "Trvetes novads", "type": "Municipality" }, { "code": "LV-099", "name": "Tukuma novads", "type": "Municipality" }, { "code": "LV-100", "name": "Vaiodes novads", "type": "Municipality" }, { "code": "LV-101", "name": "Valkas novads", "type": "Municipality" }, { "code": "LV-102", "name": "Varak躁nu novads", "type": "Municipality" }, { "code": "LV-103", "name": "Vrkavas novads", "type": "Municipality" }, { "code": "LV-104", "name": "Vecpiebalgas novads", "type": "Municipality" }, { "code": "LV-105", "name": "Vecumnieku novads", "type": "Municipality" }, { "code": "LV-106", "name": "Ventspils novads", "type": "Municipality" }, { "code": "LV-107", "name": "Vies蘋tes novads", "type": "Municipality" }, { "code": "LV-108", "name": "Vi躁akas novads", "type": "Municipality" }, { "code": "LV-109", "name": "Vi躁nu novads", "type": "Municipality" }, { "code": "LV-110", "name": "Zilupes novads", "type": "Municipality" }, { "code": "LV-DGV", "name": "Daugavpils", "type": "Republican city" }, { "code": "LV-JEL", "name": "Jelgava", "type": "Republican city" }, { "code": "LV-JKB", "name": "Jkabpils", "type": "Republican city" }, { "code": "LV-JUR", "name": "J贖rmala", "type": "Republican city" }, { "code": "LV-LPX", "name": "Liepja", "type": "Republican city" }, { "code": "LV-REZ", "name": "Rzekne", "type": "Republican city" }, { "code": "LV-RIX", "name": "R蘋ga", "type": "Republican city" }, { "code": "LV-VEN", "name": "Ventspils", "type": "Republican city" }, { "code": "LV-VMR", "name": "Valmiera", "type": "Republican city" }, { "code": "LY-BA", "name": "Banghz蘋", "type": "Popularate" }, { "code": "LY-BU", "name": "Al Bu籟nn", "type": "Popularate" }, { "code": "LY-DR", "name": "Darnah", "type": "Popularate" }, { "code": "LY-GT", "name": "Ght", "type": "Popularate" }, { "code": "LY-JA", "name": "Al Jabal al Akh廎ar", "type": "Popularate" }, { "code": "LY-JG", "name": "Al Jabal al Gharb蘋", "type": "Popularate" }, { "code": "LY-JI", "name": "Al Jafrah", "type": "Popularate" }, { "code": "LY-JU", "name": "Al Jufrah", "type": "Popularate" }, { "code": "LY-KF", "name": "Al Kufrah", "type": "Popularate" }, { "code": "LY-MB", "name": "Al Marqab", "type": "Popularate" }, { "code": "LY-MI", "name": "Mirtah", "type": "Popularate" }, { "code": "LY-MJ", "name": "Al Marj", "type": "Popularate" }, { "code": "LY-MQ", "name": "Murzuq", "type": "Popularate" }, { "code": "LY-NL", "name": "Nl贖t", "type": "Popularate" }, { "code": "LY-NQ", "name": "An Nuq籟 al Khams", "type": "Popularate" }, { "code": "LY-SB", "name": "Sabh", "type": "Popularate" }, { "code": "LY-SR", "name": "Surt", "type": "Popularate" }, { "code": "LY-TB", "name": "籠arbulus", "type": "Popularate" }, { "code": "LY-WA", "name": "Al W廎怯t", "type": "Popularate" }, { "code": "LY-WD", "name": "Wd蘋 al 廎災yt", "type": "Popularate" }, { "code": "LY-WS", "name": "Wd蘋 ash Sh籟i", "type": "Popularate" }, { "code": "LY-ZA", "name": "Az Zwiyah", "type": "Popularate" }, { "code": "MA-01", "name": "Tanger-T矇touan-Al Hoce簿ma", "type": "Region" }, { "code": "MA-02", "name": "L'Oriental", "type": "Region" }, { "code": "MA-03", "name": "F癡s-Mekn癡s", "type": "Region" }, { "code": "MA-04", "name": "Rabat-Sal矇-K矇nitra", "type": "Region" }, { "code": "MA-05", "name": "B矇ni Mellal-Kh矇nifra", "type": "Region" }, { "code": "MA-06", "name": "Casablanca-Settat", "type": "Region" }, { "code": "MA-07", "name": "Marrakech-Safi", "type": "Region" }, { "code": "MA-08", "name": "Dr璽a-Tafilalet", "type": "Region" }, { "code": "MA-09", "name": "Souss-Massa", "type": "Region" }, { "code": "MA-10", "name": "Guelmim-Oued Noun (EH-partial)", "type": "Region" }, { "code": "MA-11", "name": "La璽youne-Sakia El Hamra (EH-partial)", "type": "Region" }, { "code": "MA-12", "name": "Dakhla-Oued Ed-Dahab (EH)", "type": "Region" }, { "code": "MA-AGD", "name": "Agadir-Ida-Ou-Tanane", "parent": "09", "type": "Prefecture" }, { "code": "MA-AOU", "name": "Aousserd (EH)", "parent": "12", "type": "Province" }, { "code": "MA-ASZ", "name": "Assa-Zag (EH-partial)", "parent": "10", "type": "Province" }, { "code": "MA-AZI", "name": "Azilal", "parent": "05", "type": "Province" }, { "code": "MA-BEM", "name": "B矇ni Mellal", "parent": "05", "type": "Province" }, { "code": "MA-BER", "name": "Berkane", "parent": "02", "type": "Province" }, { "code": "MA-BES", "name": "Benslimane", "parent": "06", "type": "Province" }, { "code": "MA-BOD", "name": "Boujdour (EH)", "parent": "11", "type": "Province" }, { "code": "MA-BOM", "name": "Boulemane", "parent": "03", "type": "Province" }, { "code": "MA-BRR", "name": "Berrechid", "parent": "06", "type": "Province" }, { "code": "MA-CAS", "name": "Casablanca", "parent": "06", "type": "Prefecture" }, { "code": "MA-CHE", "name": "Chefchaouen", "parent": "01", "type": "Province" }, { "code": "MA-CHI", "name": "Chichaoua", "parent": "07", "type": "Province" }, { "code": "MA-CHT", "name": "Chtouka-Ait Baha", "parent": "06", "type": "Province" }, { "code": "MA-DRI", "name": "Driouch", "parent": "02", "type": "Province" }, { "code": "MA-ERR", "name": "Errachidia", "parent": "08", "type": "Province" }, { "code": "MA-ESI", "name": "Essaouira", "parent": "07", "type": "Province" }, { "code": "MA-ESM", "name": "Es-Semara (EH-partial)", "parent": "11", "type": "Province" }, { "code": "MA-FAH", "name": "Fahs-Anjra", "parent": "01", "type": "Province" }, { "code": "MA-FES", "name": "F癡s", "parent": "03", "type": "Prefecture" }, { "code": "MA-FIG", "name": "Figuig", "parent": "02", "type": "Province" }, { "code": "MA-FQH", "name": "Fquih Ben Salah", "parent": "05", "type": "Province" }, { "code": "MA-GUE", "name": "Guelmim", "parent": "10", "type": "Province" }, { "code": "MA-GUF", "name": "Guercif", "parent": "02", "type": "Province" }, { "code": "MA-HAJ", "name": "El Hajeb", "parent": "03", "type": "Province" }, { "code": "MA-HAO", "name": "Al Haouz", "parent": "07", "type": "Province" }, { "code": "MA-HOC", "name": "Al Hoce簿ma", "parent": "01", "type": "Province" }, { "code": "MA-IFR", "name": "Ifrane", "parent": "03", "type": "Province" }, { "code": "MA-INE", "name": "Inezgane-Ait Melloul", "parent": "09", "type": "Prefecture" }, { "code": "MA-JDI", "name": "El Jadida", "parent": "06", "type": "Province" }, { "code": "MA-JRA", "name": "Jerada", "parent": "02", "type": "Province" }, { "code": "MA-KEN", "name": "K矇nitra", "parent": "04", "type": "Province" }, { "code": "MA-KES", "name": "El Kel璽a des Sraghna", "parent": "07", "type": "Province" }, { "code": "MA-KHE", "name": "Kh矇misset", "parent": "04", "type": "Province" }, { "code": "MA-KHN", "name": "Kh矇nifra", "parent": "05", "type": "Province" }, { "code": "MA-KHO", "name": "Khouribga", "parent": "05", "type": "Province" }, { "code": "MA-LAA", "name": "La璽youne (EH)", "parent": "11", "type": "Province" }, { "code": "MA-LAR", "name": "Larache", "parent": "01", "type": "Province" }, { "code": "MA-MAR", "name": "Marrakech", "parent": "07", "type": "Prefecture" }, { "code": "MA-MDF", "name": "Mdiq-Fnideq", "parent": "01", "type": "Prefecture" }, { "code": "MA-MED", "name": "M矇diouna", "parent": "06", "type": "Province" }, { "code": "MA-MEK", "name": "Mekn癡s", "parent": "03", "type": "Prefecture" }, { "code": "MA-MID", "name": "Midelt", "parent": "08", "type": "Province" }, { "code": "MA-MOH", "name": "Mohammadia", "parent": "06", "type": "Prefecture" }, { "code": "MA-MOU", "name": "Moulay Yacoub", "parent": "03", "type": "Province" }, { "code": "MA-NAD", "name": "Nador", "parent": "02", "type": "Province" }, { "code": "MA-NOU", "name": "Nouaceur", "parent": "04", "type": "Province" }, { "code": "MA-OUA", "name": "Ouarzazate", "parent": "08", "type": "Province" }, { "code": "MA-OUD", "name": "Oued Ed-Dahab (EH)", "parent": "12", "type": "Province" }, { "code": "MA-OUJ", "name": "Oujda-Angad", "parent": "02", "type": "Prefecture" }, { "code": "MA-OUZ", "name": "Ouezzane", "parent": "01", "type": "Province" }, { "code": "MA-RAB", "name": "Rabat", "parent": "04", "type": "Prefecture" }, { "code": "MA-REH", "name": "Rehamna", "parent": "07", "type": "Province" }, { "code": "MA-SAF", "name": "Safi", "parent": "07", "type": "Province" }, { "code": "MA-SAL", "name": "Sal矇", "parent": "04", "type": "Prefecture" }, { "code": "MA-SEF", "name": "Sefrou", "parent": "03", "type": "Province" }, { "code": "MA-SET", "name": "Settat", "parent": "06", "type": "Province" }, { "code": "MA-SIB", "name": "Sidi Bennour", "parent": "06", "type": "Province" }, { "code": "MA-SIF", "name": "Sidi Ifni", "parent": "10", "type": "Province" }, { "code": "MA-SIK", "name": "Sidi Kacem", "parent": "04", "type": "Province" }, { "code": "MA-SIL", "name": "Sidi Slimane", "parent": "04", "type": "Province" }, { "code": "MA-SKH", "name": "Skhirate-T矇mara", "parent": "04", "type": "Prefecture" }, { "code": "MA-TAF", "name": "Tarfaya (EH-partial)", "parent": "11", "type": "Province" }, { "code": "MA-TAI", "name": "Taourirt", "parent": "02", "type": "Province" }, { "code": "MA-TAO", "name": "Taounate", "parent": "03", "type": "Province" }, { "code": "MA-TAR", "name": "Taroudannt", "parent": "09", "type": "Province" }, { "code": "MA-TAT", "name": "Tata", "parent": "09", "type": "Province" }, { "code": "MA-TAZ", "name": "Taza", "parent": "03", "type": "Province" }, { "code": "MA-TET", "name": "T矇touan", "parent": "01", "type": "Province" }, { "code": "MA-TIN", "name": "Tinghir", "parent": "08", "type": "Province" }, { "code": "MA-TIZ", "name": "Tiznit", "parent": "09", "type": "Province" }, { "code": "MA-TNG", "name": "Tanger-Assilah", "parent": "01", "type": "Prefecture" }, { "code": "MA-TNT", "name": "Tan-Tan (EH-partial)", "parent": "10", "type": "Province" }, { "code": "MA-YUS", "name": "Youssoufia", "parent": "07", "type": "Province" }, { "code": "MA-ZAG", "name": "Zagora", "parent": "08", "type": "Province" }, { "code": "MC-CL", "name": "La Colle", "type": "Quarter" }, { "code": "MC-CO", "name": "La Condamine", "type": "Quarter" }, { "code": "MC-FO", "name": "Fontvieille", "type": "Quarter" }, { "code": "MC-GA", "name": "La Gare", "type": "Quarter" }, { "code": "MC-JE", "name": "Jardin Exotique", "type": "Quarter" }, { "code": "MC-LA", "name": "Larvotto", "type": "Quarter" }, { "code": "MC-MA", "name": "Malbousquet", "type": "Quarter" }, { "code": "MC-MC", "name": "Monte-Carlo", "type": "Quarter" }, { "code": "MC-MG", "name": "Moneghetti", "type": "Quarter" }, { "code": "MC-MO", "name": "Monaco-Ville", "type": "Quarter" }, { "code": "MC-MU", "name": "Moulins", "type": "Quarter" }, { "code": "MC-PH", "name": "Port-Hercule", "type": "Quarter" }, { "code": "MC-SD", "name": "Sainte-D矇vote", "type": "Quarter" }, { "code": "MC-SO", "name": "La Source", "type": "Quarter" }, { "code": "MC-SP", "name": "Sp矇lugues", "type": "Quarter" }, { "code": "MC-SR", "name": "Saint-Roman", "type": "Quarter" }, { "code": "MC-VR", "name": "Vallon de la Rousse", "type": "Quarter" }, { "code": "MD-AN", "name": "Anenii Noi", "type": "District" }, { "code": "MD-BA", "name": "Bli", "type": "City" }, { "code": "MD-BD", "name": "Bender [Tighina]", "type": "City" }, { "code": "MD-BR", "name": "Briceni", "type": "District" }, { "code": "MD-BS", "name": "Basarabeasca", "type": "District" }, { "code": "MD-CA", "name": "Cahul", "type": "District" }, { "code": "MD-CL", "name": "Clrai", "type": "District" }, { "code": "MD-CM", "name": "Cimilia", "type": "District" }, { "code": "MD-CR", "name": "Criuleni", "type": "District" }, { "code": "MD-CS", "name": "Cueni", "type": "District" }, { "code": "MD-CT", "name": "Cantemir", "type": "District" }, { "code": "MD-CU", "name": "Chiinu", "type": "City" }, { "code": "MD-DO", "name": "Dondueni", "type": "District" }, { "code": "MD-DR", "name": "Drochia", "type": "District" }, { "code": "MD-DU", "name": "Dubsari", "type": "District" }, { "code": "MD-ED", "name": "Edine", "type": "District" }, { "code": "MD-FA", "name": "Fleti", "type": "District" }, { "code": "MD-FL", "name": "Floreti", "type": "District" }, { "code": "MD-GA", "name": "Gguzia, Unitatea teritorial autonom (UTAG)", "type": "Autonomous territorial unit" }, { "code": "MD-GL", "name": "Glodeni", "type": "District" }, { "code": "MD-HI", "name": "H簾nceti", "type": "District" }, { "code": "MD-IA", "name": "Ialoveni", "type": "District" }, { "code": "MD-LE", "name": "Leova", "type": "District" }, { "code": "MD-NI", "name": "Nisporeni", "type": "District" }, { "code": "MD-OC", "name": "Ocnia", "type": "District" }, { "code": "MD-OR", "name": "Orhei", "type": "District" }, { "code": "MD-RE", "name": "Rezina", "type": "District" }, { "code": "MD-RI", "name": "R簾cani", "type": "District" }, { "code": "MD-SD", "name": "oldneti", "type": "District" }, { "code": "MD-SI", "name": "S簾ngerei", "type": "District" }, { "code": "MD-SN", "name": "St簾nga Nistrului, unitatea teritorial din", "type": "Territorial unit" }, { "code": "MD-SO", "name": "Soroca", "type": "District" }, { "code": "MD-ST", "name": "Streni", "type": "District" }, { "code": "MD-SV", "name": "tefan Vod", "type": "District" }, { "code": "MD-TA", "name": "Taraclia", "type": "District" }, { "code": "MD-TE", "name": "Teleneti", "type": "District" }, { "code": "MD-UN", "name": "Ungheni", "type": "District" }, { "code": "ME-01", "name": "Andrijevica", "type": "Municipality" }, { "code": "ME-02", "name": "Bar", "type": "Municipality" }, { "code": "ME-03", "name": "Berane", "type": "Municipality" }, { "code": "ME-04", "name": "Bijelo Polje", "type": "Municipality" }, { "code": "ME-05", "name": "Budva", "type": "Municipality" }, { "code": "ME-06", "name": "Cetinje", "type": "Municipality" }, { "code": "ME-07", "name": "Danilovgrad", "type": "Municipality" }, { "code": "ME-08", "name": "Herceg-Novi", "type": "Municipality" }, { "code": "ME-09", "name": "Kola禳in", "type": "Municipality" }, { "code": "ME-10", "name": "Kotor", "type": "Municipality" }, { "code": "ME-11", "name": "Mojkovac", "type": "Municipality" }, { "code": "ME-12", "name": "Nik禳i", "type": "Municipality" }, { "code": "ME-13", "name": "Plav", "type": "Municipality" }, { "code": "ME-14", "name": "Pljevlja", "type": "Municipality" }, { "code": "ME-15", "name": "Plu鱉ine", "type": "Municipality" }, { "code": "ME-16", "name": "Podgorica", "type": "Municipality" }, { "code": "ME-17", "name": "Ro鱉aje", "type": "Municipality" }, { "code": "ME-18", "name": "avnik", "type": "Municipality" }, { "code": "ME-19", "name": "Tivat", "type": "Municipality" }, { "code": "ME-20", "name": "Ulcinj", "type": "Municipality" }, { "code": "ME-21", "name": "鬚abljak", "type": "Municipality" }, { "code": "ME-22", "name": "Gusinje", "type": "Municipality" }, { "code": "ME-23", "name": "Petnjica", "type": "Municipality" }, { "code": "ME-24", "name": "Tuzi", "type": "Municipality" }, { "code": "MG-A", "name": "Toamasina", "type": "Province" }, { "code": "MG-D", "name": "Antsiranana", "type": "Province" }, { "code": "MG-F", "name": "Fianarantsoa", "type": "Province" }, { "code": "MG-M", "name": "Mahajanga", "type": "Province" }, { "code": "MG-T", "name": "Antananarivo", "type": "Province" }, { "code": "MG-U", "name": "Toliara", "type": "Province" }, { "code": "MH-ALK", "name": "Ailuk", "parent": "T", "type": "Municipality" }, { "code": "MH-ALL", "name": "Ailinglaplap", "parent": "L", "type": "Municipality" }, { "code": "MH-ARN", "name": "Arno", "parent": "T", "type": "Municipality" }, { "code": "MH-AUR", "name": "Aur", "parent": "T", "type": "Municipality" }, { "code": "MH-EBO", "name": "Ebon", "parent": "L", "type": "Municipality" }, { "code": "MH-ENI", "name": "Enewetak & Ujelang", "parent": "L", "type": "Municipality" }, { "code": "MH-JAB", "name": "Jabat", "parent": "L", "type": "Municipality" }, { "code": "MH-JAL", "name": "Jaluit", "parent": "L", "type": "Municipality" }, { "code": "MH-KIL", "name": "Bikini & Kili", "parent": "L", "type": "Municipality" }, { "code": "MH-KWA", "name": "Kwajalein", "parent": "L", "type": "Municipality" }, { "code": "MH-L", "name": "Ralik chain", "type": "Chain (of islands)" }, { "code": "MH-LAE", "name": "Lae", "parent": "L", "type": "Municipality" }, { "code": "MH-LIB", "name": "Lib", "parent": "L", "type": "Municipality" }, { "code": "MH-LIK", "name": "Likiep", "parent": "T", "type": "Municipality" }, { "code": "MH-MAJ", "name": "Majuro", "parent": "T", "type": "Municipality" }, { "code": "MH-MAL", "name": "Maloelap", "parent": "T", "type": "Municipality" }, { "code": "MH-MEJ", "name": "Mejit", "parent": "T", "type": "Municipality" }, { "code": "MH-MIL", "name": "Mili", "parent": "T", "type": "Municipality" }, { "code": "MH-NMK", "name": "Namdrik", "parent": "L", "type": "Municipality" }, { "code": "MH-NMU", "name": "Namu", "parent": "L", "type": "Municipality" }, { "code": "MH-RON", "name": "Rongelap", "parent": "L", "type": "Municipality" }, { "code": "MH-T", "name": "Ratak chain", "type": "Chain (of islands)" }, { "code": "MH-UJA", "name": "Ujae", "parent": "L", "type": "Municipality" }, { "code": "MH-UTI", "name": "Utrik", "parent": "T", "type": "Municipality" }, { "code": "MH-WTH", "name": "Wotho", "parent": "L", "type": "Municipality" }, { "code": "MH-WTJ", "name": "Wotje", "parent": "T", "type": "Municipality" }, { "code": "MK-101", "name": "Veles", "type": "Municipality" }, { "code": "MK-102", "name": "Gradsko", "type": "Municipality" }, { "code": "MK-103", "name": "Demir Kapija", "type": "Municipality" }, { "code": "MK-104", "name": "Kavadarci", "type": "Municipality" }, { "code": "MK-105", "name": "Lozovo", "type": "Municipality" }, { "code": "MK-106", "name": "Negotino", "type": "Municipality" }, { "code": "MK-107", "name": "Rosoman", "type": "Municipality" }, { "code": "MK-108", "name": "Sveti Nikole", "type": "Municipality" }, { "code": "MK-109", "name": "a禳ka", "type": "Municipality" }, { "code": "MK-201", "name": "Berovo", "type": "Municipality" }, { "code": "MK-202", "name": "Vinica", "type": "Municipality" }, { "code": "MK-203", "name": "Delevo", "type": "Municipality" }, { "code": "MK-204", "name": "Zrnovci", "type": "Municipality" }, { "code": "MK-205", "name": "Karbinci", "type": "Municipality" }, { "code": "MK-206", "name": "Koani", "type": "Municipality" }, { "code": "MK-207", "name": "Makedonska Kamenica", "type": "Municipality" }, { "code": "MK-208", "name": "Pehevo", "type": "Municipality" }, { "code": "MK-209", "name": "Probi禳tip", "type": "Municipality" }, { "code": "MK-210", "name": "e禳inovo-Oble禳evo", "type": "Municipality" }, { "code": "MK-211", "name": "tip", "type": "Municipality" }, { "code": "MK-301", "name": "Vevani", "type": "Municipality" }, { "code": "MK-303", "name": "Debar", "type": "Municipality" }, { "code": "MK-304", "name": "Debrca", "type": "Municipality" }, { "code": "MK-307", "name": "Kievo", "type": "Municipality" }, { "code": "MK-308", "name": "Makedonski Brod", "type": "Municipality" }, { "code": "MK-310", "name": "Ohrid", "type": "Municipality" }, { "code": "MK-311", "name": "Plasnica", "type": "Municipality" }, { "code": "MK-312", "name": "Struga", "type": "Municipality" }, { "code": "MK-313", "name": "Centar 鬚upa", "type": "Municipality" }, { "code": "MK-401", "name": "Bogdanci", "type": "Municipality" }, { "code": "MK-402", "name": "Bosilovo", "type": "Municipality" }, { "code": "MK-403", "name": "Valandovo", "type": "Municipality" }, { "code": "MK-404", "name": "Vasilevo", "type": "Municipality" }, { "code": "MK-405", "name": "Gevgelija", "type": "Municipality" }, { "code": "MK-406", "name": "Dojran", "type": "Municipality" }, { "code": "MK-407", "name": "Kone", "type": "Municipality" }, { "code": "MK-408", "name": "Novo Selo", "type": "Municipality" }, { "code": "MK-409", "name": "Radovi禳", "type": "Municipality" }, { "code": "MK-410", "name": "Strumica", "type": "Municipality" }, { "code": "MK-501", "name": "Bitola", "type": "Municipality" }, { "code": "MK-502", "name": "Demir Hisar", "type": "Municipality" }, { "code": "MK-503", "name": "Dolneni", "type": "Municipality" }, { "code": "MK-504", "name": "Krivoga禳tani", "type": "Municipality" }, { "code": "MK-505", "name": "Kru禳evo", "type": "Municipality" }, { "code": "MK-506", "name": "Mogila", "type": "Municipality" }, { "code": "MK-507", "name": "Novaci", "type": "Municipality" }, { "code": "MK-508", "name": "Prilep", "type": "Municipality" }, { "code": "MK-509", "name": "Resen", "type": "Municipality" }, { "code": "MK-601", "name": "Bogovinje", "type": "Municipality" }, { "code": "MK-602", "name": "Brvenica", "type": "Municipality" }, { "code": "MK-603", "name": "Vrapi禳te", "type": "Municipality" }, { "code": "MK-604", "name": "Gostivar", "type": "Municipality" }, { "code": "MK-605", "name": "鬚elino", "type": "Municipality" }, { "code": "MK-606", "name": "Jegunovce", "type": "Municipality" }, { "code": "MK-607", "name": "Mavrovo i Rostu禳e", "type": "Municipality" }, { "code": "MK-608", "name": "Tearce", "type": "Municipality" }, { "code": "MK-609", "name": "Tetovo", "type": "Municipality" }, { "code": "MK-701", "name": "Kratovo", "type": "Municipality" }, { "code": "MK-702", "name": "Kriva Palanka", "type": "Municipality" }, { "code": "MK-703", "name": "Kumanovo", "type": "Municipality" }, { "code": "MK-704", "name": "Lipkovo", "type": "Municipality" }, { "code": "MK-705", "name": "Rankovce", "type": "Municipality" }, { "code": "MK-706", "name": "Staro Nagoriane", "type": "Municipality" }, { "code": "MK-801", "name": "Aerodrom ", "type": "Municipality" }, { "code": "MK-802", "name": "Arainovo", "type": "Municipality" }, { "code": "MK-803", "name": "Butel ", "type": "Municipality" }, { "code": "MK-804", "name": "Gazi Baba ", "type": "Municipality" }, { "code": "MK-805", "name": "Gjore Petrov ", "type": "Municipality" }, { "code": "MK-806", "name": "Zelenikovo", "type": "Municipality" }, { "code": "MK-807", "name": "Ilinden", "type": "Municipality" }, { "code": "MK-808", "name": "Karpo禳 ", "type": "Municipality" }, { "code": "MK-809", "name": "Kisela Voda ", "type": "Municipality" }, { "code": "MK-810", "name": "Petrovec", "type": "Municipality" }, { "code": "MK-811", "name": "Saraj ", "type": "Municipality" }, { "code": "MK-812", "name": "Sopi禳te", "type": "Municipality" }, { "code": "MK-813", "name": "Studeniani", "type": "Municipality" }, { "code": "MK-814", "name": "Centar ", "type": "Municipality" }, { "code": "MK-815", "name": "air ", "type": "Municipality" }, { "code": "MK-816", "name": "uer-Sandevo", "type": "Municipality" }, { "code": "MK-817", "name": "uto Orizari ", "type": "Municipality" }, { "code": "ML-1", "name": "Kayes", "type": "Region" }, { "code": "ML-10", "name": "Taoud矇nit", "type": "Region" }, { "code": "ML-2", "name": "Koulikoro", "type": "Region" }, { "code": "ML-3", "name": "Sikasso", "type": "Region" }, { "code": "ML-4", "name": "S矇gou", "type": "Region" }, { "code": "ML-5", "name": "Mopti", "type": "Region" }, { "code": "ML-6", "name": "Tombouctou", "type": "Region" }, { "code": "ML-7", "name": "Gao", "type": "Region" }, { "code": "ML-8", "name": "Kidal", "type": "Region" }, { "code": "ML-9", "name": "M矇naka", "type": "Region" }, { "code": "ML-BKO", "name": "Bamako", "type": "District" }, { "code": "MM-01", "name": "Sagaing", "type": "Region" }, { "code": "MM-02", "name": "Bago", "type": "Region" }, { "code": "MM-03", "name": "Magway", "type": "Region" }, { "code": "MM-04", "name": "Mandalay", "type": "Region" }, { "code": "MM-05", "name": "Tanintharyi", "type": "Region" }, { "code": "MM-06", "name": "Yangon", "type": "Region" }, { "code": "MM-07", "name": "Ayeyarwady", "type": "Region" }, { "code": "MM-11", "name": "Kachin", "type": "State" }, { "code": "MM-12", "name": "Kayah", "type": "State" }, { "code": "MM-13", "name": "Kayin", "type": "State" }, { "code": "MM-14", "name": "Chin", "type": "State" }, { "code": "MM-15", "name": "Mon", "type": "State" }, { "code": "MM-16", "name": "Rakhine", "type": "State" }, { "code": "MM-17", "name": "Shan", "type": "State" }, { "code": "MM-18", "name": "Nay Pyi Taw", "type": "Union territory" }, { "code": "MN-035", "name": "Orhon", "type": "Province" }, { "code": "MN-037", "name": "Darhan uul", "type": "Province" }, { "code": "MN-039", "name": "Hentiy", "type": "Province" }, { "code": "MN-041", "name": "H繹vsg繹l", "type": "Province" }, { "code": "MN-043", "name": "Hovd", "type": "Province" }, { "code": "MN-046", "name": "Uvs", "type": "Province" }, { "code": "MN-047", "name": "T繹v", "type": "Province" }, { "code": "MN-049", "name": "Selenge", "type": "Province" }, { "code": "MN-051", "name": "S羹hbaatar", "type": "Province" }, { "code": "MN-053", "name": "mn繹gov蘊", "type": "Province" }, { "code": "MN-055", "name": "v繹rhangay", "type": "Province" }, { "code": "MN-057", "name": "Dzavhan", "type": "Province" }, { "code": "MN-059", "name": "Dundgov蘊", "type": "Province" }, { "code": "MN-061", "name": "Dornod", "type": "Province" }, { "code": "MN-063", "name": "Dornogov蘊", "type": "Province" }, { "code": "MN-064", "name": "Gov蘊-S羹mber", "type": "Province" }, { "code": "MN-065", "name": "Gov蘊-Altay", "type": "Province" }, { "code": "MN-067", "name": "Bulgan", "type": "Province" }, { "code": "MN-069", "name": "Bayanhongor", "type": "Province" }, { "code": "MN-071", "name": "Bayan-lgiy", "type": "Province" }, { "code": "MN-073", "name": "Arhangay", "type": "Province" }, { "code": "MN-1", "name": "Ulaanbaatar", "type": "Capital city" }, { "code": "MR-01", "name": "Hodh ech Chargui", "type": "Region" }, { "code": "MR-02", "name": "Hodh el Gharbi", "type": "Region" }, { "code": "MR-03", "name": "Assaba", "type": "Region" }, { "code": "MR-04", "name": "Gorgol", "type": "Region" }, { "code": "MR-05", "name": "Brakna", "type": "Region" }, { "code": "MR-06", "name": "Trarza", "type": "Region" }, { "code": "MR-07", "name": "Adrar", "type": "Region" }, { "code": "MR-08", "name": "Dakhlet Nou璽dhibou", "type": "Region" }, { "code": "MR-09", "name": "Tagant", "type": "Region" }, { "code": "MR-10", "name": "Guidimaka", "type": "Region" }, { "code": "MR-11", "name": "Tiris Zemmour", "type": "Region" }, { "code": "MR-12", "name": "Inchiri", "type": "Region" }, { "code": "MR-13", "name": "Nouakchott Ouest", "type": "Region" }, { "code": "MR-14", "name": "Nouakchott Nord", "type": "Region" }, { "code": "MR-15", "name": "Nouakchott Sud", "type": "Region" }, { "code": "MT-01", "name": "Attard", "type": "Local council" }, { "code": "MT-02", "name": "Balzan", "type": "Local council" }, { "code": "MT-03", "name": "Birgu", "type": "Local council" }, { "code": "MT-04", "name": "Birkirkara", "type": "Local council" }, { "code": "MT-05", "name": "Bir髒ebbu纂a", "type": "Local council" }, { "code": "MT-06", "name": "Bormla", "type": "Local council" }, { "code": "MT-07", "name": "Dingli", "type": "Local council" }, { "code": "MT-08", "name": "Fgura", "type": "Local council" }, { "code": "MT-09", "name": "Floriana", "type": "Local council" }, { "code": "MT-10", "name": "Fontana", "type": "Local council" }, { "code": "MT-11", "name": "Gudja", "type": "Local council" }, { "code": "MT-12", "name": "G髒ira", "type": "Local council" }, { "code": "MT-13", "name": "G藹ajnsielem", "type": "Local council" }, { "code": "MT-14", "name": "G藹arb", "type": "Local council" }, { "code": "MT-15", "name": "G藹arg藹ur", "type": "Local council" }, { "code": "MT-16", "name": "G藹asri", "type": "Local council" }, { "code": "MT-17", "name": "G藹axaq", "type": "Local council" }, { "code": "MT-18", "name": "藻amrun", "type": "Local council" }, { "code": "MT-19", "name": "Iklin", "type": "Local council" }, { "code": "MT-20", "name": "Isla", "type": "Local council" }, { "code": "MT-21", "name": "Kalkara", "type": "Local council" }, { "code": "MT-22", "name": "Kerem", "type": "Local council" }, { "code": "MT-23", "name": "Kirkop", "type": "Local council" }, { "code": "MT-24", "name": "Lija", "type": "Local council" }, { "code": "MT-25", "name": "Luqa", "type": "Local council" }, { "code": "MT-26", "name": "Marsa", "type": "Local council" }, { "code": "MT-27", "name": "Marsaskala", "type": "Local council" }, { "code": "MT-28", "name": "Marsaxlokk", "type": "Local council" }, { "code": "MT-29", "name": "Mdina", "type": "Local council" }, { "code": "MT-30", "name": "Mellie藹a", "type": "Local council" }, { "code": "MT-31", "name": "M纂arr", "type": "Local council" }, { "code": "MT-32", "name": "Mosta", "type": "Local council" }, { "code": "MT-33", "name": "Mqabba", "type": "Local council" }, { "code": "MT-34", "name": "Msida", "type": "Local council" }, { "code": "MT-35", "name": "Mtarfa", "type": "Local council" }, { "code": "MT-36", "name": "Munxar", "type": "Local council" }, { "code": "MT-37", "name": "Nadur", "type": "Local council" }, { "code": "MT-38", "name": "Naxxar", "type": "Local council" }, { "code": "MT-39", "name": "Paola", "type": "Local council" }, { "code": "MT-40", "name": "Pembroke", "type": "Local council" }, { "code": "MT-41", "name": "Piet", "type": "Local council" }, { "code": "MT-42", "name": "Qala", "type": "Local council" }, { "code": "MT-43", "name": "Qormi", "type": "Local council" }, { "code": "MT-44", "name": "Qrendi", "type": "Local council" }, { "code": "MT-45", "name": "Rabat Gozo", "type": "Local council" }, { "code": "MT-46", "name": "Rabat Malta", "type": "Local council" }, { "code": "MT-47", "name": "Safi", "type": "Local council" }, { "code": "MT-48", "name": "Saint Julian's", "type": "Local council" }, { "code": "MT-49", "name": "Saint John", "type": "Local council" }, { "code": "MT-50", "name": "Saint Lawrence", "type": "Local council" }, { "code": "MT-51", "name": "Saint Paul's Bay", "type": "Local council" }, { "code": "MT-52", "name": "Sannat", "type": "Local council" }, { "code": "MT-53", "name": "Saint Lucia's", "type": "Local council" }, { "code": "MT-54", "name": "Santa Venera", "type": "Local council" }, { "code": "MT-55", "name": "Si纂纂iewi", "type": "Local council" }, { "code": "MT-56", "name": "Sliema", "type": "Local council" }, { "code": "MT-57", "name": "Swieqi", "type": "Local council" }, { "code": "MT-58", "name": "Ta' Xbiex", "type": "Local council" }, { "code": "MT-59", "name": "Tarxien", "type": "Local council" }, { "code": "MT-60", "name": "Valletta", "type": "Local council" }, { "code": "MT-61", "name": "Xag藹ra", "type": "Local council" }, { "code": "MT-62", "name": "Xewkija", "type": "Local council" }, { "code": "MT-63", "name": "Xg藹ajra", "type": "Local council" }, { "code": "MT-64", "name": "驍abbar", "type": "Local council" }, { "code": "MT-65", "name": "驍ebbu纂 Gozo", "type": "Local council" }, { "code": "MT-66", "name": "驍ebbu纂 Malta", "type": "Local council" }, { "code": "MT-67", "name": "驍ejtun", "type": "Local council" }, { "code": "MT-68", "name": "驍urrieq", "type": "Local council" }, { "code": "MU-AG", "name": "Agalega Islands", "type": "Dependency" }, { "code": "MU-BL", "name": "Black River", "type": "District" }, { "code": "MU-CC", "name": "Cargados Carajos Shoals", "type": "Dependency" }, { "code": "MU-FL", "name": "Flacq", "type": "District" }, { "code": "MU-GP", "name": "Grand Port", "type": "District" }, { "code": "MU-MO", "name": "Moka", "type": "District" }, { "code": "MU-PA", "name": "Pamplemousses", "type": "District" }, { "code": "MU-PL", "name": "Port Louis", "type": "District" }, { "code": "MU-PW", "name": "Plaines Wilhems", "type": "District" }, { "code": "MU-RO", "name": "Rodrigues Island", "type": "Dependency" }, { "code": "MU-RR", "name": "Rivi癡re du Rempart", "type": "District" }, { "code": "MU-SA", "name": "Savanne", "type": "District" }, { "code": "MV-00", "name": "South Ari Atoll", "type": "Administrative atoll" }, { "code": "MV-01", "name": "Addu City", "type": "City" }, { "code": "MV-02", "name": "North Ari Atoll", "type": "Administrative atoll" }, { "code": "MV-03", "name": "Faadhippolhu", "type": "Administrative atoll" }, { "code": "MV-04", "name": "Felidhu Atoll", "type": "Administrative atoll" }, { "code": "MV-05", "name": "Hahdhunmathi", "type": "Administrative atoll" }, { "code": "MV-07", "name": "North Thiladhunmathi", "type": "Administrative atoll" }, { "code": "MV-08", "name": "Kolhumadulu", "type": "Administrative atoll" }, { "code": "MV-12", "name": "Mulaku Atoll", "type": "Administrative atoll" }, { "code": "MV-13", "name": "North Maalhosmadulu", "type": "Administrative atoll" }, { "code": "MV-14", "name": "North Nilandhe Atoll", "type": "Administrative atoll" }, { "code": "MV-17", "name": "South Nilandhe Atoll", "type": "Administrative atoll" }, { "code": "MV-20", "name": "South Maalhosmadulu", "type": "Administrative atoll" }, { "code": "MV-23", "name": "South Thiladhunmathi", "type": "Administrative atoll" }, { "code": "MV-24", "name": "North Miladhunmadulu", "type": "Administrative atoll" }, { "code": "MV-25", "name": "South Miladhunmadulu", "type": "Administrative atoll" }, { "code": "MV-26", "name": "Male Atoll", "type": "Administrative atoll" }, { "code": "MV-27", "name": "North Huvadhu Atoll", "type": "Administrative atoll" }, { "code": "MV-28", "name": "South Huvadhu Atoll", "type": "Administrative atoll" }, { "code": "MV-29", "name": "Fuvammulah", "type": "Administrative atoll" }, { "code": "MV-MLE", "name": "Male", "type": "City" }, { "code": "MW-BA", "name": "Balaka", "parent": "S", "type": "District" }, { "code": "MW-BL", "name": "Blantyre", "parent": "S", "type": "District" }, { "code": "MW-C", "name": "Central Region", "type": "Region" }, { "code": "MW-CK", "name": "Chikwawa", "parent": "S", "type": "District" }, { "code": "MW-CR", "name": "Chiradzulu", "parent": "S", "type": "District" }, { "code": "MW-CT", "name": "Chitipa", "parent": "N", "type": "District" }, { "code": "MW-DE", "name": "Dedza", "parent": "C", "type": "District" }, { "code": "MW-DO", "name": "Dowa", "parent": "C", "type": "District" }, { "code": "MW-KR", "name": "Karonga", "parent": "N", "type": "District" }, { "code": "MW-KS", "name": "Kasungu", "parent": "C", "type": "District" }, { "code": "MW-LI", "name": "Lilongwe", "parent": "C", "type": "District" }, { "code": "MW-LK", "name": "Likoma", "parent": "N", "type": "District" }, { "code": "MW-MC", "name": "Mchinji", "parent": "C", "type": "District" }, { "code": "MW-MG", "name": "Mangochi", "parent": "S", "type": "District" }, { "code": "MW-MH", "name": "Machinga", "parent": "S", "type": "District" }, { "code": "MW-MU", "name": "Mulanje", "parent": "S", "type": "District" }, { "code": "MW-MW", "name": "Mwanza", "parent": "S", "type": "District" }, { "code": "MW-MZ", "name": "Mzimba", "parent": "N", "type": "District" }, { "code": "MW-N", "name": "Northern Region", "type": "Region" }, { "code": "MW-NB", "name": "Nkhata Bay", "parent": "N", "type": "District" }, { "code": "MW-NE", "name": "Neno", "parent": "S", "type": "District" }, { "code": "MW-NI", "name": "Ntchisi", "parent": "C", "type": "District" }, { "code": "MW-NK", "name": "Nkhotakota", "parent": "C", "type": "District" }, { "code": "MW-NS", "name": "Nsanje", "parent": "S", "type": "District" }, { "code": "MW-NU", "name": "Ntcheu", "parent": "C", "type": "District" }, { "code": "MW-PH", "name": "Phalombe", "parent": "S", "type": "District" }, { "code": "MW-RU", "name": "Rumphi", "parent": "N", "type": "District" }, { "code": "MW-S", "name": "Southern Region", "type": "Region" }, { "code": "MW-SA", "name": "Salima", "parent": "C", "type": "District" }, { "code": "MW-TH", "name": "Thyolo", "parent": "S", "type": "District" }, { "code": "MW-ZO", "name": "Zomba", "parent": "S", "type": "District" }, { "code": "MX-AGU", "name": "Aguascalientes", "type": "State" }, { "code": "MX-BCN", "name": "Baja California", "type": "State" }, { "code": "MX-BCS", "name": "Baja California Sur", "type": "State" }, { "code": "MX-CAM", "name": "Campeche", "type": "State" }, { "code": "MX-CHH", "name": "Chihuahua", "type": "State" }, { "code": "MX-CHP", "name": "Chiapas", "type": "State" }, { "code": "MX-CMX", "name": "Ciudad de M矇xico", "type": "Federal district" }, { "code": "MX-COA", "name": "Coahuila de Zaragoza", "type": "State" }, { "code": "MX-COL", "name": "Colima", "type": "State" }, { "code": "MX-DUR", "name": "Durango", "type": "State" }, { "code": "MX-GRO", "name": "Guerrero", "type": "State" }, { "code": "MX-GUA", "name": "Guanajuato", "type": "State" }, { "code": "MX-HID", "name": "Hidalgo", "type": "State" }, { "code": "MX-JAL", "name": "Jalisco", "type": "State" }, { "code": "MX-MEX", "name": "M矇xico", "type": "State" }, { "code": "MX-MIC", "name": "Michoac獺n de Ocampo", "type": "State" }, { "code": "MX-MOR", "name": "Morelos", "type": "State" }, { "code": "MX-NAY", "name": "Nayarit", "type": "State" }, { "code": "MX-NLE", "name": "Nuevo Le籀n", "type": "State" }, { "code": "MX-OAX", "name": "Oaxaca", "type": "State" }, { "code": "MX-PUE", "name": "Puebla", "type": "State" }, { "code": "MX-QUE", "name": "Quer矇taro", "type": "State" }, { "code": "MX-ROO", "name": "Quintana Roo", "type": "State" }, { "code": "MX-SIN", "name": "Sinaloa", "type": "State" }, { "code": "MX-SLP", "name": "San Luis Potos穩", "type": "State" }, { "code": "MX-SON", "name": "Sonora", "type": "State" }, { "code": "MX-TAB", "name": "Tabasco", "type": "State" }, { "code": "MX-TAM", "name": "Tamaulipas", "type": "State" }, { "code": "MX-TLA", "name": "Tlaxcala", "type": "State" }, { "code": "MX-VER", "name": "Veracruz de Ignacio de la Llave", "type": "State" }, { "code": "MX-YUC", "name": "Yucat獺n", "type": "State" }, { "code": "MX-ZAC", "name": "Zacatecas", "type": "State" }, { "code": "MY-01", "name": "Johor", "type": "State" }, { "code": "MY-02", "name": "Kedah", "type": "State" }, { "code": "MY-03", "name": "Kelantan", "type": "State" }, { "code": "MY-04", "name": "Melaka", "type": "State" }, { "code": "MY-05", "name": "Negeri Sembilan", "type": "State" }, { "code": "MY-06", "name": "Pahang", "type": "State" }, { "code": "MY-07", "name": "Pulau Pinang", "type": "State" }, { "code": "MY-08", "name": "Perak", "type": "State" }, { "code": "MY-09", "name": "Perlis", "type": "State" }, { "code": "MY-10", "name": "Selangor", "type": "State" }, { "code": "MY-11", "name": "Terengganu", "type": "State" }, { "code": "MY-12", "name": "Sabah", "type": "State" }, { "code": "MY-13", "name": "Sarawak", "type": "State" }, { "code": "MY-14", "name": "Wilayah Persekutuan Kuala Lumpur", "type": "Federal territory" }, { "code": "MY-15", "name": "Wilayah Persekutuan Labuan", "type": "Federal territory" }, { "code": "MY-16", "name": "Wilayah Persekutuan Putrajaya", "type": "Federal territory" }, { "code": "MZ-A", "name": "Niassa", "type": "Province" }, { "code": "MZ-B", "name": "Manica", "type": "Province" }, { "code": "MZ-G", "name": "Gaza", "type": "Province" }, { "code": "MZ-I", "name": "Inhambane", "type": "Province" }, { "code": "MZ-L", "name": "Maputo", "type": "Province" }, { "code": "MZ-MPM", "name": "Maputo", "type": "City" }, { "code": "MZ-N", "name": "Nampula", "type": "Province" }, { "code": "MZ-P", "name": "Cabo Delgado", "type": "Province" }, { "code": "MZ-Q", "name": "Zamb矇zia", "type": "Province" }, { "code": "MZ-S", "name": "Sofala", "type": "Province" }, { "code": "MZ-T", "name": "Tete", "type": "Province" }, { "code": "NA-CA", "name": "Zambezi", "type": "Region" }, { "code": "NA-ER", "name": "Erongo", "type": "Region" }, { "code": "NA-HA", "name": "Hardap", "type": "Region" }, { "code": "NA-KA", "name": "//Karas", "type": "Region" }, { "code": "NA-KE", "name": "Kavango East", "type": "Region" }, { "code": "NA-KH", "name": "Khomas", "type": "Region" }, { "code": "NA-KU", "name": "Kunene", "type": "Region" }, { "code": "NA-KW", "name": "Kavango West", "type": "Region" }, { "code": "NA-OD", "name": "Otjozondjupa", "type": "Region" }, { "code": "NA-OH", "name": "Omaheke", "type": "Region" }, { "code": "NA-ON", "name": "Oshana", "type": "Region" }, { "code": "NA-OS", "name": "Omusati", "type": "Region" }, { "code": "NA-OT", "name": "Oshikoto", "type": "Region" }, { "code": "NA-OW", "name": "Ohangwena", "type": "Region" }, { "code": "NE-1", "name": "Agadez", "type": "Region" }, { "code": "NE-2", "name": "Diffa", "type": "Region" }, { "code": "NE-3", "name": "Dosso", "type": "Region" }, { "code": "NE-4", "name": "Maradi", "type": "Region" }, { "code": "NE-5", "name": "Tahoua", "type": "Region" }, { "code": "NE-6", "name": "Tillab矇ri", "type": "Region" }, { "code": "NE-7", "name": "Zinder", "type": "Region" }, { "code": "NE-8", "name": "Niamey", "type": "Urban community" }, { "code": "NG-AB", "name": "Abia", "type": "State" }, { "code": "NG-AD", "name": "Adamawa", "type": "State" }, { "code": "NG-AK", "name": "Akwa Ibom", "type": "State" }, { "code": "NG-AN", "name": "Anambra", "type": "State" }, { "code": "NG-BA", "name": "Bauchi", "type": "State" }, { "code": "NG-BE", "name": "Benue", "type": "State" }, { "code": "NG-BO", "name": "Borno", "type": "State" }, { "code": "NG-BY", "name": "Bayelsa", "type": "State" }, { "code": "NG-CR", "name": "Cross River", "type": "State" }, { "code": "NG-DE", "name": "Delta", "type": "State" }, { "code": "NG-EB", "name": "Ebonyi", "type": "State" }, { "code": "NG-ED", "name": "Edo", "type": "State" }, { "code": "NG-EK", "name": "Ekiti", "type": "State" }, { "code": "NG-EN", "name": "Enugu", "type": "State" }, { "code": "NG-FC", "name": "Abuja Federal Capital Territory", "type": "Capital territory" }, { "code": "NG-GO", "name": "Gombe", "type": "State" }, { "code": "NG-IM", "name": "Imo", "type": "State" }, { "code": "NG-JI", "name": "Jigawa", "type": "State" }, { "code": "NG-KD", "name": "Kaduna", "type": "State" }, { "code": "NG-KE", "name": "Kebbi", "type": "State" }, { "code": "NG-KN", "name": "Kano", "type": "State" }, { "code": "NG-KO", "name": "Kogi", "type": "State" }, { "code": "NG-KT", "name": "Katsina", "type": "State" }, { "code": "NG-KW", "name": "Kwara", "type": "State" }, { "code": "NG-LA", "name": "Lagos", "type": "State" }, { "code": "NG-NA", "name": "Nasarawa", "type": "State" }, { "code": "NG-NI", "name": "Niger", "type": "State" }, { "code": "NG-OG", "name": "Ogun", "type": "State" }, { "code": "NG-ON", "name": "Ondo", "type": "State" }, { "code": "NG-OS", "name": "Osun", "type": "State" }, { "code": "NG-OY", "name": "Oyo", "type": "State" }, { "code": "NG-PL", "name": "Plateau", "type": "State" }, { "code": "NG-RI", "name": "Rivers", "type": "State" }, { "code": "NG-SO", "name": "Sokoto", "type": "State" }, { "code": "NG-TA", "name": "Taraba", "type": "State" }, { "code": "NG-YO", "name": "Yobe", "type": "State" }, { "code": "NG-ZA", "name": "Zamfara", "type": "State" }, { "code": "NI-AN", "name": "Costa Caribe Norte", "type": "Autonomous region" }, { "code": "NI-AS", "name": "Costa Caribe Sur", "type": "Autonomous region" }, { "code": "NI-BO", "name": "Boaco", "type": "Department" }, { "code": "NI-CA", "name": "Carazo", "type": "Department" }, { "code": "NI-CI", "name": "Chinandega", "type": "Department" }, { "code": "NI-CO", "name": "Chontales", "type": "Department" }, { "code": "NI-ES", "name": "Estel穩", "type": "Department" }, { "code": "NI-GR", "name": "Granada", "type": "Department" }, { "code": "NI-JI", "name": "Jinotega", "type": "Department" }, { "code": "NI-LE", "name": "Le籀n", "type": "Department" }, { "code": "NI-MD", "name": "Madriz", "type": "Department" }, { "code": "NI-MN", "name": "Managua", "type": "Department" }, { "code": "NI-MS", "name": "Masaya", "type": "Department" }, { "code": "NI-MT", "name": "Matagalpa", "type": "Department" }, { "code": "NI-NS", "name": "Nueva Segovia", "type": "Department" }, { "code": "NI-RI", "name": "Rivas", "type": "Department" }, { "code": "NI-SJ", "name": "R穩o San Juan", "type": "Department" }, { "code": "NL-AW", "name": "Aruba", "type": "Country" }, { "code": "NL-BQ1", "name": "Bonaire", "type": "Special municipality" }, { "code": "NL-BQ2", "name": "Saba", "type": "Special municipality" }, { "code": "NL-BQ3", "name": "Sint Eustatius", "type": "Special municipality" }, { "code": "NL-CW", "name": "Cura癟ao", "type": "Country" }, { "code": "NL-DR", "name": "Drenthe", "type": "Province" }, { "code": "NL-FL", "name": "Flevoland", "type": "Province" }, { "code": "NL-FR", "name": "Frysl璽n", "type": "Province" }, { "code": "NL-GE", "name": "Gelderland", "type": "Province" }, { "code": "NL-GR", "name": "Groningen", "type": "Province" }, { "code": "NL-LI", "name": "Limburg", "type": "Province" }, { "code": "NL-NB", "name": "Noord-Brabant", "type": "Province" }, { "code": "NL-NH", "name": "Noord-Holland", "type": "Province" }, { "code": "NL-OV", "name": "Overijssel", "type": "Province" }, { "code": "NL-SX", "name": "Sint Maarten", "type": "Country" }, { "code": "NL-UT", "name": "Utrecht", "type": "Province" }, { "code": "NL-ZE", "name": "Zeeland", "type": "Province" }, { "code": "NL-ZH", "name": "Zuid-Holland", "type": "Province" }, { "code": "NO-03", "name": "Oslo", "type": "County" }, { "code": "NO-11", "name": "Rogaland", "type": "County" }, { "code": "NO-15", "name": "M繪re og Romsdal", "type": "County" }, { "code": "NO-18", "name": "Nordland", "type": "County" }, { "code": "NO-21", "name": "Svalbard (Arctic Region)", "type": "Arctic region" }, { "code": "NO-22", "name": "Jan Mayen (Arctic Region)", "type": "Arctic region" }, { "code": "NO-30", "name": "Viken", "type": "County" }, { "code": "NO-34", "name": "Innlandet", "type": "County" }, { "code": "NO-38", "name": "Vestfold og Telemark", "type": "County" }, { "code": "NO-42", "name": "Agder", "type": "County" }, { "code": "NO-46", "name": "Vestland", "type": "County" }, { "code": "NO-50", "name": "Tr繹繹ndelage", "type": "County" }, { "code": "NO-54", "name": "Romssa ja Finnm獺rkku", "type": "County" }, { "code": "NP-1", "name": "Central", "type": "Development region" }, { "code": "NP-2", "name": "Mid Western", "type": "Development region" }, { "code": "NP-3", "name": "Western", "type": "Development region" }, { "code": "NP-4", "name": "Eastern", "type": "Development region" }, { "code": "NP-5", "name": "Far Western", "type": "Development region" }, { "code": "NP-BA", "name": "Bagmati", "parent": "1", "type": "Zone" }, { "code": "NP-BH", "name": "Bheri", "parent": "2", "type": "Zone" }, { "code": "NP-DH", "name": "Dhawalagiri", "parent": "3", "type": "Zone" }, { "code": "NP-GA", "name": "Gandaki", "parent": "3", "type": "Zone" }, { "code": "NP-JA", "name": "Janakpur", "parent": "1", "type": "Zone" }, { "code": "NP-KA", "name": "Karnali", "parent": "2", "type": "Zone" }, { "code": "NP-KO", "name": "Kosi", "parent": "4", "type": "Zone" }, { "code": "NP-LU", "name": "Lumbini", "parent": "3", "type": "Zone" }, { "code": "NP-MA", "name": "Mahakali", "parent": "5", "type": "Zone" }, { "code": "NP-ME", "name": "Mechi", "parent": "4", "type": "Zone" }, { "code": "NP-NA", "name": "Narayani", "parent": "1", "type": "Zone" }, { "code": "NP-P1", "name": "Province 1", "type": "Province" }, { "code": "NP-P2", "name": "Province 2", "type": "Province" }, { "code": "NP-P3", "name": "Bgmat蘋", "type": "Province" }, { "code": "NP-P4", "name": "Gandaki", "type": "Province" }, { "code": "NP-P5", "name": "Province 5", "type": "Province" }, { "code": "NP-P6", "name": "Karnali", "type": "Province" }, { "code": "NP-P7", "name": "Sud贖r Pashchim", "type": "Province" }, { "code": "NP-RA", "name": "Rapti", "parent": "2", "type": "Zone" }, { "code": "NP-SA", "name": "Sagarmatha", "parent": "4", "type": "Zone" }, { "code": "NP-SE", "name": "Seti", "parent": "5", "type": "Zone" }, { "code": "NR-01", "name": "Aiwo", "type": "District" }, { "code": "NR-02", "name": "Anabar", "type": "District" }, { "code": "NR-03", "name": "Anetan", "type": "District" }, { "code": "NR-04", "name": "Anibare", "type": "District" }, { "code": "NR-05", "name": "Baitsi", "type": "District" }, { "code": "NR-06", "name": "Boe", "type": "District" }, { "code": "NR-07", "name": "Buada", "type": "District" }, { "code": "NR-08", "name": "Denigomodu", "type": "District" }, { "code": "NR-09", "name": "Ewa", "type": "District" }, { "code": "NR-10", "name": "Ijuw", "type": "District" }, { "code": "NR-11", "name": "Meneng", "type": "District" }, { "code": "NR-12", "name": "Nibok", "type": "District" }, { "code": "NR-13", "name": "Uaboe", "type": "District" }, { "code": "NR-14", "name": "Yaren", "type": "District" }, { "code": "NZ-AUK", "name": "Auckland", "type": "Region" }, { "code": "NZ-BOP", "name": "Bay of Plenty", "type": "Region" }, { "code": "NZ-CAN", "name": "Canterbury", "type": "Region" }, { "code": "NZ-CIT", "name": "Chatham Islands Territory", "type": "Special island authority" }, { "code": "NZ-GIS", "name": "Gisborne", "type": "Region" }, { "code": "NZ-HKB", "name": "Hawke's Bay", "type": "Region" }, { "code": "NZ-MBH", "name": "Marlborough", "type": "Region" }, { "code": "NZ-MWT", "name": "Manawatu-Wanganui", "type": "Region" }, { "code": "NZ-NSN", "name": "Nelson", "type": "Region" }, { "code": "NZ-NTL", "name": "Northland", "type": "Region" }, { "code": "NZ-OTA", "name": "Otago", "type": "Region" }, { "code": "NZ-STL", "name": "Southland", "type": "Region" }, { "code": "NZ-TAS", "name": "Tasman", "type": "Region" }, { "code": "NZ-TKI", "name": "Taranaki", "type": "Region" }, { "code": "NZ-WGN", "name": "Wellington", "type": "Region" }, { "code": "NZ-WKO", "name": "Waikato", "type": "Region" }, { "code": "NZ-WTC", "name": "West Coast", "type": "Region" }, { "code": "OM-BJ", "name": "Jan贖b al B籟inah", "type": "Governorate" }, { "code": "OM-BS", "name": "Shaml al B籟inah", "type": "Governorate" }, { "code": "OM-BU", "name": "Al Buraym蘋", "type": "Governorate" }, { "code": "OM-DA", "name": "Ad Dkhil蘋yah", "type": "Governorate" }, { "code": "OM-MA", "name": "Masqa籟", "type": "Governorate" }, { "code": "OM-MU", "name": "Musandam", "type": "Governorate" }, { "code": "OM-SJ", "name": "Jan贖b ash Sharq蘋yah", "type": "Governorate" }, { "code": "OM-SS", "name": "Shaml ash Sharq蘋yah", "type": "Governorate" }, { "code": "OM-WU", "name": "Al Wus籟獺", "type": "Governorate" }, { "code": "OM-ZA", "name": "Az怬 Z怬hirah", "type": "Governorate" }, { "code": "OM-ZU", "name": "Z怬ufr", "type": "Governorate" }, { "code": "PA-1", "name": "Bocas del Toro", "type": "Province" }, { "code": "PA-10", "name": "Panam獺 Oeste", "type": "Province" }, { "code": "PA-2", "name": "Cocl矇", "type": "Province" }, { "code": "PA-3", "name": "Col籀n", "type": "Province" }, { "code": "PA-4", "name": "Chiriqu穩", "type": "Province" }, { "code": "PA-5", "name": "Dari矇n", "type": "Province" }, { "code": "PA-6", "name": "Herrera", "type": "Province" }, { "code": "PA-7", "name": "Los Santos", "type": "Province" }, { "code": "PA-8", "name": "Panam獺", "type": "Province" }, { "code": "PA-9", "name": "Veraguas", "type": "Province" }, { "code": "PA-EM", "name": "Ember獺", "type": "Indigenous region" }, { "code": "PA-KY", "name": "Guna Yala", "type": "Indigenous region" }, { "code": "PA-NB", "name": "Ng繹be-Bugl矇", "type": "Indigenous region" }, { "code": "PE-AMA", "name": "Amarumayu", "type": "Region" }, { "code": "PE-ANC", "name": "Ancash", "type": "Region" }, { "code": "PE-APU", "name": "Apurimaq", "type": "Region" }, { "code": "PE-ARE", "name": "Arequipa", "type": "Region" }, { "code": "PE-AYA", "name": "Ayacucho", "type": "Region" }, { "code": "PE-CAJ", "name": "Cajamarca", "type": "Region" }, { "code": "PE-CAL", "name": "El Callao", "type": "Region" }, { "code": "PE-CUS", "name": "Cusco", "type": "Region" }, { "code": "PE-HUC", "name": "Hu獺nuco", "type": "Region" }, { "code": "PE-HUV", "name": "Huancavelica", "type": "Region" }, { "code": "PE-ICA", "name": "Ica", "type": "Region" }, { "code": "PE-JUN", "name": "Hunin", "type": "Region" }, { "code": "PE-LAL", "name": "La Libertad", "type": "Region" }, { "code": "PE-LAM", "name": "Lambayeque", "type": "Region" }, { "code": "PE-LIM", "name": "Lima", "type": "Region" }, { "code": "PE-LMA", "name": "Lima hatun llaqta", "type": "Municipality" }, { "code": "PE-LOR", "name": "Loreto", "type": "Region" }, { "code": "PE-MDD", "name": "Madre de Dios", "type": "Region" }, { "code": "PE-MOQ", "name": "Moquegua", "type": "Region" }, { "code": "PE-PAS", "name": "Pasco", "type": "Region" }, { "code": "PE-PIU", "name": "Piura", "type": "Region" }, { "code": "PE-PUN", "name": "Puno", "type": "Region" }, { "code": "PE-SAM", "name": "San Martin", "type": "Region" }, { "code": "PE-TAC", "name": "Tacna", "type": "Region" }, { "code": "PE-TUM", "name": "Tumbes", "type": "Region" }, { "code": "PE-UCA", "name": "Ucayali", "type": "Region" }, { "code": "PG-CPK", "name": "Chimbu", "type": "Province" }, { "code": "PG-CPM", "name": "Central", "type": "Province" }, { "code": "PG-EBR", "name": "East New Britain", "type": "Province" }, { "code": "PG-EHG", "name": "Eastern Highlands", "type": "Province" }, { "code": "PG-EPW", "name": "Enga", "type": "Province" }, { "code": "PG-ESW", "name": "East Sepik", "type": "Province" }, { "code": "PG-GPK", "name": "Gulf", "type": "Province" }, { "code": "PG-HLA", "name": "Hela", "type": "Province" }, { "code": "PG-JWK", "name": "Jiwaka", "type": "Province" }, { "code": "PG-MBA", "name": "Milne Bay", "type": "Province" }, { "code": "PG-MPL", "name": "Morobe", "type": "Province" }, { "code": "PG-MPM", "name": "Madang", "type": "Province" }, { "code": "PG-MRL", "name": "Manus", "type": "Province" }, { "code": "PG-NCD", "name": "National Capital District (Port Moresby)", "type": "District" }, { "code": "PG-NIK", "name": "New Ireland", "type": "Province" }, { "code": "PG-NPP", "name": "Northern", "type": "Province" }, { "code": "PG-NSB", "name": "Bougainville", "type": "Autonomous region" }, { "code": "PG-SAN", "name": "West Sepik", "type": "Province" }, { "code": "PG-SHM", "name": "Southern Highlands", "type": "Province" }, { "code": "PG-WBK", "name": "West New Britain", "type": "Province" }, { "code": "PG-WHM", "name": "Western Highlands", "type": "Province" }, { "code": "PG-WPD", "name": "Western", "type": "Province" }, { "code": "PH-00", "name": "National Capital Region", "type": "Region" }, { "code": "PH-01", "name": "Ilocos (Region I)", "type": "Region" }, { "code": "PH-02", "name": "Cagayan Valley (Region II)", "type": "Region" }, { "code": "PH-03", "name": "Central Luzon (Region III)", "type": "Region" }, { "code": "PH-05", "name": "Bicol (Region V)", "type": "Region" }, { "code": "PH-06", "name": "Western Visayas (Region VI)", "type": "Region" }, { "code": "PH-07", "name": "Central Visayas (Region VII)", "type": "Region" }, { "code": "PH-08", "name": "Eastern Visayas (Region VIII)", "type": "Region" }, { "code": "PH-09", "name": "Zamboanga Peninsula (Region IX)", "type": "Region" }, { "code": "PH-10", "name": "Northern Mindanao (Region X)", "type": "Region" }, { "code": "PH-11", "name": "Davao (Region XI)", "type": "Region" }, { "code": "PH-12", "name": "Soccsksargen (Region XII)", "type": "Region" }, { "code": "PH-13", "name": "Caraga (Region XIII)", "type": "Region" }, { "code": "PH-14", "name": "Autonomous Region in Muslim Mindanao (ARMM)", "type": "Region" }, { "code": "PH-15", "name": "Cordillera Administrative Region (CAR)", "type": "Region" }, { "code": "PH-40", "name": "Calabarzon (Region IV-A)", "type": "Region" }, { "code": "PH-41", "name": "Mimaropa (Region IV-B)", "type": "Region" }, { "code": "PH-ABR", "name": "Abra", "parent": "15", "type": "Province" }, { "code": "PH-AGN", "name": "Agusan del Norte", "parent": "13", "type": "Province" }, { "code": "PH-AGS", "name": "Agusan del Sur", "parent": "13", "type": "Province" }, { "code": "PH-AKL", "name": "Aklan", "parent": "06", "type": "Province" }, { "code": "PH-ALB", "name": "Albay", "parent": "05", "type": "Province" }, { "code": "PH-ANT", "name": "Antique", "parent": "06", "type": "Province" }, { "code": "PH-APA", "name": "Apayao", "parent": "15", "type": "Province" }, { "code": "PH-AUR", "name": "Aurora", "parent": "03", "type": "Province" }, { "code": "PH-BAN", "name": "Bataan", "parent": "03", "type": "Province" }, { "code": "PH-BAS", "name": "Basilan", "parent": "09", "type": "Province" }, { "code": "PH-BEN", "name": "Benguet", "parent": "15", "type": "Province" }, { "code": "PH-BIL", "name": "Biliran", "parent": "08", "type": "Province" }, { "code": "PH-BOH", "name": "Bohol", "parent": "07", "type": "Province" }, { "code": "PH-BTG", "name": "Batangas", "parent": "40", "type": "Province" }, { "code": "PH-BTN", "name": "Batanes", "parent": "02", "type": "Province" }, { "code": "PH-BUK", "name": "Bukidnon", "parent": "10", "type": "Province" }, { "code": "PH-BUL", "name": "Bulacan", "parent": "03", "type": "Province" }, { "code": "PH-CAG", "name": "Cagayan", "parent": "02", "type": "Province" }, { "code": "PH-CAM", "name": "Camiguin", "parent": "10", "type": "Province" }, { "code": "PH-CAN", "name": "Camarines Norte", "parent": "05", "type": "Province" }, { "code": "PH-CAP", "name": "Capiz", "parent": "06", "type": "Province" }, { "code": "PH-CAS", "name": "Camarines Sur", "parent": "05", "type": "Province" }, { "code": "PH-CAT", "name": "Catanduanes", "parent": "05", "type": "Province" }, { "code": "PH-CAV", "name": "Cavite", "parent": "40", "type": "Province" }, { "code": "PH-CEB", "name": "Cebu", "parent": "07", "type": "Province" }, { "code": "PH-COM", "name": "Davao de Oro", "parent": "11", "type": "Province" }, { "code": "PH-DAO", "name": "Davao Oriental", "parent": "11", "type": "Province" }, { "code": "PH-DAS", "name": "Davao del Sur", "parent": "11", "type": "Province" }, { "code": "PH-DAV", "name": "Davao del Norte", "parent": "11", "type": "Province" }, { "code": "PH-DIN", "name": "Dinagat Islands", "parent": "13", "type": "Province" }, { "code": "PH-DVO", "name": "Davao Occidental", "parent": "11", "type": "Province" }, { "code": "PH-EAS", "name": "Eastern Samar", "parent": "08", "type": "Province" }, { "code": "PH-GUI", "name": "Guimaras", "parent": "06", "type": "Province" }, { "code": "PH-IFU", "name": "Ifugao", "parent": "15", "type": "Province" }, { "code": "PH-ILI", "name": "Iloilo", "parent": "06", "type": "Province" }, { "code": "PH-ILN", "name": "Ilocos Norte", "parent": "01", "type": "Province" }, { "code": "PH-ILS", "name": "Ilocos Sur", "parent": "01", "type": "Province" }, { "code": "PH-ISA", "name": "Isabela", "parent": "02", "type": "Province" }, { "code": "PH-KAL", "name": "Kalinga", "parent": "15", "type": "Province" }, { "code": "PH-LAG", "name": "Laguna", "parent": "40", "type": "Province" }, { "code": "PH-LAN", "name": "Lanao del Norte", "parent": "12", "type": "Province" }, { "code": "PH-LAS", "name": "Lanao del Sur", "parent": "14", "type": "Province" }, { "code": "PH-LEY", "name": "Leyte", "parent": "08", "type": "Province" }, { "code": "PH-LUN", "name": "La Union", "parent": "01", "type": "Province" }, { "code": "PH-MAD", "name": "Marinduque", "parent": "41", "type": "Province" }, { "code": "PH-MAG", "name": "Maguindanao", "parent": "14", "type": "Province" }, { "code": "PH-MAS", "name": "Masbate", "parent": "05", "type": "Province" }, { "code": "PH-MDC", "name": "Mindoro Occidental", "parent": "41", "type": "Province" }, { "code": "PH-MDR", "name": "Mindoro Oriental", "parent": "41", "type": "Province" }, { "code": "PH-MOU", "name": "Mountain Province", "parent": "15", "type": "Province" }, { "code": "PH-MSC", "name": "Misamis Occidental", "parent": "10", "type": "Province" }, { "code": "PH-MSR", "name": "Misamis Oriental", "parent": "10", "type": "Province" }, { "code": "PH-NCO", "name": "Cotabato", "parent": "12", "type": "Province" }, { "code": "PH-NEC", "name": "Negros Occidental", "parent": "06", "type": "Province" }, { "code": "PH-NER", "name": "Negros Oriental", "parent": "07", "type": "Province" }, { "code": "PH-NSA", "name": "Northern Samar", "parent": "08", "type": "Province" }, { "code": "PH-NUE", "name": "Nueva Ecija", "parent": "03", "type": "Province" }, { "code": "PH-NUV", "name": "Nueva Vizcaya", "parent": "02", "type": "Province" }, { "code": "PH-PAM", "name": "Pampanga", "parent": "03", "type": "Province" }, { "code": "PH-PAN", "name": "Pangasinan", "parent": "01", "type": "Province" }, { "code": "PH-PLW", "name": "Palawan", "parent": "41", "type": "Province" }, { "code": "PH-QUE", "name": "Quezon", "parent": "40", "type": "Province" }, { "code": "PH-QUI", "name": "Quirino", "parent": "02", "type": "Province" }, { "code": "PH-RIZ", "name": "Rizal", "parent": "40", "type": "Province" }, { "code": "PH-ROM", "name": "Romblon", "parent": "41", "type": "Province" }, { "code": "PH-SAR", "name": "Sarangani", "parent": "11", "type": "Province" }, { "code": "PH-SCO", "name": "South Cotabato", "parent": "11", "type": "Province" }, { "code": "PH-SIG", "name": "Siquijor", "parent": "07", "type": "Province" }, { "code": "PH-SLE", "name": "Southern Leyte", "parent": "08", "type": "Province" }, { "code": "PH-SLU", "name": "Sulu", "parent": "14", "type": "Province" }, { "code": "PH-SOR", "name": "Sorsogon", "parent": "05", "type": "Province" }, { "code": "PH-SUK", "name": "Sultan Kudarat", "parent": "12", "type": "Province" }, { "code": "PH-SUN", "name": "Surigao del Norte", "parent": "13", "type": "Province" }, { "code": "PH-SUR", "name": "Surigao del Sur", "parent": "13", "type": "Province" }, { "code": "PH-TAR", "name": "Tarlac", "parent": "03", "type": "Province" }, { "code": "PH-TAW", "name": "Tawi-Tawi", "parent": "14", "type": "Province" }, { "code": "PH-WSA", "name": "Samar", "parent": "08", "type": "Province" }, { "code": "PH-ZAN", "name": "Zamboanga del Norte", "parent": "09", "type": "Province" }, { "code": "PH-ZAS", "name": "Zamboanga del Sur", "parent": "09", "type": "Province" }, { "code": "PH-ZMB", "name": "Zambales", "parent": "03", "type": "Province" }, { "code": "PH-ZSI", "name": "Zamboanga Sibugay", "parent": "09", "type": "Province" }, { "code": "PK-BA", "name": "Balochistan", "type": "Province" }, { "code": "PK-GB", "name": "Gilgit-Baltistan", "type": "Pakistan administered area" }, { "code": "PK-IS", "name": "Islamabad", "type": "Federal capital territory" }, { "code": "PK-JK", "name": "Azad Jammu and Kashmir", "type": "Pakistan administered area" }, { "code": "PK-KP", "name": "Khyber Pakhtunkhwa", "type": "Province" }, { "code": "PK-PB", "name": "Punjab", "type": "Province" }, { "code": "PK-SD", "name": "Sindh", "type": "Province" }, { "code": "PL-02", "name": "Dolnolskie", "type": "Voivodship" }, { "code": "PL-04", "name": "Kujawsko-pomorskie", "type": "Voivodship" }, { "code": "PL-06", "name": "Lubelskie", "type": "Voivodship" }, { "code": "PL-08", "name": "Lubuskie", "type": "Voivodship" }, { "code": "PL-10", "name": "籀dzkie", "type": "Voivodship" }, { "code": "PL-12", "name": "Maopolskie", "type": "Voivodship" }, { "code": "PL-14", "name": "Mazowieckie", "type": "Voivodship" }, { "code": "PL-16", "name": "Opolskie", "type": "Voivodship" }, { "code": "PL-18", "name": "Podkarpackie", "type": "Voivodship" }, { "code": "PL-20", "name": "Podlaskie", "type": "Voivodship" }, { "code": "PL-22", "name": "Pomorskie", "type": "Voivodship" }, { "code": "PL-24", "name": "lskie", "type": "Voivodship" }, { "code": "PL-26", "name": "witokrzyskie", "type": "Voivodship" }, { "code": "PL-28", "name": "Warmisko-mazurskie", "type": "Voivodship" }, { "code": "PL-30", "name": "Wielkopolskie", "type": "Voivodship" }, { "code": "PL-32", "name": "Zachodniopomorskie", "type": "Voivodship" }, { "code": "PS-BTH", "name": "Bethlehem", "type": "Governorate" }, { "code": "PS-DEB", "name": "Deir El Balah", "type": "Governorate" }, { "code": "PS-GZA", "name": "Gaza", "type": "Governorate" }, { "code": "PS-HBN", "name": "Hebron", "type": "Governorate" }, { "code": "PS-JEM", "name": "Jerusalem", "type": "Governorate" }, { "code": "PS-JEN", "name": "Jenin", "type": "Governorate" }, { "code": "PS-JRH", "name": "Jericho and Al Aghwar", "type": "Governorate" }, { "code": "PS-KYS", "name": "Khan Yunis", "type": "Governorate" }, { "code": "PS-NBS", "name": "Nablus", "type": "Governorate" }, { "code": "PS-NGZ", "name": "North Gaza", "type": "Governorate" }, { "code": "PS-QQA", "name": "Qalqilya", "type": "Governorate" }, { "code": "PS-RBH", "name": "Ramallah", "type": "Governorate" }, { "code": "PS-RFH", "name": "Rafah", "type": "Governorate" }, { "code": "PS-SLT", "name": "Salfit", "type": "Governorate" }, { "code": "PS-TBS", "name": "Tubas", "type": "Governorate" }, { "code": "PS-TKM", "name": "Tulkarm", "type": "Governorate" }, { "code": "PT-01", "name": "Aveiro", "type": "District" }, { "code": "PT-02", "name": "Beja", "type": "District" }, { "code": "PT-03", "name": "Braga", "type": "District" }, { "code": "PT-04", "name": "Bragan癟a", "type": "District" }, { "code": "PT-05", "name": "Castelo Branco", "type": "District" }, { "code": "PT-06", "name": "Coimbra", "type": "District" }, { "code": "PT-07", "name": "vora", "type": "District" }, { "code": "PT-08", "name": "Faro", "type": "District" }, { "code": "PT-09", "name": "Guarda", "type": "District" }, { "code": "PT-10", "name": "Leiria", "type": "District" }, { "code": "PT-11", "name": "Lisboa", "type": "District" }, { "code": "PT-12", "name": "Portalegre", "type": "District" }, { "code": "PT-13", "name": "Porto", "type": "District" }, { "code": "PT-14", "name": "Santar矇m", "type": "District" }, { "code": "PT-15", "name": "Set繳bal", "type": "District" }, { "code": "PT-16", "name": "Viana do Castelo", "type": "District" }, { "code": "PT-17", "name": "Vila Real", "type": "District" }, { "code": "PT-18", "name": "Viseu", "type": "District" }, { "code": "PT-20", "name": "Regi瓊o Aut籀noma dos A癟ores", "type": "Autonomous region" }, { "code": "PT-30", "name": "Regi瓊o Aut籀noma da Madeira", "type": "Autonomous region" }, { "code": "PW-002", "name": "Aimeliik", "type": "State" }, { "code": "PW-004", "name": "Airai", "type": "State" }, { "code": "PW-010", "name": "Angaur", "type": "State" }, { "code": "PW-050", "name": "Hatohobei", "type": "State" }, { "code": "PW-100", "name": "Kayangel", "type": "State" }, { "code": "PW-150", "name": "Koror", "type": "State" }, { "code": "PW-212", "name": "Melekeok", "type": "State" }, { "code": "PW-214", "name": "Ngaraard", "type": "State" }, { "code": "PW-218", "name": "Ngarchelong", "type": "State" }, { "code": "PW-222", "name": "Ngardmau", "type": "State" }, { "code": "PW-224", "name": "Ngatpang", "type": "State" }, { "code": "PW-226", "name": "Ngchesar", "type": "State" }, { "code": "PW-227", "name": "Ngeremlengui", "type": "State" }, { "code": "PW-228", "name": "Ngiwal", "type": "State" }, { "code": "PW-350", "name": "Peleliu", "type": "State" }, { "code": "PW-370", "name": "Sonsorol", "type": "State" }, { "code": "PY-1", "name": "Concepci籀n", "type": "Department" }, { "code": "PY-10", "name": "Alto Paran獺", "type": "Department" }, { "code": "PY-11", "name": "Central", "type": "Department" }, { "code": "PY-12", "name": "eembuc繳", "type": "Department" }, { "code": "PY-13", "name": "Amambay", "type": "Department" }, { "code": "PY-14", "name": "Canindey繳", "type": "Department" }, { "code": "PY-15", "name": "Presidente Hayes", "type": "Department" }, { "code": "PY-16", "name": "Alto Paraguay", "type": "Department" }, { "code": "PY-19", "name": "Boquer籀n", "type": "Department" }, { "code": "PY-2", "name": "San Pedro", "type": "Department" }, { "code": "PY-3", "name": "Cordillera", "type": "Department" }, { "code": "PY-4", "name": "Guair獺", "type": "Department" }, { "code": "PY-5", "name": "Caaguaz繳", "type": "Department" }, { "code": "PY-6", "name": "Caazap獺", "type": "Department" }, { "code": "PY-7", "name": "Itap繳a", "type": "Department" }, { "code": "PY-8", "name": "Misiones", "type": "Department" }, { "code": "PY-9", "name": "Paraguar穩", "type": "Department" }, { "code": "PY-ASU", "name": "Asunci籀n", "type": "Capital" }, { "code": "QA-DA", "name": "Ad Daw廎奄h", "type": "Municipality" }, { "code": "QA-KH", "name": "Al Khawr wa adh Dhakh蘋rah", "type": "Municipality" }, { "code": "QA-MS", "name": "Ash Shaml", "type": "Municipality" }, { "code": "QA-RA", "name": "Ar Rayyn", "type": "Municipality" }, { "code": "QA-SH", "name": "Ash Sh蘋廎怯n蘋yah", "type": "Municipality" }, { "code": "QA-US", "name": "Umm all", "type": "Municipality" }, { "code": "QA-WA", "name": "Al Wakrah", "type": "Municipality" }, { "code": "QA-ZA", "name": "Az怬 Z怬ayin", "type": "Municipality" }, { "code": "RO-AB", "name": "Alba", "type": "Department" }, { "code": "RO-AG", "name": "Arge", "type": "Department" }, { "code": "RO-AR", "name": "Arad", "type": "Department" }, { "code": "RO-B", "name": "Bucureti", "type": "Municipality" }, { "code": "RO-BC", "name": "Bacu", "type": "Department" }, { "code": "RO-BH", "name": "Bihor", "type": "Department" }, { "code": "RO-BN", "name": "Bistria-Nsud", "type": "Department" }, { "code": "RO-BR", "name": "Brila", "type": "Department" }, { "code": "RO-BT", "name": "Botoani", "type": "Department" }, { "code": "RO-BV", "name": "Braov", "type": "Department" }, { "code": "RO-BZ", "name": "Buzu", "type": "Department" }, { "code": "RO-CJ", "name": "Cluj", "type": "Department" }, { "code": "RO-CL", "name": "Clrai", "type": "Department" }, { "code": "RO-CS", "name": "Cara-Severin", "type": "Department" }, { "code": "RO-CT", "name": "Constana", "type": "Department" }, { "code": "RO-CV", "name": "Covasna", "type": "Department" }, { "code": "RO-DB", "name": "D璽mbovia", "type": "Department" }, { "code": "RO-DJ", "name": "Dolj", "type": "Department" }, { "code": "RO-GJ", "name": "Gorj", "type": "Department" }, { "code": "RO-GL", "name": "Galai", "type": "Department" }, { "code": "RO-GR", "name": "Giurgiu", "type": "Department" }, { "code": "RO-HD", "name": "Hunedoara", "type": "Department" }, { "code": "RO-HR", "name": "Harghita", "type": "Department" }, { "code": "RO-IF", "name": "Ilfov", "type": "Department" }, { "code": "RO-IL", "name": "Ialomia", "type": "Department" }, { "code": "RO-IS", "name": "Iai", "type": "Department" }, { "code": "RO-MH", "name": "Mehedini", "type": "Department" }, { "code": "RO-MM", "name": "Maramure", "type": "Department" }, { "code": "RO-MS", "name": "Mure", "type": "Department" }, { "code": "RO-NT", "name": "Neam", "type": "Department" }, { "code": "RO-OT", "name": "Olt", "type": "Department" }, { "code": "RO-PH", "name": "Prahova", "type": "Department" }, { "code": "RO-SB", "name": "Sibiu", "type": "Department" }, { "code": "RO-SJ", "name": "Slaj", "type": "Department" }, { "code": "RO-SM", "name": "Satu Mare", "type": "Department" }, { "code": "RO-SV", "name": "Suceava", "type": "Department" }, { "code": "RO-TL", "name": "Tulcea", "type": "Department" }, { "code": "RO-TM", "name": "Timi", "type": "Department" }, { "code": "RO-TR", "name": "Teleorman", "type": "Department" }, { "code": "RO-VL", "name": "V璽lcea", "type": "Department" }, { "code": "RO-VN", "name": "Vrancea", "type": "Department" }, { "code": "RO-VS", "name": "Vaslui", "type": "Department" }, { "code": "RS-00", "name": "Beograd", "type": "City" }, { "code": "RS-01", "name": "Severnobaki okrug", "parent": "VO", "type": "District" }, { "code": "RS-02", "name": "Srednjebanatski okrug", "parent": "VO", "type": "District" }, { "code": "RS-03", "name": "Severnobanatski okrug", "parent": "VO", "type": "District" }, { "code": "RS-04", "name": "Ju鱉nobanatski okrug", "parent": "VO", "type": "District" }, { "code": "RS-05", "name": "Zapadnobaki okrug", "parent": "VO", "type": "District" }, { "code": "RS-06", "name": "Ju鱉nobaki okrug", "parent": "VO", "type": "District" }, { "code": "RS-07", "name": "Sremski okrug", "parent": "VO", "type": "District" }, { "code": "RS-08", "name": "Mavanski okrug", "type": "District" }, { "code": "RS-09", "name": "Kolubarski okrug", "type": "District" }, { "code": "RS-10", "name": "Podunavski okrug", "type": "District" }, { "code": "RS-11", "name": "Branievski okrug", "type": "District" }, { "code": "RS-12", "name": "umadijski okrug", "type": "District" }, { "code": "RS-13", "name": "Pomoravski okrug", "type": "District" }, { "code": "RS-14", "name": "Borski okrug", "type": "District" }, { "code": "RS-15", "name": "Zajearski okrug", "type": "District" }, { "code": "RS-16", "name": "Zlatiborski okrug", "type": "District" }, { "code": "RS-17", "name": "Moraviki okrug", "type": "District" }, { "code": "RS-18", "name": "Ra禳ki okrug", "type": "District" }, { "code": "RS-19", "name": "Rasinski okrug", "type": "District" }, { "code": "RS-20", "name": "Ni禳avski okrug", "type": "District" }, { "code": "RS-21", "name": "Topliki okrug", "type": "District" }, { "code": "RS-22", "name": "Pirotski okrug", "type": "District" }, { "code": "RS-23", "name": "Jablaniki okrug", "type": "District" }, { "code": "RS-24", "name": "Pinjski okrug", "type": "District" }, { "code": "RS-25", "name": "Kosovski okrug", "parent": "KM", "type": "District" }, { "code": "RS-26", "name": "Peki okrug", "parent": "KM", "type": "District" }, { "code": "RS-27", "name": "Prizrenski okrug", "parent": "KM", "type": "District" }, { "code": "RS-28", "name": "Kosovsko-Mitrovaki okrug", "parent": "KM", "type": "District" }, { "code": "RS-29", "name": "Kosovsko-Pomoravski okrug", "parent": "KM", "type": "District" }, { "code": "RS-KM", "name": "Kosovo-Metohija", "type": "Autonomous province" }, { "code": "RS-VO", "name": "Vojvodina", "type": "Autonomous province" }, { "code": "RU-AD", "name": "Adygeja, Respublika", "type": "Republic" }, { "code": "RU-AL", "name": "Altaj, Respublika", "type": "Republic" }, { "code": "RU-ALT", "name": "Altajskij kraj", "type": "Administrative territory" }, { "code": "RU-AMU", "name": "Amurskaja oblast'", "type": "Administrative region" }, { "code": "RU-ARK", "name": "Arhangel'skaja oblast'", "type": "Administrative region" }, { "code": "RU-AST", "name": "Astrahanskaja oblast'", "type": "Administrative region" }, { "code": "RU-BA", "name": "Bashkortostan, Respublika", "type": "Republic" }, { "code": "RU-BEL", "name": "Belgorodskaja oblast'", "type": "Administrative region" }, { "code": "RU-BRY", "name": "Brjanskaja oblast'", "type": "Administrative region" }, { "code": "RU-BU", "name": "Burjatija, Respublika", "type": "Republic" }, { "code": "RU-CE", "name": "Chechenskaya Respublika", "type": "Republic" }, { "code": "RU-CHE", "name": "Chelyabinskaya oblast'", "type": "Administrative region" }, { "code": "RU-CHU", "name": "Chukotskiy avtonomnyy okrug", "type": "Autonomous district" }, { "code": "RU-CU", "name": "Chuvashskaya Respublika", "type": "Republic" }, { "code": "RU-DA", "name": "Dagestan, Respublika", "type": "Republic" }, { "code": "RU-IN", "name": "Ingushetiya, Respublika", "type": "Republic" }, { "code": "RU-IRK", "name": "Irkutskaja oblast'", "type": "Administrative region" }, { "code": "RU-IVA", "name": "Ivanovskaja oblast'", "type": "Administrative region" }, { "code": "RU-KAM", "name": "Kamchatskiy kray", "type": "Administrative territory" }, { "code": "RU-KB", "name": "Kabardino-Balkarskaja Respublika", "type": "Republic" }, { "code": "RU-KC", "name": "Karachayevo-Cherkesskaya Respublika", "type": "Republic" }, { "code": "RU-KDA", "name": "Krasnodarskij kraj", "type": "Administrative territory" }, { "code": "RU-KEM", "name": "Kemerovskaja oblast'", "type": "Administrative region" }, { "code": "RU-KGD", "name": "Kaliningradskaja oblast'", "type": "Administrative region" }, { "code": "RU-KGN", "name": "Kurganskaja oblast'", "type": "Administrative region" }, { "code": "RU-KHA", "name": "Habarovskij kraj", "type": "Administrative territory" }, { "code": "RU-KHM", "name": "Hanty-Mansijskij avtonomnyj okrug", "type": "Autonomous district" }, { "code": "RU-KIR", "name": "Kirovskaja oblast'", "type": "Administrative region" }, { "code": "RU-KK", "name": "Hakasija, Respublika", "type": "Republic" }, { "code": "RU-KL", "name": "Kalmykija, Respublika", "type": "Republic" }, { "code": "RU-KLU", "name": "Kaluzhskaya oblast'", "type": "Administrative region" }, { "code": "RU-KO", "name": "Komi, Respublika", "type": "Republic" }, { "code": "RU-KOS", "name": "Kostromskaja oblast'", "type": "Administrative region" }, { "code": "RU-KR", "name": "Karelija, Respublika", "type": "Republic" }, { "code": "RU-KRS", "name": "Kurskaja oblast'", "type": "Administrative region" }, { "code": "RU-KYA", "name": "Krasnojarskij kraj", "type": "Administrative territory" }, { "code": "RU-LEN", "name": "Leningradskaja oblast'", "type": "Administrative region" }, { "code": "RU-LIP", "name": "Lipeckaja oblast'", "type": "Administrative region" }, { "code": "RU-MAG", "name": "Magadanskaja oblast'", "type": "Administrative region" }, { "code": "RU-ME", "name": "Marij l, Respublika", "type": "Republic" }, { "code": "RU-MO", "name": "Mordovija, Respublika", "type": "Republic" }, { "code": "RU-MOS", "name": "Moskovskaja oblast'", "type": "Administrative region" }, { "code": "RU-MOW", "name": "Moskva", "type": "Autonomous city" }, { "code": "RU-MUR", "name": "Murmanskaja oblast'", "type": "Administrative region" }, { "code": "RU-NEN", "name": "Neneckij avtonomnyj okrug", "type": "Autonomous district" }, { "code": "RU-NGR", "name": "Novgorodskaja oblast'", "type": "Administrative region" }, { "code": "RU-NIZ", "name": "Nizhegorodskaya oblast'", "type": "Administrative region" }, { "code": "RU-NVS", "name": "Novosibirskaja oblast'", "type": "Administrative region" }, { "code": "RU-OMS", "name": "Omskaja oblast'", "type": "Administrative region" }, { "code": "RU-ORE", "name": "Orenburgskaja oblast'", "type": "Administrative region" }, { "code": "RU-ORL", "name": "Orlovskaja oblast'", "type": "Administrative region" }, { "code": "RU-PER", "name": "Permskij kraj", "type": "Administrative territory" }, { "code": "RU-PNZ", "name": "Penzenskaja oblast'", "type": "Administrative region" }, { "code": "RU-PRI", "name": "Primorskij kraj", "type": "Administrative territory" }, { "code": "RU-PSK", "name": "Pskovskaja oblast'", "type": "Administrative region" }, { "code": "RU-ROS", "name": "Rostovskaja oblast'", "type": "Administrative region" }, { "code": "RU-RYA", "name": "Rjazanskaja oblast'", "type": "Administrative region" }, { "code": "RU-SA", "name": "Saha, Respublika", "type": "Republic" }, { "code": "RU-SAK", "name": "Sahalinskaja oblast'", "type": "Administrative region" }, { "code": "RU-SAM", "name": "Samarskaja oblast'", "type": "Administrative region" }, { "code": "RU-SAR", "name": "Saratovskaja oblast'", "type": "Administrative region" }, { "code": "RU-SE", "name": "Severnaja Osetija, Respublika", "type": "Republic" }, { "code": "RU-SMO", "name": "Smolenskaja oblast'", "type": "Administrative region" }, { "code": "RU-SPE", "name": "Sankt-Peterburg", "type": "Autonomous city" }, { "code": "RU-STA", "name": "Stavropol'skij kraj", "type": "Administrative territory" }, { "code": "RU-SVE", "name": "Sverdlovskaja oblast'", "type": "Administrative region" }, { "code": "RU-TA", "name": "Tatarstan, Respublika", "type": "Republic" }, { "code": "RU-TAM", "name": "Tambovskaja oblast'", "type": "Administrative region" }, { "code": "RU-TOM", "name": "Tomskaja oblast'", "type": "Administrative region" }, { "code": "RU-TUL", "name": "Tul'skaja oblast'", "type": "Administrative region" }, { "code": "RU-TVE", "name": "Tverskaja oblast'", "type": "Administrative region" }, { "code": "RU-TY", "name": "Tyva, Respublika", "type": "Republic" }, { "code": "RU-TYU", "name": "Tjumenskaja oblast'", "type": "Administrative region" }, { "code": "RU-UD", "name": "Udmurtskaja Respublika", "type": "Republic" }, { "code": "RU-ULY", "name": "Ul'janovskaja oblast'", "type": "Administrative region" }, { "code": "RU-VGG", "name": "Volgogradskaja oblast'", "type": "Administrative region" }, { "code": "RU-VLA", "name": "Vladimirskaja oblast'", "type": "Administrative region" }, { "code": "RU-VLG", "name": "Vologodskaja oblast'", "type": "Administrative region" }, { "code": "RU-VOR", "name": "Voronezhskaya oblast'", "type": "Administrative region" }, { "code": "RU-YAN", "name": "Jamalo-Neneckij avtonomnyj okrug", "type": "Autonomous district" }, { "code": "RU-YAR", "name": "Jaroslavskaja oblast'", "type": "Administrative region" }, { "code": "RU-YEV", "name": "Evrejskaja avtonomnaja oblast'", "type": "Autonomous region" }, { "code": "RU-ZAB", "name": "Zabajkal'skij kraj", "type": "Administrative territory" }, { "code": "RW-01", "name": "City of Kigali", "type": "City" }, { "code": "RW-02", "name": "Eastern", "type": "Province" }, { "code": "RW-03", "name": "Northern", "type": "Province" }, { "code": "RW-04", "name": "Western", "type": "Province" }, { "code": "RW-05", "name": "Southern", "type": "Province" }, { "code": "SA-01", "name": "Ar Riy廎", "type": "Region" }, { "code": "SA-02", "name": "Makkah al Mukarramah", "type": "Region" }, { "code": "SA-03", "name": "Al Mad蘋nah al Munawwarah", "type": "Region" }, { "code": "SA-04", "name": "Ash Sharq蘋yah", "type": "Region" }, { "code": "SA-05", "name": "Al Qa蘋m", "type": "Region" }, { "code": "SA-06", "name": "廎乖'il", "type": "Region" }, { "code": "SA-07", "name": "Tab贖k", "type": "Region" }, { "code": "SA-08", "name": "Al 廎罕d贖d ash Shaml蘋yah", "type": "Region" }, { "code": "SA-09", "name": "Jzn", "type": "Region" }, { "code": "SA-10", "name": "Najrn", "type": "Region" }, { "code": "SA-11", "name": "Al B廎奄h", "type": "Region" }, { "code": "SA-12", "name": "Al Jawf", "type": "Region" }, { "code": "SA-14", "name": "'As蘋r", "type": "Region" }, { "code": "SB-CE", "name": "Central", "type": "Province" }, { "code": "SB-CH", "name": "Choiseul", "type": "Province" }, { "code": "SB-CT", "name": "Capital Territory (Honiara)", "type": "Capital territory" }, { "code": "SB-GU", "name": "Guadalcanal", "type": "Province" }, { "code": "SB-IS", "name": "Isabel", "type": "Province" }, { "code": "SB-MK", "name": "Makira-Ulawa", "type": "Province" }, { "code": "SB-ML", "name": "Malaita", "type": "Province" }, { "code": "SB-RB", "name": "Rennell and Bellona", "type": "Province" }, { "code": "SB-TE", "name": "Temotu", "type": "Province" }, { "code": "SB-WE", "name": "Western", "type": "Province" }, { "code": "SC-01", "name": "Anse aux Pins", "type": "District" }, { "code": "SC-02", "name": "Anse Boileau", "type": "District" }, { "code": "SC-03", "name": "Anse Etoile", "type": "District" }, { "code": "SC-04", "name": "Au Cap", "type": "District" }, { "code": "SC-05", "name": "Anse Royale", "type": "District" }, { "code": "SC-06", "name": "Baie Lazare", "type": "District" }, { "code": "SC-07", "name": "Baie Sainte Anne", "type": "District" }, { "code": "SC-08", "name": "Beau Vallon", "type": "District" }, { "code": "SC-09", "name": "Bel Air", "type": "District" }, { "code": "SC-10", "name": "Bel Ombre", "type": "District" }, { "code": "SC-11", "name": "Cascade", "type": "District" }, { "code": "SC-12", "name": "Glacis", "type": "District" }, { "code": "SC-13", "name": "Grand Anse Mahe", "type": "District" }, { "code": "SC-14", "name": "Grand Anse Praslin", "type": "District" }, { "code": "SC-15", "name": "La Digue", "type": "District" }, { "code": "SC-16", "name": "English River", "type": "District" }, { "code": "SC-17", "name": "Mont Buxton", "type": "District" }, { "code": "SC-18", "name": "Mont Fleuri", "type": "District" }, { "code": "SC-19", "name": "Plaisance", "type": "District" }, { "code": "SC-20", "name": "Pointe Larue", "type": "District" }, { "code": "SC-21", "name": "Port Glaud", "type": "District" }, { "code": "SC-22", "name": "Saint Louis", "type": "District" }, { "code": "SC-23", "name": "Takamaka", "type": "District" }, { "code": "SC-24", "name": "Les Mamelles", "type": "District" }, { "code": "SC-25", "name": "Roche Caiman", "type": "District" }, { "code": "SC-26", "name": "Ile Perseverance I", "type": "District" }, { "code": "SC-27", "name": "Ile Perseverance II", "type": "District" }, { "code": "SD-DC", "name": "Central Darfur", "type": "State" }, { "code": "SD-DE", "name": "East Darfur", "type": "State" }, { "code": "SD-DN", "name": "North Darfur", "type": "State" }, { "code": "SD-DS", "name": "South Darfur", "type": "State" }, { "code": "SD-DW", "name": "West Darfur", "type": "State" }, { "code": "SD-GD", "name": "Gedaref", "type": "State" }, { "code": "SD-GK", "name": "West Kordofan", "type": "State" }, { "code": "SD-GZ", "name": "Gezira", "type": "State" }, { "code": "SD-KA", "name": "Kassala", "type": "State" }, { "code": "SD-KH", "name": "Khartoum", "type": "State" }, { "code": "SD-KN", "name": "North Kordofan", "type": "State" }, { "code": "SD-KS", "name": "South Kordofan", "type": "State" }, { "code": "SD-NB", "name": "Blue Nile", "type": "State" }, { "code": "SD-NO", "name": "Northern", "type": "State" }, { "code": "SD-NR", "name": "River Nile", "type": "State" }, { "code": "SD-NW", "name": "White Nile", "type": "State" }, { "code": "SD-RS", "name": "Red Sea", "type": "State" }, { "code": "SD-SI", "name": "Sennar", "type": "State" }, { "code": "SE-AB", "name": "Stockholms l瓣n [SE-01]", "type": "County" }, { "code": "SE-AC", "name": "V瓣sterbottens l瓣n [SE-24]", "type": "County" }, { "code": "SE-BD", "name": "Norrbottens l瓣n [SE-25]", "type": "County" }, { "code": "SE-C", "name": "Uppsala l瓣n [SE-03]", "type": "County" }, { "code": "SE-D", "name": "S繹dermanlands l瓣n [SE-04]", "type": "County" }, { "code": "SE-E", "name": "sterg繹tlands l瓣n [SE-05]", "type": "County" }, { "code": "SE-F", "name": "J繹nk繹pings l瓣n [SE-06]", "type": "County" }, { "code": "SE-G", "name": "Kronobergs l瓣n [SE-07]", "type": "County" }, { "code": "SE-H", "name": "Kalmar l瓣n [SE-08]", "type": "County" }, { "code": "SE-I", "name": "Gotlands l瓣n [SE-09]", "type": "County" }, { "code": "SE-K", "name": "Blekinge l瓣n [SE-10]", "type": "County" }, { "code": "SE-M", "name": "Sk疇ne l瓣n [SE-12]", "type": "County" }, { "code": "SE-N", "name": "Hallands l瓣n [SE-13]", "type": "County" }, { "code": "SE-O", "name": "V瓣stra G繹talands l瓣n [SE-14]", "type": "County" }, { "code": "SE-S", "name": "V瓣rmlands l瓣n [SE-17]", "type": "County" }, { "code": "SE-T", "name": "rebro l瓣n [SE-18]", "type": "County" }, { "code": "SE-U", "name": "V瓣stmanlands l瓣n [SE-19]", "type": "County" }, { "code": "SE-W", "name": "Dalarnas l瓣n [SE-20]", "type": "County" }, { "code": "SE-X", "name": "G瓣vleborgs l瓣n [SE-21]", "type": "County" }, { "code": "SE-Y", "name": "V瓣sternorrlands l瓣n [SE-22]", "type": "County" }, { "code": "SE-Z", "name": "J瓣mtlands l瓣n [SE-23]", "type": "County" }, { "code": "SG-01", "name": "Central Singapore", "type": "District" }, { "code": "SG-02", "name": "North East", "type": "District" }, { "code": "SG-03", "name": "North West", "type": "District" }, { "code": "SG-04", "name": "South East", "type": "District" }, { "code": "SG-05", "name": "South West", "type": "District" }, { "code": "SH-AC", "name": "Ascension", "type": "Geographical entity" }, { "code": "SH-HL", "name": "Saint Helena", "type": "Geographical entity" }, { "code": "SH-TA", "name": "Tristan da Cunha", "type": "Geographical entity" }, { "code": "SI-001", "name": "Ajdov禳ina", "type": "Municipality" }, { "code": "SI-002", "name": "Beltinci", "type": "Municipality" }, { "code": "SI-003", "name": "Bled", "type": "Municipality" }, { "code": "SI-004", "name": "Bohinj", "type": "Municipality" }, { "code": "SI-005", "name": "Borovnica", "type": "Municipality" }, { "code": "SI-006", "name": "Bovec", "type": "Municipality" }, { "code": "SI-007", "name": "Brda", "type": "Municipality" }, { "code": "SI-008", "name": "Brezovica", "type": "Municipality" }, { "code": "SI-009", "name": "Bre鱉ice", "type": "Municipality" }, { "code": "SI-010", "name": "Ti禳ina", "type": "Municipality" }, { "code": "SI-011", "name": "Celje", "type": "Municipality" }, { "code": "SI-012", "name": "Cerklje na Gorenjskem", "type": "Municipality" }, { "code": "SI-013", "name": "Cerknica", "type": "Municipality" }, { "code": "SI-014", "name": "Cerkno", "type": "Municipality" }, { "code": "SI-015", "name": "ren禳ovci", "type": "Municipality" }, { "code": "SI-016", "name": "rna na Koro禳kem", "type": "Municipality" }, { "code": "SI-017", "name": "rnomelj", "type": "Municipality" }, { "code": "SI-018", "name": "Destrnik", "type": "Municipality" }, { "code": "SI-019", "name": "Divaa", "type": "Municipality" }, { "code": "SI-020", "name": "Dobrepolje", "type": "Municipality" }, { "code": "SI-021", "name": "Dobrova-Polhov Gradec", "type": "Municipality" }, { "code": "SI-022", "name": "Dol pri Ljubljani", "type": "Municipality" }, { "code": "SI-023", "name": "Dom鱉ale", "type": "Municipality" }, { "code": "SI-024", "name": "Dornava", "type": "Municipality" }, { "code": "SI-025", "name": "Dravograd", "type": "Municipality" }, { "code": "SI-026", "name": "Duplek", "type": "Municipality" }, { "code": "SI-027", "name": "Gorenja vas-Poljane", "type": "Municipality" }, { "code": "SI-028", "name": "Gori禳nica", "type": "Municipality" }, { "code": "SI-029", "name": "Gornja Radgona", "type": "Municipality" }, { "code": "SI-030", "name": "Gornji Grad", "type": "Municipality" }, { "code": "SI-031", "name": "Gornji Petrovci", "type": "Municipality" }, { "code": "SI-032", "name": "Grosuplje", "type": "Municipality" }, { "code": "SI-033", "name": "alovci", "type": "Municipality" }, { "code": "SI-034", "name": "Hrastnik", "type": "Municipality" }, { "code": "SI-035", "name": "Hrpelje-Kozina", "type": "Municipality" }, { "code": "SI-036", "name": "Idrija", "type": "Municipality" }, { "code": "SI-037", "name": "Ig", "type": "Municipality" }, { "code": "SI-038", "name": "Ilirska Bistrica", "type": "Municipality" }, { "code": "SI-039", "name": "Ivanna Gorica", "type": "Municipality" }, { "code": "SI-040", "name": "Izola", "type": "Municipality" }, { "code": "SI-041", "name": "Jesenice", "type": "Municipality" }, { "code": "SI-042", "name": "Jur禳inci", "type": "Municipality" }, { "code": "SI-043", "name": "Kamnik", "type": "Municipality" }, { "code": "SI-044", "name": "Kanal", "type": "Municipality" }, { "code": "SI-045", "name": "Kidrievo", "type": "Municipality" }, { "code": "SI-046", "name": "Kobarid", "type": "Municipality" }, { "code": "SI-047", "name": "Kobilje", "type": "Municipality" }, { "code": "SI-048", "name": "Koevje", "type": "Municipality" }, { "code": "SI-049", "name": "Komen", "type": "Municipality" }, { "code": "SI-050", "name": "Koper", "type": "Municipality" }, { "code": "SI-051", "name": "Kozje", "type": "Municipality" }, { "code": "SI-052", "name": "Kranj", "type": "Municipality" }, { "code": "SI-053", "name": "Kranjska Gora", "type": "Municipality" }, { "code": "SI-054", "name": "Kr禳ko", "type": "Municipality" }, { "code": "SI-055", "name": "Kungota", "type": "Municipality" }, { "code": "SI-056", "name": "Kuzma", "type": "Municipality" }, { "code": "SI-057", "name": "La禳ko", "type": "Municipality" }, { "code": "SI-058", "name": "Lenart", "type": "Municipality" }, { "code": "SI-059", "name": "Lendava", "type": "Municipality" }, { "code": "SI-060", "name": "Litija", "type": "Municipality" }, { "code": "SI-061", "name": "Ljubljana", "type": "Municipality" }, { "code": "SI-062", "name": "Ljubno", "type": "Municipality" }, { "code": "SI-063", "name": "Ljutomer", "type": "Municipality" }, { "code": "SI-064", "name": "Logatec", "type": "Municipality" }, { "code": "SI-065", "name": "Lo禳ka dolina", "type": "Municipality" }, { "code": "SI-066", "name": "Lo禳ki Potok", "type": "Municipality" }, { "code": "SI-067", "name": "Lue", "type": "Municipality" }, { "code": "SI-068", "name": "Lukovica", "type": "Municipality" }, { "code": "SI-069", "name": "Maj禳perk", "type": "Municipality" }, { "code": "SI-070", "name": "Maribor", "type": "Municipality" }, { "code": "SI-071", "name": "Medvode", "type": "Municipality" }, { "code": "SI-072", "name": "Menge禳", "type": "Municipality" }, { "code": "SI-073", "name": "Metlika", "type": "Municipality" }, { "code": "SI-074", "name": "Me鱉ica", "type": "Municipality" }, { "code": "SI-075", "name": "Miren-Kostanjevica", "type": "Municipality" }, { "code": "SI-076", "name": "Mislinja", "type": "Municipality" }, { "code": "SI-077", "name": "Morave", "type": "Municipality" }, { "code": "SI-078", "name": "Moravske Toplice", "type": "Municipality" }, { "code": "SI-079", "name": "Mozirje", "type": "Municipality" }, { "code": "SI-080", "name": "Murska Sobota", "type": "Municipality" }, { "code": "SI-081", "name": "Muta", "type": "Municipality" }, { "code": "SI-082", "name": "Naklo", "type": "Municipality" }, { "code": "SI-083", "name": "Nazarje", "type": "Municipality" }, { "code": "SI-084", "name": "Nova Gorica", "type": "Municipality" }, { "code": "SI-085", "name": "Novo Mesto", "type": "Municipality" }, { "code": "SI-086", "name": "Odranci", "type": "Municipality" }, { "code": "SI-087", "name": "Ormo鱉", "type": "Municipality" }, { "code": "SI-088", "name": "Osilnica", "type": "Municipality" }, { "code": "SI-089", "name": "Pesnica", "type": "Municipality" }, { "code": "SI-090", "name": "Piran", "type": "Municipality" }, { "code": "SI-091", "name": "Pivka", "type": "Municipality" }, { "code": "SI-092", "name": "Podetrtek", "type": "Municipality" }, { "code": "SI-093", "name": "Podvelka", "type": "Municipality" }, { "code": "SI-094", "name": "Postojna", "type": "Municipality" }, { "code": "SI-095", "name": "Preddvor", "type": "Municipality" }, { "code": "SI-096", "name": "Ptuj", "type": "Municipality" }, { "code": "SI-097", "name": "Puconci", "type": "Municipality" }, { "code": "SI-098", "name": "Rae-Fram", "type": "Municipality" }, { "code": "SI-099", "name": "Radee", "type": "Municipality" }, { "code": "SI-100", "name": "Radenci", "type": "Municipality" }, { "code": "SI-101", "name": "Radlje ob Dravi", "type": "Municipality" }, { "code": "SI-102", "name": "Radovljica", "type": "Municipality" }, { "code": "SI-103", "name": "Ravne na Koro禳kem", "type": "Municipality" }, { "code": "SI-104", "name": "Ribnica", "type": "Municipality" }, { "code": "SI-105", "name": "Roga禳ovci", "type": "Municipality" }, { "code": "SI-106", "name": "Roga禳ka Slatina", "type": "Municipality" }, { "code": "SI-107", "name": "Rogatec", "type": "Municipality" }, { "code": "SI-108", "name": "Ru禳e", "type": "Municipality" }, { "code": "SI-109", "name": "Semi", "type": "Municipality" }, { "code": "SI-110", "name": "Sevnica", "type": "Municipality" }, { "code": "SI-111", "name": "Se鱉ana", "type": "Municipality" }, { "code": "SI-112", "name": "Slovenj Gradec", "type": "Municipality" }, { "code": "SI-113", "name": "Slovenska Bistrica", "type": "Municipality" }, { "code": "SI-114", "name": "Slovenske Konjice", "type": "Municipality" }, { "code": "SI-115", "name": "Star禳e", "type": "Municipality" }, { "code": "SI-116", "name": "Sveti Jurij ob avnici", "type": "Municipality" }, { "code": "SI-117", "name": "enur", "type": "Municipality" }, { "code": "SI-118", "name": "entilj", "type": "Municipality" }, { "code": "SI-119", "name": "entjernej", "type": "Municipality" }, { "code": "SI-120", "name": "entjur", "type": "Municipality" }, { "code": "SI-121", "name": "kocjan", "type": "Municipality" }, { "code": "SI-122", "name": "kofja Loka", "type": "Municipality" }, { "code": "SI-123", "name": "kofljica", "type": "Municipality" }, { "code": "SI-124", "name": "marje pri Jel禳ah", "type": "Municipality" }, { "code": "SI-125", "name": "martno ob Paki", "type": "Municipality" }, { "code": "SI-126", "name": "o禳tanj", "type": "Municipality" }, { "code": "SI-127", "name": "tore", "type": "Municipality" }, { "code": "SI-128", "name": "Tolmin", "type": "Municipality" }, { "code": "SI-129", "name": "Trbovlje", "type": "Municipality" }, { "code": "SI-130", "name": "Trebnje", "type": "Municipality" }, { "code": "SI-131", "name": "Tr鱉i", "type": "Municipality" }, { "code": "SI-132", "name": "Turni禳e", "type": "Municipality" }, { "code": "SI-133", "name": "Velenje", "type": "Municipality" }, { "code": "SI-134", "name": "Velike La禳e", "type": "Municipality" }, { "code": "SI-135", "name": "Videm", "type": "Municipality" }, { "code": "SI-136", "name": "Vipava", "type": "Municipality" }, { "code": "SI-137", "name": "Vitanje", "type": "Municipality" }, { "code": "SI-138", "name": "Vodice", "type": "Municipality" }, { "code": "SI-139", "name": "Vojnik", "type": "Municipality" }, { "code": "SI-140", "name": "Vrhnika", "type": "Municipality" }, { "code": "SI-141", "name": "Vuzenica", "type": "Municipality" }, { "code": "SI-142", "name": "Zagorje ob Savi", "type": "Municipality" }, { "code": "SI-143", "name": "Zavr", "type": "Municipality" }, { "code": "SI-144", "name": "Zree", "type": "Municipality" }, { "code": "SI-146", "name": "鬚elezniki", "type": "Municipality" }, { "code": "SI-147", "name": "鬚iri", "type": "Municipality" }, { "code": "SI-148", "name": "Benedikt", "type": "Municipality" }, { "code": "SI-149", "name": "Bistrica ob Sotli", "type": "Municipality" }, { "code": "SI-150", "name": "Bloke", "type": "Municipality" }, { "code": "SI-151", "name": "Braslove", "type": "Municipality" }, { "code": "SI-152", "name": "Cankova", "type": "Municipality" }, { "code": "SI-153", "name": "Cerkvenjak", "type": "Municipality" }, { "code": "SI-154", "name": "Dobje", "type": "Municipality" }, { "code": "SI-155", "name": "Dobrna", "type": "Municipality" }, { "code": "SI-156", "name": "Dobrovnik", "type": "Municipality" }, { "code": "SI-157", "name": "Dolenjske Toplice", "type": "Municipality" }, { "code": "SI-158", "name": "Grad", "type": "Municipality" }, { "code": "SI-159", "name": "Hajdina", "type": "Municipality" }, { "code": "SI-160", "name": "Hoe-Slivnica", "type": "Municipality" }, { "code": "SI-161", "name": "Hodo禳", "type": "Municipality" }, { "code": "SI-162", "name": "Horjul", "type": "Municipality" }, { "code": "SI-163", "name": "Jezersko", "type": "Municipality" }, { "code": "SI-164", "name": "Komenda", "type": "Municipality" }, { "code": "SI-165", "name": "Kostel", "type": "Municipality" }, { "code": "SI-166", "name": "Kri鱉evci", "type": "Municipality" }, { "code": "SI-167", "name": "Lovrenc na Pohorju", "type": "Municipality" }, { "code": "SI-168", "name": "Markovci", "type": "Municipality" }, { "code": "SI-169", "name": "Miklav鱉 na Dravskem polju", "type": "Municipality" }, { "code": "SI-170", "name": "Mirna Pe", "type": "Municipality" }, { "code": "SI-171", "name": "Oplotnica", "type": "Municipality" }, { "code": "SI-172", "name": "Podlehnik", "type": "Municipality" }, { "code": "SI-173", "name": "Polzela", "type": "Municipality" }, { "code": "SI-174", "name": "Prebold", "type": "Municipality" }, { "code": "SI-175", "name": "Prevalje", "type": "Municipality" }, { "code": "SI-176", "name": "Razkri鱉je", "type": "Municipality" }, { "code": "SI-177", "name": "Ribnica na Pohorju", "type": "Municipality" }, { "code": "SI-178", "name": "Selnica ob Dravi", "type": "Municipality" }, { "code": "SI-179", "name": "Sodra鱉ica", "type": "Municipality" }, { "code": "SI-180", "name": "Solava", "type": "Municipality" }, { "code": "SI-181", "name": "Sveta Ana", "type": "Municipality" }, { "code": "SI-182", "name": "Sveti Andra鱉 v Slovenskih goricah", "type": "Municipality" }, { "code": "SI-183", "name": "empeter-Vrtojba", "type": "Municipality" }, { "code": "SI-184", "name": "Tabor", "type": "Municipality" }, { "code": "SI-185", "name": "Trnovska Vas", "type": "Municipality" }, { "code": "SI-186", "name": "Trzin", "type": "Municipality" }, { "code": "SI-187", "name": "Velika Polana", "type": "Municipality" }, { "code": "SI-188", "name": "Ver鱉ej", "type": "Municipality" }, { "code": "SI-189", "name": "Vransko", "type": "Municipality" }, { "code": "SI-190", "name": "鬚alec", "type": "Municipality" }, { "code": "SI-191", "name": "鬚etale", "type": "Municipality" }, { "code": "SI-192", "name": "鬚irovnica", "type": "Municipality" }, { "code": "SI-193", "name": "鬚u鱉emberk", "type": "Municipality" }, { "code": "SI-194", "name": "martno pri Litiji", "type": "Municipality" }, { "code": "SI-195", "name": "Apae", "type": "Municipality" }, { "code": "SI-196", "name": "Cirkulane", "type": "Municipality" }, { "code": "SI-197", "name": "Kosanjevica na Krki", "type": "Municipality" }, { "code": "SI-198", "name": "Makole", "type": "Municipality" }, { "code": "SI-199", "name": "Mokronog-Trebelno", "type": "Municipality" }, { "code": "SI-200", "name": "Poljane", "type": "Municipality" }, { "code": "SI-201", "name": "Rene-Vogrsko", "type": "Municipality" }, { "code": "SI-202", "name": "Sredi禳e ob Dravi", "type": "Municipality" }, { "code": "SI-203", "name": "Stra鱉a", "type": "Municipality" }, { "code": "SI-204", "name": "Sveta Trojica v Slovenskih goricah", "type": "Municipality" }, { "code": "SI-205", "name": "Sveti Toma鱉", "type": "Municipality" }, { "code": "SI-206", "name": "marje禳ke Toplice", "type": "Municipality" }, { "code": "SI-207", "name": "Gorje", "type": "Municipality" }, { "code": "SI-208", "name": "Log-Dragomer", "type": "Municipality" }, { "code": "SI-209", "name": "Reica ob Savinji", "type": "Municipality" }, { "code": "SI-210", "name": "Sveti Jurij v Slovenskih goricah", "type": "Municipality" }, { "code": "SI-211", "name": "entrupert", "type": "Municipality" }, { "code": "SI-212", "name": "Mirna", "type": "Municipality" }, { "code": "SI-213", "name": "Ankaran", "type": "Municipality" }, { "code": "SK-BC", "name": "Banskobystrick羸 kraj", "type": "Region" }, { "code": "SK-BL", "name": "Bratislavsk羸 kraj", "type": "Region" }, { "code": "SK-KI", "name": "Ko禳ick羸 kraj", "type": "Region" }, { "code": "SK-NI", "name": "Nitriansky kraj", "type": "Region" }, { "code": "SK-PV", "name": "Pre禳ovsk羸 kraj", "type": "Region" }, { "code": "SK-TA", "name": "Trnavsk羸 kraj", "type": "Region" }, { "code": "SK-TC", "name": "Treniansky kraj", "type": "Region" }, { "code": "SK-ZI", "name": "鬚ilinsk羸 kraj", "type": "Region" }, { "code": "SL-E", "name": "Eastern", "type": "Province" }, { "code": "SL-N", "name": "Northern", "type": "Province" }, { "code": "SL-NW", "name": "North Western", "type": "Province" }, { "code": "SL-S", "name": "Southern", "type": "Province" }, { "code": "SL-W", "name": "Western Area (Freetown)", "type": "Area" }, { "code": "SM-01", "name": "Acquaviva", "type": "Municipality" }, { "code": "SM-02", "name": "Chiesanuova", "type": "Municipality" }, { "code": "SM-03", "name": "Domagnano", "type": "Municipality" }, { "code": "SM-04", "name": "Faetano", "type": "Municipality" }, { "code": "SM-05", "name": "Fiorentino", "type": "Municipality" }, { "code": "SM-06", "name": "Borgo Maggiore", "type": "Municipality" }, { "code": "SM-07", "name": "Citt di San Marino", "type": "Municipality" }, { "code": "SM-08", "name": "Montegiardino", "type": "Municipality" }, { "code": "SM-09", "name": "Serravalle", "type": "Municipality" }, { "code": "SN-DB", "name": "Diourbel", "type": "Region" }, { "code": "SN-DK", "name": "Dakar", "type": "Region" }, { "code": "SN-FK", "name": "Fatick", "type": "Region" }, { "code": "SN-KA", "name": "Kaffrine", "type": "Region" }, { "code": "SN-KD", "name": "Kolda", "type": "Region" }, { "code": "SN-KE", "name": "K矇dougou", "type": "Region" }, { "code": "SN-KL", "name": "Kaolack", "type": "Region" }, { "code": "SN-LG", "name": "Louga", "type": "Region" }, { "code": "SN-MT", "name": "Matam", "type": "Region" }, { "code": "SN-SE", "name": "S矇dhiou", "type": "Region" }, { "code": "SN-SL", "name": "Saint-Louis", "type": "Region" }, { "code": "SN-TC", "name": "Tambacounda", "type": "Region" }, { "code": "SN-TH", "name": "Thi癡s", "type": "Region" }, { "code": "SN-ZG", "name": "Ziguinchor", "type": "Region" }, { "code": "SO-AW", "name": "Awdal", "type": "Region" }, { "code": "SO-BK", "name": "Bakool", "type": "Region" }, { "code": "SO-BN", "name": "Banaadir", "type": "Region" }, { "code": "SO-BR", "name": "Bari", "type": "Region" }, { "code": "SO-BY", "name": "Bay", "type": "Region" }, { "code": "SO-GA", "name": "Galguduud", "type": "Region" }, { "code": "SO-GE", "name": "Gedo", "type": "Region" }, { "code": "SO-HI", "name": "Hiiraan", "type": "Region" }, { "code": "SO-JD", "name": "Jubbada Dhexe", "type": "Region" }, { "code": "SO-JH", "name": "Jubbada Hoose", "type": "Region" }, { "code": "SO-MU", "name": "Mudug", "type": "Region" }, { "code": "SO-NU", "name": "Nugaal", "type": "Region" }, { "code": "SO-SA", "name": "Sanaag", "type": "Region" }, { "code": "SO-SD", "name": "Shabeellaha Dhexe", "type": "Region" }, { "code": "SO-SH", "name": "Shabeellaha Hoose", "type": "Region" }, { "code": "SO-SO", "name": "Sool", "type": "Region" }, { "code": "SO-TO", "name": "Togdheer", "type": "Region" }, { "code": "SO-WO", "name": "Woqooyi Galbeed", "type": "Region" }, { "code": "SR-BR", "name": "Brokopondo", "type": "District" }, { "code": "SR-CM", "name": "Commewijne", "type": "District" }, { "code": "SR-CR", "name": "Coronie", "type": "District" }, { "code": "SR-MA", "name": "Marowijne", "type": "District" }, { "code": "SR-NI", "name": "Nickerie", "type": "District" }, { "code": "SR-PM", "name": "Paramaribo", "type": "District" }, { "code": "SR-PR", "name": "Para", "type": "District" }, { "code": "SR-SA", "name": "Saramacca", "type": "District" }, { "code": "SR-SI", "name": "Sipaliwini", "type": "District" }, { "code": "SR-WA", "name": "Wanica", "type": "District" }, { "code": "SS-BN", "name": "Northern Bahr el Ghazal", "type": "State" }, { "code": "SS-BW", "name": "Western Bahr el Ghazal", "type": "State" }, { "code": "SS-EC", "name": "Central Equatoria", "type": "State" }, { "code": "SS-EE", "name": "Eastern Equatoria", "type": "State" }, { "code": "SS-EW", "name": "Western Equatoria", "type": "State" }, { "code": "SS-JG", "name": "Jonglei", "type": "State" }, { "code": "SS-LK", "name": "Lakes", "type": "State" }, { "code": "SS-NU", "name": "Upper Nile", "type": "State" }, { "code": "SS-UY", "name": "Unity", "type": "State" }, { "code": "SS-WR", "name": "Warrap", "type": "State" }, { "code": "ST-01", "name": "gua Grande", "type": "District" }, { "code": "ST-02", "name": "Cantagalo", "type": "District" }, { "code": "ST-03", "name": "Cau矇", "type": "District" }, { "code": "ST-04", "name": "Lemb獺", "type": "District" }, { "code": "ST-05", "name": "Lobata", "type": "District" }, { "code": "ST-06", "name": "M矇-Z籀chi", "type": "District" }, { "code": "ST-P", "name": "Pr穩ncipe", "type": "Autonomous region" }, { "code": "SV-AH", "name": "Ahuachap獺n", "type": "Department" }, { "code": "SV-CA", "name": "Caba簽as", "type": "Department" }, { "code": "SV-CH", "name": "Chalatenango", "type": "Department" }, { "code": "SV-CU", "name": "Cuscatl獺n", "type": "Department" }, { "code": "SV-LI", "name": "La Libertad", "type": "Department" }, { "code": "SV-MO", "name": "Moraz獺n", "type": "Department" }, { "code": "SV-PA", "name": "La Paz", "type": "Department" }, { "code": "SV-SA", "name": "Santa Ana", "type": "Department" }, { "code": "SV-SM", "name": "San Miguel", "type": "Department" }, { "code": "SV-SO", "name": "Sonsonate", "type": "Department" }, { "code": "SV-SS", "name": "San Salvador", "type": "Department" }, { "code": "SV-SV", "name": "San Vicente", "type": "Department" }, { "code": "SV-UN", "name": "La Uni籀n", "type": "Department" }, { "code": "SV-US", "name": "Usulut獺n", "type": "Department" }, { "code": "SY-DI", "name": "Dimashq", "type": "Province" }, { "code": "SY-DR", "name": "Dar'", "type": "Province" }, { "code": "SY-DY", "name": "Dayr az Zawr", "type": "Province" }, { "code": "SY-HA", "name": "Al 廎災sakah", "type": "Province" }, { "code": "SY-HI", "name": "廎甬m", "type": "Province" }, { "code": "SY-HL", "name": "廎災lab", "type": "Province" }, { "code": "SY-HM", "name": "廎災mh", "type": "Province" }, { "code": "SY-ID", "name": "Idlib", "type": "Province" }, { "code": "SY-LA", "name": "Al Ldhiq蘋yah", "type": "Province" }, { "code": "SY-QU", "name": "Al Qunay籟irah", "type": "Province" }, { "code": "SY-RA", "name": "Ar Raqqah", "type": "Province" }, { "code": "SY-RD", "name": "R蘋f Dimashq", "type": "Province" }, { "code": "SY-SU", "name": "As Suwayd'", "type": "Province" }, { "code": "SY-TA", "name": "籠ar籟贖s", "type": "Province" }, { "code": "SZ-HH", "name": "Hhohho", "type": "Region" }, { "code": "SZ-LU", "name": "Lubombo", "type": "Region" }, { "code": "SZ-MA", "name": "Manzini", "type": "Region" }, { "code": "SZ-SH", "name": "Shiselweni", "type": "Region" }, { "code": "TD-BA", "name": "Al Ba籟廎怯", "type": "Province" }, { "code": "TD-BG", "name": "Bahr el Ghazal", "type": "Province" }, { "code": "TD-BO", "name": "Borkou", "type": "Province" }, { "code": "TD-CB", "name": "Chari-Baguirmi", "type": "Province" }, { "code": "TD-EE", "name": "Ennedi-Est", "type": "Province" }, { "code": "TD-EO", "name": "Ennedi-Ouest", "type": "Province" }, { "code": "TD-GR", "name": "Gu矇ra", "type": "Province" }, { "code": "TD-HL", "name": "Hadjer Lamis", "type": "Province" }, { "code": "TD-KA", "name": "Kanem", "type": "Province" }, { "code": "TD-LC", "name": "Al Bu廎奄yrah", "type": "Province" }, { "code": "TD-LO", "name": "Logone-Occidental", "type": "Province" }, { "code": "TD-LR", "name": "Logone-Oriental", "type": "Province" }, { "code": "TD-MA", "name": "Mandoul", "type": "Province" }, { "code": "TD-MC", "name": "Moyen-Chari", "type": "Province" }, { "code": "TD-ME", "name": "Mayo-Kebbi-Est", "type": "Province" }, { "code": "TD-MO", "name": "Mayo-Kebbi-Ouest", "type": "Province" }, { "code": "TD-ND", "name": "Mad蘋nat Injam蘋n", "type": "Province" }, { "code": "TD-OD", "name": "Ouadda簿", "type": "Province" }, { "code": "TD-SA", "name": "Salamat", "type": "Province" }, { "code": "TD-SI", "name": "Sila", "type": "Province" }, { "code": "TD-TA", "name": "Tandjil矇", "type": "Province" }, { "code": "TD-TI", "name": "Tibast蘋", "type": "Province" }, { "code": "TD-WF", "name": "Wadi Fira", "type": "Province" }, { "code": "TG-C", "name": "Centrale", "type": "Region" }, { "code": "TG-K", "name": "Kara", "type": "Region" }, { "code": "TG-M", "name": "Maritime (R矇gion)", "type": "Region" }, { "code": "TG-P", "name": "Plateaux", "type": "Region" }, { "code": "TG-S", "name": "Savanes", "type": "Region" }, { "code": "TH-10", "name": "Krung Thep Maha Nakhon", "type": "Metropolitan administration" }, { "code": "TH-11", "name": "Samut Prakan", "type": "Province" }, { "code": "TH-12", "name": "Nonthaburi", "type": "Province" }, { "code": "TH-13", "name": "Pathum Thani", "type": "Province" }, { "code": "TH-14", "name": "Phra Nakhon Si Ayutthaya", "type": "Province" }, { "code": "TH-15", "name": "Ang Thong", "type": "Province" }, { "code": "TH-16", "name": "Lop Buri", "type": "Province" }, { "code": "TH-17", "name": "Sing Buri", "type": "Province" }, { "code": "TH-18", "name": "Chai Nat", "type": "Province" }, { "code": "TH-19", "name": "Saraburi", "type": "Province" }, { "code": "TH-20", "name": "Chon Buri", "type": "Province" }, { "code": "TH-21", "name": "Rayong", "type": "Province" }, { "code": "TH-22", "name": "Chanthaburi", "type": "Province" }, { "code": "TH-23", "name": "Trat", "type": "Province" }, { "code": "TH-24", "name": "Chachoengsao", "type": "Province" }, { "code": "TH-25", "name": "Prachin Buri", "type": "Province" }, { "code": "TH-26", "name": "Nakhon Nayok", "type": "Province" }, { "code": "TH-27", "name": "Sa Kaeo", "type": "Province" }, { "code": "TH-30", "name": "Nakhon Ratchasima", "type": "Province" }, { "code": "TH-31", "name": "Buri Ram", "type": "Province" }, { "code": "TH-32", "name": "Surin", "type": "Province" }, { "code": "TH-33", "name": "Si Sa Ket", "type": "Province" }, { "code": "TH-34", "name": "Ubon Ratchathani", "type": "Province" }, { "code": "TH-35", "name": "Yasothon", "type": "Province" }, { "code": "TH-36", "name": "Chaiyaphum", "type": "Province" }, { "code": "TH-37", "name": "Amnat Charoen", "type": "Province" }, { "code": "TH-38", "name": "Bueng Kan", "type": "Province" }, { "code": "TH-39", "name": "Nong Bua Lam Phu", "type": "Province" }, { "code": "TH-40", "name": "Khon Kaen", "type": "Province" }, { "code": "TH-41", "name": "Udon Thani", "type": "Province" }, { "code": "TH-42", "name": "Loei", "type": "Province" }, { "code": "TH-43", "name": "Nong Khai", "type": "Province" }, { "code": "TH-44", "name": "Maha Sarakham", "type": "Province" }, { "code": "TH-45", "name": "Roi Et", "type": "Province" }, { "code": "TH-46", "name": "Kalasin", "type": "Province" }, { "code": "TH-47", "name": "Sakon Nakhon", "type": "Province" }, { "code": "TH-48", "name": "Nakhon Phanom", "type": "Province" }, { "code": "TH-49", "name": "Mukdahan", "type": "Province" }, { "code": "TH-50", "name": "Chiang Mai", "type": "Province" }, { "code": "TH-51", "name": "Lamphun", "type": "Province" }, { "code": "TH-52", "name": "Lampang", "type": "Province" }, { "code": "TH-53", "name": "Uttaradit", "type": "Province" }, { "code": "TH-54", "name": "Phrae", "type": "Province" }, { "code": "TH-55", "name": "Nan", "type": "Province" }, { "code": "TH-56", "name": "Phayao", "type": "Province" }, { "code": "TH-57", "name": "Chiang Rai", "type": "Province" }, { "code": "TH-58", "name": "Mae Hong Son", "type": "Province" }, { "code": "TH-60", "name": "Nakhon Sawan", "type": "Province" }, { "code": "TH-61", "name": "Uthai Thani", "type": "Province" }, { "code": "TH-62", "name": "Kamphaeng Phet", "type": "Province" }, { "code": "TH-63", "name": "Tak", "type": "Province" }, { "code": "TH-64", "name": "Sukhothai", "type": "Province" }, { "code": "TH-65", "name": "Phitsanulok", "type": "Province" }, { "code": "TH-66", "name": "Phichit", "type": "Province" }, { "code": "TH-67", "name": "Phetchabun", "type": "Province" }, { "code": "TH-70", "name": "Ratchaburi", "type": "Province" }, { "code": "TH-71", "name": "Kanchanaburi", "type": "Province" }, { "code": "TH-72", "name": "Suphan Buri", "type": "Province" }, { "code": "TH-73", "name": "Nakhon Pathom", "type": "Province" }, { "code": "TH-74", "name": "Samut Sakhon", "type": "Province" }, { "code": "TH-75", "name": "Samut Songkhram", "type": "Province" }, { "code": "TH-76", "name": "Phetchaburi", "type": "Province" }, { "code": "TH-77", "name": "Prachuap Khiri Khan", "type": "Province" }, { "code": "TH-80", "name": "Nakhon Si Thammarat", "type": "Province" }, { "code": "TH-81", "name": "Krabi", "type": "Province" }, { "code": "TH-82", "name": "Phangnga", "type": "Province" }, { "code": "TH-83", "name": "Phuket", "type": "Province" }, { "code": "TH-84", "name": "Surat Thani", "type": "Province" }, { "code": "TH-85", "name": "Ranong", "type": "Province" }, { "code": "TH-86", "name": "Chumphon", "type": "Province" }, { "code": "TH-90", "name": "Songkhla", "type": "Province" }, { "code": "TH-91", "name": "Satun", "type": "Province" }, { "code": "TH-92", "name": "Trang", "type": "Province" }, { "code": "TH-93", "name": "Phatthalung", "type": "Province" }, { "code": "TH-94", "name": "Pattani", "type": "Province" }, { "code": "TH-95", "name": "Yala", "type": "Province" }, { "code": "TH-96", "name": "Narathiwat", "type": "Province" }, { "code": "TH-S", "name": "Phatthaya", "type": "Special administrative city" }, { "code": "TJ-DU", "name": "Dushanbe", "type": "Capital territory" }, { "code": "TJ-GB", "name": "K躑histoni Badakhshon", "type": "Autonomous region" }, { "code": "TJ-KT", "name": "Khatlon", "type": "Region" }, { "code": "TJ-RA", "name": "nohiyahoi tobei jumhur穩", "type": "Districts under republic administration" }, { "code": "TJ-SU", "name": "Sughd", "type": "Region" }, { "code": "TL-AL", "name": "Aileu", "type": "Municipality" }, { "code": "TL-AN", "name": "Ainaro", "type": "Municipality" }, { "code": "TL-BA", "name": "Baucau", "type": "Municipality" }, { "code": "TL-BO", "name": "Bobonaro", "type": "Municipality" }, { "code": "TL-CO", "name": "Cova Lima", "type": "Municipality" }, { "code": "TL-DI", "name": "D穩li", "type": "Municipality" }, { "code": "TL-ER", "name": "Ermera", "type": "Municipality" }, { "code": "TL-LA", "name": "Lautein", "type": "Municipality" }, { "code": "TL-LI", "name": "Likis獺", "type": "Municipality" }, { "code": "TL-MF", "name": "Manufahi", "type": "Municipality" }, { "code": "TL-MT", "name": "Manatuto", "type": "Municipality" }, { "code": "TL-OE", "name": "Oekusi-Ambenu", "type": "Special administrative region" }, { "code": "TL-VI", "name": "Vikeke", "type": "Municipality" }, { "code": "TM-A", "name": "Ahal", "type": "Region" }, { "code": "TM-B", "name": "Balkan", "type": "Region" }, { "code": "TM-D", "name": "Daoguz", "type": "Region" }, { "code": "TM-L", "name": "Lebap", "type": "Region" }, { "code": "TM-M", "name": "Mary", "type": "Region" }, { "code": "TM-S", "name": "Agabat", "type": "City" }, { "code": "TN-11", "name": "Tunis", "type": "Governorate" }, { "code": "TN-12", "name": "L'Ariana", "type": "Governorate" }, { "code": "TN-13", "name": "Ben Arous", "type": "Governorate" }, { "code": "TN-14", "name": "La Manouba", "type": "Governorate" }, { "code": "TN-21", "name": "Nabeul", "type": "Governorate" }, { "code": "TN-22", "name": "Zaghouan", "type": "Governorate" }, { "code": "TN-23", "name": "Bizerte", "type": "Governorate" }, { "code": "TN-31", "name": "B矇ja", "type": "Governorate" }, { "code": "TN-32", "name": "Jendouba", "type": "Governorate" }, { "code": "TN-33", "name": "Le Kef", "type": "Governorate" }, { "code": "TN-34", "name": "Siliana", "type": "Governorate" }, { "code": "TN-41", "name": "Kairouan", "type": "Governorate" }, { "code": "TN-42", "name": "Kasserine", "type": "Governorate" }, { "code": "TN-43", "name": "Sidi Bouzid", "type": "Governorate" }, { "code": "TN-51", "name": "Sousse", "type": "Governorate" }, { "code": "TN-52", "name": "Monastir", "type": "Governorate" }, { "code": "TN-53", "name": "Mahdia", "type": "Governorate" }, { "code": "TN-61", "name": "Sfax", "type": "Governorate" }, { "code": "TN-71", "name": "Gafsa", "type": "Governorate" }, { "code": "TN-72", "name": "Tozeur", "type": "Governorate" }, { "code": "TN-73", "name": "K矇bili", "type": "Governorate" }, { "code": "TN-81", "name": "Gab癡s", "type": "Governorate" }, { "code": "TN-82", "name": "M矇denine", "type": "Governorate" }, { "code": "TN-83", "name": "Tataouine", "type": "Governorate" }, { "code": "TO-01", "name": "'Eua", "type": "Division" }, { "code": "TO-02", "name": "Ha'apai", "type": "Division" }, { "code": "TO-03", "name": "Niuas", "type": "Division" }, { "code": "TO-04", "name": "Tongatapu", "type": "Division" }, { "code": "TO-05", "name": "Vava'u", "type": "Division" }, { "code": "TR-01", "name": "Adana", "type": "Province" }, { "code": "TR-02", "name": "Ad覺yaman", "type": "Province" }, { "code": "TR-03", "name": "Afyonkarahisar", "type": "Province" }, { "code": "TR-04", "name": "Ar覺", "type": "Province" }, { "code": "TR-05", "name": "Amasya", "type": "Province" }, { "code": "TR-06", "name": "Ankara", "type": "Province" }, { "code": "TR-07", "name": "Antalya", "type": "Province" }, { "code": "TR-08", "name": "Artvin", "type": "Province" }, { "code": "TR-09", "name": "Ayd覺n", "type": "Province" }, { "code": "TR-10", "name": "Bal覺kesir", "type": "Province" }, { "code": "TR-11", "name": "Bilecik", "type": "Province" }, { "code": "TR-12", "name": "Bing繹l", "type": "Province" }, { "code": "TR-13", "name": "Bitlis", "type": "Province" }, { "code": "TR-14", "name": "Bolu", "type": "Province" }, { "code": "TR-15", "name": "Burdur", "type": "Province" }, { "code": "TR-16", "name": "Bursa", "type": "Province" }, { "code": "TR-17", "name": "anakkale", "type": "Province" }, { "code": "TR-18", "name": "ank覺r覺", "type": "Province" }, { "code": "TR-19", "name": "orum", "type": "Province" }, { "code": "TR-20", "name": "Denizli", "type": "Province" }, { "code": "TR-21", "name": "Diyarbak覺r", "type": "Province" }, { "code": "TR-22", "name": "Edirne", "type": "Province" }, { "code": "TR-23", "name": "Elaz覺", "type": "Province" }, { "code": "TR-24", "name": "Erzincan", "type": "Province" }, { "code": "TR-25", "name": "Erzurum", "type": "Province" }, { "code": "TR-26", "name": "Eskiehir", "type": "Province" }, { "code": "TR-27", "name": "Gaziantep", "type": "Province" }, { "code": "TR-28", "name": "Giresun", "type": "Province" }, { "code": "TR-29", "name": "G羹m羹hane", "type": "Province" }, { "code": "TR-30", "name": "Hakk璽ri", "type": "Province" }, { "code": "TR-31", "name": "Hatay", "type": "Province" }, { "code": "TR-32", "name": "Isparta", "type": "Province" }, { "code": "TR-33", "name": "Mersin", "type": "Province" }, { "code": "TR-34", "name": "襤stanbul", "type": "Province" }, { "code": "TR-35", "name": "襤zmir", "type": "Province" }, { "code": "TR-36", "name": "Kars", "type": "Province" }, { "code": "TR-37", "name": "Kastamonu", "type": "Province" }, { "code": "TR-38", "name": "Kayseri", "type": "Province" }, { "code": "TR-39", "name": "K覺rklareli", "type": "Province" }, { "code": "TR-40", "name": "K覺rehir", "type": "Province" }, { "code": "TR-41", "name": "Kocaeli", "type": "Province" }, { "code": "TR-42", "name": "Konya", "type": "Province" }, { "code": "TR-43", "name": "K羹tahya", "type": "Province" }, { "code": "TR-44", "name": "Malatya", "type": "Province" }, { "code": "TR-45", "name": "Manisa", "type": "Province" }, { "code": "TR-46", "name": "Kahramanmara", "type": "Province" }, { "code": "TR-47", "name": "Mardin", "type": "Province" }, { "code": "TR-48", "name": "Mula", "type": "Province" }, { "code": "TR-49", "name": "Mu", "type": "Province" }, { "code": "TR-50", "name": "Nevehir", "type": "Province" }, { "code": "TR-51", "name": "Nide", "type": "Province" }, { "code": "TR-52", "name": "Ordu", "type": "Province" }, { "code": "TR-53", "name": "Rize", "type": "Province" }, { "code": "TR-54", "name": "Sakarya", "type": "Province" }, { "code": "TR-55", "name": "Samsun", "type": "Province" }, { "code": "TR-56", "name": "Siirt", "type": "Province" }, { "code": "TR-57", "name": "Sinop", "type": "Province" }, { "code": "TR-58", "name": "Sivas", "type": "Province" }, { "code": "TR-59", "name": "Tekirda", "type": "Province" }, { "code": "TR-60", "name": "Tokat", "type": "Province" }, { "code": "TR-61", "name": "Trabzon", "type": "Province" }, { "code": "TR-62", "name": "Tunceli", "type": "Province" }, { "code": "TR-63", "name": "anl覺urfa", "type": "Province" }, { "code": "TR-64", "name": "Uak", "type": "Province" }, { "code": "TR-65", "name": "Van", "type": "Province" }, { "code": "TR-66", "name": "Yozgat", "type": "Province" }, { "code": "TR-67", "name": "Zonguldak", "type": "Province" }, { "code": "TR-68", "name": "Aksaray", "type": "Province" }, { "code": "TR-69", "name": "Bayburt", "type": "Province" }, { "code": "TR-70", "name": "Karaman", "type": "Province" }, { "code": "TR-71", "name": "K覺r覺kkale", "type": "Province" }, { "code": "TR-72", "name": "Batman", "type": "Province" }, { "code": "TR-73", "name": "覺rnak", "type": "Province" }, { "code": "TR-74", "name": "Bart覺n", "type": "Province" }, { "code": "TR-75", "name": "Ardahan", "type": "Province" }, { "code": "TR-76", "name": "Id覺r", "type": "Province" }, { "code": "TR-77", "name": "Yalova", "type": "Province" }, { "code": "TR-78", "name": "Karab羹k", "type": "Province" }, { "code": "TR-79", "name": "Kilis", "type": "Province" }, { "code": "TR-80", "name": "Osmaniye", "type": "Province" }, { "code": "TR-81", "name": "D羹zce", "type": "Province" }, { "code": "TT-ARI", "name": "Arima", "type": "Borough" }, { "code": "TT-CHA", "name": "Chaguanas", "type": "Borough" }, { "code": "TT-CTT", "name": "Couva-Tabaquite-Talparo", "type": "Region" }, { "code": "TT-DMN", "name": "Diego Martin", "type": "Region" }, { "code": "TT-MRC", "name": "Mayaro-Rio Claro", "type": "Region" }, { "code": "TT-PED", "name": "Penal-Debe", "type": "Region" }, { "code": "TT-POS", "name": "Port of Spain", "type": "City" }, { "code": "TT-PRT", "name": "Princes Town", "type": "Region" }, { "code": "TT-PTF", "name": "Point Fortin", "type": "Borough" }, { "code": "TT-SFO", "name": "San Fernando", "type": "City" }, { "code": "TT-SGE", "name": "Sangre Grande", "type": "Region" }, { "code": "TT-SIP", "name": "Siparia", "type": "Region" }, { "code": "TT-SJL", "name": "San Juan-Laventille", "type": "Region" }, { "code": "TT-TOB", "name": "Tobago", "type": "Ward" }, { "code": "TT-TUP", "name": "Tunapuna-Piarco", "type": "Region" }, { "code": "TV-FUN", "name": "Funafuti", "type": "Town council" }, { "code": "TV-NIT", "name": "Niutao", "type": "Island council" }, { "code": "TV-NKF", "name": "Nukufetau", "type": "Island council" }, { "code": "TV-NKL", "name": "Nukulaelae", "type": "Island council" }, { "code": "TV-NMA", "name": "Nanumea", "type": "Island council" }, { "code": "TV-NMG", "name": "Nanumaga", "type": "Island council" }, { "code": "TV-NUI", "name": "Nui", "type": "Island council" }, { "code": "TV-VAI", "name": "Vaitupu", "type": "Island council" }, { "code": "TW-CHA", "name": "Changhua", "type": "County" }, { "code": "TW-CYI", "name": "Chiayi", "type": "City" }, { "code": "TW-CYQ", "name": "Chiayi", "type": "County" }, { "code": "TW-HSQ", "name": "Hsinchu", "type": "County" }, { "code": "TW-HSZ", "name": "Hsinchu", "type": "City" }, { "code": "TW-HUA", "name": "Hualien", "type": "County" }, { "code": "TW-ILA", "name": "Yilan", "type": "County" }, { "code": "TW-KEE", "name": "Keelung", "type": "City" }, { "code": "TW-KHH", "name": "Kaohsiung", "type": "Special municipality" }, { "code": "TW-KIN", "name": "Kinmen", "type": "County" }, { "code": "TW-LIE", "name": "Lienchiang", "type": "County" }, { "code": "TW-MIA", "name": "Miaoli", "type": "County" }, { "code": "TW-NAN", "name": "Nantou", "type": "County" }, { "code": "TW-NWT", "name": "New Taipei", "type": "Special municipality" }, { "code": "TW-PEN", "name": "Penghu", "type": "County" }, { "code": "TW-PIF", "name": "Pingtung", "type": "County" }, { "code": "TW-TAO", "name": "Taoyuan", "type": "Special municipality" }, { "code": "TW-TNN", "name": "Tainan", "type": "Special municipality" }, { "code": "TW-TPE", "name": "Taipei", "type": "Special municipality" }, { "code": "TW-TTT", "name": "Taitung", "type": "County" }, { "code": "TW-TXG", "name": "Taichung", "type": "Special municipality" }, { "code": "TW-YUN", "name": "Yunlin", "type": "County" }, { "code": "TZ-01", "name": "Arusha", "type": "Region" }, { "code": "TZ-02", "name": "Dar es Salaam", "type": "Region" }, { "code": "TZ-03", "name": "Dodoma", "type": "Region" }, { "code": "TZ-04", "name": "Iringa", "type": "Region" }, { "code": "TZ-05", "name": "Kagera", "type": "Region" }, { "code": "TZ-06", "name": "Pemba North", "type": "Region" }, { "code": "TZ-07", "name": "Zanzibar North", "type": "Region" }, { "code": "TZ-08", "name": "Kigoma", "type": "Region" }, { "code": "TZ-09", "name": "Kilimanjaro", "type": "Region" }, { "code": "TZ-10", "name": "Pemba South", "type": "Region" }, { "code": "TZ-11", "name": "Zanzibar South", "type": "Region" }, { "code": "TZ-12", "name": "Lindi", "type": "Region" }, { "code": "TZ-13", "name": "Mara", "type": "Region" }, { "code": "TZ-14", "name": "Mbeya", "type": "Region" }, { "code": "TZ-15", "name": "Zanzibar West", "type": "Region" }, { "code": "TZ-16", "name": "Morogoro", "type": "Region" }, { "code": "TZ-17", "name": "Mtwara", "type": "Region" }, { "code": "TZ-18", "name": "Mwanza", "type": "Region" }, { "code": "TZ-19", "name": "Coast", "type": "Region" }, { "code": "TZ-20", "name": "Rukwa", "type": "Region" }, { "code": "TZ-21", "name": "Ruvuma", "type": "Region" }, { "code": "TZ-22", "name": "Shinyanga", "type": "Region" }, { "code": "TZ-23", "name": "Singida", "type": "Region" }, { "code": "TZ-24", "name": "Tabora", "type": "Region" }, { "code": "TZ-25", "name": "Tanga", "type": "Region" }, { "code": "TZ-26", "name": "Manyara", "type": "Region" }, { "code": "TZ-27", "name": "Geita", "type": "Region" }, { "code": "TZ-28", "name": "Katavi", "type": "Region" }, { "code": "TZ-29", "name": "Njombe", "type": "Region" }, { "code": "TZ-30", "name": "Simiyu", "type": "Region" }, { "code": "TZ-31", "name": "Songwe", "type": "Region" }, { "code": "UA-05", "name": "Vinnytska oblast", "type": "Region" }, { "code": "UA-07", "name": "Volynska oblast", "type": "Region" }, { "code": "UA-09", "name": "Luhanska oblast", "type": "Region" }, { "code": "UA-12", "name": "Dnipropetrovska oblast", "type": "Region" }, { "code": "UA-14", "name": "Donetska oblast", "type": "Region" }, { "code": "UA-18", "name": "Zhytomyrska oblast", "type": "Region" }, { "code": "UA-21", "name": "Zakarpatska oblast", "type": "Region" }, { "code": "UA-23", "name": "Zaporizka oblast", "type": "Region" }, { "code": "UA-26", "name": "Ivano-Frankivska oblast", "type": "Region" }, { "code": "UA-30", "name": "Kyiv", "type": "City" }, { "code": "UA-32", "name": "Kyivska oblast", "type": "Region" }, { "code": "UA-35", "name": "Kirovohradska oblast", "type": "Region" }, { "code": "UA-40", "name": "Sevastopol", "type": "City" }, { "code": "UA-43", "name": "Avtonomna Respublika Krym", "type": "Republic" }, { "code": "UA-46", "name": "Lvivska oblast", "type": "Region" }, { "code": "UA-48", "name": "Mykolaivska oblast", "type": "Region" }, { "code": "UA-51", "name": "Odeska oblast", "type": "Region" }, { "code": "UA-53", "name": "Poltavska oblast", "type": "Region" }, { "code": "UA-56", "name": "Rivnenska oblast", "type": "Region" }, { "code": "UA-59", "name": "Sumska oblast", "type": "Region" }, { "code": "UA-61", "name": "Ternopilska oblast", "type": "Region" }, { "code": "UA-63", "name": "Kharkivska oblast", "type": "Region" }, { "code": "UA-65", "name": "Khersonska oblast", "type": "Region" }, { "code": "UA-68", "name": "Khmelnytska oblast", "type": "Region" }, { "code": "UA-71", "name": "Cherkaska oblast", "type": "Region" }, { "code": "UA-74", "name": "Chernihivska oblast", "type": "Region" }, { "code": "UA-77", "name": "Chernivetska oblast", "type": "Region" }, { "code": "UG-101", "name": "Kalangala", "parent": "C", "type": "District" }, { "code": "UG-102", "name": "Kampala", "parent": "C", "type": "City" }, { "code": "UG-103", "name": "Kiboga", "parent": "C", "type": "District" }, { "code": "UG-104", "name": "Luwero", "parent": "C", "type": "District" }, { "code": "UG-105", "name": "Masaka", "parent": "C", "type": "District" }, { "code": "UG-106", "name": "Mpigi", "parent": "C", "type": "District" }, { "code": "UG-107", "name": "Mubende", "parent": "C", "type": "District" }, { "code": "UG-108", "name": "Mukono", "parent": "C", "type": "District" }, { "code": "UG-109", "name": "Nakasongola", "parent": "C", "type": "District" }, { "code": "UG-110", "name": "Rakai", "parent": "C", "type": "District" }, { "code": "UG-111", "name": "Sembabule", "parent": "C", "type": "District" }, { "code": "UG-112", "name": "Kayunga", "parent": "C", "type": "District" }, { "code": "UG-113", "name": "Wakiso", "parent": "C", "type": "District" }, { "code": "UG-114", "name": "Lyantonde", "parent": "C", "type": "District" }, { "code": "UG-115", "name": "Mityana", "parent": "C", "type": "District" }, { "code": "UG-116", "name": "Nakaseke", "parent": "C", "type": "District" }, { "code": "UG-117", "name": "Buikwe", "parent": "C", "type": "District" }, { "code": "UG-118", "name": "Bukomansibi", "parent": "C", "type": "District" }, { "code": "UG-119", "name": "Butambala", "parent": "C", "type": "District" }, { "code": "UG-120", "name": "Buvuma", "parent": "C", "type": "District" }, { "code": "UG-121", "name": "Gomba", "parent": "C", "type": "District" }, { "code": "UG-122", "name": "Kalungu", "parent": "C", "type": "District" }, { "code": "UG-123", "name": "Kyankwanzi", "parent": "C", "type": "District" }, { "code": "UG-124", "name": "Lwengo", "parent": "C", "type": "District" }, { "code": "UG-125", "name": "Kyotera", "parent": "C", "type": "District" }, { "code": "UG-126", "name": "Kasanda", "parent": "C", "type": "District" }, { "code": "UG-201", "name": "Bugiri", "parent": "E", "type": "District" }, { "code": "UG-202", "name": "Busia", "parent": "E", "type": "District" }, { "code": "UG-203", "name": "Iganga", "parent": "E", "type": "District" }, { "code": "UG-204", "name": "Jinja", "parent": "E", "type": "District" }, { "code": "UG-205", "name": "Kamuli", "parent": "E", "type": "District" }, { "code": "UG-206", "name": "Kapchorwa", "parent": "E", "type": "District" }, { "code": "UG-207", "name": "Katakwi", "parent": "E", "type": "District" }, { "code": "UG-208", "name": "Kumi", "parent": "E", "type": "District" }, { "code": "UG-209", "name": "Mbale", "parent": "E", "type": "District" }, { "code": "UG-210", "name": "Pallisa", "parent": "E", "type": "District" }, { "code": "UG-211", "name": "Soroti", "parent": "E", "type": "District" }, { "code": "UG-212", "name": "Tororo", "parent": "E", "type": "District" }, { "code": "UG-213", "name": "Kaberamaido", "parent": "E", "type": "District" }, { "code": "UG-214", "name": "Mayuge", "parent": "E", "type": "District" }, { "code": "UG-215", "name": "Sironko", "parent": "E", "type": "District" }, { "code": "UG-216", "name": "Amuria", "parent": "E", "type": "District" }, { "code": "UG-217", "name": "Budaka", "parent": "E", "type": "District" }, { "code": "UG-218", "name": "Bududa", "parent": "E", "type": "District" }, { "code": "UG-219", "name": "Bukedea", "parent": "E", "type": "District" }, { "code": "UG-220", "name": "Bukwo", "parent": "E", "type": "District" }, { "code": "UG-221", "name": "Butaleja", "parent": "E", "type": "District" }, { "code": "UG-222", "name": "Kaliro", "parent": "E", "type": "District" }, { "code": "UG-223", "name": "Manafwa", "parent": "E", "type": "District" }, { "code": "UG-224", "name": "Namutumba", "parent": "E", "type": "District" }, { "code": "UG-225", "name": "Bulambuli", "parent": "E", "type": "District" }, { "code": "UG-226", "name": "Buyende", "parent": "E", "type": "District" }, { "code": "UG-227", "name": "Kibuku", "parent": "E", "type": "District" }, { "code": "UG-228", "name": "Kween", "parent": "E", "type": "District" }, { "code": "UG-229", "name": "Luuka", "parent": "E", "type": "District" }, { "code": "UG-230", "name": "Namayingo", "parent": "E", "type": "District" }, { "code": "UG-231", "name": "Ngora", "parent": "E", "type": "District" }, { "code": "UG-232", "name": "Serere", "parent": "E", "type": "District" }, { "code": "UG-233", "name": "Butebo", "parent": "E", "type": "District" }, { "code": "UG-234", "name": "Namisindwa", "parent": "E", "type": "District" }, { "code": "UG-235", "name": "Bugweri", "parent": "E", "type": "District" }, { "code": "UG-236", "name": "Kapelebyong", "parent": "E", "type": "District" }, { "code": "UG-237", "name": "Kalaki", "parent": "E", "type": "District" }, { "code": "UG-301", "name": "Adjumani", "parent": "N", "type": "District" }, { "code": "UG-302", "name": "Apac", "parent": "N", "type": "District" }, { "code": "UG-303", "name": "Arua", "parent": "N", "type": "District" }, { "code": "UG-304", "name": "Gulu", "parent": "N", "type": "District" }, { "code": "UG-305", "name": "Kitgum", "parent": "N", "type": "District" }, { "code": "UG-306", "name": "Kotido", "parent": "N", "type": "District" }, { "code": "UG-307", "name": "Lira", "parent": "N", "type": "District" }, { "code": "UG-308", "name": "Moroto", "parent": "N", "type": "District" }, { "code": "UG-309", "name": "Moyo", "parent": "N", "type": "District" }, { "code": "UG-310", "name": "Nebbi", "parent": "N", "type": "District" }, { "code": "UG-311", "name": "Nakapiripirit", "parent": "N", "type": "District" }, { "code": "UG-312", "name": "Pader", "parent": "N", "type": "District" }, { "code": "UG-313", "name": "Yumbe", "parent": "N", "type": "District" }, { "code": "UG-314", "name": "Abim", "parent": "N", "type": "District" }, { "code": "UG-315", "name": "Amolatar", "parent": "N", "type": "District" }, { "code": "UG-316", "name": "Amuru", "parent": "N", "type": "District" }, { "code": "UG-317", "name": "Dokolo", "parent": "N", "type": "District" }, { "code": "UG-318", "name": "Kaabong", "parent": "N", "type": "District" }, { "code": "UG-319", "name": "Koboko", "parent": "N", "type": "District" }, { "code": "UG-320", "name": "Maracha", "parent": "N", "type": "District" }, { "code": "UG-321", "name": "Oyam", "parent": "N", "type": "District" }, { "code": "UG-322", "name": "Agago", "parent": "N", "type": "District" }, { "code": "UG-323", "name": "Alebtong", "parent": "N", "type": "District" }, { "code": "UG-324", "name": "Amudat", "parent": "N", "type": "District" }, { "code": "UG-325", "name": "Kole", "parent": "N", "type": "District" }, { "code": "UG-326", "name": "Lamwo", "parent": "N", "type": "District" }, { "code": "UG-327", "name": "Napak", "parent": "N", "type": "District" }, { "code": "UG-328", "name": "Nwoya", "parent": "N", "type": "District" }, { "code": "UG-329", "name": "Otuke", "parent": "N", "type": "District" }, { "code": "UG-330", "name": "Zombo", "parent": "N", "type": "District" }, { "code": "UG-331", "name": "Omoro", "parent": "N", "type": "District" }, { "code": "UG-332", "name": "Pakwach", "parent": "N", "type": "District" }, { "code": "UG-333", "name": "Kwania", "parent": "N", "type": "District" }, { "code": "UG-334", "name": "Nabilatuk", "parent": "N", "type": "District" }, { "code": "UG-335", "name": "Karenga", "parent": "N", "type": "District" }, { "code": "UG-336", "name": "Madi-Okollo", "parent": "N", "type": "District" }, { "code": "UG-337", "name": "Obongi", "parent": "N", "type": "District" }, { "code": "UG-401", "name": "Bundibugyo", "parent": "W", "type": "District" }, { "code": "UG-402", "name": "Bushenyi", "parent": "W", "type": "District" }, { "code": "UG-403", "name": "Hoima", "parent": "W", "type": "District" }, { "code": "UG-404", "name": "Kabale", "parent": "W", "type": "District" }, { "code": "UG-405", "name": "Kabarole", "parent": "W", "type": "District" }, { "code": "UG-406", "name": "Kasese", "parent": "W", "type": "District" }, { "code": "UG-407", "name": "Kibaale", "parent": "W", "type": "District" }, { "code": "UG-408", "name": "Kisoro", "parent": "W", "type": "District" }, { "code": "UG-409", "name": "Masindi", "parent": "W", "type": "District" }, { "code": "UG-410", "name": "Mbarara", "parent": "W", "type": "District" }, { "code": "UG-411", "name": "Ntungamo", "parent": "W", "type": "District" }, { "code": "UG-412", "name": "Rukungiri", "parent": "W", "type": "District" }, { "code": "UG-413", "name": "Kamwenge", "parent": "W", "type": "District" }, { "code": "UG-414", "name": "Kanungu", "parent": "W", "type": "District" }, { "code": "UG-415", "name": "Kyenjojo", "parent": "W", "type": "District" }, { "code": "UG-416", "name": "Buliisa", "parent": "W", "type": "District" }, { "code": "UG-417", "name": "Ibanda", "parent": "W", "type": "District" }, { "code": "UG-418", "name": "Isingiro", "parent": "W", "type": "District" }, { "code": "UG-419", "name": "Kiruhura", "parent": "W", "type": "District" }, { "code": "UG-420", "name": "Buhweju", "parent": "W", "type": "District" }, { "code": "UG-421", "name": "Kiryandongo", "parent": "W", "type": "District" }, { "code": "UG-422", "name": "Kyegegwa", "parent": "W", "type": "District" }, { "code": "UG-423", "name": "Mitooma", "parent": "W", "type": "District" }, { "code": "UG-424", "name": "Ntoroko", "parent": "W", "type": "District" }, { "code": "UG-425", "name": "Rubirizi", "parent": "W", "type": "District" }, { "code": "UG-426", "name": "Sheema", "parent": "W", "type": "District" }, { "code": "UG-427", "name": "Kagadi", "parent": "W", "type": "District" }, { "code": "UG-428", "name": "Kakumiro", "parent": "W", "type": "District" }, { "code": "UG-429", "name": "Rubanda", "parent": "W", "type": "District" }, { "code": "UG-430", "name": "Bunyangabu", "parent": "W", "type": "District" }, { "code": "UG-431", "name": "Rukiga", "parent": "W", "type": "District" }, { "code": "UG-432", "name": "Kikuube", "parent": "W", "type": "District" }, { "code": "UG-433", "name": "Kazo", "parent": "W", "type": "District" }, { "code": "UG-434", "name": "Kitagwenda", "parent": "W", "type": "District" }, { "code": "UG-435", "name": "Rwampara", "parent": "W", "type": "District" }, { "code": "UG-C", "name": "Central", "type": "Geographical region" }, { "code": "UG-E", "name": "Eastern", "type": "Geographical region" }, { "code": "UG-N", "name": "Northern", "type": "Geographical region" }, { "code": "UG-W", "name": "Western", "type": "Geographical region" }, { "code": "UM-67", "name": "Johnston Atoll", "type": "Islands, groups of islands" }, { "code": "UM-71", "name": "Midway Islands", "type": "Islands, groups of islands" }, { "code": "UM-76", "name": "Navassa Island", "type": "Islands, groups of islands" }, { "code": "UM-79", "name": "Wake Island", "type": "Islands, groups of islands" }, { "code": "UM-81", "name": "Baker Island", "type": "Islands, groups of islands" }, { "code": "UM-84", "name": "Howland Island", "type": "Islands, groups of islands" }, { "code": "UM-86", "name": "Jarvis Island", "type": "Islands, groups of islands" }, { "code": "UM-89", "name": "Kingman Reef", "type": "Islands, groups of islands" }, { "code": "UM-95", "name": "Palmyra Atoll", "type": "Islands, groups of islands" }, { "code": "US-AK", "name": "Alaska", "type": "State" }, { "code": "US-AL", "name": "Alabama", "type": "State" }, { "code": "US-AR", "name": "Arkansas", "type": "State" }, { "code": "US-AS", "name": "American Samoa", "type": "Outlying area" }, { "code": "US-AZ", "name": "Arizona", "type": "State" }, { "code": "US-CA", "name": "California", "type": "State" }, { "code": "US-CO", "name": "Colorado", "type": "State" }, { "code": "US-CT", "name": "Connecticut", "type": "State" }, { "code": "US-DC", "name": "District of Columbia", "type": "District" }, { "code": "US-DE", "name": "Delaware", "type": "State" }, { "code": "US-FL", "name": "Florida", "type": "State" }, { "code": "US-GA", "name": "Georgia", "type": "State" }, { "code": "US-GU", "name": "Guam", "type": "Outlying area" }, { "code": "US-HI", "name": "Hawaii", "type": "State" }, { "code": "US-IA", "name": "Iowa", "type": "State" }, { "code": "US-ID", "name": "Idaho", "type": "State" }, { "code": "US-IL", "name": "Illinois", "type": "State" }, { "code": "US-IN", "name": "Indiana", "type": "State" }, { "code": "US-KS", "name": "Kansas", "type": "State" }, { "code": "US-KY", "name": "Kentucky", "type": "State" }, { "code": "US-LA", "name": "Louisiana", "type": "State" }, { "code": "US-MA", "name": "Massachusetts", "type": "State" }, { "code": "US-MD", "name": "Maryland", "type": "State" }, { "code": "US-ME", "name": "Maine", "type": "State" }, { "code": "US-MI", "name": "Michigan", "type": "State" }, { "code": "US-MN", "name": "Minnesota", "type": "State" }, { "code": "US-MO", "name": "Missouri", "type": "State" }, { "code": "US-MP", "name": "Northern Mariana Islands", "type": "Outlying area" }, { "code": "US-MS", "name": "Mississippi", "type": "State" }, { "code": "US-MT", "name": "Montana", "type": "State" }, { "code": "US-NC", "name": "North Carolina", "type": "State" }, { "code": "US-ND", "name": "North Dakota", "type": "State" }, { "code": "US-NE", "name": "Nebraska", "type": "State" }, { "code": "US-NH", "name": "New Hampshire", "type": "State" }, { "code": "US-NJ", "name": "New Jersey", "type": "State" }, { "code": "US-NM", "name": "New Mexico", "type": "State" }, { "code": "US-NV", "name": "Nevada", "type": "State" }, { "code": "US-NY", "name": "New York", "type": "State" }, { "code": "US-OH", "name": "Ohio", "type": "State" }, { "code": "US-OK", "name": "Oklahoma", "type": "State" }, { "code": "US-OR", "name": "Oregon", "type": "State" }, { "code": "US-PA", "name": "Pennsylvania", "type": "State" }, { "code": "US-PR", "name": "Puerto Rico", "type": "Outlying area" }, { "code": "US-RI", "name": "Rhode Island", "type": "State" }, { "code": "US-SC", "name": "South Carolina", "type": "State" }, { "code": "US-SD", "name": "South Dakota", "type": "State" }, { "code": "US-TN", "name": "Tennessee", "type": "State" }, { "code": "US-TX", "name": "Texas", "type": "State" }, { "code": "US-UM", "name": "United States Minor Outlying Islands", "type": "Outlying area" }, { "code": "US-UT", "name": "Utah", "type": "State" }, { "code": "US-VA", "name": "Virginia", "type": "State" }, { "code": "US-VI", "name": "Virgin Islands, U.S.", "type": "Outlying area" }, { "code": "US-VT", "name": "Vermont", "type": "State" }, { "code": "US-WA", "name": "Washington", "type": "State" }, { "code": "US-WI", "name": "Wisconsin", "type": "State" }, { "code": "US-WV", "name": "West Virginia", "type": "State" }, { "code": "US-WY", "name": "Wyoming", "type": "State" }, { "code": "UY-AR", "name": "Artigas", "type": "Department" }, { "code": "UY-CA", "name": "Canelones", "type": "Department" }, { "code": "UY-CL", "name": "Cerro Largo", "type": "Department" }, { "code": "UY-CO", "name": "Colonia", "type": "Department" }, { "code": "UY-DU", "name": "Durazno", "type": "Department" }, { "code": "UY-FD", "name": "Florida", "type": "Department" }, { "code": "UY-FS", "name": "Flores", "type": "Department" }, { "code": "UY-LA", "name": "Lavalleja", "type": "Department" }, { "code": "UY-MA", "name": "Maldonado", "type": "Department" }, { "code": "UY-MO", "name": "Montevideo", "type": "Department" }, { "code": "UY-PA", "name": "Paysand繳", "type": "Department" }, { "code": "UY-RN", "name": "R穩o Negro", "type": "Department" }, { "code": "UY-RO", "name": "Rocha", "type": "Department" }, { "code": "UY-RV", "name": "Rivera", "type": "Department" }, { "code": "UY-SA", "name": "Salto", "type": "Department" }, { "code": "UY-SJ", "name": "San Jos矇", "type": "Department" }, { "code": "UY-SO", "name": "Soriano", "type": "Department" }, { "code": "UY-TA", "name": "Tacuaremb籀", "type": "Department" }, { "code": "UY-TT", "name": "Treinta y Tres", "type": "Department" }, { "code": "UZ-AN", "name": "Andijon", "type": "Region" }, { "code": "UZ-BU", "name": "Buxoro", "type": "Region" }, { "code": "UZ-FA", "name": "Fargona", "type": "Region" }, { "code": "UZ-JI", "name": "Jizzax", "type": "Region" }, { "code": "UZ-NG", "name": "Namangan", "type": "Region" }, { "code": "UZ-NW", "name": "Navoiy", "type": "Region" }, { "code": "UZ-QA", "name": "Qashqadaryo", "type": "Region" }, { "code": "UZ-QR", "name": "Qoraqalpogiston Respublikasi", "type": "Republic" }, { "code": "UZ-SA", "name": "Samarqand", "type": "Region" }, { "code": "UZ-SI", "name": "Sirdaryo", "type": "Region" }, { "code": "UZ-SU", "name": "Surxondaryo", "type": "Region" }, { "code": "UZ-TK", "name": "Toshkent", "type": "City" }, { "code": "UZ-TO", "name": "Toshkent", "type": "Region" }, { "code": "UZ-XO", "name": "Xorazm", "type": "Region" }, { "code": "VC-01", "name": "Charlotte", "type": "Parish" }, { "code": "VC-02", "name": "Saint Andrew", "type": "Parish" }, { "code": "VC-03", "name": "Saint David", "type": "Parish" }, { "code": "VC-04", "name": "Saint George", "type": "Parish" }, { "code": "VC-05", "name": "Saint Patrick", "type": "Parish" }, { "code": "VC-06", "name": "Grenadines", "type": "Parish" }, { "code": "VE-A", "name": "Distrito Capital", "type": "Capital district" }, { "code": "VE-B", "name": "Anzo獺tegui", "type": "State" }, { "code": "VE-C", "name": "Apure", "type": "State" }, { "code": "VE-D", "name": "Aragua", "type": "State" }, { "code": "VE-E", "name": "Barinas", "type": "State" }, { "code": "VE-F", "name": "Bol穩var", "type": "State" }, { "code": "VE-G", "name": "Carabobo", "type": "State" }, { "code": "VE-H", "name": "Cojedes", "type": "State" }, { "code": "VE-I", "name": "Falc籀n", "type": "State" }, { "code": "VE-J", "name": "Gu獺rico", "type": "State" }, { "code": "VE-K", "name": "Lara", "type": "State" }, { "code": "VE-L", "name": "M矇rida", "type": "State" }, { "code": "VE-M", "name": "Miranda", "type": "State" }, { "code": "VE-N", "name": "Monagas", "type": "State" }, { "code": "VE-O", "name": "Nueva Esparta", "type": "State" }, { "code": "VE-P", "name": "Portuguesa", "type": "State" }, { "code": "VE-R", "name": "Sucre", "type": "State" }, { "code": "VE-S", "name": "T獺chira", "type": "State" }, { "code": "VE-T", "name": "Trujillo", "type": "State" }, { "code": "VE-U", "name": "Yaracuy", "type": "State" }, { "code": "VE-V", "name": "Zulia", "type": "State" }, { "code": "VE-W", "name": "Dependencias Federales", "type": "Federal dependency" }, { "code": "VE-X", "name": "La Guaira", "type": "State" }, { "code": "VE-Y", "name": "Delta Amacuro", "type": "State" }, { "code": "VE-Z", "name": "Amazonas", "type": "State" }, { "code": "VN-01", "name": "Lai Ch璽u", "type": "Province" }, { "code": "VN-02", "name": "Lo Cai", "type": "Province" }, { "code": "VN-03", "name": "H Giang", "type": "Province" }, { "code": "VN-04", "name": "Cao B廕彫g", "type": "Province" }, { "code": "VN-05", "name": "Sヾn La", "type": "Province" }, { "code": "VN-06", "name": "Y礙n B獺i", "type": "Province" }, { "code": "VN-07", "name": "Tuy礙n Quang", "type": "Province" }, { "code": "VN-09", "name": "L廕》g Sヾn", "type": "Province" }, { "code": "VN-13", "name": "Qu廕τg Ninh", "type": "Province" }, { "code": "VN-14", "name": "H簷a B穫nh", "type": "Province" }, { "code": "VN-18", "name": "Ninh B穫nh", "type": "Province" }, { "code": "VN-20", "name": "Th獺i B穫nh", "type": "Province" }, { "code": "VN-21", "name": "Thanh H籀a", "type": "Province" }, { "code": "VN-22", "name": "Ngh廙 An", "type": "Province" }, { "code": "VN-23", "name": "H T藺nh", "type": "Province" }, { "code": "VN-24", "name": "Qu廕τg B穫nh", "type": "Province" }, { "code": "VN-25", "name": "Qu廕τg Tr廙", "type": "Province" }, { "code": "VN-26", "name": "Th廙冠 Thi礙n-Hu廕", "type": "Province" }, { "code": "VN-27", "name": "Qu廕τg Nam", "type": "Province" }, { "code": "VN-28", "name": "Kon Tum", "type": "Province" }, { "code": "VN-29", "name": "Qu廕τg Ng瓊i", "type": "Province" }, { "code": "VN-30", "name": "Gia Lai", "type": "Province" }, { "code": "VN-31", "name": "B穫nh 廙nh", "type": "Province" }, { "code": "VN-32", "name": "Ph繳 Y礙n", "type": "Province" }, { "code": "VN-33", "name": "廕疼 L廕疼", "type": "Province" }, { "code": "VN-34", "name": "Kh獺nh H簷a", "type": "Province" }, { "code": "VN-35", "name": "L璽m 廙ng", "type": "Province" }, { "code": "VN-36", "name": "Ninh Thu廕要", "type": "Province" }, { "code": "VN-37", "name": "T璽y Ninh", "type": "Province" }, { "code": "VN-39", "name": "廙ng Nai", "type": "Province" }, { "code": "VN-40", "name": "B穫nh Thu廕要", "type": "Province" }, { "code": "VN-41", "name": "Long An", "type": "Province" }, { "code": "VN-43", "name": "B R廙a - V觼ng Tu", "type": "Province" }, { "code": "VN-44", "name": "An Giang", "type": "Province" }, { "code": "VN-45", "name": "廙ng Th獺p", "type": "Province" }, { "code": "VN-46", "name": "Ti廙n Giang", "type": "Province" }, { "code": "VN-47", "name": "Ki廕積 Giang", "type": "Province" }, { "code": "VN-49", "name": "V藺nh Long", "type": "Province" }, { "code": "VN-50", "name": "B廕積 Tre", "type": "Province" }, { "code": "VN-51", "name": "Tr Vinh", "type": "Province" }, { "code": "VN-52", "name": "S籀c Trng", "type": "Province" }, { "code": "VN-53", "name": "B廕畚 K廕》", "type": "Province" }, { "code": "VN-54", "name": "B廕畚 Giang", "type": "Province" }, { "code": "VN-55", "name": "B廕︷ Li礙u", "type": "Province" }, { "code": "VN-56", "name": "B廕畚 Ninh", "type": "Province" }, { "code": "VN-57", "name": "B穫nh Dがヾng", "type": "Province" }, { "code": "VN-58", "name": "B穫nh Phが廙c", "type": "Province" }, { "code": "VN-59", "name": "C Mau", "type": "Province" }, { "code": "VN-61", "name": "H廕ξ Dがヾng", "type": "Province" }, { "code": "VN-63", "name": "H Nam", "type": "Province" }, { "code": "VN-66", "name": "Hがng Y礙n", "type": "Province" }, { "code": "VN-67", "name": "Nam 廙nh", "type": "Province" }, { "code": "VN-68", "name": "Ph繳 Th廙", "type": "Province" }, { "code": "VN-69", "name": "Th獺i Nguy礙n", "type": "Province" }, { "code": "VN-70", "name": "V藺nh Ph繳c", "type": "Province" }, { "code": "VN-71", "name": "i廙n Bi礙n", "type": "Province" }, { "code": "VN-72", "name": "廕疼 N繫ng", "type": "Province" }, { "code": "VN-73", "name": "H廕赴 Giang", "type": "Province" }, { "code": "VN-CT", "name": "C廕吵 Thヾ", "type": "Municipality" }, { "code": "VN-DN", "name": " N廕登g", "type": "Municipality" }, { "code": "VN-HN", "name": "H N廙i", "type": "Municipality" }, { "code": "VN-HP", "name": "H廕ξ Ph簷ng", "type": "Municipality" }, { "code": "VN-SG", "name": "H廙 Ch穩 Minh", "type": "Municipality" }, { "code": "VU-MAP", "name": "Malampa", "type": "Province" }, { "code": "VU-PAM", "name": "P矇nama", "type": "Province" }, { "code": "VU-SAM", "name": "Sanma", "type": "Province" }, { "code": "VU-SEE", "name": "Sh矇fa", "type": "Province" }, { "code": "VU-TAE", "name": "Taf矇a", "type": "Province" }, { "code": "VU-TOB", "name": "Torba", "type": "Province" }, { "code": "WF-AL", "name": "Alo", "type": "Administrative precinct" }, { "code": "WF-SG", "name": "Sigave", "type": "Administrative precinct" }, { "code": "WF-UV", "name": "Uvea", "type": "Administrative precinct" }, { "code": "WS-AA", "name": "A'ana", "type": "District" }, { "code": "WS-AL", "name": "Aiga-i-le-Tai", "type": "District" }, { "code": "WS-AT", "name": "Atua", "type": "District" }, { "code": "WS-FA", "name": "Fa'asaleleaga", "type": "District" }, { "code": "WS-GE", "name": "Gaga'emauga", "type": "District" }, { "code": "WS-GI", "name": "Gagaifomauga", "type": "District" }, { "code": "WS-PA", "name": "Palauli", "type": "District" }, { "code": "WS-SA", "name": "Satupa'itea", "type": "District" }, { "code": "WS-TU", "name": "Tuamasaga", "type": "District" }, { "code": "WS-VF", "name": "Va'a-o-Fonoti", "type": "District" }, { "code": "WS-VS", "name": "Vaisigano", "type": "District" }, { "code": "YE-AB", "name": "Abyan", "type": "Governorate" }, { "code": "YE-AD", "name": "Adan", "type": "Governorate" }, { "code": "YE-AM", "name": "Amrn", "type": "Governorate" }, { "code": "YE-BA", "name": "Al Bay廎", "type": "Governorate" }, { "code": "YE-DA", "name": "A廎 廎li", "type": "Governorate" }, { "code": "YE-DH", "name": "Dhamr", "type": "Governorate" }, { "code": "YE-HD", "name": "廎災廎ramawt", "type": "Governorate" }, { "code": "YE-HJ", "name": "廎災jjah", "type": "Governorate" }, { "code": "YE-HU", "name": "Al 廎罕daydah", "type": "Governorate" }, { "code": "YE-IB", "name": "Ibb", "type": "Governorate" }, { "code": "YE-JA", "name": "Al Jawf", "type": "Governorate" }, { "code": "YE-LA", "name": "La廎姆j", "type": "Governorate" }, { "code": "YE-MA", "name": "Marib", "type": "Governorate" }, { "code": "YE-MR", "name": "Al Mahrah", "type": "Governorate" }, { "code": "YE-MW", "name": "Al Ma廎定蘋t", "type": "Governorate" }, { "code": "YE-RA", "name": "Raymah", "type": "Governorate" }, { "code": "YE-SA", "name": "Amnat al imah [city]", "type": "Municipality" }, { "code": "YE-SD", "name": "妡dah", "type": "Governorate" }, { "code": "YE-SH", "name": "Shabwah", "type": "Governorate" }, { "code": "YE-SN", "name": "an妡", "type": "Governorate" }, { "code": "YE-SU", "name": "Arkhab蘋l Suqu籟r獺", "type": "Governorate" }, { "code": "YE-TA", "name": "T妡izz", "type": "Governorate" }, { "code": "ZA-EC", "name": "Eastern Cape", "type": "Province" }, { "code": "ZA-FS", "name": "Free State", "type": "Province" }, { "code": "ZA-GP", "name": "Gauteng", "type": "Province" }, { "code": "ZA-KZN", "name": "Kwazulu-Natal", "type": "Province" }, { "code": "ZA-LP", "name": "Limpopo", "type": "Province" }, { "code": "ZA-MP", "name": "Mpumalanga", "type": "Province" }, { "code": "ZA-NC", "name": "Northern Cape", "type": "Province" }, { "code": "ZA-NW", "name": "North-West", "type": "Province" }, { "code": "ZA-WC", "name": "Western Cape", "type": "Province" }, { "code": "ZM-01", "name": "Western", "type": "Province" }, { "code": "ZM-02", "name": "Central", "type": "Province" }, { "code": "ZM-03", "name": "Eastern", "type": "Province" }, { "code": "ZM-04", "name": "Luapula", "type": "Province" }, { "code": "ZM-05", "name": "Northern", "type": "Province" }, { "code": "ZM-06", "name": "North-Western", "type": "Province" }, { "code": "ZM-07", "name": "Southern", "type": "Province" }, { "code": "ZM-08", "name": "Copperbelt", "type": "Province" }, { "code": "ZM-09", "name": "Lusaka", "type": "Province" }, { "code": "ZM-10", "name": "Muchinga", "type": "Province" }, { "code": "ZW-BU", "name": "Bulawayo", "type": "Province" }, { "code": "ZW-HA", "name": "Harare", "type": "Province" }, { "code": "ZW-MA", "name": "Manicaland", "type": "Province" }, { "code": "ZW-MC", "name": "Mashonaland Central", "type": "Province" }, { "code": "ZW-ME", "name": "Mashonaland East", "type": "Province" }, { "code": "ZW-MI", "name": "Midlands", "type": "Province" }, { "code": "ZW-MN", "name": "Matabeleland North", "type": "Province" }, { "code": "ZW-MS", "name": "Matabeleland South", "type": "Province" }, { "code": "ZW-MV", "name": "Masvingo", "type": "Province" }, { "code": "ZW-MW", "name": "Mashonaland West", "type": "Province" } ] } }; #------------------------------------------------------------------------------- 1; Locale-SubCountry-2.07/t000755000000000000 014134647376 15565 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/t/main.t000444000000000000 406512754273004 17025 0ustar00unknownunknown000000000000#------------------------------------------------------------------------------ # Test script for CPAN module Locale::SubCountry # # Author: Kim Ryan #------------------------------------------------------------------------------ use strict; use warnings; use Test::More tests => 15; use utf8; use Locale::SubCountry; my $australia = Locale::SubCountry->new('Australia'); ok($australia->code('New South Wales') eq 'NSW', "Convert sub country full name to code"); ok($australia->full_name('S.A.') eq 'South Australia', "Convert sub country code to full name, accounted for full stops"); my $upper_case = 1; ok($australia->full_name('Qld',$upper_case) eq 'QUEENSLAND', "Covert sub country code lower case to full name"); ok($australia->country_code eq 'AU', "Correct country code for country object"); ok($australia->level('NSW') eq 'State', "Correct level for a sub country code"); my %states = $australia->full_name_code_hash; ok($states{'Tasmania'} eq 'TAS', "Contents of full_name_code_hash"); %states = $australia->code_full_name_hash; ok($states{'SA'} eq 'South Australia' , "Contents of code_full_name_hash"); my @states = $australia->all_codes; ok(@states == 8, "Total number of sub countries in a country"); my @all_names = $australia->all_full_names; ok($all_names[1] eq 'New South Wales' , "Order of all_full_names array"); ok($australia->code('Old South Wales ') eq 'unknown', "Unknown sub country full name"); ok($australia->full_name('XYZ') eq 'unknown', "Unknown sub country code"); # Tests for World object my $world = Locale::SubCountry::World->new(); my %countries = $world->full_name_code_hash; ok($countries{'New Zealand'} eq 'NZ', "Contents of full_name_code_hash for world object"); %countries = $world->code_full_name_hash; ok($countries{'GB'} eq 'United Kingdom', "Contents of code_full_name_hash for world object"); my @all_country_codes = $world->all_codes; ok(@all_country_codes, "all_codes method returns data for world object"); my @all_country_names = $world->all_full_names; ok(@all_country_names, "all_full_names method returns data for world object"); Locale-SubCountry-2.07/xt000755000000000000 014134647376 15755 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/xt/author000755000000000000 014134647376 17257 5ustar00unknownunknown000000000000Locale-SubCountry-2.07/xt/author/pod-coverage.t000444000000000000 33512753033356 22125 0ustar00unknownunknown000000000000use Test::More; eval "use Test::Pod::Coverage 1.04"; plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD" if $@; plan tests => 1; pod_coverage_ok(Locale::SubCountry, 'Coverage OK for Locale::SubCountry'); Locale-SubCountry-2.07/xt/author/pod.t000444000000000000 30212753034610 20320 0ustar00unknownunknown000000000000use Test::More; eval "use Test::Pod 1.04"; plan skip_all => "Test::Pod 1.04 required for testing POD" if $@; plan tests => 1; pod_file_ok('lib/Locale/SubCountry.pm','POD ok for SubCountry.pm');