diff --git a/autotests/addresstest.cpp b/autotests/addresstest.cpp --- a/autotests/addresstest.cpp +++ b/autotests/addresstest.cpp @@ -434,4 +434,11 @@ QCOMPARE(Address::countryToISO(QStringLiteral("Germany")), QLatin1String("de")); QCOMPARE(Address::countryToISO(QStringLiteral("Österreich")), QLatin1String("at")); QCOMPARE(Address::countryToISO(QStringLiteral("Disneyland")), QString()); + QCOMPARE(Address::countryToISO(QStringLiteral("Østrig")), QLatin1String("at")); + QCOMPARE(Address::countryToISO(QStringLiteral("Den Demokratiske Republik Congo (DRC)")), QLatin1String("cd")); + QCOMPARE(Address::countryToISO(QStringLiteral("Congo-Kinshasa")), QLatin1String("cd")); + QCOMPARE(Address::countryToISO(QStringLiteral("South Sudan")), QLatin1String("ss")); + QCOMPARE(Address::countryToISO(QStringLiteral("United States")), QLatin1String("us")); + QCOMPARE(Address::countryToISO(QStringLiteral("United States Of America")), QLatin1String("us")); + QCOMPARE(Address::countryToISO(QStringLiteral("United")), QString()); } diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -113,6 +113,7 @@ ) add_subdirectory(converter) +add_subdirectory(generator) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kcontacts_export.h diff --git a/src/address.cpp b/src/address.cpp --- a/src/address.cpp +++ b/src/address.cpp @@ -20,6 +20,7 @@ #include "address.h" #include "geo.h" +#include "countrytoisomap_data.cpp" #include "kcontacts_debug.h" #include @@ -644,37 +645,31 @@ } struct IsoCache { - QHash countryToIso; QHash isoToCountry; }; Q_GLOBAL_STATIC(IsoCache, sIsoCache) QString Address::countryToISO(const QString &cname) { - // we search a map file for translations from country names to - // iso codes, storing caching things in a QHash for faster future - // access. + const auto lookupKey = cname.toCaseFolded().toUtf8(); - const auto it = sIsoCache->countryToIso.constFind(cname); - if (it != sIsoCache->countryToIso.constEnd()) { - return it.value(); + // look for an exact match + auto it = std::lower_bound(std::begin(country_to_iso_index), std::end(country_to_iso_index), lookupKey, [](const CountryToIsoIndex &lhs, const QByteArray &rhs) { + return strcmp(country_name_stringtable + lhs.m_offset, rhs.constData()) < 0; + }); + if (it != std::end(country_to_iso_index) && strcmp(country_name_stringtable + (*it).m_offset, lookupKey.constData()) == 0) { + return (*it).isoCode(); } - QFile file(QStringLiteral(":/org.kde.kcontacts/countrytransl.map")); - if (file.open(QIODevice::ReadOnly)) { - QTextStream s(&file); - QString strbuf = s.readLine(); - while (!strbuf.isEmpty()) { - const auto countryInfo = strbuf.splitRef(QLatin1Char('\t'), QString::KeepEmptyParts); - if (countryInfo[0] == cname) { - file.close(); - const auto iso = countryInfo[1].toString(); - sIsoCache->countryToIso.insert(cname, iso); - return iso; - } - strbuf = s.readLine(); - } - file.close(); + // a unique prefix will do too + it = std::lower_bound(std::begin(country_to_iso_index), std::end(country_to_iso_index), lookupKey, [](const CountryToIsoIndex &lhs, const QByteArray &rhs) { + return strncmp(country_name_stringtable + lhs.m_offset, rhs.constData(), strlen(country_name_stringtable + lhs.m_offset)) < 0; + }); + const auto endIt = std::upper_bound(std::begin(country_to_iso_index), std::end(country_to_iso_index), lookupKey, [](const QByteArray &lhs, const CountryToIsoIndex &rhs) { + return strncmp(lhs.constData(), country_name_stringtable + rhs.m_offset, strlen(country_name_stringtable + rhs.m_offset)) < 0; + }); + if (it != std::end(country_to_iso_index) && endIt == (it + 1) && strncmp(country_name_stringtable + (*it).m_offset, lookupKey.constData(), strlen(country_name_stringtable + (*it).m_offset)) == 0) { + return (*it).isoCode(); } return {}; @@ -704,7 +699,6 @@ file.close(); const auto country = i18nd("iso_3166-1", strbuf.leftRef(pos).toUtf8().constData()); sIsoCache->isoToCountry.insert(iso, country); - sIsoCache->countryToIso.insert(country, iso); return country; } strbuf = s.readLine(); diff --git a/src/countrytoisomap_data.cpp b/src/countrytoisomap_data.cpp new file mode 100644 --- /dev/null +++ b/src/countrytoisomap_data.cpp @@ -0,0 +1,56460 @@ + +/* + * Generated file based on CLDR data. Do not edit! + * See src/generator/ for how to re-generate this. + * + * COPYRIGHT AND PERMISSION NOTICE + * + * Copyright © 1991-2018 Unicode, Inc. All rights reserved. + * Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of the Unicode data files and any associated documentation + * (the "Data Files") or Unicode software and any associated documentation + * (the "Software") to deal in the Data Files or Software + * without restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, and/or sell copies of + * the Data Files or Software, and to permit persons to whom the Data Files + * or Software are furnished to do so, provided that either + * (a) this copyright and permission notice appear with all copies + * of the Data Files or Software, or + * (b) this copyright and permission notice appear in associated + * Documentation. + * + * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + * ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT OF THIRD PARTY RIGHTS. + * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS + * NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL + * DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THE DATA FILES OR SOFTWARE. + * + * Except as contained in this notice, the name of a copyright holder + * shall not be used in advertising or otherwise to promote the sale, + * use or other dealings in these Data Files or Software without prior + * written authorization of the copyright holder. + */ + +#include "countrytoisomap_p.h" + +using namespace KContacts; + +static const char country_name_stringtable[] = + "a.s\0" // us + "a.s.\0" // us + "aaland-insle\0" // ax + "aamenia\0" // am + "abari saudi\0" // sa + "abd\0" // us + "abd küçük harici adaları\0" // um + "abd virjin adaları\0" // vi + "abganithtan\0" // af + "abhaniya\0" // al + "abş\0" // us + "abş virgin adaları\0" // vi + "abş-a bağlı kiçik adacıqlar\0" // um + "abş-nyň daşarky adalary\0" // um + "abş-nyň wirgin adalary\0" // vi + "acerbaixán\0" // az + "acsencion island\0" // ac + "adhabajani\0" // az + "adhe̱rbe̱ja̱n\0" // az + "adrabijan\0" // az + "adrar n ṭaṛiq\0" // gi + "adyentina\0" // ar + "adzɨmā kɨ ŋgùŋ kɨ palɛsɨtɨnyia à kɨ gazà kò\0" // ps + "aeb\0" // us + "aelandi\0" // ie + "aelɨ̀lân\0" // ie + "aereland\0" // ie + "aesland\0" // is + "aesɨ̀lân\0" // is + "afaganisitani\0" // af + "afaganistan\0" // af + "afeganistão\0" // af + "afeganistãu\0" // af + "afgaanistaan\0" // af + "afgaanistan\0" // af + "afganischtan\0" // af + "afganistaan\0" // af + "afganistan\0" // af + "afganistanas\0" // af + "afganistaŋ\0" // af + "afganistán\0" // af + "afganistáŋ\0" // af + "afganistāna\0" // af + "afganisztán\0" // af + "afganištan\0" // af + "afganujo\0" // af + "afghanastàn\0" // af + "afghanistan\0" // af + "afghanistan nutome\0" // af + "afghanistani\0" // af + "afghanistanni\0" // af + "afghanistaŋ\0" // af + "afghánistán\0" // af + "afgʻoniston\0" // af + "afiganisitá\0" // af + "afiganistaŋ\0" // af + "afigándesitaŋ\0" // af + "afilika kusini\0" // za + "afilí mbátɛ́\0" // za + "afirika kɔi leŋŋɛ lɔ\0" // za + "afirka ta kudu\0" // za + "afiríka yá súd\0" // za + "afjaanistahn\0" // af + "afkanistáŋ\0" // af + "aflika kusini\0" // za + "afraga a deas\0" // za + "africa dal sid\0" // za + "africa de sud\0" // za + "afrik anǝ a sud\0" // za + "afrik bŋ worgo\0" // za + "afrik di sid\0" // za + "afrika anaafo\0" // za + "afrika atsimo\0" // za + "afrika du sulu\0" // za + "afrika e jugut\0" // za + "afrika erdiko errepublika\0" // cf + "afrika finimfin man\0" // cf + "afrika kusini\0" // za + "afrika kuthini\0" // za + "afrika nekǝsǝŋ\0" // za + "afrika selatan\0" // za + "afrika ya southi\0" // za + "afrika ya súdi\0" // za + "afrique du sud\0" // za + "afriqya n iffus\0" // za + "afríka ya súdi\0" // za + "afríka yí sí\0" // za + "afuganisita\0" // af + "afuganisitani\0" // af + "afuganisitáani\0" // af + "afuganistani\0" // af + "afurika y’epfo\0" // za + "afəganisətán\0" // af + "afɣanistan\0" // af + "afɨlekà ghɨ emàm ghò\0" // za + "afɨrɨka ya saame\0" // za + "agemmaḍ ugut d ɣazza ifilisṭiniyen\0" // ps + "agiriya\0" // dz + "agmmaḍ n tagut d ɣzza\0" // ps + "agyɛntina\0" // ar + "ahendiman nkabom\0" // gb + "ahvenamaa\0" // ax + "ahvenanmaa\0" // ax + "ai cập\0" // eg + "aibari kwas\0" // ci + "aildiria\0" // dz + "aingira\0" // ai + "aintìoga is barbuda\0" // ag + "airandi cia solomon\0" // sb + "airija\0" // ie + "airmeinea\0" // am + "aisalan\0" // is + "aiseland nutome\0" // is + "aisilandi\0" // is + "aisiláandi\0" // is + "aislandi\0" // is + "aisle of man nutome\0" // im + "aithlandi\0" // is + "aití\0" // ht + "aivore kositi\0" // ci + "ajelbayidja\0" // az + "ajentina\0" // ar + "ajentíina\0" // ar + "ajerbayjaan\0" // az + "ajjentiinije\0" // ar + "ajɛntîn\0" // ar + "ajɛŋtína\0" // ar + "akal aglizi deg ugaraw ahendi\0" // io + "alabi sawuditɛ\0" // sa + "alabu nsawudi\0" // sa + "alamagn\0" // de + "aland adalary\0" // ax + "aland adaları\0" // ax + "aland orollari\0" // ax + "aland uharteak\0" // ax + "alanda\0" // ax + "alandinslä\0" // ax + "alandy\0" // ax + "alandų salos\0" // ax + "alankomaat\0" // nl + "alapísawutíit\0" // sa + "alaseri\0" // dz + "albaani\0" // al + "albaania\0" // al + "albaanie\0" // al + "albaanije\0" // al + "albaaniya\0" // al + "albaasalaama marganta\0" // gb + "albani\0" // al + "albania\0" // al + "albania nutome\0" // al + "albaniab\0" // al + "albanie\0" // al + "albanien\0" // al + "albanii\0" // al + "albanija\0" // al + "albaniya\0" // al + "albanië\0" // al + "albaniýa\0" // al + "albanska\0" // al + "albanujo\0" // al + "albanya\0" // al + "albaní\0" // al + "albanía\0" // al + "albanïi\0" // al + "albańska\0" // al + "albenia\0" // al + "albàinia\0" // al + "albània\0" // al + "albánia\0" // al + "albánie\0" // al + "albánsko\0" // al + "albânia\0" // al + "albänia\0" // al + "albānija\0" // al + "alemaina\0" // de + "alemanha\0" // de + "alemani\0" // de + "alemania\0" // de + "alemanu\0" // de + "alemanya\0" // de + "alemaña\0" // de + "algeerie\0" // dz + "algeria\0" // dz + "algeria nutome\0" // dz + "algeriab\0" // dz + "algerie\0" // dz + "algerien\0" // dz + "algeriet\0" // dz + "algerije\0" // dz + "algeriska\0" // dz + "algeriya\0" // dz + "algerië\0" // dz + "algieria\0" // dz + "algjeri\0" // dz + "algèria\0" // dz + "algéria\0" // dz + "algérie\0" // dz + "alibani\0" // al + "alibaniya\0" // al + "aligerya\0" // dz + "alijantine\0" // ar + "alijeliya\0" // dz + "alijeri\0" // dz + "alijeriya\0" // dz + "alijéria\0" // dz + "alimanha\0" // de + "alimaɲi\0" // de + "alimeniya\0" // am + "alizeri\0" // dz + "alizɛri\0" // dz + "aljazair\0" // dz + "aljeeriya\0" // dz + "aljelia\0" // dz + "aljeria\0" // dz + "aljeriya\0" // dz + "aljɛlî\0" // dz + "aljɛrí\0" // dz + "allemagne\0" // de + "alljeerije\0" // dz + "almaañ\0" // de + "almaaɲe\0" // de + "almagn\0" // de + "almaniya\0" // de + "almanya\0" // de + "almanía\0" // am + "almayn\0" // de + "almenia\0" // am + "alpaní\0" // al + "alsaŋtín\0" // ar + "alselí\0" // dz + "alseri\0" // dz + "alsír\0" // dz + "altre isole americane del pacifico\0" // um + "aluba\0" // aw + "alubani\0" // al + "alubania\0" // al + "alubaniya\0" // al + "alubánia\0" // al + "alujeria\0" // dz + "alxeria\0" // dz + "alzeri\0" // dz + "alzeria\0" // dz + "alzerie\0" // dz + "alzerïi\0" // dz + "alúpa\0" // aw + "alĝerio\0" // dz + "alžeeri\0" // dz + "alžeeria\0" // dz + "alžir\0" // dz + "alžirija\0" // dz + "alžyras\0" // dz + "alžírsko\0" // dz + "alžīrija\0" // dz + "aləbánia\0" // al + "aləyéria\0" // dz + "am monadh neagrach\0" // me + "amahanga ga buharabu ageeteereine\0" // ae + "amazinga ya filipine\0" // ph + "amazinga ya mariyana ryo mu majaruguru\0" // mp + "amazinga ya reyiniyo\0" // re + "amazinga ya salumoni\0" // sb + "amazinga ya seyisheli\0" // sc + "amazinga ya turkisi na cayikosi\0" // tc + "amazinga y’isugi y’abanyamerika\0" // vi + "ameerik virgin gungey\0" // vi + "ameerika samoa\0" // as + "ameerika ühendriigid\0" // us + "amelika\0" // us + "ameni\0" // am + "amenia\0" // am + "americab samoab\0" // as + "american samoa\0" // as + "americká samoa\0" // as + "americké panenské ostrovy\0" // vi + "amerihká ovttastuvvan stáhtat\0" // us + "amerihká samoa\0" // as + "amerika\0" // us + "amerika birleşik devletleri\0" // us + "amerika birləşmiş ştatları\0" // us + "amerika qo‘shma shtatlari\0" // us + "amerika samoa\0" // as + "amerika samoa nutome\0" // as + "amerika samoasi\0" // as + "amerika samoası\0" // as + "amerika serikat\0" // us + "amerika syarikat\0" // us + "amerika thamow\0" // as + "amerikaanisch-samoa\0" // as + "amerikaanischi jungfere-insle\0" // vi + "amerikaans-samoa\0" // as + "amerikaansch-ozeanien\0" // um + "amerikaansch-samoa\0" // as + "amerikaansche jumfern-eilannen\0" // vi + "amerikaanse maagdeneilanden\0" // vi + "amerikaanse samoa\0" // as + "amerikaansk samoa\0" // as + "amerikaanske maagdeneilannen\0" // vi + "amerikab\0" // us + "amerikai szamoa\0" // as + "amerikai virgin-szigetek\0" // vi + "amerikan samoa\0" // as + "amerikan samoasy\0" // as + "amerikan samoası\0" // as + "amerikanesch joffereninselen\0" // vi + "amerikanesch-ozeanien\0" // um + "amerikanesch-samoa\0" // as + "amerikanisch-ozeaanie\0" // um + "amerikanisch-samoa\0" // as + "amerikanische jungferninseln\0" // vi + "amerikanische überseeinseln\0" // um + "amerikaniš ozeanie\0" // um + "amerikaniš samoa\0" // as + "amerikaniši jungfröiwinslä\0" // vi + "amerikansk samoa\0" // as + "amerikanska jungfruöarna\0" // vi + "amerikanska samoa\0" // as + "amerikanske oversøiske øer\0" // um + "amerikanyň birleşen ştatlary\0" // us + "amerikas savienotās valstis\0" // us + "ameriketako estatu batuak\0" // us + "ameriketako estatu batuetako kanpoaldeko uharte txikiak\0" // um + "ameriki\0" // us + "ameriki ka sungurunnin gun\0" // vi + "ameriki laabu margantey\0" // us + "ameriki samoa\0" // as + "amerikos samoa\0" // as + "ameriska oceaniska\0" // um + "ameriska samoa\0" // as + "ameriske knježniske kupy\0" // vi + "ameriske kněžniske kupy\0" // vi + "američka devičanska ostrva\0" // vi + "američka djevičanska ostrva\0" // vi + "američka samoa\0" // as + "američka vanjska ostrva\0" // um + "američki djevičanski otoci\0" // vi + "ameriška samoa\0" // as + "ameriški deviški otoki\0" // vi + "amerɨka\0" // us + "ammerikaanesch sammoha\0" // as + "amur n agaraw uhindi ubṛiṭani\0" // io + "amurka\0" // us + "amálíka\0" // us + "améniya\0" // am + "amɛni\0" // am + "amɛrika\0" // us + "amɛrika samoa\0" // as + "amɛrika virgin islands\0" // vi + "amɛŕka\0" // us + "an aetóip\0" // et + "an afganastáin\0" // af + "an afraic theas\0" // za + "an aigéine imeallach\0" // qo + "an ailgéir\0" // dz + "an airgintín\0" // ar + "an airméin\0" // am + "an albáin\0" // al + "an antartaice\0" // aq + "an antartaig\0" // aq + "an araib shádach\0" // sa + "an argantain\0" // ar + "an asarbaiseáin\0" // az + "an astráil\0" // au + "an bhanglaidéis\0" // bd + "an bhealarúis\0" // by + "an bheilg\0" // be + "an bheilís\0" // bz + "an bhoisnia agus an heirseagaivéin\0" // ba + "an bholaiv\0" // bo + "an bhotsuáin\0" // bw + "an bhrasaíl\0" // br + "an bhulgáir\0" // bg + "an bhurúin\0" // bi + "an bhútáin\0" // bt + "an ceap uaine\0" // cv + "an chambóid\0" // kh + "an chasacstáin\0" // kz + "an chipir\0" // cy + "an chirgeastáin\0" // kg + "an cholóim\0" // co + "an chosaiv\0" // xk + "an chróit\0" // hr + "an chéinia\0" // ke + "an chóiré theas\0" // kr + "an chóiré thuaidh\0" // kp + "an congó\0" // cg + "an congó (pdc)\0" // cd + "an congó (poblacht)\0" // cg + "an costa ìbhri\0" // ci + "an cósta eabhair\0" // ci + "an danmhairg\0" // dk + "an eadailt\0" // it + "an eaman\0" // ye + "an eastoin\0" // ee + "an eastóin\0" // ee + "an eilbheis\0" // ch + "an eilvéis\0" // ch + "an eiritré\0" // er + "an fhionlainn\0" // fi + "an fhionnlann\0" // fi + "an fhrainc\0" // fr + "an fhraing\0" // fr + "an ghabúin\0" // ga + "an ghaimbia\0" // gm + "an ghearmáin\0" // de + "an ghraonlainn\0" // gl + "an ghréig\0" // gr + "an ghuine\0" // gn + "an ghuine mheánchiorclach\0" // gq + "an ghuáin\0" // gy + "an iaráic\0" // iq + "an iaráin\0" // ir + "an india\0" // in + "an indinéis\0" // id + "an iodáil\0" // it + "an iordáin\0" // jo + "an iorua\0" // no + "an itiop\0" // et + "an laitbhe\0" // lv + "an laitvia\0" // lv + "an libia\0" // ly + "an libéir\0" // lr + "an liobáin\0" // lb + "an liotuain\0" // lt + "an liotuáin\0" // lt + "an mhacadóin\0" // mk + "an mhacadóin (piim)\0" // mk + "an mhalaeisia\0" // my + "an mhaláiv\0" // mw + "an mhicrinéis\0" // fm + "an mholdóiv\0" // md + "an mhongóil\0" // mn + "an mháratáin\0" // mr + "an namaib\0" // na + "an nigéir\0" // ng + "an nua-chaladóin\0" // nc + "an nua-shéalainn\0" // nz + "an nígir\0" // ne + "an ostair\0" // at + "an phacastáin\0" // pk + "an phalaistín\0" // ps + "an phoblacht dhoiminiceach\0" // do + "an pholainn\0" // pl + "an phortaingéil\0" // pt + "an ruis\0" // ru + "an rìoghachd aonaichte\0" // gb + "an ríocht aontaithe\0" // gb + "an rómáin\0" // ro + "an rúis\0" // ru + "an sahára thiar\0" // eh + "an salbhador\0" // sv + "an spàinnt\0" // es + "an spáinn\0" // es + "an t-seapan\0" // jp + "an t-seic\0" // cz + "an t-seàd\0" // td + "an t-sile\0" // cl + "an t-slòbhac\0" // sk + "an t-slòbhain\0" // si + "an t-suain\0" // se + "an t-sèirb\0" // rs + "an t-sìn\0" // cn + "an t-sìombab\0" // zw + "an tansan\0" // tz + "an tansáin\0" // tz + "an tsaimbia\0" // zm + "an tsalvadóir\0" // sv + "an tseapáin\0" // jp + "an tseicia\0" // cz + "an tseineagáil\0" // sn + "an tseirbia\0" // rs + "an tseoirsia\0" // ge + "an tseoirsia theas agus oileáin sandwich theas\0" // gs + "an tsile\0" // cl + "an tsiombáib\0" // zw + "an tsiria\0" // sy + "an tslóivéin\0" // si + "an tslóvaic\0" // sk + "an tsomáil\0" // so + "an tsualainn\0" // se + "an tsuasalainn\0" // sz + "an tsín\0" // cn + "an tsúdáin\0" // sd + "an tsúdáin theas\0" // ss + "an tuirc\0" // tr + "an tuircméanastáin\0" // tm + "an táidsíceastáin\0" // tj + "an téalainn\0" // th + "an téaváin\0" // tw + "an túinéis\0" // tn + "an ucràin\0" // ua + "an ungair\0" // hu + "an ungáir\0" // hu + "an èiphit\0" // eg + "an éigipt\0" // eg + "an íoslainn\0" // is + "an ísiltír\0" // nl + "an ísiltír chairibeach\0" // bq + "an úcráin\0" // ua + "an úisbéiceastáin\0" // uz + "anaafo koria\0" // kr + "andola\0" // ad + "andoor\0" // ad + "andoora\0" // ad + "andor\0" // ad + "andora\0" // ad + "andore\0" // ad + "andoro\0" // ad + "andorra\0" // ad + "andorra nutome\0" // ad + "andorrab\0" // ad + "andorre\0" // ad + "andorrë\0" // ad + "andorɛ\0" // ad + "andunisya\0" // id + "andura\0" // ad + "andór\0" // ad + "andóra\0" // ad + "andôro\0" // ad + "andōra\0" // ad + "andɔr\0" // ad + "andɔrǝ\0" // ad + "andɔ́ra\0" // ad + "angaíle\0" // ai + "angeletele\0" // gb + "anggwilla\0" // ai + "angiguwa na babuda\0" // ag + "angiiy\0" // ai + "angiiya\0" // ai + "angila\0" // ai + "angilija\0" // ai + "angilja\0" // ai + "angilya\0" // ai + "angilýa\0" // ai + "angilɛ ka sungurunnin gun\0" // vg + "angilɛ ka ɛndu dugukolo\0" // io + "angilɛtɛri\0" // gb + "angiria\0" // dz + "angiya\0" // ai + "angiye\0" // ai + "angiyɛ\0" // ai + "angjoola\0" // ao + "angletera\0" // gb + "anglofoŋ ma indiya\0" // io + "angola\0" // ao + "angola nutome\0" // ao + "angolab\0" // ao + "angolo\0" // ao + "angolá\0" // ao + "angoläa\0" // ao + "angolë\0" // ao + "angoola\0" // ao + "angora\0" // ao + "anguila\0" // ai + "anguilla\0" // ai + "anguilla nutome\0" // ai + "anguillab\0" // ai + "anguillia\0" // ai + "anguilë\0" // ai + "anguiya\0" // ai + "angula\0" // ao + "anguíila\0" // ai + "anguílla\0" // ai + "angvila\0" // ai + "angvilla\0" // ai + "angvilo\0" // ai + "angwila\0" // ai + "angwilla\0" // ai + "angwira\0" // ai + "angíyə\0" // ai + "angòla\0" // ao + "angóla\0" // ao + "angóola\0" // ao + "angûîla\0" // ai + "angɛlɛtɛ́lɛ\0" // gb + "anikuila\0" // ai + "anitiguya ni balubuda\0" // ag + "anitikua mo palaputa\0" // ag + "anndoora\0" // ad + "anngiyaa\0" // ai + "anngolaa\0" // ao + "anqola\0" // ao + "antaktika\0" // aq + "antaktiki\0" // aq + "antarctica\0" // aq + "antarctique\0" // aq + "antarktida\0" // aq + "antarktik\0" // aq + "antarktika\0" // aq + "antarktikë\0" // aq + "antarktis\0" // aq + "antarktisz\0" // aq + "antarkto\0" // aq + "antarktyda\0" // aq + "antarktída\0" // aq + "antartic\0" // aq + "antartica nutome\0" // aq + "antartide\0" // aq + "antartika\0" // aq + "antaṛktik\0" // aq + "antiga d brbuda\0" // ag + "antiga e barbuda\0" // ag + "antiga mpé barbuda\0" // ag + "antiga ne barbuda\0" // ag + "antiga ri barbúda\0" // ag + "antiga sy barboda\0" // ag + "antiga-ni-barbuda\0" // ag + "antigua & barbuda\0" // ag + "antigua a barbuda\0" // ag + "antigua aamma barbuda\0" // ag + "antigua agus barbúda\0" // ag + "antigua dan barbuda\0" // ag + "antigua di barbuda\0" // ag + "antigua e barbuda\0" // ag + "antigua en barbuda\0" // ag + "antigua eta barbuda\0" // ag + "antigua gi barbuda\0" // ag + "antigua ha barbuda\0" // ag + "antigua i barbuda\0" // ag + "antigua iyo barbuda\0" // ag + "antigua ja barbuda\0" // ag + "antigua já barbuda\0" // ag + "antigua le barbuda\0" // ag + "antigua na babuda\0" // ag + "antigua na balbuda\0" // ag + "antigua na barbuda\0" // ag + "antigua nda barbuuda\0" // ag + "antigua ne baabuda\0" // ag + "antigua ne barbuda\0" // ag + "antigua och barbuda\0" // ag + "antigua og barbuda\0" // ag + "antigua u barbuda\0" // ag + "antigua un barbuda\0" // ag + "antigua und barbuda\0" // ag + "antigua va barbuda\0" // ag + "antigua ve barbuda\0" // ag + "antigua và barbuda\0" // ag + "antigua we barbuda\0" // ag + "antigua y barbuda\0" // ag + "antigua és barbuda\0" // ag + "antigua și barbuda\0" // ag + "antigua-ek-barbuda\0" // ag + "antigua-et-barbuda\0" // ag + "antiguaa kɛnɛ barbuda\0" // ag + "antiguab tsî barbudab\0" // ag + "antiguan ne barbuda\0" // ag + "antiguwa ak barbuda\0" // ag + "antiguwaa e barbudaa\0" // ag + "antigva i barbuda\0" // ag + "antigva in barbuda\0" // ag + "antigva ir barbuda\0" // ag + "antigva un barbuda\0" // ag + "antigvo-barbudo\0" // ag + "antigwa d barbuda\0" // ag + "antigwa da barbuba\0" // ag + "antigwa na baribuda\0" // ag + "antigwa ne barabuda\0" // ag + "antigwa ni barabuda\0" // ag + "antigwa un barbuda\0" // ag + "antigúua na baribúuda\0" // ag + "antilles yr iseldiroedd\0" // bq + "antiqua və barbuda\0" // ag + "antàrtida\0" // aq + "antárktis\0" // aq + "antártida\0" // aq + "antártika\0" // aq + "antíga bá barbúda\0" // ag + "antígua e barbuda\0" // ag + "antígva og barbúda\0" // ag + "antígwa ai barəbúda\0" // ag + "antîgua na barbûda\0" // ag + "antīgwa be barbūda\0" // ag + "anyiehe africa nutome\0" // za + "anyiehe franseme nutome\0" // tf + "anyiehe georgia kple anyiehe sandwich ƒudomekpowo nutome\0" // gs + "anyiehe korea nutome\0" // kr + "anyiehe sudan nutome\0" // ss + "anḍurra\0" // ad + "aod an olifant\0" // ci + "aod olifant\0" // ci + "aontas na néimíríochtaí arabacha\0" // ae + "aos virgin-sullot\0" // vi + "aostralia\0" // au + "aostria\0" // at + "aotearoa\0" // nz + "aotrisy\0" // at + "apvienotie arābu emirāti\0" // ae + "aqsh\0" // us + "aqsh virgin orollari\0" // vi + "aqsh yondosh orollari\0" // um + "ar reünion\0" // re + "araabia ühendemiraadid\0" // ae + "arab saudi\0" // sa + "arabi sawudi\0" // sa + "arabia saodita\0" // sa + "arabia saoudat\0" // sa + "arabia saudita\0" // sa + "arabia saudite\0" // sa + "arabia saudită\0" // sa + "arabia saudyjska\0" // sa + "arabia saudí\0" // sa + "arabiar emirerri batuak\0" // ae + "arabie saoudite\0" // sa + "arabie saudide\0" // sa + "arabiemiirikunnat\0" // ae + "arabiemirkodeh\0" // ae + "arabii sawdit\0" // sa + "arabiya sawudite\0" // sa + "arabiya sawudiya\0" // sa + "arabu mara kafoli\0" // ae + "arabí saodí\0" // sa + "arabí saudí\0" // sa + "arameniya\0" // am + "arcʼhantina\0" // ar + "ardal yr ewro\0" // ez + "are china de macáu\0" // mo + "are china de ḥong kong\0" // hk + "arfordir ifori\0" // ci + "argelia\0" // dz + "argentiina\0" // ar + "argentiinie\0" // ar + "argentina\0" // ar + "argentina nutome\0" // ar + "argentinab\0" // ar + "argentine\0" // ar + "argentinia\0" // ar + "argentinie\0" // ar + "argentinien\0" // ar + "argentiniya\0" // ar + "argentinië\0" // ar + "argentino\0" // ar + "argentinska\0" // ar + "argentyna\0" // ar + "argentína\0" // ar + "argentīna\0" // ar + "argentīnija\0" // ar + "argjentine\0" // ar + "argjentinë\0" // ar + "argélia\0" // dz + "arigentina\0" // ar + "arigyeriya\0" // dz + "arijantine\0" // ar + "arimeni\0" // am + "arimeniya\0" // am + "ariménia\0" // am + "arizantin\0" // ar + "arizantinɛ\0" // ar + "arjantiin\0" // ar + "arjantin\0" // ar + "arjantiniya\0" // ar + "arjentina\0" // ar + "arjuntin\0" // ar + "arjélia\0" // dz + "arjǝntín\0" // ar + "armaniston\0" // am + "armeeni\0" // am + "armeenia\0" // am + "armeenie\0" // am + "armeeniya\0" // am + "armeni\0" // am + "armenia\0" // am + "armenia nutome\0" // am + "armeniab\0" // am + "armenie\0" // am + "armenien\0" // am + "armenii\0" // am + "armenija\0" // am + "armeniya\0" // am + "armenië\0" // am + "armenska\0" // am + "armenujo\0" // am + "armenía\0" // am + "armenïi\0" // am + "armeńska\0" // am + "arminya\0" // am + "armènia\0" // am + "arménia\0" // am + "arménie\0" // am + "arménsko\0" // am + "armênia\0" // am + "armēnija\0" // am + "armėnija\0" // am + "armɛní\0" // am + "arnavutluk\0" // al + "arobà\0" // aw + "arrmeenije\0" // am + "arsantin\0" // ar + "arsàntin\0" // ar + "aruba\0" // aw + "aruba nutome\0" // aw + "arubab\0" // aw + "arubania\0" // al + "arubha\0" // aw + "arubo\0" // aw + "arubë\0" // aw + "arumeniya\0" // am + "aruuba\0" // aw + "arxelia\0" // dz + "arxentina\0" // ar + "arzantina\0" // ar + "arzantîna\0" // ar + "aràbia saudita\0" // sa + "aràibia nan sabhd\0" // sa + "arábia saudita\0" // sa + "arâbo emirâti ôko\0" // ae + "arùba\0" // aw + "arúba\0" // aw + "arúuba\0" // aw + "arûba\0" // aw + "arəhenətína\0" // ar + "arəménia\0" // am + "asabajani\0" // az + "asarbaideàn\0" // az + "ascension\0" // ac + "ascension adası\0" // ac + "ascension island\0" // ac + "ascension qeqertaq\0" // ac + "ascension uhartea\0" // ac + "ascension ƒudomekpo nutome\0" // ac + "ascension-eyja\0" // ac + "ascension-saari\0" // ac + "ascension-suálui\0" // ac + "ascension-sziget\0" // ac + "ascensioneiland\0" // ac + "ascensioni saar\0" // ac + "ascensionøen\0" // ac + "aserbadjan\0" // az + "aserbaidschan\0" // az + "aserbaidšan\0" // az + "aserbaidžaan\0" // az + "aserbaižan\0" // az + "aserbajdsjan\0" // az + "aserbayjaŋ\0" // az + "aserbaysan\0" // az + "aserbaídsjan\0" // az + "aserbäidschan\0" // az + "askenson adası\0" // ac + "asserbaidschahn\0" // az + "astràilia\0" // au + "asv\0" // us + "asv mazās aizjūras salas\0" // um + "asv samoa\0" // as + "asv virdžīnas\0" // vi + "asɛlpaisáŋ\0" // az + "athtɛria\0" // at + "athɔra̱lia\0" // au + "aupuni mōʻī hui pū ʻia\0" // gb + "auschtraalie\0" // au + "ausiteréelia\0" // au + "aust-timor\0" // tl + "austerrike\0" // at + "austiria\0" // at + "austlalia\0" // au + "austlia\0" // at + "austraalia\0" // au + "austraalije\0" // au + "australi\0" // au + "australia\0" // au + "australia nutome\0" // au + "australie\0" // au + "australieb\0" // au + "australien\0" // au + "australija\0" // au + "australiya\0" // au + "australië\0" // au + "austri\0" // at + "austria\0" // at + "austria nutome\0" // at + "austriab\0" // at + "austrie\0" // at + "austrija\0" // at + "austriya\0" // at + "austrumtimora\0" // tl + "austràlia\0" // au + "austrália\0" // au + "austrálie\0" // au + "austrālija\0" // au + "austrĩlia\0" // au + "austur-tímor\0" // tl + "austurríki\0" // at + "ausztria\0" // at + "ausztrália\0" // au + "authtralia\0" // au + "authtria\0" // at + "autriche\0" // at + "avannarleqsudan\0" // sd + "avganistan\0" // af + "avorekoo\0" // cd + "avrozona\0" // ez + "avstralia\0" // au + "avstralija\0" // au + "avstraliya\0" // au + "avstrija\0" // at + "avstriya\0" // at + "avustralya\0" // au + "avusturya\0" // at + "awanek n vatikan\0" // va + "awank iɣrem n vatikan\0" // va + "awank n fatikan\0" // va + "awstaraaliya\0" // au + "awsteriya\0" // at + "awstralia\0" // au + "awstraliýa\0" // au + "awstralska\0" // au + "awstria\0" // at + "awstriska\0" // at + "awstriýa\0" // at + "awusitilaliya\0" // au + "awusitiliya\0" // at + "awusitureliya\0" // au + "awusituriya\0" // at + "ayalan\0" // ie + "ayalandi\0" // ie + "ayaláandi\0" // ie + "ayceland\0" // is + "ayisilandi\0" // is + "ayisilendi\0" // is + "ayisirandi\0" // is + "ayiti\0" // ht + "ayrlaand\0" // ie + "ayseland\0" // is + "ayti\0" // ht + "ayíti\0" // ht + "az usa lakatlan külbirtokai\0" // um + "azabadyani\0" // az + "azabagyani\0" // az + "azabajani\0" // az + "azabajáani\0" // az + "azabecán\0" // az + "azabhaijaŋ\0" // az + "azarbaijan\0" // az + "azebaegyan\0" // az + "azebaijani\0" // az + "azerbaayijaŋ\0" // az + "azerbaidjan\0" // az + "azerbaidžan\0" // az + "azerbaidžanas\0" // az + "azerbaidžāna\0" // az + "azerbaigian\0" // az + "azerbaijan\0" // az + "azerbaijan nutome\0" // az + "azerbaijanni\0" // az + "azerbaijaŋ\0" // az + "azerbaijão\0" // az + "azerbaijãu\0" // az + "azerbaixán\0" // az + "azerbaiyán\0" // az + "azerbajaan\0" // az + "azerbajdzjan\0" // az + "azerbajdzsán\0" // az + "azerbajdźan\0" // az + "azerbajdžan\0" // az + "azerbajxhan\0" // az + "azerbajĝano\0" // az + "azerbaycan\0" // az + "azerbaïdjan\0" // az + "azerbaïjaŋ\0" // az + "azerbaýjan\0" // az + "azerbeidjan\0" // az + "azerbeidzjan\0" // az + "azerbejdżan\0" // az + "azerbejdžan\0" // az + "azerbiǧan\0" // az + "azerebayijaani\0" // az + "azerubayijani\0" // az + "azrabijan\0" // az + "azûâ tî kâpo-vêre\0" // cv + "azərbaycan\0" // az + "azɛlɛbaizá\0" // az + "azɛrbayjaŋ\0" // az + "azɛrəbaidzáŋ\0" // az + "aßension\0" // ac + "aĩrandi cia cook\0" // ck + "aĩrandi cia falklandi\0" // fk + "aĩrandi cia kayman\0" // ky + "aĩrandi cia mariana ya nothi\0" // mp + "aĩrandi cia marshal\0" // mh + "aĩrandi cia norfok\0" // nf + "aĩrandi cia takĩ na kaiko\0" // tc + "aĩrandi cia virgin cia amerika\0" // vi + "aĩrandi cia virgin cia ngeretha\0" // vg + "aŋdóra\0" // ad + "aŋgola\0" // ao + "aŋguɛla\0" // ai + "aŋgíla\0" // ai + "aŋgóla\0" // ao + "aŋgɔ́la\0" // ao + "aŋkíla\0" // ai + "aŋkúla\0" // ao + "aŋtígwa ɓahabhuda\0" // ag + "aŋtíka na palpúta\0" // ag + "aŋtúla\0" // ad + "aŭstralio\0" // au + "aŭstrujo\0" // at + "aɛrgentin\0" // ar + "aɛrmänia\0" // am + "a’ bhealaruis\0" // by + "a’ bheilg\0" // be + "a’ bheilìs\0" // bz + "a’ bheiniseala\0" // ve + "a’ bhulgair\0" // bg + "a’ chairtbheil\0" // ge + "a’ chongo\0" // cg + "a’ chongo (pdc)\0" // cd + "a’ chongo - brazzaville\0" // cg + "a’ chosobho\0" // xk + "a’ chròthais\0" // hr + "a’ ghaimbia\0" // gm + "a’ ghearmailt\0" // de + "a’ ghraonlann\0" // gl + "a’ ghreug\0" // gr + "a’ mhasadon\0" // mk + "a’ mhasadon (fyrom)\0" // mk + "a’ mholdobha\0" // md + "a’ phoblachd dhoiminiceach\0" // do + "a’ phortagail\0" // pt + "a’ phòlainn\0" // pl + "ba lan\0" // pl + "baabaadǝ\0" // bb + "baabados\0" // bb + "baamas\0" // bs + "baamás\0" // bs + "baarbadoos\0" // bb + "baareeni\0" // bh + "babado\0" // bb + "babadosi\0" // bb + "babadothi\0" // bb + "babadóosi\0" // bb + "babwa ɣinya tamaynut\0" // pg + "bachrain\0" // bh + "bachräin\0" // bh + "bagama adalary\0" // bs + "bagama orollari\0" // bs + "bahaamas\0" // bs + "bahaleni\0" // bh + "baham adaları\0" // bs + "bahama\0" // bs + "bahama-szigetek\0" // bs + "bahamaas\0" // bs + "bahamaeyjar\0" // bs + "bahamak\0" // bs + "bahamalar\0" // bs + "bahamaoyggjar\0" // bs + "bahamas\0" // bs + "bahamas nutome\0" // bs + "bahamase\0" // bs + "bahamasi\0" // bs + "bahamasɛ\0" // bs + "bahama’s\0" // bs + "bahames\0" // bs + "bahami\0" // bs + "bahamoj\0" // bs + "bahamos\0" // bs + "bahamu salas\0" // bs + "bahamy\0" // bs + "baharan\0" // bh + "bahareen\0" // bh + "bahareni\0" // bh + "bahareyini\0" // bh + "baharini\0" // bh + "baharéeni\0" // bh + "bahrain\0" // bh + "bahrain nutome\0" // bh + "bahraiŋ\0" // bh + "bahrajn\0" // bh + "bahrayn\0" // bh + "bahrein\0" // bh + "bahreina\0" // bh + "bahreinas\0" // bh + "bahrejn\0" // bh + "bahrene\0" // bh + "bahreyin\0" // bh + "bahreyn\0" // bh + "bahreïn\0" // bh + "bahreýn\0" // bh + "bahrâina\0" // bh + "bahrɛnɛ\0" // bh + "baháama\0" // bs + "bahámas\0" // bs + "bahámasi\0" // bs + "bahâmasa\0" // bs + "bahāmai\0" // bs + "bahərɛ́n\0" // bh + "bairéin\0" // bh + "bakistaan\0" // pk + "bakistan\0" // pk + "balaw\0" // pw + "baltarusija\0" // by + "baltkrievija\0" // by + "bama gun\0" // ky + "bamuda\0" // bm + "banama\0" // pa + "bandaríkin\0" // us + "bandaríska samóa\0" // as + "bandarísku jómfrúaeyjar\0" // vi + "bangaaladheesh\0" // bd + "bangaladeshi\0" // bd + "bangaladesi\0" // bd + "bangaladéeshi\0" // bd + "bangaladɛ́s\0" // bd + "bangaradeshi\0" // bd + "bangiladas\0" // bd + "bangiladeshi\0" // bd + "bangiradeshi\0" // bd + "bangla desh\0" // bd + "banglaadees\0" // bd + "bangladac\0" // bd + "bangladais\0" // bd + "bangladeche\0" // bd + "banglades\0" // bd + "bangladesch\0" // bd + "bangladesh\0" // bd + "bangladesh nutome\0" // bd + "bangladeshi\0" // bd + "bangladeshiya\0" // bd + "bangladesj\0" // bd + "bangladess\0" // bd + "bangladesy\0" // bd + "bangladesz\0" // bd + "bangladex\0" // bd + "bangladexi\0" // bd + "bangladeŝo\0" // bd + "bangladeş\0" // bd + "bangladeš\0" // bd + "bangladeša\0" // bd + "bangladešas\0" // bd + "bangladeši\0" // bd + "bangladic\0" // bd + "bangladés\0" // bd + "bangladéš\0" // bd + "bangladɛhye\0" // bd + "banqladeş\0" // bd + "banuwatu\0" // vu + "barabadosi\0" // bb + "barabâda\0" // bb + "baragway\0" // py + "barain\0" // bh + "bararusi\0" // by + "barbaados\0" // bb + "barbad\0" // bb + "barbadas\0" // bb + "barbade\0" // bb + "barbadi\0" // bb + "barbadiya\0" // bb + "barbado\0" // bb + "barbadoos\0" // bb + "barbados\0" // bb + "barbados nutome\0" // bb + "barbadosa\0" // bb + "barbadosas\0" // bb + "barbadow\0" // bb + "barbadus\0" // bb + "barbady\0" // bb + "barbadós\0" // bb + "barbādas\0" // bb + "barebade\0" // bb + "barein\0" // bh + "barejno\0" // bh + "baren\0" // bh + "bareyini\0" // bh + "barmuda\0" // bm + "barubadosi\0" // bb + "baréin\0" // bh + "barém\0" // bh + "barǝ́n\0" // bh + "barəbád\0" // bb + "barɛbadɛ\0" // bb + "baswana\0" // bw + "batikan\0" // va + "batı sahra\0" // eh + "baussecht ozeanien\0" // qo + "baxreyn\0" // bh + "bačrain\0" // bh + "baŋgɨ̀làdɛ̂\0" // bd + "baŋladɛ́c\0" // bd + "ba̱reen\0" // bh + "baḥrayn\0" // bh + "baḥrin\0" // bh + "baḥréin\0" // bh + "bearmùda\0" // bm + "beinin\0" // bj + "beirmiúda\0" // bm + "belalusi\0" // by + "belanda\0" // nl + "belanda caribbean\0" // bq + "belanda karibia\0" // bq + "belaris\0" // by + "belarosy\0" // by + "belarus\0" // by + "belarus nutome\0" // by + "belarusi\0" // by + "belarussiya\0" // by + "belarusz\0" // by + "belaruthi\0" // by + "belaruus\0" // by + "belarws\0" // by + "belarús\0" // by + "belarúusi\0" // by + "belarüsi\0" // by + "belau\0" // pw + "belausi\0" // by + "belaŭo\0" // pw + "belejiki\0" // be + "beleziki\0" // be + "belgia\0" // be + "belgicko\0" // be + "belgie\0" // be + "belgien\0" // be + "belgiiki\0" // be + "belgija\0" // be + "belgika\0" // be + "belgio\0" // be + "belgique\0" // be + "belgiska\0" // be + "belgium\0" // be + "belgium nutome\0" // be + "belgiummi\0" // be + "belgiya\0" // be + "belgiyom\0" // be + "belgië\0" // be + "belgiýa\0" // be + "belgjiche\0" // be + "belgjikë\0" // be + "belgujo\0" // be + "belgía\0" // be + "belice\0" // bz + "belidhe\0" // bz + "beliis\0" // bz + "beliise\0" // bz + "beliizi\0" // bz + "belimuda\0" // bm + "belis\0" // bz + "belise\0" // bz + "beliz\0" // bz + "beliza\0" // bz + "belizas\0" // bz + "belize\0" // bz + "belize nutome\0" // bz + "belizi\0" // bz + "beliziya\0" // bz + "belizo\0" // bz + "belizë\0" // bz + "belizɛ\0" // bz + "beljik\0" // be + "beljika\0" // be + "beljium\0" // be + "bellje\0" // be + "belmuda\0" // bm + "belorusija\0" // by + "belorusujo\0" // by + "belsch\0" // be + "belsig\0" // be + "belsik\0" // be + "belzik\0" // be + "belzika\0" // be + "belçika\0" // be + "belíise\0" // bz + "belís\0" // bz + "belîzi\0" // bz + "belīzi\0" // bz + "belǧik\0" // be + "belɣarya\0" // bg + "bemirá yá arábə uní\0" // ae + "bemuda\0" // bm + "bene\0" // bj + "benee\0" // bj + "benezuwela\0" // ve + "bengalades\0" // bd + "bengalidɛsi\0" // bd + "bengeladiec\0" // bd + "bengladêshi\0" // bd + "benguladeshi\0" // bd + "benim\0" // bj + "benin\0" // bj + "benin nutome\0" // bj + "benina\0" // bj + "beninas\0" // bj + "benini\0" // bj + "benino\0" // bj + "benins\0" // bj + "beniŋ\0" // bj + "benëen\0" // bj + "beníini\0" // bj + "benín\0" // bj + "benɛ\0" // bj + "benɛn\0" // bj + "beremuda\0" // bm + "beremûda\0" // bm + "beresiil\0" // br + "beresil\0" // br + "berezili\0" // br + "berimuda\0" // bm + "berimúuda\0" // bm + "berize\0" // bz + "bermid\0" // bm + "bermioda\0" // bm + "bermud\0" // bm + "bermud adaları\0" // bm + "bermuda\0" // bm + "bermuda nutome\0" // bm + "bermuda orollari\0" // bm + "bermudaa\0" // bm + "bermudas\0" // bm + "bermudes\0" // bm + "bermudi\0" // bm + "bermudiya\0" // bm + "bermudoj\0" // bm + "bermudu salas\0" // bm + "bermudy\0" // bm + "bermudë\0" // bm + "bermuuda\0" // bm + "bermúdaeyjar\0" // bm + "beronjiamu\0" // be + "beýgeliş adasy\0" // ac + "beļģija\0" // be + "be̱lgim\0" // be + "be̱lɛruth\0" // by + "be̱ni̱n\0" // bj + "be̱rmudaa\0" // bm + "bhabhadosi\0" // bb + "bhabhedo\0" // bb + "bhahamas\0" // bs + "bhahareni\0" // bh + "bhangiladeshi\0" // bd + "bhangiladɛ̀shi\0" // bd + "bhanísiláila\0" // il + "bharɛŋ\0" // bh + "bhelarusi\0" // by + "bhelgium\0" // be + "bheliz\0" // bz + "bhelize\0" // bz + "bhemuda\0" // bm + "bhenini\0" // bj + "bhiet-nam\0" // vn + "bhoetan\0" // bt + "bhokina fáso\0" // bf + "bholiviya\0" // bo + "bhosnia le herzegovina\0" // ba + "bhosuwana\0" // bw + "bhotana\0" // bt + "bhoutan\0" // bt + "bhukina faso\0" // bf + "bhulgariya\0" // bg + "bhurazeli\0" // br + "bhurundi\0" // bi + "bhurunɛĩ\0" // bn + "bhutan\0" // bt + "bhutan nutome\0" // bt + "bhutani\0" // bt + "bhutans\0" // bt + "bhutaŋ\0" // bt + "bhután\0" // bt + "bhútán\0" // bt + "bhɔgeriya\0" // bg + "bhɔsiniya\0" // ba + "bhɛgiyɔŋ\0" // be + "bhɛlarusi\0" // by + "bhɛmuda\0" // bm + "bhɛni\0" // bj + "białoruś\0" // by + "bielorrusia\0" // by + "bielorrússia\0" // by + "bielorusko\0" // by + "bielorussia\0" // by + "bielorussie\0" // by + "bijusī dienvidslāvijas maķedonijas republika\0" // mk + "bilarus\0" // by + "bilarusya\0" // by + "bilgari\0" // bg + "bilidha\0" // bz + "biligari\0" // bg + "biliz\0" // bz + "biljam\0" // be + "biloriši\0" // by + "biniin\0" // bj + "binin\0" // bj + "biolgaria\0" // bg + "birazil\0" // br + "birimaniya\0" // mm + "birjina uharte amerikarrak\0" // vi + "birjina uharte britainiarrak\0" // vg + "birlashgan arab amirliklari\0" // ae + "birleşen arap emirlikleri\0" // ae + "birleşen patyşalyk\0" // gb + "birleşik arap emirlikleri\0" // ae + "birleşik krallık\0" // gb + "birləşmiş krallıq\0" // gb + "birləşmiş ərəb əmirlikləri\0" // ae + "birma\0" // mm + "birmanie\0" // mm + "birmuda\0" // bm + "birtaniya\0" // gb + "biru\0" // pe + "bisanga bya falklandí (bisanga bya maluni)\0" // fk + "bisanga bya faloé\0" // fo + "bisanga bya kanári\0" // ic + "bisanga bya kapevɛrɛ\0" // cv + "bisanga bya kayíma\0" // ky + "bisanga bya kookɛ\0" // ck + "bisanga bya maluni\0" // fk + "bisanga bya marianɛ ya nɔ́rdi\0" // mp + "bisanga bya marishalɛ\0" // mh + "bisanga bya turki mpé kaiko\0" // tc + "bisanga bya vierzi ya ameriki\0" // vi + "bisanga bya vierzi ya angɛlɛtɛ́lɛ\0" // vg + "bisanga kokos\0" // cc + "bisanga mokɛ́na mosíká bya lisangá lya ameríka\0" // um + "bisanga solomɔ\0" // sb + "bisanga ɛland\0" // ax + "bisau gvinėja\0" // gw + "bissau-guinea\0" // gw + "bitkayrn\0" // pn + "biyetinam\0" // vn + "bizanga by’esolomooni\0" // sb + "bizinga bya firipino\0" // ph + "bizinga bya kkuki\0" // ck + "bizinga bya mariso\0" // mh + "bizinga bya mariyana ebyamumambuka\0" // mp + "bizinga bya mariyana eby’omumambuka\0" // mp + "bizinga bya virigini eby’amerika\0" // vi + "bizinga by’e kepu veredi\0" // cv + "bizinga by’ecago\0" // io + "bizinga by’efalikalandi\0" // fk + "bizinga by’ekomoro\0" // km + "bizinga by’emalidive\0" // mv + "bizinga by’etaaka ne kayikosi\0" // tc + "bizinga ebya kayimaani\0" // ky + "bizinga ebya virigini ebitwalibwa bungereza\0" // vg + "biélorussie\0" // by + "bjellorusi\0" // by + "bjelokosna obala\0" // ci + "bjelorusija\0" // by + "bjr makedonija\0" // mk + "bk\0" // gb + "blazili\0" // br + "bljika\0" // be + "blunei\0" // bn + "blɣara\0" // bg + "bna\0" // us + "bocvana\0" // bw + "bocvano\0" // bw + "boilibhia\0" // bo + "bokina faso\0" // bf + "bolgarija\0" // bg + "bolgariya\0" // bg + "bolgariýa\0" // bg + "boli kosta\0" // ci + "bolibiya\0" // bo + "bolifia\0" // bo + "boliifiya\0" // bo + "boliivi\0" // bo + "boliivia\0" // bo + "boliivie\0" // bo + "bolivi\0" // bo + "bolivia\0" // bo + "bolivia nutome\0" // bo + "boliviab\0" // bo + "bolivie\0" // bo + "bolivien\0" // bo + "bolivija\0" // bo + "bolivio\0" // bo + "boliviya\0" // bo + "bolivië\0" // bo + "bolivya\0" // bo + "bolivïi\0" // bo + "boliwi\0" // bo + "boliwia\0" // bo + "boliwie\0" // bo + "boliwii\0" // bo + "boliwiska\0" // bo + "boliwiýa\0" // bo + "bolliivije\0" // bo + "bolqarıstan\0" // bg + "bolívia\0" // bo + "bolívie\0" // bo + "bolīvija\0" // bo + "bonaire\0" // bq + "bonaire, sint eustatius und saba\0" // bq + "boneyr, sint-estatius va saba\0" // bq + "booland\0" // pl + "boolivi\0" // bo + "boriiviya\0" // bo + "borkina faso\0" // bf + "borondi\0" // bi + "bortuqaal\0" // pt + "bosini mpé hezegovine\0" // ba + "bosiniya na herigozevine\0" // ba + "bosiniya ni hesegovina\0" // ba + "bosna a hercegovina\0" // ba + "bosna i hercegovina\0" // ba + "bosna in hercegovina\0" // ba + "bosna is hearsagobhana\0" // ba + "bosna-hersek\0" // ba + "bosni di hersegovin\0" // ba + "bosni ersegowin\0" // ba + "bosni nda herzegovine\0" // ba + "bosni-herzegovinn\0" // ba + "bosnia\0" // ba + "bosnia & herzegovina\0" // ba + "bosnia aamma herzegovina\0" // ba + "bosnia and herzegovina\0" // ba + "bosnia dan herzegovina\0" // ba + "bosnia e hercegovina\0" // ba + "bosnia ed erzegovina\0" // ba + "bosnia gi herzegovina\0" // ba + "bosnia ha herzegovina\0" // ba + "bosnia ja hercegovina\0" // ba + "bosnia ja hertsegoviina\0" // ba + "bosnia ja hertsegovina\0" // ba + "bosnia já herzegovina\0" // ba + "bosnia kple herzergovina nutome\0" // ba + "bosnia na hezegovina\0" // ba + "bosnia na ɛrzegovina\0" // ba + "bosnia ne hɛzegovina\0" // ba + "bosnia sy herzegovina\0" // ba + "bosnia và herzegovina\0" // ba + "bosnia y herzegovina\0" // ba + "bosnia și herțegovina\0" // ba + "bosnia-hercegovina\0" // ba + "bosnia-hersegovina\0" // ba + "bosnia-herzegovina\0" // ba + "bosniab tsî herzegovinab\0" // ba + "bosnie e ercegovine\0" // ba + "bosnie und herzegovina\0" // ba + "bosnie und herzegowina\0" // ba + "bosnie-herzégovine\0" // ba + "bosnien an herzegowina\0" // ba + "bosnien och hercegovina\0" // ba + "bosnien un herzegowina\0" // ba + "bosnien und herzegowina\0" // ba + "bosnien-hercegovina\0" // ba + "bosnii hersegowiin\0" // ba + "bosnija ir hercegovina\0" // ba + "bosnija un hercegovina\0" // ba + "bosnio-hercegovino\0" // ba + "bosniska a hercegowina\0" // ba + "bosniya harzagobina\0" // ba + "bosniya hersigoviina\0" // ba + "bosniya ne herzegovina\0" // ba + "bosniya va gertsegovina\0" // ba + "bosniya və herseqovina\0" // ba + "bosnië en herzegovina\0" // ba + "bosnië en herzegowina\0" // ba + "bosniýa we gersegowina\0" // ba + "bosnjë-hercegovinë\0" // ba + "bosnía og hersegóvína\0" // ba + "bosnïi na herzegovînni\0" // ba + "boswana\0" // bw + "bosznia-hercegovina\0" // ba + "bosəní ai ɛrəzegovín\0" // ba + "bosɨnyìa à hɛ̀zɛ̀gòvinà\0" // ba + "bothiwaana\0" // bw + "bothnia kɛnɛ ɣärgobinia\0" // ba + "bothnia na hedhegovina\0" // ba + "botiswana\0" // bw + "botiswáana\0" // bw + "botsoana\0" // bw + "botsuana\0" // bw + "botsvana\0" // bw + "botsvanë\0" // bw + "botsvāna\0" // bw + "botswaana\0" // bw + "botswana\0" // bw + "botswana nutome\0" // bw + "botswanab\0" // bw + "botswaná\0" // bw + "botthwana\0" // bw + "botuswaana\0" // bw + "boutan\0" // bt + "bouvet\0" // bv + "bouvet adası\0" // bv + "bouvet island\0" // bv + "bouvet qeqertaq\0" // bv + "bouvet uhartea\0" // bv + "bouvet ƒudomekpo nutome\0" // bv + "bouvet-eiland\0" // bv + "bouvet-insle\0" // bv + "bouvet-sullot\0" // bv + "bouvet-sziget\0" // bv + "bouveteiland\0" // bv + "bouveteilân\0" // bv + "bouveteyja\0" // bv + "bouvetinsel\0" // bv + "bouvetinsla\0" // bv + "bouvetov ostrov\0" // bv + "bouvetov otok\0" // bv + "bouvetowa kupa\0" // bv + "bouvetoyggj\0" // bv + "bouvetsuálui\0" // bv + "bouvetön\0" // bv + "bouvetøen\0" // bv + "bouvetøya\0" // bv + "bouvetův ostrov\0" // bv + "bouvet’ saar\0" // bv + "bouvet’nsaari\0" // bv + "boziniya hezegovina\0" // ba + "boziniya na hezegovina\0" // ba + "bozni-ɛrizigovini\0" // ba + "boznia ne herzegovina\0" // ba + "bozwaana\0" // bw + "boßnije un herzegovina\0" // ba + "bołharska\0" // bg + "bośnia i hercegowina\0" // ba + "božićni otok\0" // cx + "božićno ostrvo\0" // cx + "božični otok\0" // cx + "braasiil\0" // br + "braisil\0" // br + "brasiilia\0" // br + "brasil\0" // br + "brasile\0" // br + "brasilia\0" // br + "brasilie\0" // br + "brasilien\0" // br + "brasilije\0" // br + "brasilië\0" // br + "brasilän\0" // br + "brasilía\0" // br + "brasíili\0" // br + "brasîl\0" // br + "brazil\0" // br + "brazil nutome\0" // br + "brazili\0" // br + "brazilia\0" // br + "braziliab\0" // br + "brazilija\0" // br + "braziliya\0" // br + "brazilië\0" // br + "braziliýa\0" // br + "brazilo\0" // br + "brazilska\0" // br + "brazilu\0" // br + "brazilya\0" // br + "brazylia\0" // br + "brazília\0" // br + "brazílie\0" // br + "brazīlija\0" // br + "breezil\0" // br + "bregu i fildishtë\0" // ci + "bresil\0" // br + "bresku indlandshafseyjar\0" // io + "bresku jómfrúaeyjar\0" // vg + "bretland\0" // gb + "brettesche besezunge em indesche oozejahn\0" // io + "brezil\0" // br + "brezila\0" // br + "brezilya\0" // br + "brezílɛ\0" // br + "brezîli\0" // br + "brietsche jumfern-eilannen\0" // vg + "brineyi\0" // bn + "brit indiai-óceáni terület\0" // io + "brit virgin-szigetek\0" // vg + "brita hindoceana teritorio\0" // io + "britainfo virgin islands\0" // vg + "britaintɔwo ƒe india ƒudome nutome\0" // io + "britaintɔwo ƒe virgin ƒudomekpowo nutome\0" // vg + "britaj virgulininsuloj\0" // vg + "britan wirgin adalary\0" // vg + "britaniya\0" // gb + "britaniya virgin orollari\0" // vg + "britaniyaning hind okeanidagi hududi\0" // io + "britaniyanın hind okeanı ərazisi\0" // io + "britaniyanın virgin adaları\0" // vg + "britaniýanyň hint okeanyndaky territoriýalary\0" // io + "britannia\0" // gb + "britanska devičanska ostrva\0" // vg + "britanska djevičanska ostrva\0" // vg + "britanska teritorija indijskog okeana\0" // io + "britanska teritorija u indijskom okeanu\0" // io + "britanski deviški otoki\0" // vg + "britanski djevičanski otoci\0" // vg + "britanski indijskooceanski teritorij\0" // io + "britansko ozemlje v indijskem oceanu\0" // io + "britanya hint okyanusu toprakları\0" // io + "britanya virjin adaları\0" // vg + "britenfo hɔn man wɔ india po no mu\0" // io + "britesch joffereninselen\0" // vg + "britescht territorium am indeschen ozean\0" // io + "briti india ookeani ala\0" // io + "briti neitsisaared\0" // vg + "britisch rebeed in’n indischen ozean\0" // io + "britische jungferninseln\0" // vg + "britisches territorium im indischen ozean\0" // io + "britischi jungfere-insle\0" // vg + "britischs territoorium im indische oozean\0" // io + "british indian ocean territory\0" // io + "british virgin islands\0" // vg + "britiske knježniske kupy\0" // vg + "britiske kněžniske kupy\0" // vg + "britiski indiskooceaniski teritorium\0" // io + "britiski teritorij w indiskim oceanje\0" // io + "britišes territorium em indiše ozean\0" // io + "britiši indu teekoo laama\0" // io + "britiši jungfröiwinslä\0" // vg + "britiši virgin gungey\0" // vg + "brits indische oceaanterritorium\0" // io + "brits-indiese oseaangebied\0" // io + "britse gebieden yn de indyske oseaan\0" // io + "britse maagde-eilande\0" // vg + "britse maagdeneilanden\0" // vg + "britse maagdeneilannen\0" // vg + "britské indickooceánske územie\0" // io + "britské indickooceánské území\0" // io + "britské panenské ostrovy\0" // vg + "brittania virgin-sullot\0" // vg + "brittiliih nieidâsuolluuh\0" // vg + "brittilâš india väldimeerâ kuávlu\0" // io + "brittiläinen intian valtameren alue\0" // io + "brittiläiset neitsytsaaret\0" // vg + "brittiska jungfruöarna\0" // vg + "brittiska territoriet i indiska oceanen\0" // io + "britu virdžīnas\0" // vg + "brizil\0" // br + "brmuda\0" // bm + "broenei\0" // bn + "brunae\0" // bn + "brunay\0" // bn + "brunei\0" // bn + "brunei darussalam\0" // bn + "brunei nutome\0" // bn + "brunej\0" // bn + "bruneja\0" // bn + "brunejo\0" // bn + "bruney\0" // bn + "bruneý\0" // bn + "bruni\0" // bn + "bruniya\0" // bn + "brunäi tarussalam\0" // bn + "brunéi\0" // bn + "brunéi darussalam\0" // bn + "brunêi\0" // bn + "brunėjus\0" // bn + "brunǝ́\0" // bn + "brunɛi\0" // bn + "bruunee\0" // bn + "brytyjskie terytorium oceanu indyjskiego\0" // io + "brytyjskie wyspy dziewicze\0" // vg + "bràsîl\0" // br + "brésil\0" // br + "brùnaigh\0" // bn + "brúiné\0" // bn + "brúnei\0" // bn + "brɛsíl\0" // br + "bubirigi\0" // be + "buchinafaso\0" // bf + "budaaki\0" // de + "bufalansa\0" // fr + "bufaransa\0" // fr + "bufini\0" // fi + "bugarska\0" // bg + "bugereeki/buyonaani\0" // gr + "bugirimaani\0" // de + "buirciona faso\0" // bf + "buircíne fasó\0" // bf + "bukina faso\0" // bf + "bukinafaso\0" // bf + "bukinafatho\0" // bf + "bukinafáaso\0" // bf + "bukini\0" // mg + "bukkinna-faase\0" // bf + "bukíini\0" // mg + "bukína fǝ́ asɔ\0" // bf + "bulasili\0" // br + "bulgaari\0" // bg + "bulgaaria\0" // bg + "bulgaarie\0" // bg + "bulgaariya\0" // bg + "bulgalia\0" // bg + "bulgari\0" // bg + "bulgaria\0" // bg + "bulgaria nutome\0" // bg + "bulgariab\0" // bg + "bulgarie\0" // bg + "bulgarien\0" // bg + "bulgarii\0" // bg + "bulgarija\0" // bg + "bulgarije\0" // bg + "bulgaristan\0" // bg + "bulgariya\0" // bg + "bulgarska\0" // bg + "bulgarujo\0" // bg + "bulgarye\0" // bg + "bulgarí\0" // bg + "bulga̱a̱ria\0" // bg + "bulgària\0" // bg + "bulgária\0" // bg + "bulgārija\0" // bg + "bulharsko\0" // bg + "bulibia\0" // bo + "bulibya\0" // bo + "buligaliya\0" // bg + "buligari\0" // bg + "buligariya\0" // bg + "buligaría\0" // bg + "bulinizya tafransist\0" // pf + "bulivi\0" // bo + "bulivya\0" // bo + "bullgari\0" // bg + "bulljaarije\0" // bg + "bulugariya\0" // bg + "bulugarïi\0" // bg + "bulundi\0" // bi + "buluneyi\0" // bn + "bulunya\0" // pl + "buluné\0" // bn + "buləgarí\0" // bg + "buləkiná fasó\0" // bf + "bungereza\0" // gb + "bungyereza\0" // gb + "burandi\0" // bi + "buraziiri\0" // br + "burezili\0" // br + "burinɛyi\0" // bn + "burkibaa faaso\0" // bf + "burkiina faaso\0" // bf + "burkina faaso\0" // bf + "burkina fasas\0" // bf + "burkina faso\0" // bf + "burkina faso nutome\0" // bf + "burkina fasob\0" // bf + "burkina fasu\0" // bf + "burkina-faso\0" // bf + "burkinafaso\0" // bf + "burkino\0" // bf + "burkinɛ pa̱thu\0" // bf + "burma\0" // mm + "burma, miyamar\0" // mm + "burnaay\0" // bn + "burney\0" // bn + "burquina faso\0" // bf + "burtu riku\0" // pr + "burugariya\0" // bg + "burugweizooba bwa timori\0" // tl + "burukiina faso\0" // bf + "burukina faso\0" // bf + "burunayi\0" // bn + "burundaidh\0" // bi + "burundi\0" // bi + "burundi nutome\0" // bi + "burundib\0" // bi + "burundija\0" // bi + "burundis\0" // bi + "burundo\0" // bi + "burundí\0" // bi + "burundïi\0" // bi + "burune\0" // bn + "buruneeya\0" // bn + "burunei\0" // bn + "buruney\0" // bn + "buruneyi\0" // bn + "burunndi\0" // bi + "burunéei\0" // bn + "burunɛy\0" // bn + "burutic dhuɔ̱ɔ̱l be̱rgin\0" // vg + "burutic ɣe̱ndian oce̱n\0" // io + "burúundi\0" // bi + "busna d hersek\0" // ba + "busna d hirsik\0" // ba + "busna-d-hirsik\0" // ba + "bustwana\0" // bw + "butaan\0" // bt + "butaani\0" // bt + "butan\0" // bt + "butanas\0" // bt + "butani\0" // bt + "butano\0" // bt + "butaŋ\0" // bt + "buta̱n\0" // bt + "butswana\0" // bw + "buttaan\0" // bt + "buturuki /take\0" // tr + "butàn\0" // bt + "butáani\0" // bt + "bután\0" // bt + "butáni\0" // bt + "butáŋ\0" // bt + "butão\0" // bt + "butãu\0" // bt + "butäan\0" // bt + "butāna\0" // bt + "buutaŋ\0" // bt + "buve adası\0" // bv + "buve oroli\0" // bv + "buvē sala\0" // bv + "buvė sala\0" // bv + "buwe adasy\0" // bv + "buyindi\0" // in + "buyonaani\0" // gr + "buyuk britaniya\0" // gb + "bułgaria\0" // bg + "buṭan\0" // bt + "bwlgaria\0" // bg + "byelorisi\0" // by + "była jugosłowiańska republika macedonii\0" // mk + "bàbadòs\0" // bb + "bàhamàs\0" // bs + "bàlaen\0" // bh + "bàraìn\0" // bh + "bàrbadò\0" // bb + "bàŋglàdɛ̂s\0" // bd + "bämuɔth\0" // bs + "bäraadhiil\0" // br + "bärbadoth\0" // bb + "bèlarùs\0" // by + "bèlgica\0" // be + "bèlîs\0" // bz + "bènɛ̂ŋ\0" // bj + "bélarus\0" // by + "bélgica\0" // be + "béljika\0" // be + "bélxica\0" // be + "bénin\0" // bj + "bêleze, belezîki\0" // be + "bìtèk bi ŋgisì i tūyɛ īndìà\0" // io + "bìòn bi falkland\0" // fk + "bìòn bi kaymàn\0" // ky + "bìòn bi kook\0" // ck + "bìòn bi kɔnji bi u.s.\0" // vi + "bìòn bi kɔnji bi ŋgisì\0" // vg + "bìòn bi marcàl\0" // mh + "bìòn bi marìanà ŋ̀ɔmbɔk\0" // mp + "bìòn bi salōmò\0" // sb + "bìòn bi tûrks nì kalkòs\0" // tc + "bòdsùanà\0" // bw + "bòhnià ɛrzègòvinà\0" // ba + "bòlevà\0" // bo + "bòlivìà\0" // bo + "bòsnia i hercegovina\0" // ba + "bòtɨ̀swǎnà\0" // bw + "bólivía\0" // bo + "bósinia\0" // ba + "bósnia e herzegovina\0" // ba + "bósnia i erzegovina\0" // ba + "bósnia-herzegovina\0" // ba + "bùkinà fasò\0" // bf + "bùlgarìà\0" // bg + "bùlundì\0" // bi + "bùrkìnà fasò\0" // bf + "bùrundì\0" // bi + "bùtân\0" // bt + "bùugɛlìa\0" // bg + "búlgaría\0" // bg + "búrkína fasó\0" // bf + "búrúndí\0" // bi + "bútan\0" // bt + "büter ozeanien\0" // qo + "bělorusko\0" // by + "běłoruska\0" // by + "bōliwija\0" // bo + "bōsnija be ercegōwina\0" // ba + "bǝlɔŋ bǝ kaksa bɛ táatáaŋzǝn\0" // ae + "bɔkina faso\0" // bf + "bɔlgeria\0" // bg + "bɔsnyɛ ri hɛrsǝgɔvín\0" // ba + "bɔtisiwana\0" // bw + "bɔtswana\0" // bw + "bɔɔlíví\0" // bo + "bəhreyn\0" // bh + "bəlarús\0" // by + "bəlazíl\0" // br + "bəlís\0" // bz + "bəníŋ\0" // bj + "bəsamóa yá amə́rəka\0" // as + "bɛlaris\0" // by + "bɛlarus\0" // by + "bɛlgik\0" // be + "bɛlgyium\0" // be + "bɛlgyùm\0" // be + "bɛliz\0" // bz + "bɛliziki\0" // be + "bɛljík\0" // be + "bɛlàlûs\0" // by + "bɛləhíg\0" // be + "bɛmuda\0" // bm + "bɛngiladɛsi\0" // bd + "bɛnin\0" // bj + "bɛnǝ́n\0" // bj + "bɛrmuda\0" // bm + "bɛrəmúd\0" // bm + "bɛŋgladɛsh\0" // bd + "bɛɛdzwùm\0" // be + "bɛɛmúdǝ\0" // bm + "bɛ̀lezɨ̀\0" // bz + "bɛ̀mudà\0" // bm + "bɛ̀nɨ̂ŋ\0" // bj + "bɛ̀rmudà\0" // bm + "bɨ̀lunè\0" // bn + "bɨ̀làzîi\0" // br + "bḥrayn\0" // bh + "bṛazil\0" // br + "bṛṭqiz\0" // pt + "bỉ\0" // be + "bồ đào nha\0" // pt + "bờ biển ngà\0" // ci + "ca-ri-bê hà lan\0" // bq + "caad\0" // td + "caadi\0" // td + "caadu\0" // td + "cabo verde\0" // cv + "cabu verde\0" // cv + "cad\0" // td + "cadi\0" // td + "cailleann nuadh\0" // nc + "caina\0" // cn + "caina, sin\0" // cn + "caipurasi\0" // cy + "caledonia newydd\0" // nc + "camarun\0" // cm + "camarões\0" // cm + "camarún\0" // cm + "cambodge\0" // kh + "cambodgia\0" // kh + "cambodia\0" // kh + "cambodiab\0" // kh + "cambodja\0" // kh + "cambodscha\0" // kh + "cambogia\0" // kh + "camboja\0" // kh + "camboya\0" // kh + "camboze\0" // kh + "cambudya\0" // kh + "cambuidea\0" // kh + "cameroon\0" // cm + "cameroonni\0" // cm + "cameroun\0" // cm + "camerun\0" // cm + "camerún\0" // cm + "camerŵn\0" // cm + "campuchia\0" // kh + "canada\0" // ca + "canada nutome\0" // ca + "canade\0" // ca + "canadà\0" // ca + "canadá\0" // ca + "canarias\0" // ic + "canarische eilanden\0" // ic + "canary islands\0" // ic + "cap verd\0" // cv + "cap verde\0" // cv + "cap-vert\0" // cv + "cape verde\0" // cv + "cape verde islands\0" // cv + "capivɛrdi\0" // cv + "capo verde\0" // cv + "capul verde\0" // cv + "caraibi olandesi\0" // bq + "carib neerlandès\0" // bq + "caribbean netherlands\0" // bq + "caribe neerlandés\0" // bq + "caribisch nederland\0" // bq + "carna góra\0" // me + "casachstàn\0" // kz + "casaquistán\0" // kz + "casaquistão\0" // kz + "catar\0" // qa + "cathair na bhatacain\0" // va + "cathair na vatacáine\0" // va + "cayile\0" // cl + "cayina\0" // cn + "cayman adaları\0" // ky + "cayman islands\0" // ky + "cayman qeqertaq\0" // ky + "cayman-sullot\0" // ky + "caymaneilannen\0" // ky + "caymaneyjar\0" // ky + "caymanoyggjar\0" // ky + "caymansaaret\0" // ky + "caymansuolluuh\0" // ky + "caymanöarna\0" // ky + "caymanøerne\0" // ky + "caymanøyane\0" // ky + "caymanøyene\0" // ky + "cayna\0" // cn + "cazaquistão\0" // kz + "caád\0" // td + "ca̱d\0" // td + "ccili\0" // cl + "ccinwa\0" // cn + "ceanada\0" // ca + "cebelitarık\0" // gi + "cechia\0" // cz + "cehia\0" // cz + "ceinia\0" // ke + "cek labo\0" // cz + "ceki republiki\0" // cz + "ceko\0" // cz + "centr-afrika respubliko\0" // cf + "centraafriki koyra\0" // cf + "centraal-afrikaanse republiek\0" // cf + "centrafrika\0" // cf + "central african republic\0" // cf + "central african republiki\0" // cf + "centralafrikanska republiken\0" // cf + "centralnoafriska republika\0" // cf + "centralnoafrička republika\0" // cf + "centralnoafriška republika\0" // cf + "centrinės afrikos respublika\0" // cf + "centrālāfrikas republika\0" // cf + "cersi\0" // je + "ceuta & melilla\0" // ea + "ceuta a melilla\0" // ea + "ceuta aamma melilla\0" // ea + "ceuta agus melilla\0" // ea + "ceuta dan melilla\0" // ea + "ceuta e melilha\0" // ea + "ceuta e melilla\0" // ea + "ceuta en melilla\0" // ea + "ceuta et melilla\0" // ea + "ceuta eta melilla\0" // ea + "ceuta ha melilla\0" // ea + "ceuta i melilla\0" // ea + "ceuta in melilla\0" // ea + "ceuta ja melilla\0" // ea + "ceuta já melilla\0" // ea + "ceuta na melilla\0" // ea + "ceuta och melilla\0" // ea + "ceuta og melilla\0" // ea + "ceuta u melilla\0" // ea + "ceuta und melilla\0" // ea + "ceuta và melilla\0" // ea + "ceuta y melilla\0" // ea + "ceuta és melilla\0" // ea + "ceuta și melilla\0" // ea + "cezayir\0" // dz + "chad\0" // td + "chade\0" // td + "chadi\0" // td + "chaenà\0" // cn + "chaina\0" // cn + "chechia\0" // cz + "chequia\0" // cz + "chernogoriya\0" // me + "chexiya\0" // cz + "chexiya respublikasi\0" // cz + "chiina\0" // cn + "chile\0" // cl + "chili\0" // cl + "chilib\0" // cl + "chilska\0" // cl + "chilè\0" // cl + "china\0" // cn + "chinab\0" // cn + "chine\0" // cn + "chiny\0" // cn + "chipre\0" // cy + "chisiwa cha cook\0" // ck + "chisiwa cha falkland\0" // fk + "chisiwa cha kemen\0" // ky + "chisiwa cha malushal\0" // mh + "chisiwa cha marian cha kasikazini\0" // mp + "chisiwa cha nolufok\0" // nf + "chisiwa cha solomon\0" // sb + "chisiwa cha tuluchi na kaiko\0" // tc + "chisiwa chivihi cha malekani\0" // vi + "chisiwa chivihi cha wingalesa\0" // vg + "chitsuwa chenorfolk\0" // nf + "chorvatsko\0" // hr + "chorvátsko\0" // hr + "chorwacja\0" // hr + "chorwatska\0" // hr + "christmas adası\0" // cx + "christmas island\0" // cx + "christmas uhartea\0" // cx + "christmaseiland\0" // cx + "christmasøya\0" // cx + "chrëschtdagsinsel\0" // cx + "chuia mar falkland\0" // fk + "chuia mar marshall\0" // mh + "chuia mar norfolk\0" // nf + "chwɨla n tɨtê à kaekùs\0" // tc + "chwɨla ŋ̀ kûʔ\0" // ck + "chwɨla ŋ̀ kɛ̀b vɛ̂ɛ\0" // cv + "chwɨlà fɨ fakɨlàn\0" // fk + "chwɨlà fɨ mashà\0" // mh + "chwɨlà fɨ nufòʔ\0" // nf + "chwɨlà fɨ solomwɨ̀n\0" // sb + "chwɨlà m̀ màlǐanà mɨ̀ ekùw mò\0" // mp + "chwɨlà m̀ vidzinyìa m̀ bɨ̀letì mò\0" // vg + "chwɨlà ŋ̀ kaemàn\0" // ky + "chypre\0" // cy + "cháadi\0" // td + "chádi\0" // td + "cháína\0" // cn + "châ\0" // td + "chéli\0" // cl + "chéquia\0" // cz + "chíile\0" // cl + "chíina\0" // cn + "chɛki boloe\0" // cz + "chɛ̂ lèkpubèlè\0" // cz + "ci\0" // ci + "ciad\0" // td + "cibuti\0" // dj + "cidade do vaticano\0" // va + "cile\0" // cl + "cili\0" // cl + "cilii\0" // cl + "cili̱\0" // cl + "cina\0" // cn + "cine\0" // cn + "cingapura\0" // sg + "cipar\0" // cy + "ciper\0" // cy + "cipr\0" // cy + "cipra\0" // cy + "cipri\0" // cy + "cipro\0" // cy + "cipru\0" // cy + "ciprus\0" // cy + "ciraaq\0" // iq + "cireabaití\0" // ki + "ciribeas\0" // ki + "citad dal vatican\0" // va + "città del vaticano\0" // va + "cité du vatican\0" // va + "ciudad del vaticano\0" // va + "ciudá del vaticanu\0" // va + "ciutat del vaticà\0" // va + "ciwba\0" // cu + "cjâf vert\0" // cv + "clipperton\0" // cp + "clipperton adası\0" // cp + "clipperton insla\0" // cp + "clipperton island\0" // cp + "clipperton qeqertaq\0" // cp + "clipperton uhartea\0" // cp + "clipperton-eyja\0" // cp + "clipperton-insel\0" // cp + "clipperton-sullot\0" // cp + "clipperton-sziget\0" // cp + "clippertoneiland\0" // cp + "clippertoni saar\0" // cp + "clippertoninsaari\0" // cp + "clippertonowa kupa\0" // cp + "clippertonsuálui\0" // cp + "clippertonön\0" // cp + "clippertonøen\0" // cp + "clippertonøya\0" // cp + "clippertonův ostrov\0" // cp + "cn\0" // cn + "coasta de fildeș\0" // ci + "cocos (keeling) adaları\0" // cc + "cocos (keeling) islands\0" // cc + "cocos qeqertaq\0" // cc + "cocos uharteak\0" // cc + "cocos-sullot\0" // cc + "cocoseilanden\0" // cc + "cocosøerne\0" // cc + "coirèa\0" // kr + "coirèa a tuath\0" // kp + "coloimbia\0" // co + "colombia\0" // co + "colombiab\0" // co + "colombie\0" // co + "colombië\0" // co + "columbia\0" // co + "colòmbia\0" // co + "colômbia\0" // co + "comoras\0" // km + "comore\0" // km + "comore-szigetek\0" // km + "comoren\0" // km + "comorerne\0" // km + "comores\0" // km + "comoris\0" // km + "comoros\0" // km + "comorosu\0" // km + "congo\0" // cg + "congo (drc)\0" // cd + "congo (rc)\0" // cg + "congo (rdc)\0" // cd + "congo (repubblica)\0" // cg + "congo (republic)\0" // cg + "congo (republica democrată congo)\0" // cd + "congo (republica)\0" // cg + "congo (republiche)\0" // cg + "congo (republiek)\0" // cg + "congo (republik)\0" // cg + "congo (republika)\0" // cg + "congo (republyk)\0" // cg + "congo (república del congo)\0" // cg + "congo (república democràtica del congo)\0" // cd + "congo (república democrática del congo)\0" // cd + "congo (república)\0" // cg + "congo - brazzaville\0" // cg + "congo - kinshasa\0" // cd + "congo-brazzaville\0" // cg + "congo-kinshasa\0" // cd + "congob\0" // cg + "congu (rdc)\0" // cd + "congu (república del)\0" // cg + "congu - brazzaville\0" // cg + "congu - kinxasa\0" // cd + "cook adaları\0" // ck + "cook islands\0" // ck + "cook qeqertaq\0" // ck + "cook uharteak\0" // ck + "cook-eilannen\0" // ck + "cook-insle\0" // ck + "cook-sullot\0" // ck + "cook-szigetek\0" // ck + "cookeilande\0" // ck + "cookeilanden\0" // ck + "cookeilannen\0" // ck + "cooki saared\0" // ck + "cookinsaaret\0" // ck + "cookinselen\0" // ck + "cookinseln\0" // ck + "cookinslä\0" // ck + "cookove ostrovy\0" // ck + "cookovi otoci\0" // ck + "cookovi otoki\0" // ck + "cookovy ostrovy\0" // ck + "cookowe kupy\0" // ck + "cooks-eyjar\0" // ck + "cooksoyggjar\0" // ck + "cooksuolluuh\0" // ck + "cooköarna\0" // ck + "cookøerne\0" // ck + "cookøyane\0" // ck + "cookøyene\0" // ck + "corea dal nord\0" // kp + "corea dal sid\0" // kr + "corea del nord\0" // kp + "corea del norte\0" // kp + "corea del sud\0" // kr + "corea del sur\0" // kr + "corea do norte\0" // kp + "corea do sur\0" // kr + "coree dal nord\0" // kp + "coree dal sud\0" // kr + "coreea de nord\0" // kp + "coreea de sud\0" // kr + "coreia do norte\0" // kp + "coreia do sul\0" // kr + "corée du nord\0" // kp + "corée du sud\0" // kr + "coréia do norte\0" // kp + "coréia do sul\0" // kr + "coschta rica\0" // cr + "costa de marfil\0" // ci + "costa del marfil\0" // ci + "costa do marfil\0" // ci + "costa do marfim\0" // ci + "costa d’avorio\0" // ci + "costa d’ivori\0" // ci + "costa d’ivur\0" // ci + "costa rica\0" // cr + "costa rìcea\0" // cr + "cote d’ivoire\0" // ci + "cravuazie\0" // hr + "crna gora\0" // me + "croacia\0" // hr + "croatia\0" // hr + "croatiab\0" // hr + "croatie\0" // hr + "croazia\0" // hr + "croația\0" // hr + "croàcia\0" // hr + "croácia\0" // hr + "críoch aigéan indiach na breataine\0" // io + "críocha francacha dheisceart an domhain\0" // tf + "cseh köztársaság\0" // cz + "csehország\0" // cz + "csád\0" // td + "cuba\0" // cu + "cubab\0" // cu + "cueste di avoli\0" // ci + "cuibhèit\0" // kw + "culumbya\0" // co + "cumaan\0" // om + "cumur\0" // km + "curacao\0" // cw + "curazao\0" // cw + "curaçao\0" // cw + "curaçau\0" // cw + "cuáit\0" // kw + "cypern\0" // cy + "cypr\0" // cy + "cypriska\0" // cy + "cyprus\0" // cy + "cz\0" // cz + "czad\0" // td + "czarnogóra\0" // me + "czech republic\0" // cz + "czech republiki\0" // cz + "czechia\0" // cz + "czechy\0" // cz + "càdd\0" // td + "các tiểu vương quốc ả rập thống nhất\0" // ae + "các tiểu đảo xa của hoa kỳ\0" // um + "câd\0" // td + "cât\0" // td + "cìopras\0" // cy + "cìorgastan\0" // kg + "cíli\0" // cl + "cíllɛ\0" // cl + "cín\0" // cn + "cíprɛ\0" // cy + "cósta ríce\0" // cr + "côte d\0" // ci + "côte d’ivoire\0" // ci + "côte d’ivoire (costa do marfim)\0" // ci + "cùba\0" // cu + "cúba\0" // cu + "cəbəllütariq\0" // gi + "cənub afrika\0" // za + "cənubi corciya və cənubi sendviç adaları\0" // gs + "cənubi koreya\0" // kr + "cənubi sudan\0" // ss + "cɛntrɔl aprika repuɔblic\0" // cf + "cɛ́k\0" // cz + "cộng hòa congo\0" // cg + "cộng hòa dominica\0" // do + "cộng hòa dân chủ congo\0" // cd + "cộng hòa séc\0" // cz + "cộng hòa trung phi\0" // cf + "dalekie wyspy mniejsze stanów zjednoczonych\0" // um + "danemalaku\0" // dk + "danemarc\0" // dk + "danemarca\0" // dk + "danemark\0" // dk + "danemarki\0" // dk + "danemêrke\0" // dk + "dangun žengimo sala\0" // ac + "dania\0" // dk + "danija\0" // dk + "danimaha\0" // dk + "danimarca\0" // dk + "danimarcje\0" // dk + "danimariki\0" // dk + "danimarka\0" // dk + "danimarkë\0" // dk + "daniya\0" // dk + "daniýa\0" // dk + "danmak\0" // dk + "danmark\0" // dk + "danmarka\0" // dk + "danmarki\0" // dk + "danmàrk\0" // dk + "danmörk\0" // dk + "dannmark\0" // dk + "danska\0" // dk + "danujo\0" // dk + "danəmárəg\0" // dk + "danɛmarike\0" // dk + "davvi-korea\0" // kp + "davvi-mariánat\0" // mp + "davvisudan\0" // sd + "dańska\0" // dk + "daŋmark\0" // dk + "daşky okeaniýa\0" // qo + "db\0" // gb + "de affrica\0" // za + "de amerikanske jomfruøer\0" // vi + "de amerikanske jomfruøyene\0" // vi + "de ammärrikahnesche juffer-enselle\0" // vi + "de bahamas\0" // bs + "de bermudas\0" // bm + "de brettesche juffer-enselle\0" // vg + "de britiske jomfruøer\0" // vg + "de britiske jomfruøyene\0" // vg + "de buvee-ensel\0" // bv + "de demmokraatesche republik konggo\0" // cd + "de diego-garcia-ensel\0" // dg + "de dommenekaanesche reppublik\0" // do + "de ensel barbados\0" // bb + "de ensel män\0" // im + "de ensel zint hellena\0" // sh + "de ensel zint-lutscha\0" // lc + "de enselle svalbard un jan mayen\0" // sj + "de enselle turks un kaikos\0" // tc + "de falkland-enselle\0" // fk + "de fidschi-endelle\0" // fj + "de forenede arabiske emirater\0" // ae + "de forente arabiske emirater\0" // ae + "de franske besiddelser i det sydlige indiske ocean\0" // tf + "de franske sørterritorier\0" // tf + "de färrör-enselle\0" // fo + "de georgia ac ynysoedd sandwich y de\0" // gs + "de heart ensel un de mcdonald-enselle\0" // hm + "de kaiman-enselle\0" // ky + "de kannaresche enselle\0" // ic + "de kapvärdesche enselle\0" // cv + "de karribbesche nederläng\0" // bq + "de klipperton-ensel\0" // cp + "de kokkos-enselle\0" // cc + "de kommoore\0" // km + "de korea\0" // kr + "de kuuk-enselle\0" // ck + "de machschall-enselle\0" // mh + "de malleviinesche enselle\0" // fk + "de nederläng\0" // nl + "de noofok-ensel\0" // nf + "de nöödlijje marijanne-enselle\0" // mp + "de ohland-enselle\0" // ax + "de palæstinensiske områder\0" // ps + "de pitkärn-ensel\0" // pn + "de republik konggo\0" // cg + "de republik södaffrika\0" // za + "de schweiz\0" // ch + "de seischälle\0" // sc + "de solomone-enselle\0" // sb + "de swdan\0" // ss + "de tidligere nederlandske antiller\0" // bq + "de tschäschei\0" // cz + "de törkei\0" // tr + "de ukra’iine\0" // ua + "de vereineschte schtaate vun ammärrika\0" // us + "de vereineschte schtaate vun amärrika ier ußerhallef jelääje enselsche\0" // um + "de vörmaals ens jugoßlaawesch jewääse republik mazedoonije\0" // mk + "de weihnaachs-ensel\0" // cx + "de zint battälmi-enselle\0" // bl + "de zint-määtes-ensel\0" // mf + "de zäntraalaffrikaanesche republik\0" // cf + "de älfebeijnköß\0" // ci + "debabritānija\0" // gb + "debesbraukšanas sala\0" // ac + "deenimaaka\0" // dk + "dei amerikanske jomfruøyane\0" // vi + "dei britiske jomfruøyane\0" // vg + "dei franske sørterritoria\0" // tf + "dei sameinte arabiske emirata\0" // ae + "demirgazyk koreýa\0" // kp + "demirgazyk mariana adalary\0" // mp + "democratic republic of the congo\0" // cd + "democratische republiek oost-timor\0" // tl + "demokoratika ripaaburika ya kongo\0" // cd + "demokraatischi volksrepublik koreea\0" // kp + "demokraatsche republik kongo\0" // cd + "demokratiese republiek van die kongo\0" // cd + "demokratiska republiken kongo\0" // cd + "demokratična republika kongo\0" // cd + "demokratska republika kongo\0" // cd + "demokratyczna republika konga\0" // cd + "den centralafrikanske republik\0" // cf + "den demokratiske republik congo (drc)\0" // cd + "den demokratiske republikken kongo\0" // cd + "den dominikanske republik\0" // do + "den dominikanske republikk\0" // do + "den dominikanske republikken\0" // do + "den sentralafrikanske republikk\0" // cf + "den sentralafrikanske republikken\0" // cf + "den tidlegare jugoslaviske republikken makedonia\0" // mk + "den tidligere jugoslaviske republik makedonien\0" // mk + "den tidligere jugoslaviske republikk makedonia\0" // mk + "den tjekkiske republik\0" // cz + "denemarke\0" // dk + "denemarken\0" // dk + "denimaaka\0" // dk + "denimaki\0" // dk + "denmakhi\0" // dk + "denmaki\0" // dk + "denmarc\0" // dk + "denmark\0" // dk + "denmark nutome\0" // dk + "denmarki\0" // dk + "der sennejall\0" // sn + "der södpol\0" // aq + "der tschadd\0" // td + "der vattikahn\0" // va + "det britiske territoriet i indiahavet\0" // io + "det britiske territorium i det indiske ocean\0" // io + "det palestinske området\0" // ps + "deutschland\0" // de + "deutän\0" // de + "deàrsaidh\0" // je + "dhambia\0" // zm + "dhimbabwe\0" // zw + "diameuga\0" // jm + "diblalta\0" // gi + "dibutùii\0" // dj + "didžiosios britanijos mergelių salos\0" // vg + "diego garcia\0" // dg + "diego garcía\0" // dg + "diego garsia nutome\0" // dg + "diego garsija\0" // dg + "diego-garsia\0" // dg + "diegu garsia\0" // dg + "dienviddžordžija un dienvidsendviču salas\0" // gs + "dienvidkoreja\0" // kr + "dienvidsudāna\0" // ss + "dienvidāfrikas republika\0" // za + "dieqo qarsiya\0" // dg + "digu gaṛsya\0" // dg + "dijego garsija\0" // dg + "dimiliki dya vakulungwa va chalabu\0" // ae + "dinamarca\0" // dk + "dinamarka\0" // dk + "diobraltar\0" // gi + "diobùtaidh\0" // dj + "ditunga dya afrika wa munkatshi\0" // cf + "ditunga dya tsheka\0" // cz + "ditunga wa duminiku\0" // do + "ditunga wa kongu\0" // cd + "diyego-garsiya\0" // dg + "diýego-garsiýa\0" // dg + "djego garsijas atols\0" // dg + "djiboeti\0" // dj + "djiboti\0" // dj + "djibouti\0" // dj + "djibuti\0" // dj + "djíbútí\0" // dj + "djɛrman\0" // de + "doiminice\0" // dm + "doiminicea\0" // dm + "domeenika\0" // dm + "domingo\0" // do + "dominica\0" // dm + "dominicaanse republiek\0" // do + "dominicab\0" // dm + "dominican republic\0" // do + "dominiche\0" // dm + "dominik\0" // dm + "dominik cumhuriyeti\0" // do + "dominika\0" // dm + "dominika nutome\0" // dm + "dominika repɔblik nutome\0" // do + "dominikaani vabariik\0" // do + "dominikaaninen tasavalta\0" // do + "dominikaanisâš täsiväldi\0" // do + "dominikaansche republik\0" // do + "dominikaanse republiek\0" // do + "dominikaanske republyk\0" // do + "dominikai köztársaság\0" // do + "dominikalýðveldið\0" // do + "dominikan respublikasi\0" // do + "dominikan respublikasy\0" // do + "dominikan respublikası\0" // do + "dominikana\0" // do + "dominikanesch republik\0" // do + "dominikanische republik\0" // do + "dominikaniši rebublik\0" // do + "dominikanska republika\0" // do + "dominikanska republiken\0" // do + "dominikar errepublika\0" // do + "dominikańska republika\0" // do + "dominikha\0" // dm + "dominiko\0" // dm + "dominikos respublika\0" // do + "dominikána dásseváldi\0" // do + "dominikánska republika\0" // do + "dominikánská republika\0" // do + "dominikë\0" // dm + "dominikāna\0" // do + "dominique\0" // dm + "dominnika\0" // dm + "dominíka\0" // dm + "domíiníka\0" // dm + "domíiníka ɓoloe\0" // do + "domínica\0" // dm + "domínike\0" // dm + "domínɨka\0" // dm + "doninica\0" // dm + "doominiki\0" // dm + "doominiki laboo\0" // do + "douaroù aostral frañs\0" // tf + "dowla waticaan\0" // va + "dowlaaji dentuɗi amerik\0" // us + "doütschland\0" // de + "doğu timor\0" // tl + "dr kongo\0" // cd + "dramblio kaulo krantas\0" // ci + "dramblio kaulo kranto respublika\0" // ci + "dschamäika\0" // jm + "dschibuti\0" // dj + "dschibutti\0" // dj + "dschörsi\0" // je + "du\0" // gb + "duiska\0" // de + "duitsland\0" // de + "duitslandi\0" // de + "duminik\0" // dm + "duminiku\0" // dm + "duni aalànd\0" // ax + "duni amerig utar meer\0" // um + "duni falkland\0" // fk + "duni faro\0" // fo + "duni hërd ak duni makdonald\0" // hm + "duni kaymaŋ\0" // ky + "duni koko (kilin)\0" // cc + "duni kuuk\0" // ck + "duni mariyaan noor\0" // mp + "duni marsaal\0" // mh + "duni pitkayirn\0" // pn + "duni salmoon\0" // sb + "duni tirk ak kaykos\0" // tc + "duni wirsin yu brëtaañ\0" // vg + "duni wirsin yu etaa-sini\0" // vi + "dunu buwet\0" // bv + "dunu kirismas\0" // cx + "dunu maan\0" // im + "dunu norfolk\0" // nf + "durka\0" // tr + "duuɗe falkland\0" // fk + "duuɗe kap weer\0" // cv + "duuɗe kaymaa\0" // ky + "duuɗe kecce amerik\0" // vi + "duuɗe kecce britanii\0" // vg + "duuɗe kuuk\0" // ck + "duuɗe mariyaana rewo\0" // mp + "duuɗe marsaal\0" // mh + "duuɗe norfolk\0" // nf + "duuɗe solomon\0" // sb + "duuɗe turke e keikoos\0" // tc + "dwyrain timor\0" // tl + "dyamaika\0" // jm + "dyapani\0" // jp + "dyibuti\0" // dj + "dyibutí\0" // dj + "dyodya\0" // ge + "dzamaika nutome\0" // jm + "dzamanè\0" // de + "dzapan nutome\0" // jp + "dzayer\0" // dz + "dzayr\0" // dz + "dzibuti\0" // dj + "dzibuti nutome\0" // dj + "dzibutí\0" // dj + "dzibɨ̀latà\0" // gi + "dziehe korea nutome\0" // kp + "dziehe marina ƒudomekpowo nutome\0" // mp + "dzodàn\0" // jo + "dzsibuti\0" // dj + "dzàkpân\0" // jp + "dzàmɛkà\0" // jm + "dzìbuwtì\0" // dj + "dzɔɔdzìa\0" // ge + "dzɛse nutome\0" // je + "dànmârk\0" // dk + "dánia\0" // dk + "dánmárku\0" // dk + "dánsko\0" // dk + "dä benin\0" // bj + "dä konggo (brassavill)\0" // cg + "dä konggo (kinschasa)\0" // cd + "däitschland\0" // de + "dänemark\0" // dk + "däänmark\0" // dk + "dél-afrikai köztársaság\0" // za + "dél-korea\0" // kr + "dél-szudán\0" // ss + "déli-georgia és déli-sandwich-szigetek\0" // gs + "dòmenekà\0" // dm + "dòmenekà lèkpubèlè\0" // do + "dòmnikà\0" // do + "dòmnîk\0" // dm + "dóminíka\0" // dm + "dóminíska lýðveldið\0" // do + "dómənika\0" // dm + "dömïnîka\0" // dm + "dùthaich nam mongol\0" // mn + "dùthaich nan suasaidh\0" // sz + "dùthaich nan tàidh\0" // th + "dútslân\0" // de + "dúúnyá tɛ giini\0" // gq + "düütschland\0" // de + "dānanmarki\0" // dk + "dānija\0" // dk + "dōminika\0" // dm + "dōminikas republīki\0" // do + "dšibuti\0" // dj + "dźibuti\0" // dj + "dżibuti\0" // dj + "džersis\0" // je + "džerzi\0" // je + "džibuti\0" // dj + "džibutija\0" // dj + "džibutis\0" // dj + "džibutsko\0" // dj + "džērsija\0" // je + "dɔmeneka\0" // dm + "dɔmeneka kurokɛse\0" // do + "dɔmimiki republiki\0" // do + "dɔminik\0" // dm + "dɔminik rɛpublík\0" // do + "dɔminiki\0" // dm + "dɛnmak\0" // dk + "dɛnɨmà\0" // dk + "dɛ̀mùkàlatì lèkpubèlè è kuŋgù\0" // cd + "dɨŋò kɨ dzughùnstòʔ kɨ endìa kɨ bɨ̀letì kò\0" // io + "eacuador\0" // ec + "eacuadór\0" // ec + "eartra\0" // er + "east timor\0" // tl + "east-timor\0" // tl + "eastenryk\0" // at + "eb\0" // gb + "ebiizinga bya falikalandi\0" // fk + "ebizanga bya solomooni\0" // sb + "ebizinga bya buturuki na kaiko\0" // tc + "ebizinga bya cago\0" // io + "ebizinga bya faakilanda\0" // fk + "ebizinga bya firipino\0" // ph + "ebizinga bya indian ebya bungyereza\0" // io + "ebizinga bya kayimaani\0" // ky + "ebizinga bya kayimani\0" // ky + "ebizinga bya kepu veredi\0" // cv + "ebizinga bya kepuvade\0" // cv + "ebizinga bya kkuki\0" // ck + "ebizinga bya komoro\0" // km + "ebizinga bya kuuku\0" // ck + "ebizinga bya malidive\0" // mv + "ebizinga bya marshaa\0" // mh + "ebizinga bya surimaani\0" // sb + "ebizinga bya taaka ni kayikosi\0" // tc + "ebizinga bya virigini ebitwalibwa bungereza\0" // vg + "ebizinga bya virigini ebya amerika\0" // vi + "ebizinga bya virigini ebya bungyereza\0" // vg + "ebizinga bya virigini eby’amerika\0" // vi + "ebizinga by’amatemba ga mariana\0" // mp + "ebur-bordo\0" // ci + "ecinkey yati noorfok\0" // nf + "ecioopi\0" // et + "ecoopi\0" // et + "ecopi\0" // et + "ecoppi\0" // et + "ecuador\0" // ec + "ecuadori\0" // ec + "edzì\0" // eg + "ee. uu.\0" // us + "ee.uu. islas vírgenes\0" // vi + "ee.xx.\0" // us + "eesti\0" // ee + "eestieennâm\0" // ee + "eestland\0" // ee + "efiopiya\0" // et + "efiopiýa\0" // et + "egipat\0" // eg + "egipt\0" // eg + "egipta\0" // eg + "egiptas\0" // eg + "egipte\0" // eg + "egipteb\0" // eg + "egipto\0" // eg + "egiptus\0" // eg + "egito\0" // eg + "egitto\0" // eg + "egjipt\0" // eg + "egjit\0" // eg + "egyenlítői-guinea\0" // gq + "egyesült arab emírségek\0" // ae + "egyesült királyság\0" // gb + "egyesült államok\0" // us + "egyiptom\0" // eg + "egypt\0" // eg + "egypta\0" // eg + "egyptaland\0" // eg + "egypte\0" // eg + "egypte nutome\0" // eg + "egypten\0" // eg + "egypti\0" // eg + "egyptojska\0" // eg + "egyptowska\0" // eg + "ehíbətɛn\0" // eg + "eihanga rya rwagati ya afirika\0" // cf + "eiland man\0" // im + "eilean bouvet\0" // bv + "eilean clipperton\0" // cp + "eilean heard is mhicdhòmhnaill\0" // hm + "eilean mhanainn\0" // im + "eilean na deasgabhalach\0" // ac + "eilean na nollaig\0" // cx + "eilean naomh eilidh\0" // sh + "eilean norfolk\0" // nf + "eileanan breatannach na maighdinn\0" // vg + "eileanan cook\0" // ck + "eileanan mharshall\0" // mh + "eileanan na maighdinn aig na sa\0" // vi + "eileanan pheit a’ chàirn\0" // pn + "eileanan sholaimh\0" // sb + "eirozona\0" // ez + "eistland\0" // ee + "ejipt\0" // eg + "ejitu\0" // eg + "ejt makedonia\0" // mk + "ejypta\0" // eg + "ekialdeko timor\0" // tl + "ekizinga norifoko\0" // nf + "ekoatera\0" // ec + "ekuador\0" // ec + "ekuadɔ nutome\0" // ec + "ekuateur\0" // ec + "ekuatore ginea\0" // gq + "ekuatorial guini nutome\0" // gq + "ekuatëre\0" // ec + "ekuatɛ́l\0" // ec + "ekuwatoor\0" // ec + "ekvador\0" // ec + "ekvadora\0" // ec + "ekvadoras\0" // ec + "ekvadoro\0" // ec + "ekvator ginesi\0" // gq + "ekvatora gvineo\0" // gq + "ekvatorguinea\0" // gq + "ekvatoriaal-guinea\0" // gq + "ekvatorial gvineya\0" // gq + "ekvatorial qvineya\0" // gq + "ekvatorial-guinea\0" // gq + "ekvatorialguinea\0" // gq + "ekvatorialna gvineja\0" // gq + "ekvatorijalna gvineja\0" // gq + "ekvatoriála guinea\0" // gq + "ekvatoriālā gvineja\0" // gq + "ekvatorska gvineja\0" // gq + "ekvádor\0" // ec + "ekwaatër\0" // ec + "ekwado\0" // ec + "ekwador\0" // ec + "ekwadò\0" // ec + "ekwadōrs\0" // ec + "ekwateer\0" // ec + "ekwatele\0" // ec + "ekwater\0" // ec + "ekwateri\0" // ec + "ekwatoriaal-guinee\0" // gq + "ekwatorial gwineýa\0" // gq + "ekwatorialna gineja\0" // gq + "ekwatór\0" // ec + "ekwatǝr\0" // ec + "ekwatɔr\0" // ec + "ekwatɛ́lɛ\0" // ec + "el níxer\0" // ne + "el salbador\0" // sv + "el salivado\0" // sv + "el salvador\0" // sv + "el salvadori\0" // sv + "el salvadōrs\0" // sv + "el salvadɔ nutome\0" // sv + "el salwadoor\0" // sv + "el salwador\0" // sv + "elefántcsontpart\0" // ci + "elevandiluurannik\0" // ci + "elewuniɔ́ŋ\0" // re + "elfebeeküst\0" // ci + "elfebeiküšta\0" // ci + "elfebäiküschte\0" // ci + "elfenbeenküst\0" // ci + "elfenbeinküste\0" // ci + "elfenbeinskysten\0" // ci + "elfenbenariddu\0" // ci + "elfenbenskusten\0" // ci + "elfenbenskysten\0" // ci + "eli saluvatori\0" // sv + "elisalivado\0" // sv + "elisavado\0" // sv + "elitele\0" // er + "elitelɛ\0" // er + "elitereya\0" // er + "elitilea\0" // er + "elitileya\0" // er + "elitlea\0" // er + "elitée\0" // er + "elitəlé\0" // er + "ellan vannin\0" // im + "elsavado\0" // sv + "elveția\0" // ch + "emetab afghanistan\0" // af + "emetab afrika nebo kwen\0" // cf + "emetab afrika nebo murot tai\0" // za + "emetab albania\0" // al + "emetab algeria\0" // dz + "emetab american samoa\0" // as + "emetab amerika\0" // us + "emetab andorra\0" // ad + "emetab angola\0" // ao + "emetab anguilla\0" // ai + "emetab antigua ak barbuda\0" // ag + "emetab argentina\0" // ar + "emetab armenia\0" // am + "emetab aruba\0" // aw + "emetab australia\0" // au + "emetab austria\0" // at + "emetab azerbaijan\0" // az + "emetab bahamas\0" // bs + "emetab bahrain\0" // bh + "emetab bangladesh\0" // bd + "emetab barbados\0" // bb + "emetab belarus\0" // by + "emetab belgium\0" // be + "emetab belize\0" // bz + "emetab benin\0" // bj + "emetab bermuda\0" // bm + "emetab bhutan\0" // bt + "emetab bolivia\0" // bo + "emetab bosnia ak herzegovina\0" // ba + "emetab botswana\0" // bw + "emetab brazil\0" // br + "emetab brunei\0" // bn + "emetab bulgaria\0" // bg + "emetab burkina faso\0" // bf + "emetab burundi\0" // bi + "emetab cambodia\0" // kh + "emetab cameroon\0" // cm + "emetab canada\0" // ca + "emetab chad\0" // td + "emetab chile\0" // cl + "emetab china\0" // cn + "emetab colombia\0" // co + "emetab comoros\0" // km + "emetab congo - brazzaville\0" // cg + "emetab congo - kinshasa\0" // cd + "emetab costa rica\0" // cr + "emetab croatia\0" // hr + "emetab cuba\0" // cu + "emetab cyprus\0" // cy + "emetab czech republic\0" // cz + "emetab côte d’ivoire\0" // ci + "emetab denmark\0" // dk + "emetab djibouti\0" // dj + "emetab dominica\0" // dm + "emetab dominican republic\0" // do + "emetab ecuador\0" // ec + "emetab el salvador\0" // sv + "emetab equatorial guinea\0" // gq + "emetab eritrea\0" // er + "emetab estonia\0" // ee + "emetab ethiopia\0" // et + "emetab fiji\0" // fj + "emetab finland\0" // fi + "emetab france\0" // fr + "emetab gabon\0" // ga + "emetab gambia\0" // gm + "emetab georgia\0" // ge + "emetab geruman\0" // de + "emetab ghana\0" // gh + "emetab gibraltar\0" // gi + "emetab greece\0" // gr + "emetab greenland\0" // gl + "emetab grenada\0" // gd + "emetab guadeloupe\0" // gp + "emetab guam\0" // gu + "emetab guatemala\0" // gt + "emetab guiana nebo ufaransa\0" // gf + "emetab guinea\0" // gn + "emetab guinea-bissau\0" // gw + "emetab guyana\0" // gy + "emetab haiti\0" // ht + "emetab helena ne tilil\0" // sh + "emetab holand\0" // nl + "emetab honduras\0" // hn + "emetab hungary\0" // hu + "emetab iceland\0" // is + "emetab india\0" // in + "emetab indonesia\0" // id + "emetab iran\0" // ir + "emetab iraq\0" // iq + "emetab ireland\0" // ie + "emetab israel\0" // il + "emetab italy\0" // it + "emetab jamaica\0" // jm + "emetab japan\0" // jp + "emetab jordan\0" // jo + "emetab kazakhstan\0" // kz + "emetab kenya\0" // ke + "emetab kibagenge nebo arabuk\0" // ae + "emetab kibagenge nebo uingereza\0" // gb + "emetab kiribati\0" // ki + "emetab korea nebo murot katam\0" // kp + "emetab korea nebo murot tai\0" // kr + "emetab kuwait\0" // kw + "emetab kyrgyzstan\0" // kg + "emetab laos\0" // la + "emetab latvia\0" // lv + "emetab lebanon\0" // lb + "emetab lesotho\0" // ls + "emetab liberia\0" // lr + "emetab libya\0" // ly + "emetab liechtenstein\0" // li + "emetab lithuania\0" // lt + "emetab lucia ne\0" // lc + "emetab luxembourg\0" // lu + "emetab macedonia\0" // mk + "emetab madagascar\0" // mg + "emetab malawi\0" // mw + "emetab malaysia\0" // my + "emetab maldives\0" // mv + "emetab mali\0" // ml + "emetab malta\0" // mt + "emetab martinique\0" // mq + "emetab mauritania\0" // mr + "emetab mauritius\0" // mu + "emetab mayotte\0" // yt + "emetab mexico\0" // mx + "emetab micronesia\0" // fm + "emetab misiri\0" // eg + "emetab moldova\0" // md + "emetab monaco\0" // mc + "emetab mongolia\0" // mn + "emetab montserrat\0" // ms + "emetab morocco\0" // ma + "emetab mozambique\0" // mz + "emetab myanmar\0" // mm + "emetab namibia\0" // na + "emetab nauru\0" // nr + "emetab nepal\0" // np + "emetab new caledonia\0" // nc + "emetab new zealand\0" // nz + "emetab nicaragua\0" // ni + "emetab niger\0" // ne + "emetab nigeria\0" // ng + "emetab niue\0" // nu + "emetab norway\0" // no + "emetab oman\0" // om + "emetab pakistan\0" // pk + "emetab palau\0" // pw + "emetab palestine\0" // ps + "emetab panama\0" // pa + "emetab papua new guinea\0" // pg + "emetab paraguay\0" // py + "emetab peru\0" // pe + "emetab peter ne titil ak miquelon\0" // pm + "emetab philippines\0" // ph + "emetab pitcairn\0" // pn + "emetab poland\0" // pl + "emetab polynesia nebo ufaransa\0" // pf + "emetab portugal\0" // pt + "emetab puerto rico\0" // pr + "emetab qatar\0" // qa + "emetab romania\0" // ro + "emetab russia\0" // ru + "emetab rwanda\0" // rw + "emetab réunion\0" // re + "emetab saint kitts ak nevis\0" // kn + "emetab samoa\0" // ws + "emetab san marino\0" // sm + "emetab saudi arabia\0" // sa + "emetab senegal\0" // sn + "emetab seychelles\0" // sc + "emetab sierra leone\0" // sl + "emetab singapore\0" // sg + "emetab slovakia\0" // sk + "emetab slovenia\0" // si + "emetab somalia\0" // so + "emetab spain\0" // es + "emetab sri lanka\0" // lk + "emetab sudan\0" // sd + "emetab suriname\0" // sr + "emetab swaziland\0" // sz + "emetab sweden\0" // se + "emetab switzerland\0" // ch + "emetab syria\0" // sy + "emetab são tomé and príncipe\0" // st + "emetab taiwan\0" // tw + "emetab tajikistan\0" // tj + "emetab tanzania\0" // tz + "emetab thailand\0" // th + "emetab timor nebo murot tai\0" // tl + "emetab togo\0" // tg + "emetab tokelau\0" // tk + "emetab tonga\0" // to + "emetab trinidad ak tobago\0" // tt + "emetab tunisia\0" // tn + "emetab turkey\0" // tr + "emetab turkmenistan\0" // tm + "emetab tuvalu\0" // tv + "emetab uganda\0" // ug + "emetab ukrainie\0" // ua + "emetab uruguay\0" // uy + "emetab uzibekistani\0" // uz + "emetab vanuatu\0" // vu + "emetab vatican\0" // va + "emetab venezuela\0" // ve + "emetab vietnam\0" // vn + "emetab vincent netilil ak grenadines\0" // vc + "emetab walis ak futuna\0" // wf + "emetab yemen\0" // ye + "emetab zambia\0" // zm + "emetab zimbabwe\0" // zw + "emira arab ini\0" // ae + "emiraat araab denntuɗe\0" // ae + "emiradau arabaidd unedig\0" // ae + "emirados árabes unidos\0" // ae + "emiradus árabi unidu\0" // ae + "emiratele arabe unite\0" // ae + "emiratet e bashkuara arabe\0" // ae + "emirati arabi uniti\0" // ae + "emiratos árabes unidos\0" // ae + "emiratos árabes xuníos\0" // ae + "emirats arabs unids\0" // ae + "emirats àrabs units\0" // ae + "emireeti\0" // ae + "emirelezhioù arab unanet\0" // ae + "emiriah arab bersatu\0" // ae + "emirà arabo mitambatra\0" // ae + "emirâts araps unîts\0" // ae + "end\0" // in + "endonesi\0" // id + "endonezya\0" // id + "endìa\0" // in + "eneo ja uingeeza mwe bahali hindi\0" // io + "eneo la uingereza katika bahari hindi\0" // io + "enez ascension\0" // ac + "enez bouvet\0" // bv + "enez christmas\0" // cx + "enez clipperton\0" // cp + "enez norfolk\0" // nf + "enez pitcairn\0" // pn + "enez vanav\0" // im + "england\0" // gb + "enndo\0" // in + "enndonesii\0" // id + "equador\0" // ec + "equatoriaal-guinea\0" // gq + "equatorial guinea\0" // gq + "equatorial guineab\0" // gq + "equatorialginea\0" // gq + "equatorialguinea\0" // gq + "eretereeya\0" // er + "eri salivado\0" // sv + "eritere\0" // er + "eriterea\0" // er + "eriteree\0" // er + "eriteriya\0" // er + "eritireya\0" // er + "eritre\0" // er + "eritrea\0" // er + "eritrea nutome\0" // er + "eritreab\0" // er + "eritree\0" // er + "eritreea\0" // er + "eritreia\0" // er + "eritreja\0" // er + "eritreo\0" // er + "eritreya\0" // er + "eritreýa\0" // er + "eritréia\0" // er + "eritrëe\0" // er + "eritrėja\0" // er + "eritureya\0" // er + "ermenistan\0" // am + "ermənistan\0" // am + "eron\0" // ir + "erresuma batua\0" // gb + "errumania\0" // ro + "errusia\0" // ru + "ery macedonia\0" // mk + "erythre\0" // er + "erytrea\0" // er + "erítrea\0" // er + "esanga buvé\0" // bv + "esanga clipperton\0" // cp + "esanga norfokɛ\0" // nf + "esanga ya man\0" // im + "esanga ya mbuta o likoló\0" // ac + "esanga ya mbótama\0" // cx + "esetoni\0" // ee + "esetoní\0" // ee + "esipanye\0" // es + "esipaɲi\0" // es + "esipt\0" // eg + "esitoni\0" // ee + "esitoniya\0" // ee + "eslovakia\0" // sk + "eslovaquia\0" // sk + "eslovenia\0" // si + "eslovàquia\0" // sk + "eslováquia\0" // sk + "eslovènia\0" // si + "eslovénia\0" // si + "eslovênia\0" // si + "eslowaki\0" // sk + "esloweni\0" // si + "espaañ\0" // es + "espaaɲe\0" // es + "espagne\0" // es + "espaina\0" // es + "espainia\0" // es + "espanha\0" // es + "espanja\0" // es + "espanya\0" // es + "españ\0" // es + "españa\0" // es + "espaŋiya\0" // es + "espânye\0" // es + "estados unidos\0" // us + "estados unidos de américa\0" // us + "estantauta\0" // ee + "estaos xuníos\0" // us + "estats units\0" // us + "estija\0" // ee + "estiska\0" // ee + "estland\0" // ee + "estlandi\0" // ee + "estlánda\0" // ee + "estlân\0" // ee + "estniska\0" // ee + "estoni\0" // ee + "estonia\0" // ee + "estonia nutome\0" // ee + "estoniab\0" // ee + "estonie\0" // ee + "estonija\0" // ee + "estoniya\0" // ee + "estoniýa\0" // ee + "estonsko\0" // ee + "estonujo\0" // ee + "estonya\0" // ee + "estonía\0" // ee + "estonïi\0" // ee + "estooni\0" // ee + "estooniya\0" // ee + "estònia\0" // ee + "estónia\0" // ee + "estónsko\0" // ee + "estônia\0" // ee + "esyopya\0" // et + "esàvadò\0" // sv + "esípt\0" // eg + "et monteneejro\0" // me + "etaa sini\0" // us + "etalè\0" // it + "etazonia\0" // us + "etelä-afrikka\0" // za + "etelä-georgia ja eteläiset sandwichsaaret\0" // gs + "etelä-korea\0" // kr + "etelä-sudan\0" // ss + "ethiopia\0" // et + "ethiopiab\0" // et + "ethiopie\0" // et + "ethiopien\0" // et + "ethiopiá\0" // et + "ethiopië\0" // et + "ethiyopiya\0" // et + "ethtonia\0" // ee + "etifi koria\0" // kp + "etioopia\0" // et + "etiopi\0" // et + "etiopia\0" // et + "etiopia nutome\0" // et + "etiopie\0" // et + "etiopien\0" // et + "etiopija\0" // et + "etiopiska\0" // et + "etiopujo\0" // et + "etiopí\0" // et + "etiopía\0" // et + "etiopïi\0" // et + "etiyopiya\0" // et + "etiyopya\0" // et + "etiòpia\0" // et + "etiópia\0" // et + "etshiopi\0" // et + "etsíopi\0" // et + "eua\0" // us + "euro bölgesi\0" // ez + "euro zona\0" // ez + "euroala\0" // ez + "euroalue\0" // ez + "euroavádat\0" // ez + "eurogunea\0" // ez + "eurosona\0" // ez + "eurosone\0" // ez + "eurosonen\0" // ez + "eurozona\0" // ez + "eurozone\0" // ez + "eurozonen\0" // ez + "eurozonë\0" // ez + "eurozóna\0" // ez + "eurózóna\0" // ez + "evrasona\0" // ez + "evroobmočje\0" // ez + "evrozona\0" // ez + "evrusvæðið\0" // ez + "ex repubblica jugoslava di macedonia\0" // mk + "exipto\0" // eg + "exiptu\0" // eg + "eynda\0" // in + "eysturríki\0" // at + "eysturtimor\0" // tl + "ez\0" // ez + "eziputi\0" // eg + "ezípite\0" // eg + "ezɨ̀lɛ̂\0" // il + "eýran\0" // ir + "eþíópía\0" // et + "eštland\0" // ee + "f.d. jugoslaviska republiken makedonien\0" // mk + "faatikaan\0" // va + "faerské ostrovy\0" // fo + "faeröer\0" // fo + "faganïta, afganïstäan\0" // af + "fala\0" // fr + "falanisē\0" // fr + "falastiin daanka galbeed iyo qasa\0" // ps + "falastin\0" // ps + "falastin hududlari\0" // ps + "falisṭin d ɣezza\0" // ps + "falkland adaları\0" // fk + "falkland adaları (malvinas adaları)\0" // fk + "falkland islands\0" // fk + "falkland islands (islas malvinas)\0" // fk + "falkland uharteak\0" // fk + "falkland ƒudomekpowo (islas malvinas) nutome\0" // fk + "falkland ƒudomekpowo nutome\0" // fk + "falkland-eilannen\0" // fk + "falkland-insle\0" // fk + "falkland-szigetek\0" // fk + "falkland-szigetek (malvin-szigetek)\0" // fk + "falklandeilande\0" // fk + "falklandeilande (malvinas)\0" // fk + "falklandeilanden\0" // fk + "falklandeilanden (islas malvinas)\0" // fk + "falklandi qeqertaq\0" // fk + "falklandi saared\0" // fk + "falklandinsaaret\0" // fk + "falklandinsaaret (malvinassaaret)\0" // fk + "falklandinselen\0" // fk + "falklandinseln\0" // fk + "falklandinseln (malwinen)\0" // fk + "falklandinslä\0" // fk + "falklandinslä (malwine)\0" // fk + "falklandseyjar\0" // fk + "falklandseyjar (malvinas)\0" // fk + "falklandske kupy\0" // fk + "falklandske kupy (malwiny)\0" // fk + "falklandski otoci\0" // fk + "falklandski otoci (malvini)\0" // fk + "falklandski otoki\0" // fk + "falklandski otoki (malvini)\0" // fk + "falklandské ostrovy\0" // fk + "falklandské ostrovy (malvíny)\0" // fk + "falklandsoyggjar\0" // fk + "falklandsoyggjar (islas malvinas)\0" // fk + "falklandsullot\0" // fk + "falklandsuolluuh\0" // fk + "falklandsuolluuh (malvinassuolluuh)\0" // fk + "falklandsöarna\0" // fk + "falklandsøerne\0" // fk + "falklandsøerne (islas malvinas)\0" // fk + "falklandsøyane\0" // fk + "falklandsøyane (islas malvinas)\0" // fk + "falklandsøyene\0" // fk + "falklandsøyene (islas malvinas)\0" // fk + "falklandy\0" // fk + "falklandy (malvíny)\0" // fk + "falklandy (malwiny)\0" // fk + "falklâneilannen\0" // fk + "falklâneilannen (islas malvinas)\0" // fk + "falme cia kiarabu\0" // ae + "falme dha kiarabu\0" // ae + "falme za kialabu\0" // ae + "falme za kiarabu\0" // ae + "falánsɛ\0" // fr + "fanuatú\0" // vu + "fanwaṭu\0" // vu + "faraans\0" // fr + "faransa\0" // fr + "faransi\0" // fr + "faransi guyaan\0" // gf + "faransi ka gwiyani\0" // gf + "faransi ka polinezi\0" // pf + "faransi polineezi\0" // pf + "faransiis\0" // fr + "farayse\0" // fr + "farer adalary\0" // fo + "farer adaları\0" // fo + "farer orollari\0" // fo + "farerų salos\0" // fo + "faridranomasina indiana britanika\0" // io + "faroe adaları\0" // fo + "faroe islands\0" // fo + "faroe uharteak\0" // fo + "faroe ƒudomekpowo nutome\0" // fo + "faroëreilande\0" // fo + "farska ostrva\0" // fo + "farski otoci\0" // fo + "farânzi\0" // fr + "farēirai\0" // fo + "fas\0" // ma + "fatikáaŋ\0" // va + "fearsullot\0" // fo + "felensí\0" // fr + "felèkpî\0" // ph + "fenesuwelá\0" // ve + "fenisuweela\0" // ve + "fenland\0" // fi + "ferienigde staten\0" // us + "ferooj\0" // fo + "ferski otoki\0" // fo + "feröer-szigetek\0" // fo + "ffrainc\0" // fr + "fici\0" // fj + "fidji\0" // fj + "fidschi\0" // fj + "fidsí\0" // fj + "fidxi\0" // fj + "fidyïi\0" // fj + "fidzi\0" // fj + "fidzi nutome\0" // fj + "fidzsi\0" // fj + "fidzí\0" // fj + "fidši\0" // fj + "fidźi\0" // fj + "fidżi\0" // fj + "fidži\0" // fj + "fidžis\0" // fj + "fietnam\0" // vn + "figi\0" // fj + "figunguli fya fokolendi\0" // fk + "figunguli fya kooki\0" // ck + "figunguli fya maliyana ifya luvala lwa kunyamande\0" // mp + "figunguli fya solomoni\0" // sb + "figunguli fya tuliki ni kaiko\0" // tc + "figunguli fya viliginiya ifya malekani\0" // vi + "figunguli ifya kayimayi\0" // ky + "figunguli ifya malishali\0" // mh + "figunguli ifya viliginiya ifya uwingelesa\0" // vg + "figyi\0" // fj + "fiji\0" // fj + "fijib\0" // fj + "fijisullot\0" // fj + "fijiá\0" // fj + "fijji\0" // fj + "fil dişi sahili\0" // ci + "fil suyagi qirg‘og‘i\0" // ci + "filande\0" // fi + "filandɛ\0" // fi + "fildişi sahili\0" // ci + "filibbin\0" // ph + "filibiin\0" // ph + "filipaini\0" // ph + "filipiin\0" // ph + "filipiinid\0" // ph + "filipijnen\0" // ph + "filipin\0" // ph + "filipina\0" // ph + "filipinai\0" // ph + "filipinak\0" // ph + "filipinas\0" // ph + "filipine\0" // ph + "filipineh\0" // ph + "filipines\0" // ph + "filipinez\0" // ph + "filipini\0" // ph + "filipini nutome\0" // ph + "filipinis\0" // ph + "filipinler\0" // ph + "filipinn\0" // ph + "filipino\0" // ph + "filipinoj\0" // ph + "filipiny\0" // ph + "filipinɛ\0" // ph + "filipiŋ\0" // ph + "filippiinit\0" // ph + "filippiinnat\0" // ph + "filippin\0" // ph + "filippinane\0" // ph + "filippinas\0" // ph + "filippine\0" // ph + "filippinene\0" // ph + "filippinerna\0" // ph + "filippinerne\0" // ph + "filippinler\0" // ph + "filippseyjar\0" // ph + "filippyne\0" // ph + "filipsoyggjar\0" // ph + "filipíin\0" // ph + "filipín\0" // ph + "filipíny\0" // ph + "filipîni\0" // ph + "filipīnas\0" // ph + "filipǝ́n\0" // ph + "filistin\0" // ps + "filistin bölgeleri\0" // ps + "filisíin ungilís\0" // vg + "fillanda\0" // fi + "fillipiine\0" // ph + "finilandi\0" // fi + "finilani\0" // fi + "finlan\0" // fi + "finland\0" // fi + "finland nutome\0" // fi + "finlanda\0" // fi + "finlande\0" // fi + "finlandi\0" // fi + "finlandia\0" // fi + "finlandie\0" // fi + "finlandiya\0" // fi + "finlandiýa\0" // fi + "finlandu\0" // fi + "finlandy\0" // fi + "finlandë\0" // fi + "finlanḍa\0" // fi + "finlund\0" // fi + "finlànd\0" // fi + "finlàndia\0" // fi + "finlándia\0" // fi + "finlân\0" // fi + "finlândia\0" // fi + "finnland\0" // fi + "finnlando\0" // fi + "finnország\0" // fi + "finska\0" // fi + "finsko\0" // fi + "finzwila\0" // ve + "finî kaledonïi\0" // nc + "finî zelânde\0" // nz + "finəlán\0" // fi + "firenen’i vatikana\0" // va + "firipino\0" // ph + "fisi\0" // fj + "fitnam\0" // vn + "fitschi\0" // fj + "fixhi\0" // fj + "fiyetnaam\0" // vn + "fiyi\0" // fj + "fizi\0" // fj + "fiĝoj\0" // fj + "fiġi\0" // fj + "fiŋlɛŋ\0" // fi + "fiɛtnáam\0" // vn + "fjarskoti osiania\0" // qo + "fk\0" // fk + "foklandska (malvinska) ostrva\0" // fk + "foklandska ostrva\0" // fk + "folinesiya ta faransa\0" // pf + "folklando (malvinų) salos\0" // fk + "folklando salos\0" // fk + "folklandska (malvinska) ostrva\0" // fk + "folklandska ostrva\0" // fk + "folklend (malvin) orollari\0" // fk + "folklend (malwina) adalary\0" // fk + "folklend adalary\0" // fk + "folklend adaları\0" // fk + "folklend adaları (malvin adaları)\0" // fk + "folklend orollari\0" // fk + "folklenda (malvinu) salas\0" // fk + "folklenda salas\0" // fk + "frakkland\0" // fr + "frakland\0" // fr + "franca gviano\0" // gf + "franca polinezio\0" // pf + "france\0" // fr + "france nutome\0" // fr + "francia\0" // fr + "francia déli területek\0" // tf + "francia guyana\0" // gf + "francia polinézia\0" // pf + "franciaország\0" // fr + "francie\0" // fr + "francija\0" // fr + "francijas dienvidjūru teritorija\0" // tf + "francijas gviāna\0" // gf + "francijas polinēzija\0" // pf + "francja\0" // fr + "francojska\0" // fr + "francojska guyana\0" // gf + "francojska polyneziska\0" // pf + "francojski pódpołdnjowy a antarktiski teritorium\0" // tf + "francoska\0" // fr + "francoska guyana\0" // gf + "francoska gvajana\0" // gf + "francoska polinezija\0" // pf + "francoska polyneziska\0" // pf + "francoski južny a antarktiski teritorij\0" // tf + "francosko južno ozemlje\0" // tf + "francouzská guyana\0" // gf + "francouzská jižní území\0" // tf + "francouzská polynésie\0" // pf + "francujo\0" // fr + "francuska\0" // fr + "francuska gijana\0" // gf + "francuska gvajana\0" // gf + "francuska polinezija\0" // pf + "francuske južne teritorije\0" // tf + "francuski južni i antarktički teritoriji\0" // tf + "francuskie terytoria południowe i antarktyczne\0" // tf + "francë\0" // fr + "francúzska guyana\0" // gf + "francúzska polynézia\0" // pf + "francúzske južné a antarktické územia\0" // tf + "francúzsko\0" // fr + "frankreich\0" // fr + "frankreiki\0" // fr + "frankriek\0" // fr + "frankrig\0" // fr + "frankrigi\0" // fr + "frankrigi saint martin\0" // mf + "frankriich\0" // fr + "frankriika\0" // fr + "frankriikka guayana\0" // gf + "frankriikka polynesia\0" // pf + "frankriikka saint martin\0" // mf + "frankrijk\0" // fr + "frankrike\0" // fr + "frankrisch\0" // fr + "frankrič\0" // fr + "frankryk\0" // fr + "frankräich\0" // fr + "frans\0" // fr + "frans-guyana\0" // gf + "frans-polinesië\0" // pf + "frans-polynesië\0" // pf + "fransa\0" // fr + "fransa polineziyası\0" // pf + "fransa qvianası\0" // gf + "fransanın cənub əraziləri\0" // tf + "franse gebieden in de zuidelijke indische oceaan\0" // tf + "franse gebieden in de zuidelijke indyske oseaan\0" // tf + "franse suidelike gebiede\0" // tf + "fransi\0" // fr + "fransiya\0" // fr + "fransiýa\0" // fr + "fransk guyana\0" // gf + "fransk polynesia\0" // pf + "fransk polynesien\0" // pf + "franska gujana\0" // gf + "franska guyana\0" // gf + "franska gvæjana\0" // gf + "franska polynesia\0" // pf + "franska polynesien\0" // pf + "franska pólýnesía\0" // pf + "franska sydterritorierna\0" // tf + "franssǝ\0" // fr + "fransuz gvianasi\0" // gf + "fransuz gwianasy\0" // gf + "fransuz günorta territoriýalary\0" // tf + "fransuz janubiy hududlari\0" // tf + "fransuz polineziyasi\0" // pf + "fransuz polineziýasy\0" // pf + "fransän\0" // fr + "franséisch süd- an antarktisgebidder\0" // tf + "franséisch-polynesien\0" // pf + "fransız guyanası\0" // gf + "fransız güney toprakları\0" // tf + "fransız polinezyası\0" // pf + "frantsa\0" // fr + "frantscha\0" // fr + "frantzia\0" // fr + "franza\0" // fr + "französisch-guayana\0" // gf + "französisch-guäjaana\0" // gf + "französisch-polineesie\0" // pf + "französisch-polynesien\0" // pf + "französische süd- und antarktisgebiete\0" // tf + "französischi süüd- und antarktisgebiet\0" // tf + "französiš guiana\0" // gf + "französiš polinesie\0" // pf + "französiši süd- und antarktisgebiet\0" // tf + "franzöösch-guayana\0" // gf + "franzöösch-polynesien\0" // pf + "franzöösche süüd- un antarktisrebeden\0" // tf + "franzüüsesch jujaana\0" // gf + "franzüüsesch pollineesije\0" // pf + "franzüüsesche södsee-enselle\0" // tf + "frança\0" // fr + "franța\0" // fr + "frañs\0" // fr + "french guiana\0" // gf + "french polynesia\0" // pf + "french southern territories\0" // tf + "frentsi gayana nutome\0" // gf + "frentsi pɔlinesia nutome\0" // pf + "fronsku sunnaru landaøki\0" // tf + "frönsku suðlægu landsvæðin\0" // tf + "frɛnkye gayana\0" // gf + "frɛnkye pɔlenehyia\0" // pf + "frɛnkyeman\0" // fr + "fuji\0" // fj + "fulɛnsí\0" // fr + "furansi\0" // fr + "fàlâŋnsì\0" // fr + "fáháki luma tiŋŋɛ\0" // fk + "färsaaret\0" // fo + "färsuolluuh\0" // fo + "färöarna\0" // fo + "färöe\0" // fo + "färöer\0" // fo + "färöje\0" // fo + "färöske kupy\0" // fo + "fääri saared\0" // fo + "færeyjar\0" // fo + "færøerne\0" // fo + "færøyane\0" // fo + "færøyene\0" // fo + "félepiŋ\0" // ph + "fëlânde\0" // fi + "fìdi\0" // fj + "fìlìpîn\0" // ph + "fìnlând\0" // fi + "fídjíeyjar\0" // fj + "fíiji\0" // fj + "fíji\0" // fj + "fílabeinsstrondin\0" // ci + "fílabeinsströndin\0" // ci + "fínlan\0" // fi + "fínsko\0" // fi + "físi\0" // fj + "fólis\0" // pl + "förenade arabemiraten\0" // ae + "føroyar\0" // fo + "fülöp-szigetek\0" // ph + "fēru salas\0" // fo + "fɔlkman aeland\0" // fk + "fɔrətugɛ́s\0" // pt + "fələstin\0" // ps + "fələstin əraziləri\0" // ps + "fɛlánci\0" // fr + "fɛnlánd\0" // fi + "fɛŋsi\0" // fr + "fɛŋsi giwana\0" // gf + "fɛŋsi polinísiya\0" // pf + "fɨnlàn\0" // fi + "fṛansa\0" // fr + "gaabon\0" // ga + "gaaboon\0" // ga + "gaana\0" // gh + "gaanà\0" // gh + "gabhoni\0" // ga + "gabhɔŋ\0" // ga + "gabo\0" // ga + "gaboen\0" // ga + "gabon\0" // ga + "gabona\0" // ga + "gabonas\0" // ga + "gaboni\0" // ga + "gabono\0" // ga + "gaboo\0" // ga + "gabooni\0" // ga + "gaboŋ\0" // ga + "gabun\0" // ga + "gabão\0" // ga + "gabãu\0" // ga + "gabón\0" // ga + "gabóoni\0" // ga + "gabóŋ\0" // ga + "gaböon\0" // ga + "gabɔ\0" // ga + "gabɔn\0" // ga + "gabɔn nutome\0" // ga + "gabɔŋ\0" // ga + "gaiti\0" // ht + "gajana\0" // gy + "gajāna\0" // gy + "gambi\0" // gm + "gambia\0" // gm + "gambia nutome\0" // gm + "gambiab\0" // gm + "gambie\0" // gm + "gambija\0" // gm + "gambio\0" // gm + "gambiya\0" // gm + "gambië\0" // gm + "gambiýa\0" // gm + "gambya\0" // gm + "gambìa\0" // gm + "gambí\0" // gm + "gambía\0" // gm + "gambïi\0" // gm + "gammbi\0" // gm + "gana\0" // gh + "ganaa\0" // gh + "ganao\0" // gh + "ganbi\0" // gm + "ganà\0" // gh + "ganá\0" // gh + "ganäa\0" // gh + "ganë\0" // gh + "garanad\0" // gd + "garnaad\0" // gd + "gaska-afrihká dásseváldi\0" // cf + "gayana\0" // gy + "gayana ey’oku ekweta\0" // gq + "gayana yaku ekweta\0" // gq + "gayâna\0" // gy + "gazagystan\0" // kz + "gaýana\0" // gy + "gb\0" // gb + "gbeya bahawɔ\0" // sl + "geansaí\0" // gg + "geirsí\0" // je + "geleki\0" // gr + "gelenadɛ\0" // gd + "geoorgie\0" // ge + "georgia\0" // ge + "georgia dal sid e las inslas sandwich dal sid\0" // gs + "georgia dal sud e isulis sandwich dal sud\0" // gs + "georgia de sud și insulele sandwich de sud\0" // gs + "georgia del sud e sandwich australi\0" // gs + "georgia kusini na visiwa vya sandwich kusini\0" // gs + "georgia nutome\0" // ge + "georgia południowa i sandwich południowy\0" // gs + "georgia selatan & kep. sandwich selatan\0" // gs + "georgiab\0" // ge + "georgie\0" // ge + "georgien\0" // ge + "georgiska\0" // ge + "georgiya\0" // ge + "georgië\0" // ge + "georgía\0" // ge + "gerees\0" // gr + "gerenada\0" // gd + "germania\0" // de + "germania nutome\0" // de + "germaniya\0" // de + "germaniýa\0" // de + "germanujo\0" // de + "germany\0" // de + "gernase\0" // gg + "gernsej\0" // gg + "gernsi\0" // gg + "gernsis\0" // gg + "gernzi\0" // gg + "gerêsi\0" // gr + "geàrnsaidh\0" // gg + "geòrgia\0" // ge + "geórgia\0" // ge + "ggatar\0" // qa + "ghana\0" // gh + "ghana nutome\0" // gh + "ghanab\0" // gh + "ghána\0" // gh + "giamaica\0" // jm + "giana\0" // gy + "giana franseza\0" // gf + "giappone\0" // jp + "giapun\0" // jp + "gibilterra\0" // gi + "gibraltar\0" // gi + "gibraltar nutome\0" // gi + "gibraltaras\0" // gi + "gibraltár\0" // gi + "gibraltārs\0" // gi + "gibrāltars\0" // gi + "giburaata\0" // gi + "giburalita\0" // gi + "gibuti\0" // dj + "gilbratar\0" // gi + "gilenada\0" // gd + "gilinilandi\0" // gl + "gine\0" // gn + "gine bisawo\0" // gw + "gine ekuatorial\0" // gq + "gine ekuwatoriyal\0" // gq + "gine ekwatele\0" // gq + "gine ekwatoryal\0" // gq + "gine ekwatɔri\0" // gq + "gine ya iquita\0" // gq + "gine-bisaawo\0" // gw + "gine-bisaawóo\0" // gw + "gine-bisau\0" // gw + "gine-bissau\0" // gw + "gine-bisso\0" // gw + "ginea\0" // gn + "ginea ar cʼheheder\0" // gq + "ginea bissau\0" // gw + "ginea-bissau\0" // gw + "ginebisau\0" // gw + "ginebisawu\0" // gw + "ginee ekuwaatoriyaal\0" // gq + "ginee ekwatorial\0" // gq + "gineea\0" // gn + "gineea-bissau\0" // gw + "gineja\0" // gn + "gineja-bissau\0" // gw + "ginekweta\0" // gq + "gineya bisawu\0" // gw + "gineya ekwatoriyali\0" // gq + "gini\0" // gn + "gini bhisawo\0" // gw + "gini bisau\0" // gw + "gini bisaw\0" // gw + "gini ikuweta\0" // gq + "gini mheadhan-chriosach\0" // gq + "gini nuadh phaputhach\0" // pg + "gini ta faransa\0" // gf + "gini ta ikwaita\0" // gq + "gini-bioso\0" // gw + "gini-bisaaw\0" // gw + "gini-bisao nutome\0" // gw + "gini-bisawu\0" // gw + "ginè\0" // gn + "ginè bìsawù\0" // gw + "giné\0" // gn + "giné bisaau\0" // gw + "giné bisaó\0" // gw + "giné ekwató\0" // gq + "giné-bisao\0" // gw + "ginëe\0" // gn + "ginëe tî ekuatëre\0" // gq + "ginɛ\0" // gn + "ginɛbisau\0" // gw + "ginɛ́\0" // gn + "ginɛ́ bisɔ́\0" // gw + "ginɛ́ ɛkwatɔrial\0" // gq + "ginɛ́kwatɛ́lɛ\0" // gq + "giobráltar\0" // gi + "giordania\0" // jo + "girenáada\0" // gd + "giriig\0" // gr + "giriinaada\0" // gd + "giriniláandi\0" // gl + "girinlànd\0" // gl + "girka\0" // gr + "girnada\0" // gd + "girnizi\0" // gg + "giyaan\0" // gy + "giyaan farayse\0" // gf + "giyan\0" // gy + "giyane\0" // gy + "giyane wa nfalanse\0" // gf + "giyanɛ ya falánsɛ\0" // gf + "gjamaiche\0" // jm + "gjapon\0" // jp + "gjeorgji\0" // ge + "gjeorgjie\0" // ge + "gjermani\0" // de + "gjermanie\0" // de + "gjibraltar\0" // gi + "glenada\0" // gd + "glinlandi\0" // gl + "gninëe-bisau\0" // gw + "gnove caledonie\0" // nc + "gnove zelande\0" // nz + "goadelopy\0" // gp + "goatemalà\0" // gt + "goelán\0" // gl + "gogledd korea\0" // kp + "gonduras\0" // hn + "gonkong\0" // hk + "gonkong (xitoy mmh)\0" // hk + "gonkong aas hytaý\0" // hk + "gorgi\0" // ge + "gorllewin sahara\0" // eh + "gorolânde\0" // gl + "gorwendland\0" // gl + "gowelande\0" // gl + "graikija\0" // gr + "granada\0" // gd + "granadi\0" // gd + "greanàda\0" // gd + "greanáda\0" // gd + "grecia\0" // gr + "grecie\0" // gr + "grecja\0" // gr + "greece\0" // gr + "greece nutome\0" // gr + "greekman\0" // gr + "greenland\0" // gl + "greenman\0" // gl + "greika\0" // gr + "grekenland\0" // gr + "grekland\0" // gr + "grekujo\0" // gr + "grenaada\0" // gd + "grenad\0" // gd + "grenada\0" // gd + "grenada nutome\0" // gd + "grenade\0" // gd + "grenado\0" // gd + "grenady\0" // gd + "grenadë\0" // gd + "grenadǝ\0" // gd + "grenland\0" // gl + "grenlande\0" // gl + "grenlandia\0" // gl + "grenlandija\0" // gl + "grenlandiya\0" // gl + "grenlandiýa\0" // gl + "grenlandë\0" // gl + "grenlàndia\0" // gl + "grenâda\0" // gd + "grenāda\0" // gd + "greqi\0" // gr + "gres\0" // gr + "gresiýa\0" // gr + "gresy\0" // gr + "gretsiya\0" // gr + "greunland\0" // gl + "grezia\0" // gr + "grichiska\0" // gr + "griecheland\0" // gr + "griechenland\0" // gr + "griekeland\0" // gr + "griekenland\0" // gr + "grienlân\0" // gl + "grieķija\0" // gr + "griicheland\0" // gr + "grikelân\0" // gr + "grikkaland\0" // gr + "grikkland\0" // gr + "grikän\0" // gr + "griland\0" // gl + "grinada\0" // gd + "grinlan\0" // gl + "grinland\0" // gl + "grinland nutome\0" // gl + "grinlandi\0" // gl + "grinlandia\0" // gl + "grinlanḍa\0" // gl + "gričeland\0" // gr + "grjekska\0" // gr + "groenland\0" // gl + "groenlanda\0" // gl + "groenlande\0" // gl + "groenlandia\0" // gl + "groenlândia\0" // gl + "gronelándia\0" // gl + "gronelândia\0" // gl + "gronlando\0" // gl + "grootbritannien\0" // gb + "grossbritannien\0" // gb + "groussbritannien\0" // gb + "groênlandia\0" // gl + "grunad\0" // gd + "grunland\0" // gl + "grusiyän\0" // ge + "gruusia\0" // ge + "gruzia\0" // ge + "gruzie\0" // ge + "gruzija\0" // ge + "gruziya\0" // ge + "gruziýa\0" // ge + "gruzja\0" // ge + "gruzínsko\0" // ge + "grækenland\0" // gr + "grækenlandi\0" // gr + "grænhöfðaeyjar\0" // cv + "grænland\0" // gl + "grèce\0" // gr + "grècia\0" // gr + "grènadà\0" // gd + "grécia\0" // gr + "grécko\0" // gr + "grésia\0" // gr + "grínlan\0" // gl + "grónsko\0" // gl + "grönland\0" // gl + "grönlanda\0" // gl + "grönlandska\0" // gl + "grönlanti\0" // gl + "gröönimaa\0" // gl + "gröönland\0" // gl + "grønhøvdaoyggjar\0" // cv + "grønland\0" // gl + "grúzia\0" // ge + "grčija\0" // gr + "grčka\0" // gr + "grēkantauta\0" // gr + "grēnlandan\0" // gl + "grǐkyà\0" // gr + "grǐnlànd\0" // gl + "grɛce\0" // gr + "grɛnadǝ\0" // gd + "grɛ́k\0" // gr + "guadalup\0" // gp + "guadalupa\0" // gp + "guadalupe\0" // gp + "guadalupi\0" // gp + "guadalúip\0" // gp + "guadeloup\0" // gp + "guadeloupe\0" // gp + "guadelupa\0" // gp + "guadelupe nutome\0" // gp + "guadelûpu\0" // gp + "guadloup\0" // gp + "guadälup\0" // gp + "guadəlúb\0" // gp + "guaiana francesa\0" // gf + "guajana franceze\0" // gf + "guajanë\0" // gy + "guam\0" // gu + "guam nutome\0" // gu + "guama\0" // gu + "guamas\0" // gu + "guame\0" // gu + "guatamala\0" // gt + "guatemaala\0" // gt + "guatemala\0" // gt + "guatemala nutome\0" // gt + "guatemalá\0" // gt + "guatemalë\0" // gt + "guatimala\0" // gt + "guatêmälä\0" // gt + "guayana francesa\0" // gf + "guayane\0" // gf + "guernesey\0" // gg + "guernse nutome\0" // gg + "guernsey\0" // gg + "guiana\0" // gy + "guiana francesa\0" // gf + "guiana francês\0" // gf + "guiana perancis\0" // gf + "guiana thuộc pháp\0" // gf + "guiana ya ufaransa\0" // gf + "guidheàna\0" // gy + "guidheàna na frainge\0" // gf + "guine\0" // gn + "guine bissau\0" // gw + "guine bisso\0" // gw + "guine ekuatorial\0" // gq + "guine ma bissao\0" // gw + "guine papuasi\0" // pg + "guine-bisau\0" // gw + "guinea\0" // gn + "guinea bissau\0" // gw + "guinea ecuatorial\0" // gq + "guinea ekoatera\0" // gq + "guinea ekuatorial\0" // gq + "guinea equatorial\0" // gq + "guinea equatoriala\0" // gq + "guinea equatoriale\0" // gq + "guinea gyhydeddol\0" // gq + "guinea khatulistiwa\0" // gq + "guinea xích đạo\0" // gq + "guinea ya ikweta\0" // gq + "guinea-bissau\0" // gw + "guinea-bisáu\0" // gw + "guineab\0" // gn + "guinee\0" // gn + "guinee ecuatoriâl\0" // gq + "guinee-bissau\0" // gw + "guineea\0" // gn + "guineea ecuatorială\0" // gq + "guineea-bissau\0" // gw + "guineja e re-papua\0" // pg + "guineja ekuatoriale\0" // gq + "guini nutome\0" // gn + "guiné\0" // gn + "guiné bissau\0" // gw + "guiné equatorial\0" // gq + "guiné-bissau\0" // gw + "guinée\0" // gn + "guinée équatoriale\0" // gq + "guinée-bissau\0" // gw + "gujana\0" // gy + "gujana francuska\0" // gf + "gujano\0" // gy + "gujāna\0" // gy + "guneya\0" // gn + "guni\0" // gq + "gurenada\0" // gd + "gurenelandi\0" // gl + "guriinirandi\0" // gl + "guriisi\0" // gr + "gurinéda\0" // gd + "gurma kooree\0" // kp + "gurunilandi\0" // gl + "guwaadelup\0" // gp + "guwaatamaala\0" // gt + "guwadalup\0" // gp + "guwadelup\0" // gp + "guwadelupe\0" // gp + "guwam\0" // gu + "guwami\0" // gu + "guwana\0" // gy + "guwatemala\0" // gt + "guwatɛmala\0" // gt + "guyaan farañse\0" // gf + "guyaane\0" // gy + "guyana\0" // gy + "guyana enfalansa\0" // gf + "guyana francesa\0" // gf + "guyana francese\0" // gf + "guyana franceză\0" // gf + "guyana frantsay\0" // gf + "guyana frantsesa\0" // gf + "guyana franzosa\0" // gf + "guyana prancis\0" // gf + "guyana tafransist\0" // gf + "guyana ya bufaransa\0" // gf + "guyanadu\0" // gy + "guyane\0" // gy + "guyane fala\0" // gf + "guyane ffrengig\0" // gf + "guyane française\0" // gf + "guyáana\0" // gy + "guyán\0" // gy + "guyán i pɛrɛsǝ́\0" // gf + "guyán yá fulɛnsí\0" // gf + "guáin na fraince\0" // gf + "guám\0" // gu + "guâm\0" // gu + "guäjaana\0" // gy + "gvadalupe\0" // gp + "gvadelup\0" // gp + "gvadelupa\0" // gp + "gvadelupe\0" // gp + "gvadelupo\0" // gp + "gvadelúpeyjar\0" // gp + "gvajana\0" // gy + "gvam\0" // gu + "gvamo\0" // gu + "gvatemala\0" // gt + "gvatemalo\0" // gt + "gvineja\0" // gn + "gvineja bisau\0" // gw + "gvineja bissau\0" // gw + "gvineja-bisao\0" // gw + "gvineja-bisava\0" // gw + "gvineo\0" // gn + "gvineo-bisaŭo\0" // gw + "gvineya\0" // gn + "gvineya-bisau\0" // gw + "gvinėja\0" // gn + "gvæjana\0" // gy + "gwaadalup\0" // gp + "gwaatemalaa\0" // gt + "gwadalub\0" // gp + "gwadaluf\0" // gp + "gwadalukpɛ̀\0" // gp + "gwadalup\0" // gp + "gwadalupe\0" // gp + "gwadalupi\0" // gp + "gwadeloup\0" // gp + "gwadelup\0" // gp + "gwadelupa\0" // gp + "gwadelupe\0" // gp + "gwadeluup\0" // gp + "gwadelúupe\0" // gp + "gwaderupe\0" // gp + "gwadɛlupɛ\0" // gp + "gwadɛlúp\0" // gp + "gwam\0" // gu + "gwamu\0" // gu + "gwamɛ\0" // gu + "gwani\0" // gu + "gwatamala\0" // gt + "gwatemaala\0" // gt + "gwatemala\0" // gt + "gwatemara\0" // gt + "gwatemáala\0" // gt + "gwatemāla\0" // gt + "gwatimala\0" // gt + "gwatémala\0" // gt + "gwayana y’abafaransa\0" // gf + "gweriniaeth canolbarth affrica\0" // cf + "gweriniaeth dominica\0" // do + "gweriniaeth tsiec\0" // cz + "gwernenez\0" // gg + "gwiana cʼhall\0" // gf + "gwinea\0" // gn + "gwinea bissau\0" // gw + "gwinea równikowa\0" // gq + "gwineýa\0" // gn + "gwineýa-bisau\0" // gw + "gwiyan tafransist\0" // gf + "gwiyana\0" // gy + "gwiyana ya fransi\0" // gf + "gwiyana ya ufalansa\0" // gf + "gwiyana ya ufaransa\0" // gf + "gwiyana ya ufarantha\0" // gf + "gwiyana ya wufalansa\0" // gf + "gwiyana ye furansi\0" // gf + "gwiyann franse\0" // gf + "gwiyáana yʉ ʉfaráansa\0" // gf + "gwlad belg\0" // be + "gwlad groeg\0" // gr + "gwlad iorddonen\0" // jo + "gwlad pwyl\0" // pl + "gwlad swazi\0" // sz + "gwlad thai\0" // th + "gwlad yr iâ\0" // is + "gwàdèlûp\0" // gp + "gwàtèmalà\0" // gt + "gwàtɨ̀malà\0" // gt + "gwám\0" // gu + "gwátǝmala\0" // gt + "gyaaman\0" // de + "gyamaika\0" // jm + "gyameka\0" // jm + "gyapaani\0" // jp + "gyapan\0" // jp + "gyebralta\0" // gi + "gyibuti\0" // dj + "gyogiya\0" // ge + "gyogya\0" // ge + "gyrgyzystan\0" // kg + "gyɔdan\0" // jo + "gyɔgyea\0" // ge + "gàbûn\0" // ga + "gàbɔ̂ŋ\0" // ga + "gàmbi\0" // gm + "gàmbia\0" // gm + "gàmbià\0" // gm + "gàna\0" // gh + "gàyanà è fàlâŋnsì\0" // gf + "gáana\0" // gh + "gámbia\0" // gm + "gána\0" // gh + "gâmbia\0" // gm + "gäärnsi\0" // gg + "gèɔrgìà\0" // ge + "géorgie\0" // ge + "géorgie du sud et îles sandwich du sud\0" // gs + "gìlbràtâr\0" // gi + "gìne bìsàô\0" // gw + "gìne èkwàtorìà\0" // gq + "gìne ì pàpu\0" // pg + "gìnê\0" // gn + "gíbraltar\0" // gi + "gíine\0" // gn + "gíine bisáau\0" // gw + "gíine ikwéeta\0" // gq + "gínea\0" // gn + "gínea-bissá\0" // gw + "gódowne kupy\0" // cx + "görögország\0" // gr + "gùyanà\0" // gy + "gùyanà pùlàsi\0" // gf + "gùâm\0" // gu + "gúúsù sudan\0" // ss + "güiana\0" // gy + "güiana francesa\0" // gf + "günbatar sahara\0" // eh + "gündogar timor\0" // tl + "güney afrika\0" // za + "güney georgia ve güney sandwich adaları\0" // gs + "güney kore\0" // kr + "güney sudan\0" // ss + "günorta afrika\0" // za + "günorta georgiýa we günorta sendwiç adasy\0" // gs + "günorta koreýa\0" // kr + "günorta sudan\0" // ss + "gürcistan\0" // ge + "gürcüstan\0" // ge + "güyâni tî farânzi\0" // gf + "gērnsija\0" // gg + "gżejjer cocos (keeling)\0" // cc + "gżejjer cook\0" // ck + "gżejjer marshall\0" // mh + "gżejjer pitcairn\0" // pn + "gżira bouvet\0" // bv + "gżira norfolk\0" // nf + "gɔrɔhenelandi\0" // gl + "gələnádə\0" // gd + "gəlɛ́s\0" // gr + "gɛrɛsi\0" // gr + "gɨ̀anyɨ\0" // ng + "gɨ̀lenlân\0" // gl + "gɨ̀lês\0" // gr + "gɨ̀lɛnadà\0" // gd + "g‘arbiy sahroi kabir\0" // eh + "habasha\0" // et + "haidhti\0" // ht + "haiti\0" // ht + "haiti nutome\0" // ht + "haitio\0" // ht + "haitis\0" // ht + "haití\0" // ht + "haitïi\0" // ht + "hamaíka\0" // jm + "hangare\0" // hu + "hangari\0" // hu + "hangarĩ\0" // hu + "hangeri\0" // hu + "hapɔ́n\0" // jp + "hati\0" // ht + "hawsa afriki laboo\0" // za + "hawsa kooree\0" // kr + "hayiti\0" // ht + "hayti\0" // ht + "haytii\0" // ht + "haíiti\0" // ht + "haítí\0" // ht + "haïti\0" // ht + "haīti\0" // ht + "haɗaɗɗiyar daular larabawa\0" // ae + "haʻamoa\0" // ws + "haʻamoa ʻamelika\0" // as + "ha’itti\0" // ht + "heard & mcdonald islands\0" // hm + "heard adası ve mcdonald adaları\0" // hm + "heard en mcdonaldeilanden\0" // hm + "heard eta mcdonald uharteak\0" // hm + "heard island og mcdonald islands\0" // hm + "heard ja mcdonaldinsaaret\0" // hm + "heard já mcdonaldsuolluuh\0" // hm + "heard kple mcdonald ƒudomekpowo nutome\0" // hm + "heard og mcdonaldoyggjar\0" // hm + "heard og mcdonaldseyjar\0" // hm + "heard und mcdonaldinseln\0" // hm + "heard- a mcdonald-inselen\0" // hm + "heard- en mcdonaldeilannen\0" // hm + "heard- ja mcdonald-sullot\0" // hm + "heard- og mcdonaldøyene\0" // hm + "heard- un mcdonald-eilannen\0" // hm + "heard- und mcdonald-inslä\0" // hm + "heard-sziget és mcdonald-szigetek\0" // hm + "heardeiland en mcdonaldeilande\0" // hm + "heardi ja mcdonaldi saared\0" // hm + "heardov ostrov a macdonaldove ostrovy\0" // hm + "heardov otok in mcdonaldovi otoki\0" // hm + "heardowa kupa a mcdonaldowe kupy\0" // hm + "heardön och mcdonaldöarna\0" // hm + "heardøya og mcdonaldøyane\0" // hm + "heardův ostrov a mcdonaldovy ostrovy\0" // hm + "hego korea\0" // kr + "hego sudan\0" // ss + "hegoafrika\0" // za + "hegoaldeko georgia eta hegoaldeko sandwich uharteak\0" // gs + "hegoaldeko lurralde frantsesak\0" // tf + "heimastjórnarsvæði palestínumanna\0" // ps + "heiti\0" // ht + "helene\0" // gr + "hellas\0" // gr + "henɣarya\0" // hu + "herbehereak\0" // nl + "herd i arhipelag mekdonald\0" // hm + "herd və makdonald adaları\0" // hm + "herd we makdonald adalary\0" // hm + "herda kaj makdonaldaj insuloj\0" // hm + "herdo ir makdonaldo salos\0" // hm + "hiina\0" // cn + "hilagang korea\0" // kp + "himmelfártsinsla\0" // ac + "hind\0" // in + "hindistan\0" // in + "hindiston\0" // in + "hindiya\0" // in + "hindujo\0" // in + "hinduras\0" // hn + "hisipaniya\0" // es + "hisipánia\0" // es + "hispaania\0" // es + "hispania\0" // es + "hispanujo\0" // es + "hiszpania\0" // es + "hithpania\0" // es + "hm\0" // hm + "hnɣarya\0" // hu + "hoa kỳ\0" // us + "hodowna kupa\0" // cx + "holan\0" // nl + "holand\0" // nl + "holanda\0" // nl + "holandi\0" // nl + "holandia\0" // nl + "holandija\0" // nl + "holandsko\0" // nl + "holandë\0" // nl + "holland\0" // nl + "holland karib-térség\0" // bq + "hollanda\0" // nl + "hollandi\0" // nl + "hollandi kariibi mere saared\0" // bq + "hollandia\0" // nl + "hollandu\0" // nl + "holände\0" // nl + "hondiorasy\0" // hn + "honduasi\0" // hn + "hondulasi\0" // hn + "honduras\0" // hn + "hondurasa\0" // hn + "hondurasdu\0" // hn + "hondurasi\0" // hn + "hondurathi\0" // hn + "hondures\0" // hn + "honduro\0" // hn + "honduráasi\0" // hn + "honduräsi\0" // hn + "hondùras\0" // hn + "hondúras\0" // hn + "hondūras\0" // hn + "hong cong\0" // hk + "hong kong\0" // hk + "hong kong (rae xina)\0" // hk + "hong kong (rae)\0" // hk + "hong kong (sar kina)\0" // hk + "hong kong (shina)\0" // hk + "hong kong rae da china\0" // hk + "hong kong rhga tsieina\0" // hk + "hong kong rmd sina\0" // hk + "hong kong sar china\0" // hk + "hong kong sar kina\0" // hk + "hong kong sar na sìne\0" // hk + "hong kong sar tiongkok\0" // hk + "hong kong txinako aeb\0" // hk + "hong kong, rae da china\0" // hk + "hong-kong\0" // hk + "hongareieb\0" // hu + "hongarije\0" // hu + "hongarye\0" // hu + "hongi kongi\0" // hk + "hongi kongi sar siaina\0" // hk + "hongirùii\0" // hu + "hongkong\0" // hk + "hongkong kkt\0" // hk + "hongkong s.a.r. kina\0" // hk + "hongkong sar van china\0" // hk + "hongkong sar van sina\0" // hk + "hongkong sas sjina\0" // hk + "hongkong – kiina e.h.k.\0" // hk + "hongkong – kiinan e.h.a.\0" // hk + "hongkong – oao číny\0" // hk + "hongkong – zao číny\0" // hk + "hongkongi erihalduspiirkond\0" // hk + "hongria\0" // hu + "hongrie\0" // hu + "honitulasi\0" // hn + "honkonga\0" // hk + "honkongas\0" // hk + "honkongo\0" // hk + "honq konq\0" // hk + "honq konq xüsusi İnzibati ərazi çin\0" // hk + "hoorandi\0" // nl + "horvaatia\0" // hr + "horvátország\0" // hr + "horvātija\0" // hr + "horwatiýa\0" // hr + "horədaní\0" // jo + "horə́yia\0" // ge + "hrvatska\0" // hr + "hrvaška\0" // hr + "huafrika iya hukusini\0" // za + "huafuganistani\0" // af + "huaislandi\0" // is + "huajendina\0" // ar + "hualbania\0" // al + "hualjelia\0" // dz + "hualuba\0" // aw + "huamenia\0" // am + "huandola\0" // ad + "huangola\0" // ao + "huanguila\0" // ai + "huantigua na hubarubuda\0" // ag + "huastlia\0" // at + "huaustlalia\0" // au + "huayalandi\0" // ie + "huazabajani\0" // az + "hubabadosi\0" // bb + "hubahaleni\0" // bh + "hubahama\0" // bs + "hubangaladeshi\0" // bd + "hubelalusi\0" // by + "hubelize\0" // bz + "hubelmuda\0" // bm + "hubenini\0" // bj + "hublazili\0" // br + "hubolivia\0" // bo + "hubosinia na huhezegovina\0" // ba + "hubotiswana\0" // bw + "hubrunei\0" // bn + "hubukinafaso\0" // bf + "hubukini\0" // mg + "hubulgaria\0" // bg + "huburundi\0" // bi + "hubutani\0" // bt + "huchadi\0" // td + "huchile\0" // cl + "huchina\0" // cn + "hudenmaki\0" // dk + "hudominika\0" // dm + "huekwado\0" // ec + "huelsavado\0" // sv + "hueritrea\0" // er + "huestonia\0" // ee + "hufalme dza hihalabu\0" // ae + "hufiji\0" // fj + "hufilipino\0" // ph + "hugaboni\0" // ga + "hugambia\0" // gm + "hughana\0" // gh + "huginebisau\0" // gw + "huginekweta\0" // gq + "hugrenada\0" // gd + "huguyana\0" // gy + "hugwadelupe\0" // gp + "hugwam\0" // gu + "hugwatemala\0" // gt + "hugwiyana ya huufaransa\0" // gf + "huhaiti\0" // ht + "huhispania\0" // es + "huhondulasi\0" // hn + "huhungalia\0" // hu + "huilaki\0" // iq + "huindia\0" // in + "huindonesia\0" // id + "huippuvuoret ja jan mayen\0" // sj + "huislaheli\0" // il + "huitalia\0" // it + "hujamaika\0" // jm + "hujapani\0" // jp + "hujiblalta\0" // gi + "hujibuti\0" // dj + "hujine\0" // gn + "hujinlandi\0" // gl + "hujojia\0" // ge + "hukambodia\0" // kh + "hukameruni\0" // cm + "hukanada\0" // ca + "hukatali\0" // qa + "hukazakistani\0" // kz + "hukenya\0" // ke + "hukepuvede\0" // cv + "hukilibati\0" // ki + "hukiligizistani\0" // kg + "hukodivaa\0" // ci + "hukolea kaskazini\0" // kp + "hukolea kusini\0" // kr + "hukolombia\0" // co + "hukomoro\0" // km + "hukongo\0" // cg + "hukorasia\0" // hr + "hukostarika\0" // cr + "hukuba\0" // cu + "hukuprosi\0" // cy + "hukuwaiti\0" // kw + "huland n kaṛayib\0" // bq + "hulanda\0" // nl + "hulanḍa\0" // nl + "hulaosi\0" // la + "hulasembagi\0" // lu + "hulativia\0" // lv + "hulebanoni\0" // lb + "hulesoto\0" // ls + "hulibelia\0" // lr + "hulibiya\0" // ly + "hulishenteni\0" // li + "hulitwania\0" // lt + "huliyunioni\0" // re + "hulomania\0" // ro + "hulwanda\0" // rw + "humalawi\0" // mw + "humalekani\0" // us + "humalesia\0" // my + "humali\0" // ml + "humalta\0" // mt + "humartiniki\0" // mq + "humasedonia\0" // mk + "humayotte\0" // yt + "humeksiko\0" // mx + "humikronesia\0" // fm + "humisri\0" // eg + "humodivu\0" // mv + "humoldova\0" // md + "humolisi\0" // mu + "humolitania\0" // mr + "humoloko\0" // ma + "humonako\0" // mc + "humongolia\0" // mn + "humontserrati\0" // ms + "humusumbiji\0" // mz + "humyama\0" // mm + "hunamibia\0" // na + "hunauru\0" // nr + "hunduras\0" // hn + "hundurasi\0" // hn + "hunepali\0" // np + "hung kung\0" // hk + "hungaari\0" // hu + "hungakalia\0" // hu + "hungalia\0" // hu + "hungaliya\0" // hu + "hungari\0" // hu + "hungari nutome\0" // hu + "hungaria\0" // hu + "hungariya\0" // hu + "hungarujo\0" // hu + "hungary\0" // hu + "hungorska\0" // hu + "hungri\0" // hu + "hungria\0" // hu + "hungriya\0" // hu + "hungría\0" // hu + "hungária\0" // hu + "hunijeli\0" // ne + "hunijelia\0" // ng + "hunikaragwa\0" // ni + "huniue\0" // nu + "hunolwe\0" // no + "hunyukaledonia\0" // nc + "hunyuzilandi\0" // nz + "huomani\0" // om + "hupakistani\0" // pk + "hupalagwai\0" // py + "hupalau\0" // pw + "hupanama\0" // pa + "hupapua\0" // pg + "hupelu\0" // pe + "hupitkaini\0" // pn + "hupolandi\0" // pl + "hupolinesia ya huufaransa\0" // pf + "hupwetoriko\0" // pr + "husamalino\0" // sm + "husamoa\0" // ws + "husamoa ya humalekani\0" // as + "husantahelena\0" // sh + "husantakitzi na hunevis\0" // kn + "husantalusia\0" // lc + "husantapieri na humikeloni\0" // pm + "husantavisenti na hugrenadini\0" // vc + "husaotome na huprinsipe\0" // st + "husaudi\0" // sa + "husenegali\0" // sn + "hushelisheli\0" // sc + "husiela lioni\0" // sl + "husilia\0" // sy + "husingapoo\0" // sg + "husirilanka\0" // lk + "huslovakia\0" // sk + "huslovenia\0" // si + "husomalia\0" // so + "husudani\0" // sd + "husurinamu\0" // sr + "hutailandi\0" // th + "hutaiwani\0" // tw + "hutajikistani\0" // tj + "hutanzania\0" // tz + "hutimori ya mashariki\0" // tl + "hutogo\0" // tg + "hutokelau\0" // tk + "hutonga\0" // to + "hutrinad na hutobago\0" // tt + "hutunisia\0" // tn + "hutuvalu\0" // tv + "huuajemi\0" // ir + "huubelgiji\0" // be + "huufaransa\0" // fr + "huufini\0" // fi + "huuganda\0" // ug + "huugiliki\0" // gr + "huuhabeshi\0" // et + "huuholanzi\0" // nl + "huuingereza\0" // gb + "huujerumani\0" // de + "huukraini\0" // ua + "huuleno\0" // pt + "huulugwai\0" // uy + "huulusi\0" // ru + "huuswazi\0" // sz + "huuswidi\0" // se + "huuswisi\0" // ch + "huuturuki\0" // tr + "huuturukimenistani\0" // tm + "huuzibekistani\0" // uz + "huvanuatu\0" // vu + "huvatikani\0" // va + "huvenezuela\0" // ve + "huvietinamu\0" // vn + "huwalis na hufutuna\0" // wf + "huyemeni\0" // ye + "huyolodani\0" // jo + "huzambia\0" // zm + "huzimbabwe\0" // zw + "hviderusland\0" // by + "hvideruslandi\0" // by + "hviterussland\0" // by + "hvíta-rússland\0" // by + "hvítarussland\0" // by + "hwngari\0" // hu + "hy lạp\0" // gr + "hytaý\0" // cn + "hà lan\0" // nl + "hàn quốc\0" // kr + "háiti\0" // ht + "háítí\0" // ht + "höörd- und mäcdonald-insle\0" // hm + "hērda sala un makdonalda salas\0" // hm + "hırvatistan\0" // hr + "hōlani\0" // nl + "hōnduras\0" // hn + "hǎetì\0" // ht + "hɔndirasi\0" // hn + "hɔndulàs\0" // hn + "hɔndura\0" // hn + "hɔnduras\0" // hn + "hɔng kɔng nutome\0" // hk + "hɔng kɔng sar tsaina nutome\0" // hk + "hɔngri\0" // hu + "hɔŋgàlè\0" // hu + "hɔ́ngare\0" // hu + "hɛlɛŋ\0" // gr + "hồng kông\0" // hk + "hồng kông, trung quốc\0" // hk + "i-afghanistan\0" // af + "i-albania\0" // al + "i-algeria\0" // dz + "i-american samoa\0" // as + "i-andorra\0" // ad + "i-angola\0" // ao + "i-anguilla\0" // ai + "i-antarctica\0" // aq + "i-antigua ne-barbuda\0" // ag + "i-argentina\0" // ar + "i-armenia\0" // am + "i-aruba\0" // aw + "i-ascension island\0" // ac + "i-australia\0" // au + "i-austria\0" // at + "i-azerbaijan\0" // az + "i-bahamas\0" // bs + "i-bahrain\0" // bh + "i-bangladesh\0" // bd + "i-barbados\0" // bb + "i-belarus\0" // by + "i-belgium\0" // be + "i-belize\0" // bz + "i-benin\0" // bj + "i-bermuda\0" // bm + "i-bhutan\0" // bt + "i-bolivia\0" // bo + "i-bosnia ne-herzegovina\0" // ba + "i-bouvet island\0" // bv + "i-brazil\0" // br + "i-british indian ocean territory\0" // io + "i-british virgin islands\0" // vg + "i-brunei\0" // bn + "i-bulgaria\0" // bg + "i-burkina faso\0" // bf + "i-burundi\0" // bi + "i-cambodia\0" // kh + "i-cameroon\0" // cm + "i-canada\0" // ca + "i-canary islands\0" // ic + "i-cape verde\0" // cv + "i-caribbean netherlands\0" // bq + "i-cayman islands\0" // ky + "i-central african republic\0" // cf + "i-chad\0" // td + "i-chile\0" // cl + "i-china\0" // cn + "i-christmas island\0" // cx + "i-clipperton island\0" // cp + "i-cocos (keeling) islands\0" // cc + "i-colombia\0" // co + "i-comoros\0" // km + "i-congo (drc)\0" // cd + "i-congo (republic)\0" // cg + "i-congo - brazzaville\0" // cg + "i-congo - kinshasa\0" // cd + "i-cook islands\0" // ck + "i-costa rica\0" // cr + "i-croatia\0" // hr + "i-cuba\0" // cu + "i-cueta ne-melilla\0" // ea + "i-curaçao\0" // cw + "i-cyprus\0" // cy + "i-czech republic\0" // cz + "i-czechia\0" // cz + "i-côte d’ivoire\0" // ci + "i-denmark\0" // dk + "i-diego garcia\0" // dg + "i-djibouti\0" // dj + "i-dominica\0" // dm + "i-dominican republic\0" // do + "i-east timor\0" // tl + "i-ecuador\0" // ec + "i-egypt\0" // eg + "i-el salvador\0" // sv + "i-equatorial guinea\0" // gq + "i-eritrea\0" // er + "i-estonia\0" // ee + "i-ethiopia\0" // et + "i-falkland islands\0" // fk + "i-falkland islands (islas malvinas)\0" // fk + "i-faroe islands\0" // fo + "i-fiji\0" // fj + "i-finland\0" // fi + "i-france\0" // fr + "i-french guiana\0" // gf + "i-french polynesia\0" // pf + "i-french southern territories\0" // tf + "i-gabon\0" // ga + "i-gambia\0" // gm + "i-georgia\0" // ge + "i-germany\0" // de + "i-ghana\0" // gh + "i-gibraltar\0" // gi + "i-greece\0" // gr + "i-greenland\0" // gl + "i-grenada\0" // gd + "i-guadeloupe\0" // gp + "i-guam\0" // gu + "i-guatemala\0" // gt + "i-guernsey\0" // gg + "i-guinea\0" // gn + "i-guinea-bissau\0" // gw + "i-guyana\0" // gy + "i-haiti\0" // ht + "i-heard island ne-mcdonald islands\0" // hm + "i-honduras\0" // hn + "i-hong kong\0" // hk + "i-hong kong sar china\0" // hk + "i-hungary\0" // hu + "i-iceland\0" // is + "i-india\0" // in + "i-indonesia\0" // id + "i-iran\0" // ir + "i-iraq\0" // iq + "i-ireland\0" // ie + "i-isle of man\0" // im + "i-italy\0" // it + "i-ivory coast\0" // ci + "i-jamaica\0" // jm + "i-japan\0" // jp + "i-jersey\0" // je + "i-jordan\0" // jo + "i-kazakhstan\0" // kz + "i-kenya\0" // ke + "i-kiribati\0" // ki + "i-kosovo\0" // xk + "i-kuwait\0" // kw + "i-kyrgyzstan\0" // kg + "i-laos\0" // la + "i-latvia\0" // lv + "i-lebanon\0" // lb + "i-liberia\0" // lr + "i-libya\0" // ly + "i-liechtenstein\0" // li + "i-lithuania\0" // lt + "i-luxembourg\0" // lu + "i-macau\0" // mo + "i-macau sar china\0" // mo + "i-macedonia\0" // mk + "i-macedonia (fyrom)\0" // mk + "i-madagascar\0" // mg + "i-malaysia\0" // my + "i-maldives\0" // mv + "i-malta\0" // mt + "i-marshall islands\0" // mh + "i-martinique\0" // mq + "i-mauritania\0" // mr + "i-mauritius\0" // mu + "i-mayotte\0" // yt + "i-mexico\0" // mx + "i-micronesia\0" // fm + "i-moldova\0" // md + "i-monaco\0" // mc + "i-mongolia\0" // mn + "i-montenegro\0" // me + "i-montserrat\0" // ms + "i-morocco\0" // ma + "i-mozambique\0" // mz + "i-myanmar (burma)\0" // mm + "i-namibia\0" // na + "i-nauru\0" // nr + "i-nepal\0" // np + "i-netherlands\0" // nl + "i-new caledonia\0" // nc + "i-new zealand\0" // nz + "i-nicaragua\0" // ni + "i-niger\0" // ne + "i-nigeria\0" // ng + "i-niue\0" // nu + "i-norfolk island\0" // nf + "i-north korea\0" // kp + "i-northern mariana islands\0" // mp + "i-norway\0" // no + "i-oman\0" // om + "i-outlying oceania\0" // qo + "i-pakistan\0" // pk + "i-palau\0" // pw + "i-palestine\0" // ps + "i-palestinian territories\0" // ps + "i-panama\0" // pa + "i-papua new guinea\0" // pg + "i-paraguay\0" // py + "i-peru\0" // pe + "i-philippines\0" // ph + "i-pitcairn islands\0" // pn + "i-poland\0" // pl + "i-portugal\0" // pt + "i-puerto rico\0" // pr + "i-qatar\0" // qa + "i-romania\0" // ro + "i-russia\0" // ru + "i-rwanda\0" // rw + "i-réunion\0" // re + "i-saint barthélemy\0" // bl + "i-saint kitts ne-nevis\0" // kn + "i-saint lucia\0" // lc + "i-saint martin\0" // mf + "i-saint pierre kanye ne-miquelon\0" // pm + "i-saint vincent ne-grenadines\0" // vc + "i-samoa\0" // ws + "i-san marino\0" // sm + "i-saudi arabia\0" // sa + "i-senegal\0" // sn + "i-serbia\0" // rs + "i-seychelles\0" // sc + "i-sierra leone\0" // sl + "i-singapore\0" // sg + "i-sint maarten\0" // sx + "i-slovakia\0" // sk + "i-slovenia\0" // si + "i-solomon islands\0" // sb + "i-somalia\0" // so + "i-south georgia ne-south sandwich islands\0" // gs + "i-south korea\0" // kr + "i-south sudan\0" // ss + "i-spain\0" // es + "i-sri lanka\0" // lk + "i-st. helena\0" // sh + "i-sudan\0" // sd + "i-suriname\0" // sr + "i-svalbard ne-jan mayen\0" // sj + "i-swaziland\0" // sz + "i-sweden\0" // se + "i-switzerland\0" // ch + "i-syria\0" // sy + "i-são tomé kanye ne-príncipe\0" // st + "i-taiwan\0" // tw + "i-tajikistan\0" // tj + "i-tanzania\0" // tz + "i-thailand\0" // th + "i-timor-leste\0" // tl + "i-togo\0" // tg + "i-tokelau\0" // tk + "i-tonga\0" // to + "i-trinidad ne-tobago\0" // tt + "i-tristan da cunha\0" // ta + "i-tunisia\0" // tn + "i-turkey\0" // tr + "i-turkmenistan\0" // tm + "i-turks ne-caicos islands\0" // tc + "i-tuvalu\0" // tv + "i-u.k.\0" // gb + "i-u.s\0" // us + "i-u.s. minor outlying islands\0" // um + "i-u.s. virgin islands\0" // vi + "i-uganda\0" // ug + "i-ukraine\0" // ua + "i-united arab emirates\0" // ae + "i-united kingdom\0" // gb + "i-united states\0" // us + "i-uruguay\0" // uy + "i-uzbekistan\0" // uz + "i-vanuatu\0" // vu + "i-vatican city\0" // va + "i-venezuela\0" // ve + "i-vietnam\0" // vn + "i-wallis ne-futuna\0" // wf + "i-western sahara\0" // eh + "i-yemen\0" // ye + "i-zambia\0" // zm + "i-åland islands\0" // ax + "iamáice\0" // jm + "ibirwa bya kapuveri\0" // cv + "ibirwa bya keyimani\0" // ky + "ibirwa by’isugi by’abongereza\0" // vg + "ibotswana\0" // bw + "iceland\0" // is + "id-danimarka\0" // dk + "ida-timor\0" // tl + "iemen\0" // ye + "iemeni\0" // ye + "ieneo la uingeredha katika bahari hindi\0" // io + "ierland\0" // ie + "ierlân\0" // ie + "iesland\0" // is + "ifisima fya falkland\0" // fk + "ifisima fya kayman\0" // ky + "ifisima fya kook\0" // ck + "ifisima fya mariana fya hukaskazini\0" // mp + "ifisima fya marshal\0" // mh + "ifisima fya solomon\0" // sb + "ifisima fya turki na kaiko\0" // tc + "ifisima fya virgin fya huingereza\0" // vg + "ifisima fya virgin fya humelekani\0" // vi + "igaunija\0" // ee + "ihisima sha norfok\0" // nf + "iiraan\0" // ir + "iirimaa\0" // ie + "iislaand\0" // is + "iisland\0" // is + "iisrael\0" // il + "ijamhuri ya afrika ya pagati\0" // cf + "ijamhuri ya cheki\0" // cz + "ijamhuri ya hidemokrasi ya hukongo\0" // cd + "ijamhuri ya hudominika\0" // do + "ijsland\0" // is + "ikeren\0" // ua + "ikerene\0" // ua + "ikrenn\0" // ua + "ikrɛni\0" // ua + "ikuwadoor\0" // ec + "ikuwadɔ\0" // ec + "ikwadur\0" // ec + "ikwaḍur\0" // ec + "ikwaṭur\0" // ec + "ikweda\0" // ec + "ikwembeiyotab mariana nebo murot katam\0" // mp + "ikwembeiyotab marshall\0" // mh + "ikwembeiyotab norfork\0" // nf + "ikwembeiyotab solomon\0" // sb + "ikwembeiyotab turks ak caicos\0" // tc + "ikwembeyotab british virgin\0" // vg + "ikwembeyotab cape verde\0" // cv + "ikwembeyotab cayman\0" // ky + "ikwembeyotab cook\0" // ck + "ikwembeyotab falkland\0" // fk + "ikwemweiyotab amerika\0" // vi + "il maliyanɛ u muɛnɛ́\0" // mp + "il nɔ́lfɔ́lɔk\0" // nf + "il salomɔ́ŋ\0" // sb + "il-bahamas\0" // bs + "il-bahrain\0" // bh + "il-bangladesh\0" // bd + "il-belarussja\0" // by + "il-belize\0" // bz + "il-belġju\0" // be + "il-benin\0" // bj + "il-bhutan\0" // bt + "il-bolivja\0" // bo + "il-botswana\0" // bw + "il-bożnija-ħerzegovina\0" // ba + "il-brażil\0" // br + "il-brunei\0" // bn + "il-bulgarija\0" // bg + "il-burkina faso\0" // bf + "il-burundi\0" // bi + "il-costa rica\0" // cr + "il-djibouti\0" // dj + "il-filippini\0" // ph + "il-finlandja\0" // fi + "il-gabon\0" // ga + "il-gambja\0" // gm + "il-georgia\0" // ge + "il-georgia tan-nofsinhar u l-gżejjer sandwich tan-nofsinhar\0" // gs + "il-ghana\0" // gh + "il-greċja\0" // gr + "il-guinea\0" // gn + "il-guinea ekwatorjali\0" // gq + "il-guinea-bissau\0" // gw + "il-guyana\0" // gy + "il-guyana franċiża\0" // gf + "il-gwatemala\0" // gt + "il-gżejjer aland\0" // ax + "il-gżejjer canary\0" // ic + "il-gżejjer cayman\0" // ky + "il-gżejjer faeroe\0" // fo + "il-gżejjer falkland\0" // fk + "il-gżejjer falkland (il-gżejjer malvinas)\0" // fk + "il-gżejjer heard u l-gżejjer mcdonald\0" // hm + "il-gżejjer minuri mbiegħda tal-istati uniti\0" // um + "il-gżejjer solomon\0" // sb + "il-gżejjer turks u caicos\0" // tc + "il-gżejjer verġni brittaniċi\0" // vg + "il-gżejjer verġni tal-istati uniti\0" // vi + "il-gżira christmas\0" // cx + "il-gżira clipperton\0" // cp + "il-haiti\0" // ht + "il-honduras\0" // hn + "il-jemen\0" // ye + "il-kambodja\0" // kh + "il-kamerun\0" // cm + "il-kanada\0" // ca + "il-każakistan\0" // kz + "il-kenja\0" // ke + "il-kirgiżistan\0" // kg + "il-kolombja\0" // co + "il-kongo - brazzaville\0" // cg + "il-korea ta’ fuq\0" // kp + "il-korea t’isfel\0" // kr + "il-kosta tal-avorju\0" // ci + "il-kroazja\0" // hr + "il-kuwajt\0" // kw + "il-laos\0" // la + "il-latvja\0" // lv + "il-lesoto\0" // ls + "il-libanu\0" // lb + "il-liberja\0" // lr + "il-libja\0" // ly + "il-liechtenstein\0" // li + "il-litwanja\0" // lt + "il-lussemburgu\0" // lu + "il-macao\0" // mo + "il-malasja\0" // my + "il-malawi\0" // mw + "il-maldivi\0" // mv + "il-mali\0" // ml + "il-marokk\0" // ma + "il-mauritania\0" // mr + "il-messiku\0" // mx + "il-moldova\0" // md + "il-mongolja\0" // mn + "il-montenegro\0" // me + "il-mozambique\0" // mz + "il-myanmar/burma\0" // mm + "il-pakistan\0" // pk + "il-palestina\0" // ps + "il-panama\0" // pa + "il-paragwaj\0" // py + "il-perù\0" // pe + "il-polonja\0" // pl + "il-portugall\0" // pt + "il-qatar\0" // qa + "il-venezwela\0" // ve + "il-vjetnam\0" // vn + "il-ġamajka\0" // jm + "il-ġappun\0" // jp + "il-ġermanja\0" // de + "il-ġordan\0" // jo + "ilaki\0" // iq + "ile heard et iles mcdonald\0" // hm + "ilesotho\0" // ls + "ilha bouvet\0" // bv + "ilha buve\0" // bv + "ilha christmas\0" // cx + "ilha de ascensão\0" // ac + "ilha de clipperton\0" // cp + "ilha de man\0" // im + "ilha di asensãu\0" // ac + "ilha di man\0" // im + "ilha di natal\0" // cx + "ilha do natal\0" // cx + "ilha kliperton\0" // cp + "ilha norfolk\0" // nf + "ilhas aland\0" // ax + "ilhas británikas di índiku\0" // io + "ilhas caiman\0" // ky + "ilhas caimão\0" // ky + "ilhas canárias\0" // ic + "ilhas cayman\0" // ky + "ilhas cocos (keeling)\0" // cc + "ilhas cook\0" // ck + "ilhas di oseania\0" // qo + "ilhas dos cocos (keeling)\0" // cc + "ilhas falkland\0" // fk + "ilhas falkland (ilhas malvinas)\0" // fk + "ilhas faroe\0" // fo + "ilhas faroé\0" // fo + "ilhas geórgia do sul e sandwich do sul\0" // gs + "ilhas heard e mcdonald\0" // hm + "ilhas heard i mcdonald\0" // hm + "ilhas jeórjia di sul i sanduixi di sul\0" // gs + "ilhas kaimãu\0" // ky + "ilhas kokus (keeling)\0" // cc + "ilhas kuk\0" // ck + "ilhas malvinas\0" // fk + "ilhas marianas di norti\0" // mp + "ilhas marianas do norte\0" // mp + "ilhas marshall\0" // mh + "ilhas marxal\0" // mh + "ilhas menores afastadas dos eua\0" // um + "ilhas menores distantes dos eua\0" // um + "ilhas minoris distantis de stadus unidus\0" // um + "ilhas norfolk\0" // nf + "ilhas pitcairn\0" // pn + "ilhas salomão\0" // sb + "ilhas salumãu\0" // sb + "ilhas turcas e caicos\0" // tc + "ilhas turkas i kaikus\0" // tc + "ilhas turks e caicos\0" // tc + "ilhas virgens americanas\0" // vi + "ilhas virgens britânicas\0" // vg + "ilhas virgens dos eua\0" // vi + "ilhas virjens británikas\0" // vg + "ilhas virjens merkanas\0" // vi + "ilhas åland\0" // ax + "ililánd\0" // ie + "illa bouvet\0" // bv + "illa christmas\0" // cx + "illa clipperton\0" // cp + "illa de ascensión\0" // ac + "illa de la reunió\0" // re + "illa de l’ascensió\0" // ac + "illa de man\0" // im + "illa de nadal\0" // cx + "illa heard e illas mcdonald\0" // hm + "illa heard i illes mcdonald\0" // hm + "illa norfolk\0" // nf + "illas aland\0" // ax + "illas caimán\0" // ky + "illas canarias\0" // ic + "illas cocos (keeling)\0" // cc + "illas cook\0" // ck + "illas feroe\0" // fo + "illas malvinas\0" // fk + "illas malvinas (falkland)\0" // fk + "illas marianas do norte\0" // mp + "illas marshall\0" // mh + "illas pitcairn\0" // pn + "illas salomón\0" // sb + "illas turks e caicos\0" // tc + "illas ultramarinas dos eua\0" // um + "illas virxes británicas\0" // vg + "illas virxes estadounidenses\0" // vi + "illas xeorxia do sur e sandwich do sur\0" // gs + "illes caiman\0" // ky + "illes canàries\0" // ic + "illes cocos\0" // cc + "illes cook\0" // ck + "illes fèroe\0" // fo + "illes geòrgia del sud i sandwich del sud\0" // gs + "illes malvines\0" // fk + "illes malvines (illes falkland)\0" // fk + "illes mariannes del nord\0" // mp + "illes marshall\0" // mh + "illes perifèriques menors dels eua\0" // um + "illes pitcairn\0" // pn + "illes salomó\0" // sb + "illes turks i caicos\0" // tc + "illes verges britàniques\0" // vg + "illes verges nord-americanes\0" // vi + "illes åland\0" // ax + "ilák\0" // iq + "ilán\0" // ie + "iláŋ\0" // ir + "ilâk\0" // iq + "imaaraadka carabta ee midoobay\0" // ae + "imalawi\0" // mw + "imali\0" // ml + "imarat tiεrabin tidduklin\0" // ae + "imiláat i paaláap\0" // ae + "in-namibja\0" // na + "in-nepal\0" // np + "in-netherlands\0" // nl + "in-netherlands tal-karibew\0" // bq + "in-nikaragwa\0" // ni + "in-niġer\0" // ne + "in-niġerja\0" // ng + "in-norveġja\0" // no + "inde\0" // in + "indi\0" // in + "india\0" // in + "india nutome\0" // in + "indiab\0" // in + "indiako ozeanoko lurralde britainiarra\0" // io + "indie\0" // in + "indien\0" // in + "indija\0" // in + "indijas okeāna britu teritorija\0" // io + "indije\0" // in + "indijos vandenyno britų sritis\0" // io + "indiska\0" // in + "indiya\0" // in + "indië\0" // in + "indland\0" // in + "indoneesia\0" // id + "indoneesie\0" // id + "indoneesije\0" // id + "indoneesiya\0" // id + "indoneezi\0" // id + "indoneeziya\0" // id + "indonesi\0" // id + "indonesia\0" // id + "indonesia nutome\0" // id + "indonesiab\0" // id + "indonesie\0" // id + "indonesien\0" // id + "indonesiya\0" // id + "indonesië\0" // id + "indoneska\0" // id + "indonethia\0" // id + "indonezi\0" // id + "indonezia\0" // id + "indonezija\0" // id + "indonezio\0" // id + "indoneziska\0" // id + "indoneziya\0" // id + "indoneziýa\0" // id + "indonezja\0" // id + "indonèsia\0" // id + "indonésia\0" // id + "indonésie\0" // id + "indonézia\0" // id + "indonēzija\0" // id + "indonɛsí\0" // id + "indu laboo\0" // in + "indunizi\0" // id + "indunizya\0" // id + "indunusiya\0" // id + "indy\0" // in + "indìà\0" // in + "indí\0" // in + "indònèsià\0" // id + "indónesía\0" // id + "indōnezija\0" // id + "indɔnehyia\0" // id + "inggris raya\0" // gb + "ingilíís\0" // gb + "iningizimu afrika\0" // za + "inizi cayman\0" // ky + "inizi cook\0" // ck + "inizi diabell ar stadoù-unanet\0" // um + "inizi faero\0" // fo + "inizi falkland\0" // fk + "inizi falkland (inizi maloù)\0" // fk + "inizi georgia ar su hag inizi sandwich ar su\0" // gs + "inizi gwercʼh ar stadoù-unanet\0" // vi + "inizi gwercʼh breizh-veur\0" // vg + "inizi heard ha mcdonald\0" // hm + "inizi kanariez\0" // ic + "inizi kokoz\0" // cc + "inizi mariana an norzh\0" // mp + "inizi marshall\0" // mh + "inizi salomon\0" // sb + "inizi turks ha caicos\0" // tc + "inizi åland\0" // ax + "innis tìle\0" // is + "insel man\0" // im + "insla bouvet\0" // bv + "insla da christmas\0" // cx + "insla da man\0" // im + "insla norfolk\0" // nf + "inslas aland\0" // ax + "inslas cayman\0" // ky + "inslas cocos\0" // cc + "inslas cook\0" // ck + "inslas da heard e da mcdonald\0" // hm + "inslas da marshall\0" // mh + "inslas dal falkland\0" // fk + "inslas feroe\0" // fo + "inslas mariannas dal nord\0" // mp + "inslas pitschnas perifericas dals stadis unids da l’america\0" // um + "inslas turks e caicos\0" // tc + "inslas virginas americanas\0" // vi + "inslas virginas britannicas\0" // vg + "insle vo män\0" // im + "insula ascension\0" // ac + "insula bouvet\0" // bv + "insula christmas\0" // cx + "insula clipperton\0" // cp + "insula heard și insulele mcdonald\0" // hm + "insula man\0" // im + "insula norfolk\0" // nf + "insulele canare\0" // ic + "insulele caraibe olandeze\0" // bq + "insulele cayman\0" // ky + "insulele cocos (keeling)\0" // cc + "insulele cook\0" // ck + "insulele falkland\0" // fk + "insulele falkland (insulele malvine)\0" // fk + "insulele feroe\0" // fo + "insulele mariane de nord\0" // mp + "insulele marshall\0" // mh + "insulele pitcairn\0" // pn + "insulele solomon\0" // sb + "insulele turks și caicos\0" // tc + "insulele virgine americane\0" // vi + "insulele virgine britanice\0" // vg + "insulele åland\0" // ax + "insulele îndepărtate ale s.u.a.\0" // um + "intara y’ubwongereza yo mu birwa by’abahindi\0" // io + "intia\0" // in + "iordania\0" // jo + "iordaniya\0" // jo + "iordaniýa\0" // jo + "ioràc\0" // iq + "ioràn\0" // ir + "iosrael\0" // il + "ipar korea\0" // kp + "ipar mariana uharteak\0" // mp + "ir-renju unit\0" // gb + "ir-repubblika demokratika tal-kongo\0" // cd + "ir-repubblika dominicana\0" // do + "ir-repubblika tal-kongo\0" // cg + "ir-repubblika ċeka\0" // cz + "ir-repubblika ċentru-afrikana\0" // cf + "ir-reġjun amministrattiv speċjali tal-macao tar-repubblika tal-poplu taċ-ċina\0" // mo + "ir-reġjun amministrattiv speċjali ta’ hong kong tar-repubblika tal-poplu taċ-ċina\0" // hk + "ir-rumanija\0" // ro + "ir-russja\0" // ru + "ir-rwanda\0" // rw + "ira\0" // ir + "iraak\0" // iq + "iraaka\0" // iq + "iraan\0" // ir + "iraani\0" // ir + "irac\0" // iq + "irag\0" // iq + "irak\0" // iq + "irakas\0" // iq + "iraki\0" // iq + "irako\0" // iq + "iran\0" // ir + "iran nutome\0" // ir + "iranas\0" // ir + "irani\0" // ir + "iranni\0" // ir + "irano\0" // ir + "iraq\0" // iq + "iraqdukɔ\0" // iq + "iraqi\0" // iq + "iraque\0" // iq + "iraŋ\0" // ir + "iraƙi\0" // iq + "ireland\0" // ie + "ireland nutome\0" // ie + "irelande\0" // ie + "irelandɛ\0" // ie + "irerandi\0" // ie + "irigwe\0" // uy + "irigwei\0" // uy + "irilandi\0" // ie + "irisi\0" // ru + "iritiria\0" // er + "iritirya\0" // er + "iritreia\0" // er + "iritrya\0" // er + "iriši laboo\0" // ru + "irland\0" // ie + "irlanda\0" // ie + "irlande\0" // ie + "irlandi\0" // ie + "irlandia\0" // ie + "irlandiya\0" // ie + "irlandiýa\0" // ie + "irlando\0" // ie + "irlandu\0" // ie + "irlandy\0" // ie + "irlandë\0" // ie + "irlannda\0" // ie + "irlanti\0" // ie + "irlanḍa\0" // ie + "irlànd\0" // ie + "irlánda\0" // ie + "irlânde\0" // ie + "iroq\0" // iq + "irrland\0" // ie + "irska\0" // ie + "irsko\0" // ie + "iráaki\0" // iq + "irág\0" // iq + "irák\0" // iq + "irán\0" // ir + "iráŋ\0" // ir + "irâ\0" // ir + "irâki\0" // iq + "irã\0" // ir + "irão\0" // ir + "irãu\0" // ir + "iräan\0" // ir + "irāka\0" // iq + "irāna\0" // ir + "irəlándə\0" // ie + "is-samoa amerikana\0" // as + "is-saħara tal-punent\0" // eh + "is-senegal\0" // sn + "is-serbja\0" // rs + "is-seychelles\0" // sc + "is-sirja\0" // sy + "is-slovakkja\0" // sk + "is-slovenja\0" // si + "is-somalja\0" // so + "is-sri lanka\0" // lk + "is-sudan\0" // sd + "is-sudan t’isfel\0" // ss + "is-suriname\0" // sr + "is-swaziland\0" // sz + "isbeyn\0" // es + "ishujt alandë\0" // ax + "ishujt e marianës veriore\0" // mp + "ishujt e virgjër britanikë\0" // vg + "ishujt e virgjër të shba-së\0" // vi + "ishujt falkland\0" // fk + "ishujt falkland (malvine)\0" // fk + "ishujt faroe\0" // fo + "ishujt hërd e mekdonald\0" // hm + "ishujt kajman\0" // ky + "ishujt kanarie\0" // ic + "ishujt kokos\0" // cc + "ishujt kuk\0" // ck + "ishujt marshall\0" // mh + "ishujt periferikë të shba-së\0" // um + "ishujt pitkern\0" // pn + "ishujt solomon\0" // sb + "ishujt turks dhe kaikos\0" // tc + "ishulli asenshion\0" // ac + "ishulli bove\0" // bv + "ishulli i krishtlindjes\0" // cx + "ishulli i manit\0" // im + "ishulli klipërton\0" // cp + "ishulli norfolk\0" // nf + "isilaeli\0" // il + "isilande\0" // is + "isilandi\0" // is + "isilandɛ\0" // is + "isiraeli\0" // il + "isiraheli\0" // il + "isirairi\0" // il + "isirayele\0" // il + "isirayeli\0" // il + "isirayelɛ\0" // il + "isiraéeli\0" // il + "isiwa sya cook\0" // ck + "isiwa sya kayman\0" // ky + "isiwa sya solomon\0" // sb + "isla ascensión\0" // ac + "isla bouvet\0" // bv + "isla christmas\0" // cx + "isla clipperton\0" // cp + "isla de la ascensión\0" // ac + "isla de man\0" // im + "isla de navidad\0" // cx + "isla norfolk\0" // nf + "islaeli\0" // il + "island\0" // is + "islanda\0" // is + "islande\0" // is + "islandi\0" // is + "islandia\0" // is + "islandija\0" // is + "islandiya\0" // is + "islandiýa\0" // is + "islando\0" // is + "islandska\0" // is + "islandy\0" // is + "islandë\0" // is + "islannda\0" // is + "islanti\0" // is + "islanḍa\0" // is + "islas caimán\0" // ky + "islas canarias\0" // ic + "islas cocos\0" // cc + "islas cook\0" // ck + "islas feroe\0" // fo + "islas georgia del sur y sandwich del sur\0" // gs + "islas heard y mcdonald\0" // hm + "islas malvinas\0" // fk + "islas malvinas (islas falkland)\0" // fk + "islas marianas del norte\0" // mp + "islas marshall\0" // mh + "islas menores alejadas de ee. uu.\0" // um + "islas menores alejadas de los ee.uu.\0" // um + "islas pitcairn\0" // pn + "islas salomón\0" // sb + "islas turcas y caicos\0" // tc + "islas ultramarinas\0" // qo + "islas ultramarinas de ee.uu.\0" // um + "islas vírgenes británicas\0" // vg + "islas vírgenes de ee. uu.\0" // vi + "islas vírgenes de los estados unidos\0" // vi + "islas åland\0" // ax + "islayɛ̂l\0" // il + "isle of man\0" // im + "islla ascensión\0" // ac + "islla bouvet\0" // bv + "islla christmas\0" // cx + "islla clipperton\0" // cp + "islla de man\0" // im + "islla norfolk\0" // nf + "islles aland\0" // ax + "islles caimán\0" // ky + "islles canaries\0" // ic + "islles cocos (keeling)\0" // cc + "islles cook\0" // ck + "islles feroe\0" // fo + "islles fixi\0" // fj + "islles heard y mcdonald\0" // hm + "islles malvines (falkland islands)\0" // fk + "islles marianes del norte\0" // mp + "islles marshall\0" // mh + "islles perifériques menores de los ee.xx.\0" // um + "islles pitcairn\0" // pn + "islles salomón\0" // sb + "islles turques y caicos\0" // tc + "islles vírxenes americanes\0" // vi + "islles vírxenes britániques\0" // vg + "islles xeorxa del sur y sandwich del sur\0" // gs + "islànd\0" // is + "islàndia\0" // is + "isláand\0" // is + "islánda\0" // is + "islándia\0" // is + "islânde\0" // is + "islândia\0" // is + "iso-britannia\0" // gb + "isola ascensione\0" // ac + "isola bouvet\0" // bv + "isola christmas\0" // cx + "isola di clipperton\0" // cp + "isola di man\0" // im + "isola norfolk\0" // nf + "isole canarie\0" // ic + "isole cayman\0" // ky + "isole cocos (keeling)\0" // cc + "isole cook\0" // ck + "isole falkland\0" // fk + "isole falkland (isole malvine)\0" // fk + "isole fær øer\0" // fo + "isole heard e mcdonald\0" // hm + "isole marianne settentrionali\0" // mp + "isole marshall\0" // mh + "isole norfolk\0" // nf + "isole pitcairn\0" // pn + "isole salomone\0" // sb + "isole turks e caicos\0" // tc + "isole vergini americane\0" // vi + "isole vergini britanniche\0" // vg + "isole åland\0" // ax + "ispanija\0" // es + "ispaniya\0" // es + "ispaniýa\0" // es + "israaʼiil\0" // il + "israa’iila\0" // il + "israeil\0" // il + "israel\0" // il + "israel nutome\0" // il + "israele\0" // il + "israeli\0" // il + "israelo\0" // il + "israely\0" // il + "israyel\0" // il + "israyil\0" // il + "israêl\0" // il + "israël\0" // il + "israëli\0" // il + "israɛ́l\0" // il + "isroil\0" // il + "isràɛ̂l\0" // il + "istočni timor\0" // tl + "istunya\0" // ee + "isule bouvet\0" // bv + "isule christmas\0" // cx + "isule clipperton\0" // cp + "isule di man\0" // im + "isule heard e isulis mcdonald\0" // hm + "isulis aland\0" // ax + "isulis canariis\0" // ic + "isulis cayman\0" // ky + "isulis cocos\0" // cc + "isulis cook\0" // ck + "isulis falkland\0" // fk + "isulis falkland (isulis malvinas)\0" // fk + "isulis faroe\0" // fo + "isulis mariana dal nord\0" // mp + "isulis marshall\0" // mh + "isulis periferichis minôrs dai stâts unîts\0" // um + "isulis salomon\0" // sb + "isulis turks e caicos\0" // tc + "isulis vergjinis americanis\0" // vi + "isulis vergjinis britanichis\0" // vg + "isuraeli\0" // il + "iswaasilaand\0" // sz + "iswidhan\0" // se + "isípit\0" // eg + "isəlándə\0" // is + "isəraɛ́l\0" // il + "isṭunya\0" // ee + "it-tajlandja\0" // th + "it-tajwan\0" // tw + "it-tanzanija\0" // tz + "it-taġikistan\0" // tj + "it-territorji franċiżi tan-nofsinhar\0" // tf + "it-territorji palestinjani\0" // ps + "it-togo\0" // tg + "it-tokelau\0" // tk + "it-tuneżija\0" // tn + "it-turkija\0" // tr + "it-turkmenistan\0" // tm + "itaali\0" // it + "itaalia\0" // it + "itaalie\0" // it + "itaalije\0" // it + "itali\0" // it + "italia\0" // it + "italia nutome\0" // it + "italiab\0" // it + "italie\0" // it + "italien\0" // it + "italija\0" // it + "italiya\0" // it + "italië\0" // it + "italiýa\0" // it + "italska\0" // it + "italujo\0" // it + "italy\0" // it + "italí\0" // it + "italî\0" // it + "italùii\0" // it + "italĩ\0" // it + "itare\0" // it + "ithiopia\0" // et + "ithraeli\0" // il + "itoobiya\0" // et + "itoophiyaa\0" // et + "ityubya\0" // et + "ityupya\0" // et + "itàlia\0" // it + "itália\0" // it + "itálie\0" // it + "itáliɛn\0" // it + "itä-timor\0" // tl + "itävalta\0" // at + "itālija\0" // it + "ivoorkus\0" // ci + "ivoorkusi\0" // ci + "ivoorkust\0" // ci + "ivori kositi\0" // ci + "ivorikosti\0" // ci + "ivory coast\0" // ci + "ivory kost nutome\0" // ci + "iwerddon\0" // ie + "iwerzhon\0" // ie + "iwunak idduklen n amirika\0" // us + "iwunak munnin n mirikan\0" // us + "iyášiča makȟóčhe\0" // de + "izelvroioù\0" // nl + "izimbabwe\0" // zw + "izinga rya filikilandi\0" // fk + "izinga rya komore\0" // km + "izinga rya kuku\0" // ck + "izinga rya marishari\0" // mh + "izinga rya morise\0" // mu + "izinga rya norufoluke\0" // nf + "izinga rya shipure\0" // cy + "iziraʼila\0" // il + "izland\0" // is + "izrael\0" // il + "izraelis\0" // il + "izrayil\0" // il + "izraēla\0" // il + "izuraeri\0" // il + "ißland\0" // is + "ißraäl\0" // il + "iémen\0" // ye + "iêmen\0" // ye + "iòrdan\0" // jo + "iāpana\0" // jp + "iċ-chad\0" // td + "iċ-ċili\0" // cl + "iż-żambja\0" // zm + "iż-żimbabwe\0" // zw + "iżrael\0" // il + "iṭalya\0" // it + "jaad\0" // td + "jaana\0" // gh + "jaapaan\0" // jp + "jaapan\0" // jp + "jaapoŋ\0" // jp + "jabaan\0" // jp + "jabuhn\0" // ga + "jabuuti\0" // dj + "jamaayik\0" // jm + "jamaica\0" // jm + "jamaicab\0" // jm + "jamaika\0" // jm + "jamaiki\0" // jm + "jamajka\0" // jm + "jamajko\0" // jm + "jaman\0" // de + "jamayika\0" // jm + "jamayka\0" // jm + "jamaík\0" // jm + "jamaíka\0" // jm + "jamaïka\0" // jm + "jamaïque\0" // jm + "jamba kuwa lumaã\0" // gl + "jambija\0" // gm + "jameyka\0" // jm + "jamhuli ya afrika ya gati\0" // cf + "jamhuli ya cheki\0" // cz + "jamhuli ya dominika\0" // do + "jamhuli ya kidemoklasia ya kongo\0" // cd + "jamhuri ya afrika ya kati\0" // cf + "jamhuri ya cheki\0" // cz + "jamhuri ya dominika\0" // do + "jamhuri ya kidemokrasia ya kongo\0" // cd + "jamhuri ya kidemokrathia ya kongo\0" // cd + "jamhuri ya kongo\0" // cg + "jamhuriyar afirka ta tsakiya\0" // cf + "jamhuriyar cak\0" // cz + "jamhuriyar dimokuraɗiyyar kongo\0" // cd + "jamhuriyar dominika\0" // do + "jamhuuriyadda afrikada dhexe\0" // cf + "jamhuuriyadda dimuquraadiga kongo\0" // cd + "jamhuuriyadda domeenika\0" // do + "jamhuuriyadda jek\0" // cz + "jammaika\0" // jm + "jamuhuli ya afilika ya paching’ati\0" // cf + "jamuhuli ya afilika ya pakhati\0" // cf + "jamuhuli ya chechi\0" // cz + "jamuhuli ya chidemoklasia ya kukongo\0" // cd + "jamuhuli ya dominika\0" // do + "jamuhuli ya kidemokilasiya ya kongo\0" // cd + "jamuhuli ya sheki\0" // cz + "jamuhúuri ya chéeki\0" // cz + "jamuhúuri ya dominɨka\0" // do + "jamuhúuri ya kɨdemokurasía ya kóongo\0" // cd + "jamus\0" // de + "jamyika\0" // jm + "jamáika\0" // jm + "jamáĩ\0" // de + "jamân\0" // de + "jamāika\0" // jm + "janubiy afrika respublikasi\0" // za + "janubiy georgiya va janubiy sendvich orollari\0" // gs + "janubiy koreya\0" // kr + "janubiy sudan\0" // ss + "japan\0" // jp + "japana\0" // jp + "japani\0" // jp + "japanni\0" // jp + "japanska\0" // jp + "japanujo\0" // jp + "japańska\0" // jp + "japaŋ\0" // jp + "japon\0" // jp + "japoni\0" // jp + "japonia\0" // jp + "japonija\0" // jp + "japonska\0" // jp + "japonsko\0" // jp + "japonya\0" // jp + "jappu\0" // jp + "japu\0" // jp + "japáani\0" // jp + "japán\0" // jp + "japána\0" // jp + "japão\0" // jp + "japãu\0" // jp + "japó\0" // jp + "japón\0" // jp + "japāna\0" // jp + "japānija\0" // jp + "japɔn\0" // jp + "japɔ́ŋ\0" // jp + "japɔ̂n\0" // jp + "jarmal\0" // de + "jaunkaledonija\0" // nc + "jaunzēlande\0" // nz + "jav\0" // us + "jaziiradaha fooklaan\0" // fk + "jaziiradda cook\0" // ck + "jazoir\0" // dz + "jeeme\0" // ye + "jeemen\0" // ye + "jelezy\0" // je + "jemen\0" // ye + "jemena\0" // ye + "jemenas\0" // ye + "jemeno\0" // ye + "jengéesi bhɛɛ lɔ musu tiŋŋɛ\0" // vg + "jengéesi gbawoe índiya kɔiyɛ lɔ\0" // io + "jeorgii\0" // ge + "jeorrjije\0" // ge + "jepang\0" // jp + "jepun\0" // jp + "jerman\0" // de + "jermenija\0" // am + "jersey\0" // je + "jersi\0" // je + "jerzenez\0" // je + "jeworujiya\0" // ge + "jibaraltar\0" // gi + "jibeletale\0" // gi + "jibhurata\0" // gi + "jibhuti\0" // dj + "jiblalta\0" // gi + "jibralltaa\0" // gi + "jibralta\0" // gi + "jibraltaar\0" // gi + "jibraltar\0" // gi + "jibraltá\0" // gi + "jibralṭar\0" // gi + "jibulalita\0" // gi + "jiburálita\0" // gi + "jibuti\0" // dj + "jibutii\0" // dj + "jibuuti\0" // dj + "jibúti\0" // dj + "jibúuti\0" // dj + "jihoafrická republika\0" // za + "jili\0" // cl + "jinneha\0" // gn + "jinneha_bißau\0" // gw + "jiwarjiya\0" // ge + "jiyurji\0" // ge + "jiórjia\0" // ge + "jižní georgie a jižní sandwichovy ostrovy\0" // gs + "jižní korea\0" // kr + "jižní súdán\0" // ss + "jiṛzi\0" // je + "jjappun\0" // jp + "jjibuti\0" // dj + "jk\0" // gb + "jodani\0" // jo + "jojia\0" // ge + "jojiya\0" // ge + "joorjiya\0" // ge + "jordaania\0" // jo + "jordaanie\0" // jo + "jordaanije\0" // jo + "jordan\0" // jo + "jordani\0" // jo + "jordania\0" // jo + "jordanie\0" // jo + "jordanien\0" // jo + "jordanija\0" // jo + "jordanio\0" // jo + "jordaniska\0" // jo + "jordaniya\0" // jo + "jordanië\0" // jo + "jordanni\0" // jo + "jordània\0" // jo + "jordánia\0" // jo + "jordánsko\0" // jo + "jordânia\0" // jo + "jordānija\0" // jo + "joriji\0" // ge + "jorjia\0" // ge + "jorondani\0" // jo + "joulusaari\0" // cx + "jrenahda\0" // gd + "jriescheland\0" // gr + "jruußbrettannije\0" // gb + "jröhnland\0" // gl + "juadelupp\0" // gp + "juburalitari\0" // gi + "juham\0" // gu + "juhúuri ya afɨrɨka ya katɨ katɨ\0" // cf + "jujaana\0" // gy + "jul-qeqertaq\0" // cx + "juleøen\0" // cx + "julön\0" // cx + "jungtiniai arabų emyratai\0" // ae + "jungtinių valstijų mažosios tolimosios salos\0" // um + "jungtinių valstijų mergelių salos\0" // vi + "jungtinė karalystė\0" // gb + "jungtinės valstijos\0" // us + "juodkalnija\0" // me + "juovllat-sullot\0" // cx + "juovlâsuálui\0" // cx + "jurjya\0" // ge + "juwatemahla\0" // gt + "južna afrika (republika)\0" // za + "južna džordžija i južna sendvič ostrva\0" // gs + "južna džordžija i južna sendvička ostrva\0" // gs + "južna georgia in južni sandwichevi otoki\0" // gs + "južna georgija i južni sendvički otoci\0" // gs + "južna georgiska a južne sandwichowe kupy\0" // gs + "južna koreja\0" // kr + "južni sudan\0" // ss + "južnoafrička republika\0" // za + "južnoafriška republika\0" // za + "južny sudan\0" // ss + "južná afrika\0" // za + "južná georgia a južné sandwichove ostrovy\0" // gs + "južná kórea\0" // kr + "južný sudán\0" // ss + "jyurjya\0" // ge + "jàmàikà\0" // jm + "jämme\0" // ye + "jéme\0" // ye + "jìbutì\0" // dj + "jódani\0" // jo + "jójia\0" // ge + "jólaey\0" // cx + "jólaoyggjin\0" // cx + "jórdanía\0" // jo + "jõulusaar\0" // cx + "jöönsei\0" // gg + "jööseh\0" // je + "jɔrdania\0" // jo + "jɔrdán\0" // jo + "jɔrgia\0" // ge + "jɔrjí\0" // ge + "jɔɔdaŋ\0" // jo + "jɔɔjiya\0" // ge + "kaaimaneilanden\0" // ky + "kaaimanseilande\0" // ky + "kaaledooni taagaa\0" // nc + "kaameruun\0" // cm + "kaap verde\0" // cv + "kaapverdië\0" // cv + "kaazakstan\0" // kz + "kab-glas\0" // cv + "kabo verde\0" // cv + "kabo werde\0" // cv + "kabo-verde\0" // cv + "kabo-verdo\0" // cv + "kabo-werde\0" // cv + "kaboverde\0" // cv + "kabu verdi\0" // cv + "kabwɛ᷆r\0" // cv + "kaiman uharteak\0" // ky + "kaiman-eilannen\0" // ky + "kaimaninselen\0" // ky + "kaimaninseln\0" // ky + "kaimaninslä\0" // ky + "kaimanisaared\0" // ky + "kaimanu salas\0" // ky + "kaimanų salos\0" // ky + "kajmanie ostrovy\0" // ky + "kajmaniske kupy\0" // ky + "kajmanska ostrva\0" // ky + "kajmanske kupy\0" // ky + "kajmanski otoci\0" // ky + "kajmanski otoki\0" // ky + "kajmanské ostrovy\0" // ky + "kajmany\0" // ky + "kajmán-szigetek\0" // ky + "kalaallit nunaat\0" // gl + "kaledoni koura\0" // nc + "kaledoni nwanah\0" // nc + "kaledoni wa mumu\0" // nc + "kaledoni ya sika\0" // nc + "kaledonia baru\0" // nc + "kaledonia berria\0" // nc + "kaledonia e re\0" // nc + "kaledonia foforo\0" // nc + "kaledonia nevez\0" // nc + "kaledoniya mafuu\0" // nc + "kaledoniya sabuwa\0" // nc + "kaledonya mupya\0" // nc + "kaledónia ifya\0" // nc + "kalendoia ĩnjeru\0" // nc + "kalidoninya námaá\0" // nc + "kalidunya tamaynut\0" // nc + "kalipiane fakahōlani\0" // bq + "kalisi\0" // gr + "kalkan gungey\0" // fk + "kalėdų sala\0" // cx + "kalɛdoní anyɔ́n\0" // nc + "kamalun\0" // cm + "kamaru\0" // cm + "kamarõis\0" // cm + "kamboca\0" // kh + "kambodia\0" // kh + "kambodia nutome\0" // kh + "kambodiya\0" // kh + "kambodj\0" // kh + "kambodja\0" // kh + "kambodscha\0" // kh + "kambodsja\0" // kh + "kambodso\0" // kh + "kambodya\0" // kh + "kambodza\0" // kh + "kambodzsa\0" // kh + "kambodía\0" // kh + "kambodša\0" // kh + "kambodźa\0" // kh + "kambodża\0" // kh + "kambodža\0" // kh + "kamboj\0" // kh + "kamboja\0" // kh + "kamboje\0" // kh + "kamboji\0" // kh + "kamboodiya\0" // kh + "kamboogi\0" // kh + "kamboxhia\0" // kh + "kamboçya\0" // kh + "kamboĝo\0" // kh + "kamboža\0" // kh + "kambudj\0" // kh + "kambudya\0" // kh + "kambíi\0" // gm + "kambódia\0" // kh + "kambódía\0" // kh + "kambôdja\0" // kh + "kameluni\0" // cm + "kameroen\0" // cm + "kamerona\0" // cm + "kameroun\0" // cm + "kamerounn\0" // cm + "kamerun\0" // cm + "kamerun nutome\0" // cm + "kamerune\0" // cm + "kameruni\0" // cm + "kameruno\0" // cm + "kameruun\0" // cm + "kameruuni\0" // cm + "kameruŋ\0" // cm + "kamerún\0" // cm + "kamerúuni\0" // cm + "kamerûne\0" // cm + "kamerūna\0" // cm + "kamerūnas\0" // cm + "kamipia\0" // gm + "kamipōtia\0" // kh + "kamirun\0" // cm + "kammeruhn\0" // cm + "kamoris\0" // km + "kamərún\0" // cm + "kamɛlûn\0" // cm + "kamɛrun\0" // cm + "kamɛrune\0" // cm + "kamɛrún\0" // cm + "kana\0" // gh + "kanaada\0" // ca + "kanaari saared\0" // ic + "kanada\0" // ca + "kanadaa\0" // ca + "kanadab\0" // ca + "kanado\0" // ca + "kanadà\0" // ca + "kanadá\0" // ca + "kanadâ\0" // ca + "kanadäa\0" // ca + "kanakā\0" // ca + "kananda\0" // ca + "kanar adalary\0" // ic + "kanar adaları\0" // ic + "kanar orollari\0" // ic + "kanaresch inselen\0" // ic + "kanari ƒudomekpowo nutome\0" // ic + "kanaria qeqertaq\0" // ic + "kanariak\0" // ic + "kanariansaaret\0" // ic + "kanariasuolluuh\0" // ic + "kanariese eilande\0" // ic + "kanarieöarna\0" // ic + "kanarische inseln\0" // ic + "kanariske kupy\0" // ic + "kanariske øer\0" // ic + "kanariuoyggjar\0" // ic + "kanariøyane\0" // ic + "kanariøyene\0" // ic + "kanariše inslä\0" // ic + "kanarska ostrva\0" // ic + "kanarski otoci\0" // ic + "kanarski otoki\0" // ic + "kanarya adaları\0" // ic + "kanaryske eilânnen\0" // ic + "kanaríeyjar\0" // ic + "kanarų salos\0" // ic + "kanbodia\0" // kh + "kanlurang sahara\0" // eh + "kaná\0" // gh + "kanáda\0" // ca + "kanári-szigetek\0" // ic + "kanárias\0" // ic + "kanáriasullot\0" // ic + "kanárske ostrovy\0" // ic + "kanárské ostrovy\0" // ic + "kanāda\0" // ca + "kanāriju salas\0" // ic + "kap ma laŋne\0" // cv + "kap ver\0" // cv + "kap verde\0" // cv + "kap-ver\0" // cv + "kape verde\0" // cv + "kape verde nutome\0" // cv + "kaponi\0" // ga + "kapp verde\0" // cv + "kapuver gungey\0" // cv + "kapverden\0" // cv + "kapverdy\0" // cv + "kapvɛr\0" // cv + "kapɔ́ŋ\0" // ga + "karadağ\0" // me + "karaibas olandezas\0" // bq + "karaibet holandeze\0" // bq + "karayip hollandası\0" // bq + "karib nederlandat\0" // bq + "karib niderlandy\0" // bq + "karib niderlandı\0" // bq + "karibbeatɔwo ƒe nedalanɖs nutome\0" // bq + "karibeko herbehereak\0" // bq + "karibescht holland\0" // bq + "karibian alankomaat\0" // bq + "karibiese nederland\0" // bq + "karibisk nederland\0" // bq + "karibiska nederländerna\0" // bq + "karibiska nižozemska\0" // bq + "karibské holandsko\0" // bq + "karibské nizozemsko\0" // bq + "karibysk nederlân\0" // bq + "karibų nyderlandai\0" // bq + "karipska holandija\0" // bq + "karipski otoci nizozemske\0" // bq + "kartvelujo\0" // ge + "karácsony-sziget\0" // cx + "karíbahafshluti hollands\0" // bq + "kasaakhistaan\0" // kz + "kasachschtan\0" // kz + "kasachstan\0" // kz + "kasahstan\0" // kz + "kasakhstan\0" // kz + "kasakhstani\0" // kz + "kasakisitani\0" // kz + "kasakitani\0" // kz + "kasaksitáŋ\0" // kz + "kasakstaan\0" // kz + "kasakstan\0" // kz + "kasaxstaŋ\0" // kz + "kasačstan\0" // kz + "kassakstahn\0" // kz + "kata\0" // qa + "kataa\0" // qa + "kataar\0" // qa + "kataha\0" // qa + "katali\0" // qa + "katar\0" // qa + "katar nutome\0" // qa + "katara\0" // qa + "kataras\0" // qa + "katari\0" // qa + "kataro\0" // qa + "kathari\0" // qa + "katà\0" // qa + "katá\0" // qa + "katáal\0" // qa + "katáari\0" // qa + "katár\0" // qa + "katära\0" // qa + "katā\0" // qa + "kayman adaları\0" // ky + "kayman gungey\0" // ky + "kayman ma laŋne\0" // ky + "kayman orollari\0" // ky + "kayman ƒudomekpowo nutome\0" // ky + "kaymɛn ɣa̱ylɛn\0" // ky + "kazachistan\0" // kz + "kazachistani\0" // kz + "kazachstan\0" // kz + "kazachstanas\0" // kz + "kazachstán\0" // kz + "kazahstan\0" // kz + "kazahstāna\0" // kz + "kazahsztán\0" // kz + "kazajistán\0" // kz + "kazakasitáani\0" // kz + "kazakhstan\0" // kz + "kazakhstanni\0" // kz + "kazakisitaani\0" // kz + "kazakisitani\0" // kz + "kazakisitá\0" // kz + "kazakisitäan\0" // kz + "kazakistan\0" // kz + "kazakistani\0" // kz + "kazakistaŋ\0" // kz + "kazakistãu\0" // kz + "kazakithtani\0" // kz + "kazakstan\0" // kz + "kazakstan nutome\0" // kz + "kazakstaŋ\0" // kz + "kazakstán\0" // kz + "kazakstáŋ\0" // kz + "kazakusita\0" // kz + "kazakətáŋ\0" // kz + "kazasitaŋ\0" // kz + "kazaxistan\0" // kz + "kazaxstan\0" // kz + "kazaĥstano\0" // kz + "kaýman adalary\0" // ky + "kaŋbhodiya\0" // kh + "kebebertab araraitab indian ocean nebo uingeresa\0" // io + "keemaŋ tiŋŋɛ\0" // ky + "keenia\0" // ke + "keenija\0" // ke + "keeniya\0" // ke + "keeniyaa\0" // ke + "keeriindi britaani to maayo enndo\0" // io + "keeña\0" // ke + "kejmanoj\0" // ky + "kekkia\0" // cz + "kelemānia\0" // de + "kelenatā\0" // gd + "kelenáat\0" // gd + "kelet-timor\0" // tl + "kemanfo islands\0" // ky + "kemboja\0" // kh + "kemelún\0" // cm + "kenemaka\0" // dk + "kenia\0" // ke + "kenija\0" // ke + "keniya\0" // ke + "keniá\0" // ke + "keniýa\0" // ke + "keniā\0" // ke + "kenja\0" // ke + "kenjo\0" // ke + "kenya\0" // ke + "kenya nutome\0" // ke + "kenyab\0" // ke + "kenyäa\0" // ke + "kenìà\0" // ke + "kenía\0" // ke + "kepania\0" // es + "kepi i gjelbër\0" // cv + "kepi vɛdi tiŋŋɛ\0" // cv + "kepulauan aland\0" // ax + "kepulauan canary\0" // ic + "kepulauan cayman\0" // ky + "kepulauan cocos (keeling)\0" // cc + "kepulauan cook\0" // ck + "kepulauan falkland\0" // fk + "kepulauan falkland (islas malvinas)\0" // fk + "kepulauan faroe\0" // fo + "kepulauan georgia selatan & sandwich selatan\0" // gs + "kepulauan heard & mcdonald\0" // hm + "kepulauan malvinas\0" // fk + "kepulauan malvinas (falkland)\0" // fk + "kepulauan mariana utara\0" // mp + "kepulauan marshall\0" // mh + "kepulauan norfolk\0" // nf + "kepulauan pitcairn\0" // pn + "kepulauan solomon\0" // sb + "kepulauan svalbard dan jan mayen\0" // sj + "kepulauan terluar a.s.\0" // um + "kepulauan terpencil a.s.\0" // um + "kepulauan turks dan caicos\0" // tc + "kepulauan virgin a.s.\0" // vi + "kepulauan virgin british\0" // vg + "kepulauan virgin inggris\0" // vg + "kepulauan wallis dan futuna\0" // wf + "kepuvede\0" // cv + "kepuvéede\0" // cv + "kepvɛdfo islands\0" // cv + "keramatly ýelena adasy\0" // sh + "kerseiland\0" // cx + "kerwasya\0" // hr + "kesk-aafrika vabariik\0" // cf + "keski-afrikan tasavalta\0" // cf + "keuta and melilla nutome\0" // ea + "keñaa\0" // ke + "keňa\0" // ke + "khameruni\0" // cm + "khana\0" // gh + "khanada\0" // ca + "khenya\0" // ke + "khiribati\0" // ki + "kholombiya\0" // co + "khomoro\0" // km + "khongo\0" // cg + "khosta rikha\0" // cr + "khu vực đồng euro\0" // ez + "khuweiti\0" // kw + "kiba\0" // cu + "kigisitaŋ\0" // kg + "kigistáŋ\0" // kg + "kigizisita\0" // kg + "kigizisitá\0" // kg + "kiibati\0" // ki + "kiigizistani\0" // kg + "kiina\0" // cn + "kiiniya\0" // ke + "kiinná\0" // cn + "kiiné\0" // gn + "kiinépisaó\0" // gw + "kili\0" // cl + "kilibati\0" // ki + "kiligisisitani\0" // kg + "kiligizistani\0" // kg + "kilikisistáŋ\0" // kg + "kilipasi\0" // ki + "kilipatí\0" // ki + "kilɛ́ɛk\0" // gr + "kina\0" // cn + "kini\0" // gn + "kini-pisau\0" // gw + "kinija\0" // cn + "kinya\0" // ke + "kinà\0" // cn + "kinéekuatolial\0" // gq + "kinë\0" // cn + "kiobà\0" // cu + "kiordistan\0" // kg + "kipar\0" // cy + "kipr\0" // cy + "kipra\0" // cy + "kipras\0" // cy + "kiprenez\0" // cy + "kipro\0" // cy + "kiprò\0" // cy + "kirasao\0" // cw + "kirghisistan\0" // kg + "kirghizistan\0" // kg + "kirghizstan\0" // kg + "kirgiisischtan\0" // kg + "kirgisia\0" // kg + "kirgisistan\0" // kg + "kirgistaan\0" // kg + "kirgistan\0" // kg + "kirgistaŋ\0" // kg + "kirgistãu\0" // kg + "kirgizija\0" // kg + "kirgizistan\0" // kg + "kirgizistano\0" // kg + "kirgizisztán\0" // kg + "kirgizië\0" // kg + "kirgizsko\0" // kg + "kirgizstan nutome\0" // kg + "kirgizstaŋ\0" // kg + "kirgizstāna\0" // kg + "kirgištan\0" // kg + "kirguistán\0" // kg + "kirguizistan\0" // kg + "kirguizistán\0" // kg + "kiribaati\0" // ki + "kiribari\0" // ki + "kiribati\0" // ki + "kiribati nutome\0" // ki + "kiribatis\0" // ki + "kiribato\0" // ki + "kiribatí\0" // ki + "kiribhati\0" // ki + "kiribáati\0" // ki + "kiribáti\0" // ki + "kirigisitani\0" // kg + "kirigisitáani\0" // kg + "kirigistan\0" // kg + "kirigisətán\0" // kg + "kirigizisitaani\0" // kg + "kirigizisitaŋ\0" // kg + "kirigizistani\0" // kg + "kirigizithtani\0" // kg + "kirigizitùaan\0" // kg + "kirrjiisije\0" // kg + "kirɣistan\0" // kg + "kirɣizistan\0" // kg + "kisiwa cha ascension\0" // ac + "kisiwa cha bouvet\0" // bv + "kisiwa cha christmas\0" // cx + "kisiwa cha clipperton\0" // cp + "kisiwa cha heard na visiwa vya mcdonald\0" // hm + "kisiwa cha krismasi\0" // cx + "kisiwa cha nolfok\0" // nf + "kisiwa cha norfok\0" // nf + "kisiwa cha norfolk\0" // nf + "kisíiwa cha nofifóoki\0" // nf + "kisúŋla makȟóčhe\0" // jp + "kitajska\0" // cn + "kithiwa cha norfok\0" // nf + "kitɔŋ ki palɛstíin\0" // ps + "kitɔŋ kí cɛ́k\0" // cz + "kitɔŋ kí kongó\0" // cd + "kitɔŋ kí tumunikɛ́ŋ\0" // do + "kiuba\0" // cu + "kiumba\0" // cu + "kiupa\0" // cu + "kiurasao\0" // cw + "kiyubha\0" // cu + "kizinga ky’enorofoko\0" // nf + "kjad\0" // td + "klein afgeleë eilande van die vsa\0" // um + "kleine afgelegen eilanden van de verenigde staten\0" // um + "klipaton ƒudomekpo nutome\0" // cp + "klipertona sala\0" // cp + "klipertono sala\0" // cp + "klipperton adasy\0" // cp + "klipperton adası\0" // cp + "klipperton oroli\0" // cp + "koddiwar\0" // ci + "kodduwaar\0" // ci + "kodibo̱o̱\0" // ci + "kodivaa\0" // ci + "kodivaya\0" // ci + "kodiwaar (côte d’ivoire)\0" // ci + "kodiwari\0" // ci + "koeweit\0" // kw + "kokos (kiling) adalary\0" // cc + "kokos (kiling) fudomekpo nutome\0" // cc + "kokos (kiling) orollari\0" // cc + "kokos (kilinq) adaları\0" // cc + "kokos-eilannen\0" // cc + "kokos-insle\0" // cc + "kokoseilande\0" // cc + "kokosilanen\0" // cc + "kokosinselen\0" // cc + "kokosinseln\0" // cc + "kokosinslä\0" // cc + "kokosova (keelingova) ostrva\0" // cc + "kokosova (kilingova) ostrva\0" // cc + "kokosovi (keelingovi) otoci\0" // cc + "kokosovi otoki\0" // cc + "kokosové ostrovy\0" // cc + "kokosowe kupy\0" // cc + "kokosoyggjar\0" // cc + "kokosu (kīlinga) salas\0" // cc + "kokosöarna\0" // cc + "kokosøyane\0" // cc + "kokosøyene\0" // cc + "kokosų (kilingo) salos\0" // cc + "kolambiya\0" // co + "kolasia\0" // hr + "kolasiya\0" // hr + "kolea kasikazini\0" // kp + "kolea kaskazini\0" // kp + "kolea kusini\0" // kr + "koleya ya kusini\0" // kr + "koleya ya luvala lwa kunyamande\0" // kp + "kolo vatikani\0" // va + "kolombi\0" // co + "kolombia\0" // co + "kolombia nutome\0" // co + "kolombio\0" // co + "kolombiya\0" // co + "kolombya\0" // co + "kolombïi\0" // co + "kolomipia\0" // co + "kolonbi\0" // co + "kolonbia\0" // co + "kolowasíi\0" // hr + "kolumbi\0" // co + "kolumbia\0" // co + "kolumbie\0" // co + "kolumbien\0" // co + "kolumbija\0" // co + "kolumbije\0" // co + "kolumbiska\0" // co + "kolumbiya\0" // co + "kolumbiýa\0" // co + "kolómbia\0" // co + "kolômbia\0" // co + "kolɔmbí\0" // co + "kombodia\0" // kh + "komolo\0" // km + "komolosi\0" // km + "komolòs\0" // km + "komoor\0" // km + "komoore\0" // km + "komoorid\0" // km + "komooros\0" // km + "komor\0" // km + "komor adalary\0" // km + "komor adaları\0" // km + "komor orollari\0" // km + "komora\0" // km + "komorai\0" // km + "komorane\0" // km + "komore\0" // km + "komoreak\0" // km + "komoreh\0" // km + "komoren\0" // km + "komorene\0" // km + "komorerna\0" // km + "komorez\0" // km + "komori\0" // km + "komorit\0" // km + "komorlar\0" // km + "komoro\0" // km + "komoroj\0" // km + "komoros\0" // km + "komoros nutome\0" // km + "komorosi\0" // km + "komoroyggjar\0" // km + "komorska ostrva\0" // km + "komoru\0" // km + "komoru salas\0" // km + "komory\0" // km + "komorɛ\0" // km + "komruth\0" // km + "komóoro\0" // km + "komɔr\0" // km + "komɔri\0" // km + "komɔ́r\0" // km + "kongas-brazavilis\0" // cg + "kongas-kinšasa\0" // cd + "kongo\0" // cg + "kongo (brazavila)\0" // cg + "kongo (demokratesch republik)\0" // cd + "kongo (demokratische republik)\0" // cd + "kongo (demokratiska republika)\0" // cd + "kongo (demokratična republika kongo)\0" // cd + "kongo (demokratiši rebublik)\0" // cd + "kongo (dr)\0" // cd + "kongo (drc)\0" // cd + "kongo (drk)\0" // cd + "kongo (kdr)\0" // cd + "kongo (kinšasa)\0" // cd + "kongo (lepupelika)\0" // cg + "kongo (ltk)\0" // cd + "kongo (r k d)\0" // cd + "kongo (rdk)\0" // cd + "kongo (rebublik)\0" // cg + "kongo (republiek die)\0" // cg + "kongo (republik)\0" // cg + "kongo (republika)\0" // cg + "kongo (respublika)\0" // cg + "kongo (rk)\0" // cg + "kongo (zair)\0" // cd + "kongo - brazavil\0" // cg + "kongo - brazzaville\0" // cg + "kongo - brazzawil\0" // cg + "kongo - kinisasa\0" // cd + "kongo - kinshasa\0" // cd + "kongo - kinşasa\0" // cd + "kongo - kinšasa\0" // cd + "kongo - palasavila\0" // cg + "kongo - zayire\0" // cd + "kongo brazzaville\0" // cg + "kongo brazzaville nutome\0" // cg + "kongo cumhuriyeti\0" // cg + "kongo demokraattisâš täsiväldi\0" // cd + "kongo demokratik cumhuriyeti\0" // cd + "kongo demokratik repɔblik nutome\0" // cd + "kongo demokratinė respublika\0" // cd + "kongo demokrātiskā republika\0" // cd + "kongo dv\0" // cd + "kongo ka republiki demɔkratiki\0" // cd + "kongo kinshasa nutome\0" // cd + "kongo repɔblik nutome\0" // cg + "kongo respublika\0" // cg + "kongo täsiväldi\0" // cg + "kongo vabariik\0" // cg + "kongo – brazzavil\0" // cg + "kongo – brazzaville\0" // cg + "kongo – kinshasa\0" // cd + "kongo, dem. lýðveldið\0" // cd + "kongo-brazavilë\0" // cg + "kongo-brazzaville\0" // cg + "kongo-kinshasa\0" // cd + "kongoko errepublika\0" // cg + "kongoko errepublika demokratikoa\0" // cd + "kongolo\0" // cg + "kongon demokraattinen tasavalta\0" // cd + "kongon tasavalta\0" // cg + "kongoo\0" // cg + "kongoo demookaratiki laboo\0" // cd + "kongu\0" // cg + "kongu - brazavili\0" // cg + "kongu - kinxasa\0" // cd + "kongó\0" // cg + "kongó (kdk)\0" // cd + "kongó (köztársaság)\0" // cg + "kongó (lýðstjórnarlýðveldið)\0" // cd + "kongó (lýðveldið)\0" // cg + "kongó - brazzaville\0" // cg + "kongó - kinshasa\0" // cd + "kongó zaïre\0" // cd + "kongó-brazzaville\0" // cg + "kongó-kinshasa\0" // cd + "kongó-kinsásá\0" // cd + "kongö\0" // cg + "konngo\0" // cg + "konqo (kdr)\0" // cd + "konqo (respublika)\0" // cg + "konqo - brazzavil\0" // cg + "konqo - kinşasa\0" // cd + "konžská demokratická republika\0" // cd + "konžská republika\0" // cg + "kook ma laŋne\0" // ck + "kook nsupɔw\0" // ck + "kook ƒudomekpo nutome\0" // ck + "kookossaared\0" // cc + "kookossaaret (keelingsaaret)\0" // cc + "kookossuolluuh (keelingsuolluuh)\0" // cc + "koonfur afrika\0" // za + "koonfur suudaan\0" // ss + "kooree, gurma\0" // kp + "kooree, hawsa\0" // kr + "korasia\0" // hr + "korasiya\0" // hr + "korathia\0" // hr + "kore noor\0" // kp + "kore wa muulu\0" // kp + "kore wa mwinshi\0" // kr + "korea an norzh\0" // kp + "korea ar su\0" // kr + "korea atsimo\0" // kr + "korea avannarleq\0" // kp + "korea avaratra\0" // kp + "korea kaskazini\0" // kp + "korea kathkazini\0" // kp + "korea kujalleq\0" // kr + "korea kusini\0" // kr + "korea kuthini\0" // kr + "korea masawa\0" // kp + "korea milambo\0" // kr + "korea nothi\0" // kp + "korea południowa\0" // kr + "korea północna\0" // kp + "korea saũthi\0" // kr + "korea selatan\0" // kr + "korea utara\0" // kp + "korea, north\0" // kp + "korea, south\0" // kr + "koreab, noord\0" // kp + "koreab, suid\0" // kr + "koree rewo\0" // kp + "koree worgo\0" // kr + "koreia di norti\0" // kp + "koreia di sul\0" // kr + "koreja e jugut\0" // kr + "koreja e veriut\0" // kp + "koresiya\0" // hr + "koreya amashuuma\0" // kr + "koreya amatemba\0" // kp + "koreya eya mumambuka\0" // kp + "koreya eya mumaserengeta\0" // kr + "koreya ey’omumambuka\0" // kp + "koreya ey’omumaserengeta\0" // kr + "koreya ta arewa\0" // kp + "koreya ta kudu\0" // kr + "koreya y’amajaruguru\0" // kp + "koreya y’amajepfo\0" // kr + "koriya kɔi kaŋndɔ\0" // kp + "koriya kɔi leŋŋɛ lɔ\0" // kr + "koroashia\0" // hr + "korombiya\0" // co + "koromo\0" // km + "korowasi\0" // hr + "korowasiya\0" // hr + "korwaatia\0" // hr + "korwasii\0" // hr + "korweeshiya\0" // hr + "koré yá nór\0" // kp + "koré yá súd\0" // kr + "koré yí bvuɔ\0" // kp + "koré yí sí\0" // kr + "koréa ya saame\0" // kr + "koréa yʉ ʉtʉrʉko\0" // kp + "koréshia\0" // hr + "korëe tî banga\0" // kp + "korëe tî mbongo\0" // kr + "korɛ ya nɔ́rdi\0" // kp + "korɛ ya súdi\0" // kr + "korɛanɔ́r\0" // kp + "korɛasud\0" // kr + "kosita lika\0" // cr + "kosita rika\0" // cr + "kositalika\0" // cr + "kositarika\0" // cr + "koskâ-afrika täsiväldi\0" // cf + "kosova\0" // xk + "kosovas\0" // xk + "kosovo\0" // xk + "kosovu\0" // xk + "kosovë\0" // xk + "kosowo\0" // xk + "kosta di marfin\0" // ci + "kosta di marfin (côte d’ivoire)\0" // ci + "kosta riika\0" // cr + "kosta rika\0" // cr + "kosta rika nutome\0" // cr + "kosta rikaa\0" // cr + "kosta rikà\0" // cr + "kosta ríka\0" // cr + "kosta-rika\0" // cr + "kosta-rikë\0" // cr + "kostalika\0" // cr + "kostarika\0" // cr + "kostariko\0" // cr + "kostaryka\0" // cr + "kostaríka\0" // cr + "koszovó\0" // xk + "kot-d’ivuar\0" // ci + "kot-d’iwuar\0" // ci + "kota vatican\0" // va + "kotdivuāra\0" // ci + "kotd’ivuar\0" // ci + "kote divwa\0" // ci + "kote d´ivoire\0" // ci + "kote d’ivoire nutome\0" // ci + "kotedivuale\0" // ci + "kotedivuware\0" // ci + "kothtarika\0" // cr + "kothtirika\0" // cr + "kotídivualɛ\0" // ci + "koweit\0" // kw + "kowet\0" // kw + "koweti\0" // kw + "koweït\0" // kw + "kowéet\0" // kw + "kowɛit\0" // kw + "kowɛti\0" // kw + "kowɛ́d\0" // kw + "kozovu\0" // xk + "kpakpua ginè è fūghū\0" // pg + "kpakìsɨ̀tân\0" // pk + "kpalàgwɛ̂\0" // py + "kpanyá\0" // es + "kpanàma\0" // pa + "kpitɨ̀kalè\0" // pn + "kpoleneshìa è fàlâŋnsì\0" // pf + "kpulàn\0" // pl + "kputuwgà\0" // pt + "kpàlawù\0" // pw + "kpǒto leko\0" // pr + "kpənyá\0" // es + "kpɛlû\0" // pe + "kreeka\0" // gr + "kreikka\0" // gr + "krievija\0" // ru + "kristmas ƒudomekpo nutome\0" // cx + "kristɔfo-senu-ni-ɲevɛs\0" // kn + "kroaazie\0" // hr + "kroaci\0" // hr + "kroasi\0" // hr + "kroasia\0" // hr + "kroasië\0" // hr + "kroasïi\0" // hr + "kroatia\0" // hr + "kroatie\0" // hr + "kroatien\0" // hr + "kroatija\0" // hr + "kroatiya\0" // hr + "kroatië\0" // hr + "kroatsia nutome\0" // hr + "kroatujo\0" // hr + "kroazia\0" // hr + "kroeshia\0" // hr + "krowasi\0" // hr + "krowazije\0" // hr + "krowehyia\0" // hr + "kroásia\0" // hr + "kroátia\0" // hr + "kruātija\0" // hr + "krwaasi\0" // hr + "krwasí\0" // hr + "krwatya\0" // hr + "krysteilan\0" // cx + "kròasìà\0" // hr + "króatía\0" // hr + "krēiwa\0" // by + "ku dɨ̀vûa\0" // ci + "kuamiɛ\0" // gu + "kuamu\0" // gu + "kuatalupe\0" // gp + "kuatamala\0" // gt + "kuatelúup\0" // gp + "kuatemalá\0" // gt + "kuba\0" // cu + "kuba nutome\0" // cu + "kubaa\0" // cu + "kubo\0" // cu + "kubà\0" // cu + "kubá\0" // cu + "kubäa\0" // cu + "kubë\0" // cu + "kudwar\0" // ci + "kueiti\0" // kw + "kuenisī\0" // gg + "kuhba\0" // cu + "kuiana\0" // gy + "kuiana fakafalanisē\0" // gf + "kujalleqafrika\0" // za + "kujalleqsudan\0" // ss + "kuk adalary\0" // ck + "kuk adaları\0" // ck + "kuk orollari\0" // ck + "kuk ɣa̱ylɛn\0" // ck + "kuka salas\0" // ck + "kuki gun\0" // ck + "kukinsuloj\0" // ck + "kuko salos\0" // ck + "kukova ostrva\0" // ck + "kulasao\0" // cw + "kulinilani\0" // gl + "kuloisia\0" // hr + "kulumbi\0" // co + "kulumbya\0" // co + "kuluɛnlánd\0" // gl + "kumur\0" // km + "kungu\0" // cg + "kungu (tagduda)\0" // cg + "kupilosi\0" // cy + "kuplosi\0" // cy + "kuprosi\0" // cy + "kuprothi\0" // cy + "kupuróosi\0" // cy + "kupy turks a caicos\0" // tc + "kurakao nutome\0" // cw + "kurasao\0" // cw + "kurasau\0" // cw + "kuraçao\0" // cw + "kurowaishiya\0" // hr + "kurowesya\0" // hr + "kursawo\0" // cw + "kurya n iffus\0" // kr + "kurya n iẓẓlmḍ\0" // kp + "kurya tugafat\0" // kp + "kurya tunẓult\0" // kr + "kurya, ufella\0" // kp + "kurya, wadda\0" // kr + "kusta rika\0" // cr + "kusṭa rika\0" // cr + "kut difwar\0" // ci + "kuuba\0" // cu + "kuuk gungey\0" // ck + "kuuriyada koonfureed\0" // kr + "kuuriyada waqooyi\0" // kp + "kuuwbà\0" // cu + "kuvait\0" // kw + "kuvajt\0" // kw + "kuvajto\0" // kw + "kuveit\0" // kw + "kuveita\0" // kw + "kuveitas\0" // kw + "kuveyt\0" // kw + "kuwait\0" // kw + "kuwait nutome\0" // kw + "kuwaiti\0" // kw + "kuwayt\0" // kw + "kuweet\0" // kw + "kuweit\0" // kw + "kuweiti\0" // kw + "kuwejt\0" // kw + "kuwete\0" // kw + "kuweti\0" // kw + "kuweyti\0" // kw + "kuweýt\0" // kw + "kuwwayt\0" // kw + "kuwäit\0" // kw + "kuwĩ ti\0" // kw + "kuwɛit\0" // kw + "kuyáan\0" // gy + "kuyáan u felensí\0" // gf + "kuzey kore\0" // kp + "kuzey mariana adaları\0" // mp + "kuŋgù\0" // cg + "kuṛaṣaw\0" // cw + "kuṣuvu\0" // xk + "kuṭ divwar\0" // ci + "kuṭ-d-ivwaṛ - 2 -\0" // ci + "kviterussland\0" // by + "kwa-israel\0" // il + "kwamoras\0" // km + "kwasta rika\0" // cr + "kwatar\0" // qa + "kwiyat\0" // kw + "kyad\0" // td + "kyaena\0" // cn + "kyaina\0" // cn + "kyili\0" // cl + "kypr\0" // cy + "kypros\0" // cy + "kyrgystaŋ\0" // kg + "kyrgyzstan\0" // kg + "kyrgyzstanni\0" // kg + "kyrgyzstán\0" // kg + "kyuba\0" // cu + "kyurasao\0" // cw + "kyúuba\0" // cu + "kyɛk kurokɛse\0" // cz + "kàlèdonyìa è fūghū\0" // nc + "kàlèdonìà yɔ̀ndɔ\0" // nc + "kàmalûm\0" // cm + "kàmbodìa\0" // kh + "kàmbodìà\0" // kh + "kàmboj\0" // kh + "kàmàlûŋ\0" // cm + "kàmɛ̀rûn\0" // cm + "kànadà\0" // ca + "kàtâr\0" // qa + "kàzasɨ̀tân\0" // kz + "kàzàkstâŋ\0" // kz + "kámbóse\0" // kh + "kánada\0" // ca + "kánáda\0" // ca + "kánáta\0" // ca + "kápfɛl\0" // cv + "káyímanɛ\0" // ky + "kâmitâ\0" // eg + "kârgâzstan\0" // kg + "käimän-insle\0" // ky + "kämbôzi\0" // kh + "känɛda\0" // ca + "kèlèbati\0" // ki + "kéenya\0" // ke + "kénia\0" // ke + "kénya\0" // ke + "kìdzisɨ̀tân\0" // kg + "kìlî\0" // cl + "kìrgìzìstàŋ\0" // kg + "kìrìbatì\0" // ki + "kína\0" // cn + "kíribatí\0" // ki + "kòlombìa\0" // co + "kòstà rikà\0" // cr + "kòsɨ̀tà lekà\0" // cr + "kòwêt\0" // kw + "kòwɛshìa\0" // hr + "kòŋgo\0" // cg + "kòŋgo ìkɛŋi\0" // cd + "kód divɔ́r\0" // ci + "kódivówa\0" // ci + "kóki tiŋŋɛ\0" // ck + "kókoseyjar (keeling)\0" // cc + "kókusz (keeling)-szigetek\0" // cc + "kólumbía\0" // co + "kómoreyjar\0" // km + "kóngo\0" // cg + "kóongo\0" // cg + "kósita rɨ́ɨka\0" // cr + "kóstálíka\0" // cr + "kósíta ríko\0" // cr + "kósóvó\0" // xk + "kótifualɛ\0" // ci + "kôdivüära\0" // ci + "kôeity\0" // kw + "kôlômbia\0" // co + "kômaoro\0" // km + "kôngô\0" // cg + "kôsta rîka\0" // cr + "kõrgõzstan\0" // kg + "ködörögbïä--ôko\0" // gb + "ködörösêse tî bêafrîka\0" // cf + "ködörösêse tî dominîka\0" // do + "ködörösêse tî ngunuhalëzo tî kongö\0" // cd + "ködörösêse tî tyêki\0" // cz + "kömôro\0" // km + "köwêti\0" // kw + "közép-afrikai köztársaság\0" // cf + "kùulîa, ekùw\0" // kp + "kùulîa, emàm\0" // kr + "kùwɛ̂\0" // kw + "kúba\0" // cu + "kúpa\0" // cu + "kúuke\0" // ck + "kúveit\0" // kw + "küba\0" // cu + "külső-óceánia\0" // qo + "küpros\0" // cy + "küveyt\0" // kw + "kýpros\0" // cy + "kýpur\0" // cy + "kýurasao\0" // cw + "kānada\0" // ca + "kānata\0" // ca + "kīkisitani\0" // kg + "kīna\0" // cn + "kıbrıs\0" // cy + "kırgızistan\0" // kg + "kōlea tokelau\0" // kp + "kōlea tonga\0" // kr + "kōlumbija\0" // co + "kōsawa\0" // xk + "kōsovo\0" // xk + "kūba\0" // cu + "kǝlɔŋ kǝ kǝtáatáaŋzǝn\0" // gb + "kǝlɔŋ kǝ ázǝ\0" // nl + "kɔi kaŋndɔ mariyana tiŋŋɛ\0" // mp + "kɔllɔmbî\0" // co + "kɔlé u muɛnɛ́\0" // kp + "kɔlé wu mbát\0" // kr + "kɔlɔmbiya\0" // co + "kɔlɔ́mbia\0" // co + "kɔlɔ́mbía\0" // co + "kɔmɔr\0" // km + "kɔmɔrɔs\0" // km + "kɔmɔ́lɔshi\0" // km + "kɔmɔ́ɔl\0" // km + "kɔngó\0" // cg + "kɔngó anyɔ́n\0" // cd + "kɔrɔn timɔr\0" // tl + "kɔsitarika\0" // cr + "kɔsta rika\0" // cr + "kɔstaríka\0" // cr + "kɔtiwuár\0" // ci + "kɔŋgɔ\0" // cg + "kɔɔ́m kí ndián yi ngilís\0" // io + "kɔ̀lɔmbìà\0" // co + "kɔ̀mɔ̂r\0" // km + "kɔ̀re ì ŋ̀wɛ̀lmbɔk\0" // kr + "kɔ̀re ì ŋ̀ɔmbɔk\0" // kp + "kɔ́t ndivwâ\0" // ci + "kɔ́ŋgɔ-kinshása\0" // cd + "kɔ́ŋgɔ-mbɛlazavîl\0" // cg + "kəlowásia\0" // hr + "kɛmɛrun\0" // cm + "kɛnya\0" // ke + "kɛp bedi ɣa̱ylɛn\0" // cv + "kɛɛgestan\0" // kg + "kɛɲɛka kore\0" // kp + "kɛɲɛka mariyani gun\0" // mp + "kɛ́nya\0" // ke + "kɨnyà\0" // ke + "kʉwáiti\0" // kw + "kотд’ивуар\0" // ci + "l-afganistan\0" // af + "l-afrika t’isfel\0" // za + "l-albanija\0" // al + "l-alġerija\0" // dz + "l-angola\0" // ao + "l-antartika\0" // aq + "l-arabia sawdija\0" // sa + "l-armenja\0" // am + "l-arġentina\0" // ar + "l-awstralja\0" // au + "l-awstrija\0" // at + "l-ażerbajġan\0" // az + "l-eks-repubblika jugoslava tal-maċedonia\0" // mk + "l-ekwador\0" // ec + "l-emirati għarab magħquda\0" // ae + "l-eritrea\0" // er + "l-estonja\0" // ee + "l-etjopja\0" // et + "l-eġittu\0" // eg + "l-indja\0" // in + "l-indoneżja\0" // id + "l-iran\0" // ir + "l-iraq\0" // iq + "l-irlanda\0" // ie + "l-istat tal-belt tal-vatikan\0" // va + "l-istati uniti\0" // us + "l-italja\0" // it + "l-iżlanda\0" // is + "l-iżvezja\0" // se + "l-oman\0" // om + "l-uganda\0" // ug + "l-ukrajna\0" // ua + "l-ungerija\0" // hu + "l-urugwaj\0" // uy + "l-użbekistan\0" // uz + "la côte d’ivoire\0" // ci + "la martinica\0" // mq + "la réunion\0" // re + "laamateeri rentundi\0" // gb + "laaos\0" // la + "laaraw imaarawey margantey\0" // ae + "laawos\0" // la + "labanan\0" // lb + "laberiya\0" // lr + "lacin\0" // cn + "laeberia\0" // lr + "lafrans\0" // fr + "lagris\0" // gr + "lahabu\0" // sa + "laibhiya\0" // lr + "laipelia\0" // lr + "lajurdani\0" // jo + "lakisimipeki\0" // lu + "lakizembaaga\0" // lu + "lakore-dinor\0" // kp + "lakore-disid\0" // kr + "laksembɛg\0" // lu + "lalbani\0" // al + "lalman\0" // de + "lamerik\0" // us + "lamerikän\0" // us + "laos\0" // la + "laos nutome\0" // la + "laosa\0" // la + "laosas\0" // la + "laosi\0" // la + "laoso\0" // la + "laosz\0" // la + "laothi\0" // la + "larabi saoudit\0" // sa + "larenion\0" // re + "larisi\0" // ru + "larzantinn\0" // ar + "lasa\0" // ru + "lasembagi\0" // lu + "lasembáagi\0" // lu + "lasinn\0" // cn + "lasiri\0" // sy + "laswed\0" // se + "laswis\0" // ch + "lata vatikan\0" // va + "latfia\0" // lv + "latfiya\0" // lv + "latfya\0" // lv + "lathembagi\0" // lu + "latibiya\0" // lv + "lativa\0" // lv + "lativia\0" // lv + "lativiya\0" // lv + "lativya\0" // lv + "lattawa\0" // lv + "latvia\0" // lv + "latvia nutome\0" // lv + "latvija\0" // lv + "latviya\0" // lv + "latvujo\0" // lv + "latwiýa\0" // lv + "lau\0" // la + "laus\0" // la + "lawas\0" // la + "lawoos\0" // la + "lawos\0" // la + "lawosi\0" // la + "laws\0" // la + "lawós\0" // la + "laybeeriya\0" // lr + "layctenstan\0" // li + "layosi\0" // la + "lazembɔg nutome\0" // lu + "laóosi\0" // la + "laós\0" // la + "laôs\0" // la + "laītawa\0" // lt + "laɔs\0" // la + "la’os\0" // la + "leabanon\0" // lb + "leasoto\0" // ls + "lebanon\0" // lb + "lebanoni\0" // lb + "lebanonni\0" // lb + "lebanóoni\0" // lb + "lebanɔn nutome\0" // lb + "lebbannon\0" // lb + "lebhanoni\0" // lb + "lebhanɔ\0" // lb + "lebhiya\0" // ly + "lebìa\0" // ly + "leedu\0" // lt + "leesoto\0" // ls + "lektenstaen\0" // li + "lemila alabu\0" // ae + "lengyelország\0" // pl + "lenkija\0" // pl + "lenn\0" // in + "lenyo\0" // re + "leosóta\0" // ls + "lepanoni\0" // lb + "lepupelika seki\0" // cz + "lepupelika tominika\0" // do + "lepupelika ʻafilika lotoloto\0" // cf + "les bahames\0" // bs + "les bermudes\0" // bm + "les comores\0" // km + "les maldives\0" // mv + "les seixeles\0" // sc + "lesooto\0" // ls + "lesoso\0" // ls + "lesotas\0" // ls + "lesotho\0" // ls + "lesothob\0" // ls + "lesothu\0" // ls + "lesoto\0" // ls + "lesotó\0" // ls + "lespagn\0" // es + "lesòtò\0" // ls + "lesóoto\0" // ls + "lesótó\0" // ls + "lesôtho\0" // ls + "leta zunze ubumwe za amerika\0" // us + "leta zunze ubumwe z’abarabu\0" // ae + "lethoto\0" // ls + "letiopi\0" // et + "letiska\0" // lv + "letland\0" // lv + "letlandi\0" // lv + "letlân\0" // lv + "letoni\0" // lv + "letonia\0" // lv + "letonie\0" // lv + "letonii\0" // lv + "letonija\0" // lv + "letoniya\0" // lv + "letonya\0" // lv + "letoní\0" // lv + "letonùii\0" // lv + "letooni\0" // lv + "lettland\0" // lv + "lettonia\0" // lv + "lettonie\0" // lv + "lettország\0" // lv + "letëe tî vatikäan\0" // va + "letònia\0" // lv + "letónia\0" // lv + "letônia\0" // lv + "letɨnshɨ̀n\0" // li + "leyunyoni\0" // re + "lezipt\0" // eg + "lezoto\0" // ls + "lezotu\0" // ls + "lezzayer\0" // dz + "lhend\0" // in + "lhind\0" // in + "li-băng\0" // lb + "liba\0" // lb + "libaa\0" // lb + "liban\0" // lb + "libana\0" // lb + "libanas\0" // lb + "libani\0" // lb + "libano\0" // lb + "libanon\0" // lb + "libanus\0" // lb + "libaŋ\0" // lb + "libbije\0" // ly + "libeeria\0" // lr + "libeerija\0" // lr + "libelia\0" // lr + "libeliya\0" // lr + "liberi\0" // lr + "liberia\0" // lr + "liberia nutome\0" // lr + "liberiab\0" // lr + "liberie\0" // lr + "liberija\0" // lr + "liberio\0" // lr + "liberiya\0" // lr + "liberiyaa\0" // lr + "liberië\0" // lr + "liberiýa\0" // lr + "liberya\0" // lr + "liberïa\0" // lr + "libheriya\0" // lr + "libhiya\0" // ly + "libi\0" // ly + "libia\0" // ly + "libie\0" // ly + "libija\0" // ly + "libio\0" // ly + "libirya\0" // lr + "libiya\0" // ly + "libië\0" // ly + "libya\0" // ly + "libya nutome\0" // ly + "libyab\0" // ly + "libye\0" // ly + "libyen\0" // ly + "libyia\0" // ly + "libyska\0" // ly + "libá\0" // lb + "libáŋ\0" // lb + "libèir\0" // lr + "libèria\0" // lr + "libéria\0" // lr + "libérie\0" // lr + "libériya\0" // lr + "libìà\0" // ly + "libí\0" // ly + "libî\0" // ly + "libïi\0" // ly + "libùaan\0" // lb + "libāna\0" // lb + "libērija\0" // lr + "libɛrya\0" // lr + "libɛrî\0" // lr + "licansitan\0" // li + "lichtenstein\0" // li + "lichtenštajnsko\0" // li + "lichtenšteinas\0" // li + "lichtenštejnsko\0" // li + "lichtinstéin\0" // li + "lichtǝnsteiŋ\0" // li + "licitensitayini\0" // li + "lictencṭayn\0" // li + "lictɛnstɛ́n\0" // li + "liechtensteen\0" // li + "liechtenstein\0" // li + "liechtenstein,\0" // li + "liechtensteini\0" // li + "liechtensteinni\0" // li + "lielbritānija\0" // gb + "lieneo lyaki nngalesa nbahali ya hindi\0" // io + "liettua\0" // lt + "lietuva\0" // lt + "liečteštei\0" // li + "ligstɛntàn\0" // li + "lihtenshtajn\0" // li + "lihtenşteýn\0" // li + "lihtenštajn\0" // li + "lihtenšteina\0" // li + "liibanon\0" // lb + "liibi\0" // ly + "liibiya\0" // ly + "liibéria\0" // lr + "liibüa\0" // ly + "likinctayn\0" // li + "likisambulu\0" // lu + "likisanburu\0" // lu + "likitenisiteini\0" // li + "liksambúul\0" // lu + "liksembuur\0" // lu + "liksumburg\0" // lu + "liksàmbur\0" // lu + "liktensteyin\0" // li + "liktinstein\0" // li + "lil norfolk\0" // nf + "limarat\0" // ae + "limistéar an euro\0" // ez + "lincenstayn\0" // li + "lindän\0" // in + "lioksamboro\0" // lu + "lipabulika ya ceeka\0" // cz + "lipabulika ya dominika\0" // do + "lipabulika ya senturafiriki\0" // cf + "lipubulika eya senturafiriki\0" // cf + "lipubulika ya ceeka\0" // cz + "lipubulika ya dominika\0" // do + "lipáŋ\0" // lb + "lipélia\0" // lr + "lipíi\0" // ly + "lirlund\0" // ie + "lischteschtein\0" // li + "lisheniteni\0" // li + "lishenstein\0" // li + "lishenteni\0" // li + "lishentéeni\0" // li + "lishtensteni\0" // li + "lishuteni\0" // li + "lishyitenshitayini\0" // li + "lishɛteni\0" // li + "listenstaine\0" // li + "listenstein\0" // li + "lisuwenya\0" // lt + "lisuánia\0" // lt + "lisuṭu\0" // ls + "lisóto\0" // ls + "lisɛnsitayini\0" // li + "litaliyän\0" // it + "litaue\0" // lt + "litauen\0" // lt + "litaueni\0" // lt + "litava\0" // lt + "litawska\0" // lt + "lithuania\0" // lt + "lithuaniab\0" // lt + "litháen\0" // lt + "litiyani\0" // lt + "litiyaní\0" // lt + "litoania\0" // lt + "litouwen\0" // lt + "litovujo\0" // lt + "litsenstein nutome\0" // li + "littaue\0" // lt + "lituaani\0" // lt + "lituaanii\0" // lt + "lituani\0" // lt + "lituania\0" // lt + "lituania nutome\0" // lt + "lituanie\0" // lt + "lituaniya\0" // lt + "lituaniá\0" // lt + "lituaní\0" // lt + "lituanïi\0" // lt + "lituwaniya\0" // lt + "lituweeniya\0" // lt + "lituwenia\0" // lt + "lituweninya\0" // lt + "lituweniya\0" // lt + "lituyani\0" // lt + "lituània\0" // lt + "lituánia\0" // lt + "lituânia\0" // lt + "litva\0" // lt + "litvanija\0" // lt + "litvanya\0" // lt + "litvánia\0" // lt + "litwa\0" // lt + "litwani\0" // lt + "litwania\0" // lt + "litwaniya\0" // lt + "litwanya\0" // lt + "litwaní\0" // lt + "liuksemburgas\0" // lu + "livan\0" // lb + "liviya\0" // ly + "liwan\0" // lb + "liwiýa\0" // ly + "lixenstain\0" // li + "lixtenshteyn\0" // li + "lixtenşteyn\0" // li + "liyunioni\0" // re + "lizuṭu\0" // ls + "liächteschtäi\0" // li + "liĥtenŝtejno\0" // li + "liṣuṭu\0" // ls + "liṭwanya\0" // lt + "liṭṭunya\0" // lv + "lkwit\0" // kw + "lmerruk\0" // ma + "lmɣrib\0" // ma + "lomania\0" // ro + "lomaniya\0" // ro + "lomēnia\0" // ro + "loshìa\0" // ru + "losooto\0" // ls + "lostrali\0" // au + "lostris\0" // at + "lotyšsko\0" // lv + "luanitā\0" // rw + "lubnaan\0" // lb + "lubnan\0" // lb + "lucembursko\0" // lu + "lucsamburg\0" // lu + "lugsamburg\0" // lu + "lugzambûru\0" // lu + "lukisembaaga\0" // lu + "luksamburg\0" // lu + "luksanburg\0" // lu + "luksemboorg\0" // lu + "luksemborg\0" // lu + "luksembourg\0" // lu + "luksemburg\0" // lu + "luksemburga\0" // lu + "luksemburgan\0" // lu + "luksemburgo\0" // lu + "luksɛmbúr\0" // lu + "lukusambur\0" // lu + "lukusamburu\0" // lu + "lukəzambúd\0" // lu + "lulli georgia ja lulli sandwich-sullot\0" // gs + "lurdun\0" // jo + "lusi-senu\0" // lc + "lusimbɔ\0" // lu + "lussemburc\0" // lu + "lussemburgo\0" // lu + "lusî\0" // ru + "lutanda lua kapevele\0" // cv + "lutanda lua kayima\0" // ky + "lutanda lua kookɛ\0" // ck + "lutanda lua maluni\0" // fk + "lutanda lua mariane wa muulu\0" // mp + "lutanda lua marishale\0" // mh + "lutanda lua norfok\0" // nf + "lutanda lua solomu\0" // sb + "lutanda lua tuluki ne kaiko\0" // tc + "lutanda lua vierzi wa ameriki\0" // vi + "lutanda lua vierzi wa angeletele\0" // vg + "lutanda lwa angeletele ku mbu wa indiya\0" // io + "luwánda\0" // rw + "luxeburg\0" // lu + "luxembogu\0" // lu + "luxemborg\0" // lu + "luxembourg\0" // lu + "luxembourgi\0" // lu + "luxemburg\0" // lu + "luxemburgo\0" // lu + "luxemburgska\0" // lu + "luxemburgu\0" // lu + "luxembursch\0" // lu + "luxembursko\0" // lu + "luxenburgo\0" // lu + "luzɨmbùʔ\0" // lu + "lwanda\0" // rw + "lwcsembwrg\0" // lu + "lyaban\0" // jp + "lyamen\0" // ye + "lyts ôflizzen eilannen fan de ferienigde staten\0" // um + "lyuksemburg\0" // lu + "lyunan\0" // gr + "làdvià\0" // lv + "làebɛlìa\0" // lr + "lào\0" // la + "làthos\0" // la + "làtɨva\0" // lv + "làwos\0" // la + "làôs\0" // la + "látvia\0" // lv + "lãnh thổ palestine\0" // ps + "lãnh thổ phía nam thuộc pháp\0" // tf + "lãnh thổ ấn độ dương thuộc anh\0" // io + "länsi-sahara\0" // eh + "läti\0" // lv + "lätland\0" // lv + "lääne-sahara\0" // eh + "lèbanòn\0" // lb + "lètwǎnyìa\0" // lt + "lèyunyɔ̀ŋ\0" // re + "lëtzebuerg\0" // lu + "lìberìà\0" // lr + "lìtùanìà\0" // lt + "líban\0" // lb + "líbano\0" // lb + "líbanon\0" // lb + "líbanu\0" // lb + "líbería\0" // lr + "líbia\0" // ly + "líbya\0" // ly + "líbía\0" // ly + "lístɛ́nsitáyin\0" // li + "lísə́sə́táin\0" // li + "lõuna-aafrika vabariik\0" // za + "lõuna-georgia ja lõuna-sandwichi saared\0" // gs + "lõuna-korea\0" // kr + "lõuna-sudaan\0" // ss + "lùaôsi\0" // la + "lùgsàmbûr\0" // lu + "lùmanyìa\0" // ro + "lùwandà\0" // rw + "lúxemborg\0" // lu + "lübie\0" // ly + "lübnan\0" // lb + "lüksemburg\0" // lu + "lüksemburq\0" // lu + "lüübie\0" // ly + "lýuksemburg\0" // lu + "lēunioni\0" // re + "lĩbia\0" // ly + "lībija\0" // ly + "līchtenšteinan\0" // li + "līpia\0" // ly + "lūkia\0" // ru + "lūsia\0" // ru + "lǝsóto\0" // ls + "ləsotó\0" // ls + "lətoní\0" // lv + "lɛbanè\0" // lb + "lɛbanɔn\0" // lb + "lɛiraq\0" // iq + "lɛmila alabo\0" // ae + "lɛsoto nutome\0" // ls + "lɛsutu\0" // ls + "lɛsɔ́tɔ\0" // ls + "lɛtoní\0" // lv + "lɛ̀sotù\0" // ls + "lɛ́uniyɔ̂n\0" // re + "l’antártida\0" // aq + "ma-rốc\0" // ma + "maacedooni\0" // mk + "maadâ-afrikka\0" // za + "maadâ-georgia já máddááh sandwichsuolluuh\0" // gs + "maadâ-korea\0" // kr + "maadâ-sudan\0" // ss + "maalda\0" // mt + "maaldiqeen\0" // mv + "maali\0" // ml + "maarok\0" // ma + "maatà\0" // mt + "mabelé ya angɛlɛtɛ́lɛ na mbú ya indiya\0" // io + "macao\0" // mo + "macao - – kiina e.h.k.\0" // mo + "macao rae\0" // mo + "macao s.a.r. kina\0" // mo + "macao sar van sina\0" // mo + "macao – kiinan e.h.a.\0" // mo + "macao – oao číny\0" // mo + "macao – zao číny\0" // mo + "macao, trung quốc\0" // mo + "macaristan\0" // hu + "macarıstan\0" // hu + "macau\0" // mo + "macau (rae xina)\0" // mo + "macau erihalduspiirkond\0" // mo + "macau nutome\0" // mo + "macau rae da china\0" // mo + "macau rhga tsieina\0" // mo + "macau rmd sina\0" // mo + "macau sar china\0" // mo + "macau sar tsaina nutome\0" // mo + "macau sar van china\0" // mo + "macau sas sjina\0" // mo + "macau txinako aeb\0" // mo + "macau, rae da china\0" // mo + "macedonia\0" // mk + "macedonia (arim)\0" // mk + "macedonia (arydm)\0" // mk + "macedonia (cwim)\0" // mk + "macedonia (erym)\0" // mk + "macedonia (fyrom)\0" // mk + "macedoniab\0" // mk + "macedonie\0" // mk + "macedonie (fyrom)\0" // mk + "macedoniya\0" // mk + "macedonië\0" // mk + "macedonië (fyrom)\0" // mk + "macedonië (vjrm)\0" // mk + "macedònia\0" // mk + "macedònia (antiga república iugoslava de macedònia)\0" // mk + "macedónia\0" // mk + "macedónia (arjm)\0" // mk + "macedónia (mvjk)\0" // mk + "macedónsko\0" // mk + "macedónsko (bjrm)\0" // mk + "macedônia\0" // mk + "macedônia (arim)\0" // mk + "macedōnija\0" // mk + "macedɔni\0" // mk + "machtinik\0" // mq + "macàthu\0" // mo + "macàthu sar na sìne\0" // mo + "macáu\0" // mo + "macédoine\0" // mk + "macédoine (arym)\0" // mk + "madagascar\0" // mg + "madagascari\0" // mg + "madagaschkar\0" // mg + "madagasgar\0" // mg + "madagasika\0" // mg + "madagasikara\0" // mg + "madagasikari\0" // mg + "madagasita\0" // mg + "madagaska\0" // mg + "madagaska nutome\0" // mg + "madagaskaar\0" // mg + "madagaskar\0" // mg + "madagaskara\0" // mg + "madagaskaras\0" // mg + "madagaskaro\0" // mg + "madagaskära\0" // mg + "madagaszkár\0" // mg + "madagasəkárə\0" // mg + "madagáscar\0" // mg + "madaqaskar\0" // mg + "madaɣacqar\0" // mg + "madaɣecqer\0" // mg + "maddajaska\0" // mg + "madeiaskar\0" // mg + "madive\0" // mv + "madívɛ\0" // mv + "madźarska\0" // hu + "madžarska\0" // hu + "maekronehyia\0" // fm + "maekòlòneshìa\0" // fm + "maeneo ya kusini ya ufaransa\0" // tf + "maeneo ya palestina\0" // ps + "maenmar (burma)\0" // mm + "maghribi\0" // ma + "magyarország\0" // hu + "mailí\0" // ml + "maiote\0" // yt + "mairtinic\0" // mq + "majot\0" // yt + "majota\0" // yt + "majotas\0" // yt + "majote\0" // yt + "majoto\0" // yt + "majott\0" // yt + "majotta\0" // yt + "majotë\0" // yt + "makaawo\0" // mo + "makadooniya\0" // mk + "makao\0" // mo + "makao (sar kina)\0" // mo + "makao (xitoy mmh)\0" // mo + "makao sar kina\0" // mo + "makao xüsusi İnzibati ərazi çin\0" // mo + "makasiko\0" // mx + "makau\0" // mo + "makau (shina)\0" // mo + "makau aas hytaý\0" // mo + "makau sar siaina\0" // mo + "makau sar tiongkok\0" // mo + "makaw\0" // mo + "makaó\0" // mo + "makaó kkt\0" // mo + "makedonia\0" // mk + "makedonia (bry)\0" // mk + "makedonia (fyrom) nutome\0" // mk + "makedonia (rykm)\0" // mk + "makedonia nutome\0" // mk + "makedonie\0" // mk + "makedonie (fyrom)\0" // mk + "makedonien\0" // mk + "makedonija\0" // mk + "makedonija (bjr)\0" // mk + "makedonija (bjrm)\0" // mk + "makedonija (fyrom)\0" // mk + "makedonijos respublika\0" // mk + "makedoniya\0" // mk + "makedoniya (kyrm)\0" // mk + "makedoniya (syrm)\0" // mk + "makedoniýa\0" // mk + "makedoniýa (öýr)\0" // mk + "makedonska\0" // mk + "makedonska (fyrom)\0" // mk + "makedonujo\0" // mk + "makedonya\0" // mk + "makedonya (eymc)\0" // mk + "makedoonia\0" // mk + "makedoonia vabariik\0" // mk + "makedońska\0" // mk + "makedońska (prj)\0" // mk + "makedónia\0" // mk + "makedónia (fjm)\0" // mk + "makedónía\0" // mk + "makedónía (fyrrverandi lýðveldi júgóslavíu)\0" // mk + "makáo\0" // mo + "mal i zi\0" // me + "malaawi\0" // mw + "malabhaidh\0" // mw + "maladewa\0" // mv + "malaidhsea\0" // my + "malaisia\0" // my + "malaisie\0" // my + "malaisije\0" // my + "malaisiya\0" // my + "malaizia\0" // my + "malaizija\0" // my + "malajsie\0" // my + "malajzi\0" // my + "malajzia\0" // my + "malajzija\0" // my + "malajzio\0" // my + "malaoì\0" // mw + "malasia\0" // my + "malasía\0" // my + "malativisi\0" // mv + "malaui\0" // mw + "malavi\0" // mw + "malavio\0" // mw + "malavis\0" // mw + "malaví\0" // mw + "malawi\0" // mw + "malawi nutome\0" // mw + "malawib\0" // mw + "malawí\0" // mw + "malawïi\0" // mw + "malaysia\0" // my + "malaysia nutome\0" // my + "malaysiab\0" // my + "malaysiya\0" // my + "malayziya\0" // my + "malaýziýa\0" // my + "maldib\0" // mv + "maldibi\0" // mv + "maldif\0" // mv + "maldiivid\0" // mv + "maldiivu\0" // mv + "maldiiw\0" // mv + "maldiiwe\0" // mv + "maldiv\0" // mv + "maldiv adaları\0" // mv + "maldiv orollari\0" // mv + "maldiva\0" // mv + "maldivak\0" // mv + "maldivane\0" // mv + "maldivas\0" // mv + "maldive\0" // mv + "maldiven\0" // mv + "maldivene\0" // mv + "maldiverna\0" // mv + "maldiverne\0" // mv + "maldives\0" // mv + "maldivesa\0" // mv + "maldivesdukɔ\0" // mv + "maldivez\0" // mv + "maldivi\0" // mv + "maldivia\0" // mv + "maldivis\0" // mv + "maldivler\0" // mv + "maldivoj\0" // mv + "maldivoyggjar\0" // mv + "maldivy\0" // mv + "maldivǝ\0" // mv + "maldiwler\0" // mv + "maldoba\0" // md + "maldyvai\0" // mv + "maldív-szigetek\0" // mv + "maldíveyjar\0" // mv + "maldîva\0" // mv + "maldīvija\0" // mv + "malediivit\0" // mv + "malediivvat\0" // mv + "malediiwe\0" // mv + "maledive\0" // mv + "malediveh\0" // mv + "malediven\0" // mv + "maledivy\0" // mv + "malediwe\0" // mv + "malediwy\0" // mv + "maleezi\0" // my + "malehyia\0" // my + "maleisië\0" // my + "malekani\0" // us + "malesi\0" // my + "malesia\0" // my + "malesii\0" // my + "malesiya\0" // my + "malesí\0" // my + "malethia\0" // my + "maletíif\0" // mv + "malezhiya\0" // my + "malezi\0" // my + "malezija\0" // my + "maleziya\0" // my + "malezja\0" // my + "malezya\0" // my + "malezïi\0" // my + "maleísia\0" // my + "mali\0" // ml + "mali nutome\0" // ml + "mali udaljeni otoci sad-a\0" // um + "malib\0" // ml + "malidavi\0" // mv + "malio\0" // ml + "malis\0" // ml + "malita\0" // mt + "malite\0" // mt + "malitiniki\0" // mq + "malitɛ\0" // mt + "malizya\0" // my + "mallediive\0" // mv + "malt\0" // mt + "malta\0" // mt + "malta nutome\0" // mt + "malte\0" // mt + "malti\0" // mt + "maltiniki\0" // mq + "maltiníik\0" // mq + "malto\0" // mt + "maltà\0" // mt + "maltë\0" // mt + "maltǝ\0" // mt + "maluwini gun\0" // fk + "maluwín\0" // fk + "malviini saared\0" // fk + "malvinak\0" // fk + "malàisia\0" // my + "maláawi\0" // mw + "malásia\0" // my + "maláui\0" // mw + "maláwi\0" // mw + "malázia\0" // my + "maläisia\0" // my + "malè\0" // ml + "malí\0" // ml + "malî\0" // ml + "malïi\0" // ml + "malóok\0" // ma + "malāvija\0" // mw + "malēsia\0" // my + "malĩsia\0" // my + "malədívə\0" // mv + "malɛsí\0" // my + "malɛzi\0" // my + "malɛ́zia\0" // my + "malṭ\0" // mt + "malṭa\0" // mt + "man\0" // im + "man adası\0" // im + "man uhartea\0" // im + "man-sziget\0" // im + "mangoliya\0" // mn + "mani saar\0" // im + "manja udaljena ostrva sad\0" // um + "mann-sullot\0" // im + "mansaari\0" // im + "manserati\0" // ms + "mansuálui\0" // im + "mantserat\0" // ms + "manɣulya\0" // mn + "maole\0" // yt + "maorisy\0" // mu + "maoritania\0" // mr + "maouritania\0" // mr + "maqdunya\0" // mk + "maqedoni\0" // mk + "maqedoni (irjm)\0" // mk + "maracó\0" // ma + "marawi\0" // mw + "marayizia\0" // my + "maraykanka\0" // us + "marekani\0" // us + "mari\0" // ml + "mariana gurma gungey\0" // mp + "mariannes du nord\0" // mp + "marianos šiaurinės salos\0" // mp + "mariany północne\0" // mp + "maridives\0" // mv + "marini-senu\0" // sm + "marisali gun\0" // mh + "marita\0" // mt + "maritiniiki\0" // mq + "maritiniki\0" // mq + "maritiníiki\0" // mq + "markaziy afrika respublikasi\0" // cf + "maroc\0" // ma + "marocco\0" // ma + "marocko\0" // ma + "marog\0" // ma + "marok\0" // ma + "maroka\0" // ma + "marokas\0" // ma + "marokash\0" // ma + "maroke\0" // ma + "marokko\0" // ma + "marokkó\0" // ma + "maroko\0" // ma + "marokus\0" // ma + "marokɛ\0" // ma + "marooko\0" // ma + "marroc\0" // ma + "marrocos\0" // ma + "marruecos\0" // ma + "marshal ƒudomekpowo nutome\0" // mh + "marshall adaları\0" // mh + "marshall islands\0" // mh + "marshall orollari\0" // mh + "marshall uharteak\0" // mh + "marshall-eilannen\0" // mh + "marshall-szigetek\0" // mh + "marshalleilande\0" // mh + "marshalleilanden\0" // mh + "marshalleilannen\0" // mh + "marshalleyjar\0" // mh + "marshalli saared\0" // mh + "marshallinsaaret\0" // mh + "marshallinselen\0" // mh + "marshallinseln\0" // mh + "marshallinsle\0" // mh + "marshallove ostrovy\0" // mh + "marshallovi otoki\0" // mh + "marshallovy ostrovy\0" // mh + "marshallowe kupy\0" // mh + "marshalloyggjar\0" // mh + "marshallsullot\0" // mh + "marshallsuolluuh\0" // mh + "marshallöarna\0" // mh + "marshalløerne\0" // mh + "marshalløyane\0" // mh + "marshalløyene\0" // mh + "martinica\0" // mq + "martiniche\0" // mq + "martinigg\0" // mq + "martiniiki\0" // mq + "martinik\0" // mq + "martinika\0" // mq + "martiniki\0" // mq + "martiniki nutome\0" // mq + "martiniko\0" // mq + "martinikë\0" // mq + "martinique\0" // mq + "martiník\0" // mq + "martynika\0" // mq + "maruk\0" // ma + "marôka\0" // ma + "marôko\0" // ma + "marŝaloj\0" // mh + "marşal adaları\0" // mh + "marşall adalary\0" // mh + "maršal gungey\0" // mh + "maršalinslä\0" // mh + "maršalo salos\0" // mh + "maršalova ostrva\0" // mh + "maršalovi otoci\0" // mh + "maršalska ostrva\0" // mh + "marɔk\0" // ma + "marɔku\0" // ma + "marɔ́g\0" // ma + "marətiníg\0" // mq + "masar\0" // eg + "masar, misira\0" // eg + "masedoni (ryyyk)\0" // mk + "masedonia\0" // mk + "masedoninya\0" // mk + "masedoniya\0" // mk + "masedoonia\0" // mk + "maseduwaan\0" // mk + "maseduwaan (réewum yugoslawi gu yàgg ga)\0" // mk + "maseduäni\0" // mk + "masedwane\0" // mk + "masedwann\0" // mk + "masedwanɛ\0" // mk + "masedónia\0" // mk + "masetuán\0" // mk + "masetōnia\0" // mk + "masetōnia (fyrom)\0" // mk + "masha tiŋŋɛ\0" // mh + "masidunya\0" // mk + "masidunya (tagduda taqbuṛt tayuguslavit n masidunya)\0" // mk + "masidwan\0" // mk + "masidónia\0" // mk + "masidónia (fyrom)\0" // mk + "matafonua ʻaivolī\0" // ci + "matakasika\0" // mg + "matakaskáal\0" // mg + "mathedonia\0" // mk + "matinik\0" // mq + "matiniki\0" // mq + "matiník\0" // mq + "maulitania\0" // mr + "maulitenia\0" // mr + "maulitiusi\0" // mu + "mauretaanie\0" // mr + "mauretania\0" // mr + "mauretanie\0" // mr + "mauretanien\0" // mr + "mauretanija\0" // mr + "mauretánia\0" // mr + "maurice\0" // mu + "maurici\0" // mu + "mauricijus\0" // mu + "mauricio\0" // mu + "mauriciu\0" // mu + "mauricius\0" // mu + "mauriizius\0" // mu + "maurishiasi\0" // mu + "mauritaania\0" // mr + "mauritani\0" // mr + "mauritania\0" // mr + "mauritania nutome\0" // mr + "mauritanie\0" // mr + "mauritanija\0" // mr + "mauritaniya\0" // mr + "mauritanië\0" // mr + "mauriteeniya\0" // mr + "mauritius\0" // mu + "mauritiusdukɔ\0" // mu + "mauritània\0" // mr + "mauritánia\0" // mr + "mauritánie\0" // mr + "mauritânia\0" // mr + "mauritānija\0" // mr + "maurizi\0" // mu + "maurizijus\0" // mu + "maurizio\0" // mu + "maurícia\0" // mu + "maurício\0" // mu + "maurícius\0" // mu + "maurísia\0" // mu + "maurĩtiasi\0" // mu + "maurīcija\0" // mu + "mautitaanije\0" // mr + "mavote\0" // yt + "mavretanija\0" // mr + "mavriki\0" // mu + "mavrikiy\0" // mu + "mavritaniya\0" // mr + "mawretanska\0" // mr + "mawretańska\0" // mr + "mawrikiý\0" // mu + "mawritaniýa\0" // mr + "mawulisyasi\0" // mu + "mawulitenya\0" // mr + "maynamar\0" // mm + "mayoot\0" // yt + "mayooti\0" // yt + "mayot\0" // yt + "mayote\0" // yt + "mayoti\0" // yt + "mayotta\0" // yt + "mayotte\0" // yt + "mayotte nutome\0" // yt + "mayotɛ\0" // yt + "mayuṭ\0" // yt + "mayóote\0" // yt + "mayôty\0" // yt + "mayɔt\0" // yt + "mayɔte\0" // yt + "mayɔ́d\0" // yt + "mayɔ́t\0" // yt + "mayɔ́ɔt\0" // yt + "mayɔ̂t\0" // yt + "mazedonia\0" // mk + "mazedoniako jugoslaviar errepublika ohia\0" // mk + "mazedonie\0" // mk + "mazedonie (ejr)\0" // mk + "mazedonien\0" // mk + "mazedonien (ejr)\0" // mk + "mazedoonie\0" // mk + "mazedoonie (ejrm)\0" // mk + "mazedoonije\0" // mk + "maýotta\0" // yt + "maďarsko\0" // hu + "mađarska\0" // hu + "maķedonija\0" // mk + "maŋ má falkland\0" // fk + "maŋ́ mariá\0" // mp + "maŋ́ má kapvɛr\0" // cv + "maŋ́ má kook\0" // ck + "maŋ́ má kumbi\0" // ky + "maŋ́ má marshall\0" // mh + "maŋ́ má nɔrfɔrk\0" // nf + "maŋ́ má salomɔn\0" // sb + "maŋ́ má turk na kaiko\0" // tc + "maŭricio\0" // mu + "maŭritanujo\0" // mr + "maṣr\0" // eg + "mbolivi\0" // bo + "mbongo-afrîka\0" // za + "mbosini ne hezegovine\0" // ba + "mbotswana\0" // bw + "mbretëria e bashkuar\0" // gb + "mbulukína fásɔ\0" // bf + "mbulundi\0" // bi + "mbulundí\0" // bi + "mburundi\0" // bi + "mbutàn\0" // bt + "mbɔlivî\0" // bo + "mbɔtswána\0" // bw + "mbɛlazîl\0" // br + "mbɛnɛ̂ŋ\0" // bj + "meagsago\0" // mx + "meanbh-eileanan iomallach nan sa\0" // um + "meceduwaan\0" // mk + "mecsico\0" // mx + "mecʼhiko\0" // mx + "mehhiko\0" // mx + "mehika\0" // mx + "meicsiceo\0" // mx + "mekiko\0" // mx + "mekisiko\0" // mx + "mekisikou\0" // mx + "mekisîki\0" // mx + "meksik\0" // mx + "meksika\0" // mx + "meksike\0" // mx + "meksikho\0" // mx + "meksiki\0" // mx + "meksiko\0" // mx + "meksiku\0" // mx + "meksikë\0" // mx + "meksyk\0" // mx + "mekthiko\0" // mx + "melnkalne\0" // me + "men adasy\0" // im + "men adası\0" // im + "men oroli\0" // im + "mena\0" // im + "mendebaldeko sahara\0" // eh + "meno sala\0" // im + "menšie odľahlé ostrovy usa\0" // um + "menší odlehlé ostrovy usa\0" // um + "mesir\0" // eg + "messic\0" // mx + "messico\0" // mx + "mexic\0" // mx + "mexico\0" // mx + "mexico nutome\0" // mx + "mexicob\0" // mx + "mexik\0" // mx + "mexiki\0" // mx + "mexiko\0" // mx + "mexikó\0" // mx + "mexique\0" // mx + "mexíkó\0" // mx + "meṛṛuk\0" // ma + "me’roj oroli\0" // ac + "mianmar\0" // mm + "mianmar (birma)\0" // mm + "mianmar (birmánia)\0" // mm + "mianmar (birmânia)\0" // mm + "mianmar (burma)\0" // mm + "mianmaras (birma)\0" // mm + "mianəmár\0" // mm + "miaŋmáal\0" // mm + "micronesia\0" // fm + "micronesie\0" // fm + "micronesiya\0" // fm + "micronesië\0" // fm + "micronezia\0" // fm + "micronèsia\0" // fm + "micronésia\0" // fm + "micronésie\0" // fm + "migizike\0" // mx + "mijanmar (burma)\0" // mm + "mikilonesia\0" // fm + "mikilonesiya\0" // fm + "mikironesi\0" // fm + "mikironesiya\0" // fm + "mikironésia\0" // fm + "miklonesia\0" // fm + "mikolonesí\0" // fm + "mikolonīsia\0" // fm + "mikonisiya\0" // fm + "mikoronesi\0" // fm + "mikoronesii\0" // fm + "mikoroniziya\0" // fm + "mikoronésia\0" // fm + "mikroneesia\0" // fm + "mikroneesie\0" // fm + "mikroneesije\0" // fm + "mikronesia\0" // fm + "mikronesia littoväldi\0" // fm + "mikronesia nutome\0" // fm + "mikronesiaføderasjonen\0" // fm + "mikronesian liittovaltio\0" // fm + "mikronesiasamveldið\0" // fm + "mikronesie\0" // fm + "mikronesien\0" // fm + "mikronesië\0" // fm + "mikronethia\0" // fm + "mikronezi\0" // fm + "mikronezia\0" // fm + "mikronezija\0" // fm + "mikronezio\0" // fm + "mikroneziska\0" // fm + "mikroneziya\0" // fm + "mikroneziýa\0" // fm + "mikronezja\0" // fm + "mikronezya\0" // fm + "mikronezïi\0" // fm + "mikroneżja\0" // fm + "mikronésie\0" // fm + "mikronézia\0" // fm + "mikronēzija\0" // fm + "mikronɛ́si\0" // fm + "mikrunizya\0" // fm + "mikrônezia\0" // fm + "miksik\0" // mx + "mikskātauta\0" // de + "mikuronesiya\0" // fm + "mikuronezya\0" // fm + "milad adası\0" // cx + "minlambɔ́ nsaŋ́nsa mí arabia\0" // ae + "minlán mi amɛrəkə\0" // vi + "minlán mi fóləkəlan\0" // fk + "minlán mi marián yá nór\0" // mp + "minlán mí kalimáŋ\0" // ky + "minlán mí káb vɛr\0" // cv + "minlán mí kúg\0" // ck + "minlán mí maresál\0" // mh + "minlán mí solomɔ́n\0" // sb + "minlán mí túrə́g-ai-kaíg\0" // tc + "minlán nɔrəfɔ́ləkə\0" // nf + "minsilɛ mí maŋ́ m´amɛrka\0" // vi + "minsilɛ́ mímaŋ mí ngɛ̄lɛ̄n\0" // vg + "misili\0" // eg + "misir\0" // eg + "misiri\0" // eg + "misli\0" // eg + "misr\0" // eg + "misra\0" // eg + "misri\0" // eg + "mithri\0" // eg + "miyamaar\0" // mm + "miyamaha\0" // mm + "miyanma\0" // mm + "miyanmaar\0" // mm + "miyanmar\0" // mm + "miànmar\0" // mm + "miáama\0" // mm + "mið-afríkulýðveldið\0" // cf + "miðafrikalýðveldið\0" // cf + "miðbaugs-gínea\0" // gq + "miṣr\0" // eg + "miṣṛ\0" // eg + "mjanma (birma)\0" // mm + "mjanmao\0" // mm + "mjanmar\0" // mm + "mjanmar (burma)\0" // mm + "mjanmar (búrma)\0" // mm + "mjanmarsko\0" // mm + "mji wa vatican\0" // va + "mnulezile\0" // br + "mnɣulya\0" // mn + "modivu\0" // mv + "modíivu\0" // mv + "mofam demokratik mati kongo\0" // cd + "mofam mati cek\0" // cz + "mofam mati dominik\0" // do + "moldaavije\0" // md + "moldau\0" // md + "moldavi\0" // md + "moldavia\0" // md + "moldavie\0" // md + "moldavien\0" // md + "moldavija\0" // md + "moldavië\0" // md + "moldavsko\0" // md + "moldavujo\0" // md + "moldavìà\0" // md + "moldavùii\0" // md + "moldawi\0" // md + "moldawien\0" // md + "moldawii\0" // md + "moldawska\0" // md + "moldofa\0" // md + "moldova\0" // md + "moldova nutome\0" // md + "moldovi\0" // md + "moldoviya\0" // md + "moldowa\0" // md + "moldàvia\0" // md + "moldávia\0" // md + "moldóva\0" // md + "molidavi\0" // md + "molidova\0" // md + "molidóova\0" // md + "molisi\0" // mu + "molitania\0" // mr + "molitaniya\0" // mr + "molitaní\0" // mr + "molodova\0" // md + "moloko\0" // ma + "molotova\0" // md + "moltafí\0" // md + "moludave\0" // mv + "moludavi\0" // md + "molís\0" // mu + "molədaví\0" // md + "monaakoo\0" // mc + "monaco\0" // mc + "monacó\0" // mc + "monago\0" // mc + "monakas\0" // mc + "monakho\0" // mc + "monakko\0" // mc + "monako\0" // mc + "monako nutome\0" // mc + "monaku\0" // mc + "monakó\0" // mc + "monaköo\0" // mc + "mongjolei\0" // mn + "mongokōlia\0" // mn + "mongolei\0" // mn + "mongoli\0" // mn + "mongolia\0" // mn + "mongolia nutome\0" // mn + "mongolie\0" // mn + "mongoliet\0" // mn + "mongolija\0" // mn + "mongoliya\0" // mn + "mongolië\0" // mn + "mongoliýa\0" // mn + "mongolska\0" // mn + "mongolsko\0" // mn + "mongolujo\0" // mn + "mongolí\0" // mn + "mongolïi\0" // mn + "mongooli\0" // mn + "mongoolia\0" // mn + "mongooliya\0" // mn + "mongoria\0" // mn + "mongßerrat\0" // ms + "mongòlia\0" // mn + "mongólia\0" // mn + "mongólía\0" // mn + "monitenikalo\0" // me + "monitiselati\0" // ms + "monngolii\0" // mn + "monqolustan\0" // mn + "monselati\0" // ms + "monseraat\0" // ms + "monserat\0" // ms + "monserrat\0" // ms + "monserrate\0" // ms + "monserâte\0" // ms + "montainéagró\0" // me + "monteneegro\0" // me + "montenegoro\0" // me + "montenegro\0" // me + "montenegro nutome\0" // me + "montenegru\0" // me + "montenegró\0" // me + "monteneqro\0" // me + "monteráati\0" // ms + "monteseraati\0" // ms + "monteserati\0" // ms + "montsarat\0" // ms + "montselati\0" // ms + "montsera\0" // ms + "montserat\0" // ms + "montseratas\0" // ms + "montserrat\0" // ms + "montserrat nutome\0" // ms + "montserrata\0" // ms + "montserrati\0" // ms + "monttherrati\0" // ms + "monténégro\0" // me + "monáako\0" // mc + "moonako\0" // mc + "mooris gungey\0" // mu + "mooritaani\0" // mr + "mooritani\0" // mr + "mooseraa\0" // ms + "moosörrat\0" // ms + "moratàinea\0" // mr + "moridova\0" // md + "moriis\0" // mu + "moris\0" // mu + "morise\0" // mu + "morisi\0" // mu + "morisse\0" // mu + "morisɛ\0" // mu + "moritani\0" // mr + "moritania\0" // mr + "moritaniya\0" // mr + "moritanya\0" // mr + "moritaní\0" // mr + "moritanïi\0" // mr + "morithi\0" // mu + "moritus\0" // mu + "moritánia\0" // mr + "morocco\0" // ma + "moroco\0" // ma + "morokho\0" // ma + "moroko\0" // ma + "moroko nutome\0" // ma + "moríisi\0" // mu + "morís\0" // mu + "moróoko\0" // ma + "mosambic\0" // mz + "mosambiek\0" // mz + "mosambiik\0" // mz + "mosambik\0" // mz + "mosambík\0" // mz + "mosammbik\0" // mz + "mosàmbig\0" // mz + "mosēmipiki\0" // mz + "motu kilipatoni\0" // cp + "motu kilisimasi\0" // cx + "motu mani\0" // im + "motu nōfoliki\0" // nf + "motu puveti\0" // bv + "motu ʻasenisini\0" // ac + "moyette\0" // yt + "mozambic\0" // mz + "mozambico\0" // mz + "mozambiiki\0" // mz + "mozambik\0" // mz + "mozambika\0" // mz + "mozambikas\0" // mz + "mozambike\0" // mz + "mozambiki\0" // mz + "mozambiki nutome\0" // mz + "mozambiko\0" // mz + "mozambique\0" // mz + "mozambíg\0" // mz + "mozambíki\0" // mz + "mozanbiki\0" // mz + "moçambic\0" // mz + "moçambique\0" // mz + "moğolistan\0" // mn + "mołdawia\0" // md + "moŋoli\0" // mn + "moŋsera\0" // ms + "moʻungaselati\0" // ms + "mpoloni\0" // pl + "mpotoriku\0" // pr + "mputulugeshi\0" // pt + "msumbiji\0" // mz + "mthumbiji\0" // mz + "mugaz kanpoko ozeania\0" // qo + "muiʻi vēte\0" // cv + "muldabi\0" // md + "muldufya\0" // md + "mulḍavya\0" // md + "munaku\0" // mc + "mungulya\0" // mn + "munjema gwa kusikha nu luvala lwa gasa lwa palesit\0" // ps + "munsirat\0" // ms + "muntenegru\0" // me + "muntinigru\0" // me + "muntsirra\0" // ms + "muqaddas yelena oroli\0" // sh + "muris\0" // mu + "murishiyoos\0" // mu + "muritaaniya\0" // mr + "muritani\0" // mr + "muritanya\0" // mr + "muriṭanya\0" // mr + "musambiig\0" // mz + "musambiki\0" // mz + "musera\0" // ms + "mushidi\0" // eg + "musumbiji\0" // mz + "musumbíiji\0" // mz + "muyama\0" // mm + "muzambiq\0" // mz + "muzembiq\0" // mz + "muznbiq\0" // mz + "muṛiṭanya\0" // mr + "mwaritaní\0" // mr + "mwarís\0" // mu + "mweemberera wa kʉmweeri wa gáaza\0" // ps + "myama\0" // mm + "myamare\0" // mm + "myanamar\0" // mm + "myanima\0" // mm + "myanimari\0" // mm + "myanma\0" // mm + "myanma (birma)\0" // mm + "myanmar\0" // mm + "myanmar (barma)\0" // mm + "myanmar (birma)\0" // mm + "myanmar (birmania)\0" // mm + "myanmar (birmanie)\0" // mm + "myanmar (birmània)\0" // mm + "myanmar (burma)\0" // mm + "myanmar (burma) nutome\0" // mm + "myanmar (miến điện)\0" // mm + "myanmár\0" // mm + "myànmâr\0" // mm + "myämâra\0" // mm + "mzansi ye afrika\0" // za + "màdivè\0" // mv + "màdàgasɨkà\0" // mg + "màdàgàskâr\0" // mg + "màili\0" // ml + "màlawì\0" // mw + "màldîf\0" // mv + "màli\0" // ml + "màlàwi\0" // mw + "màlɛshìa\0" // my + "màlɛ̀sìà\0" // my + "màrokò\0" // ma + "màrtìnîk\0" // mq + "màsèdonìà\0" // mk + "màtìnekì\0" // mq + "màyotì\0" // yt + "màyɔ̂t\0" // yt + "màŋ mi njɔ̂k\0" // ci + "máali\0" // ml + "málita\0" // mt + "málta\0" // mt + "málətə\0" // mt + "málɛ́t\0" // mt + "mándaŋgasɛkâ\0" // mg + "máritanía\0" // mr + "máritíus\0" // mu + "másǝdwán\0" // mk + "mátta-afrihká\0" // za + "mátta-korea\0" // kr + "máttasudan\0" // ss + "mâlta\0" // mt + "märtïnîki\0" // mq + "mäxiko\0" // mx + "mäxikän\0" // mx + "mäyôte\0" // yt + "mèxic\0" // mx + "méxico\0" // mx + "méxicu\0" // mx + "méxiku\0" // mx + "mìkrònesìà\0" // fm + "míkrónesía\0" // fm + "mílahaŋska tȟamákȟočhe\0" // us + "mísiri\0" // eg + "míséla\0" // eg + "mòlokò\0" // ma + "mònaco\0" // mc + "mònakò\0" // mc + "mòodovà\0" // md + "mòrìtanìà\0" // mr + "mòrîs\0" // mu + "mòsaimbic\0" // mz + "mòsàmbîk\0" // mz + "mòŋgolìà\0" // mn + "mónaco\0" // mc + "mónacu\0" // mc + "mónaku\0" // mc + "mónakó\0" // mc + "móritania\0" // mr + "móritius\0" // mu + "mósaimbíc\0" // mz + "mósambík\0" // mz + "môldavia\0" // md + "mônaco\0" // mc + "mônakô\0" // mc + "mông cổ\0" // mn + "môngôlia\0" // mn + "mön\0" // im + "mörîsi\0" // mu + "mözämbîka\0" // mz + "mùleshwɨ̀s\0" // mu + "mùlètanyìa\0" // mr + "mùnaku\0" // mc + "mùzàmbî\0" // mz + "mùŋgolìa\0" // mn + "mùŋtselà\0" // ms + "müqəddəs pyer və mikelon\0" // pm + "müqəddəs yelena\0" // sh + "müsür\0" // eg + "mýanma (burma)\0" // mm + "māli\0" // ml + "mālta\0" // mt + "māršala salas\0" // mh + "mātiniki\0" // mq + "mısır\0" // eg + "mōldawija\0" // md + "mōnakō\0" // mc + "mōntenegran\0" // me + "mǐanmà\0" // mm + "mɔldavia\0" // md + "mɔldaví\0" // md + "mɔldova\0" // md + "mɔlidova\0" // md + "mɔlitanî\0" // mr + "mɔlta\0" // mt + "mɔlɔ̂k\0" // ma + "mɔnako\0" // mc + "mɔnakó\0" // mc + "mɔngolia\0" // mn + "mɔngoliya\0" // mn + "mɔngɔ́lia\0" // mn + "mɔnserrat\0" // ms + "mɔnsɛrat\0" // ms + "mɔrehyeɔs\0" // mu + "mɔreshɔ\0" // mu + "mɔretaninya\0" // mr + "mɔretenia\0" // mr + "mɔritani\0" // mr + "mɔroko\0" // ma + "mɔsera\0" // ms + "mɔserati\0" // ms + "mɔzambîk\0" // mz + "mɔŋolí\0" // mn + "mɔŋsilá\0" // ms + "mɔ̀ŋseràt\0" // ms + "mɔ́ntserád\0" // ms + "mərakeş\0" // ma + "mərkəzi afrika respublikası\0" // cf + "mɛksiko\0" // mx + "mɛksíik\0" // mx + "mɛksík\0" // mx + "mɛksîk\0" // mx + "mɛkəsíg\0" // mx + "mɛkɨzikù\0" // mx + "mɛsíko\0" // mx + "mɛxik\0" // mx + "mɛ̀gsîk\0" // mx + "mɨ̀sɨ̀donyìa\0" // mk + "mʉtakatíifu heléena\0" // sh + "mʉtakatíifu kitisi na nevíisi\0" // kn + "mʉtakatíifu lusíia\0" // lc + "mʉtakatíifu peéteri na mɨkaéeli\0" // pm + "mʉtakatíifu viséenti na gernadíini\0" // vc + "na bahámaí\0" // bs + "na críocha palaistíneacha\0" // ps + "na h-eileanan bhathama\0" // bs + "na h-eileanan caimean\0" // ky + "na h-eileanan canàrach\0" // ic + "na h-eileanan chocos (keeling)\0" // cc + "na h-eileanan filipineach\0" // ph + "na h-eileanan fàclannach\0" // fk + "na h-eileanan fàclannach (islas malvinas)\0" // fk + "na h-eileanan fàro\0" // fo + "na h-eileanan mairianach a tuath\0" // mp + "na h-eileanan mhaladaibh\0" // mv + "na h-eileanan mhoiriseas\0" // mu + "na h-eileanan sheiseall\0" // sc + "na h-eileanan turcach is caiceo\0" // tc + "na h-eileanan åland\0" // ax + "na h-innd-innse\0" // id + "na h-innseachan\0" // in + "na h-iomaratan arabach aonaichte\0" // ae + "na hoileáin chanáracha\0" // ic + "na hoileáin fhilipíneacha\0" // ph + "na hoileáin mháirianacha thuaidh\0" // mp + "na meanbh-eileanan\0" // fm + "na ranntairean palastaineach\0" // ps + "na stàitean aonaichte\0" // us + "na séiséil\0" // sc + "na tìrean ìsle\0" // nl + "na tìrean ìsle caraibeach\0" // bq + "na uy\0" // no + "naajiriia\0" // ng + "naalagaaffeqatigiit\0" // us + "naamibi\0" // na + "nabhru\0" // nr + "naedzà\0" // ne + "naegyeria\0" // ng + "naigya\0" // ne + "naigyeriya\0" // ng + "naija\0" // ne + "naijelia\0" // ng + "nainjeria\0" // ng + "naisilia\0" // ng + "najeriya\0" // ng + "nam cực\0" // aq + "nam georgia & quần đảo nam sandwich\0" // gs + "nam phi\0" // za + "nam sudan\0" // ss + "namibhiya\0" // na + "namibi\0" // na + "namibia\0" // na + "namibia nutome\0" // na + "namibiab\0" // na + "namibie\0" // na + "namibii\0" // na + "namibija\0" // na + "namibio\0" // na + "namibiya\0" // na + "namibië\0" // na + "namibiýa\0" // na + "namibya\0" // na + "namibí\0" // na + "namibía\0" // na + "namibùii\0" // na + "namiibia\0" // na + "namiibije\0" // na + "namiibiya\0" // na + "namimbia\0" // na + "namimbî\0" // na + "namipia\0" // na + "namipí\0" // na + "namíbia\0" // na + "namībija\0" // na + "naomh bhionsant agus eileanan greanadach\0" // vc + "naomh crìstean is nibheis\0" // kn + "naomh lùisea\0" // lc + "naomh màrtainn\0" // mf + "naorò\0" // nr + "naujoji kaledonija\0" // nc + "naujoji zelandija\0" // nz + "naulu\0" // nr + "naureän\0" // nr + "nauro\0" // nr + "nauru\0" // nr + "nauru nutome\0" // nr + "naurú\0" // nr + "nawazēlandan\0" // nz + "naworu\0" // nr + "nawru\0" // nr + "nawulu\0" // nr + "nawulú\0" // nr + "nawuru\0" // nr + "nayijerya\0" // ng + "nayjeeriya\0" // ng + "nayjer\0" // ne + "naúuru\0" // nr + "naĩja\0" // ne + "naĩjiriya\0" // ng + "naịjịrịa\0" // ng + "nchingu wa magalibi wa mpanda wa kugaza wa kupales\0" // ps + "ndenndaandi cek\0" // cz + "ndenndaandi demokaraasiire konngo\0" // cd + "ndenndaandi santarafrik\0" // cf + "ndenndanndi dominika\0" // do + "ndzáman\0" // de + "neapàl\0" // np + "nebaal\0" // np + "nedderlannen\0" // nl + "nederland\0" // nl + "nederlando\0" // nl + "nederlannda\0" // nl + "nederlân\0" // nl + "nederländerna\0" // nl + "nedàlân\0" // nl + "nedɛrland\0" // nl + "neekaledonien\0" // nc + "neepal\0" // np + "neeseeland\0" // nz + "nefal\0" // np + "neikaledonien\0" // nc + "neipeal\0" // np + "neiséiland\0" // nz + "nekaraguwa\0" // ni + "nemačka\0" // de + "nemecko\0" // de + "nemčija\0" // de + "nepa\0" // np + "nepaal\0" // np + "nepal\0" // np + "nepal nutome\0" // np + "nepala\0" // np + "nepalas\0" // np + "nepali\0" // np + "nepall\0" // np + "nepalo\0" // np + "nephali\0" // np + "nepo\0" // np + "nepáal\0" // np + "nepáali\0" // np + "nepál\0" // np + "nepálɛ\0" // np + "nepāla\0" // np + "nerù\0" // nr + "netherlands\0" // nl + "netherlands nutome\0" // nl + "neukaledonien\0" // nc + "neuschottland\0" // nc + "neuseeland\0" // nz + "new caledonia\0" // nc + "new kaledonia nutome\0" // nc + "new zealand\0" // nz + "new zealand nutome\0" // nz + "new zealandi\0" // nz + "neyuusilaand\0" // nz + "nfalanse\0" // fr + "nfilipi\0" // ph + "nga\0" // ru + "ngabu\0" // ga + "ngana\0" // gh + "ngeleka\0" // gr + "ngelenade\0" // gd + "ngeretha\0" // gb + "ngine\0" // gn + "nginebisau\0" // gw + "ngiriki\0" // gr + "ngirinilandi\0" // gl + "ngiyane\0" // gy + "ngowelande\0" // gl + "ngwadelupe\0" // gp + "ngwame\0" // gu + "ngwatemala\0" // gt + "ngĩbrata\0" // gi + "nhật bản\0" // jp + "nibal\0" // np + "nicaraagua\0" // ni + "nicaragua\0" // ni + "nicaraguab\0" // ni + "nicaraguadukɔ\0" // ni + "nicarágua\0" // ni + "nicearagua\0" // ni + "niderland\0" // nl + "niderlandiya\0" // nl + "niderlandiýa\0" // nl + "niderlandy karaibskie\0" // bq + "nidyeli\0" // ne + "nidyelia\0" // ng + "nidɔlɛŋ\0" // nl + "niederlande\0" // nl + "niemcy\0" // de + "nieu-kaledonië\0" // nc + "nieu-seeland\0" // nz + "nieuw-caledonië\0" // nc + "nieuw-zeeland\0" // nz + "nigeeria\0" // ng + "niger\0" // ne + "niger nutome\0" // ne + "nigeria\0" // ng + "nigeria nutome\0" // ng + "nigerie\0" // ng + "nigerieb\0" // ng + "nigerija\0" // ng + "nigeris\0" // ne + "nigeriya\0" // ng + "nigerië\0" // ng + "nigeriýa\0" // ng + "nigyɛ\0" // ne + "nigèiria\0" // ng + "nigèria\0" // ng + "nigéria\0" // ng + "nigérie\0" // ng + "nigēra\0" // ne + "nigērija\0" // ng + "nihéria\0" // ng + "nihɛ́r\0" // ne + "niijéria\0" // ng + "niiseer\0" // ne + "nij-caledonië\0" // nc + "nij-seelân\0" // nz + "nija\0" // ne + "nijar\0" // ne + "nije\0" // ne + "nijeer\0" // ne + "nijeli\0" // ne + "nijeliya\0" // ng + "nijer\0" // ne + "nijere\0" // ne + "nijeri\0" // ne + "nijeria\0" // ng + "nijeriya\0" // ng + "nijeriyaa\0" // ng + "nijerya\0" // ng + "nijiria\0" // ng + "nijirya\0" // ng + "nijéria\0" // ng + "nijɛ́r\0" // ne + "nijɛ́rya\0" // ng + "nijɛ̂\0" // ne + "nikalagwa\0" // ni + "nikalakua\0" // ni + "nikalaká\0" // ni + "nikaraagua\0" // ng + "nikaraaguwa\0" // ni + "nikaragoà\0" // ni + "nikaragua\0" // ni + "nikaraguwa\0" // ni + "nikaraguwaa\0" // ni + "nikaragva\0" // ni + "nikaragvo\0" // ni + "nikaragwa\0" // ni + "nikarahguwa\0" // ni + "nikaraqua\0" // ni + "nikarágua\0" // ni + "nikarágʉa\0" // ni + "nikarāgwa\0" // ni + "nikàlagwà\0" // ni + "nimska\0" // de + "ninjɛliyâ\0" // ng + "niocaragua\0" // ni + "niowe\0" // nu + "nioé\0" // nu + "nipal\0" // np + "nippal\0" // np + "nirribhidh\0" // no + "niseriya\0" // ng + "nisia\0" // ne + "nisrim\0" // eg + "nisélia\0" // ng + "nisɛ́ɛl\0" // ne + "nitililáand\0" // nl + "niu kaletōnia\0" // nc + "niue\0" // nu + "niue nutome\0" // nu + "niujė\0" // nu + "niukaredonia\0" // nc + "niuo\0" // nu + "niuwe\0" // nu + "niuzilandi\0" // nz + "niuzirandi\0" // nz + "niué\0" // nu + "niuê\0" // nu + "niuē\0" // nu + "niuɛ\0" // nu + "niw\0" // nu + "niwe\0" // nu + "niwi\0" // nu + "niwkaledonie\0" // nc + "niwséland\0" // nz + "niwue\0" // nu + "niwɛ́\0" // nu + "nixeria\0" // ng + "niyu\0" // nu + "niyukaledoniya\0" // nc + "niyuwe\0" // nu + "niyuwé\0" // nu + "niyuziirandi\0" // nz + "nizer\0" // ne + "nizeria\0" // ng + "nizeriya\0" // ng + "nizerya\0" // ng + "nizerïa\0" // ng + "nizozemska\0" // nl + "nizozemski karibi\0" // bq + "nizozemsko\0" // nl + "nizëre\0" // ne + "nizɛri\0" // ne + "nizɛrɛ\0" // ne + "niðurlond\0" // nl + "niðurlonds karibia\0" // bq + "niúue\0" // nu + "niĝerio\0" // ng + "niĝero\0" // ne + "nižer\0" // ne + "nižozemska\0" // nl + "njabani\0" // jp + "njamanĩ\0" // de + "njemačka\0" // de + "njeremani\0" // de + "njimbúti\0" // dj + "njorondani\0" // jo + "njáman\0" // de + "nlambɔ́ bó tschɛk\0" // cz + "nlambɔ́ dominíka\0" // do + "nlambɔ́ ngɛlɛn\0" // gb + "nlambɔ́ ngɛlɛn ma yí maŋ ntsiɛh\0" // io + "nngalesa\0" // gb + "nnijer\0" // ne + "nnijir\0" // ne + "nnmsa\0" // at + "nnrwij\0" // no + "nnurwij\0" // no + "noard-korea\0" // kp + "noardlike marianeneilannen\0" // mp + "noarwegen\0" // no + "noauē\0" // no + "nolwe\0" // no + "nolwei\0" // no + "nood-koreja\0" // kp + "noodsudahn\0" // sd + "noord-korea\0" // kp + "noord-mariane-eilande\0" // mp + "noordelijke marianen\0" // mp + "noordkorea\0" // kp + "noorwe\0" // no + "noorweeb\0" // no + "noorweey\0" // no + "noorwegen\0" // no + "noorweë\0" // no + "noowɛ̂ɛ\0" // no + "nord-korea\0" // kp + "nord-koreo\0" // kp + "nord-marianane\0" // mp + "nord-marianene\0" // mp + "nord-marianoj\0" // mp + "nordkorea\0" // kp + "nordmarianerna\0" // mp + "nordmarianerne\0" // mp + "noreg\0" // no + "noregur\0" // no + "norfolk\0" // nf + "norfolk adasy\0" // nf + "norfolk adası\0" // nf + "norfolk gungoo\0" // nf + "norfolk island\0" // nf + "norfolk ma laŋne\0" // nf + "norfolk oroli\0" // nf + "norfolk uhartea\0" // nf + "norfolk ƒudomekpo nutome\0" // nf + "norfolk-insle\0" // nf + "norfolk-sziget\0" // nf + "norfolkas sala\0" // nf + "norfolkeiland\0" // nf + "norfolkeilân\0" // nf + "norfolkeyja\0" // nf + "norfolkinsaari\0" // nf + "norfolkinsel\0" // nf + "norfolkinsla\0" // nf + "norfolkinsulo\0" // nf + "norfolko sala\0" // nf + "norfolkowa kupa\0" // nf + "norfolksoyggj\0" // nf + "norfolksullot\0" // nf + "norfolksuálui\0" // nf + "norfolkön\0" // nf + "norfolkøya\0" // nf + "norfolški otok\0" // nf + "norga\0" // no + "norge\0" // no + "noriveje\0" // no + "norivezɛ\0" // no + "norja\0" // no + "norra\0" // no + "norrweeje\0" // no + "norsko\0" // no + "norsunluurannikko\0" // ci + "north korea\0" // kp + "northern mariana islands\0" // mp + "noru\0" // nr + "noruega\0" // no + "noruveji\0" // no + "norveej\0" // no + "norvegia\0" // no + "norvegija\0" // no + "norvegiya\0" // no + "norvegje\0" // no + "norvegji\0" // no + "norvegujo\0" // no + "norvegǝ\0" // no + "norvez\0" // no + "norveç\0" // no + "norveška\0" // no + "norvège\0" // no + "norvégia\0" // no + "norvēģija\0" // no + "norway\0" // no + "norway nutome\0" // no + "norwe\0" // no + "norweege\0" // no + "norwees\0" // no + "norwegen\0" // no + "norwegia\0" // no + "norwegiýa\0" // no + "norwegska\0" // no + "norwi\0" // no + "norwy\0" // no + "norwäge\0" // no + "norðaru mariuoyggjar\0" // mp + "norður-kórea\0" // kp + "norður-maríanaeyjar\0" // mp + "norðurkorea\0" // kp + "nosy britanika virijiny\0" // vg + "nosy cap-vert\0" // cv + "nosy falkand\0" // fk + "nosy kayman\0" // ky + "nosy kook\0" // ck + "nosy mariana atsinanana\0" // mp + "nosy marshall\0" // mh + "nosy norfolk\0" // nf + "nosy salomona\0" // sb + "nosy turks sy caïques\0" // tc + "nosy virijiny etazonia\0" // vi + "noua caledonie\0" // nc + "noua zeelandă\0" // nz + "nouvel zeland\0" // nz + "nouvel-kaledoni\0" // nc + "nouvelle-calédonie\0" // nc + "nouvelle-zélande\0" // nz + "nov-kaledonio\0" // nc + "nov-zelando\0" // nz + "nova caledonia\0" // nc + "nova caledònia\0" // nc + "nova caledónia\0" // nc + "nova caledônia\0" // nc + "nova kaledonija\0" // nc + "nova kalidónia\0" // nc + "nova zelanda\0" // nz + "nova zelandia\0" // nz + "nova zelandija\0" // nz + "nova zelândia\0" // nz + "nova zilándia\0" // nz + "novi zeland\0" // nz + "nová kaledonie\0" // nc + "nová kaledónia\0" // nc + "nový zéland\0" // nz + "nowa kaledonia\0" // nc + "nowa kaledoniska\0" // nc + "nowa zelandia\0" // nz + "nowe\0" // no + "noweyi\0" // no + "nowoseelandska\0" // nz + "nsipani\0" // es + "nsáman\0" // de + "nthĩ cia ngeretha gatagatĩ ka ĩria ria hindi\0" // io + "nthĩ ya afrika gatĩgatĩ\0" // cf + "nthĩ ya cheki\0" // cz + "nthĩ ya dominika\0" // do + "nthĩ ya kidemokrasĩ ya kongo\0" // cd + "nua-ghuine phapua\0" // pg + "nueva caledonia\0" // nc + "nueva zelanda\0" // nz + "nufɛ́l kaletoní\0" // nc + "nufɛ́l seláand\0" // nz + "nuorta-timor\0" // tl + "nuortariika\0" // at + "nuorttâriijkâ\0" // at + "nuova caledonia\0" // nc + "nuova zelanda\0" // nz + "nuošali okeanija\0" // qo + "nuru\0" // nr + "nurvij\0" // no + "nutaaq caledonia\0" // nc + "nutaaq zeelandi\0" // nz + "nuvelizelandi\0" // nz + "nuwel kaledoni\0" // nc + "nuwel kaledonii\0" // nc + "nuwel selannda\0" // nz + "nuwel selànd\0" // nz + "nuzilan\0" // nz + "nuʻusila\0" // nz + "nvatika\0" // va + "nwarú\0" // nr + "ny kaledonien\0" // nc + "ny-caledonia\0" // nc + "nya kaledonien\0" // nc + "nya zeeland\0" // nz + "nyderlandai\0" // nl + "nyudhilandi\0" // nz + "nyue\0" // nu + "nyugat-szahara\0" // eh + "nyukaledonia\0" // nc + "nyukaledoniya\0" // nc + "nyusilendi\0" // nz + "nyuwe\0" // nu + "nyuzilanda\0" // nz + "nyuzilandi\0" // nz + "nyuzílandi\0" // nz + "nyué\0" // nu + "nzambia\0" // zm + "nzimbambwe\0" // zw + "nàmibìa\0" // na + "nàmibìà\0" // na + "nàwulù\0" // nr + "nárú\0" // nr + "nèpâl\0" // np + "németország\0" // de + "népal\0" // np + "nëpâli\0" // np + "nërdlech marianen\0" // mp + "nìgeir\0" // ne + "nìgerìà\0" // ng + "nìjɛ̂r\0" // ne + "nìkàragwà\0" // ni + "nìuɛ̀\0" // nu + "níger\0" // ne + "nígería\0" // ng + "níija\0" // ne + "níkaragva\0" // ni + "níkarágwa\0" // ni + "níxer\0" // ne + "nórsko\0" // no + "nôrvezy\0" // no + "nöikaledoonie\0" // nc + "nöiseeland\0" // nz + "nördliche marianen\0" // mp + "nördlichi mariaane\0" // mp + "nördliči mariane\0" // mp + "nörvêzi\0" // no + "nöördliche marianen\0" // mp + "nûmpubi kîts nì nevìs\0" // kn + "nûmpubi lusì\0" // lc + "nûmpubi māatìn\0" // sm + "nûmpubi petrò nì mikèlôn\0" // pm + "nûmpubi vɛ̂ŋsâŋ nì grènàdîn\0" // vc + "nûmpubi ɛlēnà\0" // sh + "nýja-kaledónía\0" // nc + "nýja-sjáland\0" // nz + "nýkaledónia\0" // nc + "nýsæland\0" // nz + "německo\0" // de + "němska\0" // de + "nīderlande\0" // nl + "nīderlandes karību salas\0" // bq + "nōrwigai\0" // no + "nūhōlani\0" // au + "nɔfolk aeland\0" // nf + "nɔfɔ tiŋŋɛ\0" // nf + "nɔlfɛ́ɛs\0" // no + "nɔlɛvɛ́jɛ\0" // no + "nɔriwɛzi\0" // no + "nɔrofoliki gun\0" // nf + "nɔrvɛg\0" // no + "nɔrvɛjǝ\0" // no + "nɔrəvɛ́s\0" // no + "nɔɔwe\0" // no + "nɔ̀rvegìà\0" // no + "nɛdɛland\0" // nl + "nɛkpâa\0" // np + "nɛpal\0" // np + "nɛpɔl\0" // np + "o salvador\0" // sv + "oarje-sahára\0" // eh + "obala bjelokosti\0" // ci + "obala slonovače\0" // ci + "obala slonovače (kot d’ivoar)\0" // ci + "oceania bellennig\0" // qo + "oceania lontana\0" // qo + "oceania periferica\0" // qo + "oceania periferică\0" // qo + "oceania remota\0" // qo + "oceania terpencil\0" // qo + "oceania ya nje\0" // qo + "oceania — wyspy dalekie\0" // qo + "oceanie periferiche\0" // qo + "oceanía esterior\0" // qo + "oceânia insular\0" // qo + "océanie lointaine\0" // qo + "oeganda\0" // ug + "oekraïne\0" // ua + "oerig oceanië\0" // qo + "oesbekistan\0" // uz + "oezbekistan\0" // uz + "oganda\0" // ug + "oileáin bhriotanacha na maighdean\0" // vg + "oileáin cayman\0" // ky + "oileáin chomóra\0" // km + "oileáin cocos (keeling)\0" // cc + "oileáin cook\0" // ck + "oileáin fharó\0" // fo + "oileáin fháclainne\0" // fk + "oileáin fháclainne (islas malvinas)\0" // fk + "oileáin imeallacha s.a.m.\0" // um + "oileáin marshall\0" // mh + "oileáin mhaildíve\0" // mv + "oileáin mheiriceánacha na maighdean\0" // vi + "oileáin na dturcach agus caicos\0" // tc + "oileáin palau\0" // pw + "oileáin pitcairn\0" // pn + "oileáin sholomón\0" // sb + "oileáin åland\0" // ax + "oileán bouvet\0" // bv + "oileán clipperton\0" // cp + "oileán heard agus oileáin mcdonald\0" // hm + "oileán mhanann\0" // im + "oileán mhuirís\0" // mu + "oileán na deascabhála\0" // ac + "oileán na nollag\0" // cx + "oileán na tríonóide agus tobága\0" // tt + "oileán norfolk\0" // nf + "ojt makedonia\0" // mk + "ok\0" // gb + "okcidenta saharo\0" // eh + "okeaania hajasaared\0" // qo + "okeanija (udaljena ostrva)\0" // qo + "okeānijas attālās salas\0" // qo + "okraina\0" // ua + "oland\0" // nl + "olanda\0" // nl + "olandes salas\0" // ax + "olandska ostrva\0" // ax + "olandɛ\0" // nl + "olaszország\0" // it + "omaan\0" // om + "omaani\0" // om + "oman\0" // om + "oman nutome\0" // om + "omanas\0" // om + "omane\0" // om + "omani\0" // om + "omano\0" // om + "omaŋ\0" // om + "omliggende oseanië\0" // qo + "omàn\0" // om + "omán\0" // om + "ománɛ\0" // om + "omáŋ\0" // om + "omâni\0" // om + "omã\0" // om + "omāna\0" // om + "onduraas\0" // hn + "onduras\0" // hn + "ondurase\0" // hn + "ondurasɛ\0" // hn + "ondurás\0" // hn + "ongari\0" // hu + "ongili\0" // hu + "ongirí\0" // hu + "ongjarie\0" // hu + "ongri\0" // hu + "onnduraas\0" // hn + "onngiri\0" // hu + "oos-timor\0" // tl + "oost-timor\0" // tl + "oostenrijk\0" // at + "oostenryk\0" // at + "oosttimor\0" // tl + "ooŋ koŋ\0" // hk + "oqeania e largët (lindja e largët)\0" // qo + "orilɛ́ède dòmíníkánì\0" // do + "orilɛ́ède kóngò\0" // cd + "orilẹ́ède dòmíníkánì\0" // do + "orilẹ́ède kóngò\0" // cd + "orogoay\0" // uy + "oroszország\0" // ru + "orta afrika cumhuriyeti\0" // cf + "orta afrika respublikasy\0" // cf + "orílɛ́ède agentínà\0" // ar + "orílɛ́ède ailandi\0" // ie + "orílɛ́ède améníà\0" // am + "orílɛ́ède ariwa afirika\0" // za + "orílɛ́ède ariwa kɔria\0" // kr + "orílɛ́ède ashilandi\0" // is + "orílɛ́ède asítíríà\0" // at + "orílɛ́ède asɛ́bájánì\0" // az + "orílɛ́ède bàhámásì\0" // bs + "orílɛ́ède bàràsílì\0" // br + "orílɛ́ède bábádósì\0" // bb + "orílɛ́ède bángáládésì\0" // bd + "orílɛ́ède báránì\0" // bh + "orílɛ́ède bèlísɛ̀\0" // bz + "orílɛ́ède bégíɔ́mù\0" // be + "orílɛ́ède bélárúsì\0" // by + "orílɛ́ède bémúdà\0" // bm + "orílɛ́ède bùùgáríà\0" // bg + "orílɛ́ède bùùkíná fasò\0" // bf + "orílɛ́ède bùùrúndì\0" // bi + "orílɛ́ède búrúnɛ́lì\0" // bn + "orílɛ́ède bútánì\0" // bt + "orílɛ́ède bɔ̀lífíyà\0" // bo + "orílɛ́ède bɔ̀síníà àti ɛtisɛgófínà\0" // ba + "orílɛ́ède bɔ̀tìsúwánà\0" // bw + "orílɛ́ède bɛ̀nɛ̀\0" // bj + "orílɛ́ède díbɔ́ótì\0" // dj + "orílɛ́ède dòmíníkà\0" // dm + "orílɛ́ède dɛ́mákì\0" // dk + "orílɛ́ède ekutoria gini\0" // gq + "orílɛ́ède ekuádò\0" // ec + "orílɛ́ède eritira\0" // er + "orílɛ́ède esitonia\0" // ee + "orílɛ́ède etikun fagini ti amɛrika\0" // vi + "orílɛ́ède etikun fakalandi\0" // fk + "orílɛ́ède etikun guusu mariana\0" // mp + "orílɛ́ède etikun máshali\0" // mh + "orílɛ́ède etikun nɔ́úfókì\0" // nf + "orílɛ́ède etikun solomoni\0" // sb + "orílɛ́ède etopia\0" // et + "orílɛ́ède etíkun fágínì ti ìlú bírítísì\0" // vg + "orílɛ́ède etíkun índíánì ti ìlú bírítísì\0" // io + "orílɛ́ède etíokun kámánì\0" // ky + "orílɛ́ède etíokun kápé féndè\0" // cv + "orílɛ́ède etíokun kùúkù\0" // ck + "orílɛ́ède faniatu\0" // vu + "orílɛ́ède faranse\0" // fr + "orílɛ́ède fiji\0" // fj + "orílɛ́ède filandi\0" // fi + "orílɛ́ède filipini\0" // ph + "orílɛ́ède firenshi guana\0" // gf + "orílɛ́ède firenshi polinesia\0" // pf + "orílɛ́ède fisɛnnti ati genadina\0" // vc + "orílɛ́ède fɛnɛshuɛla\0" // ve + "orílɛ́ède fɛtinami\0" // vn + "orílɛ́ède gabon\0" // ga + "orílɛ́ède gadelope\0" // gp + "orílɛ́ède gambia\0" // gm + "orílɛ́ède gana\0" // gh + "orílɛ́ède gemani\0" // de + "orílɛ́ède genada\0" // gd + "orílɛ́ède gene\0" // gn + "orílɛ́ède gene-busau\0" // gw + "orílɛ́ède gerelandi\0" // gl + "orílɛ́ède geriisi\0" // gr + "orílɛ́ède gibaratara\0" // gi + "orílɛ́ède guamu\0" // gu + "orílɛ́ède guatemala\0" // gt + "orílɛ́ède guusu kɔria\0" // kp + "orílɛ́ède guyana\0" // gy + "orílɛ́ède gɔgia\0" // ge + "orílɛ́ède haati\0" // ht + "orílɛ́ède hondurasi\0" // hn + "orílɛ́ède hungari\0" // hu + "orílɛ́ède hɛlena\0" // sh + "orílɛ́ède india\0" // in + "orílɛ́ède indonesia\0" // id + "orílɛ́ède iraki\0" // iq + "orílɛ́ède irani\0" // ir + "orílɛ́ède iserɛli\0" // il + "orílɛ́ède italiyi\0" // it + "orílɛ́ède iwɔorun pakisitian ati gasha\0" // ps + "orílɛ́ède jamaika\0" // jm + "orílɛ́ède japani\0" // jp + "orílɛ́ède jɔdani\0" // jo + "orílɛ́ède kaledonia titun\0" // nc + "orílɛ́ède kamerúúnì\0" // cm + "orílɛ́ède kashashatani\0" // kz + "orílɛ́ède kenya\0" // ke + "orílɛ́ède kiiti ati neefi\0" // kn + "orílɛ́ède kiribati\0" // ki + "orílɛ́ède kota\0" // qa + "orílɛ́ède kurishisitani\0" // kg + "orílɛ́ède kuusita ríkà\0" // cr + "orílɛ́ède kuweti\0" // kw + "orílɛ́ède kàmùbódíà\0" // kh + "orílɛ́ède kánádà\0" // ca + "orílɛ́ède kòlómíbìa\0" // co + "orílɛ́ède kòmòrósì\0" // km + "orílɛ́ède kòróátíà\0" // hr + "orílɛ́ède kóngò\0" // cg + "orílɛ́ède kóútè forà\0" // ci + "orílɛ́ède kúbà\0" // cu + "orílɛ́ède kúrúsì\0" // cy + "orílɛ́ède laberia\0" // lr + "orílɛ́ède laosi\0" // la + "orílɛ́ède latifia\0" // lv + "orílɛ́ède lebanoni\0" // lb + "orílɛ́ède lesoto\0" // ls + "orílɛ́ède libiya\0" // ly + "orílɛ́ède lituania\0" // lt + "orílɛ́ède lusemogi\0" // lu + "orílɛ́ède lushia\0" // lc + "orílɛ́ède lɛshitɛnisiteni\0" // li + "orílɛ́ède madasika\0" // mg + "orílɛ́ède makoronesia\0" // fm + "orílɛ́ède maladifi\0" // mv + "orílɛ́ède malasia\0" // my + "orílɛ́ède malata\0" // mt + "orílɛ́ède malawi\0" // mw + "orílɛ́ède mali\0" // ml + "orílɛ́ède manamari\0" // mm + "orílɛ́ède maritania\0" // mr + "orílɛ́ède maritiusi\0" // mu + "orílɛ́ède masidonia\0" // mk + "orílɛ́ède matinikuwi\0" // mq + "orílɛ́ède mayote\0" // yt + "orílɛ́ède mesiko\0" // mx + "orílɛ́ède modofia\0" // md + "orílɛ́ède mogolia\0" // mn + "orílɛ́ède monako\0" // mc + "orílɛ́ède moroko\0" // ma + "orílɛ́ède moshamibiku\0" // mz + "orílɛ́ède motserati\0" // ms + "orílɛ́ède namibia\0" // na + "orílɛ́ède nauru\0" // nr + "orílɛ́ède nedalandi\0" // nl + "orílɛ́ède nepa\0" // np + "orílɛ́ède nikaragua\0" // ni + "orílɛ́ède niue\0" // nu + "orílɛ́ède nruguayi\0" // uy + "orílɛ́ède nshibɛkisitani\0" // uz + "orílɛ́ède nàìjá\0" // ne + "orílɛ́ède nàìjíríà\0" // ng + "orílɛ́ède nɔɔwii\0" // no + "orílɛ́ède omobabirin\0" // gb + "orílɛ́ède orilɛede amerika\0" // us + "orílɛ́ède paalu\0" // pw + "orílɛ́ède paapu ti giini\0" // pg + "orílɛ́ède pakisitan\0" // pk + "orílɛ́ède panama\0" // pa + "orílɛ́ède paraguye\0" // py + "orílɛ́ède peru\0" // pe + "orílɛ́ède pikarini\0" // pn + "orílɛ́ède polandi\0" // pl + "orílɛ́ède pɔto riko\0" // pr + "orílɛ́ède pɔtugi\0" // pt + "orílɛ́ède pɛɛri ati mikuloni\0" // pm + "orílɛ́ède riuniyan\0" // re + "orílɛ́ède romaniya\0" // ro + "orílɛ́ède ruwanda\0" // rw + "orílɛ́ède rɔshia\0" // ru + "orílɛ́ède samɔ\0" // ws + "orílɛ́ède sani marino\0" // sm + "orílɛ́ède sao tomi ati piriishipi\0" // st + "orílɛ́ède sashiland\0" // sz + "orílɛ́ède saudi arabia\0" // sa + "orílɛ́ède seshɛlɛsi\0" // sc + "orílɛ́ède shamibia\0" // zm + "orílɛ́ède shilandi titun\0" // nz + "orílɛ́ède shimibabe\0" // zw + "orílɛ́ède shààdì\0" // td + "orílɛ́ède sháínà\0" // cn + "orílɛ́ède shílè\0" // cl + "orílɛ́ède shɛ́ɛ́kì\0" // cz + "orílɛ́ède silofakia\0" // sk + "orílɛ́ède silofania\0" // si + "orílɛ́ède singapo\0" // sg + "orílɛ́ède sipani\0" // es + "orílɛ́ède siri lanka\0" // lk + "orílɛ́ède siria\0" // sy + "orílɛ́ède siria looni\0" // sl + "orílɛ́ède somalia\0" // so + "orílɛ́ède sudani\0" // sd + "orílɛ́ède surinami\0" // sr + "orílɛ́ède swidini\0" // se + "orílɛ́ède switishilandi\0" // ch + "orílɛ́ède sɛnɛga\0" // sn + "orílɛ́ède tailandi\0" // th + "orílɛ́ède taiwani\0" // tw + "orílɛ́ède takisitani\0" // tj + "orílɛ́ède tanshania\0" // tz + "orílɛ́ède tirinida ati tobaga\0" // tt + "orílɛ́ède togo\0" // tg + "orílɛ́ède tokelau\0" // tk + "orílɛ́ède tonga\0" // to + "orílɛ́ède tufalu\0" // tv + "orílɛ́ède tunishia\0" // tn + "orílɛ́ède tɔɔki\0" // tr + "orílɛ́ède tɔɔki ati etikun kakɔsi\0" // tc + "orílɛ́ède tɔɔkimenisita\0" // tm + "orílɛ́ède uganda\0" // ug + "orílɛ́ède ukarini\0" // ua + "orílɛ́ède wali ati futuna\0" // wf + "orílɛ́ède yemeni\0" // ye + "orílɛ́ède àfùgànístánì\0" // af + "orílɛ́ède àlùbàníánì\0" // al + "orílɛ́ède àlùgèríánì\0" // dz + "orílɛ́ède àrin gùngun áfíríkà\0" // cf + "orílɛ́ède ààndórà\0" // ad + "orílɛ́ède ààngólà\0" // ao + "orílɛ́ède ààngúlílà\0" // ai + "orílɛ́ède ààntígúà àti báríbúdà\0" // ag + "orílɛ́ède árúbà\0" // aw + "orílɛ́ède ástràlìá\0" // au + "orílɛ́ède égípítì\0" // eg + "orílɛ́ède ìlàoòrùn tímɔ̀\0" // tl + "orílɛ́ède ɔɔma\0" // om + "orílɛ́ède ɛmirate ti awɔn arabu\0" // ae + "orílɛ́ède ɛɛsáfádò\0" // sv + "orílẹ́ède agentínà\0" // ar + "orílẹ́ède ailandi\0" // ie + "orílẹ́ède améníà\0" // am + "orílẹ́ède ariwa afirika\0" // za + "orílẹ́ède ariwa kọria\0" // kr + "orílẹ́ède asítíríà\0" // at + "orílẹ́ède asẹ́bájánì\0" // az + "orílẹ́ède aṣilandi\0" // is + "orílẹ́ède bàhámásì\0" // bs + "orílẹ́ède bàràsílì\0" // br + "orílẹ́ède bábádósì\0" // bb + "orílẹ́ède bángáládésì\0" // bd + "orílẹ́ède báránì\0" // bh + "orílẹ́ède bèlísẹ̀\0" // bz + "orílẹ́ède bégíọ́mù\0" // be + "orílẹ́ède bélárúsì\0" // by + "orílẹ́ède bémúdà\0" // bm + "orílẹ́ède bùùgáríà\0" // bg + "orílẹ́ède bùùkíná fasò\0" // bf + "orílẹ́ède bùùrúndì\0" // bi + "orílẹ́ède búrúnẹ́lì\0" // bn + "orílẹ́ède bútánì\0" // bt + "orílẹ́ède bẹ̀nẹ̀\0" // bj + "orílẹ́ède bọ̀lífíyà\0" // bo + "orílẹ́ède bọ̀síníà àti ẹtisẹgófínà\0" // ba + "orílẹ́ède bọ̀tìsúwánà\0" // bw + "orílẹ́ède díbọ́ótì\0" // dj + "orílẹ́ède dòmíníkà\0" // dm + "orílẹ́ède dẹ́mákì\0" // dk + "orílẹ́ède ekutoria gini\0" // gq + "orílẹ́ède ekuádò\0" // ec + "orílẹ́ède eritira\0" // er + "orílẹ́ède esitonia\0" // ee + "orílẹ́ède etikun fagini ti amẹrika\0" // vi + "orílẹ́ède etikun fakalandi\0" // fk + "orílẹ́ède etikun guusu mariana\0" // mp + "orílẹ́ède etikun máṣali\0" // mh + "orílẹ́ède etikun nọ́úfókì\0" // nf + "orílẹ́ède etikun solomoni\0" // sb + "orílẹ́ède etopia\0" // et + "orílẹ́ède etíkun fágínì ti ìlú bírítísì\0" // vg + "orílẹ́ède etíkun índíánì ti ìlú bírítísì\0" // io + "orílẹ́ède etíokun kámánì\0" // ky + "orílẹ́ède etíokun kápé féndè\0" // cv + "orílẹ́ède etíokun kùúkù\0" // ck + "orílẹ́ède faniatu\0" // vu + "orílẹ́ède faranse\0" // fr + "orílẹ́ède fiji\0" // fj + "orílẹ́ède filandi\0" // fi + "orílẹ́ède filipini\0" // ph + "orílẹ́ède firenṣi guana\0" // gf + "orílẹ́ède firenṣi polinesia\0" // pf + "orílẹ́ède fisẹnnti ati genadina\0" // vc + "orílẹ́ède fẹnẹṣuẹla\0" // ve + "orílẹ́ède fẹtinami\0" // vn + "orílẹ́ède gabon\0" // ga + "orílẹ́ède gadelope\0" // gp + "orílẹ́ède gambia\0" // gm + "orílẹ́ède gana\0" // gh + "orílẹ́ède gemani\0" // de + "orílẹ́ède genada\0" // gd + "orílẹ́ède gene\0" // gn + "orílẹ́ède gene-busau\0" // gw + "orílẹ́ède gerelandi\0" // gl + "orílẹ́ède geriisi\0" // gr + "orílẹ́ède gibaratara\0" // gi + "orílẹ́ède guamu\0" // gu + "orílẹ́ède guatemala\0" // gt + "orílẹ́ède guusu kọria\0" // kp + "orílẹ́ède guyana\0" // gy + "orílẹ́ède gọgia\0" // ge + "orílẹ́ède haati\0" // ht + "orílẹ́ède hondurasi\0" // hn + "orílẹ́ède hungari\0" // hu + "orílẹ́ède hẹlena\0" // sh + "orílẹ́ède india\0" // in + "orílẹ́ède indonesia\0" // id + "orílẹ́ède iraki\0" // iq + "orílẹ́ède irani\0" // ir + "orílẹ́ède iserẹli\0" // il + "orílẹ́ède italiyi\0" // it + "orílẹ́ède iwọorun pakisitian ati gaṣa\0" // ps + "orílẹ́ède jamaika\0" // jm + "orílẹ́ède japani\0" // jp + "orílẹ́ède jọdani\0" // jo + "orílẹ́ède kaledonia titun\0" // nc + "orílẹ́ède kamerúúnì\0" // cm + "orílẹ́ède kaṣaṣatani\0" // kz + "orílẹ́ède kenya\0" // ke + "orílẹ́ède kiiti ati neefi\0" // kn + "orílẹ́ède kiribati\0" // ki + "orílẹ́ède kota\0" // qa + "orílẹ́ède kuriṣisitani\0" // kg + "orílẹ́ède kuusita ríkà\0" // cr + "orílẹ́ède kuweti\0" // kw + "orílẹ́ède kàmùbódíà\0" // kh + "orílẹ́ède kánádà\0" // ca + "orílẹ́ède kòlómíbìa\0" // co + "orílẹ́ède kòmòrósì\0" // km + "orílẹ́ède kòróátíà\0" // hr + "orílẹ́ède kóngò\0" // cg + "orílẹ́ède kóútè forà\0" // ci + "orílẹ́ède kúbà\0" // cu + "orílẹ́ède kúrúsì\0" // cy + "orílẹ́ède laberia\0" // lr + "orílẹ́ède laosi\0" // la + "orílẹ́ède latifia\0" // lv + "orílẹ́ède lebanoni\0" // lb + "orílẹ́ède lesoto\0" // ls + "orílẹ́ède libiya\0" // ly + "orílẹ́ède lituania\0" // lt + "orílẹ́ède lusemogi\0" // lu + "orílẹ́ède luṣia\0" // lc + "orílẹ́ède lẹṣitẹnisiteni\0" // li + "orílẹ́ède madasika\0" // mg + "orílẹ́ède makoronesia\0" // fm + "orílẹ́ède maladifi\0" // mv + "orílẹ́ède malasia\0" // my + "orílẹ́ède malata\0" // mt + "orílẹ́ède malawi\0" // mw + "orílẹ́ède mali\0" // ml + "orílẹ́ède manamari\0" // mm + "orílẹ́ède maritania\0" // mr + "orílẹ́ède maritiusi\0" // mu + "orílẹ́ède masidonia\0" // mk + "orílẹ́ède matinikuwi\0" // mq + "orílẹ́ède mayote\0" // yt + "orílẹ́ède mesiko\0" // mx + "orílẹ́ède modofia\0" // md + "orílẹ́ède mogolia\0" // mn + "orílẹ́ède monako\0" // mc + "orílẹ́ède moroko\0" // ma + "orílẹ́ède motserati\0" // ms + "orílẹ́ède moṣamibiku\0" // mz + "orílẹ́ède namibia\0" // na + "orílẹ́ède nauru\0" // nr + "orílẹ́ède nedalandi\0" // nl + "orílẹ́ède nepa\0" // np + "orílẹ́ède nikaragua\0" // ni + "orílẹ́ède niue\0" // nu + "orílẹ́ède nruguayi\0" // uy + "orílẹ́ède nàìjá\0" // ne + "orílẹ́ède nàìjíríà\0" // ng + "orílẹ́ède nṣibẹkisitani\0" // uz + "orílẹ́ède nọọwii\0" // no + "orílẹ́ède omobabirin\0" // gb + "orílẹ́ède orilẹede amerika\0" // us + "orílẹ́ède paalu\0" // pw + "orílẹ́ède paapu ti giini\0" // pg + "orílẹ́ède pakisitan\0" // pk + "orílẹ́ède panama\0" // pa + "orílẹ́ède paraguye\0" // py + "orílẹ́ède peru\0" // pe + "orílẹ́ède pikarini\0" // pn + "orílẹ́ède polandi\0" // pl + "orílẹ́ède pẹẹri ati mikuloni\0" // pm + "orílẹ́ède pọto riko\0" // pr + "orílẹ́ède pọtugi\0" // pt + "orílẹ́ède riuniyan\0" // re + "orílẹ́ède romaniya\0" // ro + "orílẹ́ède ruwanda\0" // rw + "orílẹ́ède rọṣia\0" // ru + "orílẹ́ède samọ\0" // ws + "orílẹ́ède sani marino\0" // sm + "orílẹ́ède sao tomi ati piriiṣipi\0" // st + "orílẹ́ède saudi arabia\0" // sa + "orílẹ́ède saṣiland\0" // sz + "orílẹ́ède seṣẹlẹsi\0" // sc + "orílẹ́ède silofakia\0" // sk + "orílẹ́ède silofania\0" // si + "orílẹ́ède singapo\0" // sg + "orílẹ́ède sipani\0" // es + "orílẹ́ède siri lanka\0" // lk + "orílẹ́ède siria\0" // sy + "orílẹ́ède siria looni\0" // sl + "orílẹ́ède somalia\0" // so + "orílẹ́ède sudani\0" // sd + "orílẹ́ède surinami\0" // sr + "orílẹ́ède swidini\0" // se + "orílẹ́ède switiṣilandi\0" // ch + "orílẹ́ède sẹnẹga\0" // sn + "orílẹ́ède tailandi\0" // th + "orílẹ́ède taiwani\0" // tw + "orílẹ́ède takisitani\0" // tj + "orílẹ́ède tanṣania\0" // tz + "orílẹ́ède tirinida ati tobaga\0" // tt + "orílẹ́ède togo\0" // tg + "orílẹ́ède tokelau\0" // tk + "orílẹ́ède tonga\0" // to + "orílẹ́ède tufalu\0" // tv + "orílẹ́ède tuniṣia\0" // tn + "orílẹ́ède tọọki\0" // tr + "orílẹ́ède tọọki ati etikun kakọsi\0" // tc + "orílẹ́ède tọọkimenisita\0" // tm + "orílẹ́ède uganda\0" // ug + "orílẹ́ède ukarini\0" // ua + "orílẹ́ède wali ati futuna\0" // wf + "orílẹ́ède yemeni\0" // ye + "orílẹ́ède àfùgànístánì\0" // af + "orílẹ́ède àlùbàníánì\0" // al + "orílẹ́ède àlùgèríánì\0" // dz + "orílẹ́ède àrin gùngun áfíríkà\0" // cf + "orílẹ́ède ààndórà\0" // ad + "orílẹ́ède ààngólà\0" // ao + "orílẹ́ède ààngúlílà\0" // ai + "orílẹ́ède ààntígúà àti báríbúdà\0" // ag + "orílẹ́ède árúbà\0" // aw + "orílẹ́ède ástràlìá\0" // au + "orílẹ́ède égípítì\0" // eg + "orílẹ́ède ìlàoòrùn tímọ̀\0" // tl + "orílẹ́ède ṣamibia\0" // zm + "orílẹ́ède ṣilandi titun\0" // nz + "orílẹ́ède ṣimibabe\0" // zw + "orílẹ́ède ṣààdì\0" // td + "orílẹ́ède ṣáínà\0" // cn + "orílẹ́ède ṣílè\0" // cl + "orílẹ́ède ṣẹ́ẹ́kì\0" // cz + "orílẹ́ède ẹmirate ti awọn arabu\0" // ae + "orílẹ́ède ẹẹsáfádò\0" // sv + "orílẹ́ède ọọma\0" // om + "oschttimor\0" // tl + "oseania diabell\0" // qo + "oseania luar\0" // qo + "ositali\0" // au + "ositaraliya\0" // au + "ositirali\0" // au + "ositureeriya\0" // au + "osituria\0" // at + "ositáli\0" // au + "ostala oceanija\0" // qo + "ostaraalii\0" // au + "ostarali\0" // au + "ostareliya\0" // au + "ostatné tichomorie\0" // qo + "ostiriya\0" // at + "ostraali\0" // au + "ostraalia\0" // au + "ostralïi, sotralïi\0" // au + "ostria\0" // at + "ostrov man\0" // im + "ostrva turks i kaikos\0" // tc + "ostrva valis i futuna\0" // wf + "ostrvo ascension\0" // ac + "ostrvo asension\0" // ac + "ostrvo buve\0" // bv + "ostrvo herd i mekdonaldova ostrva\0" // hm + "ostrvo kliperton\0" // cp + "ostrvo man\0" // im + "ostrvo norfok\0" // nf + "ostrvo norfolk\0" // nf + "osttimor\0" // tl + "osətəlalí\0" // au + "osətəlía\0" // at + "otalalí\0" // au + "otilisi\0" // at + "otilís\0" // at + "otiriis\0" // at + "otirishe\0" // at + "otirisi\0" // at + "otoci heard i mcdonald\0" // hm + "otoci pitcairn\0" // pn + "otoci turks i caicos\0" // tc + "otok ascension\0" // ac + "otok bouvet\0" // bv + "otok clipperton\0" // cp + "otok man\0" // im + "otok norfolk\0" // nf + "otoki turks in caicos\0" // tc + "otric\0" // at + "otris\0" // at + "otriši\0" // at + "otrîsi\0" // at + "ouganda\0" // ug + "outlaying oceania nutome\0" // qo + "outlying oceania\0" // qo + "ouzbekistan\0" // uz + "ouzbékistan\0" // uz + "overig oceanië\0" // qo + "ovttastuvvan arábaemiráhtat\0" // ae + "ovtâstum kunâgâskodde\0" // gb + "ovtâstum staatah\0" // us + "ovtâstum staatâi nieidâsuolluuh\0" // vi + "ovtâstum staatâi sierânâssuolluuh\0" // um + "owganystan\0" // af + "ozarbayjon\0" // az + "ozbekistan\0" // uz + "ozejahnije ußerhallef\0" // qo + "oß-timor\0" // tl + "ođđa-kaledonia\0" // nc + "ođđa-selánda\0" // nz + "oŋri\0" // hu + "ošttimor\0" // tl + "oʻzbekiston\0" // uz + "paakistan\0" // pk + "paapua uus-guinea\0" // pg + "paesi bassi\0" // nl + "pagastàn\0" // pk + "pahama\0" // bs + "pahámas\0" // bs + "pajais bass\0" // nl + "pakischtan\0" // pk + "pakisita\0" // pk + "pakisitaani\0" // pk + "pakisitani\0" // pk + "pakisitaŋ\0" // pk + "pakisitá\0" // pk + "pakisitáani\0" // pk + "pakistaan\0" // pk + "pakistahn\0" // pk + "pakistan\0" // pk + "pakistan nutome\0" // pk + "pakistanas\0" // pk + "pakistani\0" // pk + "pakistanni\0" // pk + "pakistano\0" // pk + "pakistaŋ\0" // pk + "pakistán\0" // pk + "pakistáŋ\0" // pk + "pakistãu\0" // pk + "pakistäan\0" // pk + "pakistāna\0" // pk + "pakisztán\0" // pk + "pakisətán\0" // pk + "pakithtani\0" // pk + "pakištan\0" // pk + "palaawu\0" // pw + "palabh\0" // pw + "palagwai\0" // py + "palagwayi\0" // py + "palagwei\0" // py + "palakuai\0" // py + "palakúé\0" // py + "palani\0" // fr + "palao\0" // pw + "palaos\0" // pw + "palastain\0" // ps + "palasɗinu\0" // ps + "palau\0" // pw + "palau nutome\0" // pw + "palauäns\0" // pw + "palaw\0" // pw + "palawu\0" // pw + "palawú\0" // pw + "paleini\0" // bh + "palesine\0" // ps + "palesitaine\0" // ps + "palesitayini\0" // ps + "palesitayini ni gaza\0" // ps + "palesitina wesitibanka na gaza\0" // ps + "palesitini\0" // ps + "palesitininya tele jii kɔiyɛ lá hĩ gaza\0" // ps + "palestaen west bank ne gaza\0" // ps + "palesteina\0" // ps + "palestiin sisjordani e gaasaa\0" // ps + "palestiina\0" // ps + "palestiina alad\0" // ps + "palestiinalaisalueet\0" // ps + "palestijnse gebieden\0" // ps + "palestin\0" // ps + "palestina\0" // ps + "palestina kamachikuq\0" // ps + "palestina territoriýasy\0" // ps + "palestinako lurraldeak\0" // ps + "palestine\0" // ps + "palestine dangay nda gaaza\0" // ps + "palestinensesch autonomiegebidder\0" // ps + "palestinia nutome\0" // ps + "palestinian territories\0" // ps + "palestinian west bank and gaza\0" // ps + "palestinian west bank gi gaza\0" // ps + "palestinos teritorija\0" // ps + "palestinsk territorium\0" // ps + "palestinska teritorija\0" // ps + "palestinska territorierna\0" // ps + "palestinske teritorije\0" // ps + "palestinski awtonomny teritorij\0" // ps + "palestinski awtonomny teritorium\0" // ps + "palestinsko ozemlje\0" // ps + "palestinsko područje\0" // ps + "palestinskt landøki\0" // ps + "palestinská území\0" // ps + "palestinë\0" // ps + "palestyna\0" // ps + "palestynse gebiede\0" // ps + "palestynske gebieten\0" // ps + "palestína\0" // ps + "palestínska samospráva\0" // ps + "palestínske územia\0" // ps + "palestīna\0" // ps + "palesztin terület\0" // ps + "palesztina\0" // ps + "paleština\0" // ps + "palistin\0" // ps + "palistina\0" // ps + "pallau\0" // pw + "palo\0" // pw + "palpatós\0" // bb + "palu\0" // pw + "palwa\0" // pw + "palá\0" // pw + "paláau\0" // pw + "paláu\0" // pw + "paläschtinänsischi gebiet\0" // ps + "palästina\0" // ps + "palästinensische autonomiegebiete\0" // ps + "palästinensische rebeden\0" // ps + "palæstina\0" // ps + "palāsili\0" // br + "palɛsine\0" // ps + "palɛstin\0" // ps + "palɛŋ\0" // bh + "panam\0" // pa + "panama\0" // pa + "panama nutome\0" // pa + "panamaa\0" // pa + "panamo\0" // pa + "panamà\0" // pa + "panamá\0" // pa + "panamā\0" // pa + "pannama\0" // pa + "pantai gading\0" // ci + "panyá\0" // es + "panyɛĩ\0" // es + "panáama\0" // pa + "panāma\0" // pa + "papoea-nieu-guinee\0" // pg + "papoea-nieuw-guinea\0" // pg + "papoea-nij-guinea\0" // pg + "papoua ginea-nevez\0" // pg + "papouasie-nouvelle-guinée\0" // pg + "papouazi-nouvel-gine\0" // pg + "papua\0" // pg + "papua - täze gwineýa\0" // pg + "papua ginea berria\0" // pg + "papua ginee taaga\0" // pg + "papua guinea foforo\0" // pg + "papua guinea newydd\0" // pg + "papua naujoji gvinėja\0" // pg + "papua new gini nutome\0" // pg + "papua new guinea\0" // pg + "papua new guineab\0" // pg + "papua niwginea\0" // pg + "papua nova guinea\0" // pg + "papua nova gvineja\0" // pg + "papua nugini\0" // pg + "papua nuova guinea\0" // pg + "papua nutaaq guinea\0" // pg + "papua ny guinea\0" // pg + "papua ny-guinea\0" // pg + "papua nya guinea\0" // pg + "papua nýguinea\0" // pg + "papua yeni gine\0" // pg + "papua – yangi gvineya\0" // pg + "papua-jaungvineja\0" // pg + "papua-neeguinea\0" // pg + "papua-neiguinea\0" // pg + "papua-neuguinea\0" // pg + "papua-noua guinee\0" // pg + "papua-nova gine\0" // pg + "papua-nova guiné\0" // pg + "papua-nová guinea\0" // pg + "papua-nowa gwinea\0" // pg + "papua-ođđa-guinea\0" // pg + "papua-uusi-guinea\0" // pg + "papua-uđđâ-guinea\0" // pg + "papua-yeni qvineya\0" // pg + "papuaniukini\0" // pg + "papuasiya guine mafuu\0" // pg + "papuasí nufɛ́l kiiné\0" // pg + "papue gnove guinee\0" // pg + "papuo-nov-gvineo\0" // pg + "papuwa\0" // pg + "papuwa gini námaá\0" // pg + "papuwa neujineeja\0" // pg + "papuwa niyugineya\0" // pg + "papuwa nugini\0" // pg + "papuwa-nowa gineja\0" // pg + "papuwaa nuwel gine\0" // pg + "papuwasi gine gu bees\0" // pg + "papuwasi-gine-koura\0" // pg + "papwa nyugini\0" // pg + "papwa ɣinya tamaynut\0" // pg + "papwazi ginɛ ya sika\0" // pg + "papwazi wa nginɛ wa mumu\0" // pg + "papwazi yá ǹkpámɛ́n giné\0" // pg + "papwazí ginɛ́ anyɔ́n\0" // pg + "papúa nueva guinea\0" // pg + "papúa nýja-gínea\0" // pg + "papúa-nova guinea\0" // pg + "papúua\0" // pg + "papû finî ginëe, papuazïi\0" // pg + "paquistán\0" // pk + "paquistão\0" // pk + "paragai\0" // py + "paragoay\0" // py + "paragua\0" // py + "paragua nutome\0" // py + "paraguai\0" // py + "paraguaib\0" // py + "paraguaidh\0" // py + "paraguaj\0" // py + "paraguay\0" // py + "paraguwaay\0" // py + "paraguwayi\0" // py + "paraguwe\0" // py + "paraguwey\0" // py + "paraguáai\0" // py + "paraguái\0" // py + "paragué\0" // py + "paraguëe\0" // py + "paragvaj\0" // py + "paragvaja\0" // py + "paragvajo\0" // py + "paragvajus\0" // py + "paragvay\0" // py + "paragvæ\0" // py + "paragwai\0" // py + "paragwaj\0" // py + "paragway\0" // py + "paragwayi\0" // py + "paragwaý\0" // py + "paragwe\0" // py + "paragwājs\0" // py + "paragwɛ́\0" // py + "paragɔe\0" // py + "paraqvay\0" // py + "parestiina na gaza\0" // ps + "parraguwai\0" // py + "patikaírini\0" // pn + "pays-bas\0" // nl + "pays-bas caribéens\0" // bq + "países baixos\0" // nl + "países baixos caribenhos\0" // bq + "países bajos\0" // nl + "países baxos\0" // nl + "paîs bas\0" // nl + "països baixos\0" // nl + "paŋkalatɛs\0" // bd + "paŋá\0" // es + "pearù\0" // pe + "peeivitäsideijee guinea\0" // gq + "peeru\0" // pe + "peiriú\0" // pe + "pekano faso\0" // bf + "pelalusi\0" // by + "pelalús\0" // by + "pelesiume\0" // be + "pelise\0" // bz + "pelu\0" // pe + "pelíse\0" // bz + "pelú\0" // pe + "pelū\0" // pe + "pema\0" // mm + "pengilātesi\0" // bd + "penini\0" // bj + "penɛŋ\0" // bj + "perancis\0" // fr + "peraīnintas wālstis\0" // us + "periw\0" // pe + "peroa\0" // pe + "perou\0" // pe + "perruh\0" // pe + "persije\0" // ir + "peru\0" // pe + "peru nutome\0" // pe + "perub\0" // pe + "peruo\0" // pe + "peruu\0" // pe + "perù\0" // pe + "perú\0" // pe + "perüu\0" // pe + "perū\0" // pe + "peyi baa\0" // nl + "peyiba\0" // nl + "phakistani\0" // pk + "pheru\0" // pe + "philippiine\0" // ph + "philippine\0" // ph + "philippinen\0" // ph + "philippines\0" // ph + "philippinnen\0" // ph + "philippinni\0" // ph + "pholandi\0" // pl + "pholinesiya ye fulansi\0" // pf + "pháp\0" // fr + "phần lan\0" // fi + "pietų afrika\0" // za + "pietų džordžija ir pietų sandvičo salos\0" // gs + "pietų korėja\0" // kr + "pietų sudanas\0" // ss + "pikairni\0" // pn + "pilesíl\0" // br + "pilipinas\0" // ph + "pilitānia\0" // gb + "pindisúlɛ́ pi amálíka\0" // vi + "pirkairn\0" // pn + "piru\0" // pe + "pitakarin\0" // pn + "pitcairn\0" // pn + "pitcairn adaları\0" // pn + "pitcairn islands\0" // pn + "pitcairn uharteak\0" // pn + "pitcairn-eyjar\0" // pn + "pitcairn-szigetek\0" // pn + "pitcairneilande\0" // pn + "pitcairneilanden\0" // pn + "pitcairneilannen\0" // pn + "pitcairni saared\0" // pn + "pitcairninselen\0" // pn + "pitcairninseln\0" // pn + "pitcairnove ostrovy\0" // pn + "pitcairnovy ostrovy\0" // pn + "pitcairnowe kupy\0" // pn + "pitcairnoyggjar\0" // pn + "pitcairnöarna\0" // pn + "pitggäärn\0" // pn + "pitikailini\0" // pn + "pitikarin\0" // pn + "pitikarini\0" // pn + "pitikeeni\0" // pn + "pitikeluni\0" // pn + "pitikeyirini\0" // pn + "pitikêrni\0" // pn + "pitikɛŋ\0" // pn + "pitikɛ́ɛlínɛ́\0" // pn + "pitkailni\0" // pn + "pitkaini\0" // pn + "pitkairn\0" // pn + "pitkairn ƒudomekpo nutome\0" // pn + "pitkairni\0" // pn + "pitkarin\0" // pn + "pitkarna insulo\0" // pn + "pitkern\0" // pn + "pitkern adalary\0" // pn + "pitkern adaları\0" // pn + "pitkern orollari\0" // pn + "pitkerno salos\0" // pn + "pitkernska ostrva\0" // pn + "pitkirn\0" // pn + "pitkērnas salas\0" // pn + "pitkɛ́n\0" // pn + "piyuto riko\0" // pr + "piyɛri-senu-ni-mikelɔŋ\0" // pm + "poblachd meadhan afraga\0" // cf + "poblachd na seice\0" // cz + "poblacht dhaonlathach an chongó\0" // cd + "poblacht na hafraice láir\0" // cf + "poblacht na seice\0" // cz + "pobrežie slonoviny\0" // ci + "pobřeží slonoviny\0" // ci + "pochtojall\0" // pt + "pochtoriko\0" // pr + "pocugo\0" // pt + "pohjois-korea\0" // kp + "pohjois-mariaanit\0" // mp + "poilinèis na frainge\0" // pf + "pokiston\0" // pk + "polainéis na fraince\0" // pf + "polan\0" // pl + "poland\0" // pl + "poland nutome\0" // pl + "polandi\0" // pl + "polandia\0" // pl + "polani\0" // pl + "pole\0" // pl + "polen\0" // pl + "poleni\0" // pl + "polija\0" // pl + "polinesi farañse\0" // pf + "polinesia francesa\0" // pf + "polinesia francese\0" // pf + "polinesia frantsesa\0" // pf + "polinesia franzosa\0" // pf + "polinesia perancis\0" // pf + "polinesia prancis\0" // pf + "polinesia ya bufaransa\0" // pf + "polinesia ya fransi\0" // pf + "polinesia ya ufalansa\0" // pf + "polinesia ya ufaransa\0" // pf + "polinesia ya ufarantha\0" // pf + "polinesie francês\0" // pf + "polinesii farayse\0" // pf + "polinesiya enfalansa\0" // pf + "polinesiya ya wufalansa\0" // pf + "polinesí u felensí\0" // pf + "polinesí yá fulɛnsí\0" // pf + "polinezi franse\0" // pf + "polinezi wa nfalanse\0" // pf + "polinezi ya falánsɛ\0" // pf + "polinezia cʼhall\0" // pf + "polinezia franceze\0" // pf + "polinezia franceză\0" // pf + "polineziya y’abafaransa\0" // pf + "polinezja francuska\0" // pf + "polinezïi tî farânzi\0" // pf + "polineżja franċiża\0" // pf + "polinisia fakafalanisē\0" // pf + "polinèsia francesa\0" // pf + "polinésia francesa\0" // pf + "polinésia yʉ ʉfaráansa\0" // pf + "polinézia franseza\0" // pf + "poljska\0" // pl + "pollando\0" // pl + "pologn\0" // pl + "pologna\0" // pl + "pologne\0" // pl + "pologŋ\0" // pl + "poloni\0" // pl + "polonia\0" // pl + "polonie\0" // pl + "polonya\0" // pl + "polonye\0" // pl + "poloñ\0" // pl + "poloɲe\0" // pl + "poloɲi\0" // pl + "polsha\0" // pl + "polska\0" // pl + "polsko\0" // pl + "polynesia fala\0" // pf + "polynesia ffrengig\0" // pf + "polynesia thuộc pháp\0" // pf + "polynesia ya ufaransa\0" // pf + "polynezia frantsay\0" // pf + "polynésie française\0" // pf + "polífia\0" // bo + "polònia\0" // pl + "polónia\0" // pl + "polônia\0" // pl + "polīvia\0" // bo + "polşa\0" // pl + "polɔ́n\0" // pl + "poo\0" // us + "poo bhɛɛ lɔ musu tiŋŋɛ\0" // vi + "poo sambowa\0" // as + "poola\0" // pl + "poole\0" // pl + "poorandi\0" // pl + "portekiz\0" // pt + "portigaal\0" // pt + "portigal\0" // pt + "portiwgal\0" // pt + "porto rico\0" // pr + "porto riko\0" // pr + "porto rikoo\0" // pr + "porto rìceo\0" // pr + "porto rîko\0" // pr + "porto-riko\0" // pr + "portogallo\0" // pt + "portorico\0" // pr + "portoriko\0" // pr + "portoryko\0" // pr + "portu riku\0" // pr + "portugaal\0" // pt + "portugal\0" // pt + "portugal nutome\0" // pt + "portugali\0" // pt + "portugalia\0" // pt + "portugalija\0" // pt + "portugaliya\0" // pt + "portugaliýa\0" // pt + "portugalska\0" // pt + "portugalsko\0" // pt + "portugalujo\0" // pt + "portugál\0" // pt + "portugála\0" // pt + "portugália\0" // pt + "portugän\0" // pt + "portugāle\0" // pt + "portuqaliya\0" // pt + "portúgal\0" // pt + "porutugali\0" // pt + "posebno administrativno območje lr kitajske hongkong\0" // hk + "posebno administrativno območje lr kitajske macao\0" // mo + "posinia mo hesikōvina\0" // ba + "posuána\0" // bw + "potisiuana\0" // bw + "potogo\0" // pt + "potokíi\0" // pt + "potoriko\0" // pr + "potu fonua moana ʻinitia fakapilitānia\0" // io + "potu fonua tonga fakafalanisē\0" // tf + "potu palesitaine\0" // ps + "potugaali\0" // pt + "potukali\0" // pt + "pow frenk\0" // fr + "poľsko\0" // pl + "prancis\0" // fr + "prancōziska gujāna\0" // gf + "prancūzija\0" // fr + "prancūzijos gviana\0" // gf + "prancūzijos pietų sritys\0" // tf + "prancūzijos polinezija\0" // pf + "prankrīki\0" // fr + "prantsuse guajaana\0" // gf + "prantsuse lõunaalad\0" // tf + "prantsuse polüneesia\0" // pf + "prantsusmaa\0" // fr + "puerto rico\0" // pr + "puerto riggo\0" // pr + "puerto rikas\0" // pr + "puerto riko\0" // pr + "puerto riko nutome\0" // pr + "puerto-riko\0" // pr + "puertoriko\0" // pr + "puertu ricu\0" // pr + "puetoriko\0" // pr + "pulau ascension\0" // ac + "pulau bouvet\0" // bv + "pulau christmas\0" // cx + "pulau clipperton\0" // cp + "pulau heard dan kepulauan mcdonald\0" // hm + "pulau krismas\0" // cx + "pulau man\0" // im + "pulau norfolk\0" // nf + "puleʻanga fakatahataha ʻamelika\0" // us + "pulikínafásó\0" // bf + "pulinizya tafransist\0" // pf + "pulukalia\0" // bg + "pulukalíi\0" // bg + "pulund\0" // pl + "pulunei\0" // bn + "puluniti\0" // bi + "pulunizi tafransist\0" // pf + "pulunya\0" // pl + "pulunéy\0" // bn + "pulónia\0" // pl + "puola\0" // pl + "pup hong kong kina\0" // hk + "pup makao kina\0" // mo + "purtu riku\0" // pr + "purtugaal\0" // pt + "purtugal\0" // pt + "purturiku\0" // pr + "purtuɣal\0" // pt + "pusiaujo gvinėja\0" // gq + "pusiní-ɛlkofína\0" // ba + "pussideinanafrika\0" // za + "pussideinankōreja\0" // kr + "putaŋ\0" // bt + "putúlugɛsi\0" // pt + "puwetoriko\0" // pr + "puēto liko\0" // pr + "puɛrto riko\0" // pr + "puɛto riko\0" // pr + "pw\0" // us + "pwetoliko\0" // pr + "pwetoriko\0" // pr + "pwetorɨ́ɨko\0" // pr + "pwɛrəto ríko\0" // pr + "pàkìstân\0" // pk + "pàlaù\0" // pw + "pàlɛ̀htinà hyɔ̀ŋg nì gazà\0" // ps + "pànya\0" // es + "pànàma\0" // pa + "pàràgwê\0" // py + "pákistán\0" // pk + "pápua új-guinea\0" // pg + "päiväntasaajan guinea\0" // gq + "pèrû\0" // pe + "péeru\0" // pe + "pérou\0" // pe + "péru\0" // pe + "pìdkaìrn\0" // pn + "pítə́kɛ́rɛnə\0" // pn + "pòlànd\0" // pl + "pòlìnesìà pùlàsi\0" // pf + "pódpołdnjowa afrika (republika)\0" // za + "pódpołdnjowa georgiska a pódpołdnjowe sandwichowe kupy\0" // gs + "pódpołdnjowa koreja\0" // kr + "pódpołdnjowy sudan\0" // ss + "pódpołnocna koreja\0" // kp + "pódpołnocne mariany\0" // mp + "pódwjacorna sahara\0" // eh + "pódzajtšny timor\0" // tl + "pólandi\0" // pl + "pólland\0" // pl + "pólska\0" // pl + "pólótolíko\0" // pr + "pólɛŋ\0" // pl + "pórtó ríce\0" // pr + "pôlôna\0" // pl + "pôrtiogala\0" // pt + "pôrtô rikô\0" // pr + "põhja-korea\0" // kp + "põhja-mariaanid\0" // mp + "pölôni\0" // pl + "pörtugäle, ködörö pûra\0" // pt + "pùlàsi / fɛ̀lɛ̀nsi /\0" // fr + "púertó ríkó\0" // pr + "púlúndí\0" // bi + "pākisitani\0" // pk + "pāpeitosi\0" // bb + "pēmuta\0" // bm + "pōli\0" // pl + "pōrtugalin\0" // pt + "pūtani\0" // bt + "pȟečhókaŋhaŋska makȟóčhe\0" // cn + "pɔlinɛsí a pɛrɛsǝ́\0" // pf + "pɔltukáal\0" // pt + "pɔlɔŋ\0" // pl + "pɔlɔ́ɔny\0" // pl + "pɔritigali\0" // pt + "pɔrotoriko\0" // pr + "pɔrtugal\0" // pt + "pɔtoriko\0" // pr + "pɔtoríko\0" // pr + "pɔtugal\0" // pt + "pɔ̀rtò rikò\0" // pr + "pɔ̀tɔkì\0" // pt + "pɛlmúta\0" // bm + "pɛlsíik\0" // be + "pɛlû\0" // pe + "pɛru\0" // pe + "pɛrú\0" // pe + "pɛrɛsǝ́\0" // fr + "pɛsɛ́shɛl\0" // sc + "pɛíbá\0" // nl + "qabon\0" // ga + "qadar\0" // qa + "qalasersuaq kujalleq\0" // aq + "qambiya\0" // gm + "qana\0" // gh + "qatar\0" // qa + "qayana\0" // gy + "qazaxıstan\0" // kz + "qaṭar\0" // qa + "qipro\0" // cy + "qirgʻiziston\0" // kg + "qozogʻiston\0" // kz + "qrenada\0" // gd + "qrenlandiya\0" // gl + "quam\0" // gu + "quatar\0" // qa + "qubrus\0" // cy + "quirguistão\0" // kg + "quiribati\0" // ki + "quiribáti\0" // ki + "qumur\0" // km + "quvayt\0" // kw + "quénia\0" // ke + "quênia\0" // ke + "quần đảo bắc mariana\0" // mp + "quần đảo canary\0" // ic + "quần đảo cayman\0" // ky + "quần đảo cocos (keeling)\0" // cc + "quần đảo cook\0" // ck + "quần đảo falkland\0" // fk + "quần đảo falkland (islas malvinas)\0" // fk + "quần đảo faroe\0" // fo + "quần đảo heard và mcdonald\0" // hm + "quần đảo marshall\0" // mh + "quần đảo pitcairn\0" // pn + "quần đảo solomon\0" // sb + "quần đảo turks và caicos\0" // tc + "quần đảo virgin thuộc anh\0" // vg + "quần đảo virgin thuộc mỹ\0" // vi + "quần đảo åland\0" // ax + "qvadelupa\0" // gp + "qvatemala\0" // gt + "qvineya\0" // gn + "qvineya-bisau\0" // gw + "qırğızıstan\0" // kg + "qərbi saxara\0" // eh + "qətər\0" // qa + "r. u.\0" // gb + "r.-u.\0" // gb + "r.a.s. chinoise de hong kong\0" // hk + "r.a.s. chinoise de macao\0" // mo + "r.a.s. hong kong a chinei\0" // hk + "r.a.s. macao a chinei\0" // mo + "r.u.\0" // gb + "ra\0" // gb + "rae de hong kong (china)\0" // hk + "rae de macao (china)\0" // mo + "rakousko\0" // at + "rakúsko\0" // at + "ranntair breatannach cuan nan innseachan\0" // io + "ranntairean a deas na frainge\0" // tf + "ranska\0" // fr + "ranska guyana\0" // gf + "ranska máddááh kuávluh\0" // tf + "ranska polynesia\0" // pf + "ranskan eteläiset alueet\0" // tf + "ranskan guayana\0" // gf + "ranskan polynesia\0" // pf + "raon an eòro\0" // ez + "ras di hong kong\0" // hk + "ras di macao\0" // mo + "rasha\0" // ru + "rashia\0" // ru + "rashiya\0" // ru + "rasiab\0" // ru + "rawunda\0" // rw + "rawuniyan\0" // re + "ream unît\0" // gb + "reenioŋ\0" // re + "reeñoo\0" // re + "regatul unit\0" // gb + "reginavel unì\0" // gb + "regiun d’administraziun speziala da hongkong, china\0" // hk + "regiun d’administraziun speziala macao, china\0" // mo + "regjon aministrative speciâl de cine di hong kong\0" // hk + "regjon aministrative speciâl de cine di macao\0" // mo + "regne unit\0" // gb + "regno unito\0" // gb + "regän pebalöl\0" // gb + "rehunjohn\0" // re + "reinion\0" // re + "reinjona\0" // re + "reino unido\0" // gb + "reinu unidu\0" // gb + "reinu xuníu\0" // gb + "reinïon\0" // re + "rejiãu administrativu spesial di hong kong\0" // hk + "rejiãu administrativu spesial di makau\0" // mo + "renyɔɔ̃\0" // re + "repibiki tsekɛ\0" // cz + "repibiki ya afríka ya káti\0" // cf + "repibiki ya domínikɛ\0" // do + "repiblik chek\0" // cz + "repiblik demokratik kongo\0" // cd + "repiblik dominiken\0" // do + "repiblik dominikin\0" // do + "repiblik lafrik santral\0" // cf + "repiblik sàntar afrik\0" // cf + "repoblika dominikanina\0" // do + "repoblika ivon’afrika\0" // cf + "repoblikan’i kongo\0" // cd + "repoblikan’i tseky\0" // cz + "repubblica ceca\0" // cz + "repubblica centrafricana\0" // cf + "repubblica di macedonia\0" // mk + "repubblica dominicana\0" // do + "republica cehă\0" // cz + "republica centrafricană\0" // cf + "republica centralafricana\0" // cf + "republica democratica dal congo\0" // cd + "republica dominicana\0" // do + "republica dominicană\0" // do + "republica macedonia\0" // mk + "republica macedonia (frim)\0" // mk + "republica moldova\0" // md + "republica tscheca\0" // cz + "republiche ceche\0" // cz + "republiche centri africane\0" // cf + "republiche democratiche dal congo\0" // cd + "republiche dominicane\0" // do + "republiek ivoorkust\0" // ci + "republik afrika tengah\0" // cf + "republik ceko\0" // cz + "republik czech\0" // cz + "republik dominica\0" // do + "republik dominika\0" // do + "republik dominikan\0" // do + "republik kongo\0" // cg + "republik koreea\0" // kr + "republik kreizafrikan\0" // cf + "republik moldau\0" // md + "republik tchek\0" // cz + "republika czeska\0" // cz + "republika dominikane\0" // do + "republika e afrikës qendrore\0" // cf + "republika konga\0" // cg + "republika kongo\0" // cg + "republika południowej afryki\0" // za + "republika sentru-afrikanu\0" // cf + "republika zielonego przylądka\0" // cv + "republika çeke\0" // cz + "republika środkowoafrykańska\0" // cf + "republiken kongo\0" // cg + "republikken congo\0" // cg + "republikken kongo\0" // cg + "republíki ya kongó demokratíki\0" // cd + "repubulika iharanira demokarasi ya kongo\0" // cd + "repubulika ya ceke\0" // cz + "repubulika ya dominika\0" // do + "repubulika ya santarafurika\0" // cf + "república centreafricana\0" // cf + "república centro-africana\0" // cf + "república centroafricana\0" // cf + "república checa\0" // cz + "república de sud-àfrica\0" // za + "república del congo\0" // cg + "república democrática de timor-leste\0" // tl + "república democrática del congo\0" // cd + "república democrática do congo\0" // cd + "república do congo\0" // cg + "república dominicana\0" // do + "república dos camarões\0" // cm + "república tcheca\0" // cz + "república txeca\0" // cz + "repúblika di kongu\0" // cg + "repúblika dimokrátika di kongu\0" // cd + "repúblika dominikana\0" // do + "repúblika txeka\0" // cz + "reunio\0" // re + "reunion\0" // re + "reunião\0" // re + "reunión\0" // re + "reuniɔ́ŋ\0" // re + "reunjonas\0" // re + "rewiñoo\0" // re + "reyunion\0" // re + "reyunióoni\0" // re + "reyuniɔn\0" // re + "reyunyon\0" // re + "reyuɲɔŋ\0" // re + "reünioon\0" // re + "reýunýon\0" // re + "rietumsahāra\0" // eh + "riisii\0" // ru + "rinn verde\0" // cv + "ripaaburika ya dominica\0" // do + "ripaaburika ya zeeki\0" // cz + "risi\0" // ru + "risí\0" // ru + "riunione\0" // re + "riyunioni\0" // re + "riyuniyoni\0" // re + "riyunyun\0" // re + "riyyunyun\0" // re + "roanda\0" // rw + "roemenië\0" // ro + "roheneemesaared\0" // cv + "roinn iomallach a’ chuain sèimh\0" // qo + "rojdestvo oroli\0" // cx + "romani\0" // ro + "romania\0" // ro + "romania nutome\0" // ro + "romanie\0" // ro + "romaniya\0" // ro + "romanya\0" // ro + "romanía\0" // ro + "romaníia\0" // ro + "romenia\0" // ro + "romininya\0" // ro + "romunija\0" // ro + "romàinia\0" // ro + "románia\0" // ro + "românia\0" // ro + "romäänije\0" // ro + "roménia\0" // ro + "romênia\0" // ro + "rootsi\0" // se + "rosia\0" // ru + "rosja\0" // ru + "rossiya\0" // ru + "rouantelezh-unanet\0" // gb + "roumani\0" // ro + "roumania\0" // ro + "roumanie\0" // ro + "rovníková guinea\0" // gq + "royaume-uni\0" // gb + "roždestwo adasy\0" // cx + "rpa i hong-kongut\0" // hk + "rpa i makaos\0" // mo + "rrasha\0" // ru + "rrus\0" // ru + "ru\0" // gb + "ruanda\0" // rw + "ruande\0" // rw + "ruando\0" // rw + "ruandäa\0" // rw + "ruandë\0" // rw + "rubhanda\0" // rw + "rumaani\0" // ro + "rumaaniya\0" // ro + "rumani\0" // ro + "rumania\0" // ro + "rumanii\0" // ro + "rumaniya\0" // ro + "rumanujo\0" // ro + "rumanya\0" // ro + "rumaní\0" // ro + "rumanía\0" // ro + "rumanïi\0" // ro + "rumeenia\0" // ro + "rumenia\0" // ro + "ruminiya\0" // ro + "rumunia\0" // ro + "rumunija\0" // ro + "rumunjska\0" // ro + "rumunska\0" // ro + "rumunsko\0" // ro + "rumuńska\0" // ro + "rumyniýa\0" // ro + "rumänie\0" // ro + "rumänien\0" // ro + "rumäänie\0" // ro + "rumænia\0" // ro + "rumænien\0" // ro + "ruménia\0" // ro + "rumānija\0" // ro + "rumıniya\0" // ro + "runiãu\0" // re + "ruotsi\0" // se + "ruotâ\0" // se + "ruošša\0" // ru + "ruoššâ\0" // ru + "ruoŧŧa\0" // se + "rusi\0" // ru + "rusia\0" // ru + "rusija\0" // ru + "rusiya\0" // ru + "ruska\0" // ru + "rusko\0" // ru + "rusland\0" // ru + "ruslandi\0" // ru + "ruslànd\0" // ru + "ruslân\0" // ru + "russi\0" // ru + "russia\0" // ru + "russia nutome\0" // ru + "russie\0" // ru + "russiya\0" // ru + "russiýa\0" // ru + "russland\0" // ru + "rusujo\0" // ru + "rusya\0" // ru + "rusän\0" // ru + "rusïi\0" // ru + "ruush\0" // ru + "ruwaayom ini\0" // gb + "ruwanda\0" // rw + "ruwandá\0" // rw + "ruwanndaa\0" // rw + "ruwwanḍa\0" // rw + "ruwànda\0" // rw + "rußland\0" // ru + "rwanda\0" // rw + "rwanda nutome\0" // rw + "rwandab\0" // rw + "rwmania\0" // ro + "rwsia\0" // ru + "rwáanda\0" // rw + "rx\0" // gb + "ryssland\0" // ru + "rytų timoras\0" // tl + "rywvaneth unys\0" // gb + "rèunyɔ̂ŋ\0" // re + "réewum cek\0" // cz + "réewum kongo\0" // cg + "régions éloignées de l’océanie\0" // qo + "république centrafricaine\0" // cf + "république de côte d’ivoire\0" // ci + "république dominicaine\0" // do + "république du congo\0" // cg + "république tchèque\0" // cz + "réunion\0" // re + "réunion nutome\0" // re + "réuniɔn\0" // re + "rùandà\0" // rw + "rùmanìà\0" // ro + "rúanda\0" // rw + "rúmenía\0" // ro + "rúsia\0" // ru + "rúsian\0" // ru + "rússia\0" // ru + "rússland\0" // ru + "rũtere rwa westi banki na gaza cia palestina\0" // ps + "rɔhyea\0" // ru + "rɔmaní\0" // ro + "rɔshiya\0" // ru + "rɛunyɔŋ\0" // re + "s.r.r. na síne hong cong\0" // hk + "s.r.r. na síne macao\0" // mo + "s.u.\0" // us + "s.u.a.\0" // us + "s:t barthélemy\0" // bl + "s:t helena\0" // sh + "s:t kitts och nevis\0" // kn + "s:t lucia\0" // lc + "s:t pierre och miquelon\0" // pm + "s:t vincent och grenadinerna\0" // vc + "sa\0" // us + "saalomoni saared\0" // sb + "saambiya\0" // zm + "saambíi\0" // zm + "saara ocidental\0" // eh + "sacuudi carabiya\0" // sa + "sad\0" // us + "saekpùlù\0" // cy + "saeprɔs\0" // cy + "sahala fakahihifo\0" // eh + "sahara ar cʼhornôg\0" // eh + "sahara barat\0" // eh + "sahara killiit\0" // eh + "sahara magharibi\0" // eh + "sahara occidental\0" // eh + "sahara occidentala\0" // eh + "sahara occidentale\0" // eh + "sahara occidentală\0" // eh + "sahara ocidentâl\0" // eh + "sahara ya limbɛ\0" // eh + "sahara zachodnia\0" // eh + "saharaja perëndimore\0" // eh + "saichel\0" // sc + "saint barthelemy\0" // bl + "saint barthélemy\0" // bl + "saint barthélemy nutome\0" // bl + "saint christopher i nevis\0" // kn + "saint helena\0" // sh + "saint helena nutome\0" // sh + "saint kitis kple nevis nutome\0" // kn + "saint kitts a nevis\0" // kn + "saint kitts aamma nevis\0" // kn + "saint kitts and nevis\0" // kn + "saint kitts dan nevis\0" // kn + "saint kitts e nevis\0" // kn + "saint kitts en nevis\0" // kn + "saint kitts eta nevis\0" // kn + "saint kitts gi nevis\0" // kn + "saint kitts ha nevis\0" // kn + "saint kitts i nevis\0" // kn + "saint kitts in nevis\0" // kn + "saint kitts ja nevis\0" // kn + "saint kitts na nevis\0" // kn + "saint kitts ne nɛves\0" // kn + "saint kitts og nevis\0" // kn + "saint kitts u nevis\0" // kn + "saint kitts ve nevis\0" // kn + "saint kitts y nevis\0" // kn + "saint kitts és nevis\0" // kn + "saint kitts și nevis\0" // kn + "saint lina\0" // sh + "saint lucia\0" // lc + "saint lusia nutome\0" // lc + "saint martin\0" // mf + "saint martin nutome\0" // mf + "saint peter ba mikelɔn\0" // pm + "saint pierre & miquelon\0" // pm + "saint pierre a miquelon\0" // pm + "saint pierre aamma miquelon\0" // pm + "saint pierre agus miquelon\0" // pm + "saint pierre and miquelon\0" // pm + "saint pierre dan miquelon\0" // pm + "saint pierre e miquelon\0" // pm + "saint pierre gi miquelon\0" // pm + "saint pierre in miquelon\0" // pm + "saint pierre ja miquelon\0" // pm + "saint pierre kple mikelɔn nutome\0" // pm + "saint pierre ne miquelon\0" // pm + "saint pierre og miquelon\0" // pm + "saint pierre u miquelon\0" // pm + "saint pierre ve miquelon\0" // pm + "saint pierre và miquelon\0" // pm + "saint pierre y miquelon\0" // pm + "saint vincent and the grenadines\0" // vc + "saint vincent a’r grenadines\0" // vc + "saint vincent ba grenadines\0" // vc + "saint vincent dan grenadines\0" // vc + "saint vincent e grenadine\0" // vc + "saint vincent e las grenadinas\0" // vc + "saint vincent en de grenadines\0" // vc + "saint vincent eta grenadinak\0" // vc + "saint vincent gi grenadines\0" // vc + "saint vincent i grenadyny\0" // vc + "saint vincent i les grenadines\0" // vc + "saint vincent in grenadine\0" // vc + "saint vincent ja grenadiinid\0" // vc + "saint vincent ja grenadiinit\0" // vc + "saint vincent ja grenadine\0" // vc + "saint vincent kple grenadine nutome\0" // vc + "saint vincent ne grenadines\0" // vc + "saint vincent og grenadinerne\0" // vc + "saint vincent u l-grenadini\0" // vc + "saint vincent ve grenadinler\0" // vc + "saint vincent és a grenadine-szigetek\0" // vc + "saint vincent și grenadinele\0" // vc + "saint-barthélemy\0" // bl + "saint-christophe-ek-niévès\0" // kn + "saint-christophe-et-niévès\0" // kn + "saint-helena\0" // sh + "saint-marin\0" // sm + "saint-martin\0" // mf + "saint-martin (france)\0" // mf + "saint-martin (partie néerlandaise)\0" // sx + "saint-martin (pays-bas)\0" // sx + "saint-pierre a miquelon\0" // pm + "saint-pierre e miquelon\0" // pm + "saint-pierre en miquelon\0" // pm + "saint-pierre eta mikelune\0" // pm + "saint-pierre i miquelon\0" // pm + "saint-pierre ja miquelon\0" // pm + "saint-pierre és miquelon\0" // pm + "saint-pierre și miquelon\0" // pm + "saint-pierre-ek-miquelon\0" // pm + "saint-pierre-et-miquelon\0" // pm + "saint-vincent-ek-grenadines\0" // vc + "saint-vincent-et-les grenadines\0" // vc + "saint-vincent-et-les-grenadines\0" // vc + "sainte-hélène\0" // sh + "sainte-lucie\0" // lc + "saipalesi\0" // cy + "saiprasi\0" // cy + "saiprus nutome\0" // cy + "saipurasi\0" // cy + "saishal\0" // sc + "saksa\0" // de + "saksamaa\0" // de + "salamon-szigetek\0" // sb + "salewo\0" // sl + "salfadur\0" // sv + "salfatɔ́ɔl\0" // sv + "saliamono salos\0" // sb + "salivadɔr\0" // sv + "salomo gun\0" // sb + "salomon uharteak\0" // sb + "salomon-inseln\0" // sb + "salomon-sullot\0" // sb + "salomonas\0" // sb + "salomone\0" // sb + "salomonen\0" // sb + "salomonoj\0" // sb + "salomonovi otoki\0" // sb + "salomonoyggjar\0" // sb + "salomonsaaret\0" // sb + "salomonseilande\0" // sb + "salomonseilanden\0" // sb + "salomonseilannen\0" // sb + "salomonski otoci\0" // sb + "salomony\0" // sb + "salomonöarna\0" // sb + "salomonøerne\0" // sb + "salomonøyane\0" // sb + "salomonøyene\0" // sb + "salomoone\0" // sb + "salomosuolluuh\0" // sb + "salvadoor\0" // sv + "salvador\0" // sv + "salvador laboo\0" // sv + "salvadora\0" // sv + "salvadoras\0" // sv + "salvadoro\0" // sv + "salvadur\0" // sv + "salvadöro\0" // sv + "salvadɔr\0" // sv + "salvard d jan mayen\0" // sj + "salvaḍur\0" // sv + "salvádor\0" // sv + "salwador\0" // sv + "salómonseyjar\0" // sb + "saləvadór\0" // sv + "sam\0" // us + "samaik\0" // jm + "samaika\0" // jm + "samalino\0" // sm + "samarino\0" // sm + "samaríino\0" // sm + "samayig\0" // jm + "samayíik\0" // jm + "sambandsríki amerika\0" // us + "sambandsríki amerikas fjarskotnu oyggjar\0" // um + "sambandsríki amerikas jomfrúoyggjar\0" // vi + "sambia\0" // zm + "sambija\0" // zm + "sambiya\0" // zm + "sambía\0" // zm + "sameindu emirríkini\0" // ae + "sameinuðu arabísku furstadæmin\0" // ae + "sammbi\0" // zm + "sammoha\0" // ws + "samoa\0" // ws + "samoa america\0" // as + "samoa americana\0" // as + "samoa americane\0" // as + "samoa americană\0" // as + "samoa amerika\0" // as + "samoa amerikan\0" // as + "samoa amerikane\0" // as + "samoa amerikanina\0" // as + "samoa amerikin\0" // as + "samoa amerykańskie\0" // as + "samoa américaines\0" // as + "samoa estatubatuarra\0" // as + "samoa lya marekani\0" // as + "samoa m ́amɛ́rka\0" // as + "samoa merecanis\0" // as + "samoa merkanu\0" // as + "samoa nord-americana\0" // as + "samoa nutome\0" // ws + "samoa thuộc mỹ\0" // as + "samoa wa ameriki\0" // as + "samoa ya amerika\0" // as + "samoa ya ameriki\0" // as + "samoa ya malekani\0" // as + "samoa ya marekani\0" // as + "samoa yati amerik\0" // as + "samoa ye amelika\0" // as + "samoa ye amerika\0" // as + "samoo\0" // ws + "samooa\0" // ws + "samotha\0" // ws + "samotha na h-aimeireaga\0" // as + "samowa\0" // ws + "samowa ameerika\0" // as + "samowa amerik\0" // as + "samowa amerikani\0" // as + "samowa bu amerig\0" // as + "samowa nyamerika\0" // as + "samowa omumerika\0" // as + "samowa ta amurka\0" // as + "samowa ya ameerika\0" // as + "samowaa\0" // ws + "samowá\0" // ws + "samoya\0" // ws + "samoya ya malekani\0" // as + "samoá\0" // ws + "samoäa\0" // ws + "samwa\0" // ws + "samwa imirikaniyyin\0" // as + "samwa tamarikanit\0" // as + "samwa tamirikanit\0" // as + "samó\0" // ws + "samó mheiriceá\0" // as + "samóa\0" // ws + "samóoa\0" // ws + "samóoa ya amerɨ́ka\0" // as + "samöa tî amerîka\0" // as + "samɔa\0" // ws + "samɔa a amɛrika\0" // as + "san bartolomé\0" // bl + "san binsan da girnadin\0" // vc + "san cristóbal y nieves\0" // kn + "san críostóir-nimheas\0" // kn + "san helena\0" // sh + "san héilin\0" // sh + "san kiti da nebis\0" // kn + "san kits d nivis\0" // kn + "san kitts e nevis\0" // kn + "san lusiya\0" // lc + "san lučya\0" // lc + "san mairíne\0" // sm + "san malíno\0" // sm + "san mariino\0" // sm + "san marin\0" // sm + "san marinas\0" // sm + "san marino\0" // sm + "san marino nutome\0" // sm + "san marinu\0" // sm + "san marinō\0" // sm + "san martin\0" // mf + "san martín\0" // mf + "san marín\0" // sm + "san maríno\0" // sm + "san marínó\0" // sm + "san maṛtan\0" // mf + "san maṛtan(tamnaḍt tahulandit)\0" // sx + "san pedro y miquelón\0" // pm + "san piere i mikelon\0" // pm + "san pierre agus miquelon\0" // pm + "san pierre e miquelon\0" // pm + "san piyar da mikelan\0" // pm + "san pyar d miklun\0" // pm + "san tomé e príncipe\0" // st + "san tomė ir prinsipė\0" // st + "san uinseann agus na greanáidíní\0" // vc + "san vansu d grunadin\0" // vc + "san vicente e as granadinas\0" // vc + "san vicente y granadines\0" // vc + "san vicente y las granadinas\0" // vc + "san vincent e lis grenadinis\0" // vc + "san-marino\0" // sm + "san-tome va prinsipi\0" // st + "san-tome və prinsipi\0" // st + "san-tome we prinsipi\0" // st + "sanbyir d miklun\0" // pm + "sanfansan d grinadin\0" // vc + "sanimarino\0" // sm + "sanitome ne purincipe\0" // st + "sanitome ni purincipe\0" // st + "sankris d nifis\0" // kn + "sankti bartólómeusareyjar\0" // bl + "sankti helena\0" // sh + "sankti kitts og nevis\0" // kn + "sankti lúsía\0" // lc + "sankti martin\0" // sx + "sankti pierre og miquelon\0" // pm + "sankti vinsent og grenadíneyjar\0" // vc + "sanmarinu\0" // sm + "sanmarīno\0" // sm + "sant barthélemy\0" // bl + "sant baṛtilimi\0" // bl + "sant ilina\0" // sh + "sant martin\0" // mf + "sant visant hag ar grenadinez\0" // vc + "sant-pêr-ha-mikelon\0" // pm + "santa elena\0" // sh + "santa helena\0" // sh + "santa ilena\0" // sh + "santa llucía\0" // lc + "santa lucía\0" // lc + "santa luzia\0" // lc + "santa lúcia\0" // lc + "santa lúsia\0" // lc + "santa sede (ciudad del vaticano)\0" // va + "santahelena\0" // sh + "santakitisi ni nevisi\0" // kn + "santakitzi na nevis\0" // kn + "santalafilíik\0" // cf + "santalusia\0" // lc + "santalusiya\0" // lc + "santapieli na mikeloni\0" // pm + "santapieli ni mikeloni\0" // pm + "santapieri na mikeloni\0" // pm + "santapierre na miquelon\0" // pm + "santarafiriki\0" // cf + "santavisenti na gilenadini\0" // vc + "santavisenti na glenadini\0" // vc + "santavisenti na grenadini\0" // vc + "sante eline\0" // sh + "sante lusie\0" // lc + "santehilin\0" // sh + "santekits d nivis\0" // kn + "santelusya\0" // lc + "santepyir d mikelun\0" // pm + "santevinsent d grinadin\0" // vc + "santilin\0" // sh + "santlusi\0" // lc + "santo tomé y príncipe\0" // st + "santome un prinsipi\0" // st + "santrafrík\0" // cf + "santu eleni\0" // sh + "santu krístofe ne neves\0" // kn + "santu lisi\0" // lc + "santu marine\0" // sm + "santu pététo ne mikelu\0" // pm + "santu tomé y príncipe\0" // st + "santu vesa ne ngelenadine\0" // vc + "sant’elena\0" // sh + "sanɣafura\0" // sg + "sao tome & prinsipi\0" // st + "sao tome dan principe\0" // st + "sao tome eta principe\0" // st + "sao tome i principe\0" // st + "sao tome in principe\0" // st + "sao tome na plincipe\0" // st + "sao tome na principe\0" // st + "sao tome na prinsipe\0" // st + "sao tome nda prinsipe\0" // st + "sao tome ne presipɛ\0" // st + "sao tome ne principe\0" // st + "sao tome und prinssipe\0" // st + "sao tome și principe\0" // st + "sao tomè e principe\0" // st + "sao tomé ba prinship\0" // st + "sao tomé en principe\0" // st + "sao tomé mpé presipɛ\0" // st + "sao tomé-et-principe\0" // st + "sao tomē mo pilinisipe\0" // st + "sao tóome na pirinsipe\0" // st + "sao-tome e principe\0" // st + "sao-tomeo kaj principeo\0" // st + "saoedi-arabië\0" // sa + "saotome na prinsipe\0" // st + "saotomɛ́ ri priŋsib\0" // st + "sapoo\0" // jp + "sapoŋ\0" // jp + "sapɔ́ɔŋ\0" // jp + "sar hongkong\0" // hk + "sar hongkong (kina)\0" // hk + "sar macao\0" // mo + "sar makao\0" // mo + "sar makao (kina)\0" // mo + "sara ocidental\0" // eh + "sara osidental\0" // eh + "sathara an iar\0" // eh + "saud arabystany\0" // sa + "saudi\0" // sa + "saudi araabia\0" // sa + "saudi arabia\0" // sa + "saudi arabia nutome\0" // sa + "saudi arabiab\0" // sa + "saudi arabie\0" // sa + "saudi areebiya\0" // sa + "saudi arraabije\0" // sa + "saudi-araabie\0" // sa + "saudi-arabia\0" // sa + "saudi-arabien\0" // sa + "saudi-arabiska\0" // sa + "saudi-arábia\0" // sa + "saudia\0" // sa + "saudiarabia\0" // sa + "saudiarabien\0" // sa + "saudijska arabija\0" // sa + "saudiya\0" // sa + "saudiya arabistoni\0" // sa + "saudo arabija\0" // sa + "saudova arabija\0" // sa + "saudská arábia\0" // sa + "saudíia arabíia\0" // sa + "sausi afirika\0" // za + "saute ʻalepea\0" // sa + "savadore\0" // sv + "savadɔrɛ\0" // sv + "savalimmiut\0" // fo + "saw tumi d pransip\0" // st + "sawdi-arabska\0" // sa + "sawo tombe ɓɛ a gbawoe\0" // st + "sawo tome ak pirinsipe\0" // st + "sawo tome da paransip\0" // st + "sawo tome e perensipe\0" // st + "sawo tome na purinsipo\0" // st + "sawo tome-ni-prinicipe\0" // st + "sawo tɔ̀me à kpèlènsikpɛ̀\0" // st + "sawotome na perensipe\0" // st + "sawudarebya\0" // sa + "sawudarebya - buwarabu\0" // sa + "sawudi\0" // sa + "sawudi alabi\0" // sa + "sawusafirika\0" // za + "sawṭumi d bransib\0" // st + "sawṭumi d prinsip\0" // st + "sayo tome ni pilinikipe\0" // st + "saó tomé ai pəlinəsípe\0" // st + "saó tóme og prinsípe\0" // st + "saúdská arábie\0" // sa + "saûdi arabïi\0" // sa + "saŋ bartalemi\0" // bl + "saŋ eleen\0" // sh + "saŋ kits ak newis\0" // kn + "saŋ lusi\0" // lc + "saŋ lusia\0" // lc + "saŋ marindo\0" // sm + "saŋ marteŋ\0" // mf + "saŋ peer ak mikeloŋ\0" // pm + "saŋ weesaa ak garanadin\0" // vc + "saūda arābija\0" // sa + "saūdi arābija\0" // sa + "saŭda arabujo\0" // sa + "saɛpurɔ\0" // cy + "sbaen\0" // es + "sbanya\0" // es + "schiile\0" // cl + "schiina\0" // cn + "schpaanije\0" // es + "schpanie\0" // es + "schri lanka\0" // lk + "schwede\0" // se + "schweden\0" // se + "schweede\0" // se + "schweiz\0" // ch + "schweizi\0" // ch + "schwiiz\0" // ch + "schwiz\0" // ch + "schwäiz\0" // ch + "sead\0" // td + "sealainn nuadh\0" // nz + "seanagal\0" // sn + "sebta d melilla\0" // ea + "sechelez\0" // sc + "see maree\0" // sm + "see piyeer e mikeloo\0" // pm + "see weesaa e garnadiin\0" // vc + "seera leon\0" // sl + "seešel\0" // sc + "sehelene\0" // sh + "seicheles\0" // sc + "seischälle\0" // sc + "seixelis\0" // sc + "seišeliai\0" // sc + "seišellid\0" // sc + "seišelu salas\0" // sc + "sejshelle\0" // sc + "sejŝeloj\0" // sc + "sejšeli\0" // sc + "sekitsi na nevisi\0" // kn + "seland newydd\0" // nz + "selandia baru\0" // nz + "selusiya\0" // lc + "selusī\0" // je + "semipia\0" // zm + "sempiyeri na mikeloni\0" // pm + "sen bartelemi\0" // bl + "sen martenas\0" // mf + "sen pjer i mikelon\0" // pm + "sen pjeras ir mikelonas\0" // pm + "sen-bartelemi\0" // bl + "sen-marten\0" // mf + "sen-pyer va mikelon\0" // pm + "sen-pýer we mikelon\0" // pm + "senbartelmī\0" // bl + "senegaal\0" // sn + "senegaalo\0" // sn + "senegal\0" // sn + "senegal nutome\0" // sn + "senegalas\0" // sn + "senegale\0" // sn + "senegali\0" // sn + "senegalo\0" // sn + "senegalɛ\0" // sn + "senego\0" // sn + "senegáali\0" // sn + "senegál\0" // sn + "senegäle\0" // sn + "senegāla\0" // sn + "senekalo\0" // sn + "senekáal\0" // sn + "seneqal\0" // sn + "senmartēna\0" // mf + "senpjēra un mikelona\0" // pm + "sent helen\0" // sh + "sent kits e newis\0" // kn + "sent kits i nevis\0" // kn + "sent kitsas ir nevis\0" // kn + "sent lusija\0" // lc + "sent lusiyaa\0" // lc + "sent martin\0" // mf + "sent vinsent i grenadini\0" // vc + "sent-bartelemi\0" // bl + "sent-heleno\0" // sh + "sent-kits va nevis\0" // kn + "sent-kits və nevis\0" // kn + "sent-kits we newis\0" // kn + "sent-kristofo kaj neviso\0" // kn + "sent-lucio\0" // lc + "sent-lusiya\0" // lc + "sent-lyusiya\0" // lc + "sent-lýusiýa\0" // lc + "sent-martin\0" // mf + "sent-piero kaj mikelono\0" // pm + "sent-vincento kaj la grenadinoj\0" // vc + "sent-vinsent va grenadin\0" // vc + "sent-vinsent və qrenadinlər\0" // vc + "sent-winsent we grenadinler\0" // vc + "senti herena\0" // sh + "senti kitisi ne nevisi\0" // kn + "senti kittis na nevisi\0" // kn + "senti luciya\0" // lc + "senti piyere ne mikeloni\0" // pm + "senti piyere ni mikeloni\0" // pm + "senti piyerre na mikweron\0" // pm + "senti rusiya\0" // lc + "senti vinsent na gurenadini\0" // vc + "senti vinsenti ne gurendadiini\0" // vc + "senti vinsenti ni gurendadiini\0" // vc + "sentkitsa un nevisa\0" // kn + "sentlūsija\0" // lc + "sentraal-afrikaanse republiek\0" // cf + "sentrafríka\0" // cf + "sentvinsenta un grenadīnas\0" // vc + "seorsi\0" // ge + "sepanyol\0" // es + "septe ve melilla\0" // ea + "ser anglofon ma laŋne\0" // vg + "ser ivoiriya\0" // ci + "sera lioa\0" // sl + "seraa liyon\0" // sl + "seraleóoni\0" // sl + "serbi\0" // rs + "serbia\0" // rs + "serbia nutome\0" // rs + "serbie\0" // rs + "serbien\0" // rs + "serbija\0" // rs + "serbiska\0" // rs + "serbiya\0" // rs + "serbiýa\0" // rs + "serbía\0" // rs + "serra leoa\0" // sl + "serra leon\0" // sl + "serse\0" // je + "servië\0" // rs + "serwië\0" // rs + "sesel\0" // sc + "sesere\0" // sc + "seshele\0" // sc + "seshɛls nutome\0" // sc + "seshɛɛ\0" // sc + "seszele\0" // sc + "sesɛli\0" // sc + "sesɛ́ɛl\0" // sc + "seuta i melilha\0" // ea + "seuta i melilja\0" // ea + "seuta ir melila\0" // ea + "seuta va melilya\0" // ea + "seuta və melilya\0" // ea + "seuta we melilýa\0" // ea + "sevensa na gerenadine\0" // vc + "severna koreja\0" // kp + "severna marijanska ostrva\0" // mp + "severni marianski otoki\0" // mp + "severná kórea\0" // kp + "severné mariány\0" // mp + "severní korea\0" // kp + "severní mariany\0" // mp + "sewjerna koreja\0" // kp + "sewjerne mariany\0" // mp + "seworsi\0" // ge + "seworsi di sid ak duni sàndwiis di sid\0" // gs + "seycel\0" // sc + "seychellane\0" // sc + "seychellas\0" // sc + "seychelle\0" // sc + "seychelle-szigetek\0" // sc + "seychelleak\0" // sc + "seychelleh\0" // sc + "seychellen\0" // sc + "seychellene\0" // sc + "seychellerna\0" // sc + "seychellerne\0" // sc + "seychelles\0" // sc + "seychelles-eyjar\0" // sc + "seychellit\0" // sc + "seychellsullot\0" // sc + "seychely\0" // sc + "seychɛlle\0" // sc + "seyhyɛl\0" // sc + "seysel\0" // sc + "seyshel orollari\0" // sc + "seyshela\0" // sc + "seyskelloyggjar\0" // sc + "seyşel adaları\0" // sc + "seyşeller\0" // sc + "seòirsea a deas is na h-eileanan sandwich a deas\0" // gs + "seýşel adalary\0" // sc + "sečelle\0" // sc + "seŋ helena\0" // sh + "seŋ kitts nda nevis\0" // kn + "seŋ lussia\0" // lc + "seŋ piyer nda mikelon\0" // pm + "seŋvinsaŋ nda grenadine\0" // vc + "seōsia\0" // ge + "seūta un melilja\0" // ea + "seḥra n umalu\0" // eh + "sfânta elena\0" // sh + "sfânta lucia\0" // lc + "sfântul martin\0" // mf + "shadi\0" // td + "sham, siriya\0" // sy + "sharqiy timor\0" // tl + "shba\0" // us + "shekia\0" // cz + "shelisheli\0" // sc + "shelishéeli\0" // sc + "shesheresi\0" // sc + "shigunguli sha nolifoki\0" // nf + "shiinaha\0" // cn + "shile\0" // cl + "shili\0" // cl + "shilïi\0" // cl + "shimoliy koreya\0" // kp + "shimoliy mariana orollari\0" // mp + "shina\0" // cn + "shine\0" // cn + "shipele\0" // cy + "shpitsbergen va yan-mayen\0" // sj + "shqipëri\0" // al + "shri-lanka\0" // lk + "shtetet e bashkuara të amerikës\0" // us + "shvetsiya\0" // se + "shveytsariya\0" // ch + "shën-bartolome\0" // bl + "shën-helenë\0" // sh + "shën-kits dhe nevis\0" // kn + "shën-luçia\0" // lc + "shën-martin\0" // mf + "shën-pier dhe mikelon\0" // pm + "shën-vincent dhe grenadine\0" // vc + "shîn\0" // cn + "shîna\0" // cn + "shǔazìlân\0" // sz + "siaina\0" // cn + "siamane\0" // de + "siapani\0" // jp + "siarra leon\0" // sl + "siarra leòmhann\0" // sl + "sibraltaar\0" // gi + "sid-afrik\0" // za + "siela leone\0" // sl + "siela leoni\0" // sl + "siela liyoni\0" // sl + "sieláleyɔ́ɔn\0" // sl + "siera leone\0" // sl + "siera leoni\0" // sl + "siera leonė\0" // sl + "siera leonɛ\0" // sl + "siera-leone\0" // sl + "siera-leono\0" // sl + "sierra leona\0" // sl + "sierra leone\0" // sl + "sierra leone nutome\0" // sl + "sierra leonǝ\0" // sl + "sierra leoone\0" // sl + "sierra leɔn\0" // sl + "sierra lleona\0" // sl + "sierá-leónə\0" // sl + "sierä-leône\0" // sl + "sifurus\0" // cy + "siin\0" // cn + "siipar\0" // cy + "siipr\0" // cy + "sijera leone\0" // sl + "sili\0" // cl + "silia\0" // sy + "sililanka\0" // lk + "siliya\0" // sy + "silofakí\0" // sk + "silofení\0" // si + "silovaki\0" // sk + "silovakiya\0" // sk + "siloveni\0" // si + "siloveniya\0" // si + "silìa lûŋ\0" // sl + "silí\0" // cl + "silíláŋka\0" // lk + "silîa\0" // sy + "silōvakia\0" // sk + "silōvenia\0" // si + "simbaabuwe\0" // zw + "simbaabwe\0" // zw + "simbabve\0" // zw + "simbabvi\0" // zw + "simbabwe\0" // zw + "simbapuwé\0" // zw + "simbáabwe\0" // zw + "simipapuei\0" // zw + "sin marten\0" // sx + "sina\0" // cn + "singaboor\0" // sg + "singafur\0" // sg + "singapo\0" // sg + "singapoa\0" // sg + "singapoer\0" // sg + "singapoo\0" // sg + "singapor\0" // sg + "singapore\0" // sg + "singaporo\0" // sg + "singapour\0" // sg + "singapowa\0" // sg + "singapur\0" // sg + "singapura\0" // sg + "singapure\0" // sg + "singapuro\0" // sg + "singapuru\0" // sg + "singapurɛ\0" // sg + "singapuur\0" // sg + "singapúr\0" // sg + "singapúul\0" // sg + "singapūra\0" // sg + "singapūras\0" // sg + "singapɔ\0" // sg + "singapɔr nutome\0" // sg + "singeapòr\0" // sg + "singeapór\0" // sg + "singjapuur\0" // sg + "sinigaal\0" // sn + "sinigaha\0" // sn + "sinigal\0" // sn + "siniwajamana\0" // cn + "sinngapuur\0" // sg + "sinqapur\0" // sg + "sint barthélemy\0" // bl + "sint helena\0" // sh + "sint kitts en nevis\0" // kn + "sint lucia\0" // lc + "sint maarten\0" // sx + "sint maarten nutome\0" // sx + "sint marten\0" // sx + "sint martenas\0" // sx + "sint martin\0" // mf + "sint pierre en miquelon\0" // pm + "sint vincent en die grenadine\0" // vc + "sint-helena\0" // sh + "sint-maarten\0" // sx + "sint-marten\0" // sx + "sintmārtena\0" // sx + "sintraal-afrikaanske republyk\0" // cf + "sinɛ\0" // cn + "sipalālitā\0" // gi + "sipeini\0" // es + "sipen\0" // es + "sipeyini\0" // es + "sipraltaar\0" // gi + "sipria\0" // cy + "siprus\0" // cy + "sipuriya\0" // cy + "siputi\0" // dj + "sipəlús\0" // cy + "sira lyun\0" // sl + "siraaliyoon\0" // sl + "siralyun\0" // sl + "siri\0" // sy + "siri lanka\0" // lk + "siri lànka\0" // lk + "siria\0" // sy + "siria nutome\0" // sy + "siridhea\0" // sy + "sirie\0" // sy + "sirii\0" // sy + "sirija\0" // sy + "sirilaanka\0" // lk + "sirilanka\0" // lk + "siriláanka\0" // lk + "sirinam\0" // sr + "sirio\0" // sy + "siriranka\0" // lk + "siriya\0" // sy + "sirië\0" // sy + "siriýa\0" // sy + "sirovaakiya\0" // sk + "sirovaaniya\0" // si + "sirovakya\0" // sk + "sirovenya\0" // si + "sirra riyooni\0" // sl + "sirìà\0" // sy + "sirí\0" // sy + "sirî-lanka\0" // lk + "sirïi\0" // sy + "sishelis\0" // sc + "site bu watikaa\0" // va + "siuta mo melila\0" // ea + "sivolopāti mo sani maieni\0" // sj + "siwis\0" // ch + "siyera lewon\0" // sl + "siyera lewɔni\0" // sl + "siyeralewone\0" // sl + "siyɛ́la lɛɔ̂n\0" // sl + "sièra lèɔ̂n\0" // sl + "siŋ hɛlina\0" // sh + "siŋ kisi ɓɛ́ nevisi\0" // kn + "siŋ lusiya\0" // lc + "siŋ piiyɛ ɓɛ́ mikelɔŋ\0" // pm + "siŋ viŋsi\0" // vc + "siŋapó\0" // sg + "siŋgàkpôo\0" // sg + "sjedinjene američke države\0" // us + "sjedinjene države\0" // us + "sjerraleone\0" // sl + "sjeverna koreja\0" // kp + "sjeverna marijanska ostrva\0" // mp + "sjevernomarijanski otoci\0" // mp + "sjina\0" // cn + "sjärra lejone\0" // sl + "sllovaki\0" // sk + "slloveni\0" // si + "slofacia\0" // sk + "slofenia\0" // si + "slonokoščena obala\0" // ci + "slovaaki\0" // sk + "slovacchia\0" // sk + "slovachia\0" // sk + "slovachie\0" // sk + "slovacia\0" // sk + "slovaki\0" // sk + "slovakia\0" // sk + "slovakia nutome\0" // sk + "slovakien\0" // sk + "slovakiet\0" // sk + "slovakija\0" // sk + "slovakiya\0" // sk + "slovakkia\0" // sk + "slovakujo\0" // sk + "slovakya\0" // sk + "slovakí\0" // sk + "slovaquie\0" // sk + "slovačka\0" // sk + "slovaška\0" // sk + "sloveeni\0" // si + "sloveenia\0" // si + "sloveni\0" // si + "slovenia\0" // si + "slovenia nutome\0" // si + "slovenie\0" // si + "slovenien\0" // si + "slovenija\0" // si + "sloveniya\0" // si + "slovenië\0" // si + "slovensko\0" // sk + "slovenujo\0" // si + "slovenya\0" // si + "slovinia\0" // si + "slovinsko\0" // si + "slovákia\0" // sk + "slovénia\0" // si + "slovénie\0" // si + "slovākija\0" // sk + "slovēnija\0" // si + "slovėnija\0" // si + "slovɛní\0" // si + "slowakei\0" // sk + "slowaki\0" // sk + "slowakii\0" // sk + "slowakije\0" // sk + "slowakiýa\0" // sk + "slowakye\0" // sk + "slowakäi\0" // sk + "sloweenie\0" // si + "slowenie\0" // si + "slowenien\0" // si + "slowenii\0" // si + "slowenië\0" // si + "sloweniýa\0" // si + "slufakya\0" // sk + "slufinya\0" // si + "sluvakya\0" // sk + "sluvinya\0" // si + "slòvakìà\0" // sk + "slòvanìà\0" // si + "slóvakía\0" // sk + "slóvenía\0" // si + "slōwakei\0" // sk + "slōwenija\0" // si + "smáeyjar bandaríkjanna\0" // um + "snɣafura\0" // sg + "soatane\0" // jo + "soazilandy\0" // sz + "sodan\0" // sd + "soedan\0" // sd + "soedy\0" // se + "soisa\0" // ch + "solomon adalary\0" // sb + "solomon adaları\0" // sb + "solomon gungey\0" // sb + "solomon islands\0" // sb + "solomon orollari\0" // sb + "solomon ƒudomekpowo nutome\0" // sb + "solomonska ostrva\0" // sb + "solovakïi\0" // sk + "solovenïi\0" // si + "somaali\0" // so + "somaalia\0" // so + "somaalie\0" // so + "somaalije\0" // so + "somaariya\0" // so + "somali\0" // so + "somalia\0" // so + "somalia nutome\0" // so + "somaliab\0" // so + "somalie\0" // so + "somalii\0" // so + "somalija\0" // so + "somalis\0" // so + "somaliya\0" // so + "somalië\0" // so + "somalujo\0" // so + "somalí\0" // so + "somalïi\0" // so + "somaria\0" // so + "somija\0" // fi + "somàilia\0" // so + "somàlia\0" // so + "somália\0" // so + "somálsko\0" // so + "somālija\0" // so + "son barthélemy\0" // bl + "sonderverwaltigszona hongkong\0" // hk + "sonderverwaltigszona makau\0" // mo + "sonderverwaltigszone hongkong\0" // hk + "sonderverwaltigszone macao\0" // mo + "sonderverwaltungsregion hongkong\0" // hk + "sonderverwaltungsregion macau\0" // mo + "sontg’elena\0" // sh + "soomaaliya\0" // so + "soome\0" // fi + "sordani\0" // jo + "sorinam\0" // sr + "soudan\0" // sd + "soudan du sud\0" // ss + "south africa\0" // za + "south georgia & south sandwich islands\0" // gs + "south georgia og de sydlige sandwichøer\0" // gs + "south korea\0" // kr + "south sudan\0" // ss + "spagn\0" // es + "spagna\0" // es + "spagne\0" // es + "spain\0" // es + "spain nutome\0" // es + "spanha\0" // es + "spania\0" // es + "spanieb\0" // es + "spanien\0" // es + "spanja\0" // es + "spanje\0" // es + "spanjë\0" // es + "spanya\0" // es + "spanyol\0" // es + "spanyolország\0" // es + "spanyän\0" // es + "spayóla makȟóčhe\0" // mx + "spayólaȟče makȟóčhe\0" // es + "spezialverwaltungszon hong kong\0" // hk + "spezialverwaltungszon macau\0" // mo + "spitsbergen en jan mayen\0" // sj + "spitzbergen und jan mayen\0" // sj + "spojené arabské emiráty\0" // ae + "spojené království\0" // gb + "spojené kráľovstvo\0" // gb + "spojené státy\0" // us + "spojené štáty\0" // us + "spánia\0" // es + "spánn\0" // es + "spānija\0" // es + "spĩni\0" // es + "sra hongkong (chiny)\0" // hk + "sra makau (chiny)\0" // mo + "srbija\0" // rs + "srbsko\0" // rs + "srednjoafrička republika\0" // cf + "sri lanca\0" // lk + "sri lanka\0" // lk + "sri lanka nutome\0" // lk + "sri lankab\0" // lk + "sri-lanko\0" // lk + "sri-lankë\0" // lk + "srilanka\0" // lk + "srìlaŋkà\0" // lk + "srí lanca\0" // lk + "srí lanka\0" // lk + "srílaŋka\0" // lk + "ssaɛudiya\0" // sa + "ssaεudiyya taεrabt\0" // sa + "ssewwid\0" // se + "ssicil\0" // sc + "ssinigal\0" // sn + "ssiniɣal\0" // sn + "ssiralyun\0" // sl + "ssudan\0" // sd + "sswid\0" // se + "st barthélemy\0" // bl + "st helena\0" // sh + "st kitts & nevis\0" // kn + "st lucia\0" // lc + "st martin\0" // mf + "st pierre & miquelon\0" // pm + "st vincent & grenadines\0" // vc + "st-martin\0" // mf + "st. barthelemi\0" // bl + "st. barthelemy\0" // bl + "st. bartholomäus-insla\0" // bl + "st. barthélemy\0" // bl + "st. helena\0" // sh + "st. kitts & nevis\0" // kn + "st. kitts a nevis\0" // kn + "st. kitts an nevis\0" // kn + "st. kitts já nevis\0" // kn + "st. kitts na nevis\0" // kn + "st. kitts un nevis\0" // kn + "st. kitts und nevis\0" // kn + "st. kitts und niuwis\0" // kn + "st. kitts và nevis\0" // kn + "st. lucia\0" // lc + "st. lusia\0" // lc + "st. lutschiia\0" // lc + "st. martin\0" // mf + "st. pierr und miggelo\0" // pm + "st. pierre & miquelon\0" // pm + "st. pierre a miquelon\0" // pm + "st. pierre já miquelon\0" // pm + "st. pierre un miquelon\0" // pm + "st. pierre und miquelon\0" // pm + "st. vincent & grenadines\0" // vc + "st. vincent a grenadiny\0" // vc + "st. vincent an d’grenadinnen\0" // vc + "st. vincent já grenadines\0" // vc + "st. vincent na grenadines\0" // vc + "st. vincent og grenadinane\0" // vc + "st. vincent og grenadinene\0" // vc + "st. vincent un de grenadinen\0" // vc + "st. vincent und die grenadinen\0" // vc + "st. vincent und d’grenadine\0" // vc + "st. vincent und d’grönadiine\0" // vc + "st. vincent và grenadines\0" // vc + "st. vinsent & grenadinoyggjar\0" // vc + "stadis unids da l’america\0" // us + "stadoù-unanet\0" // us + "stadus unidos di merka\0" // us + "stany zjednoczone\0" // us + "statele unite ale americii\0" // us + "stati uniti\0" // us + "statul cetății vaticanului\0" // va + "statys unys\0" // us + "storbritannia\0" // gb + "storbritannien\0" // gb + "stranski zunanji otoki združenih držav\0" // um + "stredoafrická republika\0" // cf + "strefa euro\0" // ez + "stuorra-británnia\0" // gb + "stáit aontaithe mheiriceá\0" // us + "stâts unîts\0" // us + "stónia\0" // ee + "stóra bretlands indiahavoyggjar\0" // io + "stóra bretlands jomfrúoyggjar\0" // vg + "stórabretland\0" // gb + "středoafrická republika\0" // cf + "su\0" // us + "suafrika\0" // za + "suasilani\0" // sz + "suasiláand\0" // sz + "suazi\0" // sz + "suazilandia\0" // sz + "suazilándia\0" // sz + "suazilândia\0" // sz + "sud afriche\0" // za + "sud sudan\0" // ss + "sud-afriko\0" // za + "sud-georgio kaj sud-sandviĉinsuloj\0" // gs + "sud-koreo\0" // kr + "sud-sudano\0" // ss + "suda\0" // sd + "sudaan\0" // sd + "sudaani\0" // sd + "sudafrica\0" // za + "sudan\0" // sd + "sudan dal sid\0" // ss + "sudan del sud\0" // ss + "sudan kusini\0" // ss + "sudan n unẓul\0" // ss + "sudan nutome\0" // sd + "sudan południowy\0" // ss + "sudan selatan\0" // ss + "sudanas\0" // sd + "sudani\0" // sd + "sudani i jugut\0" // ss + "sudani ya sidi\0" // ss + "sudanni\0" // sd + "sudano\0" // sd + "sudanul de sud\0" // ss + "sudaŋ\0" // sd + "sudaŋ di sid\0" // ss + "sudàn\0" // sd + "sudàn a deas\0" // ss + "sudá\0" // sd + "sudáani\0" // sd + "sudáfrica\0" // za + "sudán\0" // sd + "sudán del sur\0" // ss + "sudán do sur\0" // ss + "sudáŋ\0" // sd + "sudão\0" // sd + "sudão do sul\0" // ss + "sudãu\0" // sd + "sudãu di sul\0" // ss + "sudäan\0" // sd + "sudäan-mbongo\0" // ss + "sudāna\0" // sd + "sudɛŋ\0" // sd + "suecia\0" // se + "suedi\0" // se + "suedia\0" // se + "suedɨ̀n\0" // se + "suezàlân\0" // ch + "suid afrikab\0" // za + "suid-afrika\0" // za + "suid-georgië en die suidelike sandwicheilande\0" // gs + "suid-korea\0" // kr + "suid-soedan\0" // ss + "suis\0" // ch + "suisa\0" // ch + "suisilani\0" // ch + "suisse\0" // ch + "suitza\0" // ch + "suiza\0" // ch + "sulaimaãna tiŋŋɛ\0" // sb + "suliname\0" // sr + "sulinamu\0" // sr + "sulináam\0" // sr + "sulobakiya\0" // sk + "sulobeniya\0" // si + "sulovakiya\0" // sk + "suloveninya\0" // si + "sulováakia\0" // sk + "sulovénia\0" // si + "sulènamè\0" // sr + "sumália\0" // so + "sundân\0" // sd + "suomi\0" // fi + "suomija\0" // fi + "suomâ\0" // fi + "suopma\0" // fi + "suranam\0" // sr + "suri laŋka\0" // lk + "suriah\0" // sy + "surinaam\0" // sr + "surinaamu\0" // sr + "surinam\0" // sr + "surinama\0" // sr + "surinamas\0" // sr + "surinambe\0" // sr + "suriname\0" // sr + "suriname nutome\0" // sr + "surinami\0" // sr + "surinamo\0" // sr + "surinamska\0" // sr + "surinamu\0" // sr + "surinamɛ\0" // sr + "surináamu\0" // sr + "surinám\0" // sr + "surinäm\0" // sr + "surināms\0" // sr + "suriya\0" // sy + "suriye\0" // sy + "surya\0" // sy + "suráfrica\0" // za + "susoudan\0" // ss + "sutáaŋ\0" // sd + "suudaan\0" // sd + "suudaŋ\0" // sd + "suudi arabistan\0" // sa + "suurbritannia\0" // gb + "suuria\0" // sy + "suuriya\0" // sy + "suwasilànd\0" // sz + "suwazi lumaã\0" // sz + "suwazilan\0" // sz + "suwazilandi\0" // sz + "suwed\0" // se + "suwedan\0" // se + "suwedi\0" // se + "suweed\0" // se + "suweza lumaã\0" // ch + "suwidɛŋ\0" // se + "suwiis\0" // ch + "suwisi\0" // ch + "suwizalan\0" // ch + "suwíis\0" // ch + "suwɛdi\0" // se + "suwɛ́d\0" // se + "suècia\0" // se + "suède\0" // se + "suécia\0" // se + "suésia\0" // se + "suêde\0" // se + "suís\0" // ch + "suíza\0" // ch + "suíça\0" // ch + "suïssa\0" // ch + "suður-afríka\0" // za + "suður-georgía og suður-sandvíkureyjar\0" // gs + "suður-kórea\0" // kr + "suður-súdan\0" // ss + "suðurafrika\0" // za + "suðurgeorgia og suðursandwichoyggjar\0" // gs + "suðurkorea\0" // kr + "suðurskautslandið\0" // aq + "suðursudan\0" // ss + "suēteni\0" // se + "suɛd\0" // se + "suɛudiya taɛrabt\0" // sa + "suɛ́t\0" // se + "sv.helēnas sala\0" // sh + "svaasimaa\0" // sz + "svalbard\0" // sj + "svalbard & jan mayen\0" // sj + "svalbard a jan mayen\0" // sj + "svalbard aamma jan mayen\0" // sj + "svalbard agus jan mayen\0" // sj + "svalbard dan jan mayen\0" // sj + "svalbard e jan mayen\0" // sj + "svalbard e jan-majen\0" // sj + "svalbard en jan mayen\0" // sj + "svalbard et jan mayen\0" // sj + "svalbard eta jan mayen uharteak\0" // sj + "svalbard i jan maien\0" // sj + "svalbard i jan majen\0" // sj + "svalbard i jan mayen\0" // sj + "svalbard in jan mayen\0" // sj + "svalbard ja jan mayen\0" // sj + "svalbard kple yan mayen nutome\0" // sj + "svalbard mpé jan mayen\0" // sj + "svalbard na jan mayen\0" // sj + "svalbard och jan mayen\0" // sj + "svalbard og jan mayen\0" // sj + "svalbard u jan mayen\0" // sj + "svalbard un jan mayen\0" // sj + "svalbard und jaan määie\0" // sj + "svalbard und jan mayen\0" // sj + "svalbard ve jan mayen\0" // sj + "svalbard và jan mayen\0" // sj + "svalbard və yan-mayen\0" // sj + "svalbard y jan mayen\0" // sj + "svalbard ya islla jan mayen\0" // sj + "svalbard és jan mayen\0" // sj + "svalbard și jan mayen\0" // sj + "svalbardas ir janas majenas\0" // sj + "svalbardo kaj jan-majen-insulo\0" // sj + "svalbarði og jan mayen\0" // sj + "svalbárda ja jan mayen\0" // sj + "svalbāra un jana majena sala\0" // sj + "svartfjallaland\0" // me + "svasiland\0" // sz + "svasíland\0" // sz + "svatá helena\0" // sh + "svatá lucie\0" // lc + "svatý bartoloměj\0" // bl + "svatý kryštof a nevis\0" // kn + "svatý martin (francie)\0" // mf + "svatý martin (nizozemsko)\0" // sx + "svatý tomáš a princův ostrov\0" // st + "svatý vincenc a grenadiny\0" // vc + "svazi\0" // sz + "svazieana\0" // sz + "svazijsko\0" // sz + "svaziland\0" // sz + "svazilandas\0" // sz + "svazilando\0" // sz + "svazilandë\0" // sz + "svazilend\0" // sz + "svazilenda\0" // sz + "sveden\0" // se + "svedujo\0" // se + "sveis\0" // ch + "sveits\0" // ch + "sveitsi\0" // ch + "sverige\0" // se + "sveta helena\0" // sh + "sveta jelena\0" // sh + "sveta lucija\0" // lc + "sveti bartolomej\0" // bl + "sveti kits i nevis\0" // kn + "sveti kristofor i nevis\0" // kn + "sveti martin\0" // mf + "sveti martin (francuska)\0" // mf + "sveti martin (holandija)\0" // sx + "sveti petar i mikelon\0" // pm + "sveti pjer i mikelon\0" // pm + "sveti toma i princip\0" // st + "sveti vincent i grenadini\0" // vc + "sveti vinsent i grenadin\0" // vc + "sveti vinsent i grenadini\0" // vc + "svezia\0" // se + "svezie\0" // se + "sviss\0" // ch + "svisujo\0" // ch + "svizra\0" // ch + "svizzera\0" // ch + "svuizare\0" // ch + "svájc\0" // ch + "svätá helena\0" // sh + "svätá lucia\0" // lc + "svätý bartolomej\0" // bl + "svätý krištof a nevis\0" // kn + "svätý martin (fr.)\0" // mf + "svätý martin (hol.)\0" // sx + "svätý tomáš a princov ostrov\0" // st + "svätý vincent a grenadíny\0" // vc + "svédország\0" // se + "svíþjóð\0" // se + "svøríki\0" // se + "swaasilannda\0" // sz + "swalbaar ak jan mayen\0" // sj + "swasiland\0" // sz + "swasiska\0" // sz + "swazieennâm\0" // sz + "swazilan\0" // sz + "swaziland\0" // sz + "swaziland nutome\0" // sz + "swazilanda\0" // sz + "swazilandi\0" // sz + "swazilandia\0" // sz + "swazilanḍa\0" // sz + "swazilend\0" // sz + "swazilund\0" // sz + "swazilàndia\0" // sz + "swazilándə\0" // sz + "swazilân\0" // sz + "swazimaa\0" // sz + "swazirandi\0" // sz + "swaziska\0" // sz + "swdan\0" // sd + "swede\0" // se + "swedeb\0" // se + "sweden\0" // se + "sweden nutome\0" // se + "swedia\0" // se + "swedɛ̀n\0" // se + "sweede\0" // se + "swetzaland\0" // ch + "swid\0" // se + "swideni\0" // se + "swiez\0" // ch + "swiiserlaand\0" // ch + "swis\0" // ch + "swise\0" // ch + "swisi\0" // ch + "swisra\0" // ch + "swiss\0" // ch + "swisu\0" // ch + "swisɛ\0" // ch + "switizirandi\0" // ch + "switserland\0" // ch + "switserlân\0" // ch + "switzerland\0" // ch + "switzerland nutome\0" // ch + "switzerlandi\0" // ch + "switzɛrland\0" // ch + "swizilandi\0" // ch + "swàzìlând\0" // sz + "swäzïlânde\0" // sz + "swédɛ\0" // se + "swís\0" // ch + "swɛdǝ\0" // se + "syad\0" // td + "sydafrika\0" // za + "sydgeorgien och sydsandwichöarna\0" // gs + "sydkorea\0" // kr + "sydsudan\0" // ss + "syerra-leone\0" // sl + "syili\0" // cl + "syipriya\0" // cy + "syiŋ\0" // cn + "sypra\0" // cy + "syprus\0" // cy + "syria\0" // sy + "syriab\0" // sy + "syrie\0" // sy + "syrien\0" // sy + "syriska\0" // sy + "syrië\0" // sy + "syyria\0" // sy + "syɛraleon\0" // sl + "szamoa\0" // ws + "szaúd-arábia\0" // sa + "szenegál\0" // sn + "szent ilona\0" // sh + "szerbia\0" // rs + "szingapúr\0" // sg + "szlovákia\0" // sk + "szlovénia\0" // si + "szomália\0" // so + "szudán\0" // sd + "szváziföld\0" // sz + "szwajcaria\0" // ch + "szwecja\0" // se + "szíria\0" // sy + "sàhara occidental\0" // eh + "sàimbia\0" // zm + "sàlvàdɔ̂r\0" // sv + "sàmbi\0" // zm + "sàmowà\0" // ws + "sàmoà\0" // ws + "sàn màlenù\0" // sm + "sào tòme ɓɔ prɛ̀ŋcipè\0" // st + "sàppoŋ\0" // jp + "sàudi àrabìà\0" // sa + "sáat\0" // td + "sádi-arabía\0" // sa + "sáhara occidental\0" // eh + "sámbia\0" // zm + "sámua u amelíka\0" // as + "sámóánì ti orílɛ́ède àméríkà\0" // as + "sámóánì ti orílẹ́ède àméríkà\0" // as + "sántu barthélemy\0" // bl + "sántu eleni\0" // sh + "sántu krístofe mpé nevɛ̀s\0" // kn + "sántu lisi\0" // lc + "sántu marinɛ\0" // sm + "sántu martin\0" // mf + "sántu pététo mpé mikelɔ\0" // pm + "sántu vesá mpé gelenadinɛ\0" // vc + "sáwó tomé e pelensípe\0" // st + "sáwɔŋ tɔmɛ́ nɛ́ pɛlínsipɛ\0" // st + "sáḥara occidental\0" // eh + "sâô tömê na prinsîpe\0" // st + "são bartolomeu\0" // bl + "são cristovão e nevis\0" // kn + "são cristóvão e neves\0" // kn + "são cristóvão e névis\0" // kn + "são marinho\0" // sm + "são martinho\0" // mf + "são martinho (sint maarten)\0" // sx + "são pedro e miquelão\0" // pm + "são tome-ek-prínsip\0" // st + "são tomé & príncipe\0" // st + "são tomé a príncipe\0" // st + "são tomé aamma príncipe\0" // st + "são tomé agus príncipe\0" // st + "são tomé and príncipe\0" // st + "são tomé e principe\0" // st + "são tomé e príncipe\0" // st + "são tomé en príncipe\0" // st + "são tomé gi príncipe\0" // st + "são tomé ha príncipe\0" // st + "são tomé i príncipe\0" // st + "são tomé ja príncipe\0" // st + "são tomé já príncipe\0" // st + "são tomé kple príncipe nutome\0" // st + "são tomé na príncipe\0" // st + "são tomé och príncipe\0" // st + "são tomé og príncipe\0" // st + "são tomé u príncipe\0" // st + "são tomé un príncipe\0" // st + "são tomé und príncipe\0" // st + "são tomé ve príncipe\0" // st + "são tomé và príncipe\0" // st + "são tomé és príncipe\0" // st + "são tomé-et-príncipe\0" // st + "são vicente e granadinas\0" // vc + "sãu bartolomeu\0" // bl + "sãu bisenti i granadinas\0" // vc + "sãu kristovãu i nevis\0" // kn + "sãu martinhu di fransa\0" // mf + "sãu martinhu di olanda\0" // sx + "sãu tume i prínsipi\0" // st + "särbie\0" // rs + "särbije\0" // rs + "sènègâl\0" // sn + "sèrbia\0" // rs + "sèsɛ̂l\0" // sc + "séc\0" // cz + "sénégal\0" // sn + "sérstjórnarsvæðið hong kong\0" // hk + "sérstjórnarsvæðið makaó\0" // mo + "sérvia\0" // rs + "sên-krïstôfo-na-nevîsi\0" // kn + "sên-marëen\0" // sm + "sên-pyêre na mikelöon\0" // pm + "sên-vensäan na âgrenadîni\0" // vc + "sênt-helêna\0" // sh + "sênt-lisïi\0" // lc + "sêse tî anglëe na ngûyämä tî ênnde\0" // io + "sêse tî palestîni\0" // ps + "sëyshêle\0" // sc + "sìlând yɔ̀ndɔ\0" // nz + "sìŋgàpûr\0" // sg + "síerra leóne\0" // sl + "síine\0" // cn + "síingapoo\0" // sg + "síle\0" // cl + "síli\0" // cl + "sílpalatáal\0" // gi + "síp\0" // cy + "síplɛ\0" // cy + "síputí\0" // dj + "sípɛlɛ\0" // cy + "síria\0" // sy + "síyaŋ\0" // sy + "sîpri\0" // cy + "sïngäpûru\0" // sg + "sòmalìa\0" // so + "sòmalìà\0" // so + "sómalía\0" // so + "söd-jeorjie un de södlijje botteramms-enselle\0" // gs + "söd-koreja\0" // kr + "södsudahn\0" // ss + "söödafrika\0" // za + "söödkorea\0" // kr + "sør-afrika\0" // za + "sør-georgia og sør-sandwichøyene\0" // gs + "sør-korea\0" // kr + "sør-sudan\0" // ss + "sùdân\0" // sd + "sùdâŋ\0" // sd + "sùrinâm\0" // sr + "sùwîs\0" // ch + "súdan\0" // sd + "súdán\0" // sd + "súrínam\0" // sr + "sûd-afrika\0" // za + "sûd-georgia en sûdlike sandwicheilannen\0" // gs + "sûd-korea\0" // kr + "sûd-soedan\0" // ss + "sûîsi\0" // ch + "südafrika\0" // za + "südgeorgie und d’südliče senwičinslä\0" // gs + "südgeorgien an déi südlech sandwichinselen\0" // gs + "südgeorgien und die südlichen sandwichinseln\0" // gs + "südkorea\0" // kr + "südsudan\0" // ss + "sünnerverwaltensrebeed macao\0" // mo + "sünnerverwaltensrebeet hongkong\0" // hk + "sürie\0" // sy + "sürije\0" // sy + "sürinamm\0" // sr + "süüdafrika\0" // za + "süüdgeorgie und d’süüdlichi sändwitsch-insle\0" // gs + "süüdgeorgien un de südlichen sandwich-eilannen\0" // gs + "süüria\0" // sy + "süürie\0" // sy + "sýerra-leone\0" // sl + "sýria\0" // sy + "sýrie\0" // sy + "sýrland\0" // sy + "sā helena\0" // sh + "sā kitisi mo nevisi\0" // kn + "sā lūsia\0" // lc + "sā malino\0" // sm + "sā mātini (fakafalanisē)\0" // mf + "sā mātini (fakahōlani)\0" // sx + "sā patēlemi\0" // bl + "sā piea mo mikeloni\0" // pm + "sā viniseni mo kulenatini\0" // vc + "sāti\0" // td + "sēkia\0" // cz + "sēpia\0" // rs + "sīlangikā\0" // lk + "sīlia\0" // sy + "sīrija\0" // sy + "sırbistan\0" // rs + "słonowinowy pobrjóh\0" // ci + "słonowokósćowy pśibrjog\0" // ci + "słowacja\0" // sk + "słowakska\0" // sk + "słowenia\0" // si + "słowjenska\0" // si + "słowjeńska\0" // si + "sōmalia\0" // so + "sōmija\0" // fi + "sūtani fakatonga\0" // ss + "sūteni\0" // sd + "sǝr amerika ma laŋne\0" // vi + "sǝr anglofoŋ\0" // gb + "sǝr arabiya\0" // sa + "sǝr arabiya ma taini\0" // ae + "sǝr dominik ma lii\0" // do + "sǝr egypt\0" // eg + "sǝr eritre\0" // er + "sǝr fiji\0" // fj + "sǝr finland\0" // fi + "sǝr gibraltar\0" // gi + "sǝr grek\0" // gr + "sǝr groenland\0" // gl + "sǝr guine\0" // gq + "sǝr guyana ma franssǝ\0" // gf + "sǝr gwadeloupǝ\0" // gp + "sǝr haiti\0" // ht + "sǝr helena\0" // sh + "sǝr honduras\0" // hn + "sǝr indǝ\0" // in + "sǝr ireland\0" // ie + "sǝr island\0" // is + "sǝr israel\0" // il + "sǝr kenya\0" // ke + "sǝr kiribati\0" // ki + "sǝr kongo ma dii ne zair\0" // cd + "sǝr kore fah sǝŋ\0" // kp + "sǝr kore nekǝsǝŋ\0" // kr + "sǝr kowait\0" // kw + "sǝr kristof ne nievǝ\0" // kn + "sǝr lanka\0" // lk + "sǝr laos\0" // la + "sǝr lesotho\0" // ls + "sǝr lucia\0" // lc + "sǝr luxemburg\0" // lu + "sǝr ma kasǝŋ\0" // nl + "sǝr malawi\0" // mw + "sǝr mali\0" // ml + "sǝr malouniya ma laŋne\0" // fk + "sǝr malta\0" // mt + "sǝr maria ma laŋne\0" // mp + "sǝr marino\0" // sm + "sǝr marshall ma laŋne\0" // mh + "sǝr mauricǝ\0" // mu + "sǝr montserrat\0" // ms + "sǝr myanmar\0" // mm + "sǝr nauru\0" // nr + "sǝr nepal\0" // np + "sǝr niger\0" // ne + "sǝr palau\0" // pw + "sǝr palestiniya\0" // ps + "sǝr panama\0" // pa + "sǝr polynesiya ma franssǝ\0" // pf + "sǝr portugal\0" // pt + "sǝr pǝtar ne mikǝlon\0" // pm + "sǝr reunion\0" // re + "sǝr salomon ma laŋne\0" // sb + "sǝr salvador\0" // sv + "sǝr samoa\0" // ws + "sǝr sued\0" // se + "sǝr surinam\0" // sr + "sǝr swaziland\0" // sz + "sǝr swiss\0" // ch + "sǝr syek\0" // cz + "sǝr togo\0" // tg + "sǝr tokelau\0" // tk + "sǝr tonga\0" // to + "sǝr tuvalu\0" // tv + "sǝr vanuatu\0" // vu + "sǝr venezuela\0" // ve + "sǝr vietnam\0" // vn + "sǝr vinceŋ ne grenadiŋ\0" // vc + "sɔlsíi\0" // ge + "sɔltaní\0" // jo + "sɔmalî\0" // so + "səlovakí\0" // sk + "səlovénia\0" // si + "səri laŋká\0" // lk + "səudiyyə ərəbistanı\0" // sa + "sɛchɛ̀lɛ̀s\0" // sc + "sɛcɛl\0" // sc + "sɛlɛbî\0" // rs + "sɛngapuri\0" // sg + "sɛnkrǝstɔ́f ri nyɛ́vǝ\0" // kn + "sɛnmarǝn\0" // sm + "sɛnpyɛr ri mikɛlɔŋ\0" // pm + "sɛnta afɨlekan lèkpobèlè\0" // cf + "sɛntlísí\0" // lc + "sɛntɛ́len\0" // sh + "sɛnvǝnsǝŋ ri grɛnadín\0" // vc + "sɛnɛgal\0" // sn + "sɛnɛgâl\0" // sn + "sɛshɛlɛ\0" // sc + "sɛsɛ́l\0" // sc + "sɛ̀n kpiyɛ̀ à mikelɔŋ\0" // pm + "sɛ̀n kî à nevì\0" // kn + "sɛ̀n lushìa\0" // lc + "sɛ̀n vinsɨ̀n à gɨlenadi ù tē\0" // vc + "sɛ̀n èlenà\0" // sh + "sɛ̀nɛ̀gâa\0" // sn + "sɛ́ŋ fɛŋsáŋ elekelenatíin\0" // vc + "sɛ́ŋkilistɔ́f eniɛ́f\0" // kn + "sɛ́ŋpiɛ́l e mikelɔ́ŋ\0" // pm + "sɛ́ŋtɛ́ elɛ́ɛnɛ\0" // sh + "sɛ́ŋtɛ́lusí\0" // lc + "sɨ̀kpɛ̂n\0" // es + "sɨ̀le laŋkà\0" // lk + "sɨ̀lòvɨkɨ̀a\0" // sk + "sɨ̀lòvɨnyìa\0" // si + "sẅísɛ\0" // ch + "taani\0" // dk + "taansanía\0" // tz + "taayiland\0" // th + "taayiwan\0" // tw + "taazikiistäan\0" // tj + "taažikistan\0" // tj + "taažâ\0" // no + "tacikistan\0" // tj + "tadhania\0" // tz + "tadikistani\0" // tj + "tadjakistan\0" // tj + "tadjikistan\0" // tj + "tadjikistaŋ\0" // tj + "tadjikistãu\0" // tj + "tadjiquistão\0" // tj + "tadschikischtan\0" // tj + "tadschikistahn\0" // tj + "tadschikistan\0" // tj + "tadsjikistan\0" // tj + "tadzikisətáŋ\0" // tj + "tadzjikistan\0" // tj + "tadšikistan\0" // tj + "tadźikistan\0" // tj + "tadżykistan\0" // tj + "tadžikija\0" // tj + "tadžikistan\0" // tj + "tadžikistāna\0" // tj + "taeland\0" // th + "taelàn\0" // th + "taewàn\0" // tw + "tafrikt tunẓul\0" // za + "tafriqt wadda\0" // za + "tag.yed\0" // gb + "tagduda n afrika wammas\0" // cf + "tagduda n čik\0" // cz + "tagduda n ḍuminikan\0" // do + "tagduda tadimuqraṭit n kungu\0" // cd + "tagduda tamegdayt n kungu\0" // cd + "tagdudant tadimukratit n kongo\0" // cd + "tagdudant taduminikt\0" // do + "tagdudant tanammast n ifriqya\0" // cf + "tagdudant tatcikit\0" // cz + "tagelda taddukelt\0" // gb + "tagelda yedduklen\0" // gb + "tagikistan\0" // tj + "tagldit imunn\0" // gb + "tai\0" // th + "tai lumaã\0" // th + "taidh-bhàn\0" // tw + "taidigeastàn\0" // tj + "tailan\0" // th + "tailand\0" // th + "tailanda\0" // th + "tailandas\0" // th + "tailandi\0" // th + "tailandia\0" // th + "tailandie\0" // th + "tailandɛ\0" // th + "tailani\0" // th + "tailàndia\0" // th + "tailán\0" // th + "tailándia\0" // th + "tailânde\0" // th + "tailândia\0" // th + "taioana\0" // tw + "tairandi\0" // th + "taiuan\0" // tw + "taiuani\0" // tw + "taivan\0" // tw + "taivanas\0" // tw + "taivāna\0" // tw + "taiwan\0" // tw + "taiwan nutome\0" // tw + "taiwani\0" // tw + "taiwanin\0" // tw + "taiwaŋ\0" // tw + "taiwáani\0" // tw + "taiwán\0" // tw + "taiwāns\0" // tw + "taizeme\0" // th + "tajikisitaani\0" // tj + "tajikisitani\0" // tj + "tajikisitaŋ\0" // tj + "tajikisitáani\0" // tj + "tajikistaan\0" // tj + "tajikistan\0" // tj + "tajikistan nutome\0" // tj + "tajikistani\0" // tj + "tajikistaŋ\0" // tj + "tajikithtani\0" // tj + "tajiquistão\0" // tj + "tajland\0" // th + "tajlandia\0" // th + "tajlando\0" // th + "tajlandë\0" // th + "tajska\0" // th + "tajvan\0" // tw + "tajvano\0" // tw + "tajwan\0" // tw + "takad an euro\0" // ez + "takelau\0" // tk + "takimenesitaani\0" // tm + "takĩ\0" // tr + "taliansko\0" // it + "talyaani\0" // it + "tamnaḍt tanglizit n ugaru ahindi\0" // io + "tamnaṭ n turuft\0" // ez + "tamnaṭ taqbuṛt tacinwat n hung kung\0" // hk + "tamnaṭ tudbilt tuzzigt tacenwit n makaw\0" // mo + "tanemálk\0" // dk + "tanga\0" // to + "tanjung verde\0" // cv + "tansaania\0" // tz + "tansaaniya\0" // tz + "tansania\0" // tz + "tansanii\0" // tz + "tansaniia\0" // tz + "tansanija\0" // tz + "tansaniya\0" // tz + "tansanía\0" // tz + "tanska\0" // dk + "tanzaani\0" // tz + "tanzani\0" // tz + "tanzania\0" // tz + "tanzania nutome\0" // tz + "tanzaniab\0" // tz + "tanzanie\0" // tz + "tanzanija\0" // tz + "tanzanio\0" // tz + "tanzaniya\0" // tz + "tanzanië\0" // tz + "tanzaniýa\0" // tz + "tanzanya\0" // tz + "tanzaní\0" // tz + "tanzanî\0" // tz + "tanzanïi\0" // tz + "tanzània\0" // tz + "tanzánia\0" // tz + "tanzánía\0" // tz + "tanzânia\0" // tz + "tanzānija\0" // tz + "tashqi okeaniya\0" // qo + "tasikistáaŋ\0" // tj + "tasikitani\0" // tj + "tave-korea\0" // kp + "tave-marianeh\0" // mp + "taxhikistan\0" // tj + "taxiquistán\0" // tj + "tayikistán\0" // tj + "tayilanda\0" // th + "tayilandi\0" // th + "tayiláand\0" // th + "tayirandi\0" // th + "tayiwaani\0" // tw + "tayiwani\0" // tw + "tayiwáan\0" // tw + "taylaand\0" // th + "tayland\0" // th + "taylannda\0" // th + "taylànd\0" // th + "tayvan\0" // tw + "taywaan\0" // tw + "taywan\0" // tw + "tazikisita\0" // tj + "tazikisitá\0" // tj + "tazikistan\0" // tj + "taíland\0" // th + "taívan\0" // tw + "taïland\0" // th + "taïwan\0" // tw + "taýland\0" // th + "taýwan\0" // tw + "taĝikujo\0" // tj + "taŋsani\0" // tz + "taŋsaní\0" // tz + "taŋzaninya\0" // tz + "taŋəzaní\0" // tz + "tažikistan\0" // tj + "taɣazut n uszer\0" // ci + "tcad\0" // td + "tchad\0" // td + "tchaj-wan\0" // tw + "tchekia\0" // cz + "tchéquia\0" // cz + "tchéquie\0" // cz + "teekì\0" // tr + "teer ostraal gu fraas\0" // tf + "tekɨmènèsɨ̀tân\0" // tm + "tele ɓɔ́ timɔɔ̃\0" // tl + "temokraatischi republik kongo\0" // cd + "tenimaʻake\0" // dk + "tenisānia\0" // tz + "teritori britanic dal ocean indian\0" // io + "teritoriile australe și antarctice franceze\0" // tf + "teritoriile palestiniene\0" // ps + "teritoris meridionâi francês\0" // tf + "teritoris palestinês\0" // ps + "teritoriul britanic din oceanul indian\0" // io + "terituwaaru brëtaañ ci oseyaa enjeŋ\0" // io + "teritwar britanik losean indien\0" // io + "teritwar palestinn\0" // ps + "terks we kaýkos adalary\0" // tc + "terkso ir kaikoso salos\0" // tc + "terras franses di sul\0" // tf + "terre australi francesi\0" // tf + "terres australes et antarctiques françaises\0" // tf + "terres australes françaises\0" // tf + "territoire britannique de l’océan indien\0" // io + "territoires palestiniens\0" // ps + "territoret jugore franceze\0" // tf + "territoret palestineze\0" // ps + "territori britanik i oqeanit indian\0" // io + "territori britannic en l’ocean indic\0" // io + "territori britànic de l’oceà índic\0" // io + "territori palestinais\0" // ps + "territori palestinesi\0" // ps + "territorio britannico dell’oceano indiano\0" // io + "territorio británico del océano índico\0" // io + "territorio británico do océano índico\0" // io + "territorio palestino\0" // ps + "territorios afastados de oceanía\0" // qo + "territorios alejados de oceanía\0" // qo + "territorios austrais franceses\0" // tf + "territorios australes franceses\0" // tf + "territorios palestinos\0" // ps + "territoris allunyats d’oceania\0" // qo + "territoris australs francesos\0" // tf + "territoris franzos meridiunals\0" // tf + "territoris palestins\0" // ps + "territoriu británicu del océanu índicu\0" // io + "territorju brittaniku tal-oċean indjan\0" // io + "território britânico do oceano índico\0" // io + "território da palestina\0" // ps + "territórios franceses do sul\0" // tf + "territórios palestinianos\0" // ps + "territórios palestinos\0" // ps + "terytoria palestyńskie\0" // ps + "thaieana\0" // th + "thaieennâm\0" // th + "thaiföld\0" // th + "thailand\0" // th + "thailand nutome\0" // th + "thailanda\0" // th + "thailandi\0" // th + "thailandia\0" // th + "thailandska\0" // th + "thailandy\0" // th + "thailân\0" // th + "thaimaa\0" // th + "thajsko\0" // th + "thamarino\0" // sm + "thamoa\0" // ws + "thamoa ya marekani\0" // as + "thantahelena\0" // sh + "thantakitdhi na nevith\0" // kn + "thantaluthia\0" // lc + "thantapieri na mikeloni\0" // pm + "thantavithenti na grenadini\0" // vc + "thao tome na principe\0" // st + "thaudi\0" // sa + "thayilandi\0" // th + "thayiwani\0" // tw + "thayland\0" // th + "thaïlande\0" // th + "thaĩlandi\0" // th + "thekhi\0" // tr + "thenegali\0" // sn + "theuta e melila\0" // ea + "thiera leoni\0" // sl + "thingapoo\0" // sg + "thiria\0" // sy + "thirilanka\0" // lk + "thlovenia\0" // si + "thogo\0" // tg + "thokelawu\0" // tk + "tholvakia\0" // sk + "thomalia\0" // so + "thonga\0" // to + "thudani\0" // sd + "thurinamu\0" // sr + "thuvalu\0" // tv + "thành vatican\0" // va + "thái lan\0" // th + "thổ nhĩ kỳ\0" // tr + "thụy sĩ\0" // ch + "thụy điển\0" // se + "tieko kāsia\0" // dg + "tierkei\0" // tr + "tierres australes franceses\0" // tf + "tigduda n tefriqt talemmast\0" // cf + "tigduda taduminikit\0" // do + "tigduda tagdudant n kungu\0" // cd + "tigeldunin yedduklen taɛrabin\0" // ae + "tigzirin (virgin) tibṛiṭaniyin\0" // vg + "tigzirin heard akked mcdonald\0" // hm + "tigzirin ibeɛden n marikan\0" // um + "tigzirin n aland\0" // ax + "tigzirin n buvet\0" // bv + "tigzirin n falkland\0" // fk + "tigzirin n falkland (islas malvinas)\0" // fk + "tigzirin n faṛwi\0" // fo + "tigzirin n iɣf uzegzaw\0" // cv + "tigzirin n jyuṛjya n unzul akked sandwič n unẓul\0" // gs + "tigzirin n kabbirdi\0" // cv + "tigzirin n kamyan\0" // ky + "tigzirin n kayman\0" // ky + "tigzirin n krsitmas\0" // cx + "tigzirin n kuk\0" // ck + "tigzirin n kukus\0" // cc + "tigzirin n malawi\0" // fk + "tigzirin n marcal\0" // mh + "tigzirin n maryan n iẓẓlmḍ\0" // mp + "tigzirin n maryan ufella\0" // mp + "tigzirin n maryana tugafat\0" // mp + "tigzirin n nurfulk\0" // nf + "tigzirin n saluman\0" // sb + "tigzirin n salumun\0" // sb + "tigzirin n sulumun\0" // sb + "tigzirin n turkya d kayk\0" // tc + "tigzirin n virjin n iwunak yedduklen\0" // vi + "tigzirin n yixef azegzaw\0" // cv + "tigzirin tikanaṛiyin\0" // ic + "tigzirin timgad n iwunak munnin\0" // vi + "tigzirin timgad n nngliz\0" // vg + "tigzirin tinawfukin\0" // nf + "tigzirin tiverjiniyin tigliziyin\0" // vg + "tigzirin turkiyyin d tikaykusin\0" // tc + "tigzirt n aṣunsyun\0" // ac + "tigzirt n klipirṭun\0" // cp + "tigzirt n man\0" // im + "tigzirt nurfulk\0" // nf + "tikɛménisitá\0" // tm + "tiliki\0" // tr + "tilinidad na tobago\0" // tt + "tilinidadi ni tobago\0" // tt + "tilinitati mo topako\0" // tt + "tilinitáat na tupákɔ\0" // tt + "timlilit\0" // re + "timnaḍin ibeɛden n tusyanit\0" // qo + "timoa hahake\0" // tl + "timog korea\0" // kr + "timog sudan\0" // ss + "timoli ya kunena\0" // tl + "timoli ya mashaliki\0" // tl + "timoor fuɗnaange\0" // tl + "timoor hawsa\0" // tl + "timor anǝ á ɛst\0" // tl + "timor ar reter\0" // tl + "timor atsinanana\0" // tl + "timor da l’ost\0" // tl + "timor est\0" // tl + "timor este\0" // tl + "timor kangilliit\0" // tl + "timor leste\0" // tl + "timor lesti\0" // tl + "timor oriantal\0" // tl + "timor oriental\0" // tl + "timor orientâl\0" // tl + "timor ta gabas\0" // tl + "timor tal-lvant\0" // tl + "timor timur\0" // tl + "timor wschodni\0" // tl + "timor ya mashariki\0" // tl + "timor ya monyɛlɛ\0" // tl + "timor-leste\0" // tl + "timor-leste (aust-timor)\0" // tl + "timor-leste (istočni timor)\0" // tl + "timor-leste nutome\0" // tl + "timor-oriental\0" // tl + "timori lindor\0" // tl + "timori ya isti\0" // tl + "timori ya mashariki\0" // tl + "timoriya\0" // tl + "timorka bari\0" // tl + "timoru wa diboku\0" // tl + "timoru y’iburasirazuba\0" // tl + "timorul de est\0" // tl + "timorɛ ya moniɛlɛ\0" // tl + "timowa\0" // tl + "timur n lqblt\0" // tl + "timur tagmuṭ\0" // tl + "timur-n-usammar\0" // tl + "timura n umalu tifṛansisiyin\0" // tf + "timura-yessakesren\0" // nl + "timóori yi itʉʉmba\0" // tl + "timôr\0" // tl + "timôro tî tö\0" // tl + "timɔ boka\0" // tl + "timɔr tsindikēh\0" // tl + "timɔ́ɔl u nipálɛ́n\0" // tl + "tinidade ne tobago\0" // tt + "tinidadɛ mpé tobago\0" // tt + "tinisi\0" // tn + "tinizi\0" // tn + "tiongkok\0" // cn + "tirchia\0" // tr + "tiriad breizhveurat meurvor indez\0" // io + "tiriadoù palestina\0" // ps + "tirinidad da tobago\0" // tt + "tirinidadi na tobago\0" // tt + "tirinite ak tobago\0" // tt + "tiriníida ya tobáago\0" // tt + "tiriogaeth brydeinig cefnfor india\0" // io + "tiriogaethau palesteinaidd\0" // ps + "tirki\0" // tr + "tirkmenistaŋ\0" // tm + "tirkmɛnistaŋ\0" // tm + "tirkí\0" // tr + "tirnidaad e tobaago\0" // tt + "tiroedd deheuol ac antarctig ffrainc\0" // tf + "titina afrika repɔblik nutome\0" // cf + "titšland\0" // de + "tjeckien\0" // cz + "tjekkia\0" // cz + "tjekkiet\0" // cz + "tl\0" // tl + "tlinidad na tobago\0" // tt + "toake\0" // tr + "togas\0" // tg + "togo\0" // tg + "togo nutome\0" // tg + "togob\0" // tg + "togolo\0" // tg + "togoo\0" // tg + "togu\0" // tg + "togó\0" // tg + "togö\0" // tg + "tojikiston\0" // tj + "tokelaaw\0" // tk + "tokelao\0" // tk + "tokelau\0" // tk + "tokelau nutome\0" // tk + "tokelawu\0" // tk + "tokelo\0" // tk + "tokeláau\0" // tk + "tokeláu\0" // tk + "tokeló\0" // tk + "tokerawu\0" // tk + "toko\0" // tg + "tokoloo\0" // tk + "tokélaou\0" // tk + "tokó\0" // tg + "tokǝlao\0" // tk + "tominica\0" // dm + "tominika\0" // dm + "tominikaanischi republik\0" // do + "tonga\0" // to + "tonga nutome\0" // to + "tongga\0" // to + "tongo\0" // to + "tongà\0" // to + "tonizia\0" // tn + "tonngaa\0" // to + "tonqa\0" // to + "toogo\0" // tg + "toojo\0" // tg + "toqo\0" // tg + "toquelau\0" // tk + "torkia\0" // tr + "torkmenistan\0" // tm + "tovalò\0" // tv + "trianaid agus tobago\0" // tt + "trindade e tobago\0" // tt + "trinidad & tobago\0" // tt + "trinidad a tobago\0" // tt + "trinidad aamma tobago\0" // tt + "trinidad an tobago\0" // tt + "trinidad and tobago\0" // tt + "trinidad ba tobágó\0" // tt + "trinidad d ṭubagu\0" // tt + "trinidad dan tobago\0" // tt + "trinidad e tobago\0" // tt + "trinidad en tobago\0" // tt + "trinidad eta tobago\0" // tt + "trinidad gi tobago\0" // tt + "trinidad ha tobago\0" // tt + "trinidad i tobago\0" // tt + "trinidad i tobagu\0" // tt + "trinidad in tobago\0" // tt + "trinidad ja tobago\0" // tt + "trinidad já tobago\0" // tt + "trinidad kple tobago nutome\0" // tt + "trinidad le tobago\0" // tt + "trinidad na tobago\0" // tt + "trinidad nda tobaago\0" // tt + "trinidad ne tobago\0" // tt + "trinidad och tobago\0" // tt + "trinidad og tobago\0" // tt + "trinidad sy tobagô\0" // tt + "trinidad u tobago\0" // tt + "trinidad un tobago\0" // tt + "trinidad un tobähjo\0" // tt + "trinidad und tobaago\0" // tt + "trinidad und tobago\0" // tt + "trinidad va tobago\0" // tt + "trinidad ve tobago\0" // tt + "trinidad và tobago\0" // tt + "trinidad və tobaqo\0" // tt + "trinidad we tobago\0" // tt + "trinidad y tobago\0" // tt + "trinidad és tobago\0" // tt + "trinidad și tobago\0" // tt + "trinidadas ir tobagas\0" // tt + "trinidado kaj tobago\0" // tt + "trinidá y tobagu\0" // tt + "trinidāda un tobāgo\0" // tt + "trinidāds be tobagō\0" // tt + "trinitat i tobago\0" // tt + "trinite ne tobago\0" // tt + "trinite-ek-tobago\0" // tt + "trinite-ni-tobago\0" // tt + "trinité-et-tobago\0" // tt + "trinitùee na tobagö\0" // tt + "tristan da cunha\0" // ta + "tristan da cunja\0" // ta + "tristan da kunha\0" // ta + "tristan da kunha nutome\0" // ta + "tristan da kunja\0" // ta + "tristan da kunya\0" // ta + "tristan de cunha\0" // ta + "tristan-da-kuna\0" // ta + "tristan-da-kunya\0" // ta + "tristan-da-kunýa\0" // ta + "tristana da kuņas salas\0" // ta + "tristanas da kunja\0" // ta + "tristán da cunha\0" // ta + "tristán de acuña\0" // ta + "tristão da cunha\0" // ta + "triều tiên\0" // kp + "trung quốc\0" // cn + "trynidad i tobago\0" // tt + "trìnidàd ɓɔ tòbagò\0" // tt + "trínidad og tóbagó\0" // tt + "tsad nutome\0" // td + "tsady\0" // td + "tsaina nutome\0" // cn + "tschad\0" // td + "tschechien\0" // cz + "tschechische republik\0" // cz + "tschechischi republik\0" // cz + "tschibuuti\0" // dj + "tschile\0" // cl + "tshad\0" // td + "tshadi\0" // td + "tshili\0" // cl + "tsibiran birjin ta amurka\0" // vi + "tsibiran falkilan\0" // fk + "tsibiran kaiman\0" // ky + "tsibiran kap barde\0" // cv + "tsibiran kuku\0" // ck + "tsibiran mariyana na arewa\0" // mp + "tsibiran marshal\0" // mh + "tsibiran salaman\0" // sb + "tsibirin birjin na birtaniya\0" // vg + "tsibirin narfalk\0" // nf + "tsiecia\0" // cz + "tsieina\0" // cn + "tsile nutome\0" // cl + "tsilí\0" // cl + "tsjaad\0" // td + "tsjad\0" // td + "tsjechische republiek\0" // cz + "tsjechië\0" // cz + "tsjechje\0" // cz + "tsjeggiese republiek\0" // cz + "tsjeggië\0" // cz + "tsjekkia\0" // cz + "tsyinän\0" // cn + "tsád\0" // td + "tsádi\0" // td + "tsáina\0" // cn + "tsɛk repɔblik nutome\0" // cz + "ttake\0" // tr + "tubalu\0" // tv + "tubhalu\0" // tv + "tufalu\0" // tv + "tufalú\0" // tv + "tugù\0" // tg + "tuinisea\0" // tn + "tukemenisita\0" // tm + "tukimɛnisitaŋ\0" // tm + "tukisi ɓɛ̀ kaikóosi tiŋŋɛ\0" // tc + "tuklu\0" // tk + "tukumenistani\0" // tm + "tulisitani ta kunuha\0" // ta + "tuluchimenistani\0" // tm + "tuluit nunaat\0" // gb + "tuluki\0" // tr + "tulukimenisitani\0" // tm + "tulukimenistani\0" // tm + "tulukmenisitáaŋ\0" // tm + "tulukíi\0" // tr + "tumur asamar\0" // tl + "tuneesia\0" // tn + "tuneesie\0" // tn + "tuneesije\0" // tn + "tunes\0" // tn + "tunesia\0" // tn + "tunesie\0" // tn + "tunesien\0" // tn + "tunesië\0" // tn + "tuneziska\0" // tn + "tunezja\0" // tn + "tunicia\0" // tn + "tunihyia\0" // tn + "tuniisiya\0" // tn + "tunis\0" // tn + "tunisas\0" // tn + "tunisia\0" // tn + "tunisia nutome\0" // tn + "tunisiab\0" // tn + "tunisie\0" // tn + "tunisien\0" // tn + "tunisii\0" // tn + "tunisija\0" // tn + "tunisiya\0" // tn + "tunisiá\0" // tn + "tunisië\0" // tn + "tunisko\0" // tn + "tunisya\0" // tn + "tunisí\0" // tn + "tunithia\0" // tn + "tunizi\0" // tn + "tunizia\0" // tn + "tunizija\0" // tn + "tunizio\0" // tn + "tuniziya\0" // tn + "tunizî\0" // tn + "tunizïi\0" // tn + "tuns\0" // tn + "tunus\0" // tn + "tunusí\0" // tn + "tunézia\0" // tn + "tunísia\0" // tn + "tunízia\0" // tn + "tunīsia\0" // tn + "tunɛsí\0" // tn + "turchia\0" // tr + "turchie\0" // tr + "turcia\0" // tr + "turcija\0" // tr + "turcja\0" // tr + "turcmanastàn\0" // tm + "turcomenistán\0" // tm + "turcomenistão\0" // tm + "turecko\0" // tr + "turiki\0" // tr + "turiki gun ni kayiki\0" // tc + "turikimenisitani\0" // tm + "turindaadi ne tobago\0" // tt + "turindaadi ni tobago\0" // tt + "turindeda ɓɛ́ tobhego\0" // tt + "turinidad na tobago\0" // tt + "turk eta caico uharteak\0" // tc + "turk nda kayikos gungey\0" // tc + "turkaland\0" // tr + "turkeieb\0" // tr + "turkey\0" // tr + "turki\0" // tr + "turkia\0" // tr + "turkiet\0" // tr + "turkii\0" // tr + "turkija\0" // tr + "turkije\0" // tr + "turkimenistan\0" // tm + "turkis da tsibiran kaikwas\0" // tc + "turkiya\0" // tr + "turkiya ne kaicos ma laŋne\0" // tc + "turkiyya\0" // tr + "turkki\0" // tr + "turkmanistan\0" // tm + "turkmaniston\0" // tm + "turkmanstan\0" // tm + "turkmeenischtan\0" // tm + "turkmeniska\0" // tm + "turkmenistaan\0" // tm + "turkmenistahn\0" // tm + "turkmenistan\0" // tm + "turkmenistani\0" // tm + "turkmenistaŋ\0" // tm + "turkmenistán\0" // tm + "turkmenistāna\0" // tm + "turkmeništan\0" // tm + "turkmenujo\0" // tm + "turkménistan\0" // tm + "turkménsko\0" // tm + "turkmėnistanas\0" // tm + "turkmɛnistaŋ\0" // tm + "turkojska\0" // tr + "turkowska\0" // tr + "turks & caicos islands\0" // tc + "turks a caicos\0" // tc + "turks a caicos kupy\0" // tc + "turks and caicos islands\0" // tc + "turks gi caicos islands\0" // tc + "turks i caicos\0" // tc + "turks ja caicos\0" // tc + "turks ja caicos-sullot\0" // tc + "turks ne caicos islands\0" // tc + "turks va kaykos orollari\0" // tc + "turks ve caicos adaları\0" // tc + "turks- a caicosinselen\0" // tc + "turks- en caicoseilande\0" // tc + "turks- en caicoseilanden\0" // tc + "turks- en caicoseilannen\0" // tc + "turks- ja caicossaaret\0" // tc + "turks- já caicossuolluuh\0" // tc + "turks- och caicosöarna\0" // tc + "turks- og caicoseyjar\0" // tc + "turks- og caicosoyggjar\0" // tc + "turks- og caicosøerne\0" // tc + "turks- og caicosøyane\0" // tc + "turks- og caicosøyene\0" // tc + "turks- un caicosinseln\0" // tc + "turks- und caicosinseln\0" // tc + "turks- und caicosinslä\0" // tc + "turks- és caicos-szigetek\0" // tc + "turkujo\0" // tr + "turkumenistan\0" // tm + "turkumenistãu\0" // tm + "turkumenistäan\0" // tm + "turkya\0" // tr + "turkye\0" // tr + "turkāja\0" // tr + "turqi\0" // tr + "turquemenistão\0" // tm + "turquia\0" // tr + "turquie\0" // tr + "turquía\0" // tr + "turska\0" // tr + "turukimenisitani\0" // tm + "turukimenistani\0" // tm + "turukimenithtani\0" // tm + "turukiya\0" // tr + "turukumenisitani\0" // tm + "turukïi\0" // tr + "turčija\0" // tr + "turəkí\0" // tr + "turəkəmənisətáŋ\0" // tm + "tuvalo\0" // tv + "tuvalu\0" // tv + "tuvalu nutome\0" // tv + "tuvalú\0" // tv + "tuvaru\0" // tv + "tuváalu\0" // tv + "tuválu\0" // tv + "tuwalo\0" // tv + "tuwalu\0" // tv + "tuwaluu\0" // tv + "tuwkelawù\0" // tk + "tuwvalùw\0" // tv + "tuŋgà\0" // to + "twrci\0" // tr + "txad\0" // td + "txadi\0" // td + "txekia\0" // cz + "txekiar errepublika\0" // cz + "txile\0" // cl + "txina\0" // cn + "txèquia\0" // cz + "txékia\0" // cz + "tyrkia\0" // tr + "tyrkiet\0" // tr + "tyrkland\0" // tr + "tyskland\0" // de + "tysklandi\0" // de + "tyâde\0" // td + "tàanzanyìa\0" // tz + "tàdzikìsɨ̀tân\0" // tj + "tàjìkìstaŋ\0" // tj + "tànzànià\0" // tz + "tàywân\0" // tw + "tádzsikisztán\0" // tj + "tádžikistán\0" // tj + "táilandi\0" // th + "tâiwâni\0" // tw + "tây ban nha\0" // es + "tây sahara\0" // eh + "täjigistan\0" // tj + "tänemark\0" // dk + "täze kaledoniýa\0" // nc + "täze zelandiýa\0" // nz + "tèlenedà à tòbagù\0" // tt + "tékkland\0" // cz + "tìmɔ̂r lìkòl\0" // tl + "tìomor an ear\0" // tl + "tímor-leste\0" // tl + "tíomór thoir\0" // tl + "tògo\0" // tg + "tòkèlaò\0" // tk + "tócalá\0" // tk + "tóga\0" // tg + "tógó\0" // tg + "tókelá\0" // tk + "tóogo\0" // tg + "tóonga\0" // to + "törkei\0" // tr + "törks və kaykos adaları\0" // tc + "törks- und gaiggos-insle\0" // tc + "törökország\0" // tr + "tùneshìa\0" // tn + "tùnisìà\0" // tn + "tùrgmènìstân\0" // tm + "tùrkây\0" // tr + "tùvàlù\0" // tv + "túluk na káyiik\0" // tc + "túmúnéke\0" // dm + "túnez\0" // tn + "túnis\0" // tn + "túrkmenistan\0" // tm + "túvalú\0" // tv + "türggei\0" // tr + "türgi\0" // tr + "türkei\0" // tr + "türkiye\0" // tr + "türkiyə\0" // tr + "türkiýe\0" // tr + "türkmenistan\0" // tm + "türkmenisztán\0" // tm + "türkmənistan\0" // tm + "tüvalü\0" // tv + "tüütschland\0" // de + "týskland\0" // de + "tāilandan\0" // th + "tčad\0" // td + "tērksas un kaikosas salas\0" // tc + "tšaad\0" // td + "tšad\0" // td + "tšehhi\0" // cz + "tšehhia\0" // cz + "tšekin tasavalta\0" // cz + "tšekki\0" // cz + "tšečie\0" // cz + "tšiili\0" // cl + "tšile\0" // cl + "tūkimenisitani\0" // tm + "tūvalu\0" // tv + "tɔnga\0" // to + "tɔngá\0" // to + "tɔŋa\0" // to + "tɔŋgà\0" // to + "tɔ́ŋgɔ\0" // tg + "tɔ́ŋka\0" // to + "tɔ́ɔ́ki\0" // tr + "təlinité-ai-tobágo\0" // tt + "tɛki nutome\0" // tr + "tɛkmenistan nutome\0" // tm + "tɛkmɛnistan\0" // tm + "tɛks kple kaikos ƒudomekpowo nutome\0" // tc + "tɛlan\0" // th + "tɛrinitɛ ri tobago\0" // tt + "tɛwán\0" // tw + "tɛɛki\0" // tr + "u rwanda\0" // rw + "u. s. chwɨlà fɨ mbuʔmbu\0" // vi + "u.k.\0" // gb + "u.s.\0" // us + "u.s. minor outlaying ƒudomekpowo nutome\0" // um + "u.s. outlying islands\0" // um + "u.s. virgin islands\0" // vi + "u.s. vɛrgin ƒudomekpowo nutome\0" // vi + "u.s. ᎠᏍᏛ ᏚᎦᏚᏛᎢ\0" // um + "u.s. ᎠᏒᏂᎸ ᏂᎨᏒᎾ ᏚᎦᏚᏛᎢ\0" // vi + "uadyemi\0" // ir + "uajemi\0" // ir + "ualbania\0" // al + "ualis i futuna\0" // wf + "uallas agus futuna\0" // wf + "uandora\0" // ad + "uayalandi\0" // ie + "uazabajani\0" // az + "ubaranja\0" // fr + "ubelgidi\0" // be + "ubelgiji\0" // be + "ubeligiji\0" // be + "ubelin\0" // bj + "ububiligi\0" // be + "ubudage\0" // de + "ubufaransa\0" // fr + "ubugande\0" // ug + "ubugereki\0" // gr + "ubuhindi\0" // in + "ubuholandi\0" // nl + "ubukini\0" // mg + "uburundi\0" // bi + "uburusiya\0" // ru + "ubushinwa\0" // cn + "ubusuwisi\0" // ch + "ubutaliyani\0" // it + "ubuyapani\0" // jp + "ubwongereza\0" // gb + "uchadi\0" // td + "ucheki\0" // cz + "uchile\0" // cl + "uchina\0" // cn + "ucraina\0" // ua + "ucraine\0" // ua + "ucrania\0" // ua + "ucraína\0" // ua + "ucraïna\0" // ua + "ucrânia\0" // ua + "uda\0" // us + "udaljena ostrva sad\0" // um + "udenimaka\0" // dk + "udhibekithtani\0" // uz + "udominika\0" // dm + "udyerumani\0" // de + "ufalansa\0" // fr + "ufaransa\0" // fr + "ufaransa yo gwaya\0" // gf + "ufaransa yo potina\0" // pf + "ufarantha\0" // fr + "ufiji\0" // fj + "ufilipino\0" // ph + "ufilipíino\0" // ph + "ufini\0" // fi + "ufugustani\0" // af + "ufíini\0" // fi + "ugaanda\0" // ug + "ugaboni\0" // ga + "ugambia\0" // gm + "ugana\0" // gh + "uganda\0" // ug + "uganda nutome\0" // ug + "ugandab\0" // ug + "ugando\0" // ug + "ugandá\0" // ug + "ugandäa\0" // ug + "ugandë\0" // ug + "ugiiki\0" // gr + "ugilichi\0" // gr + "ugine\0" // gn + "uginebisau\0" // gw + "ugiriki\0" // gr + "ugiríki\0" // gr + "ugrenada\0" // gd + "ugrinlandi\0" // gl + "uguyana\0" // gy + "ugwadelupe\0" // gp + "ugwam\0" // gu + "ugwatemala\0" // gt + "ugànda\0" // ug + "uhabeshi\0" // et + "uhaiti\0" // ht + "uhindini\0" // in + "uhispania\0" // es + "uholandhi\0" // nl + "uholanzi\0" // nl + "uholanzi ya karibiani\0" // bq + "uhondurasi\0" // hn + "uhungaria\0" // hu + "uingeeza\0" // gb + "uingeredha\0" // gb + "uingereza\0" // gb + "uisraeli\0" // il + "ujamaika\0" // jm + "ujanda\0" // ug + "ujapani\0" // jp + "ujedinjeni arapski emirati\0" // ae + "ujedinjeno kraljevstvo\0" // gb + "ujerumani\0" // de + "ujeumani\0" // de + "ujibralta\0" // gi + "ujibuti\0" // dj + "ujikistani\0" // tj + "ujojia\0" // ge + "uk\0" // gb + "ukambodia\0" // kh + "ukanada\0" // ca + "ukanda\0" // ug + "ukatari\0" // qa + "ukazakistani\0" // kz + "ukenya\0" // ke + "ukereen\0" // ua + "ukilɛ́ɛn\0" // ua + "ukingo wa maghalibi na ukanda wa gaza wa palestina\0" // ps + "ukingo wa magharibi na ukanda wa gaza wa palestina\0" // ps + "ukirĩni\0" // ua + "uklaini\0" // ua + "ukodiva\0" // ci + "ukolombia\0" // co + "ukomoro\0" // km + "ukongo\0" // cg + "ukorasia\0" // hr + "ukorea kaskazini\0" // kp + "ukorea kusini\0" // kr + "ukraiine\0" // ua + "ukrain\0" // ua + "ukraina\0" // ua + "ukraine\0" // ua + "ukraine nutome\0" // ua + "ukraini\0" // ua + "ukrainë\0" // ua + "ukraiŋ\0" // ua + "ukrajina\0" // ua + "ukrajna\0" // ua + "ukrajno\0" // ua + "ukran\0" // ua + "ukranya\0" // ua + "ukrayn\0" // ua + "ukrayna\0" // ua + "ukreen\0" // ua + "ukren\0" // ua + "ukreni\0" // ua + "ukránia\0" // ua + "ukrêni\0" // ua + "ukrāini\0" // ua + "ukrɛn\0" // ua + "ukuba\0" // cu + "ukuprosi\0" // cy + "ukureini\0" // ua + "ukánda\0" // ug + "ukərɛ́n\0" // ua + "ukɛrɛni\0" // ua + "ulativia\0" // lv + "ulebanoni\0" // lb + "uleno\0" // pt + "ulesoto\0" // ls + "uliberia\0" // lr + "ulibya\0" // ly + "ulkomeri\0" // qo + "ulubali lwa hubahari ya hindi lwa huingereza\0" // io + "ulubali lwa magharibi nu gaza wa hupalestina\0" // ps + "ulugwai\0" // uy + "ulugwayi\0" // uy + "ulukuéy\0" // uy + "ulumaní\0" // ro + "ulusi\0" // ru + "ulusí\0" // ru + "uluvala lwa uwingelesa ku bahali ya hindi\0" // io + "uluándá\0" // rw + "umalawi\0" // mw + "umantegro\0" // me + "umarekani\0" // us + "umasedonia\0" // mk + "umisiri\0" // eg + "umman\0" // om + "ummon\0" // om + "umozambiki\0" // mz + "umurwa wa vatikani\0" // va + "umàn\0" // om + "undonesia\0" // id + "undura\0" // ad + "unganndaa\0" // ug + "ungare\0" // hu + "ungari\0" // hu + "ungaria\0" // hu + "ungarn\0" // hu + "ungarni\0" // hu + "ungern\0" // hu + "ungheria\0" // hu + "ungiya\0" // ai + "ungrai\0" // hu + "ungria\0" // hu + "ungula\0" // ao + "ungverjaland\0" // hu + "ungár\0" // hu + "ungārija\0" // hu + "uni emirat arab\0" // ae + "unijeri\0" // ne + "unijeria\0" // ng + "united arab emirates\0" // ae + "united arab emirates nutome\0" // ae + "united kingdom\0" // gb + "united kingdom nutome\0" // gb + "united states\0" // us + "unjann\0" // hu + "unkari\0" // hu + "unorwe\0" // no + "untiga d barbuda\0" // ag + "unuiĝinta reĝlando\0" // gb + "unuiĝintaj arabaj emirlandoj\0" // ae + "uollis e futuna\0" // wf + "uollis va futuna\0" // wf + "uollis və futuna\0" // wf + "uollis we futuna\0" // wf + "uomani\0" // om + "upakistani\0" // pk + "upanama\0" // pa + "upapua\0" // pg + "uperuu\0" // pe + "upitkairni\0" // pn + "upolandi\0" // pl + "upwetoriko\0" // pr + "uqanda\0" // ug + "uragua\0" // uy + "urdun\0" // jo + "ureno\0" // pt + "uriterea\0" // er + "uriyunioni\0" // re + "uromania\0" // ro + "urrujwai\0" // uy + "urugauy\0" // uy + "uruge\0" // uy + "uruguai\0" // uy + "uruguaib\0" // uy + "uruguaidh\0" // uy + "uruguaj\0" // uy + "uruguay\0" // uy + "uruguaydukɔ\0" // uy + "uruguwaay\0" // uy + "uruguwey\0" // uy + "uruguáai\0" // uy + "uruguái\0" // uy + "urugué\0" // uy + "uruguëe\0" // uy + "urugvaj\0" // uy + "urugvaja\0" // uy + "urugvajo\0" // uy + "urugvajus\0" // uy + "urugvay\0" // uy + "urugwai\0" // uy + "urugwaj\0" // uy + "urugway\0" // uy + "urugwayi\0" // uy + "urugwaý\0" // uy + "urugwājs\0" // uy + "urugwĩ\0" // uy + "urugwɛ́\0" // uy + "urundi\0" // bi + "uruqvay\0" // uy + "urusi\0" // ru + "uruthi\0" // ru + "urwanda\0" // rw + "urúusi\0" // ru + "urḍun\0" // jo + "us\0" // us + "us outlying islands\0" // um + "us virgin islands\0" // vi + "usa\0" // us + "usa neitsisaared\0" // vi + "usa nutome\0" // us + "usa:s yttre öar\0" // um + "usalavado\0" // sv + "usamarino\0" // sm + "usamoa\0" // ws + "usamoa ya marekani\0" // as + "usantahelena\0" // sh + "usantakitzi na nevis\0" // kn + "usantalusia\0" // lc + "usantapieri na mikeloni\0" // pm + "usantavisenti na grenadini\0" // vc + "usao tome na principe\0" // st + "usas ytre småøyar\0" // um + "usas ytre øyer\0" // um + "usaudi\0" // sa + "usbagastàn\0" // uz + "usbekistaan\0" // uz + "usbekistan\0" // uz + "usbekistaŋ\0" // uz + "usbekištan\0" // uz + "usbequistão\0" // uz + "usbǝkistaŋ\0" // uz + "usbɛkistaŋ\0" // uz + "uschbeekischtan\0" // uz + "usembaji\0" // lu + "usenegali\0" // sn + "ushelisheli\0" // sc + "ushenteni\0" // li + "usibekisitani\0" // uz + "usibekisitáani\0" // uz + "usingapoo\0" // sg + "usiria\0" // sy + "usirilanka\0" // lk + "uslovakia\0" // sk + "uslovenia\0" // si + "usomalia\0" // so + "usonaj malgrandaj insuloj\0" // um + "usonaj virgulininsuloj\0" // vi + "usono\0" // us + "ustrali\0" // au + "ustralya\0" // au + "ustriya\0" // at + "ustriyya\0" // at + "usudani\0" // sd + "usupekistáaŋ\0" // uz + "usurinamu\0" // sr + "uswasi\0" // sz + "uswazi\0" // sz + "uswidi\0" // se + "uswisi\0" // ch + "uswíidi\0" // se + "uswíisi\0" // ch + "usɨtɨ̀là\0" // at + "usṭralya\0" // au + "utailandi\0" // th + "utanzania\0" // tz + "uthwadhi\0" // sz + "uthwidi\0" // se + "uthwithi\0" // ch + "utimo mashariki\0" // tl + "utogo\0" // tg + "utokelau\0" // tk + "utonga\0" // to + "utrinidad na tobago\0" // tt + "utuki\0" // tr + "utuluchi\0" // tr + "utuluki\0" // tr + "utunisia\0" // tn + "uturuki\0" // tr + "uturukimenisitáani\0" // tm + "uturukimenistani\0" // tm + "uturúuki\0" // tr + "utuvalu\0" // tv + "utwania\0" // lt + "utyupi\0" // et + "uus-kaledoonia\0" // nc + "uus-meremaa\0" // nz + "uusbakistaan\0" // uz + "uusi-kaledonia\0" // nc + "uusi-seelanti\0" // nz + "uvalanza\0" // fr + "uvanuatu\0" // vu + "uvatikani\0" // va + "uvenezuela\0" // ve + "uvietinamu\0" // vn + "uwajemi\0" // ir + "uwalis na futuna\0" // wf + "uwingelesa\0" // gb + "uyemeni\0" // ye + "uyordani\0" // jo + "uzak okyanusya\0" // qo + "uzambia\0" // zm + "uzaq okeaniya\0" // qo + "uzbakistan\0" // uz + "uzbaxistan\0" // uz + "uzbechistan\0" // uz + "uzbeekistan\0" // uz + "uzbekistan\0" // uz + "uzbekistan nutome\0" // uz + "uzbekistanas\0" // uz + "uzbekistani\0" // uz + "uzbekistaŋ\0" // uz + "uzbekistán\0" // uz + "uzbekistãu\0" // uz + "uzbekistäan\0" // uz + "uzbekistāna\0" // uz + "uzbekujo\0" // uz + "uzbequistán\0" // uz + "uzbequistão\0" // uz + "uzbɛkistan\0" // uz + "uzebekisitani\0" // uz + "uzibechistani\0" // uz + "uzibekisita\0" // uz + "uzibekisitani\0" // uz + "uzibekistani\0" // uz + "uzibɛkisitá\0" // uz + "uzimbabwe\0" // zw + "uzubekisitani\0" // uz + "uzubekistan\0" // uz + "uzubekisətán\0" // uz + "ußbeekistahn\0" // uz + "uđđâ-kaledonia\0" // nc + "uđđâ-seeland\0" // nz + "uŋgar\0" // hu + "uŋgánda\0" // ug + "uŋčíyapi makȟóčhe\0" // ca + "uɣanda\0" // ug + "vaatikan laama\0" // va + "vailís agus futúna\0" // wf + "vakarų sachara\0" // eh + "valgevene\0" // by + "valis i futuna\0" // wf + "valiso kaj futuno\0" // wf + "valko-venäjä\0" // by + "vanautu\0" // vu + "vanawuwatu\0" // vu + "vanjska okeanija\0" // qo + "vanjska područja oceanije\0" // qo + "vanoatò\0" // vu + "vanuatu\0" // vu + "vanuatu nutome\0" // vu + "vanuatuo\0" // vu + "vanuatú\0" // vu + "vanuatü\0" // vu + "vanuwatu\0" // vu + "vanuwátu\0" // vu + "vanuáatu\0" // vu + "vanuátu\0" // vu + "vanwatu\0" // vu + "vanúatú\0" // vu + "vaticaanstad\0" // va + "vaticaanstêd\0" // va + "vatican\0" // va + "vatican city\0" // va + "vatican man\0" // va + "vatican state\0" // va + "vaticano\0" // va + "vaticaŋ\0" // va + "vatikaani\0" // va + "vatikaanstad\0" // va + "vatikan\0" // va + "vatikanbýur\0" // va + "vatikandu nutome\0" // va + "vatikani\0" // va + "vatikano\0" // va + "vatikano hiria\0" // va + "vatikano miesto valstybė\0" // va + "vatikanske město\0" // va + "vatikanski grad\0" // va + "vatikanstad\0" // va + "vatikanstadt\0" // va + "vatikanstaten\0" // va + "vatikanu\0" // va + "vatikańske město\0" // va + "vatikaŋ\0" // va + "vatikaŋ ɓoloe\0" // va + "vatikàn sɨ̀tɛ̂\0" // va + "vatiká\0" // va + "vatikáani\0" // va + "vatikán\0" // va + "vatikána\0" // va + "vatikāns\0" // va + "vatíkanið\0" // va + "veiniséala\0" // ve + "velika britanija\0" // gb + "venecuela\0" // ve + "venecuēla\0" // ve + "veneezuyeela\0" // ve + "venemaa\0" // ru + "venesuela\0" // ve + "venesúela\0" // ve + "venezoelà\0" // ve + "venezueela\0" // ve + "venezuela\0" // ve + "venezuela nutome\0" // ve + "venezuelab\0" // ve + "venezuelo\0" // ve + "venezueläa\0" // ve + "venezuelë\0" // ve + "venezuwela\0" // ve + "venezuwera\0" // ve + "venezuéela\0" // ve + "venezuéla\0" // ve + "venezuēla\0" // ve + "veneçuela\0" // ve + "vengrija\0" // hu + "vengriya\0" // hu + "venzwera\0" // ve + "venzwila\0" // ve + "venäjä\0" // ru + "venézuela\0" // ve + "vereenegt arabesch emirater\0" // ae + "vereenegt staaten\0" // us + "vereenigte araabsche emiraten\0" // ae + "vereinigte arabische emirate\0" // ae + "vereinigte staaten\0" // us + "vereinigtes königreich\0" // gb + "vereinigti arabiše emirat\0" // ae + "vereinschte arrabesche emmirate\0" // ae + "verenigd koninkrijk\0" // gb + "verenigde arabiese emirate\0" // ae + "verenigde arabische emiraten\0" // ae + "verenigde arabyske emiraten\0" // ae + "verenigde koninkryk\0" // gb + "verenigde state van amerika\0" // us + "verenigde staten\0" // us + "veräinigti arabischi emirate\0" // ae + "veräinigti schtaate\0" // us + "veräinigts chönigriich\0" // gb + "vest-sahara\0" // eh + "vestsahara\0" // eh + "vestur-sahara\0" // eh + "vestursahara\0" // eh + "vhanuatu\0" // vu + "vianočný ostrov\0" // cx + "vielgis-ruoššâ\0" // by + "vietinami\0" // vn + "vietinamu\0" // vn + "vietináamu\0" // vn + "vietnaam\0" // vn + "vietnam\0" // vn + "vietnam nutome\0" // vn + "vietnamas\0" // vn + "vietname\0" // vn + "vietnammi\0" // vn + "vietnamu\0" // vn + "vietnã\0" // vn + "vietnäm\0" // vn + "vijetnam\0" // vn + "vijätnamm\0" // vn + "vilges-ruošša\0" // by + "vinisɛn-senu-ni-grenadini\0" // vc + "vinizuela\0" // ve + "vinzwilla\0" // ve + "viro\0" // ee + "visiwa vidogo vya nje vya marekani\0" // um + "visiwa vya aland\0" // ax + "visiwa vya cayman\0" // ky + "visiwa vya cocos (keeling)\0" // cc + "visiwa vya cook\0" // ck + "visiwa vya falkland\0" // fk + "visiwa vya falkland (islas malvinas)\0" // fk + "visiwa vya faroe\0" // fo + "visiwa vya kaimai\0" // ky + "visiwa vya kanari\0" // ic + "visiwa vya kayman\0" // ky + "visiwa vya maliana vya kaskazini\0" // mp + "visiwa vya mariana vya kaskazini\0" // mp + "visiwa vya marshal\0" // mh + "visiwa vya marshall\0" // mh + "visiwa vya mashal\0" // mh + "visiwa vya pitcairn\0" // pn + "visiwa vya solomon\0" // sb + "visiwa vya tulki na kaiko\0" // tc + "visiwa vya turki na kaiko\0" // tc + "visiwa vya turks na caicos\0" // tc + "visiwa vya vilgin vya malekani\0" // vi + "visiwa vya vilgin vya uingeeza\0" // vg + "visiwa vya virgin vya marekani\0" // vi + "visiwa vya virgin vya uingereza\0" // vg + "visiwa vya virgin, marekani\0" // vi + "visiwa vya virgin, uingereza\0" // vg + "visíiwa vya fakulandi\0" // fk + "visíiwa vya kayimani\0" // ky + "visíiwa vya kúuku\0" // ck + "visíiwa vya marisháali\0" // mh + "visíiwa vya solomóoni\0" // sb + "visíiwa vya turíiki na kaíiko\0" // tc + "visíiwa vya vigíini vya amerɨ́ka\0" // vi + "visíiwa vya vigíini vya ʉɨngeréesa\0" // vg + "vithiwa vya cook\0" // ck + "vithiwa vya falkland\0" // fk + "vithiwa vya kayman\0" // ky + "vithiwa vya mariana vya kathkazini\0" // mp + "vithiwa vya marshal\0" // mh + "vithiwa vya tholomon\0" // sb + "vithiwa vya turki na kaiko\0" // tc + "vithiwa vya virgin vya marekani\0" // vi + "vithiwa vya virgin vya uingeredha\0" // vg + "vitryssland\0" // by + "viyanami\0" // vn + "viyetinaamu\0" // vn + "viyetiname\0" // vn + "viyetinamu\0" // vn + "viyetinamɛ\0" // vn + "viêt nam\0" // vn + "viëtnam\0" // vn + "viɛdənám\0" // vn + "viɛtnam\0" // vn + "viṭnam\0" // vn + "việt nam\0" // vn + "vjetnam\0" // vn + "vjetnama\0" // vn + "vjetnamo\0" // vn + "vk\0" // gb + "vnější oceánie\0" // qo + "vokietija\0" // de + "volisa un futunas salas\0" // wf + "volisas ir futūna\0" // wf + "vs\0" // us + "vsa\0" // us + "vsa se maagde-eilande\0" // vi + "vuolleeatnamat\0" // nl + "vuolleeatnamat karibe\0" // bq + "vuolleeatnamat saint martin\0" // sx + "vuáládâhenâmeh\0" // nl + "vuáskueennâm\0" // ax + "vyetinaamu\0" // vn + "vyetnam\0" // vn + "vyeṭnam\0" // vn + "vzhodni timor\0" // tl + "vànùatù\0" // vu + "vànǔatùw\0" // vu + "vàtìkâŋ\0" // va + "vánoční ostrov\0" // cx + "västsahara\0" // eh + "vènèzùelà\0" // ve + "vìyɛnàm\0" // vn + "vìɛ̀dnâm\0" // vn + "víetnam\0" // vn + "vítneam\0" // vn + "vùng xa xôi thuộc châu đại dương\0" // qo + "východní timor\0" // tl + "východný timor\0" // tl + "vācija\0" // de + "vương quốc anh\0" // gb + "vǝnǝzuela\0" // ve + "vɛnɛzuwela\0" // ve + "vɛnɛzwɛ́la\0" // ve + "vɛ̀nɛ̀zǔɛɛlà\0" // ve + "w.d. tigzirin n virginya\0" // vi + "wales à fùwtuwnà\0" // wf + "walis ak futuna\0" // wf + "walis d futuna\0" // wf + "walis da futuna\0" // wf + "walis e futuna\0" // wf + "walis na futuna\0" // wf + "walis ri futuna\0" // wf + "walise ne futuna\0" // wf + "walisi na futuna\0" // wf + "walisi ne futuna\0" // wf + "walisi ni futuna\0" // wf + "walisi-ni-futuna\0" // wf + "walisɛ mpé futuna\0" // wf + "walith na futuna\0" // wf + "wallis & futuna\0" // wf + "wallis a futuna\0" // wf + "wallis aamma futuna\0" // wf + "wallis and futuna\0" // wf + "wallis ba futuna\0" // wf + "wallis d futuna\0" // wf + "wallis dan futuna\0" // wf + "wallis e futuna\0" // wf + "wallis en futuna\0" // wf + "wallis eta futuna\0" // wf + "wallis gi futuna\0" // wf + "wallis ha futuna\0" // wf + "wallis i futuna\0" // wf + "wallis in futuna\0" // wf + "wallis ja futuna\0" // wf + "wallis já futuna\0" // wf + "wallis kple futuna nutome\0" // wf + "wallis na futuna\0" // wf + "wallis nda futuna\0" // wf + "wallis ne futuna\0" // wf + "wallis og futuna\0" // wf + "wallis sy futuna\0" // wf + "wallis u futuna\0" // wf + "wallis un futuna\0" // wf + "wallis und futuna\0" // wf + "wallis und futuuna\0" // wf + "wallis ve futuna\0" // wf + "wallis và futuna\0" // wf + "wallis y futuna\0" // wf + "wallis és futuna\0" // wf + "wallis și futuna\0" // wf + "wallis- och futunaöarna\0" // wf + "wallis- og futunaoyggjar\0" // wf + "wallis- og fútúnaeyjar\0" // wf + "wallis-ek-futuna\0" // wf + "wallis-et-futuna\0" // wf + "walíis na futúna\0" // wf + "walíisi na futúuna\0" // wf + "walís-ai-futúna\0" // wf + "walísi\0" // wf + "walîsi na futuna\0" // wf + "wanuatu\0" // vu + "wanuwaatuu\0" // vu + "wanwatu\0" // vu + "warris na futuna\0" // wf + "watikan\0" // va + "watikáŋ\0" // va + "watykan\0" // va + "wcráin\0" // ua + "wdm\0" // us + "weihnachtsinsel\0" // cx + "weissrussland\0" // by + "wenesiyela\0" // ve + "wenesuela\0" // ve + "wenesuwelaa\0" // ve + "wenezuela\0" // ve + "wengriýa\0" // hu + "wenkowna oceaniska\0" // qo + "wes-sahara\0" // eh + "weschtsahara\0" // eh + "westelijke sahara\0" // eh + "western sahara\0" // eh + "westsahara\0" // eh + "weštsahara\0" // eh + "wešttimor\0" // tl + "wiehnachtseiland\0" // cx + "wielka brytania\0" // gb + "wienachts-insle\0" // cx + "wienäčtsinslä\0" // cx + "wietnam\0" // vn + "wießrußland\0" // by + "wiissrussland\0" // by + "wilayah inggris di samudra hindia\0" // io + "wilayah kutub selatan prancis\0" // tf + "wilayah lautan hindi british\0" // io + "wilayah palestin\0" // ps + "wilayah palestina\0" // ps + "wilayah selatan perancis\0" // tf + "wiraki\0" // iq + "wit-ruslân\0" // by + "wittrussland\0" // by + "wiyetnaam\0" // vn + "wiyetnam\0" // vn + "wiyɛtinamu\0" // vn + "wlk. bryt.\0" // gb + "wonkowna oceaniska\0" // qo + "worodugu afriki\0" // za + "worodugu kore\0" // kr + "wosebita zarjadniska cona hongkong\0" // hk + "wosebita zarjadniska cona macao\0" // mo + "wuchodny timor\0" // tl + "wufalansa\0" // fr + "wufini\0" // fi + "wugiliki\0" // gr + "wuholansi\0" // nl + "wujelumani\0" // de + "wuleno\0" // pt + "wulusi\0" // ru + "wurugwayi\0" // uy + "wutwa wa shiyalabu\0" // ae + "wuzibekisitaani\0" // uz + "wybrzeże kości słoniowej\0" // ci + "wyspa bouveta\0" // bv + "wyspa bożego narodzenia\0" // cx + "wyspa man\0" // im + "wyspa wniebowstąpienia\0" // ac + "wyspa świętej heleny\0" // sh + "wyspy alandzkie\0" // ax + "wyspy cooka\0" // ck + "wyspy dziewicze stanów zjednoczonych\0" // vi + "wyspy heard i mcdonalda\0" // hm + "wyspy kanaryjskie\0" // ic + "wyspy kokosowe\0" // cc + "wyspy marshalla\0" // mh + "wyspy owcze\0" // fo + "wyspy salomona\0" // sb + "wyspy świętego tomasza i książęca\0" // st + "wyɛtnám\0" // vn + "wàlîs nì fùtunà\0" // wf + "wäissrussland\0" // by + "wäß-sahara\0" // eh + "wísrussland\0" // by + "wósebna zastojnstwowa cona hongkong\0" // hk + "wósebna zastojnstwowa cona macao\0" // mo + "wýetnam\0" // vn + "wālkija\0" // it + "węgry\0" // hu + "włochy\0" // it + "wɛnǝzwɛla\0" // ve + "xamaica\0" // jm + "xapón\0" // jp + "xeorxa\0" // ge + "xeorxia\0" // ge + "xerd va makdonald orollari\0" // hm + "xhamajkë\0" // jm + "xhersej\0" // je + "xhibuti\0" // dj + "xhorxha jugore dhe ishujt senduiçë të jugut\0" // gs + "xibraltar\0" // gi + "xibuti\0" // dj + "xile\0" // cl + "xili\0" // cl + "xina\0" // cn + "xipre\0" // cy + "xipri\0" // cy + "xitoy\0" // cn + "xordania\0" // jo + "xorvatiya\0" // hr + "xrikelandi\0" // gr + "y bahamas\0" // bs + "y congo (g.dd.c.)\0" // cd + "y congo (gweriniaeth)\0" // cg + "y congo - brazzaville\0" // cg + "y congo - kinshasa\0" // cd + "y deyrnas unedig\0" // gb + "y fatican\0" // va + "y ffindir\0" // fi + "y maldives\0" // mv + "y philipinau\0" // ph + "y swistir\0" // ch + "yamal\0" // ye + "yaman\0" // ye + "yamayka\0" // jm + "yangi kaledoniya\0" // nc + "yangi zelandiya\0" // nz + "yankin birtaniya na tekun indiya\0" // io + "yaponiya\0" // jp + "yapän\0" // jp + "ydre oceanien\0" // qo + "yemen\0" // ye + "yemen nutome\0" // ye + "yemeni\0" // ye + "yemenn\0" // ye + "yemenu\0" // ye + "yemeŋ\0" // ye + "yemɛni\0" // ye + "yemɛnɛ\0" // ye + "yemɛ́n\0" // ye + "yeni kaledoniya\0" // nc + "yeni kaledonya\0" // nc + "yeni zelanda\0" // nz + "yeni zelandiya\0" // nz + "yevrozona\0" // ez + "yhdysvallat\0" // us + "yhdysvaltain erillissaaret\0" // um + "yhdysvaltain neitsytsaaret\0" // vi + "yibuti\0" // dj + "yiləbalatár\0" // gi + "yindonezya\0" // id + "yiraaka\0" // iq + "yiraani\0" // ir + "yisirayeri\0" // il + "yitale\0" // it + "yndonesië\0" // id + "ynys ascension\0" // ac + "ynys bouvet\0" // bv + "ynys clipperton\0" // cp + "ynys heard ac ynysoedd mcdonald\0" // hm + "ynys manaw\0" // im + "ynys norfolk\0" // nf + "ynys y garn\0" // gg + "ynys y nadolig\0" // cx + "ynysoedd cayman\0" // ky + "ynysoedd cocos (keeling)\0" // cc + "ynysoedd cook\0" // ck + "ynysoedd ffaro\0" // fo + "ynysoedd gogledd mariana\0" // mp + "ynysoedd gwyryf prydain\0" // vg + "ynysoedd gwyryf yr unol daleithiau\0" // vi + "ynysoedd marshall\0" // mh + "ynysoedd pellennig uda\0" // um + "ynysoedd pitcairn\0" // pn + "ynysoedd solomon\0" // sb + "ynysoedd turks a caicos\0" // tc + "ynysoedd y falkland (ynysoedd y malfinas)\0" // fk + "ynysoedd y falkland/malvinas\0" // fk + "ynysoedd åland\0" // ax + "yoldani\0" // jo + "yolodani\0" // jo + "yordan nutome\0" // jo + "yordani\0" // jo + "yordania\0" // jo + "yorodani\0" // jo + "yorudaani\0" // jo + "yorudaniya\0" // jo + "ypatingasis administracinis kinijos regionas honkongas\0" // hk + "ypatingasis administracinis kinijos regionas makao\0" // mo + "yr aifft\0" // eg + "yr almaen\0" // de + "yr ariannin\0" // ar + "yr eidal\0" // it + "yr iseldiroedd\0" // nl + "yr unol daleithiau\0" // us + "yr ynys las\0" // gl + "yr ynysoedd dedwydd\0" // ic + "yrak\0" // iq + "ysland\0" // is + "yslân\0" // is + "ysraýyl\0" // il + "ytre oseania\0" // qo + "ytri eyjaálfa\0" // qo + "yttre öar i oceanien\0" // qo + "yubhɛkisitaŋ\0" // uz + "yuganda\0" // ug + "yukaran\0" // ua + "yukileini\0" // ua + "yukreini\0" // ua + "yukurayine\0" // ua + "yukuréŋ\0" // ua + "yulùgwɛ̂\0" // uy + "yunaitɛ arabhi ɛmire\0" // ae + "yunaitɛ kíŋdɔŋ\0" // gb + "yunan\0" // gr + "yunani\0" // gr + "yunanistan\0" // gr + "yunanıstan\0" // gr + "yurugai\0" // uy + "yurugwae\0" // uy + "yurugwai\0" // uy + "yuwegɔwe\0" // uy + "yèmɛ̂n\0" // ye + "yémen\0" // ye + "yémeni\0" // ye + "yémɛn\0" // ye + "yëmêni\0" // ye + "yùgandà\0" // ug + "yùkɛ̀lɛ̂\0" // ua + "yùnaetɛ alab ɛmelɛ̀\0" // ae + "yùnaetɛ kiŋdɔ̀m\0" // gb + "yùzɨ̀bɛkìsɨ̀tân\0" // uz + "yǝmɛn\0" // ye + "yɔ̀rdanià\0" // jo + "yəmən\0" // ye + "yɛmen\0" // ye + "yɛmɛn\0" // ye + "yɛmɛ̀n\0" // ye + "zahodna sahara\0" // eh + "zamaik\0" // jm + "zamaiki\0" // jm + "zamayiki\0" // jm + "zamaîka\0" // jm + "zambi\0" // zm + "zambia\0" // zm + "zambia nutome\0" // zm + "zambiab\0" // zm + "zambie\0" // zm + "zambija\0" // zm + "zambio\0" // zm + "zambiya\0" // zm + "zambië\0" // zm + "zambiýa\0" // zm + "zambya\0" // zm + "zambìa\0" // zm + "zambí\0" // zm + "zambî\0" // zm + "zambïi\0" // zm + "zanbi\0" // zm + "zapadna sahara\0" // eh + "zapon\0" // jp + "zapöon\0" // jp + "zapɔ\0" // jp + "zapɔn\0" // jp + "zda\0" // us + "združene države amerike\0" // us + "združeni arabski emirati\0" // ae + "združeno kraljestvo\0" // gb + "zeelanda berria\0" // nz + "zeelandu taaga\0" // nz + "zeland mafuu\0" // nz + "zeland nwanah\0" // nz + "zeland-nevez\0" // nz + "zelanda wa mumu\0" // nz + "zelandi koura\0" // nz + "zelandë e re\0" // nz + "zelandɛ ya sika\0" // nz + "zelenortska ostrva\0" // cv + "zelenortska republika\0" // cv + "zelenortski otoki\0" // cv + "zembabwe\0" // zw + "zentraalafrikaanischi republik\0" // cf + "zentralafrikaansche republik\0" // cf + "zentralafrikanesch republik\0" // cf + "zentralafrikanische republik\0" // cf + "zentralafrikaniši rebublik\0" // cf + "zeorzi\0" // ge + "zeorzia\0" // ge + "zerebaidyäan, azerbaidyäan,\0" // az + "zewta mpé melílla\0" // ea + "zeyɔrzi\0" // ge + "ze’uta un meliija\0" // ea + "zibatalɛ\0" // gi + "zibralitari\0" // gi + "zibraltar\0" // gi + "zibraltara\0" // gi + "zibraltära, zibaratära\0" // gi + "ziemeļkoreja\0" // kp + "ziemeļu marianas salas\0" // mp + "ziemsvētku sala\0" // cx + "zil cook\0" // ck + "zil kayman\0" // ky + "zil malwinn\0" // fk + "zil marshall\0" // mh + "zil maryann dinor\0" // mp + "zil salomon\0" // sb + "zil tirk ek caïcos\0" // tc + "zil vierz britanik\0" // vg + "zil vierz lamerik\0" // vi + "ziland foforo\0" // nz + "ziland tamaynut\0" // nz + "zilanḍa tamaynut\0" // nz + "ziloņkaula krasts\0" // ci + "zilɛŋ námaá\0" // nz + "zimbabhuwe\0" // zw + "zimbaboe\0" // zw + "zimbabue\0" // zw + "zimbabuwe\0" // zw + "zimbabué\0" // zw + "zimbabve\0" // zw + "zimbabvo\0" // zw + "zimbabvė\0" // zw + "zimbabwe\0" // zw + "zimbabwe nutome\0" // zw + "zimbabweb\0" // zw + "zimbabwi\0" // zw + "zimbabwé\0" // zw + "zimbabwǝ\0" // zw + "zimbabwɛ́\0" // zw + "zimbàbue\0" // zw + "zimbábue\0" // zw + "zimbábui\0" // zw + "zimbámbwɛ\0" // zw + "zimbäbwe\0" // zw + "zint kitts un nevis\0" // kn + "zint maarten\0" // sx + "zint pjäär un mikelong\0" // pm + "zint tommeh un printschipe\0" // st + "zint vinzänz un de jrenadines-enselle\0" // vc + "zipre\0" // cy + "zjadnośone arabiske emiraty\0" // ae + "zjadnośone kralejstwo\0" // gb + "zjadnośone staty ameriki\0" // us + "zjednoczone emiraty arabskie\0" // ae + "zjednoćene arabske emiraty\0" // ae + "zjednoćene kralestwo\0" // gb + "zjednoćene staty ameriki\0" // us + "zk\0" // gb + "zon euro\0" // ez + "zona do euro\0" // ez + "zona euro\0" // ez + "zone euro\0" // ez + "zordani\0" // jo + "zordanïi\0" // jo + "zorzi\0" // ge + "zorzïi\0" // ge + "zuid-afrika\0" // za + "zuid-georgia en zuidelijke sandwicheilanden\0" // gs + "zuid-korea\0" // kr + "zuid-soedan\0" // ss + "zvicër\0" // ch + "zviedrija\0" // se + "zvitsuwa zvasolomon\0" // sb + "zvitsuwa zveamerika\0" // vi + "zvitsuwa zvecape verde\0" // cv + "zvitsuwa zvecayman\0" // ky + "zvitsuwa zvecook\0" // ck + "zvitsuwa zvefalklands\0" // fk + "zvitsuwa zvehingirandi\0" // vg + "zvitsuwa zvekumaodzanyemba emariana\0" // mp + "zvitsuwa zvemarshall\0" // mh + "zvitsuwa zveturk necaico\0" // tc + "zweden\0" // se + "zwitserland\0" // ch + "zypere\0" // cy + "zypern\0" // cy + "zypre\0" // cy + "zàmbia\0" // zm + "zàmbià\0" // zm + "zámbia\0" // zm + "západná sahara\0" // eh + "západní sahara\0" // eh + "zâmani\0" // de + "zâmbia\0" // zm + "zìlân è fūghū\0" // nz + "zìmbagbɛ̀\0" // zw + "zìmbàbwê\0" // zw + "zöld-foki köztársaság\0" // cv + "zûâ nôrfôlko\0" // nf + "zûâ salomöon\0" // sb + "züppere\0" // cy + "zālamana salas\0" // sb + "zǝ bɛ gɔn inɛ a ingɛrís\0" // vg + "zǝ bɛ gɔn inɛ á amɛrika\0" // vi + "zǝ i gan\0" // ky + "zǝ i glás\0" // is + "zǝ i marcál\0" // mh + "zǝ ingɛrís ncɔ́m wa indi\0" // io + "zǝ maalwín\0" // fk + "zǝ maryánnɔ́r\0" // mp + "zǝ palɛstínǝ\0" // ps + "zǝ salomɔ́n\0" // sb + "zǝ tirk ri kakɔs\0" // tc + "zɔdani\0" // jo + "zɔrdani\0" // jo + "zɛ i kúk\0" // ck + "zɛ nɔ́fɔlk\0" // nf + "zɛlan anyɔ́n\0" // nz + "ßlovakei\0" // sk + "ßloveenije\0" // si + "ßwaasiland\0" // sz + "àabɛnìa\0" // al + "àadzɛlìa\0" // dz + "àdnà i bilɔ̀ŋ bi amerkà\0" // us + "àdnà i bilɔ̀ŋ bi arābìà\0" // ae + "àdnà i lɔ̂ŋ\0" // gb + "àdzɛ̀ntinà\0" // ar + "àfgànìstâŋ\0" // af + "àfrǐkà sɔ̀\0" // za + "àfɨ̀ganìsɨ̀tân\0" // af + "àitì\0" // ht + "àlbanìà\0" // al + "àlgerìà\0" // dz + "àlubà\0" // aw + "àmɛlekan samwà\0" // as + "àmɛnyìa\0" // am + "àndolà\0" // ad + "àngolaa\0" // ao + "àntigwà à bàbudà\0" // ag + "àrgàŋtinà\0" // ar + "àrmenìà\0" // am + "àrubà\0" // aw + "àustria\0" // at + "àzɛ̀rbajàŋ\0" // az + "àzɨbɛ̀dzân\0" // az + "àŋdɔ̂r\0" // ad + "àŋgiyà\0" // ai + "àŋgolà\0" // ao + "àŋgwilà\0" // ai + "àŋtigà ɓɔ bàrbudà\0" // ag + "áfrica do sul\0" // za + "áfrika di sul\0" // za + "áfíríka lumaã tɛ boloe\0" // cf + "áisi lumaã\0" // is + "áland\0" // ax + "álandseyjar\0" // ax + "ándɛ\0" // in + "áo\0" // at + "áre lumaã\0" // ie + "árúba\0" // aw + "ástralía\0" // au + "áusitiria\0" // at + "áustria\0" // at + "ázerbájdžán\0" // az + "âleaa-ôko tî amerika\0" // us + "âzôâ viîrîggo tî anglëe\0" // vg + "âzûâ kûku\0" // ck + "âzûâ märshâl\0" // mh + "âzûâ märïâni tî banga\0" // mp + "âzûâ ngundë, kaimäni\0" // ky + "âzûâ turku na kaîki\0" // tc + "âzûâ tî mälüîni\0" // fk + "âzûâ virîgo tî amerîka\0" // vi + "ägypten\0" // eg + "ägyptɛn\0" // eg + "ägüpte\0" // eg + "äjüpte\0" // eg + "äkwador\0" // ec + "äl slavadohr\0" // sv + "älfebeijn-köß\0" // ci + "äquatoriaalgineea\0" // gq + "äquatorial jineeja\0" // gq + "äquatorialguinea\0" // gq + "äritreea\0" // er + "äritreja\0" // er + "äsrɛl\0" // il + "äthiopie\0" // et + "äthiopien\0" // et + "ättijoopije\0" // et + "äusseres ozeanien\0" // qo + "äußeres ozeanien\0" // qo + "äßland\0" // ee + "åland\0" // ax + "åland adaları\0" // ax + "åland islands\0" // ax + "åland ƒudomekpo nutome\0" // ax + "åland-szigetek\0" // ax + "ålandeilande\0" // ax + "ålandeilannen\0" // ax + "ålandi\0" // ax + "ålandinselen\0" // ax + "ålandinseln\0" // ax + "ålandski otoci\0" // ax + "ålandski otoki\0" // ax + "ålandy\0" // ax + "ålánda\0" // ax + "ålân\0" // ax + "ækvatorialguinea\0" // gq + "çad\0" // td + "çeh respublikasy\0" // cz + "çehiýa\0" // cz + "çek cumhuriyeti\0" // cz + "çeki\0" // cz + "çekya\0" // cz + "çex respublikası\0" // cz + "çexiya\0" // cz + "çili\0" // cl + "çin\0" // cn + "çin hong kong öİb\0" // hk + "çin makao öİb\0" // mo + "ègîptò\0" // eg + "èirinn\0" // ie + "èkwàtorìà\0" // ec + "èkwɛ̀tolia ginè\0" // gq + "èletɨ̀là\0" // er + "èlâkɨ̀\0" // iq + "èlân\0" // ir + "èndòneshìa\0" // id + "èrìtrěà\0" // er + "èstonìà\0" // ee + "èsɨ̀tonyìa\0" // ee + "ètyǒpìa\0" // et + "ètìopìà\0" // et + "é.-u.\0" // us + "égypte\0" // eg + "éimin\0" // ye + "éire\0" // ie + "éisträich\0" // at + "émirats arabes unis\0" // ae + "équateur\0" // ec + "érythrée\0" // er + "észak-korea\0" // kp + "északi mariana-szigetek\0" // mp + "észtország\0" // ee + "état de la cité du vatican\0" // va + "états fédérés de micronésie\0" // fm + "états-unis\0" // us + "éthiopie\0" // et + "ênnde\0" // in + "ênndonezïi\0" // id + "ês taemò\0" // tl + "ìlú vatican\0" // va + "ìrlând\0" // ie + "ìrâk\0" // iq + "ìrâŋ\0" // ir + "ìslandìà\0" // is + "ìtalìà\0" // it + "íkwado\0" // ec + "ílmalasáal\0" // mh + "índia\0" // in + "índiya\0" // in + "índonisiya\0" // id + "índɛ\0" // in + "írak\0" // iq + "íran\0" // ir + "írland\0" // ie + "írország\0" // ie + "írsko\0" // ie + "írán\0" // ir + "ísilayɛ́l\0" // il + "ísland\0" // is + "ísrael\0" // il + "ítali\0" // it + "ítalía\0" // it + "ítiyópiya\0" // et + "île bouvet\0" // bv + "île christmas\0" // cx + "île clipperton\0" // cp + "île de l’ascension\0" // ac + "île de man\0" // im + "île norfolk\0" // nf + "îles canaries\0" // ic + "îles caïmans\0" // ky + "îles cocos\0" // cc + "îles cocos (keeling)\0" // cc + "îles cook\0" // ck + "îles de géorgie du sud et sandwich du sud\0" // gs + "îles d’åland\0" // ax + "îles falkland\0" // fk + "îles falkland (malouines)\0" // fk + "îles féroé\0" // fo + "îles géorgie du sud et sandwich du sud\0" // gs + "îles heard et mcdonald\0" // hm + "îles malouines\0" // fk + "îles mariannes du nord\0" // mp + "îles marshall\0" // mh + "îles mineures éloignées des états-unis\0" // um + "îles pitcairn\0" // pn + "îles salomon\0" // sb + "îles turques-et-caïques\0" // tc + "îles vierges américaines\0" // vi + "îles vierges britanniques\0" // vg + "îles vierges des états-unis\0" // vi + "îles åland\0" // ax + "òmân\0" // om + "òn i nɔrfɔ̂k\0" // nf + "òstralìà\0" // au + "òstrǐk\0" // at + "óman\0" // om + "ómani\0" // om + "ótiriis\0" // at + "örményország\0" // am + "österreich\0" // at + "österrike\0" // at + "östraliá\0" // au + "östtimor\0" // tl + "ötrish\0" // at + "özbegistan\0" // uz + "özbekistan\0" // uz + "özbəkistan\0" // uz + "ööschtriich\0" // at + "öösterisch\0" // at + "öösterriek\0" // at + "öštrič\0" // at + "øst-timor\0" // tl + "østerrike\0" // at + "østrig\0" // at + "østrigi\0" // at + "østtimor\0" // tl + "ùgandà\0" // ug + "ùkrɛ̌n\0" // ua + "ùrùgwêy\0" // uy + "ùsɨ̀tɛ̀lɛlìa\0" // au + "ùzbèkìstân\0" // uz + "úganda\0" // ug + "új-kaledónia\0" // nc + "új-zéland\0" // nz + "úkraína\0" // ua + "úrúgvæ\0" // uy + "úsbekistan\0" // uz + "ühendriikide hajasaared\0" // um + "ük\0" // gb + "ürdün\0" // jo + "üssers ozeaanie\0" // qo + "üssers ozeanie\0" // qo + "üzbegisztán\0" // uz + "ýamaýka\0" // jm + "ýaponiýa\0" // jp + "ýemen\0" // ye + "ýewro sebti\0" // ez + "þýskaland\0" // de + "āustrarīki\0" // at + "ĉado\0" // td + "ĉeĥujo\0" // cz + "ĉilio\0" // cl + "ĉinujo\0" // cn + "ċipru\0" // cy + "čad\0" // td + "čada\0" // td + "čadas\0" // td + "čeahkka\0" // cz + "čehija\0" // cz + "čehijas republika\0" // cz + "čekija\0" // cz + "čekijos respublika\0" // cz + "čekkija\0" // cz + "černá hora\0" // me + "česka republika\0" // cz + "česko\0" // cz + "česká republika\0" // cz + "češka\0" // cz + "češka republika\0" // cz + "čierna hora\0" // me + "čiile\0" // cl + "čile\0" // cl + "čilė\0" // cl + "čokkeväärih já jan mayen\0" // sj + "črna gora\0" // me + "čína\0" // cn + "čček\0" // cz + "čěska republika\0" // cz + "čīle\0" // cl + "čīli\0" // cl + "đan mạch\0" // dk + "đài loan\0" // tw + "đông timor\0" // tl + "đảo ascension\0" // ac + "đảo bouvet\0" // bv + "đảo clipperton\0" // cp + "đảo giáng sinh\0" // cx + "đảo man\0" // im + "đảo norfolk\0" // nf + "đức\0" // de + "ēģipte\0" // eg + "ĝibraltaro\0" // gi + "ĝibutio\0" // dj + "ġibiltà\0" // gi + "ġżejjer mariana tat-tramuntana\0" // mp + "īndija\0" // in + "īrija\0" // ie + "īslandan\0" // is + "İndoneziya\0" // id + "İordaniya\0" // jo + "İran\0" // ir + "İraq\0" // iq + "İrlanda\0" // ie + "İrlandiya\0" // ie + "İslandiya\0" // is + "İspaniya\0" // es + "İspanya\0" // es + "İsrail\0" // il + "İsveç\0" // se + "İsveçrə\0" // ch + "İsviçre\0" // ch + "İtaliya\0" // it + "İtalya\0" // it + "İzlanda\0" // is + "ķīna\0" // cn + "ķīnas īpašās pārvaldes apgabals honkonga\0" // hk + "ķīnas īpašās pārvaldes apgabals makao\0" // mo + "łotwa\0" // lv + "ńnam minlán ɛ́ngəlís\0" // vg + "ŋgabɔ̂ŋ\0" // ga + "ŋgambî\0" // gm + "ŋginɛ̂\0" // gn + "ŋginɛ̂ mbisáwu\0" // gw + "ŋginɛ̂ ɛkwatɔliyâl\0" // gq + "ŋgána\0" // gh + "ŋgɛlɛ̂k\0" // gr + "ŋ̀ɛm afrīkà\0" // cf + "řecko\0" // gr + "şili\0" // cl + "şimali koreya\0" // kp + "şimali marian adaları\0" // mp + "şirmaýy kenar\0" // ci + "şpisbergen we ýan-maýen\0" // sj + "şri-lanka\0" // lk + "şwesiýa\0" // se + "şweýsariýa\0" // ch + "şərqi timor\0" // tl + "šalamounovy ostrovy\0" // sb + "šalamúnove ostrovy\0" // sb + "šiaurės korėja\0" // kp + "šiili\0" // cl + "šiin\0" // cn + "šiipur\0" // cy + "španielsko\0" // es + "španija\0" // es + "španiska\0" // es + "španjolska\0" // es + "španělsko\0" // es + "špańska\0" // es + "špicberky a jan mayen\0" // sj + "špānija\0" // es + "šri lanka\0" // lk + "šrilanka\0" // lk + "šv. elenos sala\0" // sh + "švajcarska\0" // ch + "švajčiarsko\0" // ch + "švedija\0" // se + "švedska\0" // se + "šveica\0" // ch + "šveicarija\0" // ch + "šveice\0" // ch + "šveits\0" // ch + "šventasis vincentas ir grenadinai\0" // vc + "švica\0" // ch + "švicarska\0" // ch + "švédsko\0" // se + "švýcarsko\0" // ch + "šwedska\0" // se + "šwicarska\0" // ch + "šwēdija\0" // se + "šwēici\0" // ch + "żvizzera\0" // ch + "žaliasis kyšulys\0" // cv + "ƙasar makka\0" // sa + "ǧibuti\0" // dj + "ǹfúfúb maríno\0" // sm + "ǹfúfúb-kilisətóv-ai-nevis\0" // kn + "ǹfúfúb-lúsia\0" // lc + "ǹfúfúb-píɛr-ai-mikəlɔ́ŋ\0" // pm + "ǹfúfúb-vɛngəsáŋ-ai-bə gələnadín\0" // vc + "ǹfúfúb-ɛlɛ́na\0" // sh + "ǹkpámɛn kaledónia\0" // nc + "ǹkpámɛn zeláŋ\0" // nz + "ǹlɛndi\0" // nl + "ǹnam amɛrəkə\0" // us + "ǹnam engəlis\0" // gb + "ǹnam kongó demokəlatíg\0" // cd + "ǹnam palɛsətín\0" // ps + "ǹnam tsɛ́g\0" // cz + "ǹnam vatikán\0" // va + "ǹnam zǎŋ afiriká\0" // cf + "ǹnam ɛngəlís yá máŋ mə́ ɛ́ndə\0" // io + "țările de jos\0" // nl + "ɔlgyeria\0" // dz + "ɔnduras\0" // hn + "ɔndúlas\0" // hn + "ɔndúras\0" // hn + "ɔngilí\0" // hu + "ɔngrí\0" // hu + "ɔngría\0" // hu + "ɔsituwéeliya\0" // au + "ɔstralí\0" // au + "ɔstrelia\0" // au + "ɔstria\0" // at + "ɔ̀ŋduràs\0" // hn + "ɔ̀ŋgriì\0" // hu + "ɔ́situwa\0" // at + "əfqanıstan\0" // af + "əlcəzair\0" // dz + "ɛiraq\0" // iq + "ɛjípt\0" // eg + "ɛjíptɛ\0" // eg + "ɛkwandɔ̂\0" // ec + "ɛkwatɛǝ́\0" // ec + "ɛl salvadɔ\0" // sv + "ɛlitɛlɛ́ya\0" // er + "ɛlɛ sávádɔ\0" // sv + "ɛlɛni senu\0" // sh + "ɛndonesí\0" // id + "ɛndonezi\0" // id + "ɛndonésia\0" // id + "ɛndujamana\0" // in + "ɛritera\0" // er + "ɛritrea\0" // er + "ɛritrɛ́\0" // er + "ɛsitóninya\0" // ee + "ɛspániya\0" // es + "ɛstoni\0" // ee + "ɛstonia\0" // ee + "ɛstoní\0" // ee + "ɛtiyɔpî\0" // et + "ɛtyɔpí\0" // et + "ɛuman\0" // om + "ɛumman\0" // om + "ɛ́kúwédɔ\0" // ec + "ɛ́ndə\0" // in + "ɛ́ɛnd\0" // in + "ɣana\0" // gh + "ɣana tafransist\0" // gf + "ɣedzeƒe timɔ nutome\0" // tl + "ɣetoɖoƒe sahara nutome\0" // eh + "ɣinya\0" // gn + "ɣinya bisaw\0" // gw + "ɣinya n ikwadur\0" // gq + "ɣinya tamaynut tapaput\0" // pg + "ɣinya tasebgast\0" // gq + "ɣinya tikwaṭur it\0" // gq + "ɣinya-bisaw\0" // gw + "ɣinya-bissaw\0" // gw + "ɣrnaṭa\0" // gd + "ɨsɨ yʉ ʉɨngeréesa irivii ra híindi\0" // io + "ʉajéemi\0" // ir + "ʉbeligíiji\0" // be + "ʉfaráansa\0" // fr + "ʉgáanda\0" // ug + "ʉhabéeshi\0" // et + "ʉholáanzi\0" // nl + "ʉjerumáani\0" // de + "ʉkɨréeni\0" // ua + "ʉréeno\0" // pt + "ʉswáazi\0" // sz + "ʉtemi wa kɨaráabu\0" // ae + "ʉɨngeréesa\0" // gb + "ʻaealani\0" // ie + "ʻafikānisitani\0" // af + "ʻafilika tonga\0" // za + "ʻaisilani\0" // is + "ʻalepea fakatahataha\0" // ae + "ʻalipania\0" // al + "ʻalisilia\0" // dz + "ʻalupa\0" // aw + "ʻamelika\0" // us + "ʻamelika hui pū ʻia\0" // us + "ʻangikola\0" // ao + "ʻanitola\0" // ad + "ʻanitātika\0" // aq + "ʻaositelēlia\0" // au + "ʻaositulia\0" // at + "ʻasapaisani\0" // az + "ʻasenitina\0" // ar + "ʻekueta kini\0" // gq + "ʻekuetoa\0" // ec + "ʻele salavatoa\0" // sv + "ʻelitulia\0" // er + "ʻesitōnia\0" // ee + "ʻeulope fekauʻaki-paʻanga\0" // ez + "ʻilaaki\0" // iq + "ʻilaani\0" // ir + "ʻilelani\0" // ie + "ʻinitia\0" // in + "ʻinitonēsia\0" // id + "ʻiseraʻela\0" // il + "ʻisileli\0" // il + "ʻisipite\0" // eg + "ʻiukanitā\0" // ug + "ʻomani\0" // om + "ʻosēnia mamaʻo\0" // qo + "ʻotumotu faloe\0" // fo + "ʻotumotu fokulani\0" // fk + "ʻotumotu heati mo makitonali\0" // hm + "ʻotumotu kaneli\0" // ic + "ʻotumotu keimeni\0" // ky + "ʻotumotu koko\0" // cc + "ʻotumotu kuki\0" // ck + "ʻotumotu maliana tokelau\0" // mp + "ʻotumotu māsolo\0" // mh + "ʻotumotu pitikeni\0" // pn + "ʻotumotu seiseli\0" // sc + "ʻotumotu seōsia-tonga mo saniuisi-tonga\0" // gs + "ʻotumotu siʻi ʻo ʻamelika\0" // um + "ʻotumotu solomone\0" // sb + "ʻotumotu tuki mo kaikosi\0" // tc + "ʻotumotu vilikini fakapilitānia\0" // vg + "ʻotumotu vilikini fakaʻamelika\0" // vi + "ʻotumotu ʻalani\0" // ax + "ʻulukuai\0" // uy + "ʻusipekitani\0" // uz + "ʻuvea mo futuna\0" // wf + "ʻāina pilipino\0" // ph + "ʻāmenia\0" // am + "ʻīkālia\0" // it + "ʻīnia\0" // in + "ʻītali\0" // it + "ʻītiōpia\0" // et + "ʻūkalaʻine\0" // ua + "́antigua kple barbuda nutome\0" // ag + "άγιοσ βαρθολομαίοσ\0" // bl + "άγιοσ βικέντιοσ και γρεναδίνεσ\0" // vc + "άγιοσ μαρίνοσ\0" // sm + "άγιοσ μαρτίνοσ (γαλλικό τμήμα)\0" // mf + "άγιοσ μαρτίνοσ (ολλανδικό τμήμα)\0" // sx + "αίγυπτοσ\0" // eg + "αγία ελένη\0" // sh + "αγία λουκία\0" // lc + "αγκόλα\0" // ao + "αζερμπαϊτζάν\0" // az + "αιθιοπία\0" // et + "ακτή ελεφαντοστού\0" // ci + "αλβανία\0" // al + "αλγερία\0" // dz + "αμερικανικέσ παρθένεσ νήσοι\0" // vi + "αμερικανική σαμόα\0" // as + "ανατολικό τιμόρ\0" // tl + "ανγκουίλα\0" // ai + "ανδόρα\0" // ad + "αντίγκουα και μπαρμπούντα\0" // ag + "ανταρκτική\0" // aq + "απομακρυσμένεσ νησίδεσ ηπα\0" // um + "αργεντινή\0" // ar + "αρμενία\0" // am + "αρούμπα\0" // aw + "αυστρία\0" // at + "αυστραλία\0" // au + "αφγανιστάν\0" // af + "αϊτή\0" // ht + "βέλγιο\0" // be + "βανουάτου\0" // vu + "βατικανό\0" // va + "βενεζουέλα\0" // ve + "βερμούδεσ\0" // bm + "βιετνάμ\0" // vn + "βολιβία\0" // bo + "βοσνία - ερζεγοβίνη\0" // ba + "βουλγαρία\0" // bg + "βραζιλία\0" // br + "βρετανικά εδάφη ινδικού ωκεανού\0" // io + "βρετανικέσ παρθένεσ νήσοι\0" // vg + "βόρεια κορέα\0" // kp + "γαλλία\0" // fr + "γαλλικέσ περιοχέσ του νοτίου ημισφαιρίου\0" // tf + "γαλλική γουιάνα\0" // gf + "γαλλική πολυνησία\0" // pf + "γερμανία\0" // de + "γεωργία\0" // ge + "γιβραλτάρ\0" // gi + "γκάμπια\0" // gm + "γκάνα\0" // gh + "γκέρνζι\0" // gg + "γκαμπόν\0" // ga + "γκουάμ\0" // gu + "γουαδελούπη\0" // gp + "γουατεμάλα\0" // gt + "γουιάνα\0" // gy + "γουινέα\0" // gn + "γουινέα μπισάου\0" // gw + "γρενάδα\0" // gd + "γροιλανδία\0" // gl + "δανία\0" // dk + "δομινικανή δημοκρατία\0" // do + "δυτική σαχάρα\0" // eh + "ελ σαλβαδόρ\0" // sv + "ελβετία\0" // ch + "ελλάδα\0" // gr + "ερυθραία\0" // er + "εσθονία\0" // ee + "ευρωζώνη\0" // ez + "ζάμπια\0" // zm + "ζιμπάμπουε\0" // zw + "ηβ\0" // gb + "ηνωμένα αραβικά εμιράτα\0" // ae + "ηνωμένεσ πολιτείεσ\0" // us + "ηνωμένο βασίλειο\0" // gb + "ηπα\0" // us + "θέουτα και μελίγια\0" // ea + "ιαπωνία\0" // jp + "ινδία\0" // in + "ινδονησία\0" // id + "ιορδανία\0" // jo + "ιράκ\0" // iq + "ιράν\0" // ir + "ιρλανδία\0" // ie + "ισημερινή γουινέα\0" // gq + "ισημερινόσ\0" // ec + "ισλανδία\0" // is + "ισπανία\0" // es + "ισραήλ\0" // il + "ιταλία\0" // it + "κένυα\0" // ke + "κίνα\0" // cn + "καζακστάν\0" // kz + "καμερούν\0" // cm + "καμπότζη\0" // kh + "κανάριοι νήσοι\0" // ic + "καναδάσ\0" // ca + "κατάρ\0" // qa + "κεντροαφρικανική δημοκρατία\0" // cf + "κιργιστάν\0" // kg + "κιριμπάτι\0" // ki + "κολομβία\0" // co + "κομόρεσ\0" // km + "κονγκό (drc)\0" // cd + "κονγκό (δημοκρατία)\0" // cg + "κονγκό - κινσάσα\0" // cd + "κονγκό - μπραζαβίλ\0" // cg + "κοσσυφοπέδιο\0" // xk + "κουβέιτ\0" // kw + "κουρασάο\0" // cw + "κούβα\0" // cu + "κροατία\0" // hr + "κόστα ρίκα\0" // cr + "κύπροσ\0" // cy + "λάοσ\0" // la + "λίβανοσ\0" // lb + "λεσότο\0" // ls + "λετονία\0" // lv + "λευκορωσία\0" // by + "λιβερία\0" // lr + "λιβύη\0" // ly + "λιθουανία\0" // lt + "λιχτενστάιν\0" // li + "λουξεμβούργο\0" // lu + "μάλι\0" // ml + "μάλτα\0" // mt + "μαγιότ\0" // yt + "μαδαγασκάρη\0" // mg + "μακάο\0" // mo + "μακάο εδπ κίνασ\0" // mo + "μαλάουι\0" // mw + "μαλαισία\0" // my + "μαλδίβεσ\0" // mv + "μαρτινίκα\0" // mq + "μαρόκο\0" // ma + "μαυρίκιοσ\0" // mu + "μαυριτανία\0" // mr + "μαυροβούνιο\0" // me + "μεξικό\0" // mx + "μιανμάρ (βιρμανία)\0" // mm + "μικρονησία\0" // fm + "μογγολία\0" // mn + "μοζαμβίκη\0" // mz + "μολδαβία\0" // md + "μονακό\0" // mc + "μονσεράτ\0" // ms + "μπανγκλαντέσ\0" // bd + "μπαρμπέιντοσ\0" // bb + "μπαχάμεσ\0" // bs + "μπαχρέιν\0" // bh + "μπελίζ\0" // bz + "μπενίν\0" // bj + "μποτσουάνα\0" // bw + "μπουρκίνα φάσο\0" // bf + "μπουρούντι\0" // bi + "μπουτάν\0" // bt + "μπρουνέι\0" // bn + "νέα ζηλανδία\0" // nz + "νέα καληδονία\0" // nc + "νήσοι βόρειεσ μαριάνεσ\0" // mp + "νήσοι κέιμαν\0" // ky + "νήσοι κουκ\0" // ck + "νήσοι κόκοσ (κίλινγκ)\0" // cc + "νήσοι μάρσαλ\0" // mh + "νήσοι νότια γεωργία και νότιεσ σάντουιτσ\0" // gs + "νήσοι πίτκερν\0" // pn + "νήσοι σολομώντοσ\0" // sb + "νήσοι τερκσ και κάικοσ\0" // tc + "νήσοι φερόεσ\0" // fo + "νήσοι φόκλαντ\0" // fk + "νήσοι φόκλαντ (νήσοι μαλβίνασ)\0" // fk + "νήσοι χερντ και μακντόναλντ\0" // hm + "νήσοι όλαντ\0" // ax + "νήσοσ ασενσιόν\0" // ac + "νήσοσ κλίπερτον\0" // cp + "νήσοσ μπουβέ\0" // bv + "νήσοσ νόρφολκ\0" // nf + "νήσοσ του μαν\0" // im + "νήσοσ των χριστουγέννων\0" // cx + "νίγηρασ\0" // ne + "ναμίμπια\0" // na + "ναουρού\0" // nr + "νεπάλ\0" // np + "νιγηρία\0" // ng + "νικαράγουα\0" // ni + "νιούε\0" // nu + "νορβηγία\0" // no + "ντιέγκο γκαρσία\0" // dg + "ντομίνικα\0" // dm + "νότια αφρική\0" // za + "νότια κορέα\0" // kr + "νότιο σουδάν\0" // ss + "ολλανδία\0" // nl + "ολλανδία καραϊβικήσ\0" // bq + "ομάν\0" // om + "ονδούρα\0" // hn + "ουάλισ και φουτούνα\0" // wf + "ουγγαρία\0" // hu + "ουγκάντα\0" // ug + "ουζμπεκιστάν\0" // uz + "ουκρανία\0" // ua + "ουρουγουάη\0" // uy + "πακιστάν\0" // pk + "παλάου\0" // pw + "παλαιστίνη\0" // ps + "παλαιστινιακά εδάφη\0" // ps + "παναμάσ\0" // pa + "παπούα νέα γουινέα\0" // pg + "παραγουάη\0" // py + "περιφερειακή ωκεανία\0" // qo + "περού\0" // pe + "πολωνία\0" // pl + "πορτογαλία\0" // pt + "πουέρτο ρίκο\0" // pr + "πράσινο ακρωτήριο\0" // cv + "πρώην γιουγκοσλαβική δημοκρατία τησ μακεδονίασ\0" // mk + "πρώην γιουγκοσλαβική δημοκρατία τησ μακεδονίασ (πγδμ)\0" // mk + "ρεϊνιόν\0" // re + "ρουάντα\0" // rw + "ρουμανία\0" // ro + "ρωσία\0" // ru + "σάο τομέ και πρίνσιπε\0" // st + "σαμόα\0" // ws + "σαουδική αραβία\0" // sa + "σβάλμπαρντ και γιαν μαγιέν\0" // sj + "σεν κιτσ και νέβισ\0" // kn + "σεν πιερ και μικελόν\0" // pm + "σενεγάλη\0" // sn + "σερβία\0" // rs + "σεϋχέλλεσ\0" // sc + "σιέρα λεόνε\0" // sl + "σιγκαπούρη\0" // sg + "σλοβακία\0" // sk + "σλοβενία\0" // si + "σομαλία\0" // so + "σουαζιλάνδη\0" // sz + "σουδάν\0" // sd + "σουηδία\0" // se + "σουρινάμ\0" // sr + "σρι λάνκα\0" // lk + "συρία\0" // sy + "τανζανία\0" // tz + "τατζικιστάν\0" // tj + "ταϊβάν\0" // tw + "ταϊλάνδη\0" // th + "τζέρζι\0" // je + "τζαμάικα\0" // jm + "τζιμπουτί\0" // dj + "τιμόρ-λέστε\0" // tl + "τοκελάου\0" // tk + "τουβαλού\0" // tv + "τουρκία\0" // tr + "τουρκμενιστάν\0" // tm + "τρινιντάντ και τομπάγκο\0" // tt + "τριστάν ντα κούνια\0" // ta + "τσαντ\0" // td + "τσεχία\0" // cz + "τσεχική δημοκρατία\0" // cz + "τυνησία\0" // tn + "τόγκο\0" // tg + "τόνγκα\0" // to + "υεμένη\0" // ye + "φίτζι\0" // fj + "φιλιππίνεσ\0" // ph + "φινλανδία\0" // fi + "χιλή\0" // cl + "χονγκ κονγκ\0" // hk + "χονγκ κονγκ εδπ κίνασ\0" // hk + "абш\0" // us + "абш вирҝин адалары\0" // vi + "абш-а бағлы кичик адаҹыглар\0" // um + "аб’яднаныя арабскія эміраты\0" // ae + "авганистан\0" // af + "австрали\0" // au + "австралия\0" // au + "австралија\0" // au + "австралія\0" // au + "австри\0" // at + "австрия\0" // at + "австрија\0" // at + "австрія\0" // at + "азербайджан\0" // az + "азербайжан\0" // az + "азербејџан\0" // az + "азәрбајҹан\0" // az + "аиш\0" // us + "айъадаларан гӏайре\0" // ac + "акш\0" // us + "акш виргин утраулары\0" // vi + "акш кече читтәге утраулары\0" // um + "акшнын сырткы аралдары\0" // um + "аланд адалары\0" // ax + "аланд аралдары\0" // ax + "аланд ороллари\0" // ax + "аланд утраулары\0" // ax + "аландан гӏайренаш\0" // ax + "аландские о-ва\0" // ax + "аландскія астравы\0" // ax + "аландські острови\0" // ax + "аландын арлууд\0" // ax + "албани\0" // al + "албания\0" // al + "албанија\0" // al + "албанія\0" // al + "алжир\0" // dz + "алжыр\0" // dz + "алманија\0" // de + "алыс океания\0" // qo + "алыскы океания\0" // qo + "алҷазоир\0" // dz + "аман\0" // om + "америка бирләшмиш штатлары\0" // us + "америка кошмо штаттары\0" // us + "америка самоаси\0" // as + "америка самоасы\0" // as + "америка холбоһуктаах штааттара\0" // us + "америка қўшма штатлари\0" // us + "америка құрама штаттары\0" // us + "америкалык самоа\0" // as + "америкалық самоа\0" // as + "американ самоа\0" // as + "американска самоа\0" // as + "американски вирджински острови\0" // vi + "американски девствени острови\0" // vi + "американски територии во пацификот\0" // um + "американское самоа\0" // as + "американське самоа\0" // as + "америкийн нэгдсэн улс\0" // us + "америкийн нэгдсэн улсын бага арлууд\0" // um + "америкийн самоа\0" // as + "америчка девичанска острва\0" // vi + "америчка дјевичанска острва\0" // vi + "америчка самоа\0" // as + "амерыканскае самоа\0" // as + "амерыканскія віргінскія астравы\0" // vi + "аморатҳои муттаҳидаи араб\0" // ae + "ангвила\0" // ai + "ангилия\0" // ai + "ангилья\0" // ai + "ангол\0" // ao + "ангола\0" // ao + "ангуила\0" // ai + "ангілья\0" // ai + "андора\0" // ad + "андорра\0" // ad + "антарктид\0" // aq + "антарктида\0" // aq + "антарктик\0" // aq + "антарктика\0" // aq + "антарктыка\0" // aq + "антига и барбуда\0" // ag + "антигва и барбуда\0" // ag + "антигуа а, барбуда а\0" // ag + "антигуа ба барбуда\0" // ag + "антигуа ва барбуда\0" // ag + "антигуа вә барбуда\0" // ag + "антигуа жана барбуда\0" // ag + "антигуа және барбуда\0" // ag + "антигуа и барбуда\0" // ag + "антигуа һәм барбуда\0" // ag + "антиґуа і барбуда\0" // ag + "антыгуа і барбуда\0" // ag + "ану\0" // us + "ану-ын виржиний арлууд\0" // vi + "анґілья\0" // ai + "анҝилја\0" // ai + "арабистони саудӣ\0" // sa + "арабын нэгдсэн эмират улс\0" // ae + "арассыыйа\0" // ru + "арахьара океани\0" // qo + "аргентин\0" // ar + "аргентина\0" // ar + "аргенціна\0" // ar + "аржентина\0" // ar + "арманистон\0" // am + "армени\0" // am + "армения\0" // am + "арменія\0" // am + "аруба\0" // aw + "арҝентина\0" // ar + "асенсион арал\0" // ac + "аскенсон адасы\0" // ac + "астравы кука\0" // ck + "астравы піткэрн\0" // pn + "астравы херд і макдональд\0" // hm + "астравы цёркс і кайкас\0" // tc + "асунсон\0" // ac + "аустралија\0" // au + "аустрија\0" // at + "ауғанстан\0" // af + "афганистан\0" // af + "афганістан\0" // af + "африкаи ҷанубӣ\0" // za + "афғонистон\0" // af + "ахш\0" // us + "ацш\0" // us + "ацшн арахьара кегийн гӏайренаш\0" // um + "аўстралія\0" // au + "аўстрыя\0" // at + "а҆мерїка̑нскїѧ соединє́нныѧ держа̑вы\0" // us + "а҆ѵстралі́ѧ\0" // au + "ақш\0" // us + "ақш виргин ороллари\0" // vi + "ақш ёндош ороллари\0" // um + "ақш-тың виргин аралдары\0" // vi + "ақш-тың сыртқы кіші аралдары\0" // um + "багам\0" // bs + "багам аралдары\0" // bs + "багам утраулары\0" // bs + "багама аралдары\0" // bs + "багама ороллари\0" // bs + "багаман гӏайренаш\0" // bs + "багамскія астравы\0" // bs + "багамські острови\0" // bs + "багамы\0" // bs + "багамын арлууд\0" // bs + "балба\0" // np + "балгарыя\0" // bg + "балівія\0" // bo + "бангладеш\0" // bd + "бангладэш\0" // bd + "барбадас\0" // bb + "барбадос\0" // bb + "баруун сахар\0" // eh + "батсвана\0" // bw + "батыс сахара\0" // eh + "батыш сахара\0" // eh + "бахами\0" // bs + "бахреин\0" // bh + "бахрейн\0" // bh + "бахрэйн\0" // bh + "баҳрайн\0" // bh + "баһам адалары\0" // bs + "беларус\0" // by + "беларусь\0" // by + "белгия\0" // be + "белгија\0" // be + "белиз\0" // bz + "белизе\0" // bz + "белорус\0" // by + "белорусија\0" // by + "белорусси\0" // by + "белчика\0" // be + "бельги\0" // be + "бельгия\0" // be + "бельгія\0" // be + "бельґія\0" // be + "беліз\0" // bz + "бенин\0" // bj + "бенін\0" // bj + "бераг слановай косці\0" // ci + "берег слонової кістки\0" // ci + "берләшкән гарәп әмирлекләре\0" // ae + "бермуд адалары\0" // bm + "бермуд аралдары\0" // bm + "бермуд утраулары\0" // bm + "бермуда\0" // bm + "бермудан гӏайренаш\0" // bm + "бермуди\0" // bm + "бермудски острови\0" // bm + "бермудские о-ва\0" // bm + "бермудскія астравы\0" // bm + "бермудські острови\0" // bm + "бивша югославска република македония\0" // mk + "бириккен араб эмираттары\0" // ae + "бирлашган араб амирликлари\0" // ae + "бирләшмиш краллыг\0" // gb + "бирләшмиш әрәб әмирликләри\0" // ae + "бк\0" // gb + "бнхау-ын тусгай захиргааны бүс макао\0" // mo + "бнхау-ын тусгай захиргааны бүс хонг конг\0" // hk + "божићно острво\0" // cx + "божиќен остров\0" // cx + "болгар\0" // bg + "болгари\0" // bg + "болгария\0" // bg + "болгарыстан\0" // bg + "болгарія\0" // bg + "боливи\0" // bo + "боливия\0" // bo + "боливија\0" // bo + "болівія\0" // bo + "бонейр, синт-эстатиус ва саба\0" // bq + "бонэйр, синт-эстатиус а, саба а\0" // bq + "бонэйр, синт-эстатиус және саба\0" // bq + "бонэйр, синт-эстатиус и саба\0" // bq + "борбордук африка республикасы\0" // cf + "босна и херцеговина\0" // ba + "босни а, герцеговина а\0" // ba + "босни-герцеговин\0" // ba + "босния ва герцеговина\0" // ba + "босния ва ҳерсеговина\0" // ba + "босния жана герцеговина\0" // ba + "босния және герцеговина\0" // ba + "босния и герцеговина\0" // ba + "босния һәм герцеговина\0" // ba + "боснија вә һерсеговина\0" // ba + "боснія і герцагавіна\0" // ba + "боснія і герцеґовина\0" // ba + "ботсвана\0" // bw + "ботсванна\0" // bw + "боцвана\0" // bw + "бразил\0" // br + "бразили\0" // br + "бразилия\0" // br + "бразилија\0" // br + "бразі́лїа\0" // br + "бразілія\0" // br + "брег на слоновата коска\0" // ci + "брегот на слоновата коска\0" // ci + "британдық виргин аралдары\0" // vg + "британийн виржиний арлууд\0" // vg + "британийн харьяа энэтхэгийн далай дахь нутаг дэвсгэр\0" // io + "британин латта индин океанехь\0" // io + "британия\0" // gb + "британия виргин ороллари\0" // vg + "британия виргин утраулары\0" // vg + "британиянең һинд океанындагы территориясе\0" // io + "британиянинг ҳинд океанидаги ҳудуди\0" // io + "британијанын вирҝин адалары\0" // vg + "британска девичанска острва\0" // vg + "британска дјевичанска острва\0" // vg + "британска индоокеанска територија\0" // io + "британска територия в индийския океан\0" // io + "британска територија индијског океана\0" // io + "британска територија у индијском океану\0" // io + "британская территория в индийском океане\0" // io + "британски вирджински острови\0" // vg + "британски девствени острови\0" // vg + "британська територія в індійському океані\0" // io + "британські віргінські острови\0" // vg + "британтјанын һинд океаны әразиси\0" // io + "бруней\0" // bn + "бруней даруссалам\0" // bn + "бруней-даруссалам\0" // bn + "брунеј\0" // bn + "брытанская тэрыторыя ў індыйскім акіяне\0" // io + "брытанскія віргінскія астравы\0" // vg + "бряг на слоновата кост\0" // ci + "буве адасы\0" // bv + "буве арал\0" // bv + "буве аралы\0" // bv + "буве ороли\0" // bv + "буве утравы\0" // bv + "бувен гӏайре\0" // bv + "бугарија\0" // bg + "бугарска\0" // bg + "булғория\0" // bg + "буркина фасо\0" // bf + "буркина- фасо\0" // bf + "буркина-фасо\0" // bf + "буркіна-фасо\0" // bf + "бурундзі\0" // bi + "бурунди\0" // bi + "бурунді\0" // bi + "бутан\0" // bt + "бутон\0" // bt + "буюк британия\0" // gb + "българия\0" // bg + "білорусь\0" // by + "біріккен араб әмірліктері\0" // ae + "бјелорусија\0" // by + "бјр македонија\0" // mk + "бѣ́лаѧ рꙋ́сь\0" // by + "бүгд найрамдах ардчилсан конго улс\0" // cd + "бүгд найрамдах доминикан улс\0" // do + "бүгд найрамдах чех улс\0" // cz + "бәхрәйн\0" // bh + "бәһрејн\0" // bh + "бөекбритания\0" // gb + "вʼєтнам\0" // vn + "валис и футуна\0" // wf + "вануату\0" // vu + "ватикан\0" // va + "ватикан хот улс\0" // va + "ватыкан\0" // va + "вели́каѧ брїта́нїа\0" // gb + "велика британія\0" // gb + "великобритания\0" // gb + "венгри\0" // hu + "венгрия\0" // hu + "венгрыя\0" // hu + "венесуела\0" // ve + "венесуэл\0" // ve + "венесуэла\0" // ve + "венецуела\0" // ve + "ветнам\0" // vn + "виетнам\0" // vn + "виргин аралдары (акш)\0" // vi + "виргин аралдары (британия)\0" // vg + "виргинийн гӏайренаш (ацш)\0" // vi + "виргинийн гӏайренаш (британи)\0" // vg + "виргинские о-ва (британские)\0" // vg + "виргинские о-ва (сша)\0" // vi + "вијетнам\0" // vn + "внешние малые о-ва (сша)\0" // um + "внешняя океания\0" // qo + "вознесение аралы\0" // ac + "восточный тимор\0" // tl + "востраў бувэ\0" // bv + "востраў дыега-гарсія\0" // dg + "востраў каляд\0" // cx + "востраў кліпертон\0" // cp + "востраў мэн\0" // im + "востраў норфалк\0" // nf + "востраў святой алены\0" // sh + "востраў узнясення\0" // ac + "вьетнам\0" // vn + "вялікабрытанія\0" // gb + "віддалена океанія\0" // qo + "віддалені острови сша\0" // um + "віргінські острови, сша\0" // vi + "вірменія\0" // am + "вјетнам\0" // vn + "в’етнам\0" // vn + "га́ллїа\0" // fr + "габон\0" // ga + "газахыстан\0" // kz + "гаити\0" // ht + "гайана\0" // gy + "гамби\0" // gm + "гамбия\0" // gm + "гамбија\0" // gm + "гамбія\0" // gm + "гана\0" // gh + "гандурас\0" // hn + "ганконг\0" // hk + "ганконг, сар (кітай)\0" // hk + "гаяна\0" // gy + "гаіці\0" // ht + "гаїті\0" // ht + "гајана\0" // gy + "гвадалупе\0" // gp + "гваделуп\0" // gp + "гваделупа\0" // gp + "гваделупе\0" // gp + "гвадэлупа\0" // gp + "гватемал\0" // gt + "гватемала\0" // gt + "гватэмала\0" // gt + "гвајана\0" // gy + "гвианаи фаронса\0" // gf + "гвиней\0" // gn + "гвиней-бисау\0" // gw + "гвинея\0" // gn + "гвинея-бисау\0" // gw + "гвинеяи экваторӣ\0" // gq + "гвинеја\0" // gn + "гвинеја-бисао\0" // gw + "гвинеја-бисау\0" // gw + "гвінея\0" // gn + "гвінея-бісау\0" // gw + "герма́нїа\0" // de + "герман\0" // de + "германи\0" // de + "германия\0" // de + "германија\0" // de + "германія\0" // de + "гернзи\0" // gg + "гернси\0" // gg + "гернсі\0" // gg + "гибралтар\0" // gi + "гондурас\0" // hn + "гонконг\0" // hk + "гонконг (сар)\0" // hk + "гонконг (хитой ммҳ)\0" // hk + "гонконг (ша-къаьстина кӏошт)\0" // hk + "гонконг кытай ааа\0" // hk + "гонконг махсус идарәле төбәге\0" // hk + "гонконг, о.а.р. китаю\0" // hk + "грек\0" // gr + "грекия\0" // gr + "гренада\0" // gd + "гренланд\0" // gl + "гренланди\0" // gl + "гренландия\0" // gl + "гренландија\0" // gl + "греци\0" // gr + "греция\0" // gr + "греція\0" // gr + "грузия\0" // ge + "грузија\0" // ge + "грузія\0" // ge + "грција\0" // gr + "грчка\0" // gr + "грэнада\0" // gd + "грэнландыя\0" // gl + "грэцыя\0" // gr + "гуам\0" // gu + "гурҷистон\0" // ge + "гуырдзыстон\0" // ge + "гуьржийчоь\0" // ge + "гърнзи\0" // gg + "гърция\0" // gr + "гыйрак\0" // iq + "гырғызыстан\0" // kg + "гібралтар\0" // gi + "гүрж\0" // ge + "гӏажарийчоь\0" // ir + "гӏайре ӏиса пайхӏамар вина де\0" // cx + "гәтәр\0" // qa + "дамініка\0" // dm + "дамініканская рэспубліка\0" // do + "дани\0" // dk + "данимарка\0" // dk + "дания\0" // dk + "данска\0" // dk + "дані́ѧ\0" // dk + "данія\0" // dk + "демократин республика конго\0" // cd + "демократска република конго\0" // cd + "джерси\0" // je + "джерсі\0" // je + "джибути\0" // dj + "джибуті\0" // dj + "джърси\0" // je + "джыбуці\0" // dj + "джэрсі\0" // je + "диего гарсиа\0" // dg + "диего гарсия\0" // dg + "диего гарсија\0" // dg + "диего-гарси\0" // dg + "диего-гарсия\0" // dg + "дијего гарсија\0" // dg + "доминика\0" // dm + "доминика республикасы\0" // do + "доминикан республика\0" // do + "доминикан республикаси\0" // do + "доминикан республикасы\0" // do + "доминикана республикасы\0" // do + "доминиканска република\0" // do + "доминиканская республика\0" // do + "домініка\0" // dm + "домініканська республіка\0" // do + "др конго\0" // cd + "дьамаайка\0" // jm + "дієго-гарсія\0" // dg + "евро бүс\0" // ez + "еврозона\0" // ez + "египат\0" // eg + "египет\0" // eg + "егіпет\0" // eg + "еквадор\0" // ec + "екваториал гвинеја\0" // gq + "екваториална гвинея\0" // gq + "екваторијална гвинеја\0" // gq + "екваторска гвинеја\0" // gq + "екваторіальна гвінея\0" // gq + "ел салвадор\0" // sv + "емен\0" // ye + "еритрея\0" // er + "еритреја\0" // er + "ерменија\0" // am + "ермәнистан\0" // am + "естония\0" // ee + "естонија\0" // ee + "естонія\0" // ee + "етиопия\0" // et + "етиопија\0" // et + "еуроаймақ\0" // ez + "еурозона\0" // ez + "ефиопија\0" // et + "ефіопія\0" // et + "еўразона\0" // ez + "жазоир\0" // dz + "жанубий африка республикаси\0" // za + "жанубий георгия ва жанубий сендвич ороллари\0" // gs + "жанубий корея\0" // kr + "жанубий судан\0" // ss + "жапония\0" // jp + "жаңа зеландия\0" // nz + "жаңа каледония\0" // nc + "жаӊы зеландия\0" // nz + "жаӊы каледония\0" // nc + "жерси\0" // je + "жибути\0" // dj + "зааны ясан эрэг\0" // ci + "зависни земји во океанија\0" // qo + "замби\0" // zm + "замбия\0" // zm + "замбија\0" // zm + "замбія\0" // zm + "западна сахара\0" // eh + "западная сахара\0" // eh + "заходняя сахара\0" // eh + "західна сахара\0" // eh + "зеландияи нав\0" // nz + "зелен ’рт\0" // cv + "зеленортска острва\0" // cv + "зимбабве\0" // zw + "злучаныя штаты амерыкі\0" // us + "знешняя акіянія\0" // qo + "зул сарын арал\0" // cx + "зша\0" // us + "зімбабве\0" // zw + "зімбабвэ\0" // zw + "зүүн тимор\0" // tl + "иб\0" // gb + "израел\0" // il + "израиль\0" // il + "източен тимор\0" // tl + "им\0" // us + "инди\0" // in + "инди океанындагы британ территориясы\0" // io + "индия\0" // in + "индија\0" // in + "индонез\0" // id + "индонези\0" // id + "индонезия\0" // id + "индонезија\0" // id + "иордания\0" // jo + "иорданија\0" // jo + "ираг\0" // iq + "ирак\0" // iq + "иран\0" // ir + "ирланд\0" // ie + "ирланди\0" // ie + "ирландия\0" // ie + "ирландија\0" // ie + "ироқ\0" // iq + "ирска\0" // ie + "исвеч\0" // se + "исвечрә\0" // ch + "исланд\0" // is + "исланди\0" // is + "исландия\0" // is + "исландија\0" // is + "испани\0" // es + "испания\0" // es + "испанија\0" // es + "исраил\0" // il + "исроил\0" // il + "источен тимор\0" // tl + "источен тимор (тимор лесте)\0" // tl + "источни тимор\0" // tl + "итали\0" // it + "италия\0" // it + "италија\0" // it + "их британи\0" // gb + "иёлоти муттаҳида\0" // us + "йемен\0" // ye + "йоккха британи\0" // gb + "йордан\0" // jo + "йордания\0" // jo + "йорданія\0" // jo + "йәмән\0" // ye + "каба-вердэ\0" // cv + "кабо верде\0" // cv + "кабо-верде\0" // cv + "казакстан\0" // kz + "казахста́нъ\0" // kz + "казахстан\0" // kz + "кайман аралдары\0" // ky + "кайман гӏайренаш\0" // ky + "кайман ороллари\0" // ky + "кайман утраулары\0" // ky + "кайманавы астравы\0" // ky + "кайманови острови\0" // ky + "каймановы о-ва\0" // ky + "кайманові острови\0" // ky + "кайманы арлууд\0" // ky + "какосавыя (кілінг) астравы\0" // cc + "каледонияи нав\0" // nc + "калумбія\0" // co + "камбоджа\0" // kh + "камбож\0" // kh + "камбоџа\0" // kh + "камбоҷа\0" // kh + "камбоҹа\0" // kh + "камерун\0" // cm + "каморскія астравы\0" // km + "кана́да\0" // ca + "канаада\0" // ca + "канад\0" // ca + "канада\0" // ca + "канар адалары\0" // ic + "канар аралдары\0" // ic + "канар ороллари\0" // ic + "канаран гӏайренаш\0" // ic + "канарска острва\0" // ic + "канарски острови\0" // ic + "канарские о-ва\0" // ic + "канарскія астравы\0" // ic + "канарські острови\0" // ic + "канарын арлууд\0" // ic + "капе верде\0" // cv + "кариб нидерланддары\0" // bq + "карибска нидерландия\0" // bq + "карибын нидерланд\0" // bq + "карипска холандија\0" // bq + "карыбскія нідэрланды\0" // bq + "катар\0" // qa + "кајман адалары\0" // ky + "кајманска острва\0" // ky + "кајмански острови\0" // ky + "кени\0" // ke + "кения\0" // ke + "кенија\0" // ke + "кенія\0" // ke + "керла зеланди\0" // nz + "керла каледони\0" // nc + "кина\0" // cn + "кипар\0" // cy + "кипр\0" // cy + "кипър\0" // cy + "кирги́зїа\0" // kg + "киргизи\0" // kg + "киргизия\0" // kg + "киргизстан\0" // kg + "киргистан\0" // kg + "кирибати\0" // ki + "китай\0" // cn + "клиппертон\0" // cp + "клиппертон адасы\0" // cp + "клиппертон арал\0" // cp + "клиппертон аралы\0" // cp + "клиппертон ороли\0" // cp + "кндр\0" // kp + "кокос (келинг) острва\0" // cc + "кокос (кийлинг) арлууд\0" // cc + "кокос (килинг) адалары\0" // cc + "кокос (килинг) аралдары\0" // cc + "кокос (килинг) ороллари\0" // cc + "кокос (килинг) утраулары\0" // cc + "кокосийн гӏайренаш\0" // cc + "кокосова (килингова) острва\0" // cc + "кокосови (килиншки) острови\0" // cc + "кокосови острови (острови кийлинг)\0" // cc + "кокосовые о-ва\0" // cc + "кокосові (кілінгові) острови\0" // cc + "колумби\0" // co + "колумбия\0" // co + "колумбија\0" // co + "колумбія\0" // co + "комор\0" // km + "комор адалары\0" // km + "комор аралдары\0" // km + "комор ороллари\0" // km + "комор утраулары\0" // km + "комораш\0" // km + "комори\0" // km + "коморос\0" // km + "коморска острва\0" // km + "коморски острови\0" // km + "коморські острови\0" // km + "коморы\0" // km + "коморын арлууд\0" // km + "конга (дрк)\0" // cd + "конга (кіншаса)\0" // cd + "конга - бразавіль\0" // cg + "конго (бразавил)\0" // cg + "конго (бүгд найрамдах улс)\0" // cg + "конго (демократска република конго)\0" // cd + "конго (дрк)\0" // cd + "конго (кдр)\0" // cd + "конго (киншаса)\0" // cd + "конго (република)\0" // cg + "конго (республика)\0" // cg + "конго (республикасы)\0" // cg + "конго (республіка)\0" // cg + "конго (ҷдк)\0" // cd + "конго - бразавил\0" // cg + "конго - браззавиль\0" // cg + "конго - киншаса\0" // cd + "конго браззавиль\0" // cg + "конго демократиялық республикасы\0" // cd + "конго республикасы\0" // cg + "конго – браззавіль\0" // cg + "конго – кіншаса\0" // cd + "конго-браззавил\0" // cg + "конго-браззавиль республикасы\0" // cg + "конго-киншаса\0" // cd + "кореяи шимолӣ\0" // kp + "косава\0" // xk + "косово\0" // xk + "коста рика\0" // cr + "коста-рика\0" // cr + "коста-рыка\0" // cr + "коста-ріка\0" // cr + "костарика\0" // cr + "кот д’ивоар\0" // ci + "кот-д’ивуар\0" // ci + "кот-д’івуар\0" // ci + "куба\0" // cu + "кувајт\0" // kw + "кувейт\0" // kw + "кук адалары\0" // ck + "кук аралдары\0" // ck + "кук ороллари\0" // ck + "кук утраулары\0" // ck + "кукан гӏайренаш\0" // ck + "кукова острва\0" // ck + "кукови острови\0" // ck + "курасао\0" // cw + "кууба\0" // cu + "кхазакхстан\0" // kz + "къилба джорджи а, къилба гавайн гӏайренаш а\0" // gs + "къилба корей\0" // kr + "къилба судан\0" // ss + "къилба-африкин республика\0" // za + "къилбаседа корей\0" // kp + "къилбаседа марианан гӏайренаш\0" // mp + "кыргызстан\0" // kg + "кытай\0" // cn + "кюрасаа\0" // cw + "кюрасао\0" // cw + "кіпр\0" // cy + "кірыбаці\0" // ki + "кірібаті\0" // ki + "кітай\0" // cn + "күвејт\0" // kw + "күвәйт\0" // kw + "күүкийн арлууд\0" // ck + "көньяк африка\0" // za + "көньяк георгия һәм көньяк сандвич утраулары\0" // gs + "көньяк судан\0" // ss + "лаос\0" // la + "латви\0" // lv + "латвия\0" // lv + "латвија\0" // lv + "латвія\0" // lv + "лаҳистон\0" // pl + "лесота\0" // ls + "лесото\0" // ls + "летонија\0" // lv + "либан\0" // lb + "либери\0" // lr + "либерия\0" // lr + "либерија\0" // lr + "либия\0" // ly + "либија\0" // ly + "ливан\0" // lb + "ливи\0" // ly + "ливия\0" // ly + "ливија\0" // ly + "лиибийэ\0" // ly + "литва\0" // lt + "литванија\0" // lt + "лихтенштајн\0" // li + "лихтенштейн\0" // li + "лихтенштејн\0" // li + "лихтенщайн\0" // li + "лубнон\0" // lb + "луксембург\0" // lu + "люксембург\0" // lu + "люксембурґ\0" // lu + "ліберыя\0" // lr + "ліберія\0" // lr + "ліван\0" // lb + "лівія\0" // ly + "літва\0" // lt + "ліхтенштейн\0" // li + "ліхтэнштэйн\0" // li + "лүксембург\0" // lu + "мʼянма (бірма)\0" // mm + "маврики\0" // mu + "маврикий\0" // mu + "мавритани\0" // mr + "мавритания\0" // mr + "мавританија\0" // mr + "мавританія\0" // mr + "мавриций\0" // mu + "маврициус\0" // mu + "маврікій\0" // mu + "мадагаскар\0" // mg + "мазамбік\0" // mz + "майот\0" // yt + "майотта\0" // yt + "макаа\0" // mo + "макаа, сар (кітай)\0" // mo + "макао\0" // mo + "макао (ммм)\0" // mo + "макао (сар кина)\0" // mo + "макао (сар)\0" // mo + "макао (хитой ммҳ)\0" // mo + "макао (ша-къаьстина кӏошт)\0" // mo + "макао аәа\0" // mo + "макао махсус идарәле төбәге\0" // mo + "макао сар\0" // mo + "макао хүсуси инзибати әрази чин\0" // mo + "макао, о.а.р китаю\0" // mo + "макао, сар на китай\0" // mo + "макау\0" // mo + "макау кытай ааа\0" // mo + "македон\0" // mk + "македон (хуучин югославын бүрэлдэхүүний македон)\0" // mk + "македони\0" // mk + "македония\0" // mk + "македония (бюрм)\0" // mk + "македония (македония элекке югославия республикасы)\0" // mk + "македония (мсюр)\0" // mk + "македония (мур. югосл.)\0" // mk + "македония республикасы\0" // mk + "македонија\0" // mk + "македонија (бјр)\0" // mk + "македонија (бјрм)\0" // mk + "македонија (кјрм)\0" // mk + "македонія\0" // mk + "македонія (бюрм)\0" // mk + "македонія (кюрм)\0" // mk + "малави\0" // mw + "малаві\0" // mw + "малайз\0" // my + "малайзи\0" // my + "малайзия\0" // my + "малайзія\0" // my + "малајзија\0" // my + "малдив\0" // mv + "малдив адалары\0" // mv + "малдиви\0" // mv + "малдова\0" // md + "малезија\0" // my + "мали\0" // ml + "малта\0" // mt + "малхбален тимор\0" // tl + "малхбузен саьхьара\0" // eh + "малые тихоокеанские отдаленные острова сша\0" // um + "малыя аддаленыя астравы зша\0" // um + "мальдив\0" // mv + "мальдив аралдары\0" // mv + "мальдив ороллари\0" // mv + "мальдив утраулары\0" // mv + "мальдиваш\0" // mv + "мальдивы\0" // mv + "мальдывы\0" // mv + "мальдіви\0" // mv + "мальта\0" // mt + "малі\0" // ml + "манака\0" // mc + "манголія\0" // mn + "мантсерат\0" // ms + "марказий африка республикаси\0" // cf + "марока\0" // ma + "марокаш\0" // ma + "марокко\0" // ma + "мароко\0" // ma + "мартиник\0" // mq + "мартиника\0" // mq + "мартініка\0" // mq + "марцініка\0" // mq + "маршал адалары\0" // mh + "маршал ороллари\0" // mh + "маршалавы астравы\0" // mh + "маршалл аралдары\0" // mh + "маршалл утраулары\0" // mh + "маршаллан гӏайренаш\0" // mh + "маршалловы острова\0" // mh + "маршаллові острови\0" // mh + "маршаллын арлууд\0" // mh + "маршалови острови\0" // mh + "маршалска острва\0" // mh + "маршалски острови\0" // mh + "мауританија\0" // mr + "маурицијус\0" // mu + "маёта\0" // yt + "мађарска\0" // hu + "мајот\0" // yt + "мајоте\0" // yt + "мања удаљена острва сад\0" // um + "маўрыкій\0" // mu + "маўрытанія\0" // mr + "мақдун\0" // mk + "мақдун (ҷсюм)\0" // mk + "маҷористон\0" // hu + "маҹарыстан\0" // hu + "ме́ѯїко\0" // mx + "мексик\0" // mx + "мексика\0" // mx + "мексико\0" // mx + "мексіка\0" // mx + "мен адасы\0" // im + "меърож ороли\0" // ac + "мианмар (бирма)\0" // mm + "микронези\0" // fm + "микронезин федеративни штаташ\0" // fm + "микронезия\0" // fm + "микронезија\0" // fm + "милад адасы\0" // cx + "минтақаҳои ҷанубии фаронса\0" // tf + "мисар\0" // eg + "мисир\0" // eg + "миср\0" // eg + "мисыр\0" // eg + "миэксикэ\0" // mx + "мијанмар (бурма)\0" // mm + "мозамбик\0" // mz + "мозамбік\0" // mz + "молдав\0" // md + "молдави\0" // md + "молдавија\0" // md + "молдова\0" // md + "монако\0" // mc + "монгол\0" // mn + "монголи\0" // mn + "монголия\0" // mn + "монголија\0" // mn + "монголустан\0" // mn + "монголія\0" // mn + "монсерат\0" // ms + "монтенегро\0" // me + "монтсерат\0" // ms + "монтсеррат\0" // ms + "морокко\0" // ma + "моңғолия\0" // mn + "муғулистон\0" // mn + "муқаддас елена ороли\0" // sh + "мысыр\0" // eg + "мьянма (бирма)\0" // mm + "мьянмар\0" // mm + "мэн арал\0" // im + "мэн аралы\0" // im + "мэн арыы\0" // im + "мэн гӏайре\0" // im + "мэн ороли\0" // im + "мэн утравы\0" // im + "мянма\0" // mm + "мікранезія\0" // fm + "мікронезія\0" // fm + "мјанма\0" // mm + "мјанмар\0" // mm + "мјанмар (бурма)\0" // mm + "мүгәддәс пјер вә микелон\0" // pm + "мүгәддәс јелена\0" // sh + "мәракеш\0" // ma + "мәркәзи африка республикасы\0" // cf + "м’янма (бірма)\0" // mm + "намиби\0" // na + "намибия\0" // na + "намибија\0" // na + "намібія\0" // na + "нарвегія\0" // no + "науру\0" // nr + "немачка\0" // de + "непал\0" // np + "нигер\0" // ne + "нигери\0" // ng + "нигерия\0" // ng + "нигерија\0" // ng + "нидерланд\0" // nl + "нидерландаш\0" // nl + "нидерландия\0" // nl + "нидерланды\0" // nl + "никарагва\0" // ni + "никарагуа\0" // ni + "ниуе\0" // nu + "ниуэ\0" // nu + "ниује\0" // nu + "ниҝер\0" // ne + "ниҝерија\0" // ng + "нов зеланд\0" // nz + "нова зеландия\0" // nz + "нова зеландія\0" // nz + "нова каледония\0" // nc + "нова каледонија\0" // nc + "нова каледонія\0" // nc + "новая зеландия\0" // nz + "новая зеландыя\0" // nz + "новая каледония\0" // nc + "новая каледонія\0" // nc + "нови зеланд\0" // nz + "номхон далайг тойрсон улс орнууд\0" // qo + "норвеги\0" // no + "норвегия\0" // no + "норвеч\0" // no + "норвешка\0" // no + "норвеґія\0" // no + "норфолк адасы\0" // nf + "норфолк арал\0" // nf + "норфолк аралы\0" // nf + "норфолк гӏайре\0" // nf + "норфолк ороллари\0" // nf + "норфолк утравы\0" // nf + "норфолшки остров\0" // nf + "нігер\0" // ne + "нігерыя\0" // ng + "нігерія\0" // ng + "нідерланди\0" // nl + "нідерландські карибські острови\0" // bq + "нідэрланды\0" // nl + "нікарагуа\0" // ni + "нікараґуа\0" // ni + "німеччина\0" // de + "ніуе\0" // nu + "ніуэ\0" // nu + "о-в буве\0" // bv + "о-в вознесения\0" // ac + "о-в клиппертон\0" // cp + "о-в мэн\0" // im + "о-в норфолк\0" // nf + "о-в рождества\0" // cx + "о-в св. елены\0" // sh + "о-ва кука\0" // ck + "о-ва питкэрн\0" // pn + "о-ва тёркс и кайкос\0" // tc + "о-ва херд и макдональд\0" // hm + "оаэ\0" // ae + "обʼєднані арабські емірати\0" // ae + "обала бјелокости\0" // ci + "обала слоноваче\0" // ci + "обала слоноваче (кот д’ивоар)\0" // ci + "обединени арабски емирства\0" // ae + "обединеното кралство\0" // gb + "обединети арапски емирати\0" // ae + "обединето кралство\0" // gb + "объединенные арабские эмираты\0" // ae + "овхӏан мохк\0" // af + "озарбайжон\0" // az + "озарбойҷон\0" // az + "ок\0" // gb + "океанија (удаљена острва)\0" // qo + "оландска острва\0" // ax + "оландски острови\0" // ax + "оман\0" // om + "орос\0" // ru + "орталық африка республикасы\0" // cf + "остала океанија\0" // qo + "острва туркс и каикос\0" // tc + "острво асенсион\0" // ac + "острво буве\0" // bv + "острво клипертон\0" // cp + "острво ман\0" // im + "острво мен\0" // im + "острво норфок\0" // nf + "острво норфолк\0" // nf + "острво херд и мекдоналдова острва\0" // hm + "остров асенсион\0" // ac + "остров буве\0" // bv + "остров възнесение\0" // ac + "остров клипертон\0" // cp + "остров ман\0" // im + "остров норфолк\0" // nf + "остров рождество\0" // cx + "остров херд и острови мекдоналд\0" // hm + "острова кука\0" // ck + "острови кук\0" // ck + "острови кука\0" // ck + "острови питкерн\0" // pn + "острови піткерн\0" // pn + "острови теркс і кайкос\0" // tc + "острови туркс и каикос\0" // tc + "острови търкс и кайкос\0" // tc + "острови хърд и макдоналд\0" // hm + "острів буве\0" // bv + "острів вознесіння\0" // ac + "острів герд і острови макдоналд\0" // hm + "острів кліппертон\0" // cp + "острів мен\0" // im + "острів норфолк\0" // nf + "острів різдва\0" // cx + "острів святої єлени\0" // sh + "отдалечени острови на океания\0" // qo + "отдалечени острови на сащ\0" // um + "оу҆краи́на\0" // ua + "оңтүстік африка республикасы\0" // za + "оңтүстік георгия және оңтүстік сандвич аралдары\0" // gs + "оңтүстік корея\0" // kr + "оңтүстік судан\0" // ss + "пакистан\0" // pk + "пакістан\0" // pk + "палау\0" // pw + "палестин\0" // ps + "палестина\0" // ps + "палестина аймактары\0" // ps + "палестина аймақтары\0" // ps + "палестинске територије\0" // ps + "палестински територии\0" // ps + "палестинские территории\0" // ps + "палестинські території\0" // ps + "палестины нутаг дэвсгэрүүд\0" // ps + "палестӏина\0" // ps + "палестӏинан латтанаш\0" // ps + "палесціна\0" // ps + "палесцінскія тэрыторыі\0" // ps + "панам\0" // pa + "панама\0" // pa + "папуа - янги гвинея\0" // pg + "папуа - яңа гвинея\0" // pg + "папуа гвинеяи нав\0" // pg + "папуа нова гвинеја\0" // pg + "папуа шинэ гвиней\0" // pg + "папуа — жаңа гвинея\0" // pg + "папуа — керла гвиней\0" // pg + "папуа — новая гвинея\0" // pg + "папуа-жаңы гвинея\0" // pg + "папуа-нова гвинея\0" // pg + "папуа-нова ґвінея\0" // pg + "папуа-новая гвінея\0" // pg + "папуа-јени гвинеја\0" // pg + "парагвай\0" // py + "парагвај\0" // py + "параґвай\0" // py + "партугалія\0" // pt + "паўднёва-афрыканская рэспубліка\0" // za + "паўднёвая джорджыя і паўднёвыя сандвічавы астравы\0" // gs + "паўднёвая карэя\0" // kr + "паўднёвы судан\0" // ss + "паўночная карэя\0" // kp + "паўночныя марыянскія астравы\0" // mp + "перу\0" // pe + "пил сөөктүү жээк\0" // ci + "питкерн\0" // pn + "питкерн адалары\0" // pn + "питкернски острови\0" // pn + "питкэрн аралдары\0" // pn + "питкэрн арлууд\0" // pn + "питкэрн гӏайренаш\0" // pn + "питкэрн ороллари\0" // pn + "питкэрн утраулары\0" // pn + "покистон\0" // pk + "полинезия (франциялык)\0" // pf + "полинезияи фаронса\0" // pf + "полска\0" // pl + "полша\0" // pl + "польш\0" // pl + "польша\0" // pl + "польшча\0" // pl + "польща\0" // pl + "порторико\0" // pr + "португал\0" // pt + "португали\0" // pt + "португалия\0" // pt + "португалија\0" // pt + "портуґалія\0" // pt + "пољска\0" // pl + "пуерто рико\0" // pr + "пуерто-ріко\0" // pr + "пуэрта-рыка\0" // pr + "пуэрто-рико\0" // pr + "південна джорджія та південні сандвічеві острови\0" // gs + "південна корея\0" // kr + "південний судан\0" // ss + "південно-африканська республіка\0" // za + "північна корея\0" // kp + "північні маріанські острови\0" // mp + "піл сүйегі жағалауы\0" // ci + "пәкістан\0" // pk + "расія\0" // ru + "раштуа утравы\0" // cx + "реинион\0" // re + "република конго\0" // cg + "република македонија\0" // mk + "република чешка\0" // cz + "ресей\0" // ru + "республика конго\0" // cg + "республика корея\0" // kr + "реунион\0" // re + "реюнион\0" // re + "реюньйон\0" // re + "реюньон\0" // re + "рејунјон\0" // re + "рождество аралы\0" // cx + "рождество ороли\0" // cx + "романија\0" // ro + "росси\0" // ru + "россия\0" // ru + "росія\0" // ru + "руанда\0" // rw + "руминия\0" // ro + "румунија\0" // ro + "румунія\0" // ro + "румъния\0" // ro + "румын\0" // ro + "румыни\0" // ro + "румыния\0" // ro + "румынија\0" // ro + "румынія\0" // ro + "русия\0" // ru + "русија\0" // ru + "рэспубліка конга\0" // cg + "рэюньён\0" // re + "рѡссі́а\0" // ru + "сад\0" // us + "саламонавы астравы\0" // sb + "салвадор\0" // sv + "сальвадор\0" // sv + "самалі\0" // so + "самоа\0" // ws + "самоаи америка\0" // as + "сан марино\0" // sm + "сан томе ва принсипи\0" // st + "сан-марино\0" // sm + "сан-марына\0" // sm + "сан-маріно\0" // sm + "сан-тамэ і прынсіпі\0" // st + "сан-томе а, принсипи а\0" // st + "сан-томе ва принсипи\0" // st + "сан-томе вә принсипи\0" // st + "сан-томе жана принсипи\0" // st + "сан-томе және принсипи\0" // st + "сан-томе и принсипи\0" // st + "сан-томе принсипи\0" // st + "сан-томе і прінсіпі\0" // st + "сан-томе һәм принсипи\0" // st + "сао томе и принсипе\0" // st + "сао томе и принсипи\0" // st + "сао томе и принципе\0" // st + "сар макао\0" // mo + "сар макао (кина)\0" // mo + "сар хонгконг\0" // hk + "сар хонгконг (кина)\0" // hk + "сауд арабиясы\0" // sa + "саудаўская аравія\0" // sa + "саудиска арабија\0" // sa + "саудитска арабия\0" // sa + "саудия арабистони\0" // sa + "саудијска арабија\0" // sa + "саудовская аравия\0" // sa + "саудын араб\0" // sa + "саудівська аравія\0" // sa + "сащ\0" // us + "саӏудийн ӏаьрбийчоь\0" // sa + "свази\0" // sz + "свазиланд\0" // sz + "свазиленд\0" // sz + "свазіленд\0" // sz + "свалбард ба ян майен\0" // sj + "свалбард ва ян-майен\0" // sj + "свалбард вә јан-мајен\0" // sj + "свалбард и жан мејен\0" // sj + "свалбард и ян майен\0" // sj + "свалбард и јан мајен\0" // sj + "света елена\0" // sh + "света луција\0" // lc + "света хелена\0" // sh + "света јелена\0" // sh + "свети бартоломеј\0" // bl + "свети вартоломеј\0" // bl + "свети винсент и гренадини\0" // vc + "свети китс и невис\0" // kn + "свети кристофор и невис\0" // kn + "свети мартин (француска)\0" // mf + "свети мартин (холандија)\0" // sx + "свети пјер и микелон\0" // pm + "свети тома и принцип\0" // st + "северна корея\0" // kp + "северна кореја\0" // kp + "северна маријанска острва\0" // mp + "северни мариански острови\0" // mp + "северни маријански острови\0" // mp + "северные марианские о-ва\0" // mp + "сейнт винсънт и гренадини\0" // vc + "сейнт китс и невис\0" // kn + "сейнт лусия\0" // lc + "сейшел\0" // sc + "сейшел аралдары\0" // sc + "сейшел ороллари\0" // sc + "сейшел утраулары\0" // sc + "сейшелан гӏайренаш\0" // sc + "сейшели\0" // sc + "сейшелийн арлууд\0" // sc + "сейшель аралдары\0" // sc + "сейшельские острова\0" // sc + "сейшельські острови\0" // sc + "сейшэльскія астравы\0" // sc + "сен бартелеми\0" // bl + "сен мартен\0" // mf + "сен пиер и микелон\0" // pm + "сен пјер и микелон\0" // pm + "сен-бартелеми\0" // bl + "сен-бартельми\0" // bl + "сен-бартельмі\0" // bl + "сен-бартэльмі\0" // bl + "сен-мартен\0" // mf + "сен-мартэн\0" // mf + "сен-пʼєр і мікелон\0" // pm + "сен-пьер а, микелон а\0" // pm + "сен-пьер жана микелон\0" // pm + "сен-пьер және микелон\0" // pm + "сен-пьер и микелон\0" // pm + "сен-пьер һәм микелон\0" // pm + "сен-п’ер і мікелон\0" // pm + "сенегал\0" // sn + "сент бартелеми\0" // bl + "сент винсент и гренадини\0" // vc + "сент елена\0" // sh + "сент китс и невис\0" // kn + "сент лусија\0" // lc + "сент люсиа\0" // lc + "сент мартин\0" // mf + "сент пјер и микелан\0" // pm + "сент хелена\0" // sh + "сент-бартелеми\0" // bl + "сент-бартелми\0" // bl + "сент-бартельми\0" // bl + "сент-винсент а, гренадинаш а\0" // vc + "сент-винсент ба гренадин\0" // vc + "сент-винсент ва гренадин\0" // vc + "сент-винсент ва гренадина\0" // vc + "сент-винсент вә гренадинләр\0" // vc + "сент-винсент жана гренадиндер\0" // vc + "сент-винсент және гренадин аралдары\0" // vc + "сент-винсент и гренадины\0" // vc + "сент-винсент һәм гренадин\0" // vc + "сент-вінсент і грэнадзіны\0" // vc + "сент-вінсент і ґренадіни\0" // vc + "сент-китс а, невис а\0" // kn + "сент-китс ва невис\0" // kn + "сент-китс вә невис\0" // kn + "сент-китс жана невис\0" // kn + "сент-китс және невис\0" // kn + "сент-китс и невис\0" // kn + "сент-китс һәм невис\0" // kn + "сент-киттс ба невис\0" // kn + "сент-кітс і невіс\0" // kn + "сент-лусија\0" // lc + "сент-люси\0" // lc + "сент-люсия\0" // lc + "сент-люсія\0" // lc + "сент-мартин\0" // mf + "сент-пер ва микелон\0" // pm + "сент-пьер ба микело\0" // pm + "сент-пьер ва микелон\0" // pm + "серби\0" // rs + "сербия\0" // rs + "сербија\0" // rs + "сербія\0" // rs + "сеута а, мелилья а\0" // ea + "сеута ба мелилья\0" // ea + "сеута вә мелилја\0" // ea + "сеута жана мелилла\0" // ea + "сеута және мелилья\0" // ea + "сеута и мелилья\0" // ea + "сеута и мелия\0" // ea + "сеута и мелиља\0" // ea + "сеута і мелілья\0" // ea + "сејшел адалары\0" // sc + "сејшели\0" // sc + "сеўта і мелілья\0" // ea + "сиера леоне\0" // sl + "сиерра-леоне\0" // sl + "сийлахьчу еленин гӏайре\0" // sh + "сингапур\0" // sg + "синт мартен\0" // sx + "синт-маартен\0" // sx + "синт-мартен\0" // sx + "сири\0" // sy + "сирия\0" // sy + "сирија\0" // sy + "сирія\0" // sy + "сијера леоне\0" // sl + "славакія\0" // sk + "славенія\0" // si + "словак\0" // sk + "словаки\0" // sk + "словакия\0" // sk + "словакија\0" // sk + "словачка\0" // sk + "словаччина\0" // sk + "словени\0" // si + "словения\0" // si + "словенија\0" // si + "словенія\0" // si + "согуд гарәбстаны\0" // sa + "соединенные штаты\0" // us + "соединети американски држави\0" // us + "соломон адалары\0" // sb + "соломон аралдары\0" // sb + "соломон ороллари\0" // sb + "соломонан гӏайренаш\0" // sb + "соломонови острови\0" // sb + "соломоновы острова\0" // sb + "соломонові острови\0" // sb + "соломонска острва\0" // sb + "соломонски острови\0" // sb + "соломоны арлууд\0" // sb + "солтүстік корея\0" // kp + "солтүстік мариана аралдары\0" // mp + "сомали\0" // so + "сомалия\0" // so + "сомалија\0" // so + "сомалі\0" // so + "сомалӣ\0" // so + "сполучені штати\0" // us + "србија\0" // rs + "средњоафричка република\0" // cf + "стыр британи\0" // gb + "судаан\0" // sd + "судан\0" // sd + "судон\0" // sd + "судони ҷанубӣ\0" // ss + "суринам\0" // sr + "сурия\0" // sy + "сурија\0" // sy + "сурынам\0" // sr + "сурінам\0" // sr + "східний тимор\0" // tl + "сша\0" // us + "съединени щати\0" // us + "сърбия\0" // rs + "сьера-леонэ\0" // sl + "сьерра- леоне\0" // sl + "сьерра-леоне\0" // sl + "сьєрра-леоне\0" // sl + "сэута ва мелилла\0" // ea + "сянган\0" // hk + "сянган аәа\0" // hk + "сінгапур\0" // sg + "сінт-мартен\0" // sx + "сінт-мартэн\0" // sx + "сірыя\0" // sy + "сјеверна кореја\0" // kp + "сјеверна маријанска острва\0" // mp + "сједињене америчке државе\0" // us + "сједињене државе\0" // us + "сјерра-леоне\0" // sl + "сүрия\0" // sy + "сәудијјә әрәбистаны\0" // sa + "сөләйман утраулары\0" // sb + "таджикистан\0" // tj + "таджыкістан\0" // tj + "тажикистан\0" // tj + "тажикстан\0" // tj + "таиланд\0" // th + "тайван\0" // tw + "тайвань\0" // tw + "тайланд\0" // th + "такелау\0" // tk + "танзани\0" // tz + "танзания\0" // tz + "танзанија\0" // tz + "танзанія\0" // tz + "таїланд\0" // th + "тајван\0" // tw + "тајланд\0" // th + "таџикистан\0" // tj + "таҗикстан\0" // tj + "таҹикистан\0" // tj + "теркс және кайкос аралдары\0" // tc + "теркс һәм кайкос утраулары\0" // tc + "тимор-лесте\0" // tl + "тимор-лесте (источни тимор)\0" // tl + "тога\0" // tg + "того\0" // tg + "тожикистон\0" // tj + "токелау\0" // tk + "тонга\0" // to + "тонґа\0" // to + "тоҷикистон\0" // tj + "тринидад а, тобаго а\0" // tt + "тринидад ба тобаго\0" // tt + "тринидад ва тобаго\0" // tt + "тринидад вә тобаго\0" // tt + "тринидад жана тобаго\0" // tt + "тринидад және тобаго\0" // tt + "тринидад и тобаго\0" // tt + "тринидад һәм тобаго\0" // tt + "тристан да кунъя\0" // ta + "тристан да куня\0" // ta + "тристан да кунја\0" // ta + "тристан да куња\0" // ta + "тристан-да- кунья\0" // ta + "тристан-да-кунья\0" // ta + "тристан-да-куня\0" // ta + "трынідад і табага\0" // tt + "трыстан-да-кунья\0" // ta + "трінідад і тобаґо\0" // tt + "трістан-да-кунья\0" // ta + "тувалу\0" // tv + "тунис\0" // tn + "туніс\0" // tn + "туреччина\0" // tr + "турк\0" // tr + "турк ба кайкосын арлууд\0" // tc + "туркия\0" // tr + "туркманистон\0" // tm + "туркмени\0" // tm + "туркменистан\0" // tm + "туркменістан\0" // tm + "туркойчоь\0" // tr + "туркс ва кайкос ороллари\0" // tc + "туркс и кајкос острва\0" // tc + "турска\0" // tr + "турция\0" // tr + "турција\0" // tr + "турцыя\0" // tr + "тымор-лешці\0" // tl + "тёркс а, кайкос а гӏайренаш\0" // tc + "тімор-лешті\0" // tl + "түндүк корея\0" // kp + "түндүк мариана аралдары\0" // mp + "түркия\0" // tr + "түркијә\0" // tr + "түркмәнистан\0" // tm + "түркмөнстан\0" // tm + "түркс жана кайкос аралдары\0" // tc + "түрікменстан\0" // tm + "түштүк жоржия жана түштүк сэндвич аралдары\0" // gs + "түштүк корея\0" // kr + "түштүк судан\0" // ss + "түштүк-африка республикасы\0" // za + "тәжікстан\0" // tj + "төв африкийн бүгд найрамдах улс\0" // cf + "төньяк корея\0" // kp + "төньяк мариана утраулары\0" // mp + "төркия\0" // tr + "төркмәнстан\0" // tm + "төркс вә кајкос адалары\0" // tc + "уб\0" // gb + "уганда\0" // ug + "угорщина\0" // hu + "удаљена острва сад\0" // um + "узаг океанија\0" // qo + "узбекистан\0" // uz + "узбекістан\0" // uz + "ук\0" // gb + "украин\0" // ua + "украина\0" // ua + "украйна\0" // ua + "украіна\0" // ua + "україна\0" // ua + "украјина\0" // ua + "украјна\0" // ua + "улуу британия\0" // gb + "уммон\0" // om + "умон\0" // om + "унгар\0" // hu + "унгария\0" // hu + "унгарија\0" // hu + "уолис и футуна\0" // wf + "уоллис а, футуна а\0" // wf + "уоллис ба футуна\0" // wf + "уоллис ва футуна\0" // wf + "уоллис вә футуна\0" // wf + "уоллис жана футуна\0" // wf + "уоллис және футуна\0" // wf + "уоллис и футуна\0" // wf + "уоллис һәм футуна\0" // wf + "уолліс і футуна\0" // wf + "уоліс і футуна\0" // wf + "урдан\0" // jo + "урдун\0" // jo + "уругвай\0" // uy + "уругвај\0" // uy + "уруґвай\0" // uy + "усходні тымор\0" // tl + "уједињени арапски емирати\0" // ae + "уједињено краљевство\0" // gb + "уӕрӕсе\0" // ru + "фаластин\0" // ps + "фаластин ҳудуди\0" // ps + "фалклендскія (мальвінскія) астравы\0" // fk + "фалклендскія астравы\0" // fk + "фарер адалары\0" // fo + "фарер аралдары\0" // fo + "фарер ороллари\0" // fo + "фарер утраулары\0" // fo + "фарерийн гӏайренаш\0" // fo + "фарерские о-ва\0" // fo + "фарерські острови\0" // fo + "фарерын арлууд\0" // fo + "фарска острва\0" // fo + "фарски острови\0" // fo + "фарьорски острови\0" // fo + "фарэрскія астравы\0" // fo + "федеративные штаты микронезии\0" // fm + "федеративні штати мікронезії\0" // fm + "фиджи\0" // fj + "фижи\0" // fj + "фил суяги қирғоғи\0" // ci + "филипини\0" // ph + "филиппин\0" // ph + "филиппин аралдары\0" // ph + "филиппинаш\0" // ph + "филиппины\0" // ph + "филлипин\0" // ph + "финланд\0" // fi + "финландия\0" // fi + "финландија\0" // fi + "финлянди\0" // fi + "финляндия\0" // fi + "финска\0" // fi + "фиџи\0" // fj + "фиҷи\0" // fj + "фиҹи\0" // fj + "фокландска (малвинска) острва\0" // fk + "фокландска острва\0" // fk + "фолкландски острови\0" // fk + "фолкландски острови (малвински острови)\0" // fk + "фолкленд (малвин) ороллари\0" // fk + "фолкленд (мальвина) аралдары\0" // fk + "фолкленд адалары\0" // fk + "фолкленд адалары (малвин адалары)\0" // fk + "фолкленд аралдары\0" // fk + "фолкленд аралдары (мальвин аралдары)\0" // fk + "фолкленд ороллари\0" // fk + "фолкленд утраулары\0" // fk + "фолклендан гӏайренаш\0" // fk + "фолклендан гӏайренаш (мальвинаш)\0" // fk + "фолклендийн арлууд\0" // fk + "фолклендийн арлууд (мальвины арлууд)\0" // fk + "фолклендски острови\0" // fk + "фолклендски острови (малвински острови)\0" // fk + "фолклендские (мальвинские) о-ва\0" // fk + "фолклендские о-ва\0" // fk + "фолклендські (мальвінські) острови\0" // fk + "фолклендські острови\0" // fk + "франса\0" // fr + "франса гвианасы\0" // gf + "франса полинезијасы\0" // pf + "франсанын ҹәнуб әразиләри\0" // tf + "франсия\0" // fr + "франц\0" // fr + "франци\0" // fr + "франция\0" // fr + "франциянең көньяк территорияләре\0" // tf + "франциянын түштүктөгү аймактары\0" // tf + "францияның оңтүстік аймақтары\0" // tf + "франција\0" // fr + "француз гвианаси\0" // gf + "француз гвианасы\0" // gf + "француз жанубий ҳудудлари\0" // tf + "француз полинезиясе\0" // pf + "француз полинезияси\0" // pf + "француз полинезиясы\0" // pf + "француздук гвиана\0" // gf + "французийн гвиана\0" // gf + "французийн къилба латтанаш\0" // tf + "французийн полинези\0" // pf + "французская гвиана\0" // gf + "французская гвіяна\0" // gf + "французская палінезія\0" // pf + "французская полинезия\0" // pf + "французские южные территории\0" // tf + "французскія паўднёвыя тэрыторыі\0" // tf + "французька полінезія\0" // pf + "французька ґвіана\0" // gf + "французькі південні території\0" // tf + "француска\0" // fr + "француска гвајана\0" // gf + "француска полинезија\0" // pf + "француске јужне територије\0" // tf + "француски јужни територии\0" // tf + "францын гвиана\0" // gf + "францын полинез\0" // pf + "францын өмнөд газар нутаг\0" // tf + "францыя\0" // fr + "франція\0" // fr + "френска гвиана\0" // gf + "френска полинезия\0" // pf + "френски южни територии\0" // tf + "фіджы\0" // fj + "фіджі\0" // fj + "філіппіни\0" // ph + "філіпіны\0" // ph + "фінляндыя\0" // fi + "фінляндія\0" // fi + "хаити\0" // ht + "харватыя\0" // hr + "херд аралы және макдональд аралдары\0" // hm + "херд ба макдональдийн арлууд\0" // hm + "херд ва макдоналд ороллари\0" // hm + "херд гӏайре а, макдональд гӏайренаш а\0" // hm + "херд жана макдональд аралдары\0" // hm + "херд и мекдоналд острва\0" // hm + "херд утравы һәм макдональд утраулары\0" // hm + "хи́нскаѧ страна̀\0" // cn + "хитой\0" // cn + "хойд марианы арлууд\0" // mp + "хойд солонгос\0" // kp + "холандија\0" // nl + "хонг конг\0" // hk + "хонг конг (сар кина)\0" // hk + "хонг конг с.а.р кина\0" // hk + "хонгконг\0" // hk + "хондурас\0" // hn + "хонконг\0" // hk + "хонконг, сар на китай\0" // hk + "хорват\0" // hr + "хорвати\0" // hr + "хорватия\0" // hr + "хорватија\0" // hr + "хорватія\0" // hr + "хрватска\0" // hr + "хърватия\0" // hr + "хятад\0" // cn + "хӏинди\0" // in + "централноафриканска република\0" // cf + "централноафричка република\0" // cf + "центрально-африканская республика\0" // cf + "центральноафриканська республіка\0" // cf + "цийчоь\0" // cn + "црна гора\0" // me + "цхьанатоьхна штаташ\0" // us + "цэнтральна-афрыканская рэспубліка\0" // cf + "чад\0" // td + "чарнагорыя\0" // me + "черна гора\0" // me + "черногория\0" // me + "чеська республіка\0" // cz + "чех\0" // cz + "чех республикасы\0" // cz + "чехи\0" // cz + "чехия\0" // cz + "чехия республикаси\0" // cz + "чехия республикасы\0" // cz + "чехија\0" // cz + "чехія\0" // cz + "чешка\0" // cz + "чешка република\0" // cz + "чиили\0" // cl + "чиле\0" // cl + "чили\0" // cl + "чин\0" // cn + "чорногорія\0" // me + "чыгыш тимор\0" // tl + "чылі\0" // cl + "чэхія\0" // cz + "чэшская рэспубліка\0" // cz + "чілі\0" // cl + "шарқий тимор\0" // tl + "шаҳри вотикон\0" // va + "швајцарија\0" // ch + "швајцарска\0" // ch + "швед\0" // se + "шведска\0" // se + "швейтсария\0" // ch + "швейцари\0" // ch + "швейцария\0" // ch + "швейцарыя\0" // ch + "швейцарь\0" // ch + "швейцарія\0" // ch + "шветсия\0" // se + "швеци\0" // se + "швеция\0" // se + "швецыя\0" // se + "швеція\0" // se + "швицарска\0" // ch + "шема\0" // sy + "шимали кореја\0" // kp + "шимали мариан адалары\0" // mp + "шимолий корея\0" // kp + "шимолий марианна ороллари\0" // mp + "шинэ зеланд\0" // nz + "шинэ каледони\0" // nc + "шоҳигарии муттаҳида\0" // gb + "шпанија\0" // es + "шпитсберген ва ян майен\0" // sj + "шпицберген а, ян-майен а\0" // sj + "шпицберген жана ян-майен\0" // sj + "шпицберген және ян-майен\0" // sj + "шпицберген и ян-майен\0" // sj + "шпицберген һәм ян-майен\0" // sj + "шпіцберген і ян-маен\0" // sj + "шпіцберґен і ян-майен\0" // sj + "шри ланка\0" // lk + "шри-ланка\0" // lk + "шры-ланка\0" // lk + "шрі-ланка\0" // lk + "штатҳои федеративии микронезия\0" // fm + "шығыс тимор\0" // tl + "шәрги тимор\0" // tl + "ыйык елена\0" // sh + "эквадор\0" // ec + "экватарыяльная гвінея\0" // gq + "экваторан гвиней\0" // gq + "экватордук гвинея\0" // gq + "экваториал гвинея\0" // gq + "экваториаль гвинея\0" // gq + "экваториальная гвинея\0" // gq + "экваторлық гвинея\0" // gq + "экваторын гвиней\0" // gq + "эл-салвадор\0" // sv + "эль сальвадор\0" // sv + "эль-сальвадор\0" // sv + "энэтхэг\0" // in + "эритрей\0" // er + "эритрея\0" // er + "эрмалойчоь\0" // am + "эрон\0" // ir + "эрытрэя\0" // er + "эстони\0" // ee + "эстония\0" // ee + "эстонія\0" // ee + "этиоп\0" // et + "эфиопи\0" // et + "эфиопия\0" // et + "эфіопія\0" // et + "южен судан\0" // ss + "южна африка\0" // za + "южна джорджия и южни сандвичеви острови\0" // gs + "южна корея\0" // kr + "южная георгия и южные сандвичевы о-ва\0" // gs + "южно-африканская республика\0" // za + "южный судан\0" // ss + "юккъерчу африкин республика\0" // cf + "юнон\0" // gr + "ямайка\0" // jm + "яман\0" // ye + "янги зеландия\0" // nz + "янги каледония\0" // nc + "япон\0" // jp + "япони\0" // jp + "япония\0" // jp + "японія\0" // jp + "яңа зеландия\0" // nz + "яңа каледония\0" // nc + "ёндош океания\0" // qo + "єврозона\0" // ez + "єгипет\0" // eg + "ємен\0" // ye + "іарданія\0" // jo + "ізраіль\0" // il + "ізраїль\0" // il + "інданезія\0" // id + "індонезія\0" // id + "індыя\0" // in + "індія\0" // in + "ірак\0" // iq + "іран\0" // ir + "ірландыя\0" // ie + "ірландія\0" // ie + "ісландыя\0" // is + "ісландія\0" // is + "іспанія\0" // es + "італія\0" // it + "і҆́ндїа\0" // in + "і҆та́лїа\0" // it + "јамајка\0" // jm + "јапан\0" // jp + "јапонија\0" // jp + "јемен\0" // ye + "јени зеландија\0" // nz + "јени каледонија\0" // nc + "јерменија\0" // am + "јордан\0" // jo + "јужен судан\0" // ss + "јужна кореја\0" // kr + "јужна џорџија и јужна сендвич острва\0" // gs + "јужна џорџија и јужна сендвичка острва\0" // gs + "јужна џорџија и јужни сендвички острови\0" // gs + "јужни судан\0" // ss + "јужноафриканска република\0" // za + "јужноафричка република\0" // za + "јунаныстан\0" // gr + "јәмән\0" // ye + "њемачка\0" // de + "ўзбекистон\0" // uz + "џерзи\0" // je + "џерси\0" // je + "џибути\0" // dj + "ґайана\0" // gy + "ґваделупа\0" // gp + "ґватемала\0" // gt + "ґернсі\0" // gg + "ґренада\0" // gd + "ґренландія\0" // gl + "ґуам\0" // gu + "ґібралтар\0" // gi + "ғарбий саҳрои кабир\0" // eh + "җибүти\0" // dj + "қазақстан\0" // kz + "қазоқистон\0" // kz + "қаламрави британия дар уқёнуси ҳинд\0" // io + "қатар\0" // qa + "қирғизистон\0" // kg + "қозоғистон\0" // kz + "қувайт\0" // kw + "қырғызстан\0" // kg + "қытай\0" // cn + "ҝернси\0" // gg + "ҝүрҹүстан\0" // ge + "үзбәкстан\0" // uz + "үзәк африка республикасы\0" // cf + "үнді мұхитындағы британ аймағы\0" // io + "үндістан\0" // in + "ұлыбритания\0" // gb + "ҳиндистон\0" // in + "ҳиндустон\0" // in + "ҳонконг\0" // hk + "ҳонконг (ммм)\0" // hk + "ҷазираи буве\0" // bv + "ҷазираи крисмас\0" // cx + "ҷазираи мэн\0" // im + "ҷазираи норфолк\0" // nf + "ҷазираи сент-мартин\0" // mf + "ҷазираи ҳерд ва ҷазираҳои макдоналд\0" // hm + "ҷазираҳои аланд\0" // ax + "ҷазираҳои виргини британия\0" // vg + "ҷазираҳои виргини има\0" // vi + "ҷазираҳои кайман\0" // ky + "ҷазираҳои кокос (килинг)\0" // cc + "ҷазираҳои кук\0" // ck + "ҷазираҳои марианаи шимолӣ\0" // mp + "ҷазираҳои маршалл\0" // mh + "ҷазираҳои питкейрн\0" // pn + "ҷазираҳои соломон\0" // sb + "ҷазираҳои теркс ва кайкос\0" // tc + "ҷазираҳои фарер\0" // fo + "ҷазираҳои фолкленд\0" // fk + "ҷазираҳои хурди дурдасти има\0" // um + "ҷерси\0" // je + "ҷибути\0" // dj + "ҷорҷияи ҷанубӣ ва ҷазираҳои сандвич\0" // gs + "ҷумҳурии африқои марказӣ\0" // cf + "ҷумҳурии доминикан\0" // do + "ҷумҳурии чех\0" // cz + "ҹерси\0" // je + "ҹибути\0" // dj + "ҹәбәллүтариг\0" // gi + "ҹәнуб африка\0" // za + "ҹәнуби кореја\0" // kr + "ҹәнуби судан\0" // ss + "ҹәнуби ҹорҹија вә ҹәнуби сендвич адалары\0" // gs + "һаити\0" // ht + "һерд вә макдоналд адалары\0" // hm + "һиндистан\0" // in + "һонг конг\0" // hk + "һондурас\0" // hn + "һонк конг хүсуси инзибати әрази чин\0" // hk + "ӏарбийн цхьанатоьхна эмираташ\0" // ae + "ӏаьржаламанчоь\0" // me + "ӏиракъ\0" // iq + "ӏоман\0" // om + "әзірбайжан\0" // az + "әзәрбайҗан\0" // az + "әлҹәзаир\0" // dz + "әрмәнстан\0" // am + "әскенжін аралы\0" // ac + "әулие елена аралы\0" // sh + "әфганстан\0" // af + "әфганыстан\0" // af + "өзбекстан\0" // uz + "өзбәкистан\0" // uz + "өмнөд африк\0" // za + "өмнөд жоржиа ба өмнөд сэндвичийн арлууд\0" // gs + "өмнөд солонгос\0" // kr + "өмнөд судан\0" // ss + "ӯзбекистон\0" // uz + "ադրբեջան\0" // az + "ալանդյան կղզիներ\0" // ax + "ալբանիա\0" // al + "ալժիր\0" // dz + "ամերիկյան սամոա\0" // as + "ամն\0" // us + "ամն վիրջինյան կղզիներ\0" // vi + "անգոլա\0" // ao + "անգուիլա\0" // ai + "անդորրա\0" // ad + "անտարկտիդա\0" // aq + "անտիգուա և բարբուդա\0" // ag + "ավստրալիա\0" // au + "ավստրիա\0" // at + "արաբական միացյալ էմիրություններ\0" // ae + "արգենտինա\0" // ar + "արուբա\0" // aw + "արտաքին կղզիներ (ամն)\0" // um + "արտաքին օվկիանիա\0" // qo + "արևելյան թիմոր\0" // tl + "արևմտյան սահարա\0" // eh + "աֆղանստան\0" // af + "բահամաներ\0" // bs + "բահրեյն\0" // bh + "բանգլադեշ\0" // bd + "բարբադոս\0" // bb + "բելառուս\0" // by + "բելգիա\0" // be + "բելիզ\0" // bz + "բենին\0" // bj + "բերմուդներ\0" // bm + "բոթսվանա\0" // bw + "բոլիվիա\0" // bo + "բոսնիա և հերցեգովինա\0" // ba + "բութան\0" // bt + "բուլղարիա\0" // bg + "բուվե կղզի\0" // bv + "բուրկինա ֆասո\0" // bf + "բուրունդի\0" // bi + "բրազիլիա\0" // br + "բրիտանական վիրջինյան կղզիներ\0" // vg + "բրիտանական տարածք հնդկական օվկիանոսում\0" // io + "բրունեյ\0" // bn + "գաբոն\0" // ga + "գամբիա\0" // gm + "գայանա\0" // gy + "գանա\0" // gh + "գերմանիա\0" // de + "գերնսի\0" // gg + "գուամ\0" // gu + "գվադելուպա\0" // gp + "գվատեմալա\0" // gt + "գվինեա\0" // gn + "գվինեա-բիսաու\0" // gw + "գրենադա\0" // gd + "գրենլանդիա\0" // gl + "դանիա\0" // dk + "դիեգո գարսիա\0" // dg + "դոմինիկա\0" // dm + "դոմինիկյան հանրապետություն\0" // do + "եգիպտոս\0" // eg + "եթովպիա\0" // et + "եմեն\0" // ye + "եվրագոտի\0" // ez + "զամբիա\0" // zm + "զիմբաբվե\0" // zw + "էկվադոր\0" // ec + "էստոնիա\0" // ee + "էրիթրեա\0" // er + "թայլանդ\0" // th + "թայվան\0" // tw + "թըրքս և կայկոս կղզիներ\0" // tc + "թիմոր լեշտի\0" // tl + "թունիս\0" // tn + "թուրքիա\0" // tr + "թուրքմենստան\0" // tm + "ինդոնեզիա\0" // id + "իռլանդիա\0" // ie + "իսլանդիա\0" // is + "իսպանիա\0" // es + "իսրայել\0" // il + "իտալիա\0" // it + "իրան\0" // ir + "իրաք\0" // iq + "լաոս\0" // la + "լատվիա\0" // lv + "լեհաստան\0" // pl + "լեսոտո\0" // ls + "լիբանան\0" // lb + "լիբերիա\0" // lr + "լիբիա\0" // ly + "լիխտենշտեյն\0" // li + "լիտվա\0" // lt + "լյուքսեմբուրգ\0" // lu + "խորվաթիա\0" // hr + "կաբո վերդե\0" // cv + "կամբոջա\0" // kh + "կամերուն\0" // cm + "կայման կղզիներ\0" // ky + "կանադա\0" // ca + "կանարյան կղզիներ\0" // ic + "կատար\0" // qa + "կարիբյան նիդեռլանդներ\0" // bq + "կենտրոնական աֆրիկյան հանրապետություն\0" // cf + "կիպրոս\0" // cy + "կիրիբատի\0" // ki + "կյուրասաո\0" // cw + "կոլումբիա\0" // co + "կոկոսյան (քիլինգ) կղզիներ\0" // cc + "կոմորյան կղզիներ\0" // km + "կոնգո (կժհ)\0" // cd + "կոնգո (կոնգոյի հանրապետություն)\0" // cg + "կոնգո - բրազավիլ\0" // cg + "կոնգո - կինշասա\0" // cd + "կոսովո\0" // xk + "կոստա ռիկա\0" // cr + "կոտ դ’իվուար\0" // ci + "կուբա\0" // cu + "կուկի կղզիներ\0" // ck + "համբարձման կղզի\0" // ac + "հայաստան\0" // am + "հայիթի\0" // ht + "հասարակածային գվինեա\0" // gq + "հարավային կորեա\0" // kr + "հարավային ջորջիա և հարավային սենդվիչյան կղզիներ\0" // gs + "հարավային սուդան\0" // ss + "հարավաֆրիկյան հանրապետություն\0" // za + "հերդ կղզի և մակդոնալդի կղզիներ\0" // hm + "հյուսիսային կորեա\0" // kp + "հյուսիսային մարիանյան կղզիներ\0" // mp + "հնդկաստան\0" // in + "հոնդուրաս\0" // hn + "հոնկոնգ\0" // hk + "հոնկոնգի հվշ\0" // hk + "հորդանան\0" // jo + "հունաստան\0" // gr + "հունգարիա\0" // hu + "ղազախստան\0" // kz + "ղրղզստան\0" // kg + "ճամայկա\0" // jm + "ճապոնիա\0" // jp + "մադագասկար\0" // mg + "մալայզիա\0" // my + "մալավի\0" // mw + "մալդիվներ\0" // mv + "մալթա\0" // mt + "մալի\0" // ml + "մակաո\0" // mo + "մակեդոնիա\0" // mk + "մակեդոնիա (մնհհ)\0" // mk + "մայոտ\0" // yt + "մավրիկիոս\0" // mu + "մավրիտանիա\0" // mr + "մարշալյան կղզիներ\0" // mh + "մարոկկո\0" // ma + "մարտինիկա\0" // mq + "մեն կղզի\0" // im + "մեքսիկա\0" // mx + "մթ\0" // gb + "միացյալ թագավորություն\0" // gb + "միացյալ նահանգներ\0" // us + "միկրոնեզիա\0" // fm + "մյանմա (բիրմա)\0" // mm + "մոզամբիկ\0" // mz + "մոլդովա\0" // md + "մոնակո\0" // mc + "մոնղոլիա\0" // mn + "մոնսեռատ\0" // ms + "նամիբիա\0" // na + "նաուրու\0" // nr + "նեպալ\0" // np + "նիգեր\0" // ne + "նիգերիա\0" // ng + "նիդեռլանդներ\0" // nl + "նիկարագուա\0" // ni + "նիուե\0" // nu + "նոր զելանդիա\0" // nz + "նոր կալեդոնիա\0" // nc + "նորվեգիա\0" // no + "նորֆոլկ կղզի\0" // nf + "շվեդիա\0" // se + "շվեյցարիա\0" // ch + "շրի լանկա\0" // lk + "ուգանդա\0" // ug + "ուզբեկստան\0" // uz + "ուկրաինա\0" // ua + "ուոլիս և ֆուտունա\0" // wf + "ուրուգվայ\0" // uy + "չադ\0" // td + "չեխիա\0" // cz + "չեխիայի հանրապետություն\0" // cz + "չեռնոգորիա\0" // me + "չիլի\0" // cl + "չինաստան\0" // cn + "չինաստանի մակաո հվշ\0" // mo + "պալաու\0" // pw + "պակիստան\0" // pk + "պաղեստին\0" // ps + "պաղեստինյան տարածքներ\0" // ps + "պանամա\0" // pa + "պապուա նոր գվինեա\0" // pg + "պարագվայ\0" // py + "պերու\0" // pe + "պիտկեռն կղզիներ\0" // pn + "պորտուգալիա\0" // pt + "պուերտո ռիկո\0" // pr + "ջերսի\0" // je + "ջիբութի\0" // dj + "ջիբրալթար\0" // gi + "ռեյունիոն\0" // re + "ռուանդա\0" // rw + "ռումինիա\0" // ro + "ռուսաստան\0" // ru + "սալվադոր\0" // sv + "սամոա\0" // ws + "սան մարինո\0" // sm + "սան տոմե և փրինսիպի\0" // st + "սաուդյան արաբիա\0" // sa + "սեյշելներ\0" // sc + "սեն մարտեն\0" // mf + "սեն պիեռ և միքելոն\0" // pm + "սենեգալ\0" // sn + "սենթ լյուսիա\0" // lc + "սենթ վինսենթ և գրենադիններ\0" // vc + "սենթ քիտս և նևիս\0" // kn + "սեուտա և մելիլյա\0" // ea + "սերբիա\0" // rs + "սիեռա լեոնե\0" // sl + "սինգապուր\0" // sg + "սինտ մարտեն\0" // sx + "սիրիա\0" // sy + "սլովակիա\0" // sk + "սլովենիա\0" // si + "սողոմոնյան կղզիներ\0" // sb + "սոմալի\0" // so + "սուդան\0" // sd + "սուրբ բարդուղիմեոս\0" // bl + "սուրբ ծննդյան կղզի\0" // cx + "սուրբ հեղինեի կղզի\0" // sh + "սուրինամ\0" // sr + "սվազիլենդ\0" // sz + "սվալբարդ և յան մայեն\0" // sj + "վանուատու\0" // vu + "վատիկան\0" // va + "վենեսուելա\0" // ve + "վիետնամ\0" // vn + "վրաստան\0" // ge + "տանզանիա\0" // tz + "տաջիկստան\0" // tj + "տոգո\0" // tg + "տոկելաու\0" // tk + "տոնգա\0" // to + "տուվալու\0" // tv + "տրինիդադ և տոբագո\0" // tt + "տրիստան դա կունյա\0" // ta + "փղոսկրի ափ\0" // ci + "քենիա\0" // ke + "քլիփերթոն կղզի\0" // cp + "քուվեյթ\0" // kw + "օման\0" // om + "ֆարերյան կղզիներ\0" // fo + "ֆիլիպիններ\0" // ph + "ֆինլանդիա\0" // fi + "ֆիջի\0" // fj + "ֆոլքլենդյան (մալվինյան) կղզիներ\0" // fk + "ֆոլքլենդյան կղզիներ\0" // fk + "ֆրանսիա\0" // fr + "ֆրանսիական գվիանա\0" // gf + "ֆրանսիական հարավային տարածքներ\0" // tf + "ֆրանսիական պոլինեզիա\0" // pf + "אַלבאַניע\0" // al + "אַנגאלע\0" // ao + "אַנדארע\0" // ad + "אַנטאַרקטיקע\0" // aq + "אַנטיגוע און באַרבודע\0" // ag + "אַפֿגהאַניסטאַן\0" // af + "אַרגענטינע\0" // ar + "אַרובאַ\0" // aw + "אַרמעניע\0" // am + "אוגאַנדע\0" // ug + "אוגנדה\0" // ug + "אוזבקיסטן\0" // uz + "אויסטראַליע\0" // au + "אונגערן\0" // hu + "אוסטריה\0" // at + "אוסטרליה\0" // au + "אוקראַינע\0" // ua + "אוקראינה\0" // ua + "אורוגוואי\0" // uy + "אורוגוויי\0" // uy + "אזרבייג׳ן\0" // az + "אי חג המולד\0" // cx + "איחוד האמירויות הערביות\0" // ae + "איטאַליע\0" // it + "איטליה\0" // it + "איי אולנד\0" // ax + "איי בהאמה\0" // bs + "איי הבתולה הבריטיים\0" // vg + "איי הבתולה של ארצות הברית\0" // vi + "איי הרד ומקדונלד\0" // hm + "איי ווליס ופוטונה\0" // wf + "איי טרקס וקייקוס\0" // tc + "איי מריאנה הצפוניים\0" // mp + "איי מרשל\0" // mh + "איי נורפוק\0" // nf + "איי סיישל\0" // sc + "איי פארו\0" // fo + "איי פוקלנד\0" // fk + "איי פוקלנד (איי מלווינס)\0" // fk + "איי פיטקרן\0" // pn + "איי קוק\0" // ck + "איי קוקוס (קילינג)\0" // cc + "איי קיימן\0" // ky + "איי שלמה\0" // sb + "אינדאנעזיע\0" // id + "אינדונזיה\0" // id + "אינדיע\0" // in + "איסלאַנד\0" // is + "איסלנד\0" // is + "איראַן\0" // ir + "איראן\0" // ir + "אירלאַנד\0" // ie + "אירלנד\0" // ie + "אל סלבדור\0" // sv + "אלבניה\0" // al + "אלג׳יריה\0" // dz + "אנגווילה\0" // ai + "אנגולה\0" // ao + "אנדורה\0" // ad + "אנטארקטיקה\0" // aq + "אנטיגואה וברבודה\0" // ag + "אסטוניה\0" // ee + "אפגניסטן\0" // af + "אקוודור\0" // ec + "ארגנטינה\0" // ar + "ארה״ב\0" // us + "ארובה\0" // aw + "אריתריאה\0" // er + "ארמניה\0" // am + "ארצות הברית\0" // us + "אתיופיה\0" // et + "באַהאַמאַס\0" // bs + "באַנגלאַדעש\0" // bd + "באַרבאַדאס\0" // bb + "באליוויע\0" // bo + "באסניע הערצעגאווינע\0" // ba + "באצוואַנע\0" // bw + "בהוטאַן\0" // bt + "בהוטן\0" // bt + "בולגאַריע\0" // bg + "בולגריה\0" // bg + "בוליביה\0" // bo + "בוסניה והרצגובינה\0" // ba + "בוצוואנה\0" // bw + "בורונדי\0" // bi + "בורקינה פאסו\0" // bf + "בורקינע פֿאַסא\0" // bf + "בחריין\0" // bh + "בלארוס\0" // by + "בלגיה\0" // be + "בליז\0" // bz + "בנגלדש\0" // bd + "בנין\0" // bj + "בעלאַרוס\0" // by + "בעלגיע\0" // be + "בעליז\0" // bz + "בענין\0" // bj + "בערמודע\0" // bm + "בראַזיל\0" // br + "ברבדוס\0" // bb + "ברוניי\0" // bn + "ברזיל\0" // br + "בריטניה\0" // gb + "ברמודה\0" // bm + "גאַבאן\0" // ga + "גאַמביע\0" // gm + "גאורגיה\0" // ge + "גאנה\0" // gh + "גבון\0" // ga + "גהאַנע\0" // gh + "גואטמלה\0" // gt + "גואם\0" // gu + "גוואַדעלופ\0" // gp + "גוואַטעמאַלע\0" // gt + "גוואַם\0" // gu + "גוואדלופ\0" // gp + "גויאַנע\0" // gy + "גוש האירו\0" // ez + "גיאנה\0" // gy + "גיאנה הצרפתית\0" // gf + "גיבראַלטאַר\0" // gi + "גיברלטר\0" // gi + "גינאה\0" // gn + "גינאה המשוונית\0" // gq + "גינאה-ביסאו\0" // gw + "גינע\0" // gn + "גינע־ביסאַו\0" // gw + "גמביה\0" // gm + "גערנזי\0" // gg + "גרוזיע\0" // ge + "גריכנלאַנד\0" // gr + "גרינלאַנד\0" // gl + "גרינלנד\0" // gl + "גרמניה\0" // de + "גרנדה\0" // gd + "גרנזי\0" // gg + "גרענאַדאַ\0" // gd + "ג׳ורג׳יה הדרומית ואיי סנדוויץ׳ הדרומיים\0" // gs + "ג׳יבוטי\0" // dj + "ג׳מייקה\0" // jm + "ג׳רזי\0" // je + "דאמיניקאַנישע רעפּובליק\0" // do + "דאמיניקע\0" // dm + "דומיניקה\0" // dm + "דזשאַמייקע\0" // jm + "דזשיבוטי\0" // dj + "דזשערזי\0" // je + "דייגו גרסיה\0" // dg + "דייטשלאַנד\0" // de + "דנמרק\0" // dk + "דענמאַרק\0" // dk + "דרום אפריקה\0" // za + "דרום סודן\0" // ss + "דרום־אַפֿריקע\0" // za + "דרום־סודאַן\0" // ss + "האַיטי\0" // ht + "האי אסנשן\0" // ac + "האי בובה\0" // bv + "האי מאן\0" // im + "האי קליפרטון\0" // cp + "האיטי\0" // ht + "האיים המלדיביים\0" // mv + "האיים המרוחקים הקטנים של ארה״ב\0" // um + "האיים הקנריים\0" // ic + "האיים הקריביים ההולנדיים\0" // bq + "האלאַנד\0" // nl + "האנדוראַס\0" // hn + "הודו\0" // in + "הוותיקן\0" // va + "הולנד\0" // nl + "הונג קונג\0" // hk + "הונג קונג (אזור מנהלי מיוחד של סין)\0" // hk + "הונגריה\0" // hu + "הונדורס\0" // hn + "הטריטוריה הבריטית באוקיינוס ההודי\0" // io + "הטריטוריות הדרומיות של צרפת\0" // tf + "הממלכה המאוחדת\0" // gb + "העלפֿאַ נדביין בארטן\0" // ci + "הפיליפינים\0" // ph + "הרפובליקה הדומיניקנית\0" // do + "הרפובליקה המרכז-אפריקאית\0" // cf + "הרפובליקה הצ׳כית\0" // cz + "השטחים הפלסטיניים\0" // ps + "וואַטיקאַן שטאָט\0" // va + "וואַנואַטו\0" // vu + "וויעטנאַם\0" // vn + "ווענעזועלע\0" // ve + "וייטנאם\0" // vn + "ונואטו\0" // vu + "ונצואלה\0" // ve + "זאַמביע\0" // zm + "זימבאַבווע\0" // zw + "זימבבואה\0" // zw + "זמביה\0" // zm + "חוף השנהב\0" // ci + "טאַנזאַניע\0" // tz + "טאגא\0" // tg + "טאנגאַ\0" // to + "טג׳יקיסטן\0" // tj + "טואוואַלו\0" // tv + "טובאלו\0" // tv + "טוגו\0" // tg + "טונגה\0" // to + "טוניסיע\0" // tn + "טוקלאו\0" // tk + "טורקיה\0" // tr + "טורקמניסטן\0" // tm + "טורקמעניסטאַן\0" // tm + "טייוואן\0" // tw + "טיילאַנד\0" // th + "טימור-לסטה\0" // tl + "טנזניה\0" // tz + "טערקיי\0" // tr + "טריטוריות באוקיאניה\0" // qo + "טרינידאַד און טאבאַגא\0" // tt + "טרינידד וטובגו\0" // tt + "טריסטן דה קונה\0" // ta + "טשאַד\0" // td + "טשילע\0" // cl + "טשעכיי\0" // cz + "יאַפּאַן\0" // jp + "יוון\0" // gr + "יפן\0" // jp + "ירדן\0" // jo + "ישראל\0" // il + "כווית\0" // kw + "כינע\0" // cn + "כף ורדה\0" // cv + "לאַאס\0" // la + "לאוס\0" // la + "לבנון\0" // lb + "לוב\0" // ly + "לוקסמבורג\0" // lu + "לוקסעמבורג\0" // lu + "לטביה\0" // lv + "ליביע\0" // ly + "ליבעריע\0" // lr + "ליבריה\0" // lr + "ליטא\0" // lt + "ליטע\0" // lt + "ליכטנשטיין\0" // li + "לסוטו\0" // ls + "לעטלאַנד\0" // lv + "לעסאטא\0" // ls + "מאַדאַגאַסקאַר\0" // mg + "מאַיאט\0" // yt + "מאַלאַווי\0" // mw + "מאַלדיוון\0" // mv + "מאַלטאַ\0" // mt + "מאַלי\0" // ml + "מאַלייזיע\0" // my + "מאַקעדאניע\0" // mk + "מאַראקא\0" // ma + "מאַרטיניק\0" // mq + "מאַריטאַניע\0" // mr + "מאַרשאַל אינזלען\0" // mh + "מאוריטניה\0" // mr + "מאוריציוס\0" // mu + "מאזאַמביק\0" // mz + "מאיוט\0" // yt + "מאלדאווע\0" // md + "מאלי\0" // ml + "מאנאַקא\0" // mc + "מאנגאליי\0" // mn + "מאנטסעראַט\0" // ms + "מאנטענעגרא\0" // me + "מאריציוס\0" // mu + "מדגסקר\0" // mg + "מוזמביק\0" // mz + "מולדובה\0" // md + "מונגוליה\0" // mn + "מונטנגרו\0" // me + "מונסראט\0" // ms + "מונקו\0" // mc + "מזרח טימאר\0" // tl + "מזרח טימור\0" // tl + "מיאַנמאַר\0" // mm + "מיאנמר (בורמה)\0" // mm + "מיקראנעזיע\0" // fm + "מיקרונזיה\0" // fm + "מלאווי\0" // mw + "מלזיה\0" // my + "מלטה\0" // mt + "מעקסיקע\0" // mx + "מצרים\0" // eg + "מקאו\0" // mo + "מקאו (אזור מנהלי מיוחד של סין)\0" // mo + "מקדוניה\0" // mk + "מקדוניה (הרפובליקה היוגוסלבית לשעבר של מקדוניה)\0" // mk + "מקסיקו\0" // mx + "מרוקו\0" // ma + "מרטיניק\0" // mq + "נאַמיביע\0" // na + "נאורו\0" // nr + "נארוועגיע\0" // no + "נארפֿאלק אינזל\0" // nf + "נורווגיה\0" // no + "ניגעריע\0" // ng + "ניגריה\0" // ng + "ניו זילאַנד\0" // nz + "ניו זילנד\0" // nz + "ניווה\0" // nu + "ניזשער\0" // ne + "ניז׳ר\0" // ne + "ניקאַראַגוע\0" // ni + "ניקרגואה\0" // ni + "נמיביה\0" // na + "נעפּאַל\0" // np + "נפאל\0" // np + "נײַ קאַלעדאניע\0" // nc + "סאַא טאמע און פּרינסיפּע\0" // st + "סאַמאאַ\0" // ws + "סאַן מאַרינא\0" // sm + "סאו טומה ופרינסיפה\0" // st + "סאוטה ומלייה\0" // ea + "סאלאמאן אינזלען\0" // sb + "סאמאַליע\0" // so + "סבאלברד ויאן מאיין\0" // sj + "סהרה המערבית\0" // eh + "סודאַן\0" // sd + "סודן\0" // sd + "סוואַזילאַנד\0" // sz + "סווזילנד\0" // sz + "סומליה\0" // so + "סוריה\0" // sy + "סורינאַם\0" // sr + "סורינאם\0" // sr + "סט העלענע\0" // sh + "סיירה לאונה\0" // sl + "סיישעל\0" // sc + "סין\0" // cn + "סינגאַפּור\0" // sg + "סינגפור\0" // sg + "סיערע לעאנע\0" // sl + "סיריע\0" // sy + "סלאוואַקיי\0" // sk + "סלאוועניע\0" // si + "סלובניה\0" // si + "סלובקיה\0" // sk + "סמואה\0" // ws + "סמואה האמריקנית\0" // as + "סן מרטן\0" // mf + "סן מרינו\0" // sm + "סנגל\0" // sn + "סנט ברתולומיאו\0" // bl + "סנט הלנה\0" // sh + "סנט וינסנט והגרנדינים\0" // vc + "סנט לוסיה\0" // lc + "סנט מארטן\0" // sx + "סנט פייר ומיקלון\0" // pm + "סנט קיטס ונוויס\0" // kn + "סענעגאַל\0" // sn + "סערביע\0" // rs + "ספרד\0" // es + "סרביה\0" // rs + "סרי לנקה\0" // lk + "סרי־לאַנקאַ\0" // lk + "עגיפּטן\0" // eg + "עומאן\0" // om + "עטיאפּיע\0" // et + "עיראק\0" // iq + "על סאַלוואַדאר\0" // sv + "עסטלאַנד\0" // ee + "עסטרייך\0" // at + "עקוואַדאר\0" // ec + "עקוואַטארישע גינע\0" // gq + "ערב הסעודית\0" // sa + "עריטרעע\0" // er + "פּאַנאַמאַ\0" // pa + "פּאַפּואַ נײַ גינע\0" // pg + "פּאַקיסטאַן\0" // pk + "פּאַראַגווײַ\0" // py + "פּארטא־ריקא\0" // pr + "פּארטוגאַל\0" // pt + "פּוילן\0" // pl + "פּיטקערן אינזלען\0" // pn + "פּערו\0" // pe + "פֿ\x22ש\0" // us + "פֿאַלקלאַנד אינזלען\0" // fk + "פֿאַרא אינזלען\0" // fo + "פֿאַראייניגטע קעניגרייך\0" // gb + "פֿאַראייניגטע שטאַטן\0" // us + "פֿידזשי\0" // fj + "פֿיליפּינען\0" // ph + "פֿינלאַנד\0" // fi + "פֿראַנצויזישע גויאַנע\0" // gf + "פֿראַנצויזישע פּאלינעזיע\0" // pf + "פֿראַנקרייך\0" // fr + "פוארטו ריקו\0" // pr + "פולין\0" // pl + "פולינזיה הצרפתית\0" // pf + "פורטוגל\0" // pt + "פיג׳י\0" // fj + "פינלנד\0" // fi + "פלאו\0" // pw + "פלסטין\0" // ps + "פנמה\0" // pa + "פפואה גינאה החדשה\0" // pg + "פקיסטן\0" // pk + "פרגוואי\0" // py + "פרו\0" // pe + "צענטראַל־אַפֿריקאַנישע רעפּובליק\0" // cf + "צרפת\0" // fr + "צ׳אד\0" // td + "צ׳ילה\0" // cl + "צ׳כיה\0" // cz + "קאַטאַר\0" // qa + "קאַמבאדיע\0" // kh + "קאַמערון\0" // cm + "קאַנאַדע\0" // ca + "קאַנאַרישע אינזלען\0" // ic + "קאַפּווערדישע אינזלען\0" // cv + "קאלאמביע\0" // co + "קאמאראס\0" // km + "קאנגא־קינשאַזע\0" // cd + "קאסאווא\0" // xk + "קאסטאַ ריקאַ\0" // cr + "קובאַ\0" // cu + "קובה\0" // cu + "קולומביה\0" // co + "קומורו\0" // km + "קונגו (הרפובליקה הדמוקרטית של קונגו)\0" // cd + "קונגו (רפובליקה)\0" // cg + "קונגו - ברזאויל\0" // cg + "קונגו - קינשאסה\0" // cd + "קוסובו\0" // xk + "קוסטה ריקה\0" // cr + "קוק אינזלען\0" // ck + "קוראַסאַא\0" // cw + "קוראסאו\0" // cw + "קוריאה הדרומית\0" // kr + "קוריאה הצפונית\0" // kp + "קזחסטן\0" // kz + "קטאר\0" // qa + "קיימאַן אינזלען\0" // ky + "קירגיזסטן\0" // kg + "קיריבאַטי\0" // ki + "קיריבאטי\0" // ki + "קלדוניה החדשה\0" // nc + "קמבודיה\0" // kh + "קמרון\0" // cm + "קנדה\0" // ca + "קניה\0" // ke + "קעניע\0" // ke + "קפריסין\0" // cy + "קראאַטיע\0" // hr + "קרואטיה\0" // hr + "ראוניון\0" // re + "רואנדה\0" // rw + "רוואַנדע\0" // rw + "רומניה\0" // ro + "רומעניע\0" // ro + "רוסיה\0" // ru + "רוסלאַנד\0" // ru + "רעאוניאן\0" // re + "שוודיה\0" // se + "שווייץ\0" // ch + "שוועדן\0" // se + "שפּאַניע\0" // es + "תאילנד\0" // th + "תוניסיה\0" // tn + "תימן\0" // ye + "آئرلينڊ\0" // ie + "آئرلینڈ\0" // ie + "آئس لينڊ\0" // is + "آئس لینڈ\0" // is + "آئل آف مین\0" // im + "آئيوري ڪنارو\0" // ci + "آئيوري ڪوسٽ\0" // ci + "آئیوری کوسٹ\0" // ci + "آذربائيجان\0" // az + "آذربائیجان\0" // az + "آذربایجون\0" // az + "آرمینیا\0" // am + "آروبا\0" // aw + "آرژانتین\0" // ar + "آزَرباجان\0" // az + "آسترالیا\0" // au + "آسنسیون جزیره\0" // ac + "آسٹریا\0" // at + "آسٹریلِیا\0" // au + "آسٹریلیا\0" // au + "آسٹِیا\0" // at + "آسټرالیا\0" // au + "آسٽريا\0" // be + "آسٽريليا\0" // au + "آشٽريا\0" // at + "آلبانی\0" // al + "آلمان\0" // de + "آلند جزیره\0" // ax + "آلینڈ آئلینڈز\0" // ax + "آمريڪا جون گڏيل رياستون\0" // us + "آمريڪي ساموا\0" // as + "آمريڪي ورجن ٻيٽ\0" // vi + "آمريڪي ٻاهريون ٻيٽ\0" // um + "آمریکا متحده ایالات\0" // us + "آمریکای ویرجین\0" // vi + "آمریکای ِساموآ\0" // as + "آمریکای پَرتِ‌پِلا جزیره‌ئون\0" // um + "آنتیگوا و باربودا\0" // ag + "آندورا\0" // ad + "آنگولا\0" // ao + "آنگویلا\0" // ai + "آوُٹلاینِگ اوشینِیا\0" // qo + "آيسلندا\0" // is + "آیرلند\0" // ie + "آیسلند\0" // is + "آیسلینډ\0" // is + "آیِل آف میٛن\0" // im + "أذربيجان\0" // az + "أرجَنٹینا\0" // ar + "أرمينيا\0" // am + "أروبا\0" // aw + "أستراليا\0" // au + "أفغانستان\0" // af + "ألبانيا\0" // al + "ألمانيا\0" // de + "أنتاركتيكا\0" // aq + "أنتيغوا وبربودا\0" // ag + "أندورا\0" // ad + "أنغولا\0" // ao + "أنغويلا\0" // ai + "أورغواي\0" // uy + "أوروغواي\0" // uy + "أوزبكستان\0" // uz + "أوغندا\0" // ug + "أوقيانوسيا النائية\0" // qo + "أوكرانيا\0" // ua + "أيرلندا\0" // ie + "إثيوبيا\0" // et + "إريتريا\0" // er + "إسبانيا\0" // es + "إستونيا\0" // ee + "إسرائيل\0" // il + "إندونيسيا\0" // id + "إيران\0" // ir + "إيطاليا\0" // it + "ئا ق ش\0" // us + "ئا ق ش تاشقى ئاراللىرى\0" // um + "ئا ق ش ۋىرگىن ئاراللىرى\0" // vi + "ئارووبا\0" // aw + "ئارگېنتىنا\0" // ar + "ئارۇبا\0" // aw + "ئازەربایجان\0" // az + "ئاسسېنسىيون ئارىلى\0" // ac + "ئافغانىستان\0" // af + "ئالاند ئاراللىرى\0" // ax + "ئالبانىيە\0" // al + "ئالجىرىيە\0" // dz + "ئامېرىكا ساموئا\0" // as + "ئامېرىكا قوشما ئىشتاتلىرى\0" // us + "ئانتاركتىكا\0" // aq + "ئانتارکتیکا\0" // aq + "ئانتىگۇئا ۋە باربۇدا\0" // ag + "ئانتیگوا و باربودا\0" // ag + "ئاندوررا\0" // ad + "ئاندۆرا\0" // ad + "ئانگولا\0" // ao + "ئانگۋىللا\0" // ai + "ئاۋسترالىيە\0" // au + "ئاۋمېن\0" // mo + "ئاۋمېن ئالاھىدە مەمۇرىي رايونى\0" // mo + "ئاۋىستىرىيە\0" // at + "ئایسلەند\0" // is + "ئوتتۇرا ئافرىقا جۇمھۇرىيىتى\0" // cf + "ئوردن\0" // jo + "ئوروگوای\0" // uy + "ئوزبەکستان\0" // uz + "ئوسترالیا\0" // au + "ئوكيانىيە ئەتراپىدىكى ئاراللار\0" // qo + "ئومان\0" // om + "ئوگاندا\0" // ug + "ئىتالىيە\0" // it + "ئىراق\0" // iq + "ئىران\0" // ir + "ئىرېلاندىيە\0" // ie + "ئىسرائىلىيە\0" // il + "ئىسلاندىيە\0" // is + "ئىسپانىيە\0" // es + "ئىيوردانىيە\0" // jo + "ئۆزبېكىستان\0" // uz + "ئۆکرانیا\0" // ua + "ئۇرۇگۋاي\0" // uy + "ئۇكرائىنا\0" // ua + "ئۇگاندا\0" // ug + "ئیتالیا\0" // it + "ئیتاڵی\0" // it + "ئیرلەند\0" // ie + "ئیسرائیل\0" // il + "ئیسپانیا\0" // es + "ئیندۆنیزیا\0" // id + "ئیکوادۆر\0" // ec + "ئێران\0" // ir + "ئێلسالڤادۆر\0" // sv + "ئېرىترىيە\0" // er + "ئېستونىيە\0" // ee + "ئېفىيوپىيە\0" // et + "ئېكۋاتور\0" // ec + "ئېكۋاتور گىۋىنىيەسى\0" // gq + "ئەتیۆپیا\0" // et + "ئەرمېنىيە\0" // am + "ئەرمەنستان\0" // am + "ئەرژەنتین\0" // ar + "ئەریتریا\0" // er + "ئەرەب بىرلەشمە خەلىپىلىكى\0" // ae + "ئەزەربەيجان\0" // az + "ئەفریقای باشوور\0" // za + "ئەفغانستان\0" // af + "ئەنگلىيە\0" // gb + "ئەنگلىيە ۋىرگىن ئاراللىرى\0" // vg + "ئەنگلىيەگە قاراشلىق ھىندى ئوكيان تېررىتورىيەسى\0" // io + "ئەنگۆلا\0" // ao + "ئەڵبانیا\0" // al + "ئەڵمانیا\0" // de + "اتر مرينا ٻيٽ\0" // mp + "اتر ڪوريا\0" // kp + "اتریش\0" // at + "اتیوپی\0" // et + "اذربايجان\0" // az + "ارجنتاین\0" // ar + "ارجنٹینا\0" // ar + "ارجنٽينا\0" // ar + "اردن\0" // jo + "ارمنستان\0" // am + "ارمنستون\0" // am + "ارمینیا\0" // am + "اروبا\0" // aw + "اروپاسيمه\0" // ez + "اروگوئه\0" // uy + "ارژنټاین\0" // ar + "اریتره\0" // er + "اریتریا\0" // er + "اریٹیریا\0" // er + "ازبکستان\0" // uz + "ازبکستون\0" // uz + "ازبڪستان\0" // uz + "استرالیا\0" // au + "استوائی گیانا\0" // gq + "استوایی ګینه\0" // gq + "استوایی گینه\0" // gq + "استونی\0" // ee + "استونیا\0" // ee + "اسرائيل\0" // il + "اسرائیل\0" // il + "اسراييل\0" // il + "اسلواکی\0" // sk + "اسلوونی\0" // si + "اسوالبارد و جان‌ماین\0" // sj + "اسٹونیا\0" // ee + "اسپانیا\0" // es + "اسپين\0" // es + "اسینشن آئلینڈ\0" // ac + "افریقای جنوبی\0" // za + "افغانستان\0" // af + "افغانستون\0" // af + "ال سلواڈور\0" // sv + "ال سلواڊور\0" // sv + "الأراضي الفلسطينية\0" // ps + "الأرجنتين\0" // ar + "الأردن\0" // jo + "الأقاليم الجنوبية الفرنسية\0" // tf + "الإقليم البريطاني في المحيط الهندي\0" // io + "الإكوادور\0" // ec + "الإمارات العربية المتحدة\0" // ae + "الاند ټاپوان\0" // ax + "البانيا\0" // al + "البانیا\0" // al + "البانیه\0" // al + "البانیہ\0" // al + "البحرين\0" // bh + "البرازيل\0" // br + "البرتغال\0" // pt + "البهاما\0" // bs + "البوسنة والهرسك\0" // ba + "التشيك\0" // cz + "التيمور الشرقية\0" // tl + "الجبل الأسود\0" // me + "الجزائر\0" // dz + "الجزایر\0" // dz + "الجزیره\0" // dz + "الجيريا\0" // dz + "الجیریا\0" // dz + "الدانمرك\0" // dk + "الرأس الأخضر\0" // cv + "السالوادور\0" // sv + "السلفادور\0" // sv + "السلوادور\0" // sv + "السنغال\0" // sn + "السودان\0" // sd + "السويد\0" // se + "الصحراء الغربية\0" // eh + "الصومال\0" // so + "الصين\0" // cn + "العراق\0" // iq + "الغابون\0" // ga + "الفاتيكان\0" // va + "الفلبين\0" // ph + "الكاميرون\0" // cm + "الكونغو - برازافيل\0" // cg + "الكونغو - كينشاسا\0" // cd + "الكويت\0" // kw + "المان\0" // de + "المغرب\0" // ma + "المكسيك\0" // mx + "المملكة العربية السعودية\0" // sa + "المملكة المتحدة\0" // gb + "الند ٻيٽ\0" // ax + "النرويج\0" // no + "النمسا\0" // at + "النيجر\0" // ne + "الهند\0" // in + "الولايات المتحدة\0" // us + "اليابان\0" // jp + "اليمن\0" // ye + "اليونان\0" // gr + "امارات متحدهٔ عربی\0" // ae + "امریکا\0" // us + "امریکایی سمو\0" // as + "امریکہ سے باہر کے چھوٹے جزائز\0" // um + "امریکی بیرونی جزائر\0" // um + "امریکی جزائر ورجن\0" // vi + "امریکی ساموآ\0" // as + "امریکی ورجن آئلینڈز\0" // vi + "انتارکتیکا\0" // aq + "انترکتیکا\0" // aq + "انتیگوا و باربودا\0" // ag + "اندورا\0" // ad + "اندونزی\0" // id + "اندونیزیا\0" // id + "انسانن جو ٻيٽ\0" // im + "انٹارکٹیکا\0" // aq + "انٹیگوا اور باربودا\0" // ag + "انټيګوا او باربودا\0" // ag + "انٽارڪٽيڪا\0" // aq + "انٽيگئا و بربودا\0" // ag + "انڈورا\0" // ad + "انڈونیشیا\0" // id + "انڊونيشيا\0" // id + "انڊيا\0" // in + "انګلستان\0" // gb + "انګولا\0" // ao + "انګیلا\0" // ai + "انگوئیلا\0" // ai + "انگولا\0" // ao + "انگويلا\0" // ai + "اوزبکستان\0" // uz + "اوقیانوسیه‌ی ِپرت ِجائون\0" // qo + "اولهه صحارا\0" // eh + "اومان\0" // om + "اوڀر تيمور\0" // tl + "اوکراین\0" // ua + "اوگاندا\0" // ug + "ايران\0" // ir + "ايريٽيريا\0" // er + "ايسٽونيا\0" // ee + "ايٿوپيا\0" // et + "ايڪواڊور\0" // ec + "ايڪوٽوريل گائينا\0" // gq + "اَرمانِیا\0" // am + "اَروٗبا\0" // aw + "اَفغانَستان\0" // af + "اَمریٖکَن سَموا\0" // as + "اَیوٕری کوسٹ\0" // ci + "اَیَرلینٛڑ\0" // ie + "اَیِسلینٛڑ\0" // is + "اُزبِکِستان\0" // uz + "اِتھوپِیا\0" // et + "اِرٕٹِیا\0" // er + "اِسرایٖل\0" // il + "اِنڑونیشِیا\0" // id + "اِٹلی\0" // it + "اِکواڑور\0" // ec + "اِکوِٹورِیَل گِنی\0" // gq + "اٮ۪ل سَلواڑور\0" // sv + "اٮ۪لبانِیا\0" // al + "اٮ۪لجیرِیا\0" // dz + "اٮ۪نٹِگُوا تہٕ باربوڑا\0" // ag + "اٮ۪نڑورا\0" // ad + "اٹلی\0" // it + "اٽلي\0" // it + "اکراین\0" // ua + "اکوادر\0" // ec + "اکوادور\0" // ec + "ایالات متحده\0" // us + "ایتالیا\0" // it + "ایتوپیا\0" // et + "ایتھوپیا\0" // et + "ایران\0" // ir + "ایرلند\0" // ie + "ایرلینډ\0" // ie + "ایسراییل\0" // il + "ایسلند\0" // is + "ایسٹونِیا\0" // ee + "ایسپانیا\0" // es + "ایلینٛڑ جٔزیٖرٕ\0" // ax + "اینٹارٹِکا\0" // aq + "ایوري ساحل\0" // ci + "ایٖراق\0" // iq + "ایٖران\0" // ir + "ایټالیه\0" // it + "ایکواڈور\0" // ec + "بؤویٹ آئلینڈ\0" // bv + "بئرئزیل\0" // br + "بابوا غينيا الجديدة\0" // pg + "باراغواي\0" // py + "باربادوس\0" // bb + "باربادۆس\0" // bb + "بارباڈوس\0" // bb + "باربڊوس\0" // bb + "باربیڈاس\0" // bb + "باكستان\0" // pk + "بالاو\0" // pw + "باهاما\0" // bs + "باھاما\0" // bs + "بحرين\0" // bh + "بحرین\0" // bh + "بحریٖن\0" // bh + "بخش‌های دورافتادهٔ اقیانوسیه\0" // qo + "برازيل\0" // br + "برازیل\0" // br + "بربادوس\0" // bb + "برتانیه\0" // gb + "برزیل\0" // br + "برطانوي هندي سمنڊ خطو\0" // io + "برطانوي ورجن ٻيٽ\0" // vg + "برطانوی بحر ہند کا علاقہ\0" // io + "برطانوی بحرِ ہِنٛدۍ علاقہٕ\0" // io + "برطانوی بحرہند خطہ\0" // io + "برطانوی جزائر ورجن\0" // vg + "برطانوی قُطبہِ جَنوٗبی علاقہٕ\0" // bq + "برطانيه\0" // gb + "برمودا\0" // bm + "برونئی\0" // bn + "برونائي\0" // bn + "برونائی\0" // bn + "بروناي\0" // bn + "بروندي\0" // bi + "بروني\0" // bn + "برونڈی\0" // bi + "برونڊي\0" // bi + "برونی\0" // bn + "بروونای\0" // bn + "برٛازِل\0" // br + "برٹش ورجن آئلینڈز\0" // vg + "برکینا فاسو\0" // bf + "برڪينا فاسو\0" // bf + "بریتانوی ویګور ټاپو\0" // vg + "بریتانیا\0" // gb + "بریتانیای هند ِاوقیانوس ِمناطق\0" // io + "بریتانیای ویرجین\0" // vg + "بلاروس\0" // by + "بلجيكا\0" // be + "بلجیم\0" // be + "بلغارستان\0" // bg + "بلغارستون\0" // bg + "بلغاريا\0" // bg + "بلغاریا\0" // bg + "بلغاریه\0" // bg + "بلغاریہ\0" // bg + "بليز\0" // bz + "بلژیک\0" // be + "بلیز\0" // bz + "بنغلاديش\0" // bd + "بنما\0" // pa + "بنين\0" // bj + "بنگلادش\0" // bd + "بنگلاديش\0" // bd + "بنگله دېش\0" // bd + "بنگله‌دیش\0" // bd + "بنگلہ دیش\0" // bd + "بنین\0" // bj + "بهاماس\0" // bs + "بهرنی آسیا\0" // qo + "بهوټان\0" // bt + "بوتان\0" // bt + "بوتساوانا\0" // bw + "بوتسوانا\0" // bw + "بوتسوانه\0" // bw + "بوتسۋانا\0" // bw + "بوتَسوانا\0" // bw + "بورتوريكو\0" // pr + "بوركينا فاسو\0" // bf + "بوروندي\0" // bi + "بوروندی\0" // bi + "بورَنڈِ\0" // bi + "بورکینا فاسو\0" // bf + "بورکینافاسو\0" // bf + "بورکینافاسۆ\0" // bf + "بوسنيا او هېرزګوينا\0" // ba + "بوسنِیا تہٕ ہَرزِگووِنا\0" // ba + "بوسنی و هرزگوین\0" // ba + "بوسنیا اور هرزیگوینا\0" // ba + "بوسنیا اور ہرزیگووینا\0" // ba + "بوسنیا و هرزه‌گوینا\0" // ba + "بوسىنىيە ۋە گېرتسېگوۋىنا\0" // ba + "بولندا\0" // pl + "بولىۋىيە\0" // bo + "بوليفيا\0" // bo + "بولينيزيا الفرنسية\0" // pf + "بوليويا\0" // bo + "بولِوِیا\0" // bo + "بولگاریا\0" // bg + "بولیوی\0" // bo + "بولیویا\0" // bo + "بووت جزیره\0" // bv + "بووتان\0" // bt + "بووَٹ جٔزیٖرٕ\0" // bv + "بووٽ ٻيٽ\0" // bv + "بوویټ ټاپو\0" // bv + "بوٗٹان\0" // bt + "بوٽسوانا\0" // bw + "بوۋېت ئارىلى\0" // bv + "بىرازىلىيە\0" // br + "بىرلەشمە پادىشاھلىق\0" // gb + "بىرما\0" // mm + "بىرۇنېي\0" // bn + "بيرو\0" // pe + "بيروني سامونڊي\0" // qo + "بيلاروس\0" // by + "بيليز\0" // bz + "بينن\0" // bj + "بَرطانوی ؤرجِن جٔزیٖرٕ\0" // vg + "بَلجیرِیا\0" // bg + "بَنٛگلادیش\0" // bd + "بَہامَس\0" // bs + "بُرنٔے\0" // bn + "بُرکِنا فیسو\0" // bf + "بِنِن\0" // bj + "بٔرمیوڈا\0" // bm + "بھارت\0" // in + "بھوٹان\0" // bt + "بہاماس\0" // bs + "بۆتسوانا\0" // bw + "بۆسنیا و ھەرزەگۆڤینا\0" // ba + "بۆلیڤیا\0" // bo + "بۇتان\0" // bt + "بۇركىنا فاسو\0" // bf + "بۇرۇندى\0" // bi + "بۇلغارىيە\0" // bg + "بیرونی اوشیانیا\0" // qo + "بیریتانیا گأپ\0" // gb + "بیلائز\0" // bz + "بیلارس\0" // by + "بیلاروس\0" // by + "بیلاروٗس\0" // by + "بیلاڕووس\0" // by + "بیلجیم\0" // be + "بیلِج\0" // bz + "بینن\0" // bj + "بیٛلجِیَم\0" // be + "بێنین\0" // bj + "بېرمۇدا\0" // bm + "بېلارۇسىيە\0" // by + "بېلىز\0" // bz + "بېلگىيە\0" // be + "بېنىن\0" // bj + "بېنگال\0" // bd + "بەحرەین\0" // bh + "بەلژیک\0" // be + "بەلیز\0" // bz + "بەنگلادیش\0" // bd + "بەھاما\0" // bs + "بەھرەين\0" // bh + "تائیوان\0" // tw + "تاجىكىستان\0" // tj + "تاجيکستان\0" // tj + "تاجکستان\0" // tj + "تاجکِستان\0" // tj + "تاجڪستان\0" // tj + "تاجیکستان\0" // tj + "تاجیکستون\0" // tj + "تانزانىيە\0" // tz + "تانزانیا\0" // tz + "تايلاند\0" // th + "تايوان\0" // tw + "تایلند\0" // th + "تایلەند\0" // th + "تایوان\0" // tw + "ترسٹان دا کونیا\0" // ta + "تركمانستان\0" // tm + "تركيا\0" // tr + "ترىستان داكۇنھا\0" // ta + "تريستان دا كونا\0" // ta + "ترينيداد وتوباغو\0" // tt + "ترکس اور کیکاؤس جزائر\0" // tc + "ترکمانستان\0" // tm + "ترکمنستان\0" // tm + "ترکمونستون\0" // tm + "ترکی\0" // tr + "ترکیه\0" // tr + "ترڪ ۽ ڪيڪوس ٻيٽ\0" // tc + "ترڪمانستان\0" // tm + "ترڪي\0" // tr + "تریستان دا جونها\0" // ta + "تریستان دا کنها\0" // ta + "تریستان دا کونا\0" // ta + "ترینیداد اور ٹوباگو\0" // tt + "ترینیداد و توباگو\0" // tt + "ترینیداد و تۆباگو\0" // tt + "تشاد\0" // td + "تشيلي\0" // cl + "تلل\0" // tg + "تنزانيا\0" // tz + "تنزانیا\0" // tz + "تنزانیہ\0" // tz + "تهايلنډ\0" // th + "توالو\0" // tv + "توالیو\0" // tv + "تورکس و کایکوس جزایر\0" // tc + "تورکمانستان\0" // tm + "تورکمنستان\0" // tm + "تورکيه\0" // tr + "تورکیا\0" // tr + "توغو\0" // tg + "توفالو\0" // tv + "توكيلو\0" // tk + "توكېلاۋ\0" // tk + "تونس\0" // tn + "تونغا\0" // to + "تونګا\0" // to + "تونگا\0" // to + "تووالو\0" // tv + "توونس\0" // tn + "تووڤالوو\0" // tv + "توٗوالوٗ\0" // tv + "توکلائو\0" // tk + "توکیلاو\0" // tk + "توکیلو\0" // tk + "توگو\0" // tg + "تىرىنىداد ۋە توباگو\0" // tt + "تيمور الشرقية\0" // tl + "تيمور ليستي\0" // tl + "تيمور- ليشتي\0" // tl + "تيمور-ليسټ\0" // tl + "تيونيسيا\0" // tn + "تَنجانِیا\0" // tz + "تُرمِنِستان\0" // tm + "تُرُک تہٕ کیکوس جٔزیٖرٕ\0" // tc + "تُرکی\0" // tr + "تھائی لینڈ\0" // th + "تھایلینٛڑ\0" // th + "تۆنگا\0" // to + "تۆگۆ\0" // tg + "تۇركس ۋە كايكوس ئاراللىرى\0" // tc + "تۇنىس\0" // tn + "تۇۋالۇ\0" // tv + "تۈركمەنىستان\0" // tm + "تۈركىيە\0" // tr + "تیمور شرقی\0" // tl + "تیمور لیسٹ\0" // tl + "تیمور-لسته\0" // tl + "تیمۆری ڕۆژھەڵات\0" // tl + "تیوان\0" // tw + "تەيۋەن\0" // tw + "جارجيا\0" // ge + "جارجِیا\0" // ge + "جارجیا\0" // ge + "جامائیکا\0" // jm + "جامايكا\0" // jm + "جامایکا\0" // jm + "جاماییکا\0" // jm + "جامبِیا\0" // zm + "جاپان\0" // jp + "جاپون\0" // jp + "جاپوٙن\0" // jp + "جبرالٽر\0" // gi + "جبل الطارق\0" // gi + "جبل طارق\0" // gi + "جبل‌الطارق\0" // gi + "جبوتی\0" // dj + "جرزی\0" // je + "جرسي\0" // je + "جرسی\0" // je + "جرمني\0" // de + "جرمنی\0" // de + "جرمٔنی\0" // de + "جزائر (کیلنگ) کوکوس\0" // cc + "جزائر آلینڈ\0" // ax + "جزائر سلیمان\0" // sb + "جزائر شمالی ماریانا\0" // mp + "جزائر فارو\0" // fo + "جزائر فاکلینڈ\0" // fk + "جزائر فاکلینڈ (اسلاس مالویناس)\0" // fk + "جزائر فیرو\0" // fo + "جزائر مارشل\0" // mh + "جزائر پٹکیرن\0" // pn + "جزائر کناری\0" // ic + "جزائر کک\0" // ck + "جزائر کیکس و ترکیہ\0" // tc + "جزائر ہرڈ و مکڈونلڈ\0" // hm + "جزایر آسنسیون\0" // ac + "جزایر آلاند\0" // ax + "جزایر تورکس و کایکوس\0" // tc + "جزایر جورجیای جنوبی و ساندویچ جنوبی\0" // gs + "جزایر دورافتادهٔ ایالات متحده\0" // um + "جزایر سلیمان\0" // sb + "جزایر فارو\0" // fo + "جزایر فالکلند\0" // fk + "جزایر فالکلند (ایسلاس مالویناس)\0" // fk + "جزایر قناری\0" // ic + "جزایر مارشال\0" // mh + "جزایر ماریانای شمالی\0" // mp + "جزایر ویرجین ایالات متحده\0" // vi + "جزایر ویرجین بریتانیا\0" // vg + "جزایر پیت‌کرن\0" // pn + "جزایر کارائیب هلند\0" // bq + "جزایر کلیپرتون\0" // cp + "جزایر کوک\0" // ck + "جزایر کوکوس\0" // cc + "جزایر کِیمن\0" // ky + "جزر آلاند\0" // ax + "جزر البهاما\0" // bs + "جزر القمر\0" // km + "جزر الكناري\0" // ic + "جزر المارتينيك\0" // mq + "جزر المالديف\0" // mv + "جزر الولايات المتحدة النائية\0" // um + "جزر بيتكيرن\0" // pn + "جزر توركس وكايكوس\0" // tc + "جزر سليمان\0" // sb + "جزر فارو\0" // fo + "جزر فوكلاند\0" // fk + "جزر فوكلاند - جزر مالفيناس\0" // fk + "جزر فيرجن البريطانية\0" // vg + "جزر فيرجن التابعة للولايات المتحدة\0" // vi + "جزر كايمان\0" // ky + "جزر كوك\0" // ck + "جزر كوكوس (كيلينغ)\0" // cc + "جزر مارشال\0" // mh + "جزر ماريانا الشمالية\0" // mp + "جزر والس وفوتونا\0" // wf + "جزيرة أسينشين\0" // ac + "جزيرة أسينشيون\0" // ac + "جزيرة بوفيه\0" // bv + "جزيرة كريسماس\0" // cx + "جزيرة كليبيرتون\0" // cp + "جزيرة مان\0" // im + "جزيرة نورفولك\0" // nf + "جزيرة هيرد وجزر ماكدونالد\0" // hm + "جزیرهٔ بووه\0" // bv + "جزیرهٔ من\0" // im + "جزیرهٔ نورفولک\0" // nf + "جزیرهٔ هرد و جزایر مک‌دونالد\0" // hm + "جزیرهٔ کریسمس\0" // cx + "جزیرہ اسینشن\0" // ac + "جزیرہ بوویت\0" // bv + "جزیرہ نارفوک\0" // nf + "جزیرہ کرسمس\0" // cx + "جزیرہ کلپرٹن\0" // cp + "جمائیکا\0" // jm + "جمهورية أفريقيا الوسطى\0" // cf + "جمهورية التشيك\0" // cz + "جمهورية الدومينيكان\0" // do + "جمهورية الكونغو\0" // cg + "جمهورية الكونغو الديمقراطية\0" // cd + "جمهوری آذربایجان\0" // az + "جمهوری افریقای مرکزی\0" // cf + "جمهوری دومینیکن\0" // do + "جمهوری چک\0" // cz + "جميڪا\0" // jm + "جمہوریہ ڈومينيکن\0" // do + "جمیکا\0" // jm + "جنوب أفريقيا\0" // za + "جنوب السودان\0" // ss + "جنوبي سوډان\0" // ss + "جنوبگان\0" // aq + "جنوبی افریقا\0" // za + "جنوبی افریقہ\0" // za + "جنوبی جارجیا اور جنوبی سینڈوچ جزائر\0" // gs + "جنوبی جورجیا و جنوبی ساندویچ جزایر\0" // gs + "جنوبی سودان\0" // ss + "جنوبی سوڈان\0" // ss + "جنوبی کوریا\0" // kr + "جنوبی کُره\0" // kr + "جنوبی یخ‌بزه قطب\0" // aq + "جنوٗبی جارجِیا تہٕ جنوٗبی سینٛڑوٕچ جٔزیٖرٕ\0" // gs + "جنوٗبی کورِیا\0" // kr + "جورجيا\0" // ge + "جورجيا الجنوبية وجزر ساندويتش الجنوبية\0" // gs + "جىبۇتى\0" // dj + "جيبوتي\0" // dj + "جيرسي\0" // je + "جَمایکا\0" // jm + "جَنوٗبی اَفریٖکا\0" // za + "جِبرالٹَر\0" // gi + "جِبوٗتی\0" // dj + "جٔرسی\0" // je + "جۇڭگو\0" // cn + "جی بوتي\0" // dj + "جیبوتی\0" // dj + "جیبووتی\0" // dj + "جېرسېي\0" // je + "جەبىلتارىق\0" // gi + "جەزایر\0" // dz + "جەنۇبىي ئافرىقا\0" // za + "جەنۇبىي جورجىيە ۋە جەنۇبىي ساندۋىچ ئاراللىرى\0" // gs + "جەنۇبىي سۇدان\0" // ss + "حبشه\0" // et + "ختيځ تيمور\0" // tl + "د آئل آف مین\0" // im + "د ترکیې او کیکاسو ټاپو\0" // tc + "د توغندیو ټاپو\0" // ac + "د عاج ساحل\0" // ci + "د فرانسې جنوبي سیمې\0" // tf + "د متحده ایالاتو ویګور ټاپو\0" // vi + "د متحده ایالاتو ټاپو ټاپوګانې\0" // um + "د مرکزي افریقا جمهوریت\0" // cf + "د هند سمندر سمندر سیمه\0" // io + "د کانري ټاپو\0" // ic + "د کریساس ټاپو\0" // cx + "د کلپرټون ټاپو\0" // cp + "دانمارک\0" // dk + "دانىيە\0" // dk + "دنمارک\0" // dk + "دومنیکا\0" // dm + "دومنیکن جمهوری\0" // do + "دومىنىكا\0" // dm + "دومىنىكا جۇمھۇرىيىتى\0" // do + "دومينيكا\0" // dm + "دومینیکا\0" // dm + "دومینیکن جمهوريت\0" // do + "دوورگەکانی سلێمان\0" // sb + "دوورگەکانی مارشاڵ\0" // mh + "دوورگەکانی کۆمۆر\0" // km + "دييغو غارسيا\0" // dg + "دۆمینیکا\0" // dm + "دیه‌گو گارسیا\0" // dg + "دیگو گارسیا\0" // dg + "دېگو-گارشىيا\0" // dg + "رئونیون\0" // re + "روآندا\0" // rw + "رواندا\0" // rw + "روانڈا\0" // rw + "روانڊا\0" // rw + "روس\0" // ru + "روسيا\0" // ru + "روسیه\0" // ru + "رومانيا\0" // ro + "رومانِیا\0" // ro + "رومانی\0" // ro + "رومانیا\0" // ro + "رومانیہ\0" // ro + "رومىنىيە\0" // ro + "روندا\0" // rw + "روينيون\0" // re + "روٗس\0" // ru + "روٗوانٛڈا\0" // rw + "روٙسیە\0" // ru + "رىۋاندا\0" // rw + "ري يونين\0" // re + "رِیوٗنِیَن\0" // re + "رۇسىيە\0" // ru + "ری یونین\0" // re + "ریاستہائے متحدہ\0" // us + "ریونین\0" // re + "رېيۇنىيون\0" // re + "زامبىيە\0" // zm + "زامبيا\0" // zm + "زامبیا\0" // zm + "زمبابوي\0" // zw + "زمبابوے\0" // zw + "زىمبابۋې\0" // zw + "زيمبابوي\0" // zw + "زيمبيا\0" // zm + "زِمبابے\0" // zw + "زیلاند جدید\0" // nz + "زیمبابوه\0" // zw + "زیمبابوی\0" // zw + "زیمبیا\0" // zm + "سئوتا او مالایا\0" // ea + "سئيٽرزلينڊ\0" // ch + "ساؤ ٹوم اور پرنسپے\0" // st + "سائو ٽوم ۽ پرنسپیي\0" // st + "سائوتومه و پرینسیپ\0" // st + "سائپرس\0" // cy + "ساحل العاج\0" // ci + "ساحل عاج\0" // ci + "سالوېډور\0" // sv + "سالۋادور\0" // sv + "ساموآ\0" // ws + "ساموآی امریکا\0" // as + "ساموئا\0" // ws + "ساموا\0" // ws + "ساموا الأمريكية\0" // as + "ساموای ئەمەریکایی\0" // as + "سان بارتليمي\0" // bl + "سان بيير ومكويلون\0" // pm + "سان بيير وميكولون\0" // pm + "سان تومې ۋە پرىنسىپې\0" // st + "سان مارتن\0" // mf + "سان مارىنو\0" // sm + "سان مارينو\0" // sm + "سان مارینو\0" // sm + "سان مارینۆ\0" // sm + "سانت فنسنت وجزر غرينادين\0" // vc + "سانت كيتس ونيفيس\0" // kn + "سانت لوسيا\0" // lc + "سانت مارتن\0" // sx + "سانت هيلينا\0" // sh + "سان‌مارینو\0" // sm + "ساو توم تہٕ پرٛنسِپی\0" // st + "ساو تومي وبرينسيبي\0" // st + "ساو ټیم او پرنسیپ\0" // st + "ساوتۆمێ و پرینسیپی\0" // st + "ساينت بارتېلېمى\0" // bl + "ساينت كىتىس ۋە نېۋىس\0" // kn + "ساينت لۇسىيە\0" // lc + "ساينت مارتىن\0" // mf + "ساينت پىيېر ۋە مىكېلون ئاراللىرى\0" // pm + "ساينت ۋىنسېنت ۋە گىرېنادىنېس\0" // vc + "ساينىت ھېلېنا\0" // sh + "سایفرٛس\0" // cy + "سبتة ومليلية\0" // ea + "سبته و ملیله\0" // ea + "سربيا\0" // rs + "سربیا\0" // rs + "سرزمین‌های فلسطینی\0" // ps + "سري لنڪا\0" // lk + "سريلانكا\0" // lk + "سريلانکا\0" // lk + "سری لنکا\0" // lk + "سریلانکا\0" // lk + "سری‌لانکا\0" // lk + "سشلیز\0" // sc + "سعودي عربستان\0" // sa + "سعودی عرب\0" // sa + "سفالبارد وجان ماين\0" // sj + "سلطنت متحدہ\0" // gb + "سلوانیا\0" // si + "سلواډر او جان میین\0" // sj + "سلواکیا\0" // sk + "سلوفاكيا\0" // sk + "سلوفينيا\0" // si + "سلونیا\0" // si + "سلوواکیہ\0" // sk + "سلوواڪيا\0" // sk + "سلووینیا\0" // si + "سلوینیا\0" // si + "سلۆڤاکیا\0" // sk + "سلۆڤێنیا\0" // si + "سلیمان ټاپو\0" // sb + "سلیمون جزیره\0" // sb + "سموئا\0" // ws + "سن بارتلمی\0" // bl + "سن مارینو\0" // sm + "سن پیر و میکلن\0" // pm + "سن پییر و میکلن\0" // pm + "سنت بارتلمی\0" // bl + "سنت لوسیا\0" // lc + "سنت مارتن\0" // sx + "سنت مارتین\0" // mf + "سنت هلن\0" // sh + "سنت هلنا\0" // sh + "سنت وینسنت و گرنادین\0" // vc + "سنت وینسنت و گرنادین‌ها\0" // vc + "سنت کیتس و نویس\0" // kn + "سنغافورة\0" // sg + "سنٹ مارٹن\0" // sx + "سنٽ مارٽن\0" // sx + "سنګال\0" // sn + "سنگال\0" // sn + "سنگاپور\0" // sg + "سوئد\0" // se + "سوئيڊن\0" // se + "سوئٹزر لینڈ\0" // ch + "سوئیس\0" // ch + "سوازيلاند\0" // sz + "سوازيلينڊ\0" // sz + "سوازی لینڈ\0" // sz + "سوازیلاند\0" // sz + "سوازیلند\0" // sz + "سوازیلینډ\0" // sz + "سوالبارد و يان ماين\0" // sj + "سوالبارڊ ۽ جان ماین\0" // sj + "سوالبرڈ اور جان ماین\0" // sj + "سوتا و ملیله\0" // ea + "سودان\0" // sd + "سودان جنوبی\0" // ss + "سوريا\0" // sy + "سورينام\0" // sr + "سورینام\0" // sr + "سوریه\0" // sy + "سولامان جٔزیٖرٕ\0" // sb + "سولومن آئلینڈز\0" // sb + "سولومون ئاراللىرى\0" // sb + "سولومون ٻيٽَ\0" // sb + "سومالى\0" // so + "سوماليا\0" // so + "سومالِیا\0" // so + "سومالی\0" // so + "سومالیا\0" // so + "سومالیه\0" // so + "سوودان\0" // sd + "سووریا\0" // sy + "سويسرا\0" // ch + "سوٗدی عربِیہ\0" // sa + "سوٗڈان\0" // sd + "سوڈان\0" // sd + "سوډان\0" // sd + "سوڊان\0" // sd + "سوید\0" // se + "سویدن\0" // se + "سویس\0" // ch + "سویسرا\0" // ch + "سویل جورجیا او جنوبي سینڈوچ ټاپو\0" // gs + "سویلي افریقا\0" // za + "سویلي کوریا\0" // kr + "سویڈن\0" // se + "سویډن\0" // se + "سوییس\0" // ch + "سىرىلانكا\0" // lk + "سىلوۋاكىيە\0" // sk + "سىلوۋېنىيە\0" // si + "سىنت مارتېن\0" // sx + "سىنگاپور\0" // sg + "سىپرۇس\0" // cy + "سىۋالبارد ۋە يان مايېن\0" // sj + "سىۋېزىلاند\0" // sz + "سيرا ليون\0" // sl + "سيراليون\0" // sl + "سيشل\0" // sc + "سينيگال\0" // sn + "سينٽ لوسيا\0" // lc + "سينٽ مارٽن\0" // mf + "سينٽ ڪٽس و نيوس\0" // kn + "سينٽ ھيلينا\0" // sh + "سينگاپور\0" // sg + "سيوتا وميليلا\0" // ea + "سَربِیا\0" // rs + "سَلوواکِیا\0" // sk + "سَلووینِیا\0" // si + "سَوالبریڑ تہٕ جان ماییڑ\0" // sj + "سُرِنام\0" // sr + "سُوزِلینٛڑ\0" // sz + "سُوِزَرلینٛڑ\0" // ch + "سُوِڈَن\0" // se + "سِریٖلَنٛکا\0" // lk + "سٕپین\0" // es + "سۆمالیا\0" // so + "سۇدان\0" // sd + "سۇرىنام\0" // sr + "سۇرىيە\0" // sy + "سیئوٹا اور میلیلا\0" // ea + "سیرالئون\0" // sl + "سیرالیون\0" // sl + "سیشل\0" // sc + "سیشَلِس\0" // sc + "سیشێل\0" // sc + "سیمووا\0" // ws + "سین مرینو\0" // sm + "سین میرِنو\0" // sm + "سینٛٹ بارتَھیلمی\0" // bl + "سینٛٹ لوٗسِیا\0" // lc + "سینٛٹ مارٹِن\0" // mf + "سینٛٹ وینسٮ۪ٹ تہٕ گرٛیناڑاینٕز\0" // vc + "سینٛٹ پیٖری تہٕ موکیلِیَن\0" // pm + "سینٛٹ کِٹَس تہٕ نیوِس\0" // kn + "سینٛٹ ہٮ۪لِنا\0" // sh + "سینٹ برتھلیمی\0" // bl + "سینٹ لوسیا\0" // lc + "سینٹ مارٹن\0" // mf + "سینٹ ونسنٹ اور گرینیڈائنز\0" // vc + "سینٹ پیئر اور میکلیئون\0" // pm + "سینٹ کٹس اور نیویس\0" // kn + "سینٹ ہیلینا\0" // sh + "سینټ بارټیلیټی\0" // bl + "سینټ لوسیا\0" // lc + "سینټ مارټن\0" // mf + "سینټ مارټین\0" // sx + "سینټ هیلینا\0" // sh + "سینټ ویسنټینټ او ګرینډینز\0" // vc + "سینټ پییر او میکولون\0" // pm + "سینټ کټس او نیویس\0" // kn + "سینٽ برٿلیمی\0" // bl + "سینٽ ونسنت ۽ گریناڊینز\0" // vc + "سینٽ پیئر و میڪوئیلون\0" // pm + "سینگاپور\0" // sg + "سینیگال\0" // sn + "سینیگل\0" // sn + "سینیگَل\0" // sn + "سیوٽا ۽ میلیلا\0" // ea + "سیٖرالیوون\0" // sl + "سیچیلیس\0" // sc + "سییرا لیون\0" // sl + "سیەرالیۆن\0" // sl + "سېربىيە\0" // rs + "سېررالېئون\0" // sl + "سېنېگال\0" // sn + "سېيتا ۋە مېلىلا\0" // ea + "سېيشېل\0" // sc + "سەئۇدىي ئەرەبىستان\0" // sa + "سەینت لووسیا\0" // lc + "سەینت ڤینسەنت و گرینادینز\0" // vc + "سەینت کیتس و نیڤیس\0" // kn + "شام\0" // sy + "شانشینی یەکگرتوو\0" // gb + "شرقی تیمور\0" // tl + "شمالي ماریانا ټاپو\0" // mp + "شمالی ماریانا آئلینڈز\0" // mp + "شمالی ماریانا جزایر\0" // mp + "شمالی کوریا\0" // kp + "شمالی کُره\0" // kp + "شىمالىي مارىيانا ئاراللىرى\0" // mp + "شىۋېتسارىيە\0" // ch + "شىۋېتسىيە\0" // se + "شي شلز\0" // sc + "شياڭگاڭ\0" // hk + "شياڭگاڭ ئالاھىدە مەمۇرىي رايونى (جۇڭگو)\0" // hk + "شُمٲلی مارِیانا جٔزیٖرٕ\0" // mp + "شُمٲلی کورِیا\0" // kp + "شیلی\0" // cl + "شەرقىي تىمور\0" // tl + "صحرای غربی\0" // eh + "صربستان\0" // rs + "صربستون\0" // rs + "صربيا\0" // rs + "صربیا\0" // rs + "صومالیہ\0" // so + "طاجيكستان\0" // tj + "طلوع ٻيٽ\0" // ac + "عاج ساحل\0" // ci + "عاج ِساحل\0" // ci + "عراق\0" // iq + "عربستان\0" // sa + "عربستان سعودی\0" // sa + "عربستون\0" // sa + "عروبا\0" // aw + "عمان\0" // om + "عومان\0" // om + "عُمان\0" // om + "عێراق\0" // iq + "عەرەبستانی سەعوودی\0" // sa + "غامبيا\0" // gm + "غانا\0" // gh + "غربی صحرا\0" // eh + "غرينادا\0" // gd + "غرينلاند\0" // gl + "غنا\0" // gh + "غواتيمالا\0" // gt + "غوادلوب\0" // gp + "غوام\0" // gu + "غويانا الفرنسية\0" // gf + "غيانا\0" // gy + "غيرنزي\0" // gg + "غينيا\0" // gn + "غينيا الاستوائية\0" // gq + "غينيا بيساو\0" // gw + "غەربىي ساخارا\0" // eh + "غەنا\0" // gh + "فأرانسە\0" // fr + "فارو ئاراللىرى\0" // fo + "فارو جزایر\0" // fo + "فارو ٻيٽ\0" // fo + "فارو ټاپو\0" // fo + "فالكلاند ئاراللىرى\0" // fk + "فالكلاند ئاراللىرى (ئىسلاس مالۋىناس)\0" // fk + "فالکلند (مالویناس)\0" // fk + "فالکلند جزیره‌ئون\0" // fk + "فانواتو\0" // vu + "فاکلینڈ جزائر\0" // fk + "فاکلینڈ جزائر (مالویناس)\0" // fk + "فاکلینډ ټاپو (آساس مالوناس)\0" // fk + "فاڪ لينڊ ٻيٽ\0" // fk + "فجي\0" // fj + "فجی\0" // fj + "فرانس\0" // fr + "فرانسه\0" // fr + "فرانسه‌ی جنوبی مناطق\0" // tf + "فرانسه‌ی ِگویان\0" // gf + "فرانسه‌ی پولی‌نزی\0" // pf + "فرانسوي پولینیا\0" // pf + "فرانسوي ګانا\0" // gf + "فرانسيسي پولينيشيا\0" // pf + "فرانسيسي ڏاکڻي علائقا\0" // tf + "فرانسيسي گيانا\0" // gf + "فرانسیسی جنوبی خطے\0" // tf + "فرانسیسی پولینیشیا\0" // pf + "فرانسیسی گیانا\0" // gf + "فرنسا\0" // fr + "فرٛانس\0" // fr + "فرٛانسِسی جَنوٗبی عَلاقہٕ\0" // tf + "فرٛانسِسی گِانا\0" // gf + "فرٛانسی پولِنیشِیا\0" // pf + "فرینچ گیانا\0" // gf + "فلسطين\0" // ps + "فلسطين سيمې\0" // ps + "فلسطین\0" // ps + "فلسطین ِسرزمین\0" // ps + "فلسطینی\0" // ps + "فلسطینی خطے\0" // ps + "فلپائن\0" // ph + "فلپين\0" // ph + "فلیپین\0" // ph + "فن لينڊ\0" // fi + "فن لینڈ\0" // fi + "فنزويلا\0" // ve + "فنلاند\0" // fi + "فنلند\0" // fi + "فنلندا\0" // fi + "فنلینډ\0" // fi + "فوکلنډ ټاپو\0" // fk + "فىجى\0" // fj + "فىرانسىيە\0" // fr + "فىرانسىيەنىڭ جەنۇبىي زېمىنى\0" // tf + "فىرانسىيەگە قاراشلىق پولىنېزىيە\0" // pf + "فىرانسىيەگە قاراشلىق گىۋىيانا\0" // gf + "فىلىپپىن\0" // ph + "فىنلاندىيە\0" // fi + "في جي\0" // fj + "فيتنام\0" // vn + "فيجي\0" // fj + "فَلَستیٖن\0" // ps + "فِجی\0" // fj + "فِلِپِینس\0" // ph + "فِنلینٛڑ\0" // fi + "فٕلاکلینٛڑ جٔزیٖرٕ\0" // fk + "فیجی\0" // fj + "فیلیپین\0" // ph + "فینلاند\0" // fi + "فەلەستین\0" // ps + "فەڕەنسا\0" // fr + "قاتار\0" // qa + "قارا تاغ\0" // me + "قازاقىستان\0" // kz + "قازقستان\0" // kz + "قبرس\0" // cy + "قبرص\0" // cy + "قرغزستان\0" // kg + "قرغیزستان\0" // kg + "قرقیزستان\0" // kg + "قرقیزستون\0" // kg + "قزاخستان\0" // kz + "قزاقستان\0" // kz + "قزاقستون\0" // kz + "قطر\0" // qa + "قلمرو بریتانیا در اقیانوس هند\0" // io + "قلمروهای جنوبی فرانسه\0" // tf + "قناری جزایر\0" // ic + "قىرغىزىستان\0" // kg + "قيرغيزستان\0" // kg + "قَطِر\0" // qa + "قیبرس\0" // cy + "قەتەر\0" // qa + "كارىب دېڭىزى گوللاندىيە\0" // bq + "كازاخستان\0" // kz + "كاليدونيا الجديدة\0" // nc + "كامبودژا\0" // kh + "كامېرون\0" // cm + "كانادا\0" // ca + "كانارى ئاراللىرى\0" // ic + "كايمان ئاراللىرى\0" // ky + "كرواتيا\0" // hr + "كمبوديا\0" // kh + "كندا\0" // ca + "كوبا\0" // cu + "كوت ديفوار\0" // ci + "كوتې دې ئىۋوئىر\0" // ci + "كوراساو\0" // cw + "كوريا الجنوبية\0" // kr + "كوريا الشمالية\0" // kp + "كورېيە\0" // kr + "كوستارىكا\0" // cr + "كوستاريكا\0" // cr + "كوسوفو\0" // xk + "كوسوۋو\0" // xk + "كوكوس (كىلىڭ) ئاراللىرى\0" // cc + "كولومبىيە\0" // co + "كولومبيا\0" // co + "كومورو\0" // km + "كونگو (جۇمھۇرىيىتى)\0" // cg + "كونگو (ك د ج)\0" // cd + "كونگو - بىراززاۋىل\0" // cg + "كونگو - كىنشاسا\0" // cd + "كىرودىيە\0" // hr + "كىرىباتى\0" // ki + "كىلىپپېرتون ئاراللىرى\0" // cp + "كيريباتي\0" // ki + "كينيا\0" // ke + "كۇبا\0" // cu + "كۇراچاۋ\0" // cw + "كۇك ئاراللىرى\0" // ck + "كۇۋەيت\0" // kw + "كېنىيە\0" // ke + "لاؤس\0" // la + "لائبیریا\0" // lr + "لائوس\0" // la + "لاتفيا\0" // lv + "لاتويا\0" // lv + "لاتویا\0" // lv + "لاتڤیا\0" // lv + "لاتۋىيە\0" // lv + "لاس\0" // la + "لاوس\0" // la + "لاووس\0" // la + "لایبریا\0" // lr + "لایبیرِیا\0" // lr + "لبنان\0" // lb + "لبيا\0" // ly + "لتوانیا\0" // lt + "لتوني\0" // lv + "لسوتو\0" // ls + "لهستان\0" // pl + "لهستون\0" // pl + "لوبنان\0" // lb + "لوكسمبورغ\0" // lu + "لوکزامبورگ\0" // lu + "لوکسەمبورگ\0" // lu + "لوګزامبورګ\0" // lu + "لویدیځ صحرا\0" // eh + "لىبېرىيە\0" // lr + "لىتۋانىيە\0" // lt + "لىكتېنستېين\0" // li + "لىيۇكسېمبۇرگ\0" // lu + "لىۋان\0" // lb + "لىۋىيە\0" // ly + "ليبيا\0" // ly + "ليبيريا\0" // lr + "ليتوانيا\0" // lt + "ليختنشتاين\0" // li + "ليسوتو\0" // ls + "ليسوٿو\0" // ls + "لَکسَمبٔرٕگ\0" // lu + "لِبیا\0" // ly + "لِتھُوانِیا\0" // lt + "لِکٹیٛسٹیٖن\0" // li + "لٮ۪بنان\0" // lb + "لٹویا\0" // lv + "لٿونيا\0" // lt + "لچي ٽينسٽين\0" // li + "لکسمبرگ\0" // lu + "لیبریا\0" // lr + "لیبی\0" // ly + "لیبیا\0" // ly + "لیبەریا\0" // lr + "لیتوانایا\0" // lt + "لیتوانی\0" // lt + "لیتوانیا\0" // lt + "لیتھونیا\0" // lt + "لیختن اشتاین\0" // li + "لیختنشتاین\0" // li + "لیختن‌اشتاین\0" // li + "لیسوتو\0" // ls + "لیسوتھو\0" // ls + "لیشٹنسٹائن\0" // li + "لیٛٹوِیا\0" // lv + "لیگزمبرگ\0" // lu + "لېبنان\0" // lb + "لېسوتو\0" // ls + "لەسۆتۆ\0" // ls + "مائکرونیشیا\0" // fm + "مائڪرونيشيا\0" // fm + "ماداغاسقار\0" // mg + "ماداگاسکار\0" // mg + "مادغاسکر\0" // mg + "ماراكەش\0" // ma + "مارتىنىكا\0" // mq + "مارتينڪ\0" // mq + "مارتینیک\0" // mq + "مارتینیک جزیره‌ئون\0" // mq + "مارشال ئاراللىرى\0" // mh + "مارشال جزایر\0" // mh + "مارشال ټاپو\0" // mh + "مارشل آئلینڈز\0" // mh + "مارشل ڀيٽ\0" // mh + "مارشَل جٔزیٖرٕ\0" // mh + "مارٕٹانِیا\0" // mr + "مارٹِنِک\0" // mq + "مارٹینک\0" // mq + "مارټینیک\0" // mq + "ماریشس\0" // mu + "ماكاو\0" // mo + "ماكاو الصينية (منطقة إدارية خاصة)\0" // mo + "ماكېدونىيە\0" // mk + "ماكېدونىيە (سابىق يۇگوسلاۋىيە ماكېدونىيە جۇمھۇرىيىتى)\0" // mk + "مالاوي\0" // mw + "مالاوی\0" // mw + "مالايسىيا\0" // my + "مالاۋى\0" // mw + "مالت\0" // mt + "مالتا\0" // mt + "مالدووا\0" // md + "مالدىۋې\0" // mv + "مالديپ\0" // mv + "مالدیو\0" // mv + "مالدیٖو\0" // mv + "مالدیپ\0" // mv + "مالدیڤ\0" // mv + "مالزی\0" // my + "مالطا\0" // mt + "مالى\0" // ml + "مالي\0" // ml + "ماليزيا\0" // my + "مالٹا\0" // mt + "مالٽا\0" // mt + "مالی\0" // ml + "مالیزیا\0" // my + "مان ئارىلى\0" // im + "مانٛٹسیراٹ\0" // ms + "مانټیسیرت\0" // ms + "مايوت\0" // yt + "مايوتى\0" // yt + "ماکائو\0" // mo + "ماکائو (چین دله)\0" // mo + "ماکائو، ناحیهٔ ویژهٔ حکومتی چین\0" // mo + "ماکاو\0" // mo + "ماکو\0" // mo + "ماڵتا\0" // mt + "ماۋرىتانىيە\0" // mr + "ماۋرىتىيۇس\0" // mu + "مایوت\0" // yt + "مایوٹ\0" // yt + "مایکرۆنیزیا\0" // fm + "متحده ایالات\0" // us + "متحده عرب امارات\0" // ae + "متحده عربی امارات\0" // ae + "متحدہ عرب امارات\0" // ae + "مجارستان\0" // hu + "مجارستون\0" // hu + "مداگيسڪر\0" // mg + "مدغشقر\0" // mg + "مدګاسکار\0" // mg + "مراکش\0" // ma + "مرکزی آفریقای جمهوری\0" // cf + "مرکٔزی اَفریٖکی جموٗریَت\0" // cf + "مشرقی تیمور\0" // tl + "مشرِقی سَہارا\0" // eh + "مصر\0" // eg + "مغربی صحارا\0" // eh + "مغولستان\0" // mn + "مغولستون\0" // mn + "مقدونيا\0" // mk + "مقدونيا- جمهورية مقدونيا اليوغسلافية السابقة\0" // mk + "مقدونیه\0" // mk + "مقدونیه (fyrom)\0" // mk + "مقدونیه (جمهوری سابقاً یوگسلاو)\0" // mk + "مقدونیه جمهوری\0" // mk + "مقدونیہ\0" // mk + "مقدونیہ (fyrom)\0" // mk + "مكاو\0" // mo + "مكاو الصينية (منطقة إدارية خاصة)\0" // mo + "ملائشیا\0" // my + "ملائيشيا\0" // my + "ملاوي\0" // mw + "ملاوی\0" // mw + "من ِجزیره\0" // im + "منطقة اليورو\0" // ez + "منطقه یورو\0" // ez + "منغوليا\0" // mn + "منگوليا\0" // mn + "منگولیا\0" // mn + "موروکو\0" // ma + "موروڪو\0" // ma + "مورى تيوس\0" // mu + "موريتانيا\0" // mr + "موريشس\0" // mu + "موريشيوس\0" // mu + "مورِشَس\0" // mu + "موریتانی\0" // mr + "موریتانیا\0" // mr + "موریس\0" // mu + "موریشیس\0" // mu + "موریطانیہ\0" // mr + "موزامبىك\0" // mz + "موزامبیک\0" // mz + "موزمبيق\0" // mz + "موزمبیق\0" // mz + "موزمبیک\0" // mz + "موزَمبِک\0" // mz + "مولداوی\0" // md + "مولدوا\0" // md + "مولدوفا\0" // md + "مولدوۋا\0" // md + "مولڑاوِیا\0" // md + "موناكو\0" // mc + "موناکو\0" // mc + "موناڪو\0" // mc + "مونتسرات\0" // ms + "مونتسېررات\0" // ms + "مونته‌نگرو\0" // me + "مونتيسيرات\0" // ms + "مونت‌سرات\0" // ms + "مونٹسیراٹ\0" // ms + "مونٹے نیگرو\0" // me + "مونټینیګرو\0" // me + "مونٽسراٽ\0" // ms + "مونٽي نيگرو\0" // me + "مونیٚکو\0" // mc + "موٹونیٛگِریو\0" // me + "موڭغۇلىيە\0" // mn + "مىسىر\0" // eg + "مىكرونېزىيە\0" // fm + "مىلاد ئارىلى\0" // cx + "مياتي\0" // yt + "ميانامار (برما)\0" // mm + "ميانمار (برما)\0" // mm + "ميانمار (بورما)\0" // mm + "ميسي ڊونيا\0" // mk + "ميكرونيزيا\0" // fm + "ميڪسيڪو\0" // mx + "مَشرِقی تایمور\0" // tl + "مَلیشِیا\0" // my + "مَنٛگولِیا\0" // mn + "مَکاوو ایس اے آر چیٖن\0" // mo + "مَیَنما بٔرما\0" // mm + "مَییٹ\0" // yt + "مُتحدہ عرَب امارات\0" // ae + "مِسٔر\0" // eg + "مٮ۪سوڑونِیا\0" // mk + "مٮ۪کسِکو\0" // mx + "مڈغاسکر\0" // mg + "مکا سار چین\0" // mo + "مکاؤ\0" // mo + "مکاؤ sar چین\0" // mo + "مکزیک\0" // mx + "مکسیکو\0" // mx + "مڪائو\0" // mo + "مۆریتانیا\0" // mr + "مۆزامبیک\0" // mz + "مۆلدۆڤا\0" // md + "مۆناکۆ\0" // mc + "مۆنتینیگرۆ\0" // me + "میانمار\0" // mm + "میانمار (برما)\0" // mm + "میانمار (برمه)\0" // mm + "میرنشینە یەکگرتووە عەرەبییەکان\0" // ae + "میسر\0" // eg + "میټوت\0" // yt + "میڑاگاسکار\0" // mg + "میکرونزی\0" // fm + "میکرونزیا\0" // fm + "میکرونیزیا\0" // fm + "میکسیکو\0" // mx + "مېكسىكا\0" // mx + "مەجارستان\0" // hu + "مەغریب\0" // ma + "مەنگۆلیا\0" // mn + "مەکسیک\0" // mx + "نؤرو\0" // nr + "نائجر\0" // ne + "نائجیریا\0" // ng + "نائورو\0" // nr + "نائوروو\0" // nr + "نائيجر\0" // ne + "نائيجيريا\0" // ng + "نارفاک جٔزیٖرٕ\0" // nf + "نارفولک ټاپوګان\0" // nf + "نارفوک آئلینڈ\0" // nf + "نارووٗ\0" // nr + "ناروي\0" // no + "ناروی\0" // no + "ناروۍ\0" // no + "ناروے\0" // no + "نامبیا\0" // na + "نامىبىيە\0" // na + "ناميبيا\0" // na + "نامِبِیا\0" // na + "نامیبیا\0" // na + "ناورو\0" // nr + "ناکاراگُوا\0" // ni + "ناۋرۇ\0" // nr + "نایجر\0" // ne + "نایجَر\0" // ne + "نایجیرِیا\0" // ng + "نایجیریا\0" // ng + "نایرو\0" // nr + "نروژ\0" // no + "نورفولك ئارىلى\0" // nf + "نورفولک جزیره\0" // nf + "نورفوڪ ٻيٽ\0" // nf + "نورۋېگىيە\0" // no + "نووي\0" // nu + "نوی کالیډونیا\0" // nc + "نىكاراگۇئا\0" // ni + "نىگېر\0" // ne + "نىگېرىيە\0" // ng + "نيبال\0" // np + "نيجيريا\0" // ng + "نيدرلينڊ\0" // nl + "نيكاراغوا\0" // ni + "نيميبيا\0" // na + "نيو زيلينڊ\0" // nz + "نيوزيلندا\0" // nz + "نيوي\0" // nu + "نيپال\0" // np + "نيۇئې\0" // nu + "نِو کیلِڑونِیا\0" // nc + "نپال\0" // np + "نکاراګوا\0" // ni + "نکاراگووا\0" // ni + "نڪراگوا\0" // ni + "نۆرویژ\0" // no + "نیئو\0" // nu + "نیجر\0" // ne + "نیجریا\0" // ng + "نیجریه\0" // ng + "نیجەر\0" // ne + "نیدر لینڈز\0" // nl + "نیمبیا\0" // na + "نیو کالیدونیا\0" // nc + "نیو کلیڈونیا\0" // nc + "نیو ڪالیڊونیا\0" // nc + "نیوئه\0" // nu + "نیوزلند\0" // nz + "نیوزی لینڈ\0" // nz + "نیوزیلاند\0" // nz + "نیوزیلند\0" // nz + "نیوزیلنډ\0" // nz + "نیوو\0" // nu + "نیوٗ\0" // nu + "نیوٗزِلینٛڑ\0" // nz + "نیٖدَرلینٛڑ\0" // nl + "نیپال\0" // np + "نیکاراگوئه\0" // ni + "نیکاراگوا\0" // ni + "نېپال\0" // np + "نەمسا\0" // at + "هائیتی\0" // ht + "هارد و مک‌دونالد جزایر\0" // hm + "هالند\0" // nl + "هالېنډ\0" // nl + "هاندوراس\0" // hn + "هانډوراس\0" // hn + "هانګ کانګ\0" // hk + "هانګ کانګ sar چین\0" // hk + "هانگ ڪانگ\0" // hk + "هايتي\0" // ht + "هایتی\0" // ht + "هایټي\0" // ht + "هاییتی\0" // ht + "هرڊ ۽ مڪڊونلڊ ٻيٽ\0" // hm + "هسپانیه\0" // es + "هلند\0" // nl + "هلند ِکاراییبی جزایر\0" // bq + "هند\0" // in + "هندوراس\0" // hn + "هنغاريا\0" // hu + "هنڊورس\0" // hn + "هنگ کنگ\0" // hk + "هنگ‌کنگ\0" // hk + "هنگ‌کنگ، ناحیهٔ ویژهٔ حکومتی چین\0" // hk + "هولندا\0" // nl + "هولندا الكاريبية\0" // bq + "هونغ كونغ\0" // hk + "هونغ كونغ الصينية (منطقة إدارية خاصة)\0" // hk + "هونگ کونگ\0" // hk + "هيٽي\0" // ht + "واتیکان\0" // va + "واتیکان ښار\0" // va + "والس ۽ فتونا\0" // wf + "والِس تہٕ فیوٗچوٗنا\0" // wf + "والیس او فوتونا\0" // wf + "والیس و فوتونا\0" // wf + "واناتو\0" // vu + "وانواتو\0" // vu + "وانوٗتوٗ\0" // vu + "وسط افریقی جمہوریہ\0" // cf + "ونزوئلا\0" // ve + "ونزویلا\0" // ve + "ويتنام\0" // vn + "وينزيلا\0" // ve + "وينيٽيو\0" // vu + "ويٽڪين سٽي\0" // va + "وچ آفريقي جمهوريه\0" // cf + "ویتنام\0" // vn + "ویلایەتە یەکگرتووەکان\0" // us + "ویلیز اور فیوٹیونا\0" // wf + "وینازوٗلا\0" // ve + "وینزوئیلا\0" // ve + "وینزویلا\0" // ve + "وینوآٹو\0" // vu + "ویٹِنام\0" // vn + "ویٹِکَن سِٹی\0" // va + "ویٹیکن سٹی\0" // va + "وېتنام\0" // vn + "يامايكا\0" // jm + "ياپونىيە\0" // jp + "يمن\0" // ye + "يوايس\0" // us + "يورو زون\0" // ez + "يوروگوءِ\0" // uy + "يونان\0" // gr + "يوڪرين\0" // ua + "يوگنڊا\0" // ug + "يېشىل تۇمشۇق\0" // cv + "يېڭى زېلاندىيە\0" // nz + "يېڭى كالېدونىيە\0" // nc + "يەمەن\0" // ye + "ٛسِنٛگاپوٗر\0" // sg + "ٹرسٹن ڈا کیونہا\0" // ta + "ٹرٛنِنداد تہٕ ٹوبیگو\0" // tt + "ٹونٛگا\0" // to + "ٹونگا\0" // to + "ٹونیشِیا\0" // tn + "ٹووالو\0" // tv + "ٹوکیلاؤ\0" // tk + "ٹوگو\0" // tg + "ټرینیاډډ او ټوبوګ\0" // tt + "ٽرسٽن دا ڪوها\0" // ta + "ٽريني ڊيڊ ۽ ٽوباگو ٻيٽ\0" // tt + "ٽونگا\0" // to + "ٽوڪلائو\0" // tk + "پاراګوی\0" // py + "پاراگوئه\0" // py + "پاراگوای\0" // py + "پاراگۋاي\0" // py + "پاكىستان\0" // pk + "پالائو\0" // pw + "پالائۇ\0" // pw + "پالاو\0" // pw + "پاناما\0" // pa + "پانامه\0" // pa + "پانامہ\0" // pa + "پاپ نيو ګيني، د يو هېواد نوم دې\0" // pg + "پاپوآ نیو گنی\0" // pg + "پاپوا نو گینه\0" // pg + "پاپوا نیو گني\0" // pg + "پاپوا نیو گینیا\0" // pg + "پاپوا گینهٔ نو\0" // pg + "پاپوا گینێی نوێ\0" // pg + "پاپُوا نیوٗ گیٖنی\0" // pg + "پاپۇئا يېڭى گىۋىنىيەسى\0" // pg + "پاکستان\0" // pk + "پاکستون\0" // pk + "پاکِستان\0" // pk + "پاڪستان\0" // pk + "پرتغال\0" // pt + "پرتگال\0" // pt + "پرو\0" // pe + "پلاؤ\0" // pw + "پلائو\0" // pw + "پلو\0" // pw + "پلی‌نزی فرانسه\0" // pf + "پناما\0" // pa + "پورتو ریکو\0" // pr + "پورتوریکو\0" // pr + "پورتوگال\0" // pt + "پورتګال\0" // pt + "پورتۇگالىيە\0" // pt + "پولشا\0" // pl + "پولند\0" // pl + "پولنډ\0" // pl + "پولينڊ\0" // pl + "پولینٛڑ\0" // pl + "پولینڈ\0" // pl + "پىتكايرن ئاراللىرى\0" // pn + "پىل چىشى قىرغىقى\0" // ci + "پيراگوءِ\0" // py + "پيرو\0" // pe + "پيوئرٽو ريڪو\0" // pr + "پَراگُے\0" // py + "پَلاو\0" // pw + "پَناما\0" // pa + "پُرتِگال\0" // pt + "پِٹکیرٕنۍ جٔزیٖرٕ\0" // pn + "پٔرٹو رِکو\0" // pr + "پٹکائرن جزائر\0" // pn + "پٽڪئرن ٻيٽ\0" // pn + "پۆڵەندا\0" // pl + "پۇئېرتو رىكو\0" // pr + "پیتکارین جزایر\0" // pn + "پیراگوئے\0" // py + "پیرو\0" // pe + "پیروو\0" // pe + "پیورٹو ریکو\0" // pr + "پیٖروٗ\0" // pe + "پیټکیرن ټاپو\0" // pn + "پېرۇ\0" // pe + "پەلەستىن\0" // ps + "پەلەستىن زېمىنى\0" // ps + "ٿائيليند\0" // th + "ڀوٽان\0" // bt + "چاد\0" // td + "چاڈ\0" // td + "چاډ\0" // td + "چاڊ\0" // td + "چاڑ\0" // td + "چاۋشيەن\0" // kp + "چلي\0" // cl + "چلی\0" // cl + "چىلى\0" // cl + "چين\0" // cn + "چيڪ جهموريه\0" // hu + "چيڪ جهموريو\0" // cz + "چيڪيا\0" // cz + "چِلی\0" // cl + "چک جمهوريت\0" // cz + "چک جمهوری\0" // cz + "چکیا\0" // cz + "چیلي\0" // cl + "چیلی\0" // cl + "چین\0" // cn + "چیٖن\0" // cn + "چیک جمہوریہ\0" // cz + "چیک جَموٗرِیَت\0" // cz + "چیکیا\0" // cz + "چېخ جۇمھۇرىيىتى\0" // cz + "ڈائجو گارسیا\0" // dg + "ڈنمارک\0" // dk + "ڈومنیکا\0" // dm + "ڈومِنِکا\0" // dm + "ڈومِنِکَن جموٗرِیَت\0" // do + "ڈینٛمارٕک\0" // dk + "ڈیگو گارشیا\0" // dg + "ډایګو ګارسیا\0" // dg + "ډنمارک\0" // dk + "ڊئيگو گارسيا\0" // dg + "ڊجبيوتي\0" // dj + "ڊومينيڪا\0" // dm + "ڊومينيڪن جمهوريه\0" // do + "ڊينمارڪ\0" // dk + "ڏکڻ آفريقا\0" // za + "ڏکڻ جارجيا ۽ ڏکڻ سينڊوچ ٻيٽ\0" // gs + "ڏکڻ سوڊان\0" // ss + "ڏکڻ ڪوريا\0" // kr + "ڕواندا\0" // rw + "ڕووسیا\0" // ru + "ڕۆمانیا\0" // ro + "ڕۆژاوای سەحرا\0" // eh + "ژاپن\0" // jp + "ژاپۆن\0" // jp + "ڤاتیکان\0" // va + "ڤانوواتوو\0" // vu + "ڤولاتیا یأکاگئرتە\0" // us + "ڤیەتنام\0" // vn + "کازاخستان\0" // kz + "کاستاریکا\0" // cr + "کاستریکا\0" // cr + "کالدونیای جدید\0" // nc + "کامبوج\0" // kh + "کامرون\0" // cm + "کامیرۆن\0" // cm + "کانادا\0" // ca + "کاناډا\0" // ca + "کانګو (drc)\0" // cd + "کانګو (جمهوریه)\0" // cg + "کانګو - بروزوییل\0" // cg + "کانګو - کینشاسا\0" // cd + "کانگو (drc)\0" // cd + "کانگو (جمہوریہ)\0" // cg + "کانگو - برازاویلے\0" // cg + "کانگو - برازویل\0" // cg + "کانگو - کنشاسا\0" // cd + "کانگو - کینشاسا\0" // cd + "کانەدا\0" // ca + "کرغزستان\0" // kg + "کرهٔ جنوبی\0" // kr + "کرهٔ شمالی\0" // kp + "کرواثیا\0" // hr + "کرواسی\0" // hr + "کروشیا\0" // hr + "کرِسمَس جٔزیٖرٕ\0" // cx + "کرٛوشِیا\0" // hr + "کرۆواتیا\0" // hr + "کریباتی\0" // ki + "کریبیائی نیدرلینڈز\0" // bq + "کریسمس جزیره\0" // cx + "کلمبیا\0" // co + "کلپرٹن آئلینڈ\0" // cp + "کلیپرتون جزیره\0" // cp + "کمبودیا\0" // kh + "کمبوڈیا\0" // kh + "کمپوچیا\0" // kh + "کنگو (جمهوری دموکراتیک)\0" // cd + "کنگو (جمهوری)\0" // cg + "کنگو (دموکراتیک جمهوری)\0" // cd + "کنگو - برازویل\0" // cg + "کنگو - کینشاسا\0" // cd + "کنگو برازاویل\0" // cg + "کنگو کینشاسا\0" // cd + "کنیا\0" // ke + "کوبا\0" // cu + "کوراسائو\0" // cw + "کوریای جنوبی\0" // kr + "کوریای شمالی\0" // kp + "کوزوو\0" // xk + "کوستاریکا\0" // cr + "کوسوا\0" // xk + "کوسوو\0" // xk + "کوسووو\0" // xk + "کوسٹا رِکا\0" // cr + "کوسٹا ریکا\0" // cr + "کولمبیا\0" // co + "کولَمبِیا\0" // co + "کومور\0" // km + "کومورو\0" // km + "کوموروس\0" // km + "کونٛگو بٔرٛزاوِلی\0" // cg + "کونٛگو کِنشاسا\0" // cd + "کووبا\0" // cu + "کوٹ ڈی آئیوری\0" // ci + "کوک (کیلینگ) جزایر\0" // cc + "کوک جزایر\0" // ck + "کوک ټاپوګان\0" // ck + "کوکوز (کیبل) ټاپوګانې\0" // cc + "کوکوس (کیلنگ) جزائر\0" // cc + "کوکوکا\0" // cw + "کوکَس کیٖلِنٛگ جٔزیٖرٕ\0" // cc + "کویت\0" // kw + "کویټ\0" // kw + "کوەیت\0" // kw + "کَزاکِستان\0" // kz + "کَمبوڑِیا\0" // kh + "کَمورَس\0" // km + "کُویت\0" // kw + "کُک جٔزیٖرٕ\0" // ck + "کِرٕباتی\0" // ki + "کِرگِستان\0" // kg + "کِنٛیا\0" // ke + "کک آئلینڈز\0" // ck + "کۆتدیڤوار\0" // ci + "کۆریای باشوور\0" // kr + "کۆریای باکوور\0" // kp + "کۆستاریکا\0" // cr + "کۆلۆمبیا\0" // co + "کۆماری ئەفریقای ناوەڕاست\0" // cf + "کۆماری دیموکراتیکی کۆنگۆ\0" // cd + "کۆماری چیک\0" // cz + "کۆماری کۆنگۆ\0" // cg + "کۆنگۆ برازاڤیل\0" // cg + "کۆنگۆ کینشاسا\0" // cd + "کیري باتي\0" // ki + "کیریباتی\0" // ki + "کیریباس\0" // ki + "کیریبین هالینډ\0" // bq + "کیمان ټاپوګان\0" // ky + "کیمرون\0" // cm + "کیمن جزیره‌ئون\0" // ky + "کیمَن جٔزیٖرٕ\0" // ky + "کیمین آئلینڈز\0" // ky + "کینری آئلینڈز\0" // ic + "کینَڑا\0" // ca + "کینیا\0" // ke + "کینیڈا\0" // ca + "کیوبا\0" // cu + "کیوراکاؤ\0" // cw + "کیوٗبا\0" // cu + "کیٚمِروٗن\0" // cm + "کیپ ؤرڑی\0" // cv + "کیپ ورد\0" // cv + "کیپ ورڈی\0" // cv + "کیپ‌ورد\0" // cv + "کەمبۆدیا\0" // kh + "کەیپڤەرد\0" // cv + "ڪئناڊا\0" // ca + "ڪانگو\0" // cd + "ڪانگو (جمهوري)\0" // cg + "ڪانگو - برازاویل\0" // cg + "ڪانگو -ڪنشاسا\0" // cd + "ڪرباتي\0" // ki + "ڪرسمس ٻيٽ\0" // cx + "ڪرغستان\0" // kg + "ڪروئيشيا\0" // hr + "ڪلپرٽن ٻيٽ\0" // cp + "ڪمبوڊيا\0" // kh + "ڪوسووو\0" // xk + "ڪوسٽا رڪا\0" // cr + "ڪولمبيا\0" // co + "ڪوموروس\0" // km + "ڪويت\0" // kw + "ڪوڪ ٻيٽ\0" // ck + "ڪوڪوس ٻيٽ\0" // cc + "ڪي مين ٻيٽ\0" // ky + "ڪيريبين نيدرلينڊ\0" // bq + "ڪيمرون\0" // cm + "ڪينري ٻيٽ\0" // ic + "ڪينيا\0" // ke + "ڪيوبا\0" // cu + "ڪيوراسائو\0" // cw + "ڪيپ وردي\0" // cv + "ګابن\0" // ga + "ګالډیپ\0" // gp + "ګامبیا\0" // gm + "ګانا\0" // gh + "ګرنادا\0" // gd + "ګرنسي\0" // gg + "ګرینلینډ\0" // gl + "ګواتیمالا\0" // gt + "ګوام\0" // gu + "ګیانا\0" // gy + "ګینه\0" // gn + "ګینه بیسو\0" // gw + "گابن\0" // ga + "گابون\0" // ga + "گابۆن\0" // ga + "گامبىيە\0" // gm + "گامبیا\0" // gm + "گانا\0" // gh + "گبون\0" // ga + "گرانادا\0" // gd + "گرجستان\0" // ge + "گرجستون\0" // ge + "گرنادا\0" // gd + "گرنزی\0" // gg + "گرين لينڊ\0" // gl + "گرينڊا\0" // gd + "گرٛنیڑا\0" // gd + "گرین لینڈ\0" // gl + "گرینادا\0" // gd + "گریناڈا\0" // gd + "گرینلاند\0" // gl + "گرینلند\0" // gl + "گریٖس\0" // gr + "گریٖنلینٛڑ\0" // gl + "گني\0" // gn + "گني بسائو\0" // gw + "گنی\0" // gn + "گنی بساؤ\0" // gw + "گهانا\0" // gh + "گوئام\0" // gu + "گوئرنسی\0" // gg + "گوئٽي مالا\0" // gt + "گواتمالا\0" // gt + "گواتیمالا\0" // gt + "گوادلوپ\0" // gp + "گوام\0" // gu + "گواٹے مالا\0" // gt + "گواڈیلوپ\0" // gp + "گواڊیلوپ\0" // gp + "گوتیدالا\0" // gt + "گورجستان\0" // ge + "گورنسي\0" // gg + "گوللاندىيە\0" // nl + "گویان\0" // gy + "گویان فرانسه\0" // gf + "گویانا\0" // gy + "گىرۇزىيە\0" // ge + "گىرېتسىيە\0" // gr + "گىرېنادا\0" // gd + "گىرېنلاندىيە\0" // gl + "گىۋاتېمالا\0" // gt + "گىۋادېلۇپ\0" // gp + "گىۋىنىيە\0" // gn + "گىۋىنىيە بىسسائۇ\0" // gw + "گىۋىيانا\0" // gy + "گيانا\0" // gy + "گيمبيا\0" // gm + "گَمبِیا\0" // gm + "گَواڑیلوپ\0" // gp + "گُوام\0" // gu + "گُیانا\0" // gy + "گِنی\0" // gn + "گھانا\0" // gh + "گۇئام\0" // gu + "گۇرنسېي\0" // gg + "گیانا\0" // gy + "گیبان\0" // ga + "گیبون\0" // ga + "گیمبیا\0" // gm + "گینه\0" // gn + "گینه بیسائو\0" // gw + "گینهٔ استوایی\0" // gq + "گینهٔ بیسائو\0" // gw + "گینیا\0" // gn + "گینیا استوایی\0" // gq + "گینیا بیسائو\0" // gw + "گینێ\0" // gn + "گینێ بیساو\0" // gw + "گیوَنَرسے\0" // gg + "گیٖنی بِساو\0" // gw + "گېرمانىيە\0" // de + "ھئن\0" // in + "ھايتى\0" // ht + "ھایتی\0" // ht + "ھوندۇراس\0" // hn + "ھىندونېزىيە\0" // id + "ھىندىستان\0" // in + "ھۆندووراس\0" // hn + "ھۆڵەندا\0" // nl + "ھیندستان\0" // in + "ھېرد ئارىلى ۋە ماكدونالد ئاراللىرى\0" // hm + "ہانٛڈوٗرِس\0" // hn + "ہانٛگ کانٛگ ایس اے آر چیٖن\0" // hk + "ہانگ کانگ\0" // hk + "ہانگ کانگ sar چین\0" // hk + "ہایتی\0" // ht + "ہسپانیہ\0" // es + "ہنگری\0" // hu + "ہونڈاروس\0" // hn + "ہَرٕڑ جٔزیٖرٕ تہٕ مٮ۪کڈونالڑٕ جٔزیٖرٕ\0" // hm + "ہَنٛگری\0" // hu + "ہِنٛدوستان\0" // in + "ہیرڈ جزیرہ و میکڈولینڈ جزائر\0" // hm + "ہیٹی\0" // ht + "ۋاتىكان\0" // va + "ۋاللىس ۋە فۇتۇنا\0" // wf + "ۋانۇئاتۇ\0" // vu + "ۋىيېتنام\0" // vn + "ۋېنگىرىيە\0" // hu + "ۋېنېسۇئېلا\0" // ve + "یمن\0" // ye + "یو کے\0" // gb + "یوروزون\0" // ez + "یوروګوی\0" // uy + "یوروگوئے\0" // uy + "یوروگوای\0" // uy + "یونان\0" // gr + "یوٗ ایس ؤرجِن جٔزیٖرٕ\0" // vi + "یوٗروگے\0" // uy + "یوٗرِکین\0" // ua + "یوٗنایٹِڑ سِٹیٹِس\0" // us + "یوٗنایٹِڑ سِٹیٹِس ماینَر آوُٹلییِنٛگ جٔزیٖرٕ\0" // um + "یوٗگانٛڑا\0" // ug + "یوکرین\0" // ua + "یوګانډا\0" // ug + "یوگاندا\0" // ug + "یوگنڈا\0" // ug + "یَمَن\0" // ye + "یُنایٹِڑ کِنٛگڈَم\0" // gb + "یۆنان\0" // gr + "یەمەن\0" // ye + "अँग्विला\0" // ai + "अँटिग्वा आणि बर्बुडा\0" // ag + "अँडोरा\0" // ad + "अंगुला\0" // ai + "अंगोला\0" // ao + "अंटार्कटिका\0" // aq + "अंटार्क्टिका\0" // aq + "अंडोरा\0" // ad + "अङ्गोला\0" // ao + "अजरबैजान\0" // az + "अज़रबैजान\0" // az + "अझरबैजान\0" // az + "अन्टारटिका\0" // aq + "अन्डोर्रा\0" // ad + "अफगाणिस्तान\0" // af + "अफगानिस्तान\0" // af + "अफ़ग़ानिस्तान\0" // af + "अफ़गानिस्तान\0" // af + "अमरिकी समोआ\0" // as + "अमेरिकन सामोआ\0" // as + "अमेरिका\0" // us + "अमेरिकी समोआ\0" // as + "अमेरिकी सामोआ\0" // as + "अरुबा\0" // aw + "अरूबा\0" // aw + "अर्जेंटिना\0" // ar + "अर्जेंटीना\0" // ar + "अर्जेण्टिना\0" // ar + "अर्जेन्टिना\0" // ar + "अर्मेनिया\0" // am + "अल सल्वाडोर\0" // sv + "अल साल्वाडोर\0" // sv + "अलांड जुवे\0" // ax + "अलान्ड टापुहरु\0" // ax + "अल्जीरिया\0" // dz + "अल्जेरिया\0" // dz + "अल्बानिया\0" // al + "अल्बानीया\0" // al + "अल्बेनिया\0" // al + "अष्ट्रिया\0" // at + "अष्ट्रेलिया\0" // au + "असेंशन द्वीप\0" // ac + "असेशन आयलँड\0" // ac + "अस्तंत सहारा\0" // eh + "अ‍ॅलँड बेटे\0" // ax + "अ‍ॅसेन्शियन बेट\0" // ac + "आइभोरी कोस्ट\0" // ci + "आइल अफ म्यान\0" // im + "आइल ऑफ़ मैन\0" // im + "आइवरी कोस्ट\0" // ci + "आइसलँड\0" // is + "आइसलैंड\0" // is + "आइस्ल्याण्ड\0" // is + "आईल ऑफ़ मैन\0" // im + "आईवरी कोस्ट\0" // ci + "आउटलाइंग ओशिनिया\0" // qo + "आउटलाईंग ओशनिया\0" // qo + "आङ्गुइला\0" // ai + "आयरलँड\0" // ie + "आयरलैंड\0" // ie + "आयरल्याण्ड\0" // ie + "आयर्लंड\0" // ie + "आयल ऑफ मॅन\0" // im + "आयवोरी कोस्ट\0" // ci + "आयव्हरी कोस्ट\0" // ci + "आर्मीनीया\0" // am + "आर्मेनिया\0" // am + "आलाँड द्वीप\0" // ax + "आवटलायींग ओशेनिया\0" // qo + "इंडोनेशिया\0" // id + "इंडोनेशीया\0" // id + "इक्वाडोर\0" // ec + "इक्वेटोरियल गिनी\0" // gq + "इक्वेटोरियल गुएनिया\0" // gq + "इक्वेडोर\0" // ec + "इजरायल\0" // il + "इज़राइल\0" // il + "इजिप्ट\0" // eg + "इजिप्त\0" // eg + "इटली\0" // it + "इटाली\0" // it + "इथिओपिया\0" // et + "इथियोपिया\0" // et + "इन्डोनेशिया\0" // id + "इराक\0" // iq + "इराण\0" // ir + "इरान\0" // ir + "इरिट्रिया\0" // er + "इसले ऑफ मॅन\0" // im + "इस्टोनिया\0" // ee + "इस्त्राइल\0" // il + "इस्राइल\0" // il + "ईजिप्त\0" // eg + "ईराक़\0" // iq + "ईरान\0" // ir + "ईस्ट तिमूर\0" // tl + "उज़बेकिस्तान\0" // uz + "उज़्बेकिस्तान\0" // uz + "उज्बेकिस्तान\0" // uz + "उझबेकिस्तान\0" // uz + "उत्तर कोरिया\0" // kp + "उत्तरी मरिना आयसलैण्ड\0" // mp + "उत्तरी मारिआना टापु\0" // mp + "उत्तरी मारियाना द्वीप\0" // mp + "उत्तरी मारियाना द्वीपसमूह\0" // mp + "उत्तरी मारियाना बेटे\0" // mp + "उरुग्वे\0" // uy + "उरूग्वे\0" // uy + "ऍन्डोरा\0" // ad + "ऍल साल्वाडोर\0" // sv + "एँटिगुआ आनी बारबुडा\0" // ag + "एंगीला\0" // ai + "एंग्विला\0" // ai + "एंटिगुआ और बरबुडा\0" // ag + "एंडोरा\0" // ad + "एक्वाडोर\0" // ec + "एन्टिगुआ एवं बारबूडा\0" // ag + "एन्टिगुआ र बारबुडा\0" // ag + "एरिट्रिया\0" // er + "एरित्रिया\0" // er + "एल साल्वाडोर\0" // sv + "एलैंड द्वीपसमूह\0" // ax + "एल् साल्भाडोर\0" // sv + "एस्केन्सन टापु\0" // ac + "एस्टोनिया\0" // ee + "ऑस्ट्रिया\0" // at + "ऑस्ट्रेलिया\0" // au + "ऑस्ट्रेलीया\0" // au + "ओमन\0" // om + "ओमान\0" // om + "कंबोडिया\0" // kh + "कङ्गो (गणतन्त्र)\0" // cg + "कङ्गो (डीआर्‌सी)\0" // cd + "कङ्गो - किन्शासा\0" // cd + "कङ्गो ब्राजाभिल\0" // cg + "कज़ाखस्तान\0" // kz + "कझाकस्तान\0" // kz + "कतार\0" // qa + "कनाडा\0" // ca + "कम्बोडिया\0" // kh + "क़तर\0" // qa + "क़तार\0" // qa + "काँगो (डीआरसी)\0" // cd + "काँगो (प्रजासत्ताक)\0" // cg + "काँगो - किंशासा\0" // cd + "काँगो - ब्राझाविले\0" // cg + "कांगो (गणराज्य)\0" // cg + "कांगो (डीआरसी)\0" // cd + "कांगो - किंशासा\0" // cd + "कांगो – ब्राज़ाविल\0" // cg + "काजाकस्तान\0" // kz + "किरगिझस्तान\0" // kg + "किरिबाटी\0" // ki + "किरिबाती\0" // ki + "किरीबाटी\0" // ki + "किर्गिज़\0" // kg + "किर्गिज़स्तान\0" // kg + "किर्गिस्तान\0" // kg + "कुक आयलँड्स\0" // ck + "कुक टापुहरु\0" // ck + "कुक द्वीप\0" // ck + "कुक द्वीपसमूह\0" // ck + "कुक बेटे\0" // ck + "कुरसावो\0" // cw + "कुराकाओ\0" // cw + "कुवेत\0" // kw + "कुवैत\0" // kw + "कॅनडा\0" // ca + "कॅनरी आयलैंड्स\0" // ic + "कॅनरी बेटे\0" // ic + "कॅमेरून\0" // cm + "कॅरिबियन निदरलँड\0" // bq + "कॅरिबियन नेदरलँड्स\0" // bq + "केंद्रीय अफ्रिकी प्रजासत्ताक\0" // cf + "केनया\0" // ke + "केनिया\0" // ke + "केन्द्रीय अफ्रिकी गणतन्त्र\0" // cf + "केन्या\0" // ke + "केप भर्डे\0" // cv + "केप वर्ड\0" // cv + "केप वर्दी\0" // cv + "केप व्हर्डे\0" // cv + "केमन बेटे\0" // ky + "केमैन द्वीप\0" // ky + "केयमान टापु\0" // ky + "कैनाडा\0" // ca + "कैनेरी द्वीपसमूह\0" // ic + "कैप वेर्दे\0" // cv + "कैमरून\0" // cm + "कैमेन आइलैंड्स\0" // ky + "कैमेन द्वीपसमूह\0" // ky + "कैरिबियन नीदरलैंड\0" // bq + "कॉंगो किनशासा\0" // cd + "कॉंगो ब्राज़्ज़ावील\0" // cg + "कोंगो (डीआरसी)\0" // cd + "कोंगो (प्रजासत्ताक)\0" // cg + "कोंगो - किंशासा\0" // cd + "कोंगो - ब्राझाविला\0" // cg + "कोकोस (किलिंग) टापुहरु\0" // cc + "कोकोस (कीलिंग) आयलँड\0" // cc + "कोकोस (कीलिंग) द्वीपसमूह\0" // cc + "कोकोस (कीलिंग) बेटे\0" // cc + "कोकोस द्वीप\0" // cc + "कोट डी आइवर\0" // ci + "कोत द’ईवोआर\0" // ci + "कोमेरान\0" // cm + "कोमोरोज\0" // km + "कोमोरोज़\0" // km + "कोमोरोस\0" // km + "कोलंबिया\0" // co + "कोलम्बिया\0" // co + "कोलोम्बिया\0" // co + "कोष्टारिका\0" // cr + "कोसोभो\0" // xk + "कोसोवो\0" // xk + "कोसोव्हो\0" // xk + "कोस्टा रिका\0" // cr + "कोस्टारिका\0" // cr + "कोस्टारीका\0" // cr + "कोस्ता रिका\0" // cr + "क्यानाडा\0" // ca + "क्यानारी टापुहरू\0" // ic + "क्यामरून\0" // cm + "क्यारिवियन नेदरल्याण्ड्स\0" // bq + "क्युबा\0" // cu + "क्युरासाओ\0" // cw + "क्यूबा\0" // cu + "क्यूरासाओ\0" // cw + "क्रिष्टमस टापु\0" // cx + "क्रिसमस आयलँड\0" // cx + "क्रिसमस द्वीप\0" // cx + "क्रिस्मस द्वीप\0" // cx + "क्रोएशिया\0" // hr + "क्रोयेशीया\0" // hr + "क्लिपरटॉन आयलँड\0" // cp + "क्लिपरटोन बेट\0" // cp + "क्लिपर्टन द्वीप\0" // cp + "क्लिप्पेर्टन टापु\0" // cp + "ख्रिसमस बेट\0" // cx + "गयाना\0" // gy + "गर्नसी\0" // gg + "गाम्बिया\0" // gm + "गाम्विया\0" // gm + "गावोन\0" // ga + "गिनी\0" // gn + "गिनी-बिसाउ\0" // gw + "गीनी-बिसाउ\0" // gw + "गुअनिया-बिसाउ\0" // gw + "गुआम\0" // gu + "गुएनिया\0" // gn + "गुएर्नसे\0" // gg + "गुयाना\0" // gy + "गुवाम\0" // gu + "गॅबॉन\0" // ga + "गॅबोन\0" // ga + "गॅम्बिया\0" // gm + "गेर्नसे\0" // gg + "गैबॉन\0" // ga + "गोतेदाला\0" // gt + "ग्रिनल्याण्ड\0" // gl + "ग्रिस\0" // gr + "ग्रीनलँड\0" // gl + "ग्रीनलंड\0" // gl + "ग्रीनलैंड\0" // gl + "ग्रीनलैण्ड\0" // gl + "ग्रीस\0" // gr + "ग्रेनडा\0" // gd + "ग्रेनाडा\0" // gd + "ग्रेनॅडा\0" // gd + "ग्रेनेडा\0" // gd + "ग्वाटेमाला\0" // gt + "ग्वाडेलुप\0" // gp + "ग्वाडेलूप\0" // gp + "ग्वाडेलोउपे\0" // gp + "ग्वाडेलोप\0" // gp + "ग्वादलुप\0" // gp + "ग्वेर्नसे\0" // gg + "घाना\0" // gh + "चाड\0" // td + "चिली\0" // cl + "चीन\0" // cn + "चेक गणतन्त्र\0" // cz + "चेक गणराज्य\0" // cz + "चेक लोकसत्ताक\0" // cz + "चेकिया\0" // cz + "जपान\0" // jp + "जमाइका\0" // jm + "जमैका\0" // jm + "जर्जिया\0" // ge + "जर्मनी\0" // de + "जर्सी\0" // je + "ज़ाम्बिया\0" // zm + "ज़िम्बाब्वे\0" // zw + "ज़ीम्बाब्वे\0" // zw + "जापान\0" // jp + "जाम्बिया\0" // zm + "जिबूती\0" // dj + "जिबौटी\0" // dj + "जिब्राल्टर\0" // gi + "जिब्राल्टार\0" // gi + "जिम्बाबे\0" // zw + "जिम्बाब्वे\0" // zw + "जॉर्जिया\0" // ge + "जॉर्डन\0" // jo + "जोर्डन\0" // jo + "झांबिया\0" // zm + "झाम्बिया\0" // zm + "झिम्बाब्वे\0" // zw + "झेक प्रजासत्ताक\0" // cz + "झेकिया\0" // cz + "टर्की\0" // tr + "टर्क्स आणि कैकोस बेटे\0" // tc + "टांझानिया\0" // tz + "टिमोर-लेस्टे\0" // tl + "टुवालु\0" // tv + "टुवालू\0" // tv + "टॉंगा\0" // to + "टोंगा\0" // to + "टोकलाऊ\0" // tk + "टोकेलौ\0" // tk + "टोगो\0" // tg + "ट्युनिसिया\0" // tn + "ट्यूनिशिया\0" // tn + "ट्यूनीशिया\0" // tn + "ट्रिनिडाड एवं टोबैगो\0" // tt + "ट्रिनीडाड आनी टोबॅगो\0" // tt + "ट्रिस्टन दा कुन्हा\0" // ta + "ट्रिस्टान डा कुन्हा\0" // ta + "डिएगो गार्सिया\0" // dg + "डिजिबुटी\0" // dj + "डियगो गार्सिया\0" // dg + "डेनमार्क\0" // dk + "डेन्मार्क\0" // dk + "डोमिनिकन गणतन्त्र\0" // do + "डोमिनिकन गणराज्य\0" // do + "डोमिनिकन प्रजासत्ताक\0" // do + "डोमिनिका\0" // dm + "डोमिनीका\0" // dm + "तंज़ानिया\0" // tz + "तजीकिस्तान\0" // tj + "तांझानिया\0" // tz + "ताइवान\0" // tw + "ताज़िकिस्तान\0" // tj + "ताजिकिस्तान\0" // tj + "तान्जानिया\0" // tz + "तायवान\0" // tw + "तिमोर-लेस्त\0" // tl + "तिमोर-लेस्ते\0" // tl + "तुभालु\0" // tv + "तुर्क और कैकोज़ द्वीपसमूह\0" // tc + "तुर्क र काइकोस टापु\0" // tc + "तुर्कमेनिस्तान\0" // tm + "तुर्कमेनीस्तान\0" // tm + "तुर्की\0" // tr + "तुर्की एवं कैकोज़ द्वीप\0" // tc + "तुर्क्स आनी कॅकोज आयलँड्स\0" // tc + "तुवालु\0" // tv + "तुवालू\0" // tv + "तैवान\0" // tw + "तोकेलाउ\0" // tk + "त्युनिशिया\0" // tn + "त्रिनिडाड एण्ड टोबागो\0" // tt + "त्रिनिदाद आणि टोबॅगो\0" // tt + "त्रिनिदाद और टोबैगो\0" // tt + "त्रिस्टान डा कुना\0" // ta + "त्रिस्तान दा कुन्हा\0" // ta + "थाइलैण्ड\0" // th + "थाइल्याण्ड\0" // th + "थाईलैंड\0" // th + "थायलँड\0" // th + "थायलंड\0" // th + "दक्षिण अफ़्रीका\0" // za + "दक्षिण अफ्रिका\0" // za + "दक्षिण अफ्रीका\0" // za + "दक्षिण आफ्रिका\0" // za + "दक्षिण आफ्रीका\0" // za + "दक्षिण कोरिया\0" // kr + "दक्षिण जर्जिया र दक्षिण स्यान्डवीच टापुहरू\0" // gs + "दक्षिण जॉर्जिया आणि दक्षिण सँडविच बेटे\0" // gs + "दक्षिण जॉर्जिया और दक्षिण सैंडविच द्वीपसमूह\0" // gs + "दक्षिण जोर्जिया आनी दक्षिण सॅण्डविच आयलँड्स\0" // gs + "दक्षिण जोर्जिया एवं दक्षिण सैंडवीच द्वीप\0" // gs + "दक्षिण सुडान\0" // ss + "दक्षिण सुदान\0" // ss + "दक्षिण सूडान\0" // ss + "दक्षिणी सुडान\0" // ss + "दिएगो गार्सिया\0" // dg + "दिगो गार्सिया\0" // dg + "द्जिबूती\0" // dj + "नर्वे\0" // no + "नाइजर\0" // ne + "नाइजीरिया\0" // ng + "नाइजेर\0" // ne + "नाइजेरिया\0" // ng + "नाउरु\0" // nr + "नाउरू\0" // nr + "नामिबिया\0" // na + "नामीबिया\0" // na + "नायजर\0" // ne + "नायजेरिया\0" // ng + "नावरू\0" // nr + "निकारगुवा\0" // ni + "निकारागुआ\0" // ni + "निकारागुवा\0" // ni + "निकाराग्वा\0" // ni + "नियुइ\0" // nu + "नीदरलैंड\0" // nl + "नीयू\0" // nu + "नीयूए\0" // nu + "नॅदरलँड\0" // nl + "नेदरलँड\0" // nl + "नेदरलैण्ड\0" // nl + "नेदरल्याण्ड\0" // nl + "नेपाल\0" // np + "नेपाळ\0" // np + "नॉरफ़ॉक द्वीप\0" // nf + "नॉरफॉक आयलँड\0" // nf + "नॉरफॉक बेट\0" // nf + "नॉर्वे\0" // no + "नोरफोल्क टापु\0" // nf + "न्यु क्यालेडोनिया\0" // nc + "न्युजिल्याण्ड\0" // nz + "न्युझीलॅन्ड\0" // nz + "न्यू कॅलिडोनिया\0" // nc + "न्यू कॅलेडोनिया\0" // nc + "न्यू कैलेडोनिया\0" // nc + "न्यूज़ीलैंड\0" // nz + "न्यूझीलंड\0" // nz + "पनामा\0" // pa + "पपुआ न्यू गाइनिया\0" // pg + "पराग्वे\0" // py + "पलाउ\0" // pw + "पलाऊ\0" // pw + "पश्चिम सहारा\0" // eh + "पश्चिमी सहारा\0" // eh + "पश्चिमी साहारा\0" // eh + "पाकिस्तान\0" // pk + "पापुआ न्यु गिनी\0" // pg + "पापुआ न्यू गिनी\0" // pg + "पारागुए\0" // py + "पिटकाइर्न टापुहरु\0" // pn + "पिटकॅरन आयलँड्स\0" // pn + "पिटकेर्न\0" // pn + "पिटकैर्न द्वीपसमूह\0" // pn + "पिटकैर्न बेटे\0" // pn + "पिर्टो रिको\0" // pr + "पुएर्टो रिको\0" // pr + "पुएर्टो रीको\0" // pr + "पुर्तगाल\0" // pt + "पूर्व तिमोर\0" // tl + "पूर्वी तिमोर\0" // tl + "पृर्वी टीमोर\0" // tl + "पॅलेस्टाईन\0" // ps + "पॅलेस्टिनियन प्रदेश\0" // ps + "पेरू\0" // pe + "पेलेस्टायन\0" // ps + "पेलेस्टीनियन प्रांत\0" // ps + "पैराग्वे\0" // py + "पोर्चुगल\0" // pt + "पोर्टो रिको\0" // pr + "पोर्तुगाल\0" // pt + "पोलंड\0" // pl + "पोलैंड\0" // pl + "पोलैण्ड\0" // pl + "पोल्याण्ड\0" // pl + "प्यानामा\0" // pa + "प्याराग्वे\0" // py + "प्यालेसटाइन\0" // ps + "प्यालेस्टनी भू-भागहरु\0" // ps + "प्युएर्तो रिको\0" // pr + "फकल्याण्ड टापुहरु\0" // fk + "फक्ल्याण्ड टापुहरू (इज्लास माल्भिनास)\0" // fk + "फरो द्वीप\0" // fo + "फ़िजी\0" // fj + "फ़िनलैंड\0" // fi + "फ़िलिपींस\0" // ph + "फ़िलिस्तीन\0" // ps + "फ़िलिस्तीनी क्षेत्र\0" // ps + "फ़ेरो द्वीपसमूह\0" // fo + "फ़ॉकलैंड आइलैंड्स\0" // fk + "फ़ॉकलैंड आइलैंड्स (इलास मालविनास)\0" // fk + "फ़ॉकलैंड द्वीपसमूह\0" // fk + "फ़ॉकलैंड द्वीपसमूह (इज़्लास माल्विनास)\0" // fk + "फ़ॉल्कलैंड द्वीप\0" // fk + "फ़्रांस\0" // fr + "फ़्रांसीसी दक्षिणी क्षेत्र\0" // tf + "फ़्रेंच गुयाना\0" // gf + "फ़्रेंच पोलिनेशिया\0" // pf + "फारो टापुहरू\0" // fo + "फिजी\0" // fj + "फिनलँड\0" // fi + "फिनलंड\0" // fi + "फिनलैंड\0" // fi + "फिन्ल्याण्ड\0" // fi + "फिलिपिन्स\0" // ph + "फिलीपिन्झ\0" // ph + "फिलीपिन्स\0" // ph + "फेरो बेटे\0" // fo + "फैरो आयलँड्स\0" // fo + "फॉकलंड बेटे\0" // fk + "फॉकलंड बेटे (इस्लास मालविनास)\0" // fk + "फ्राँस\0" // fr + "फ्राँसीसी उत्तरी क्षेत्रों\0" // tf + "फ्राँसीसी गिआना\0" // gf + "फ्राँसीसी पॉलिनीशिया\0" // pf + "फ्रान्स\0" // fr + "फ्रान्सेली गायना\0" // gf + "फ्रान्सेली दक्षिणी क्षेत्रहरु\0" // tf + "फ्रान्सेली पोलिनेसिया\0" // pf + "फ्रेंच गयाना\0" // gf + "फ्रेंच दक्षिणी प्रांत\0" // tf + "फ्रेंच दाक्षिणात्य प्रदेश\0" // tf + "फ्रेंच पॉलिनेशिया\0" // pf + "फ्रेन्च गयाना\0" // gf + "फ्रेन्च पोलिनेसिया\0" // pf + "बंगलादेश\0" // bd + "बङ्गलादेश\0" // bd + "बरमूडा\0" // bm + "बर्किना फासो\0" // bf + "बर्मुडा\0" // bm + "बल्गेरिया\0" // bg + "बल्गेरीया\0" // bg + "बल्गैरिया\0" // bg + "बहराइन\0" // bh + "बहरीन\0" // bh + "बहरैन\0" // bh + "बहामा\0" // bs + "बहामाज\0" // bs + "बहामास\0" // bs + "बहारीन\0" // bh + "बांगलादेश\0" // bd + "बांग्लादेश\0" // bd + "बारबाडोस\0" // bb + "बार्बाडोस\0" // bb + "बाहरिय ओशेआनिया\0" // qo + "बाह्य ओसनिया\0" // qo + "बुभेट टापु\0" // bv + "बुरुंडी\0" // bi + "बुरूण्डी\0" // bi + "बुर्किना फ़ासो\0" // bf + "बुर्किना फासो\0" // bf + "बुर्किना फॅसो\0" // bf + "बुल्गारिया\0" // bg + "बुल्गेरिया\0" // bg + "बुवे द्वीप\0" // bv + "बेनिन\0" // bj + "बेनीन\0" // bj + "बेनेँ\0" // bj + "बेलायत\0" // gb + "बेलायती भर्जिन टापुहरु\0" // vg + "बेलायती हिन्द महासागर क्षेत्र\0" // io + "बेलारूस\0" // by + "बेलिज\0" // bz + "बेलिज़\0" // bz + "बेलिझ\0" // bz + "बेलिझे\0" // bz + "बेलीज़\0" // bz + "बेल्जियम\0" // be + "बेहरेन\0" // bh + "बोउवेट बेट\0" // bv + "बोट्सवाना\0" // bw + "बोट्स्वाना\0" // bw + "बोत्सवाना\0" // bw + "बोत्स्वाना\0" // bw + "बोलिभिया\0" // bo + "बोलिव्हिया\0" // bo + "बोलीविया\0" // bo + "बोवट आयलँड\0" // bv + "बोवेत द्वीप\0" // bv + "बोसनिया हर्ज़ेगोविना\0" // ba + "बोस्निया अणि हर्जेगोविना\0" // ba + "बोस्निया आनी हेर्जेगोविना\0" // ba + "बोस्निया एण्ड हर्जगोभिनिया\0" // ba + "बोस्निया और हर्ज़ेगोविना\0" // ba + "ब्राज़ील\0" // br + "ब्राजिल\0" // br + "ब्राझिल\0" // br + "ब्राझील\0" // br + "ब्रिटिश वर्जिन आयलँड्स\0" // vg + "ब्रिटिश वर्जिन द्वीपसमूह\0" // vg + "ब्रिटिश वर्जीन आईलंड्स\0" // vg + "ब्रिटिश व्हर्जिन बेटे\0" // vg + "ब्रिटिश हिंद महासागरिय क्षेत्र\0" // io + "ब्रिटिश हिंद महासागरीय क्षेत्र\0" // io + "ब्रिटिश हिंदी महासागर क्षेत्र\0" // io + "ब्रितन\0" // gb + "ब्रुनाइ\0" // bn + "ब्रुनेई\0" // bn + "ब्रूनइ\0" // bn + "ब्रूनेई\0" // bn + "भानुआतु\0" // vu + "भारत\0" // in + "भिएतनाम\0" // vn + "भुटान\0" // bt + "भू-मध्यीय गिनी\0" // gq + "भूटान\0" // bt + "भूतान\0" // bt + "भेटिकन सिटी\0" // va + "भेनेजुएला\0" // ve + "मंगोलिया\0" // mn + "मकदूनिया\0" // mk + "मकदूनिया (fyrom)\0" // mk + "मकाउ\0" // mo + "मकाउ चिनियाँ स्वशासित क्षेत्र\0" // mo + "मकाऊ\0" // mo + "मकाऊ (विशेष प्रशासनिक क्षेत्र चीन)\0" // mo + "मकाओ\0" // mo + "मकाओ एसएआर चीन\0" // mo + "मकाओ विशेष प्रशासनिक क्षेत्र (चीन)\0" // mo + "मकाव\0" // mo + "मकाव sar चीन\0" // mo + "मङ्गोलिया\0" // mn + "मदागास्कर\0" // mg + "मध्य अफ़्रीकी गणराज्य\0" // cf + "मध्य अफ्रीकी लोकसत्तकराज्य\0" // cf + "मलावी\0" // mw + "मलेशिया\0" // my + "मलेसिया\0" // my + "माइक्रोनेशिया\0" // fm + "माइक्रोनेसिया\0" // fm + "माउरिटस\0" // mu + "माउरिटानिया\0" // mr + "माडागास्कर\0" // mg + "मादागास्कर\0" // mg + "मायक्रोनेशिया\0" // fm + "मायोट्ट\0" // yt + "मायोट्टे\0" // yt + "मायोते\0" // yt + "मार्टिनिक\0" // mq + "मार्टीनिक\0" // mq + "मार्शल आयलँड्स\0" // mh + "मार्शल टापुहरु\0" // mh + "मार्शल द्वीप\0" // mh + "मार्शल द्वीपसमूह\0" // mh + "मार्शल बेटे\0" // mh + "मालदीव\0" // mv + "मालावी\0" // mw + "माली\0" // ml + "माल्टा\0" // mt + "माल्डोभा\0" // md + "माल्डोवा\0" // md + "माल्दिभ्स\0" // mv + "मिस्र\0" // eg + "मॅसिडोनिया\0" // mk + "मॅसिडोनिया (fyrom)\0" // mk + "मॅसेडोनिया\0" // mk + "मॅसेडोनिया (fyrom)\0" // mk + "मेक्सिको\0" // mx + "मेडागास्कर\0" // mg + "मेयोट\0" // yt + "मैक्सिको\0" // mx + "मैयौट\0" // yt + "मैसेडोनिया\0" // mk + "मॉंसेरा\0" // ms + "मॉझांबीक\0" // mz + "मॉन्टसेराट\0" // ms + "मॉन्टॅनग्रो\0" // me + "मॉन्ट्सेराट\0" // ms + "मॉरिटानिया\0" // mr + "मॉरिटेनिया\0" // mr + "मॉरिशस\0" // mu + "मॉरिस\0" // mu + "मॉरीशस\0" // mu + "मॉल्डोवा\0" // md + "मोंटसेरात\0" // ms + "मोंटेनेग्रो\0" // me + "मोज़ांबिक\0" // mz + "मोज़ाम्बिक\0" // mz + "मोजाम्बिक\0" // mz + "मोझाम्बिक\0" // mz + "मोनाको\0" // mc + "मोनॅको\0" // mc + "मोन्टसेर्राट\0" // ms + "मोन्टेनेग्रो\0" // me + "मोरक्को\0" // ma + "मोरोक्को\0" // ma + "मोल्डेविया\0" // md + "मोल्डोव्हा\0" // md + "म्यांमार (बर्मा)\0" // mm + "म्यानमार\0" // mm + "म्यानमार (बर्मा)\0" // mm + "म्यान्मार (बर्मा)\0" // mm + "म्यासेडोनिया\0" // mk + "म्यासेडोनिया (फाइरम)\0" // mk + "यमन\0" // ye + "यु. एस. मायनर आवटलायींग आयलँड्‍स\0" // um + "यु. एस. वर्जिन आयलँड्‍स\0" // vi + "यु.एस. वर्जीन आईलंड्स\0" // vi + "युएस\0" // us + "युके\0" // gb + "युक्रेन\0" // ua + "युगाँडा\0" // ug + "युगांडा\0" // ug + "युगाण्डा\0" // ug + "युनाइटेड अरब इमीरॅट्स\0" // ae + "युनाइटेड स्टेट्स के छोटे बाहरिय द्वीप\0" // um + "युनायटेड किंगडम\0" // gb + "युनायटेड स्टेट्स\0" // us + "युरूगुए\0" // uy + "युरोजोन\0" // ez + "युरोझोन\0" // ez + "यू.एस.\0" // us + "यू.एस. आउटलाइंग बेटे\0" // um + "यू.एस. व्हर्जिन बेटे\0" // vi + "यू.के.\0" // gb + "यूक्रेन\0" // ua + "यूनाइटेड किंगडम\0" // gb + "यूनान\0" // gr + "यूरोज़ोन\0" // ez + "यू॰एस॰ आउटलाइंग द्वीपसमूह\0" // um + "यू॰एस॰ वर्जिन द्वीपसमूह\0" // vi + "यू॰के॰\0" // gb + "येमेन\0" // ye + "रवांडा\0" // rw + "रवाण्डा\0" // rw + "रशिया\0" // ru + "रियुनियन\0" // re + "रियूनियन\0" // re + "रीयूनियन\0" // re + "रूआण्डा\0" // rw + "रूस\0" // ru + "रेयूनियॉं\0" // re + "रोमानिया\0" // ro + "रोमानीया\0" // ro + "रोमेनिया\0" // ro + "लक्जेमबर्ग\0" // lu + "लक्झेंबर्ग\0" // lu + "लक्समबर्ग\0" // lu + "लक्सेमबर्ग\0" // lu + "लग्ज़मबर्ग\0" // lu + "लसोथो\0" // ls + "लाइबेरिया\0" // lr + "लाओस\0" // la + "लाट्भिया\0" // lv + "लाट्वीया\0" // lv + "लातविया\0" // lv + "लात्विया\0" // lv + "लायबेरिया\0" // lr + "लायबेरीया\0" // lr + "लिएखटेन्स्टाइन\0" // li + "लिक्टेनस्टाइन\0" // li + "लिक्टैनस्टाईन\0" // li + "लिचेंस्टीन\0" // li + "लिथुआनिया\0" // lt + "लिथुएनिया\0" // lt + "लिबिया\0" // ly + "लिसोथो\0" // ls + "लीबिया\0" // ly + "लॅटविया\0" // lv + "लेबनन\0" // lb + "लेबनान\0" // lb + "लेबनॉन\0" // lb + "लेबनोन\0" // lb + "लेसोथो\0" // ls + "वनातू\0" // vu + "वनुआतू\0" // vu + "वानाऊटु\0" // vu + "वानुआतु\0" // vu + "वालिस आणि फ्यूचूना\0" // wf + "वालिस आनी फ्यूचूना\0" // wf + "वालिस और फ़्यूचूना\0" // wf + "वालिस र फुटुना\0" // wf + "विनेझुएला\0" // ve + "वियतनाम\0" // vn + "वॅटिकन सिटी\0" // va + "वेटिकन सिटी\0" // va + "वेनेज़ुएला\0" // ve + "वैटिकन\0" // va + "वॉलेस एवं फ़्यूचूना\0" // wf + "व्हिएतनाम\0" // vn + "व्हॅटिकन सिटी\0" // va + "व्हेनेझुएला\0" // ve + "श्री लँका\0" // lk + "श्री लंका\0" // lk + "श्रीलंका\0" // lk + "श्रीलङ्का\0" // lk + "सँ. पायरे आनी मिकेलन\0" // pm + "सँट लुसिया\0" // lc + "संयुक्त अरब अमीरात\0" // ae + "संयुक्त अरब इमिराट्स\0" // ae + "संयुक्त राज्य\0" // us + "संयुक्त राज्य अमरिका\0" // us + "संयुक्त राज्य भर्जिन टापुहरु\0" // vi + "संयुक्त राज्यका बाह्य टापुहरु\0" // um + "सऊदी अरब\0" // sa + "सऊदी अरेबिया\0" // sa + "सभाल्बार्ड र जान मायेन\0" // sj + "समोआ\0" // ws + "सर्बिया\0" // rs + "साइप्रस\0" // cy + "साउँ-तोमे एवं प्रिंसिप\0" // st + "साउदी अरब\0" // sa + "साओ टोम आणि प्रिंसिपे\0" // st + "साओ टोम और प्रिंसिपे\0" // st + "साओ टोमे र प्रिन्सिप\0" // st + "सान् मारिनो\0" // sm + "सामोआ\0" // ws + "सायप्रस\0" // cy + "सावो टोमे आनी प्रिंसिपल\0" // st + "सिंगापुर\0" // sg + "सिंगापूर\0" // sg + "सिंट मार्टिन\0" // sx + "सिंट मार्टेन\0" // sx + "सिउटा र मेलिला\0" // ea + "सिएरा लिओन\0" // sl + "सिएरा लियॉन\0" // sl + "सिएरा लियोन\0" // sl + "सिएर्रा लिओन\0" // sl + "सिङ्गापुर\0" // sg + "सिटा आनी मेलिल्ला\0" // ea + "सिनिगल\0" // sn + "सिन्ट मार्टेन\0" // sx + "सियेरा लेओन\0" // sl + "सिरिया\0" // sy + "सीरिया\0" // sy + "सुडान\0" // sd + "सुदान\0" // sd + "सुरिनाम\0" // sr + "सुरिनेम\0" // sr + "सुरीनाम\0" // sr + "सूडान\0" // sd + "सूदान\0" // sd + "सूरीनाम\0" // sr + "सॅंट बार्थेल्मी\0" // bl + "सॅंट मार्टिन\0" // mf + "सॅन मरीनो\0" // sm + "सॅन मारीनो\0" // sm + "सेँ पीएर एवं मि‍केलॉं\0" // pm + "सेँ बार्थेलेमी\0" // bl + "सेँ मार्टेँ\0" // mf + "सेंट किट्स आणि नेव्हिस\0" // kn + "सेंट किट्स आनी नेविस\0" // kn + "सेंट किट्स एवं नेविस\0" // kn + "सेंट किट्स और नेविस\0" // kn + "सेंट पिएरे और मिक्वेलान\0" // pm + "सेंट पियरे आणि मिक्वेलोन\0" // pm + "सेंट बार्थेलेमी\0" // bl + "सेंट मार्टिन\0" // mf + "सेंट लूसिया\0" // lc + "सेंट ल्यूसिया\0" // lc + "सेंट विंसंट एवं दी ग्रनाडीन्स्\0" // vc + "सेंट विंसेंट ऐंड द ग्रेनेडाइंस\0" // vc + "सेंट विंसेंट और ग्रेनाडाइंस\0" // vc + "सेंट व्हिन्सेंट आणि ग्रेनडाइन्स\0" // vc + "सेंट हेलिना\0" // sh + "सेंट हेलेना\0" // sh + "सेंट्रल अफ्रीकन रिपब्लिक\0" // cf + "सेउटा और मेलिला\0" // ea + "सेचेलेस\0" // sc + "सेण्‍ट हेलेना\0" // sh + "सेनेगल\0" // sn + "सेनेगाल\0" // sn + "सेन्ट किट्स र नेभिस\0" // kn + "सेन्ट पिर्रे र मिक्केलोन\0" // pm + "सेन्ट बार्थालेमी\0" // bl + "सेन्ट भिन्सेन्ट र ग्रेनाडिन्स\0" // vc + "सेन्ट मार्टिन\0" // mf + "सेन्ट लुसिया\0" // lc + "सेन्ट हेलेना\0" // sh + "सेशेल्स\0" // sc + "सैन मरीनो\0" // sm + "सैन मेरीनो\0" // sm + "सॉलोमन द्वीप\0" // sb + "सोमालिया\0" // so + "सोलोमन आइलँड्स\0" // sb + "सोलोमन द्वीपसमूह\0" // sb + "सोलोमन बेटे\0" // sb + "सोलोमोन टापुहरु\0" // sb + "सौदी अरब\0" // sa + "स्पेन\0" // es + "स्यूटा आणि मेलिला\0" // ea + "स्लोभाकिया\0" // sk + "स्लोभेनिया\0" // si + "स्लोवाकिया\0" // sk + "स्लोवेनिया\0" // si + "स्लोव्हाकिया\0" // sk + "स्लोव्हेनिया\0" // si + "स्वाज़ीलैंड\0" // sz + "स्वाजिल्याण्ड\0" // sz + "स्वाजीलँड\0" // sz + "स्वाझिलँड\0" // sz + "स्वालबर्ड आणि जान मायेन\0" // sj + "स्वालबार्ड आनी जान मेयन\0" // sj + "स्वालबार्ड और जान मायेन\0" // sj + "स्वाल्बार्ड एवं यान मायेन\0" // sj + "स्विजरल्याण्ड\0" // ch + "स्विट्ज़रलैंड\0" // ch + "स्विडेन\0" // se + "स्वित्ज़रलैंड\0" // ch + "स्वित्झर्लंड\0" // ch + "स्वीडन\0" // se + "हंगरी\0" // hu + "हंगेरी\0" // hu + "हङकङ\0" // hk + "हङकङ चिनियाँ समाजबादी स्वायत्त क्षेत्र\0" // hk + "हङ्गेरी\0" // hu + "हन्डुरास\0" // hn + "हर्ड आणि मॅक्डोनाल्ड बेटे\0" // hm + "हर्ड आयलँड्स ऍंड मॅक्डोनाल्ड आयलँड्स\0" // hm + "हर्ड टापु र म्याकडोनाल्ड टापुहरु\0" // hm + "हर्ड द्वीप एवं मैकडोनॉल्ड द्वीप\0" // hm + "हर्ड द्वीप और मैकडोनॉल्ड द्वीपसमूह\0" // hm + "हाँग काँग\0" // hk + "हाँग काँग (चीन विशेष प्रशासनिक क्षेत्र)\0" // hk + "हाँग काँग sar चीन\0" // hk + "हाँगकाँग\0" // hk + "हाँगकाँग एसएआर चीन\0" // hk + "हाँगकाँग विशेष प्रशासनिक क्षेत्र चीन\0" // hk + "हाइती\0" // ht + "हैटी\0" // ht + "हैती\0" // ht + "हॉनडुरस\0" // hn + "होंडुरास\0" // hn + "होंडूरास\0" // hn + "हौण्डूरास\0" // hn + "অষ্ট্ৰিয়া\0" // at + "অষ্ট্ৰেলিয়া\0" // au + "অস্ট্রিয়া\0" // at + "অস্ট্রেলিয়া\0" // au + "অ্যাঙ্গোলা\0" // ao + "অ্যান্টার্কটিকা\0" // aq + "অ্যান্টিগুয়া ও বারবুডা\0" // ag + "অ্যাসসেনশন আইল্যান্ড\0" // ac + "আইচলেণ্ড\0" // is + "আইভরি কোস্ট\0" // ci + "আইভৰী কোষ্ট\0" // ci + "আইল অফ মেন\0" // im + "আইল অফ ম্যান\0" // im + "আইসল্যান্ড\0" // is + "আউটলাইনিং ওসানিয়া\0" // qo + "আউটলায়িং অ’চিয়ানিয়া\0" // qo + "আজারবাইজান\0" // az + "আজাৰবেইজান\0" // az + "আন্ডোরা\0" // ad + "আন্দোৰা\0" // ad + "আফগানিস্তান\0" // af + "আমেরিকান সামোয়া\0" // as + "আমেৰিকান চামোৱা\0" // as + "আয়ারল্যান্ড\0" // ie + "আয়াৰলেণ্ড\0" // ie + "আরুবা\0" // aw + "আর্জেন্টিনা\0" // ar + "আর্মেনিয়া\0" // am + "আলজেরিয়া\0" // dz + "আলজেৰিয়া\0" // dz + "আলণ্ড দ্বীপপুঞ্জ\0" // ax + "আলবেনিয়া\0" // al + "আলান্ড দ্বীপপুঞ্জ\0" // ax + "আৰুবা\0" // aw + "আৰ্জেণ্টিনা\0" // ar + "আৰ্মেনিয়া\0" // am + "ইউ এস\0" // us + "ইউ কে\0" // gb + "ইউ. এছ. আউটলায়িং দ্বীপপুঞ্জ\0" // um + "ইউ. এছ. ভাৰ্জিন দ্বীপপুঞ্জ\0" // vi + "ইউ. কে.\0" // gb + "ইউক্রেন\0" // ua + "ইউক্ৰেইন\0" // ua + "ইউরোজোন\0" // ez + "ইউৰোজ’ন\0" // ez + "ইকুয়েডর\0" // ec + "ইকুৱেটৰিয়েল গিনি\0" // gq + "ইকুৱেডৰ\0" // ec + "ইজরায়েল\0" // il + "ইজিপ্ত\0" // eg + "ইজৰাইল\0" // il + "ইটালি\0" // it + "ইণ্ডোনেচিয়া\0" // id + "ইতালি\0" // it + "ইথিঅ’পিয়া\0" // et + "ইথিওপিয়া\0" // et + "ইন্দোনেশিয়া\0" // id + "ইয়েমেন\0" // ye + "ইরাক\0" // iq + "ইরান\0" // ir + "ইরিত্রিয়া\0" // er + "ইষ্টোনিয়া\0" // ee + "ইৰাক\0" // iq + "ইৰান\0" // ir + "উগাণ্ডা\0" // ug + "উগান্ডা\0" // ug + "উজবেকিস্তান\0" // uz + "উত্তর কোরিয়া\0" // kp + "উত্তরাঞ্চলীয় মারিয়ানা দ্বীপপুঞ্জ\0" // mp + "উত্তৰ কোৰিয়া\0" // kp + "উত্তৰ মাৰিয়ানা দ্বীপপুঞ্জ\0" // mp + "উরুগুয়ে\0" // uy + "উৰুগুৱে\0" // uy + "এংগোলা\0" // ao + "এচেনচিয়ন দ্বীপ\0" // ac + "এণ্টাৰ্কটিকা\0" // aq + "এণ্টিগুৱা আৰু বাৰ্বুডা\0" // ag + "এনগুইলা\0" // ai + "এল ছেলভেড’ৰ\0" // sv + "এল সালভেদর\0" // sv + "এস্তোনিয়া\0" // ee + "এ্যাঙ্গুইলা\0" // ai + "এৰিত্ৰিয়া\0" // er + "ওমান\0" // om + "ওয়ালিস ও ফুটুনা\0" // wf + "কঙ্গো (drc)\0" // cd + "কঙ্গো (প্রজাতন্ত্র)\0" // cg + "কঙ্গো - কিনচাছা\0" // cd + "কঙ্গো - ব্রাজাভিল\0" // cg + "কঙ্গো(drc)\0" // cd + "কঙ্গো-কিনশাসা\0" // cd + "কচ’ভ’\0" // xk + "কমোরোস\0" // km + "কম্বোডিয়া\0" // kh + "কলম্বিয়া\0" // co + "কসোভো\0" // xk + "কাজাখস্তান\0" // kz + "কাজাখাস্তান\0" // kz + "কাটাৰ\0" // qa + "কাতার\0" // qa + "কানাডা\0" // ca + "কিউবা\0" // cu + "কিরগিজিস্তান\0" // kg + "কিরিবাতি\0" // ki + "কিৰিবাটি\0" // ki + "কিৰ্গিজস্তান\0" // kg + "কুউটা এবং মেলিলা\0" // ea + "কুক দ্বীপপুঞ্জ\0" // ck + "কুয়েত\0" // kw + "কুরাসাও\0" // cw + "কুৰাকাও\0" // cw + "কুৱেইট\0" // kw + "কেইমেন দ্বীপপুঞ্জ\0" // ky + "কেনিয়া\0" // ke + "কেনেৰী দ্বীপপুঞ্জ\0" // ic + "কেপ ভার্দে\0" // cv + "কেপভার্দে\0" // cv + "কেমেৰুণ\0" // cm + "কেম্যান দ্বীপপুঞ্জ\0" // ky + "কেৰিবিয়ান নেদাৰলেণ্ডছ\0" // bq + "কোকোচ (কীলিং) দ্বীপপুঞ্জ\0" // cc + "কোকোস (কিলিং) দ্বীপপুঞ্জ\0" // cc + "কোটে ডি আইভৰ\0" // ci + "কোত দিভোয়ার\0" // ci + "কোমোৰোজ\0" // km + "কোষ্টা ৰিকা\0" // cr + "কোস্টারিকা\0" // cr + "ক্যানারি দ্বীপপুঞ্জ\0" // ic + "ক্যামেরুন\0" // cm + "ক্যারিবিয়ান নেদারল্যান্ডস\0" // bq + "ক্রিসমাস দ্বীপ\0" // cx + "ক্রোয়েশিয়া\0" // hr + "ক্লিপারটন আইল্যান্ড\0" // cp + "ক্লিপাৰটোন দ্বীপ\0" // cp + "ক্ৰোৱেছিয়া\0" // hr + "খ্ৰীষ্টমাছ দ্বীপ\0" // cx + "গাম্বিয়া\0" // gm + "গায়ানা\0" // gy + "গিনি\0" // gn + "গিনি-বিছাও\0" // gw + "গিনি-বিসাউ\0" // gw + "গিয়ানা\0" // gy + "গুয়াতেমালা\0" // gt + "গুয়াদেলৌপ\0" // gp + "গুয়াম\0" // gu + "গুয়ার্নসি\0" // gg + "গুৱাটেমালা\0" // gt + "গুৱাডেলুপ\0" // gp + "গুৱাম\0" // gu + "গেবন\0" // ga + "গোৰেনচি\0" // gg + "গ্যাবন\0" // ga + "গ্রীনল্যান্ড\0" // gl + "গ্রীস\0" // gr + "গ্রেনাডা\0" // gd + "গ্ৰীচ\0" // gr + "গ্ৰীণলেণ্ড\0" // gl + "গ্ৰেনাডা\0" // gd + "ঘানা\0" // gh + "চাইপ্ৰাছ\0" // cy + "চাও টোমে আৰু প্ৰিনচিপে\0" // st + "চাড\0" // td + "চাদ\0" // td + "চান মাৰিনো\0" // sm + "চাভালবাৰ্ড আৰু জন মেয়ন\0" // sj + "চামোৱা\0" // ws + "চিজেচিয়া\0" // cz + "চিণ্ট মাৰ্টেন\0" // sx + "চিয়েৰা লিঅ’ন\0" // sl + "চিলি\0" // cl + "চিৰিয়া\0" // sy + "চীন\0" // cn + "চুইজাৰলেণ্ড\0" // ch + "চুইডেন\0" // se + "চুডান\0" // sd + "চেউটা আৰু মেলিলা\0" // ea + "চেক প্রজাতন্ত্র\0" // cz + "চেচিয়া\0" // cz + "চেনেগাল\0" // sn + "চোমালিয়া\0" // so + "চোলোমোন দ্বীপপুঞ্জ\0" // sb + "চৌডি আৰবিয়া\0" // sa + "ছাৰ্বিয়া\0" // rs + "ছিংগাপুৰ\0" // sg + "ছিচিলিছ\0" // sc + "ছুৰিনাম\0" // sr + "ছেইণ্ট কিটছ আৰু নেভিছ\0" // kn + "ছেইণ্ট পিয়েৰে আৰু মিকিউৱেলন\0" // pm + "ছেইণ্ট বাৰ্থলেমে\0" // bl + "ছেইণ্ট ভিনচেণ্ট আৰু গ্ৰীণাডাইনছ\0" // vc + "ছেইণ্ট মাৰ্টিন\0" // mf + "ছেইণ্ট লুচিয়া\0" // lc + "ছেইণ্ট হেলেনা\0" // sh + "জর্জিয়া\0" // ge + "জর্ডন\0" // jo + "জাপান\0" // jp + "জামাইকা\0" // jm + "জাম্বিয়া\0" // zm + "জার্মানি\0" // de + "জার্সি\0" // je + "জাৰ্চি\0" // je + "জাৰ্মানী\0" // de + "জিবুটি\0" // dj + "জিবুতি\0" // dj + "জিব্রাল্টার\0" // gi + "জিব্ৰাল্টৰ\0" // gi + "জিম্বাবোয়ে\0" // zw + "জিম্বাবৱে\0" // zw + "জৰ্জিয়া\0" // ge + "জৰ্ডান\0" // jo + "টংগা\0" // to + "টাইৱান\0" // tw + "টাৰ্কছ অৰু কেইক’ছ দ্বীপপুঞ্জ\0" // tc + "টিমোৰ-লেচটে\0" // tl + "টুনিচিয়া\0" // tn + "টুভালু\0" // tv + "টোকেলাউ\0" // tk + "টোগো\0" // tg + "টোঙ্গা\0" // to + "ট্রিস্টান ডা কুনহা\0" // ta + "ট্ৰিনিডাড আৰু টোবাগো\0" // tt + "ডিয়েগো গাৰ্চিয়া\0" // dg + "ডেনমার্ক\0" // dk + "ডেনমাৰ্ক\0" // dk + "ডোমিনিকা\0" // dm + "ডোমেনিকান প্রজাতন্ত্র\0" // do + "ড’মিনিকা\0" // dm + "ড’মিনিকান ৰিপাব্লিক\0" // do + "তাইওয়ান\0" // tw + "তাজিকিস্তান\0" // tj + "তাঞ্জানিয়া\0" // tz + "তিউনিসিয়া\0" // tn + "তিমুর-লেস্তে\0" // tl + "তুরস্ক\0" // tr + "তুর্কমেনিস্তান\0" // tm + "তুর্কস ও কাইকোস দ্বীপপুঞ্জ\0" // tc + "তুৰ্কমেনিস্তান\0" // tm + "তুৰ্কি\0" // tr + "ত্রিনিনাদ ও টোব্যাগো\0" // tt + "ত্ৰিস্তান দ্যা কুনহা\0" // ta + "থাইলেণ্ড\0" // th + "থাইল্যান্ড\0" // th + "দক্ষিণ আফ্রিকা\0" // za + "দক্ষিণ কোরিয়া\0" // kr + "দক্ষিণ কোৰিয়া\0" // kr + "দক্ষিণ চুডান\0" // ss + "দক্ষিণ জর্জিয়া ও দক্ষিণ স্যান্ডউইচ দ্বীপপুঞ্জ\0" // gs + "দক্ষিণ জৰ্জিয়া আৰু দক্ষিণ চেণ্ডৱিচ দ্বীপপুঞ্জ\0" // gs + "দক্ষিণ ফ্ৰান্সৰ অঞ্চল\0" // tf + "দক্ষিণ সুদান\0" // ss + "দিয়েগো গার্সিয়া\0" // dg + "নরওয়ে\0" // no + "নরফোক দ্বীপ\0" // nf + "নাইজার\0" // ne + "নাইজাৰ\0" // ne + "নাইজেরিয়া\0" // ng + "নাইজেৰিয়া\0" // ng + "নাউরু\0" // nr + "নাউৰু\0" // nr + "নামিবিয়া\0" // na + "নিউ\0" // nu + "নিউ কেলিডোনিয়া\0" // nc + "নিউ ক্যালেডোনিয়া\0" // nc + "নিউজিলেণ্ড\0" // nz + "নিউজিল্যান্ড\0" // nz + "নিউয়ে\0" // nu + "নিকারাগুয়া\0" // ni + "নিকাৰাগুৱা\0" // ni + "নিরক্ষীয় গিনি\0" // gq + "নেডাৰলেণ্ড\0" // nl + "নেদারল্যান্ডস\0" // nl + "নেপাল\0" // np + "নৰৱে\0" // no + "ন’ৰফ’ক দ্বীপ\0" // nf + "পর্তুগাল\0" // pt + "পশ্চিম সাহারা\0" // eh + "পশ্চিমীয় ছাহাৰা\0" // eh + "পাকিস্তান\0" // pk + "পানামা\0" // pa + "পাপুয়া নিউ গিনি\0" // pg + "পাপুৱা নিউ গিনি\0" // pg + "পালাউ\0" // pw + "পাৰাগুৱে\0" // py + "পিটকেইৰ্ণ দ্বীপপুঞ্জ\0" // pn + "পিটকেয়ার্ন দ্বীপপুঞ্জ\0" // pn + "পুয়ের্তো রিকো\0" // pr + "পুৱেৰ্টো ৰিকো\0" // pr + "পূর্ব তিমুর\0" // tl + "পূৱ টিমোৰ\0" // tl + "পেরু\0" // pe + "পেৰু\0" // pe + "পোলেণ্ড\0" // pl + "পোল্যান্ড\0" // pl + "প্যারাগুয়ে\0" // py + "প্যালেস্টাইনের অঞ্চলসমূহ\0" // ps + "পৰ্তুগাল\0" // pt + "ফকলেণ্ড দ্বীপপুঞ্জ\0" // fk + "ফকল্যান্ড আইল্যান্ড ( ইসল্যাস মাসভেনিস)\0" // fk + "ফকল্যান্ড দ্বীপপুঞ্জ\0" // fk + "ফরাসী গায়ানা\0" // gf + "ফরাসী দক্ষিণাঞ্চল\0" // tf + "ফরাসী পলিনেশিয়া\0" // pf + "ফাৰো দ্বীপপুঞ্জ\0" // fo + "ফিজি\0" // fj + "ফিনলেণ্ড\0" // fi + "ফিনল্যান্ড\0" // fi + "ফিলিপাইন\0" // ph + "ফিলিপাইনছ\0" // ph + "ফিলিস্তিন\0" // ps + "ফিলিস্তিন অঞ্চল\0" // ps + "ফ্যারও দ্বীপপুঞ্জ\0" // fo + "ফ্রান্স\0" // fr + "ফ্ৰান্স\0" // fr + "ফ্ৰান্স গয়ানা\0" // gf + "ফ্ৰান্স পোলেনচিয়া\0" // pf + "বতসোয়ানা\0" // bw + "বলিভিয়া\0" // bo + "বসনিয়া ও হার্জেগোভিনা\0" // ba + "বাংলাদেশ\0" // bd + "বারবাদোস\0" // bb + "বারমুডা\0" // bm + "বাহরাইন\0" // bh + "বাহামা দ্বীপপুঞ্জ\0" // bs + "বাহামাছ\0" // bs + "বাহৰেইন\0" // bh + "বাৰ্বাডোচ\0" // bb + "বাৰ্মুডা\0" // bm + "বুভে দ্বীপ\0" // bv + "বুরকিনা ফাসো\0" // bf + "বুরুন্ডি\0" // bi + "বুলগেরিয়া\0" // bg + "বুলগেৰিয়া\0" // bg + "বুৰকিনা ফাচো\0" // bf + "বুৰুণ্ডি\0" // bi + "বেনিন\0" // bj + "বেলজিয়াম\0" // be + "বেলারুশ\0" // by + "বেলাৰুছ\0" // by + "বেলিজ\0" // bz + "বোভেট দ্বীপ\0" // bv + "ব্রাজিল\0" // br + "ব্রিটিশ ভারত মহাসাগরীয় অঞ্চল\0" // io + "ব্রিটিশ ভার্জিন দ্বীপপুঞ্জ\0" // vg + "ব্রুনেই\0" // bn + "ব্ৰাজিল\0" // br + "ব্ৰিটিছ ইণ্ডিয়ান অ’চন টেৰিট’ৰি\0" // io + "ব্ৰিটিছ ভাৰ্জিন দ্বীপপুঞ্জ\0" // vg + "ব্ৰুনেই\0" // bn + "ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা\0" // ba + "ব’টচোৱানা\0" // bw + "ভানাটু\0" // vu + "ভানুয়াটু\0" // vu + "ভারত\0" // in + "ভাৰত\0" // in + "ভিয়েটনাম\0" // vn + "ভিয়েতনাম\0" // vn + "ভুটান\0" // bt + "ভেটিকান চিটি\0" // va + "ভেনিজুৱেলা\0" // ve + "ভেনেজুয়েলা\0" // ve + "ভ্যাটিকান সিটি\0" // va + "মঙ্গোলিয়া\0" // mn + "মণ্টেনেগ্ৰু\0" // me + "মধ্য আফ্রিকান প্রজাতন্ত্র\0" // cf + "মধ্য আফ্রিকার প্রজাতন্ত্র\0" // cf + "মন্টসেরাট\0" // ms + "মন্টিনিগ্রো\0" // me + "মরিতানিয়া\0" // mr + "মরিশাস\0" // mu + "মলডোভা\0" // md + "মা. যু.\0" // us + "মাইক্রোনেশিয়া\0" // fm + "মাইক্ৰোনেচিয়া\0" // fm + "মাউৰিটানিয়া\0" // mr + "মাকাউ\0" // mo + "মাকাউ এছ. এ. আৰ. চীন\0" // mo + "মাদাগাস্কার\0" // mg + "মাদাগাস্কাৰ\0" // mg + "মায়ানমার (বার্মা)\0" // mm + "মায়োট্টে\0" // yt + "মায়োত্তে\0" // yt + "মার্কিন যুক্তরাষ্ট্র\0" // us + "মার্কিন যুক্তরাষ্ট্রের পার্শ্ববর্তী দ্বীপপুঞ্জ\0" // um + "মার্কিন যুক্তরাষ্ট্রের ভার্জিন দ্বীপপুঞ্জ\0" // vi + "মার্টিনিক\0" // mq + "মার্শাল দ্বীপপুঞ্জ\0" // mh + "মালদ্বীপ\0" // mv + "মালয়েচিয়া\0" // my + "মালয়েশিয়া\0" // my + "মালাউই\0" // mw + "মালাৱি\0" // mw + "মালি\0" // ml + "মাল্টা\0" // mt + "মাৰ্কিন যুক্তৰাষ্ট্ৰ\0" // us + "মাৰ্টিনিক\0" // mq + "মাৰ্শ্বাল দ্বীপপুঞ্জ\0" // mh + "মিশর\0" // eg + "মেক্সিকো\0" // mx + "মেচিডোনীয়া\0" // mk + "মেচিডোনীয়া (fyrom)\0" // mk + "মোজাম্বিক\0" // mz + "মোনাকো\0" // mc + "মোরক্কো\0" // ma + "মোলডোভা\0" // md + "মোল্দাভিয়া\0" // md + "ম্যাকাও\0" // mo + "ম্যাকাও এসএআর চীনা\0" // mo + "ম্যানমাৰ (বাৰ্মা)\0" // mm + "ম্যাসাডোনিয়া\0" // mk + "ম্যাসিডোনিয়া (fyrom)\0" // mk + "মৰক্কো\0" // ma + "মৰিছাছ\0" // mu + "ম’জামবিক\0" // mz + "ম’ণ্টছেৰাট\0" // ms + "য়েমেন\0" // ye + "যুক্তরাজ্য\0" // gb + "যুক্তরাষ্ট্রের পার্শ্ববর্তী দ্বীপপুঞ্জ\0" // um + "রাশিয়া\0" // ru + "রিইউনিয়ন\0" // re + "রুয়ান্ডা\0" // rw + "রোমানিয়া\0" // ro + "লাইবেরিয়া\0" // lr + "লাওচ\0" // la + "লাওস\0" // la + "লাক্সেমবার্গ\0" // lu + "লাক্সেমবাৰ্গ\0" // lu + "লাটভিয়া\0" // lv + "লাত্ভিয়া\0" // lv + "লিচটেনষ্টেইন\0" // li + "লিচেনস্টেইন\0" // li + "লিথুয়ানিয়া\0" // lt + "লিথুৱানিয়া\0" // lt + "লিবিয়া\0" // ly + "লিবেৰিয়া\0" // lr + "লেছ’থ’\0" // ls + "লেবানন\0" // lb + "লেসোথো\0" // ls + "শ্রীলংকা\0" // lk + "শ্রীলঙ্কা\0" // lk + "শ্লোভাকিয়া\0" // sk + "শ্লোভেনিয়া\0" // si + "সংযুক্ত আরব আমিরাত\0" // ae + "সংযুক্ত আৰব আমিৰাত\0" // ae + "সংযুক্ত ৰাজ্য\0" // gb + "সলোমন দ্বীপপুঞ্জ\0" // sb + "সাইপ্রাস\0" // cy + "সাওটোমা ও প্রিন্সিপি\0" // st + "সান মারিনো\0" // sm + "সামোয়া\0" // ws + "সার্বিয়া\0" // rs + "সিঙ্গাপুর\0" // sg + "সিন্ট মার্টেন\0" // sx + "সিয়েরা লিওন\0" // sl + "সিরিয়া\0" // sy + "সিসিলি\0" // sc + "সুইজারল্যান্ড\0" // ch + "সুইডেন\0" // se + "সুদান\0" // sd + "সুরিনাম\0" // sr + "সেনেগাল\0" // sn + "সেন্ট কিটস ও নেভিস\0" // kn + "সেন্ট পিয়ের ও মিকুয়েলন\0" // pm + "সেন্ট বারথেলিমি\0" // bl + "সেন্ট ভিনসেন্ট ও গ্রেনাডিনস\0" // vc + "সেন্ট মার্টিন\0" // mf + "সেন্ট লুসিয়া\0" // lc + "সেন্ট হেলেনা\0" // sh + "সোমালিয়া\0" // so + "সোয়াজিল্যান্ড\0" // sz + "সৌদি আরব\0" // sa + "স্পেইন\0" // es + "স্পেন\0" // es + "স্বাজিলেণ্ড\0" // sz + "স্বালবার্ড ও জান মেয়েন\0" // sj + "স্লোভাকিয়া\0" // sk + "স্লোভানিয়া\0" // si + "হং কং\0" // hk + "হং কং এছ. এ. আৰ. চীন\0" // hk + "হংকং\0" // hk + "হংকং এসএআর চীনা\0" // hk + "হন্ডুরাস\0" // hn + "হন্দুৰাছ\0" // hn + "হাংগেৰী\0" // hu + "হাইটি\0" // ht + "হাইতি\0" // ht + "হাঙ্গেরি\0" // hu + "হার্ড এবং ম্যাকডোনাল্ড দ্বীপপুঞ্জ\0" // hm + "হাৰ্ড দ্বীপ আৰু মেকডোনাল্ড দ্বীপপুঞ্জ\0" // hm + "ৰাছিয়া\0" // ru + "ৰিইউনিয়ন\0" // re + "ৰোমানিয়া\0" // ro + "ৰোৱাণ্ডা\0" // rw + "ৱালিছ আৰু ফুটুনা\0" // wf + "ਅਜ਼ਰਬਾਈਜਾਨ\0" // az + "ਅਫ਼ਗਾਨਿਸਤਾਨ\0" // af + "ਅਮੈਰੀਕਨ ਸਮੋਆ\0" // as + "ਅਰਜਨਟੀਨਾ\0" // ar + "ਅਰਮੀਨੀਆ\0" // am + "ਅਰੂਬਾ\0" // aw + "ਅਲ ਸਲਵਾਡੋਰ\0" // sv + "ਅਲਜੀਰੀਆ\0" // dz + "ਅਲਬਾਨੀਆ\0" // al + "ਅਲੈਂਡ ਟਾਪੂ\0" // ax + "ਅਸੈਂਸ਼ਨ ਟਾਪੂ\0" // ac + "ਅੰਗੁਇਲਾ\0" // ai + "ਅੰਗੋਲਾ\0" // ao + "ਅੰਟਾਰਕਟਿਕਾ\0" // aq + "ਅੰਡੋਰਾ\0" // ad + "ਆਇਰਲੈਂਡ\0" // ie + "ਆਇਲ ਆਫ ਮੈਨ\0" // im + "ਆਇਵਰੀ ਕੋਸਟ\0" // ci + "ਆਈਸਲੈਂਡ\0" // is + "ਆਊਟਲਾਇੰਗ ਓਸ਼ੀਨੀਆ\0" // qo + "ਆਸਟਰੀਆ\0" // at + "ਆਸਟ੍ਰੇਲੀਆ\0" // au + "ਇਕਵੇਡੋਰ\0" // ec + "ਇਜ਼ਰਾਈਲ\0" // il + "ਇਟਲੀ\0" // it + "ਇਥੋਪੀਆ\0" // et + "ਇਰਾਕ\0" // iq + "ਇਰੀਟ੍ਰਿਆ\0" // er + "ਇਸਟੋਨੀਆ\0" // ee + "ਇੰਡੋਨੇਸ਼ੀਆ\0" // id + "ਈਰਾਨ\0" // ir + "ਉਜ਼ਬੇਕਿਸਤਾਨ\0" // uz + "ਉਰੂਗਵੇ\0" // uy + "ਉੱਤਰ ਕੋਰੀਆ\0" // kp + "ਉੱਤਰੀ ਮਾਰੀਆਨਾ ਟਾਪੂ\0" // mp + "ਐਂਟੀਗੁਆ ਅਤੇ ਬਾਰਬੁਡਾ\0" // ag + "ਓਮਾਨ\0" // om + "ਕਜ਼ਾਖਸਤਾਨ\0" // kz + "ਕਤਰ\0" // qa + "ਕਰੋਏਸ਼ੀਆ\0" // hr + "ਕਲਿੱਪਰਟਨ ਟਾਪੂ\0" // cp + "ਕਾਂਗੋ - ਕਿੰਸ਼ਾਸਾ\0" // cd + "ਕਾਂਗੋ - ਬ੍ਰਾਜ਼ਾਵਿਲੇ\0" // cg + "ਕਾਂਗੋ ਗਣਰਾਜ\0" // cg + "ਕਾਂਗੋ ਲੋਕਤੰਤਰੀ ਗਣਰਾਜ\0" // cd + "ਕਿਊਬਾ\0" // cu + "ਕਿਰਗਿਜ਼ਸਤਾਨ\0" // kg + "ਕਿਰਬਾਤੀ\0" // ki + "ਕੀਨੀਆ\0" // ke + "ਕੁਰਾਕਾਓ\0" // cw + "ਕੁਵੈਤ\0" // kw + "ਕੁੱਕ ਟਾਪੂ\0" // ck + "ਕੇਂਦਰੀ ਅਫ਼ਰੀਕੀ ਗਣਰਾਜ\0" // cf + "ਕੇਨਾਰੀ ਟਾਪੂ\0" // ic + "ਕੇਪ ਵਰਡੇ\0" // cv + "ਕੇਮੈਨ ਟਾਪੂ\0" // ky + "ਕੈਨੇਡਾ\0" // ca + "ਕੈਮਰੂਨ\0" // cm + "ਕੈਰੇਬੀਆਈ ਨੀਦਰਲੈਂਡ\0" // bq + "ਕੋਕੋਸ (ਕੀਲਿੰਗ) ਟਾਪੂ\0" // cc + "ਕੋਟ ਡੀਵੋਆਰ\0" // ci + "ਕੋਮੋਰੋਸ\0" // km + "ਕੋਲੰਬੀਆ\0" // co + "ਕੋਸਟਾ ਰੀਕਾ\0" // cr + "ਕੋਸੋਵੋ\0" // xk + "ਕ੍ਰਿਸਮਿਸ ਟਾਪੂ\0" // cx + "ਕੰਬੋਡੀਆ\0" // kh + "ਗਬੋਨ\0" // ga + "ਗਰਨਜੀ\0" // gg + "ਗਿਨੀ\0" // gn + "ਗਿਨੀ-ਬਿਸਾਉ\0" // gw + "ਗੁਆਟੇਮਾਲਾ\0" // gt + "ਗੁਆਡੇਲੋਪ\0" // gp + "ਗੁਆਮ\0" // gu + "ਗੁਯਾਨਾ\0" // gy + "ਗੈਂਬੀਆ\0" // gm + "ਗ੍ਰੀਨਲੈਂਡ\0" // gl + "ਗ੍ਰੀਸ\0" // gr + "ਗ੍ਰੇਨਾਡਾ\0" // gd + "ਘਾਨਾ\0" // gh + "ਚਾਡ\0" // td + "ਚਿਲੀ\0" // cl + "ਚੀਨ\0" // cn + "ਚੈਕੀਆ\0" // cz + "ਚੈੱਕ ਗਣਰਾਜ\0" // cz + "ਜਪਾਨ\0" // jp + "ਜਮਾਇਕਾ\0" // jm + "ਜਰਮਨੀ\0" // de + "ਜਰਸੀ\0" // je + "ਜ਼ਾਮਬੀਆ\0" // zm + "ਜ਼ਿੰਬਾਬਵੇ\0" // zw + "ਜ਼ੀਬੂਤੀ\0" // dj + "ਜਾਰਜੀਆ\0" // ge + "ਜਾਰਡਨ\0" // jo + "ਜਿਬਰਾਲਟਰ\0" // gi + "ਟਿਊਨੀਸ਼ੀਆ\0" // tn + "ਟੁਰਕਸ ਅਤੇ ਕੈਕੋਸ ਟਾਪੂ\0" // tc + "ਟੁਵਾਲੂ\0" // tv + "ਟੋਕੇਲਾਉ\0" // tk + "ਟੋਗੋ\0" // tg + "ਟੌਂਗਾ\0" // to + "ਟ੍ਰਿਨੀਡਾਡ ਅਤੇ ਟੋਬਾਗੋ\0" // tt + "ਟ੍ਰਿਸਟਾਨ ਦਾ ਕੁੰਹਾ\0" // ta + "ਡੀਇਗੋ ਗਾਰਸੀਆ\0" // dg + "ਡੈਨਮਾਰਕ\0" // dk + "ਡੋਮੀਨਿਕਾ\0" // dm + "ਡੋਮੀਨਿਕਾਈ ਗਣਰਾਜ\0" // do + "ਤਨਜ਼ਾਨੀਆ\0" // tz + "ਤਾਇਵਾਨ\0" // tw + "ਤਾਜਿਕਿਸਤਾਨ\0" // tj + "ਤਿਮੋਰ-ਲੇਸਤੇ\0" // tl + "ਤੁਰਕਮੇਨਿਸਤਾਨ\0" // tm + "ਤੁਰਕੀ\0" // tr + "ਥਾਈਲੈਂਡ\0" // th + "ਦੱਖਣ ਕੋਰੀਆ\0" // kr + "ਦੱਖਣ ਸੁਡਾਨ\0" // ss + "ਦੱਖਣੀ ਅਫਰੀਕਾ\0" // za + "ਦੱਖਣੀ ਜਾਰਜੀਆ ਅਤੇ ਦੱਖਣੀ ਸੈਂਡਵਿਚ ਟਾਪੂ\0" // gs + "ਨਾਈਜਰ\0" // ne + "ਨਾਈਜੀਰੀਆ\0" // ng + "ਨਾਉਰੂ\0" // nr + "ਨਾਮੀਬੀਆ\0" // na + "ਨਾਰਵੇ\0" // no + "ਨਿਊ ਕੈਲੇਡੋਨੀਆ\0" // nc + "ਨਿਊਜ਼ੀਲੈਂਡ\0" // nz + "ਨਿਕਾਰਾਗੁਆ\0" // ni + "ਨਿਯੂ\0" // nu + "ਨੀਦਰਲੈਂਡ\0" // nl + "ਨੇਪਾਲ\0" // np + "ਨੋਰਫੌਕ ਟਾਪੂ\0" // nf + "ਪਨਾਮਾ\0" // pa + "ਪਲਾਉ\0" // pw + "ਪਾਕਿਸਤਾਨ\0" // pk + "ਪਾਪੂਆ ਨਿਊ ਗਿਨੀ\0" // pg + "ਪਿਊਰਟੋ ਰਿਕੋ\0" // pr + "ਪਿਟਕੇਰਨ ਟਾਪੂ\0" // pn + "ਪੁਰਤਗਾਲ\0" // pt + "ਪੂਰਬ ਤਿਮੋਰ\0" // tl + "ਪੇਰੂ\0" // pe + "ਪੈਰਾਗਵੇ\0" // py + "ਪੋਲੈਂਡ\0" // pl + "ਪੱਛਮੀ ਸਹਾਰਾ\0" // eh + "ਫਰੈਂਚ ਗੁਇਆਨਾ\0" // gf + "ਫਰੈਂਚ ਦੱਖਣੀ ਪ੍ਰਦੇਸ਼\0" // tf + "ਫਰੈਂਚ ਪੋਲੀਨੇਸ਼ੀਆ\0" // pf + "ਫ਼ਰਾਂਸ\0" // fr + "ਫ਼ਾਕਲੈਂਡ ਟਾਪੂ\0" // fk + "ਫ਼ਾਕਲੈਂਡ ਟਾਪੂ (ਆਈਲਾਸ ਮਾਲਵਿਨਾਸ)\0" // fk + "ਫ਼ਿਜੀ\0" // fj + "ਫਿਨਲੈਂਡ\0" // fi + "ਫਿਲੀਪੀਨਜ\0" // ph + "ਫਿਲੀਸਤੀਨ\0" // ps + "ਫਿਲੀਸਤੀਨੀ ਇਲਾਕਾ\0" // ps + "ਫੈਰੋ ਟਾਪੂ\0" // fo + "ਬਰਤਾਨਵੀ ਹਿੰਦ ਮਹਾਂਸਾਗਰ ਖਿੱਤਾ\0" // io + "ਬਰਮੂਡਾ\0" // bm + "ਬਰੂਨੇਈ\0" // bn + "ਬਹਾਮਾਸ\0" // bs + "ਬਹਿਰੀਨ\0" // bh + "ਬਾਰਬਾਡੋਸ\0" // bb + "ਬੁਰਕੀਨਾ ਫ਼ਾਸੋ\0" // bf + "ਬੁਰੁੰਡੀ\0" // bi + "ਬੁਲਗਾਰੀਆ\0" // bg + "ਬੇਨਿਨ\0" // bj + "ਬੇਲਾਰੂਸ\0" // by + "ਬੇਲੀਜ਼\0" // bz + "ਬੈਲਜੀਅਮ\0" // be + "ਬੋਤਸਵਾਨਾ\0" // bw + "ਬੋਲੀਵੀਆ\0" // bo + "ਬੋਸਨੀਆ ਅਤੇ ਹਰਜ਼ੇਗੋਵੀਨਾ\0" // ba + "ਬੌਵੇਟ ਟਾਪੂ\0" // bv + "ਬ੍ਰਾਜ਼ੀਲ\0" // br + "ਬ੍ਰਿਟਿਸ਼ ਵਰਜਿਨ ਟਾਪੂ\0" // vg + "ਬੰਗਲਾਦੇਸ਼\0" // bd + "ਭਾਰਤ\0" // in + "ਭੂ-ਖੰਡੀ ਗਿਨੀ\0" // gq + "ਭੂਟਾਨ\0" // bt + "ਮਕਾਉ\0" // mo + "ਮਕਾਉ ਐਸਏਆਰ ਚੀਨ\0" // mo + "ਮਲਾਵੀ\0" // mw + "ਮਲੇਸ਼ੀਆ\0" // my + "ਮਾਇਕ੍ਰੋਨੇਸ਼ੀਆ\0" // fm + "ਮਾਯੋਟੀ\0" // yt + "ਮਾਰਟੀਨਿਕ\0" // mq + "ਮਾਰਸ਼ਲ ਟਾਪੂ\0" // mh + "ਮਾਲਟਾ\0" // mt + "ਮਾਲਦੀਵ\0" // mv + "ਮਾਲੀ\0" // ml + "ਮਿਆਂਮਾਰ (ਬਰਮਾ)\0" // mm + "ਮਿਸਰ\0" // eg + "ਮੈਕਡੋਨੀਆ\0" // mk + "ਮੈਕਡੋਨੀਆ (ਪੂਰਵ ਯੂਗੋਸਲਾਵ ਮੈਕਡੋਨੀਆਈ ਗਣਰਾਜ)\0" // mk + "ਮੈਕਸੀਕੋ\0" // mx + "ਮੈਡਾਗਾਸਕਰ\0" // mg + "ਮੋਂਟਸੇਰਾਤ\0" // ms + "ਮੋਂਟੇਨੇਗਰੋ\0" // me + "ਮੋਜ਼ਾਮਬੀਕ\0" // mz + "ਮੋਨਾਕੋ\0" // mc + "ਮੋਰਿਟਾਨੀਆ\0" // mr + "ਮੋਰੱਕੋ\0" // ma + "ਮੋਲਡੋਵਾ\0" // md + "ਮੌਰੀਸ਼ਸ\0" // mu + "ਮੰਗੋਲੀਆ\0" // mn + "ਯਮਨ\0" // ye + "ਯੂ ਐੱਸ ਵਰਜਿਨ ਟਾਪੂ\0" // vi + "ਯੂ.ਐੱਸ.\0" // us + "ਯੂ.ਐੱਸ. ਦੂਰ-ਦੁਰਾਡੇ ਟਾਪੂ\0" // um + "ਯੂ.ਕੇ.\0" // gb + "ਯੂਕਰੇਨ\0" // ua + "ਯੂਗਾਂਡਾ\0" // ug + "ਯੂਨਾਈਟਡ ਕਿੰਗਡਮ\0" // gb + "ਰਵਾਂਡਾ\0" // rw + "ਰਿਯੂਨੀਅਨ\0" // re + "ਰੂਸ\0" // ru + "ਰੋਮਾਨੀਆ\0" // ro + "ਲਕਜ਼ਮਬਰਗ\0" // lu + "ਲਾਈਬੀਰੀਆ\0" // lr + "ਲਾਓਸ\0" // la + "ਲਾਤਵੀਆ\0" // lv + "ਲਿਚੇਂਸਟਾਇਨ\0" // li + "ਲਿਥੁਆਨੀਆ\0" // lt + "ਲੀਬੀਆ\0" // ly + "ਲੇਸੋਥੋ\0" // ls + "ਲੈਬਨਾਨ\0" // lb + "ਵਾਨੂਆਟੂ\0" // vu + "ਵਾਲਿਸ ਅਤੇ ਫੂਟੂਨਾ\0" // wf + "ਵੀਅਤਨਾਮ\0" // vn + "ਵੇਨੇਜ਼ੂਏਲਾ\0" // ve + "ਵੈਟੀਕਨ ਸਿਟੀ\0" // va + "ਸਪੇਨ\0" // es + "ਸਰਬੀਆ\0" // rs + "ਸਲੋਵਾਕੀਆ\0" // sk + "ਸਲੋਵੇਨੀਆ\0" // si + "ਸਵਾਜ਼ੀਲੈਂਡ\0" // sz + "ਸਵਾਲਬਰਡ ਅਤੇ ਜਾਨ ਮਾਯੇਨ\0" // sj + "ਸਵਿਟਜ਼ਰਲੈਂਡ\0" // ch + "ਸਵੀਡਨ\0" // se + "ਸਾਇਪ੍ਰਸ\0" // cy + "ਸਾਊਦੀ ਅਰਬ\0" // sa + "ਸਾਓ ਟੋਮ ਅਤੇ ਪ੍ਰਿੰਸੀਪੇ\0" // st + "ਸਾਮੋਆ\0" // ws + "ਸਿਏਰਾ ਲਿਓਨ\0" // sl + "ਸਿਓਟਾ ਅਤੇ ਮੇਲਿੱਲਾ\0" // ea + "ਸਿੰਗਾਪੁਰ\0" // sg + "ਸਿੰਟ ਮਾਰਟੀਨ\0" // sx + "ਸੀਰੀਆ\0" // sy + "ਸੂਡਾਨ\0" // sd + "ਸੂਰੀਨਾਮ\0" // sr + "ਸੇਂਟ ਕਿਟਸ ਐਂਡ ਨੇਵਿਸ\0" // kn + "ਸੇਂਟ ਪੀਅਰੇ ਐਂਡ ਮਿਕੇਲਨ\0" // pm + "ਸੇਂਟ ਬਾਰਥੇਲੇਮੀ\0" // bl + "ਸੇਂਟ ਮਾਰਟਿਨ\0" // mf + "ਸੇਂਟ ਲੂਸੀਆ\0" // lc + "ਸੇਂਟ ਵਿਨਸੈਂਟ ਐਂਡ ਗ੍ਰੇਨਾਡੀਨਸ\0" // vc + "ਸੇਂਟ ਹੇਲੇਨਾ\0" // sh + "ਸੇਨੇਗਲ\0" // sn + "ਸੇਸ਼ਲਸ\0" // sc + "ਸੈਨ ਮਰੀਨੋ\0" // sm + "ਸੋਮਾਲੀਆ\0" // so + "ਸੋਲੋਮਨ ਟਾਪੂ\0" // sb + "ਸ੍ਰੀ ਲੰਕਾ\0" // lk + "ਸੰਯੁਕਤ ਅਰਬ ਅਮੀਰਾਤ\0" // ae + "ਸੰਯੁਕਤ ਰਾਜ\0" // us + "ਹਰਡ ਤੇ ਮੈਕਡੋਨਾਲਡ ਟਾਪੂ\0" // hm + "ਹਾਂਗ ਕਾਂਗ\0" // hk + "ਹਾਂਗ ਕਾਂਗ ਐਸਏਆਰ ਚੀਨ\0" // hk + "ਹੈਤੀ\0" // ht + "ਹੋਂਡੁਰਸ\0" // hn + "ਹੰਗਰੀ\0" // hu + "અંગોલા\0" // ao + "અઝરબૈજાન\0" // az + "અફઘાનિસ્તાન\0" // af + "અમેરિકન સમોઆ\0" // as + "અરુબા\0" // aw + "અલ્જીરિયા\0" // dz + "અલ્બેનિયા\0" // al + "આઇલ ઑફ મેન\0" // im + "આઇવરી કોસ્ટ\0" // ci + "આઇસલેન્ડ\0" // is + "આઉટલાઈન્ગ ઓશનિયા\0" // qo + "આયર્લેન્ડ\0" // ie + "આર્જેન્ટીના\0" // ar + "આર્મેનિયા\0" // am + "ઇક્વેટોરિયલ ગિની\0" // gq + "ઇજિપ્ત\0" // eg + "ઇઝરાઇલ\0" // il + "ઇટાલી\0" // it + "ઇથિઓપિયા\0" // et + "ઇન્ડોનેશિયા\0" // id + "ઇરાક\0" // iq + "ઈરાન\0" // ir + "ઉઝ્બેકિસ્તાન\0" // uz + "ઉત્તર કોરિયા\0" // kp + "ઉત્તરી મારિયાના આઇલેન્ડ્સ\0" // mp + "ઉરુગ્વે\0" // uy + "ઍંગ્વિલા\0" // ai + "ઍંડોરા\0" // ad + "ઍન્ટિગુઆ અને બર્મુડા\0" // ag + "એક્વાડોર\0" // ec + "એન્ટાર્કટિકા\0" // aq + "એરિટ્રિયા\0" // er + "એલ સેલ્વાડોર\0" // sv + "એસેન્શન આઇલેન્ડ\0" // ac + "એસ્ટોનિયા\0" // ee + "ઑલેન્ડ આઇલેન્ડ્સ\0" // ax + "ઑસ્ટ્રિયા\0" // at + "ઑસ્ટ્રેલિયા\0" // au + "ઓમાન\0" // om + "કંબોડિયા\0" // kh + "કઝાકિસ્તાન\0" // kz + "કતાર\0" // qa + "કિરિબાટી\0" // ki + "કિર્ગિઝ્સ્તાન\0" // kg + "કુક આઇલેન્ડ્સ\0" // ck + "કુવૈત\0" // kw + "કૅનેરી આઇલેન્ડ્સ\0" // ic + "કૅપ વર્ડે\0" // cv + "કૅમરૂન\0" // cm + "કેનેડા\0" // ca + "કેન્યા\0" // ke + "કેમેન આઇલેન્ડ્સ\0" // ky + "કેરેબિયન નેધરલેન્ડ્ઝ\0" // bq + "કોંગો (ડીઆરસી)\0" // cd + "કોંગો (રિપબ્લિક)\0" // cg + "કોંગો - કિંશાસા\0" // cd + "કોંગો - બ્રાઝાવિલે\0" // cg + "કોકોઝ (કીલીંગ) આઇલેન્ડ્સ\0" // cc + "કોટ ડીઆઇવરી\0" // ci + "કોમોરસ\0" // km + "કોલમ્બિયા\0" // co + "કોસોવો\0" // xk + "કોસ્ટા રિકા\0" // cr + "ક્યુબા\0" // cu + "ક્યુરાસાઓ\0" // cw + "ક્રિસમસ આઇલેન્ડ\0" // cx + "ક્રોએશિયા\0" // hr + "ક્લિપરટન આઇલેન્ડ\0" // cp + "ગયાના\0" // gy + "ગિની\0" // gn + "ગિની-બિસાઉ\0" // gw + "ગેબન\0" // ga + "ગેમ્બિયા\0" // gm + "ગ્રીનલેન્ડ\0" // gl + "ગ્રીસ\0" // gr + "ગ્રેનેડા\0" // gd + "ગ્વાટેમાલા\0" // gt + "ગ્વાડેલોપ\0" // gp + "ગ્વામ\0" // gu + "ગ્વેર્નસે\0" // gg + "ઘાના\0" // gh + "ચાડ\0" // td + "ચિલી\0" // cl + "ચીન\0" // cn + "ચેક રિપબ્લિક\0" // cz + "ચેકીયા\0" // cz + "જમૈકા\0" // jm + "જર્મની\0" // de + "જર્સી\0" // je + "જાપાન\0" // jp + "જીબૌટી\0" // dj + "જીબ્રાલ્ટર\0" // gi + "જોર્ડન\0" // jo + "જ્યોર્જિયા\0" // ge + "ઝામ્બિયા\0" // zm + "ઝિમ્બાબ્વે\0" // zw + "ટોંગા\0" // to + "ટોકેલાઉ\0" // tk + "ટોગો\0" // tg + "ટ્યુનિશિયા\0" // tn + "ટ્રિનીદાદ અને ટોબેગો\0" // tt + "ડિએગો ગારસિઆ\0" // dg + "ડેનમાર્ક\0" // dk + "ડોમિનિકન રિપબ્લિક\0" // do + "ડોમિનિકા\0" // dm + "તાંઝાનિયા\0" // tz + "તાઇવાન\0" // tw + "તાજીકિસ્તાન\0" // tj + "તિમોર-લેસ્તે\0" // tl + "તુર્કમેનિસ્તાન\0" // tm + "તુર્કી\0" // tr + "તુર્ક્સ અને કેકોઝ આઇલેન્ડ્સ\0" // tc + "તુવાલુ\0" // tv + "ત્રિસ્તાન દા કુન્હા\0" // ta + "થાઇલેંડ\0" // th + "દક્ષિણ આફ્રિકા\0" // za + "દક્ષિણ કોરિયા\0" // kr + "દક્ષિણ જ્યોર્જિયા અને દક્ષિણ સેન્ડવિચ આઇલેન્ડ્સ\0" // gs + "દક્ષિણ સુદાન\0" // ss + "નાઇજર\0" // ne + "નાઇજેરિયા\0" // ng + "નામિબિયા\0" // na + "નિકારાગુઆ\0" // ni + "નીયુ\0" // nu + "નેધરલેન્ડ્સ\0" // nl + "નેપાળ\0" // np + "નૉર્વે\0" // no + "નોરફોક આઇલેન્ડ્સ\0" // nf + "નૌરુ\0" // nr + "ન્યુ સેલેડોનિયા\0" // nc + "ન્યુઝીલેન્ડ\0" // nz + "પનામા\0" // pa + "પલાઉ\0" // pw + "પશ્ચિમી સહારા\0" // eh + "પાકિસ્તાન\0" // pk + "પાપુઆ ન્યૂ ગિની\0" // pg + "પીટકૈર્ન આઇલેન્ડ્સ\0" // pn + "પૂર્વ તિમોર\0" // tl + "પેરાગ્વે\0" // py + "પેરુ\0" // pe + "પેલેસ્ટાઇન\0" // ps + "પેલેસ્ટિનિયન ટેરિટરી\0" // ps + "પોર્ટુગલ\0" // pt + "પોલેંડ\0" // pl + "પ્યુઅર્ટો રિકો\0" // pr + "ફિનલેન્ડ\0" // fi + "ફિલિપિન્સ\0" // ph + "ફીજી\0" // fj + "ફેરો આઇલેન્ડ્સ\0" // fo + "ફૉકલેન્ડ આઇલેન્ડ્સ\0" // fk + "ફૉકલેન્ડ આઇલેન્ડ્સ (આઇલાસ માલવિનાસ)\0" // fk + "ફ્રાંસ\0" // fr + "ફ્રેંચ ગયાના\0" // gf + "ફ્રેંચ પોલિનેશિયા\0" // pf + "ફ્રેંચ સધર્ન ટેરિટરીઝ\0" // tf + "બર્મુડા\0" // bm + "બલ્ગેરિયા\0" // bg + "બહામાસ\0" // bs + "બાંગ્લાદેશ\0" // bd + "બારબાડોસ\0" // bb + "બુરુંડી\0" // bi + "બુર્કિના ફાસો\0" // bf + "બેનિન\0" // bj + "બેલારુસ\0" // by + "બેલીઝ\0" // bz + "બેલ્જીયમ\0" // be + "બેહરીન\0" // bh + "બોત્સ્વાના\0" // bw + "બોલિવિયા\0" // bo + "બોસ્નિયા અને હર્ઝેગોવિના\0" // ba + "બૌવેત આઇલેન્ડ\0" // bv + "બ્રાઝિલ\0" // br + "બ્રિટિશ ઇન્ડિયન ઓશન ટેરિટરી\0" // io + "બ્રિટિશ વર્જિન આઇલેન્ડ્સ\0" // vg + "બ્રુનેઇ\0" // bn + "ભારત\0" // in + "ભૂટાન\0" // bt + "મંગોલિયા\0" // mn + "મકાઉ\0" // mo + "મકાઉ sar ચીન\0" // mo + "મલેશિયા\0" // my + "માઇક્રોનેશિયા\0" // fm + "માર્ટીનીક\0" // mq + "માર્શલ આઇલેન્ડ્સ\0" // mh + "માલદિવ્સ\0" // mv + "માલાવી\0" // mw + "માલી\0" // ml + "માલ્ટા\0" // mt + "મેક્સિકો\0" // mx + "મેડાગાસ્કર\0" // mg + "મેયોટ\0" // yt + "મેસેડોનિયા\0" // mk + "મેસેડોનિયા (fyrom)\0" // mk + "મૉન્ટેનેગ્રો\0" // me + "મોંટસેરાત\0" // ms + "મોઝામ્બિક\0" // mz + "મોનાકો\0" // mc + "મોરિશિયસ\0" // mu + "મોરોક્કો\0" // ma + "મોલડોવા\0" // md + "મૌરિટાનિયા\0" // mr + "મ્યાંમાર (બર્મા)\0" // mm + "યમન\0" // ye + "યુ.એસ.\0" // us + "યુ.એસ. આઉટલાઇનિંગ આઇલેન્ડ્સ\0" // um + "યુ.કે.\0" // gb + "યુએસ વર્જિન આઇલેન્ડ્સ\0" // vi + "યુક્રેન\0" // ua + "યુગાંડા\0" // ug + "યુનાઇટેડ આરબ અમીરાત\0" // ae + "યુનાઇટેડ કિંગડમ\0" // gb + "યુનાઇટેડ સ્ટેટ્સ\0" // us + "યુરોઝોન\0" // ez + "રવાંડા\0" // rw + "રશિયા\0" // ru + "રીયુનિયન\0" // re + "રોમાનિયા\0" // ro + "લક્ઝમબર્ગ\0" // lu + "લાઇબેરિયા\0" // lr + "લાઓસ\0" // la + "લાત્વિયા\0" // lv + "લિથુઆનિયા\0" // lt + "લિબિયા\0" // ly + "લેબનોન\0" // lb + "લેસોથો\0" // ls + "લૈચટેંસ્ટેઇન\0" // li + "વાનુઆતુ\0" // vu + "વિયેતનામ\0" // vn + "વેટિકન સિટી\0" // va + "વેનેઝુએલા\0" // ve + "વૉલિસ અને ફ્યુચુના\0" // wf + "શ્રીલંકા\0" // lk + "સમોઆ\0" // ws + "સર્બિયા\0" // rs + "સાઉદી અરેબિયા\0" // sa + "સાઓ ટૉમ અને પ્રિંસિપે\0" // st + "સાયપ્રસ\0" // cy + "સિંગાપુર\0" // sg + "સિંટ માર્ટેન\0" // sx + "સીએરા લેઓન\0" // sl + "સીરિયા\0" // sy + "સુદાન\0" // sd + "સુરીનામ\0" // sr + "સૅન મેરિનો\0" // sm + "સેંટ કિટ્સ અને નેવિસ\0" // kn + "સેંટ પીએરી અને મિક્યુલોન\0" // pm + "સેંટ બાર્થેલેમી\0" // bl + "સેંટ માર્ટિન\0" // mf + "સેંટ લુસિયા\0" // lc + "સેંટ વિન્સેંટ અને ગ્રેનેડાઇંસ\0" // vc + "સેંટ હેલેના\0" // sh + "સેનેગલ\0" // sn + "સેન્ટ્રલ આફ્રિકન રિપબ્લિક\0" // cf + "સેશેલ્સ\0" // sc + "સોમાલિયા\0" // so + "સોલોમન આઇલેન્ડ્સ\0" // sb + "સ્પેન\0" // es + "સ્યુટા અને મેલિલા\0" // ea + "સ્લોવેકિયા\0" // sk + "સ્લોવેનિયા\0" // si + "સ્વાઝિલેન્ડ\0" // sz + "સ્વાલબર્ડ અને જેન મેયન\0" // sj + "સ્વિટ્ઝર્લૅન્ડ\0" // ch + "સ્વીડન\0" // se + "હંગેરી\0" // hu + "હર્ડ અને મેકડોનાલ્ડ આઇલેન્ડ્સ\0" // hm + "હૈતિ\0" // ht + "હોંગ કોંગ\0" // hk + "હોંગકોંગ sar ચીન\0" // hk + "હોન્ડુરસ\0" // hn + "ଅଲାଣ୍ଡ ଦ୍ଵୀପପୁଞ୍ଜ\0" // ax + "ଅଷ୍ଟ୍ରିଆ\0" // at + "ଅଷ୍ଟ୍ରେଲିଆ\0" // au + "ଆଇଭରୀ କୋଷ୍ଟ\0" // ci + "ଆଇଲ୍‌ ଅଫ୍‌ ମ୍ୟାନ୍‌\0" // im + "ଆଇସଲ୍ୟାଣ୍ଡ\0" // is + "ଆଙ୍ଗୁଇଲ୍ଲା\0" // ai + "ଆଙ୍ଗୋଲା\0" // ao + "ଆଜେରବାଇଜାନ୍\0" // az + "ଆଣ୍ଟାର୍କାଟିକା\0" // aq + "ଆଣ୍ଟିଗୁଆ ଏବଂ ବାରବୁଦା\0" // ag + "ଆଣ୍ଡୋରା\0" // ad + "ଆଫଗାନିସ୍ତାନ୍\0" // af + "ଆମେରିକାନ୍ ସାମୋଆ\0" // as + "ଆରୁବା\0" // aw + "ଆର୍ଜେଣ୍ଟିନା\0" // ar + "ଆର୍ମେନିଆ\0" // am + "ଆଲଜେରିଆ\0" // dz + "ଆଲବାନିଆ\0" // al + "ଆସେନସିଅନ୍‌ ଦ୍ୱୀପ\0" // ac + "ଆୟରଲ୍ୟାଣ୍ଡ\0" // ie + "ଇକ୍ବାଟେରିଆଲ୍ ଗୁଇନିଆ\0" // gq + "ଇକ୍ୱାଡୋର୍\0" // ec + "ଇଜିପ୍ଟ\0" // eg + "ଇଟାଲୀ\0" // it + "ଇଣ୍ଡୋନେସିଆ\0" // id + "ଇଥିଓପିଆ\0" // et + "ଇରାକ୍\0" // iq + "ଇରାନ\0" // ir + "ଇରିଟ୍ରିୟା\0" // er + "ଇସ୍ରାଏଲ୍\0" // il + "ଉଗାଣ୍ଡା\0" // ug + "ଉଜବେକିସ୍ତାନ\0" // uz + "ଉତ୍ତର କୋରିଆ\0" // kp + "ଉତ୍ତର ମାରିଆନା ଦ୍ୱୀପପୁଞ୍ଜ\0" // mp + "ଉରୁଗୁଏ\0" // uy + "ଏଲ୍ ସାଲଭାଡୋର୍\0" // sv + "ଏସ୍ତୋନିଆ\0" // ee + "ଓମାନ୍\0" // om + "କଙ୍ଗୋ (drc)\0" // cd + "କଙ୍ଗୋ (ସାଧାରଣତନ୍ତ୍ର)\0" // cg + "କଙ୍ଗୋ-କିନସାସା\0" // cd + "କଙ୍ଗୋ-ବ୍ରାଜିଭିଲ୍ଲେ\0" // cg + "କତାର୍\0" // qa + "କାଜାକାସ୍ତାନ\0" // kz + "କାନାଡା\0" // ca + "କାମେରୁନ୍\0" // cm + "କାମ୍ବୋଡିଆ\0" // kh + "କାରବିୟନ୍‌ ନେଦରଲ୍ୟାଣ୍ଡ\0" // bq + "କିରିବାଟି\0" // ki + "କିର୍ଗିଜିସ୍ତାନ\0" // kg + "କୁଏତ୍\0" // kw + "କୁକ୍‌ ଦ୍ୱୀପପୁଞ୍ଜ\0" // ck + "କୁରାକାଓ\0" // cw + "କେନିୟା\0" // ke + "କେନେରୀ ଦ୍ୱୀପପୁଞ୍ଜ\0" // ic + "କେପ୍ ଭର୍ଦେ\0" // cv + "କେମ୍ୟାନ୍‌ ଦ୍ୱୀପପୁଞ୍ଜ\0" // ky + "କୋକୋସ୍ (କୀଲିଂ) ଦ୍ଵୀପପୁଞ୍ଜ\0" // cc + "କୋତ୍ ଡି ଭ୍ଵାର୍\0" // ci + "କୋମୋରସ୍‌\0" // km + "କୋଲମ୍ବିଆ\0" // co + "କୋଷ୍ଟା ରିକା\0" // cr + "କୋସୋଭୋ\0" // xk + "କ୍ରୋଏସିଆ\0" // hr + "କ୍ଲିପରଟନ୍‌ ଦ୍ୱୀପ\0" // cp + "କ୍ୱିବା\0" // cu + "ଖ୍ରୀଷ୍ଟମାସ ଦ୍ୱୀପ\0" // cx + "ଗାବୋନ୍\0" // ga + "ଗାମ୍ବିଆ\0" // gm + "ଗୁଆଡେଲୋପ୍‌\0" // gp + "ଗୁଆମ୍\0" // gu + "ଗୁଇନା\0" // gy + "ଗୁଇନିଆ\0" // gn + "ଗୁଇନିଆ-ବିସାଉ\0" // gw + "ଗୁଏତମାଲା\0" // gt + "ଗୁଏରନେସି\0" // gg + "ଗ୍ରୀନଲ୍ୟାଣ୍ଡ\0" // gl + "ଗ୍ରୀସ୍\0" // gr + "ଗ୍ରେନାଡା\0" // gd + "ଘାନା\0" // gh + "ଚାଦ୍\0" // td + "ଚିନ୍\0" // cn + "ଚିଲ୍ଲୀ\0" // cl + "ଚେକ୍‌ ସାଧାରଣତନ୍ତ୍ର\0" // cz + "ଚେଚିଆ\0" // cz + "ଜର୍ଜିଆ\0" // ge + "ଜର୍ମାନୀ\0" // de + "ଜର୍ସି\0" // je + "ଜାପାନ\0" // jp + "ଜାମାଇକା\0" // jm + "ଜାମ୍ବିଆ\0" // zm + "ଜିବୋଟି\0" // dj + "ଜିବ୍ରାଲ୍ଟର୍\0" // gi + "ଜିମ୍ବାୱେ\0" // zw + "ଜୋର୍ଡାନ୍\0" // jo + "ଟୋକେଲାଉ\0" // tk + "ଟୋଗୋ\0" // tg + "ଟୋଙ୍ଗା\0" // to + "ଟ୍ରାଇଷ୍ଟନ୍‌ ଦା କୁନ୍‌ଚା\0" // ta + "ଟ୍ୟୁନିସିଆ\0" // tn + "ଡିଏଗୋ ଗାର୍ସିଆ\0" // dg + "ଡେନମାର୍କ\0" // dk + "ଡୋମିନିକା\0" // dm + "ଡୋମିନିକାନ୍‌ ସାଧାରଣତନ୍ତ୍ର\0" // do + "ତାଇୱାନ\0" // tw + "ତାଜିକିସ୍ଥାନ୍\0" // tj + "ତାଞ୍ଜାନିଆ\0" // tz + "ତିମୋର୍-ଲେଷ୍ଟେ\0" // tl + "ତୁଭାଲୁ\0" // tv + "ତୁର୍କମେନିସ୍ତାନ\0" // tm + "ତୁର୍କସ୍‌ ଏବଂ କାଇକୋସ୍‌ ଦ୍ୱୀପପୁଞ୍ଜ\0" // tc + "ତୁର୍କୀ\0" // tr + "ତ୍ରିନିଦାଦ୍ ଏବଂ ଟୋବାଗୋ\0" // tt + "ଥାଇଲ୍ୟାଣ୍ଡ\0" // th + "ଦକ୍ଷିଣ ଆଫ୍ରିକା\0" // za + "ଦକ୍ଷିଣ କୋରିଆ\0" // kr + "ଦକ୍ଷିଣ ଜର୍ଜିଆ ଏବଂ ଦକ୍ଷିଣ ସାଣ୍ଡୱିଚ୍ ଦ୍ୱୀପପୁଞ୍ଜ\0" // gs + "ଦକ୍ଷିଣ ସୁଦାନ\0" // ss + "ନର୍ଫକ୍‌ ଦ୍ୱୀପ\0" // nf + "ନରୱେ\0" // no + "ନାଇଜର\0" // ne + "ନାଇଜେରିଆ\0" // ng + "ନାଉରୁ\0" // nr + "ନାମିବିଆ\0" // na + "ନିଉ\0" // nu + "ନିକାରାଗୁଆ\0" // ni + "ନୂତନ କାଲେଡୋନିଆ\0" // nc + "ନେଦରଲ୍ୟାଣ୍ଡ\0" // nl + "ନେପାଳ\0" // np + "ନ୍ୟୁଜିଲାଣ୍ଡ\0" // nz + "ପପୁଆ ନ୍ୟୁ ଗୁଏନିଆ\0" // pg + "ପର୍ତ୍ତୁଗାଲ୍\0" // pt + "ପଶ୍ଚିମ ସାହାରା\0" // eh + "ପାକିସ୍ତାନ\0" // pk + "ପାନାମା\0" // pa + "ପାରାଗୁଏ\0" // py + "ପାଲାଉ\0" // pw + "ପାଲେଷ୍ଟାଇନ୍‌\0" // ps + "ପାଲେଷ୍ଟେନିୟ ଭୂଭାଗ\0" // ps + "ପିଟକାଇରିନ୍‌ ଦ୍ୱୀପପୁଞ୍ଜ\0" // pn + "ପୁଏର୍ତ୍ତୋ ରିକୋ\0" // pr + "ପୂର୍ବ ତିମୋର୍‌\0" // tl + "ପେରୁ\0" // pe + "ପୋଲାଣ୍ଡ\0" // pl + "ଫକଲ୍ୟାଣ୍ଡ ଦ୍ୱୀପପୁଞ୍ଜ (ଇସଲାସ୍‌ ମାଲଭିନାସ୍‌)\0" // fk + "ଫକ୍‌ଲ୍ୟାଣ୍ଡ ଦ୍ଵୀପପୁଞ୍ଜ\0" // fk + "ଫରାସୀ ଦକ୍ଷିଣ କ୍ଷେତ୍ର\0" // tf + "ଫାରୋଇ ଦ୍ୱୀପପୁଞ୍ଜ\0" // fo + "ଫିଜି\0" // fj + "ଫିନଲ୍ୟାଣ୍ଡ\0" // fi + "ଫିଲିପାଇନସ୍\0" // ph + "ଫ୍ରାନ୍ସ\0" // fr + "ଫ୍ରେଞ୍ଚ ଗୁଇନା\0" // gf + "ଫ୍ରେଞ୍ଚ ପଲିନେସିଆ\0" // pf + "ବର୍ମୁଡା\0" // bm + "ବାଂଲାଦେଶ\0" // bd + "ବାରବାଡୋସ୍\0" // bb + "ବାହାମାସ୍\0" // bs + "ବାହାରିନ୍\0" // bh + "ବୁରୁଣ୍ଡି\0" // bi + "ବୁର୍କିନା ଫାସୋ\0" // bf + "ବୁଲଗେରିଆ\0" // bg + "ବେନିନ୍\0" // bj + "ବେଲଜିୟମ୍\0" // be + "ବେଲାରୁଷ୍\0" // by + "ବେଲିଜ୍\0" // bz + "ବୋଟସ୍ୱାନା\0" // bw + "ବୋଲଭିଆ\0" // bo + "ବୋସନିଆ ଏବଂ ହର୍ଜଗୋଭିନା\0" // ba + "ବୌଭେଟ୍‌ ଦ୍ୱୀପ\0" // bv + "ବ୍ରାଜିଲ୍\0" // br + "ବ୍ରିଟିଶ୍‌ ଭର୍ଜିନ୍ ଦ୍ୱୀପପୁଞ୍ଜ\0" // vg + "ବ୍ରିଟିଶ୍‌ ଭାରତ ମାହାସାଗର କ୍ଷେତ୍ର\0" // io + "ବ୍ରୁନେଇ\0" // bn + "ଭାଟିକାନ୍‌ ସିଟି\0" // va + "ଭାନୁଆତୁ\0" // vu + "ଭାରତ\0" // in + "ଭିଏତନାମ୍\0" // vn + "ଭୁଟାନ\0" // bt + "ଭେନେଜୁଏଲା\0" // ve + "ମଙ୍ଗୋଲିଆ\0" // mn + "ମଣ୍ଟେନିଗ୍ରୋ\0" // me + "ମଣ୍ଟେସେରାଟ୍\0" // ms + "ମଧ୍ୟ ଆଫ୍ରିକୀୟ ସାଧାରଣତନ୍ତ୍ର\0" // cf + "ମରିସସ\0" // mu + "ମାଇକ୍ରୋନେସିଆ\0" // fm + "ମାକାଉ\0" // mo + "ମାକାଉ ଏସଏଆର୍‌ ଚାଇନା\0" // mo + "ମାଡାଗାସ୍କର୍\0" // mg + "ମାର୍ଟିନିକ୍ୟୁ\0" // mq + "ମାର୍ଶାଲ୍‌ ଦ୍ୱୀପପୁଞ୍ଜ\0" // mh + "ମାଲଡୋଭା\0" // md + "ମାଲଦିଭସ୍‌\0" // mv + "ମାଲି\0" // ml + "ମାଲେସିଆ\0" // my + "ମାଲ୍ଟା\0" // mt + "ମାଲୱି\0" // mw + "ମାସେଡୋନିଆ\0" // mk + "ମାସେଡୋନିଆ (ଫାଇରମ୍‌)\0" // mk + "ମାୟୋଟେ\0" // yt + "ମିଆଁମାର\0" // mm + "ମେକ୍ସିକୋ\0" // mx + "ମୋଜାମ୍ବିକ୍‌\0" // mz + "ମୋନାକୋ\0" // mc + "ମୋରୋକ୍କୋ\0" // ma + "ମୌରିଟାନିଆ\0" // mr + "ଯୁକ୍ତ ରାଷ୍ଟ୍ର\0" // us + "ଯୁକ୍ତରାଜ୍ୟ\0" // gb + "ଯୁକ୍ତରାଷ୍ଟ୍ର\0" // us + "ଯୁକ୍ତରାଷ୍ଟ୍ର ଆଉଟ୍‌ଲାଇଙ୍ଗ ଦ୍ଵୀପପୁଞ୍ଜ\0" // um + "ଯୁକ୍ତରାଷ୍ଟ୍ର ଭିର୍ଜିନ୍ ଦ୍ଵୀପପୁଞ୍ଜ\0" // vi + "ରାୱାଣ୍ଡା\0" // rw + "ରିୟୁନିଅନ୍\0" // re + "ରୁଷିଆ\0" // ru + "ରୋମାନିଆ\0" // ro + "ଲକ୍ସେମବର୍ଗ\0" // lu + "ଲାଇବେରିଆ\0" // lr + "ଲାଓସ୍\0" // la + "ଲାଟଭିଆ\0" // lv + "ଲିଚେଟନଷ୍ଟେଇନ୍\0" // li + "ଲିଥୁଆନିଆ\0" // lt + "ଲିବ୍ୟା\0" // ly + "ଲେବାନନ୍\0" // lb + "ଲେସୋଥୋ\0" // ls + "ଶ୍ରୀଲଙ୍କା\0" // lk + "ସଂଯୁକ୍ତ ଆରବ ଏମିରେଟସ୍\0" // ae + "ସର୍ବିଆ\0" // rs + "ସାଇପ୍ରସ୍\0" // cy + "ସାଉଦି ଆରବିଆ\0" // sa + "ସାଓ ଟୋମେ ଏବଂ ପ୍ରିନସିପି\0" // st + "ସାନ୍ ମାରିନୋ\0" // sm + "ସାମୋଆ\0" // ws + "ସାଲବାର୍ଡ ଏବଂ ଜାନ୍‌ ମାୟେନ୍‌\0" // sj + "ସିଉଟା ଏବଂ ମେଲିଲା\0" // ea + "ସିଏରା ଲିଓନ\0" // sl + "ସିଙ୍ଗାପୁର୍\0" // sg + "ସିଣ୍ଟ ମାର୍ଟୀନ୍‌\0" // sx + "ସିରିଆ\0" // sy + "ସୀମାନ୍ତବର୍ତ୍ତୀ ଓସିନିଆ\0" // qo + "ସୁଦାନ\0" // sd + "ସୁରିନାମ\0" // sr + "ସେଚେଲସ୍\0" // sc + "ସେଣ୍ଟ କିଟସ୍‌ ଏବଂ ନେଭିସ୍‌\0" // kn + "ସେଣ୍ଟ ପିଏରେ ଏବଂ ମିକ୍ୱେଲନ୍‌\0" // pm + "ସେଣ୍ଟ ବାର୍ଥେଲେମି\0" // bl + "ସେଣ୍ଟ ଭିନସେଣ୍ଟ ଏବଂ ଦି ଗ୍ରେନାଡିସ୍\0" // vc + "ସେଣ୍ଟ ମାର୍ଟିନ୍\0" // mf + "ସେଣ୍ଟ ଲୁସିଆ\0" // lc + "ସେଣ୍ଟ ହେଲେନା\0" // sh + "ସେନେଗାଲ୍\0" // sn + "ସୋମାଲିଆ\0" // so + "ସୋଲୋମନ୍‌ ଦ୍ୱୀପପୁଞ୍ଜ\0" // sb + "ସ୍ପେନ୍\0" // es + "ସ୍ଲୋଭାକିଆ\0" // sk + "ସ୍ଲୋଭେନିଆ\0" // si + "ସ୍ୱାଜିଲ୍ୟାଣ୍ଡ\0" // sz + "ସ୍ୱିଜରଲ୍ୟାଣ୍ଡ\0" // ch + "ସ୍ୱେଡେନ୍\0" // se + "ହଂ କଂ\0" // hk + "ହଂ କଂ ଏସଏଆର୍‌ ଚାଇନା\0" // hk + "ହଙ୍ଗେରୀ\0" // hu + "ହାଇତି\0" // ht + "ହାର୍ଡ୍‌ ଏବଂ ମ୍ୟାକଡୋନାଲ୍ଡ ଦ୍ୱୀପପୁଞ୍ଜ\0" // hm + "ହୋଣ୍ଡୁରାସ୍‌\0" // hn + "ୟୁକେ\0" // gb + "ୟୁକ୍ରେନ୍‌\0" // ua + "ୟୁରୋକ୍ଷେତ୍ର\0" // ez + "ୟେମେନ୍\0" // ye + "ୱାଲିସ୍ ଏବଂ ଫୁତୁନା\0" // wf + "ஃபாக்லாந்து தீவுகள்\0" // fk + "ஃபாக்லாந்து தீவுகள் (இஸ்லாஸ் மால்வினஸ்)\0" // fk + "ஃபாரோ தீவுகள்\0" // fo + "ஃபிஜி\0" // fj + "அங்குய்லா\0" // ai + "அங்கோலா\0" // ao + "அசர்பைஜான்\0" // az + "அண்டார்டிகா\0" // aq + "அன்டோரா\0" // ad + "அமெரிக்க சமோவா\0" // as + "அமெரிக்கா\0" // us + "அயர்லாந்து\0" // ie + "அரூபா\0" // aw + "அர்ஜென்டினா\0" // ar + "அர்மேனியா\0" // am + "அல்ஜீரியா\0" // dz + "அல்பேனியா\0" // al + "அஷன்ஷியன் தீவு\0" // ac + "ஆண்டிகுவா மற்றும் பார்புடா\0" // ag + "ஆப்கானிஸ்தான்\0" // af + "ஆலந்து தீவுகள்\0" // ax + "ஆஸ்திரியா\0" // at + "ஆஸ்திரேலியா\0" // au + "இத்தாலி\0" // it + "இந்தியா\0" // in + "இந்தோனேசியா\0" // id + "இலங்கை\0" // lk + "இஸ்ரேல்\0" // il + "ஈக்வடார்\0" // ec + "ஈக்வடோரியல் கினியா\0" // gq + "ஈராக்\0" // iq + "ஈரான்\0" // ir + "உகாண்டா\0" // ug + "உக்ரைன்\0" // ua + "உருகுவே\0" // uy + "உஸ்பெகிஸ்தான்\0" // uz + "எகிப்து\0" // eg + "எத்தியோப்பியா\0" // et + "எரிட்ரியா\0" // er + "எல் சால்வடார்\0" // sv + "எஸ்டோனியா\0" // ee + "ஏமன்\0" // ye + "ஐக்கிய அரபு எமிரேட்ஸ்\0" // ae + "ஐல் ஆஃப் மேன்\0" // im + "ஐவரி கோஸ்ட்\0" // ci + "ஐஸ்லாந்து\0" // is + "ஓமன்\0" // om + "கத்தார்\0" // qa + "கனடா\0" // ca + "கம்போடியா\0" // kh + "கயானா\0" // gy + "கரீபியன் நெதர்லாந்து\0" // bq + "கவுதமாலா\0" // gt + "கஸகஸ்தான்\0" // kz + "காங்கோ (குடியரசு)\0" // cg + "காங்கோ (டிஆர்சி)\0" // cd + "காங்கோ - கின்ஷாசா\0" // cd + "காங்கோ - ப்ராஸாவில்லே\0" // cg + "கானா\0" // gh + "காம்பியா\0" // gm + "கினியா\0" // gn + "கினியா-பிஸ்ஸாவ்\0" // gw + "கியூபா\0" // cu + "கிரனெடா\0" // gd + "கிரிபாட்டி\0" // ki + "கிரீன்லாந்து\0" // gl + "கிரீஸ்\0" // gr + "கிர்கிஸ்தான்\0" // kg + "கிறிஸ்துமஸ் தீவு\0" // cx + "கிலிப்பர்டன் தீவு\0" // cp + "கிழக்கு தைமூர்\0" // tl + "குக் தீவுகள்\0" // ck + "குராகவ்\0" // cw + "குரேஷியா\0" // hr + "குவாம்\0" // gu + "குவைத்\0" // kw + "கென்யா\0" // ke + "கெய்மென் தீவுகள்\0" // ky + "கெர்ன்சி\0" // gg + "கேனரி தீவுகள்\0" // ic + "கேபான்\0" // ga + "கேப் வெர்டே\0" // cv + "கேமரூன்\0" // cm + "கொசோவோ\0" // xk + "கொலம்பியா\0" // co + "கோகோஸ் (கீலிங்) தீவுகள்\0" // cc + "கோட் தி’வாயர்\0" // ci + "கோமரோஸ்\0" // km + "கோஸ்டாரிகா\0" // cr + "க்வாதேலோப்\0" // gp + "சமோவா\0" // ws + "சவூதி அரேபியா\0" // sa + "சாட்\0" // td + "சான் மரினோ\0" // sm + "சாலமன் தீவுகள்\0" // sb + "சாவ் தோம் & ப்ரின்சிபி\0" // st + "சிங்கப்பூர்\0" // sg + "சின்ட் மார்டென்\0" // sx + "சியாரா லியோன்\0" // sl + "சியூடா & மெலில்லா\0" // ea + "சிரியா\0" // sy + "சிலி\0" // cl + "சீனா\0" // cn + "சீஷெல்ஸ்\0" // sc + "சுரினாம்\0" // sr + "சூடான்\0" // sd + "செக் குடியரசு\0" // cz + "செசியா\0" // cz + "செனெகல்\0" // sn + "செயின்ட் கிட்ஸ் & நெவிஸ்\0" // kn + "செயின்ட் பார்தேலெமி\0" // bl + "செயின்ட் பியர் & மிக்வேலான்\0" // pm + "செயின்ட் மார்ட்டீன்\0" // mf + "செயின்ட் லூசியா\0" // lc + "செயின்ட் வின்சென்ட் & கிரெனடைன்ஸ்\0" // vc + "செயின்ட் ஹெலெனா\0" // sh + "செர்பியா\0" // rs + "சைப்ரஸ்\0" // cy + "சோமாலியா\0" // so + "ஜப்பான்\0" // jp + "ஜமைகா\0" // jm + "ஜாம்பியா\0" // zm + "ஜார்ஜியா\0" // ge + "ஜிபௌட்டி\0" // dj + "ஜிப்ரால்டர்\0" // gi + "ஜிம்பாப்வே\0" // zw + "ஜெர்சி\0" // je + "ஜெர்மனி\0" // de + "ஜோர்டான்\0" // jo + "டர்க்ஸ் & கைகோஸ் தீவுகள்\0" // tc + "டியகோ கார்ஷியா\0" // dg + "டிரினிடாட் & டொபாகோ\0" // tt + "டிரிஸ்டன் டா குன்ஹா\0" // ta + "டுனிசியா\0" // tn + "டென்மார்க்\0" // dk + "டொமினிகன் குடியரசு\0" // do + "டொமினிகா\0" // dm + "டோகேலோ\0" // tk + "டோகோ\0" // tg + "டோங்கா\0" // to + "தஜிகிஸ்தான்\0" // tj + "தான்சானியா\0" // tz + "தாய்லாந்து\0" // th + "துருக்கி\0" // tr + "துர்க்மெனிஸ்தான்\0" // tm + "துவாலூ\0" // tv + "தென் ஆப்பிரிக்கா\0" // za + "தென் கொரியா\0" // kr + "தெற்கு சூடான்\0" // ss + "தெற்கு ஜார்ஜியா மற்றும் தெற்கு சாண்ட்விச் தீவுகள்\0" // gs + "தைமூர்-லெஸ்தே\0" // tl + "தைவான்\0" // tw + "நமீபியா\0" // na + "நார்ஃபோக் தீவுகள்\0" // nf + "நார்வே\0" // no + "நிகரகுவா\0" // ni + "நியூ\0" // nu + "நியூ கேலிடோனியா\0" // nc + "நியூசிலாந்து\0" // nz + "நெதர்லாந்து\0" // nl + "நேபாளம்\0" // np + "நைஜர்\0" // ne + "நைஜீரியா\0" // ng + "நௌரு\0" // nr + "பங்களாதேஷ்\0" // bd + "பனாமா\0" // pa + "பப்புவா நியூ கினியா\0" // pg + "பராகுவே\0" // py + "பல்கேரியா\0" // bg + "பஹாமாஸ்\0" // bs + "பஹ்ரைன்\0" // bh + "பாகிஸ்தான்\0" // pk + "பார்படோஸ்\0" // bb + "பாலஸ்தீனம்\0" // ps + "பாலஸ்தீனிய பிரதேசங்கள்\0" // ps + "பாலோ\0" // pw + "பிட்கெய்ர்ன் தீவுகள்\0" // pn + "பின்லாந்து\0" // fi + "பியூர்டோ ரிகோ\0" // pr + "பிரான்ஸ்\0" // fr + "பிரிட்டிஷ் இந்தியப் பெருங்கடல் பிரதேசம்\0" // io + "பிரிட்டீஷ் கன்னித் தீவுகள்\0" // vg + "பிரெஞ்சு கயானா\0" // gf + "பிரெஞ்சு தெற்கு பிரதேசங்கள்\0" // tf + "பிரெஞ்சு பாலினேஷியா\0" // pf + "பிரேசில்\0" // br + "பிலிப்பைன்ஸ்\0" // ph + "புருண்டி\0" // bi + "புருனே\0" // bn + "புர்கினா ஃபாஸோ\0" // bf + "பூடான்\0" // bt + "பெனின்\0" // bj + "பெரு\0" // pe + "பெர்முடா\0" // bm + "பெலாரூஸ்\0" // by + "பெலிஸ்\0" // bz + "பெல்ஜியம்\0" // be + "பொலிவியா\0" // bo + "பொவேட் தீவுகள்\0" // bv + "போட்ஸ்வானா\0" // bw + "போர்ச்சுக்கல்\0" // pt + "போலந்து\0" // pl + "போஸ்னியா & ஹெர்ஸகோவினா\0" // ba + "மகாவ்\0" // mo + "மகாவ் எஸ்ஏஆர் சீனா\0" // mo + "மங்கோலியா\0" // mn + "மடகாஸ்கர்\0" // mg + "மத்திய ஆப்ரிக்கக் குடியரசு\0" // cf + "மயோட்\0" // yt + "மலாவி\0" // mw + "மலேசியா\0" // my + "மாசிடோனியா\0" // mk + "மாசிடோனியா (ஃபைரோம்)\0" // mk + "மாண்ட்செராட்\0" // ms + "மான்டேனெக்ரோ\0" // me + "மார்டினிக்\0" // mq + "மார்ஷல் தீவுகள்\0" // mh + "மாலத்தீவு\0" // mv + "மாலி\0" // ml + "மால்டா\0" // mt + "மால்டோவா\0" // md + "மியான்மார் (பர்மா)\0" // mm + "மெக்சிகோ\0" // mx + "மேற்கு சஹாரா\0" // eh + "மைக்ரோனேஷியா\0" // fm + "மொசாம்பிக்\0" // mz + "மொனாக்கோ\0" // mc + "மொராக்கோ\0" // ma + "மொரிசியஸ்\0" // mu + "மௌரிடானியா\0" // mr + "யுனைடெட் கிங்டம்\0" // gb + "யூ.எஸ். கன்னித் தீவுகள்\0" // vi + "யூ.எஸ். வெளிப்புறத் தீவுகள்\0" // um + "யூஎஸ்\0" // us + "யூகே\0" // gb + "யூரோஜோன்\0" // ez + "ரஷ்யா\0" // ru + "ரீயூனியன்\0" // re + "ருமேனியா\0" // ro + "ருவாண்டா\0" // rw + "லக்ஸ்சம்பர்க்\0" // lu + "லாட்வியா\0" // lv + "லாவோஸ்\0" // la + "லிச்செண்ஸ்டெய்ன்\0" // li + "லிதுவேனியா\0" // lt + "லிபியா\0" // ly + "லெசோதோ\0" // ls + "லெபனான்\0" // lb + "லைபீரியா\0" // lr + "வட கொரியா\0" // kp + "வடக்கு மரியானா தீவுகள்\0" // mp + "வனுவாட்டு\0" // vu + "வாடிகன் நகரம்\0" // va + "வாலிஸ் மற்றும் ஃபுடுனா\0" // wf + "வியட்நாம்\0" // vn + "வெனிசுலா\0" // ve + "வெளிப்புற ஓஷியானியா\0" // qo + "ஸ்பெயின்\0" // es + "ஸ்லோவாகியா\0" // sk + "ஸ்லோவேனியா\0" // si + "ஸ்வல்பார்டு & ஜான் மேயன்\0" // sj + "ஸ்வாஸிலாந்து\0" // sz + "ஸ்விட்சர்லாந்து\0" // ch + "ஸ்வீடன்\0" // se + "ஹங்கேரி\0" // hu + "ஹாங்காங்\0" // hk + "ஹாங்காங் எஸ்ஏஆர் சீனா\0" // hk + "ஹேர்ட் மற்றும் மெக்டொனால்டு தீவுகள்\0" // hm + "ஹைட்டி\0" // ht + "ஹோண்டூராஸ்\0" // hn + "అంగోలా\0" // ao + "అంటార్కిటికా\0" // aq + "అజర్బైజాన్\0" // az + "అమెరికన్ సమోవా\0" // as + "అరుబా\0" // aw + "అర్జెంటీనా\0" // ar + "అల్జీరియా\0" // dz + "అల్బేనియా\0" // al + "అసెన్షన్ దీవి\0" // ac + "ఆంగ్విల్లా\0" // ai + "ఆంటిగ్వా మరియు బార్బుడా\0" // ag + "ఆండోరా\0" // ad + "ఆఫ్ఘనిస్తాన్\0" // af + "ఆర్మేనియా\0" // am + "ఆలాండ్ దీవులు\0" // ax + "ఆస్ట్రియా\0" // at + "ఆస్ట్రేలియా\0" // au + "ఇండోనేషియా\0" // id + "ఇజ్రాయిల్\0" // il + "ఇటలీ\0" // it + "ఇథియోపియా\0" // et + "ఇరాక్\0" // iq + "ఇరాన్\0" // ir + "ఈక్వటోరియల్ గినియా\0" // gq + "ఈక్వడార్\0" // ec + "ఈజిప్ట్\0" // eg + "ఉక్రెయిన్\0" // ua + "ఉగాండా\0" // ug + "ఉజ్బెకిస్తాన్\0" // uz + "ఉత్తర కొరియా\0" // kp + "ఉత్తర మరియానా దీవులు\0" // mp + "ఉరుగ్వే\0" // uy + "ఎరిట్రియా\0" // er + "ఎల్ సాల్వడోర్\0" // sv + "ఎస్టోనియా\0" // ee + "ఐర్లాండ్\0" // ie + "ఐల్ ఆఫ్ మాన్\0" // im + "ఐవరీ కోస్ట్\0" // ci + "ఐస్లాండ్\0" // is + "ఒమన్\0" // om + "ఒషీనియా బయటున్నవి\0" // qo + "కంబోడియా\0" // kh + "కజకిస్తాన్\0" // kz + "కరీబియన్ నెదర్లాండ్స్\0" // bq + "కాంగో (drc)\0" // cd + "కాంగో (రిపబ్లిక్)\0" // cg + "కాంగో- కిన్షాసా\0" // cd + "కాంగో- బ్రాజావిల్లి\0" // cg + "కామెరూన్\0" // cm + "కిరిబాటి\0" // ki + "కిర్గిజిస్తాన్\0" // kg + "కుక్ దీవులు\0" // ck + "కురాకవో\0" // cw + "కువైట్\0" // kw + "కెనడా\0" // ca + "కెన్యా\0" // ke + "కేనరీ దీవులు\0" // ic + "కేప్ వెర్డె\0" // cv + "కేమాన్ దీవులు\0" // ky + "కొమొరోస్\0" // km + "కొలంబియా\0" // co + "కొసోవో\0" // xk + "కోకోస్ (కీలింగ్) దీవులు\0" // cc + "కోట్ డి ఐవోర్\0" // ci + "కోస్టా రికా\0" // cr + "క్యూబా\0" // cu + "క్రిస్మస్ దీవి\0" // cx + "క్రొత్త కాలెడోనియా\0" // nc + "క్రోయేషియా\0" // hr + "క్లిప్పర్టన్ దీవి\0" // cp + "ఖతార్\0" // qa + "గయానా\0" // gy + "గర్న్‌సీ\0" // gg + "గాంబియా\0" // gm + "గాబన్\0" // ga + "గినియా\0" // gn + "గినియా-బిస్సావ్\0" // gw + "గ్రీన్‌ల్యాండ్\0" // gl + "గ్రీస్\0" // gr + "గ్రెనడా\0" // gd + "గ్వాటిమాలా\0" // gt + "గ్వాడెలోప్\0" // gp + "గ్వామ్\0" // gu + "ఘనా\0" // gh + "చాద్\0" // td + "చిలీ\0" // cl + "చెకియా\0" // cz + "చెక్ రిపబ్లిక్\0" // cz + "చైనా\0" // cn + "జపాన్\0" // jp + "జమైకా\0" // jm + "జర్మనీ\0" // de + "జాంబియా\0" // zm + "జార్జియా\0" // ge + "జింబాబ్వే\0" // zw + "జిబౌటి\0" // dj + "జిబ్రాల్టర్\0" // gi + "జెర్సీ\0" // je + "జోర్డాన్\0" // jo + "టర్కీ\0" // tr + "టర్క్స్ & కైకోస్ దీవులు\0" // tc + "టర్క్‌మెనిస్తాన్\0" // tm + "టాంగా\0" // to + "టాంజానియా\0" // tz + "టిమోర్-లెస్టె\0" // tl + "టువాలు\0" // tv + "టోకెలావ్\0" // tk + "టోగో\0" // tg + "ట్యునీషియా\0" // tn + "ట్రినిడాడ్ మరియు టొబాగో\0" // tt + "ట్రిస్టన్ డ కన్హా\0" // ta + "డియాగో గార్సియా\0" // dg + "డెన్మార్క్\0" // dk + "డొమినికన్ రిపబ్లిక్\0" // do + "డొమినికా\0" // dm + "తజికిస్తాన్\0" // tj + "తూర్పు టిమోర్\0" // tl + "తైవాన్\0" // tw + "థాయిలాండ్\0" // th + "దక్షిణ ఆఫ్రికా\0" // za + "దక్షిణ కొరియా\0" // kr + "దక్షిణ జార్జియా & దక్షిణ శాండ్విచ్ దీవులు\0" // gs + "దక్షిణ సూడాన్\0" // ss + "నమీబియా\0" // na + "నార్ఫోక్ దీవి\0" // nf + "నార్వే\0" // no + "నికరాగువా\0" // ni + "నియూ\0" // nu + "నెదర్లాండ్స్\0" // nl + "నేపాల్\0" // np + "నైజర్\0" // ne + "నైజీరియా\0" // ng + "నౌరు\0" // nr + "న్యూజిలాండ్\0" // nz + "పడమటి సహారా\0" // eh + "పనామా\0" // pa + "పరాగ్వే\0" // py + "పాకిస్తాన్\0" // pk + "పాపువా న్యూ గినియా\0" // pg + "పాలస్తీనా\0" // ps + "పాలస్తీనియన్ ప్రాంతాలు\0" // ps + "పాలావ్\0" // pw + "పిట్‌కెయిర్న్ దీవులు\0" // pn + "పెరూ\0" // pe + "పోర్చుగల్\0" // pt + "పోలాండ్\0" // pl + "ప్యూర్టో రికో\0" // pr + "ఫాక్‌ల్యాండ్ దీవులు\0" // fk + "ఫాక్‌ల్యాండ్ దీవులు (ఇస్లాస్ మాల్వినాస్)\0" // fk + "ఫారో దీవులు\0" // fo + "ఫిజీ\0" // fj + "ఫిన్లాండ్\0" // fi + "ఫిలిప్పైన్స్\0" // ph + "ఫ్రాన్స్‌\0" // fr + "ఫ్రెంచ్ గియానా\0" // gf + "ఫ్రెంచ్ దక్షిణ ప్రాంతాలు\0" // tf + "ఫ్రెంచ్ పోలినీషియా\0" // pf + "బంగ్లాదేశ్\0" // bd + "బల్గేరియా\0" // bg + "బహామాస్\0" // bs + "బహ్రెయిన్\0" // bh + "బార్బడోస్\0" // bb + "బురుండి\0" // bi + "బుర్కినా ఫాసో\0" // bf + "బెనిన్\0" // bj + "బెర్ముడా\0" // bm + "బెలారస్\0" // by + "బెలిజ్\0" // bz + "బెల్జియం\0" // be + "బొలీవియా\0" // bo + "బొవెట్ దీవి\0" // bv + "బోట్స్వానా\0" // bw + "బోస్నియా మరియు హెర్జెగొవీనా\0" // ba + "బ్రిటిష్ వర్జిన్ దీవులు\0" // vg + "బ్రిటీష్ హిందూ మహాసముద్ర ప్రాంతం\0" // io + "బ్రూనే\0" // bn + "బ్రెజిల్\0" // br + "భారతదేశం\0" // in + "భూటాన్\0" // bt + "మంగోలియా\0" // mn + "మకావ్\0" // mo + "మకావ్ ఎస్ఏఆర్ చైనా\0" // mo + "మడగాస్కర్\0" // mg + "మయన్మార్ (బర్మా)\0" // mm + "మలేషియా\0" // my + "మాంట్సెరాట్\0" // ms + "మాయొట్\0" // yt + "మారిషస్\0" // mu + "మార్టినీక్\0" // mq + "మార్షల్ దీవులు\0" // mh + "మాలావి\0" // mw + "మాలి\0" // ml + "మాల్టా\0" // mt + "మాల్దీవులు\0" // mv + "మెక్సికో\0" // mx + "మేసిడోనియా\0" // mk + "మేసిడోనియా (fyrom)\0" // mk + "మైక్రోనేషియా\0" // fm + "మొజాంబిక్\0" // mz + "మొనాకో\0" // mc + "మొరాకో\0" // ma + "మోంటెనీగ్రో\0" // me + "మోల్డోవా\0" // md + "మౌరిటేనియా\0" // mr + "యు.ఎస్.\0" // us + "యు.ఎస్. వర్జిన్ దీవులు\0" // vi + "యు.కె.\0" // gb + "యునైటెడ్ అరబ్ ఎమిరేట్స్\0" // ae + "యునైటెడ్ కింగ్‌డమ్\0" // gb + "యునైటెడ్ స్టేట్స్\0" // us + "యూరోజోన్\0" // ez + "యెమెన్\0" // ye + "రష్యా\0" // ru + "రియూనియన్\0" // re + "రువాండా\0" // rw + "రోమానియా\0" // ro + "లక్సంబర్గ్\0" // lu + "లాత్వియా\0" // lv + "లావోస్\0" // la + "లిక్టెన్‌స్టెయిన్\0" // li + "లిథువేనియా\0" // lt + "లిబియా\0" // ly + "లెబనాన్\0" // lb + "లెసోతో\0" // ls + "లైబీరియా\0" // lr + "వనాటు\0" // vu + "వాటికన్ నగరం\0" // va + "వాలిస్ & ఫ్యుత్యునా\0" // wf + "వియత్నాం\0" // vn + "వెనిజులా\0" // ve + "శాన్ మారినో\0" // sm + "శ్రీలంక\0" // lk + "సంయుక్త రాజ్య అమెరికా బయట ఉన్న దీవులు\0" // um + "సమోవా\0" // ws + "సావోటోమ్ & ప్రిన్సిపే\0" // st + "సింగపూర్\0" // sg + "సింట్ మార్టెన్\0" // sx + "సియెర్రా లియాన్\0" // sl + "సిరియా\0" // sy + "సీషెల్స్\0" // sc + "సూడాన్\0" // sd + "సూరినామ్\0" // sr + "సెంట్రల్ ఆఫ్రికన్ రిపబ్లిక్\0" // cf + "సెనెగల్\0" // sn + "సెయింట్ కిట్స్ మరియు నెవిస్\0" // kn + "సెయింట్ పియెర్ మరియు మికెలాన్\0" // pm + "సెయింట్ బర్తేలెమీ\0" // bl + "సెయింట్ మార్టిన్\0" // mf + "సెయింట్ లూసియా\0" // lc + "సెయింట్ విన్సెంట్ & గ్రెనడీన్స్\0" // vc + "సెయింట్ హెలెనా\0" // sh + "సెర్బియా\0" // rs + "సైప్రస్\0" // cy + "సోమాలియా\0" // so + "సోలమన్ దీవులు\0" // sb + "సౌదీ అరేబియా\0" // sa + "స్పెయిన్\0" // es + "స్యూటా & మెలిల్లా\0" // ea + "స్లోవేకియా\0" // sk + "స్లోవేనియా\0" // si + "స్వాజిల్యాండ్\0" // sz + "స్వాల్‌బార్డ్ & జాన్ మాయెన్\0" // sj + "స్విట్జర్లాండ్\0" // ch + "స్వీడన్\0" // se + "హంగేరీ\0" // hu + "హాంకాంగ్\0" // hk + "హాంకాంగ్ ఎస్ఏఆర్ చైనా\0" // hk + "హెర్డ్ & మెక్ డొనాల్డ్ దీవులు\0" // hm + "హైటి\0" // ht + "హోండురాస్\0" // hn + "ಅಂಗೋಲಾ\0" // ao + "ಅಂಟಾರ್ಟಿಕಾ\0" // aq + "ಅಂಡೋರಾ\0" // ad + "ಅಜರ್ಬೈಜಾನ್\0" // az + "ಅಫಘಾನಿಸ್ಥಾನ\0" // af + "ಅಮೇರಿಕನ್ ಸಮೋವಾ\0" // as + "ಅಮೇರಿಕಾ ಸಂಯುಕ್ತ ಸಂಸ್ಥಾನ\0" // us + "ಅರುಬಾ\0" // aw + "ಅರ್ಜೆಂಟಿನಾ\0" // ar + "ಅಲ್ಜೀರಿಯ\0" // dz + "ಅಲ್ಬೇನಿಯಾ\0" // al + "ಅಸೆನ್ಶನ್ ದ್ವೀಪ\0" // ac + "ಆಂಗ್ವಿಲ್ಲಾ\0" // ai + "ಆಂಟಿಗುವಾ ಮತ್ತು ಬರ್ಬುಡಾ\0" // ag + "ಆರ್ಮೇನಿಯ\0" // am + "ಆಲ್ಯಾಂಡ್ ದ್ವೀಪಗಳು\0" // ax + "ಆಸ್ಟ್ರಿಯಾ\0" // at + "ಆಸ್ಟ್ರೇಲಿಯಾ\0" // au + "ಇಂಡೋನೇಶಿಯಾ\0" // id + "ಇಟಲಿ\0" // it + "ಇಥಿಯೋಪಿಯಾ\0" // et + "ಇರಾಕ್\0" // iq + "ಇರಾನ್\0" // ir + "ಇಸ್ರೇಲ್\0" // il + "ಈಕ್ವೆಟೋರಿಯಲ್ ಗಿನಿ\0" // gq + "ಈಕ್ವೆಡಾರ್\0" // ec + "ಈಜಿಪ್ಟ್\0" // eg + "ಉಕ್ರೈನ್\0" // ua + "ಉಗಾಂಡಾ\0" // ug + "ಉಜ್ಬೇಕಿಸ್ಥಾನ್\0" // uz + "ಉತ್ತರ ಕೊರಿಯಾ\0" // kp + "ಉತ್ತರ ಮರಿಯಾನಾ ದ್ವೀಪಗಳು\0" // mp + "ಉರುಗ್ವೆ\0" // uy + "ಎರಿಟ್ರಿಯಾ\0" // er + "ಎಲ್ ಸಾಲ್ವೇಡಾರ್\0" // sv + "ಎಸ್ಟೋನಿಯಾ\0" // ee + "ಐರ್ಲೆಂಡ್\0" // ie + "ಐಲ್ ಆಫ್ ಮ್ಯಾನ್\0" // im + "ಐವರಿ ಕೋಸ್ಟ್\0" // ci + "ಐಸ್‌ಲ್ಯಾಂಡ್\0" // is + "ಓಮನ್\0" // om + "ಔಟ್ ಲೈಯಿಂಗ್ ಓಷಿಯಾನಿಯಾ\0" // qo + "ಕಝಾಕಿಸ್ಥಾನ್\0" // kz + "ಕಾಂಗೋ (drc)\0" // cd + "ಕಾಂಗೋ (ಗಣರಾಜ್ಯ)\0" // cg + "ಕಾಂಗೋ - ಕಿನ್ಶಾಸಾ\0" // cd + "ಕಾಂಗೋ - ಬ್ರಾಜಾವಿಲ್ಲೇ\0" // cg + "ಕಾಂಬೋಡಿಯಾ\0" // kh + "ಕಿರಿಬಾಟಿ\0" // ki + "ಕಿರ್ಗಿಸ್ಥಾನ್\0" // kg + "ಕೀನ್ಯಾ\0" // ke + "ಕುಕ್ ದ್ವೀಪಗಳು\0" // ck + "ಕುರಾಕಾವ್\0" // cw + "ಕುವೈತ್\0" // kw + "ಕೆನಡಾ\0" // ca + "ಕೆರೀಬಿಯನ್ ನೆದರ್‌ಲ್ಯಾಂಡ್ಸ್\0" // bq + "ಕೇಪ್ ವರ್ಡೆ\0" // cv + "ಕೇಮನ್ ದ್ವೀಪಗಳು\0" // ky + "ಕೊಕೊಸ್ (ಕೀಲಿಂಗ್) ದ್ವೀಪಗಳು\0" // cc + "ಕೊಮೊರೊಸ್\0" // km + "ಕೊಲಂಬಿಯಾ\0" // co + "ಕೊಸೊವೊ\0" // xk + "ಕೊಸ್ಟಾ ರಿಕಾ\0" // cr + "ಕೋತ್‌ ದಿವಾರ್‍\0" // ci + "ಕ್ಯಾನರಿ ದ್ವೀಪಗಳು\0" // ic + "ಕ್ಯಾಮರೂನ್\0" // cm + "ಕ್ಯೂಬಾ\0" // cu + "ಕ್ರಿಸ್ಮಸ್ ದ್ವೀಪ\0" // cx + "ಕ್ರೊಯೇಷಿಯಾ\0" // hr + "ಕ್ಲಿಪ್ಪರ್‌ಟಾನ್ ದ್ವೀಪ\0" // cp + "ಖತಾರ್\0" // qa + "ಗಯಾನಾ\0" // gy + "ಗಿನಿ\0" // gn + "ಗಿನಿ-ಬಿಸ್ಸಾವ್\0" // gw + "ಗಿಬ್ರಾಲ್ಟರ್\0" // gi + "ಗುಡೆಲೋಪ್\0" // gp + "ಗುರ್ನ್‌ಸೆ\0" // gg + "ಗುವಾಮ್\0" // gu + "ಗೆಬೊನ್\0" // ga + "ಗ್ಯಾಂಬಿಯಾ\0" // gm + "ಗ್ರೀನ್‌ಲ್ಯಾಂಡ್\0" // gl + "ಗ್ರೀಸ್\0" // gr + "ಗ್ರೆನೆಡಾ\0" // gd + "ಗ್ವಾಟೆಮಾಲಾ\0" // gt + "ಘಾನಾ\0" // gh + "ಚಾದ್\0" // td + "ಚಿಲಿ\0" // cl + "ಚೀನಾ\0" // cn + "ಜಪಾನ್\0" // jp + "ಜಮೈಕಾ\0" // jm + "ಜರ್ಮನಿ\0" // de + "ಜಾಂಬಿಯ\0" // zm + "ಜಾರ್ಜಿಯಾ\0" // ge + "ಜಿಂಬಾಬ್ವೆ\0" // zw + "ಜಿಬೂಟಿ\0" // dj + "ಜೆಕ್ ಗಣರಾಜ್ಯ\0" // cz + "ಜೆರ್ಸಿ\0" // je + "ಜೋರ್ಡಾನ್\0" // jo + "ಝೆಕಿಯಾ\0" // cz + "ಟರ್ಕಿ\0" // tr + "ಟರ್ಕ್ಸ್ ಮತ್ತು ಕೈಕೋಸ್ ದ್ವೀಪಗಳು\0" // tc + "ಟುನೀಶಿಯ\0" // tn + "ಟುವಾಲು\0" // tv + "ಟೊಂಗಾ\0" // to + "ಟೊಕೆಲಾವ್\0" // tk + "ಟೋಗೋ\0" // tg + "ಟ್ರಿನಿಡಾಡ್ ಮತ್ತು ಟೊಬಾಗೊ\0" // tt + "ಟ್ರಿಸ್ತನ್ ಡಾ ಕುನ್ಹಾ\0" // ta + "ಡೆನ್ಮಾರ್ಕ್\0" // dk + "ಡೈಗೋ ಗಾರ್ಸಿಯ\0" // dg + "ಡೊಮಿನಿಕಾ\0" // dm + "ಡೊಮೆನಿಕನ್ ರಿಪಬ್ಲಿಕ್\0" // do + "ತಜಿಕಿಸ್ತಾನ್\0" // tj + "ತಾಂಜೇನಿಯಾ\0" // tz + "ತುರ್ಕಮೆನಿಸ್ತಾನ್\0" // tm + "ತೈವಾನ್\0" // tw + "ಥೈಲ್ಯಾಂಡ್\0" // th + "ದಕ್ಷಿಣ ಆಫ್ರಿಕಾ\0" // za + "ದಕ್ಷಿಣ ಕೊರಿಯಾ\0" // kr + "ದಕ್ಷಿಣ ಜಾರ್ಜಿಯಾ ಮತ್ತು ದಕ್ಷಿಣ ಸ್ಯಾಂಡ್‍ವಿಚ್ ದ್ವೀಪಗಳು\0" // gs + "ದಕ್ಷಿಣ ಸುಡಾನ್\0" // ss + "ನಮೀಬಿಯಾ\0" // na + "ನಾರ್ಫೋಕ್ ದ್ವೀಪ\0" // nf + "ನಾರ್ವೆ\0" // no + "ನಿಕಾರಾಗುವಾ\0" // ni + "ನಿಯು\0" // nu + "ನೆದರ್‌ಲ್ಯಾಂಡ್ಸ್\0" // nl + "ನೇಪಾಳ\0" // np + "ನೈಜರ್\0" // ne + "ನೈಜೀರಿಯಾ\0" // ng + "ನೌರು\0" // nr + "ನ್ಯೂ ಕ್ಯಾಲಿಡೋನಿಯಾ\0" // nc + "ನ್ಯೂಜಿಲೆಂಡ್\0" // nz + "ಪನಾಮಾ\0" // pa + "ಪಪುವಾ ನ್ಯೂಗಿನಿಯಾ\0" // pg + "ಪರಾಗ್ವೇ\0" // py + "ಪಲಾವು\0" // pw + "ಪಶ್ಚಿಮ ಸಹಾರಾ\0" // eh + "ಪಾಕಿಸ್ತಾನ\0" // pk + "ಪಿಟ್‌ಕೈರ್ನ್ ದ್ವೀಪಗಳು\0" // pn + "ಪೂರ್ವ ಟಿಮೋರ್\0" // tl + "ಪೂರ್ವ ತಿಮೋರ್\0" // tl + "ಪೆರು\0" // pe + "ಪೋರ್ಚುಗಲ್\0" // pt + "ಪೋಲ್ಯಾಂಡ್\0" // pl + "ಪ್ಯಾಲೆಸ್ಟೈನ್\0" // ps + "ಪ್ಯಾಲೇಸ್ಟೇನಿಯನ್ ಪ್ರದೇಶಗಳು\0" // ps + "ಪ್ಯೂರ್ಟೋ ರಿಕೊ\0" // pr + "ಫರೋ ದ್ವೀಪಗಳು\0" // fo + "ಫಾಕ್‌ಲ್ಯಾಂಡ್ ದ್ವೀಪಗಳು\0" // fk + "ಫಿಜಿ\0" // fj + "ಫಿನ್‌ಲ್ಯಾಂಡ್\0" // fi + "ಫಿಲಿಫೈನ್ಸ್\0" // ph + "ಫ್ರಾನ್ಸ್\0" // fr + "ಫ್ರೆಂಚ್ ಗಯಾನಾ\0" // gf + "ಫ್ರೆಂಚ್ ದಕ್ಷಿಣ ಪ್ರದೇಶಗಳು\0" // tf + "ಫ್ರೆಂಚ್ ಪಾಲಿನೇಷ್ಯಾ\0" // pf + "ಬರ್ಮುಡಾ\0" // bm + "ಬಲ್ಗೇರಿಯಾ\0" // bg + "ಬಹಾಮಾಸ್\0" // bs + "ಬಹ್ರೇನ್\0" // bh + "ಬಾಂಗ್ಲಾದೇಶ\0" // bd + "ಬಾರ್ಬಡೋಸ್\0" // bb + "ಬುರುಂಡಿ\0" // bi + "ಬುರ್ಕಿನಾ ಫಾಸೊ\0" // bf + "ಬೆನಿನ್\0" // bj + "ಬೆಲಾರಸ್\0" // by + "ಬೆಲಿಜ್\0" // bz + "ಬೆಲ್ಜಿಯಮ್\0" // be + "ಬೊಲಿವಿಯಾ\0" // bo + "ಬೋಟ್ಸ್‌ವಾನಾ\0" // bw + "ಬೋವೆಟ್ ದ್ವೀಪ\0" // bv + "ಬೋಸ್ನಿಯಾ ಮತ್ತು ಹರ್ಜೆಗೋವಿನಾ\0" // ba + "ಬ್ರಿಟನ್/ಇಂಗ್ಲೆಂಡ್\0" // gb + "ಬ್ರಿಟಿಷ್ ವರ್ಜಿನ್ ದ್ವೀಪಗಳು\0" // vg + "ಬ್ರಿಟೀಷ್ ಹಿಂದೂ ಮಹಾಸಾಗರದ ಪ್ರದೇಶ\0" // io + "ಬ್ರೂನಿ\0" // bn + "ಬ್ರೆಜಿಲ್\0" // br + "ಭಾರತ\0" // in + "ಭೂತಾನ್\0" // bt + "ಮಂಗೋಲಿಯಾ\0" // mn + "ಮಕಾವು\0" // mo + "ಮಕಾವು sar ಚೈನಾ\0" // mo + "ಮಡಗಾಸ್ಕರ್\0" // mg + "ಮಧ್ಯ ಆಫ್ರಿಕಾ ಗಣರಾಜ್ಯ\0" // cf + "ಮಯನ್ಮಾರ್ (ಬರ್ಮಾ)\0" // mm + "ಮಯೊಟ್ಟೆ\0" // yt + "ಮಲಾವಿ\0" // mw + "ಮಲೇಶಿಯಾ\0" // my + "ಮಾಂಟ್‌ಸೆರಟ್\0" // ms + "ಮಾರಿಟೇನಿಯಾ\0" // mr + "ಮಾರಿಷಸ್\0" // mu + "ಮಾರ್ಟಿನಿಕ್\0" // mq + "ಮಾರ್ಷಲ್ ದ್ವೀಪಗಳು\0" // mh + "ಮಾಲಿ\0" // ml + "ಮಾಲ್ಟಾ\0" // mt + "ಮಾಲ್ಡೀವ್ಸ್\0" // mv + "ಮೆಕ್ಸಿಕೊ\0" // mx + "ಮೈಕ್ರೋನೇಶಿಯಾ\0" // fm + "ಮೊಂಟೆನೆಗ್ರೋ\0" // me + "ಮೊಜಾಂಬಿಕ್\0" // mz + "ಮೊನಾಕೊ\0" // mc + "ಮೊರಾಕ್ಕೊ\0" // ma + "ಮೊಲ್ಡೋವಾ\0" // md + "ಮ್ಯಾಸಿಡೋನಿಯಾ\0" // mk + "ಮ್ಯಾಸಿಡೋನಿಯಾ (fyrom)\0" // mk + "ಯು.ಎಸ್\0" // us + "ಯು.ಎಸ್. ವರ್ಜಿನ್ ದ್ವೀಪಗಳು\0" // vi + "ಯು.ಕೆ.\0" // gb + "ಯುಎಸ್‌ ಔಟ್‌ಲೇಯಿಂಗ್ ದ್ವೀಪಗಳು\0" // um + "ಯುನೈಟೆಡ್ ಅರಬ್ ಎಮಿರೇಟ್ಸ್\0" // ae + "ಯೂರೋಝೋನ್‌\0" // ez + "ಯೆಮನ್\0" // ye + "ರಷ್ಯಾ\0" // ru + "ರಿಯೂನಿಯನ್\0" // re + "ರುವಾಂಡಾ\0" // rw + "ರೊಮೇನಿಯಾ\0" // ro + "ಲಕ್ಸೆಂಬರ್ಗ್\0" // lu + "ಲಾಟ್ವಿಯಾ\0" // lv + "ಲಾವೋಸ್\0" // la + "ಲಿಚೆನ್‌ಸ್ಟೈನ್\0" // li + "ಲಿಥುವೇನಿಯಾ\0" // lt + "ಲಿಬಿಯಾ\0" // ly + "ಲಿಬೇರಿಯಾ\0" // lr + "ಲೆಬನಾನ್\0" // lb + "ಲೆಸೊಥೊ\0" // ls + "ವನೌಟು\0" // vu + "ವಾಲಿಸ್ ಮತ್ತು ಫುಟುನಾ\0" // wf + "ವಿಯೆಟ್ನಾಮ್\0" // vn + "ವೆನೆಜುವೆಲಾ\0" // ve + "ವ್ಯಾಟಿಕನ್ ಸಿಟಿ\0" // va + "ಶ್ರೀಲಂಕಾ\0" // lk + "ಸಮೋವಾ\0" // ws + "ಸಾಲೊಮನ್ ದ್ವೀಪಗಳು\0" // sb + "ಸಾವೋ ಟೋಮ್ ಮತ್ತು ಪ್ರಿನ್ಸಿಪಿ\0" // st + "ಸಿಂಗಾಪುರ್\0" // sg + "ಸಿಂಟ್ ಮಾರ್ಟೆನ್\0" // sx + "ಸಿಯೆರ್ರಾ ಲಿಯೋನ್\0" // sl + "ಸಿರಿಯಾ\0" // sy + "ಸೀಶೆಲ್ಲೆಸ್\0" // sc + "ಸುಡಾನ್\0" // sd + "ಸುರಿನಾಮ್\0" // sr + "ಸೆನೆಗಲ್\0" // sn + "ಸೆಯುಟಾ ಹಾಗೂ ಮೆಲಿಲ್ಲಾ\0" // ea + "ಸೆರ್ಬಿಯಾ\0" // rs + "ಸೇಂಟ್ ಕಿಟ್ಸ್ ಮತ್ತು ನೆವಿಸ್\0" // kn + "ಸೇಂಟ್ ಪಿಯರ್ ಮತ್ತು ಮಿಕ್ವೆಲನ್\0" // pm + "ಸೇಂಟ್ ಬಾರ್ಥೆಲೆಮಿ\0" // bl + "ಸೇಂಟ್ ಮಾರ್ಟಿನ್\0" // mf + "ಸೇಂಟ್ ಲೂಸಿಯಾ\0" // lc + "ಸೇಂಟ್ ಹೆಲೆನಾ\0" // sh + "ಸೇಂಟ್. ವಿನ್ಸೆಂಟ್ ಮತ್ತು ಗ್ರೆನೆಡೈನ್ಸ್\0" // vc + "ಸೈಪ್ರಸ್\0" // cy + "ಸೊಮಾಲಿಯಾ\0" // so + "ಸೌದಿ ಅರೇಬಿಯಾ\0" // sa + "ಸ್ಪೇನ್\0" // es + "ಸ್ಯಾನ್ ಮೆರಿನೋ\0" // sm + "ಸ್ಲೊವಾಕಿಯಾ\0" // sk + "ಸ್ಲೋವೇನಿಯಾ\0" // si + "ಸ್ವಾಜಿಲ್ಯಾಂಡ್\0" // sz + "ಸ್ವಾಲ್ಬಾರ್ಡ್ ಮತ್ತು ಜಾನ್ ಮೆಯನ್\0" // sj + "ಸ್ವಿಟ್ಜರ್ಲ್ಯಾಂಡ್\0" // ch + "ಸ್ವೀಡನ್\0" // se + "ಹಂಗೇರಿ\0" // hu + "ಹರ್ಡ್ ಮತ್ತು ಮ್ಯಾಕ್‌ಡೋನಾಲ್ಡ್ ದ್ವೀಪಗಳು\0" // hm + "ಹಾಂಗ್ ಕಾಂಗ್\0" // hk + "ಹಾಂಗ್ ಕಾಂಗ್ sar ಚೈನಾ\0" // hk + "ಹೈಟಿ\0" // ht + "ಹೊಂಡುರಾಸ್\0" // hn + "അംഗോള\0" // ao + "അന്റാർട്ടിക്ക\0" // aq + "അഫ്‌ഗാനിസ്ഥാൻ\0" // af + "അമേരിക്കൻ ഐക്യനാടുകൾ\0" // us + "അമേരിക്കൻ സമോവ\0" // as + "അയർലൻഡ്\0" // ie + "അറൂബ\0" // aw + "അലൻഡ് ദ്വീപുകൾ\0" // ax + "അസൻഷൻ ദ്വീപ്\0" // ac + "അസർബൈജാൻ\0" // az + "അൻഡോറ\0" // ad + "അർജന്റീന\0" // ar + "അർമേനിയ\0" // am + "അൽബേനിയ\0" // al + "അൾജീരിയ\0" // dz + "ആൻഗ്വില്ല\0" // ai + "ആൻറിഗ്വയും ബർബുഡയും\0" // ag + "ഇക്വഡോർ\0" // ec + "ഇക്വറ്റോറിയൽ ഗിനിയ\0" // gq + "ഇന്തോനേഷ്യ\0" // id + "ഇന്ത്യ\0" // in + "ഇറാഖ്\0" // iq + "ഇറാൻ\0" // ir + "ഇറ്റലി\0" // it + "ഇസ്രായേൽ\0" // il + "ഈജിപ്ത്\0" // eg + "ഉക്രെയ്‌ൻ\0" // ua + "ഉഗാണ്ട\0" // ug + "ഉത്തര മറിയാനാ ദ്വീപുകൾ\0" // mp + "ഉത്തരകൊറിയ\0" // kp + "ഉറുഗ്വേ\0" // uy + "ഉസ്‌ബെക്കിസ്ഥാൻ\0" // uz + "എത്യോപ്യ\0" // et + "എറിത്രിയ\0" // er + "എസ്റ്റോണിയ‍\0" // ee + "എൽ സാൽവദോർ\0" // sv + "ഐവറി കോസ്റ്റ്\0" // ci + "ഐസ്‌ലാന്റ്\0" // is + "ഐൽ ഓഫ് മാൻ\0" // im + "ഒമാൻ\0" // om + "ഓസ്ട്രിയ\0" // at + "ഓസ്‌ട്രേലിയ\0" // au + "കംബോഡിയ\0" // kh + "കരീബിയൻ നെതർലാൻഡ്സ്\0" // bq + "കസാഖിസ്ഥാൻ\0" // kz + "കാനഡ\0" // ca + "കാനറി ദ്വീപുകൾ\0" // ic + "കാമറൂൺ\0" // cm + "കിരിബാട്ടി\0" // ki + "കിഴക്കൻ തിമോർ\0" // tl + "കിർഗിസ്ഥാൻ\0" // kg + "കുക്ക് ദ്വീപുകൾ\0" // ck + "കുറാകാവോ\0" // cw + "കുവൈറ്റ്\0" // kw + "കെനിയ\0" // ke + "കേപ്പ് വേർഡ്\0" // cv + "കേയ്മാൻ ദ്വീപുകൾ\0" // ky + "കൊളംബിയ\0" // co + "കൊസോവൊ\0" // xk + "കോംഗോ (drc)\0" // cd + "കോംഗോ (റിപ്പബ്ലിക്ക്)\0" // cg + "കോംഗോ - കിൻഷാസ\0" // cd + "കോംഗോ - ബ്രാസവില്ലി\0" // cg + "കോക്കസ് (കീലിംഗ്) ദ്വീപുകൾ\0" // cc + "കോട്ട് ഡി വാർ\0" // ci + "കോമൊറോസ്\0" // km + "കോസ്റ്ററിക്ക\0" // cr + "ക്യൂബ\0" // cu + "ക്രിസ്മസ് ദ്വീപ്\0" // cx + "ക്രൊയേഷ്യ\0" // hr + "ക്ലിപ്പെർട്ടൻ ദ്വീപ്\0" // cp + "ഖത്തർ\0" // qa + "ഗയാന\0" // gy + "ഗാംബിയ\0" // gm + "ഗാബൺ\0" // ga + "ഗിനിയ\0" // gn + "ഗിനിയ-ബിസൗ\0" // gw + "ഗേൺസി\0" // gg + "ഗ്രനേഡ\0" // gd + "ഗ്രീസ്\0" // gr + "ഗ്രീൻലാൻറ്\0" // gl + "ഗ്വാം\0" // gu + "ഗ്വാട്ടിമാല\0" // gt + "ഗ്വാഡലൂപ്പ്\0" // gp + "ഘാന\0" // gh + "ചിലി\0" // cl + "ചെക്കിയ\0" // cz + "ചെക്ക് റിപ്പബ്ലിക്ക്\0" // cz + "ചൈന\0" // cn + "ഛാഡ്\0" // td + "ജപ്പാൻ\0" // jp + "ജമൈക്ക\0" // jm + "ജിബ്രാൾട്ടർ\0" // gi + "ജേഴ്സി\0" // je + "ജോർജ്ജിയ\0" // ge + "ജോർദ്ദാൻ\0" // jo + "ജർമ്മനി\0" // de + "ടാൻസാനിയ\0" // tz + "ടുണീഷ്യ\0" // tn + "ടുവാലു\0" // tv + "ടോംഗ\0" // to + "ടോക്കെലൂ\0" // tk + "ടോഗോ\0" // tg + "ട്രസ്റ്റൻ ഡ കൂന\0" // ta + "ട്രിനിഡാഡും ടുബാഗോയും\0" // tt + "ടർക്ക്‌സും കെയ്‌ക്കോ ദ്വീപുകളും\0" // tc + "ഡീഗോ ഗ്രാഷ്യ\0" // dg + "ഡെൻമാർക്ക്\0" // dk + "ഡൊമിനിക്ക\0" // dm + "ഡൊമിനിക്കൻ റിപ്പബ്ലിക്ക്\0" // do + "താജിക്കിസ്ഥാൻ\0" // tj + "തായ്‌ലാൻഡ്\0" // th + "തായ്‌വാൻ\0" // tw + "തിമോർ-ലെസ്റ്റെ\0" // tl + "തുർക്കി\0" // tr + "തുർക്ക്മെനിസ്ഥാൻ\0" // tm + "ദക്ഷിണ ജോർജ്ജിയയും ദക്ഷിണ സാൻഡ്‌വിച്ച് ദ്വീപുകളും\0" // gs + "ദക്ഷിണ സുഡാൻ\0" // ss + "ദക്ഷിണകൊറിയ\0" // kr + "ദക്ഷിണാഫ്രിക്ക\0" // za + "ദിജിബൗട്ടി\0" // dj + "ദ്വീപസമൂഹം\0" // qo + "നമീബിയ\0" // na + "നിക്കരാഗ്വ\0" // ni + "നെതർലാൻഡ്‌സ്\0" // nl + "നേപ്പാൾ\0" // np + "നൈജീരിയ\0" // ng + "നൈജർ\0" // ne + "നോർഫോക് ദ്വീപ്\0" // nf + "നോർവെ\0" // no + "ന്യൂ കാലിഡോണിയ\0" // nc + "ന്യൂയി\0" // nu + "ന്യൂസിലാൻറ്\0" // nz + "നൗറു\0" // nr + "പനാമ\0" // pa + "പരാഗ്വേ\0" // py + "പലസ്‌തീൻ\0" // ps + "പലാവു\0" // pw + "പശ്ചിമ സഹാറ\0" // eh + "പാക്കിസ്ഥാൻ\0" // pk + "പാപ്പുവ ന്യൂ ഗിനിയ\0" // pg + "പാലസ്‌തീൻ പ്രദേശങ്ങൾ\0" // ps + "പിറ്റ്‌കെയ്‌ൻ ദ്വീപുകൾ\0" // pn + "പെറു\0" // pe + "പോളണ്ട്\0" // pl + "പോർച്ചുഗൽ\0" // pt + "പോർട്ടോ റിക്കോ\0" // pr + "ഫറോ ദ്വീപുകൾ\0" // fo + "ഫാക്ക്‌ലാന്റ് ദ്വീപുകൾ\0" // fk + "ഫിജി\0" // fj + "ഫിലിപ്പീൻസ്\0" // ph + "ഫിൻലാൻഡ്\0" // fi + "ഫോക്ക്‌ലാൻഡ് ദ്വീപുകൾ (ഐലാസ് മാൽവിനാസ്)\0" // fk + "ഫ്രഞ്ച് ഗയാന\0" // gf + "ഫ്രഞ്ച് ദക്ഷിണ ഭൂപ്രദേശം\0" // tf + "ഫ്രഞ്ച് പോളിനേഷ്യ\0" // pf + "ഫ്രാൻസ്\0" // fr + "ബംഗ്ലാദേശ്\0" // bd + "ബറുണ്ടി\0" // bi + "ബഹാമാസ്\0" // bs + "ബഹ്റിൻ\0" // bh + "ബാർബഡോസ്\0" // bb + "ബെനിൻ\0" // bj + "ബെലറൂസ്\0" // by + "ബെലീസ്\0" // bz + "ബെൽജിയം\0" // be + "ബൊളീവിയ\0" // bo + "ബോട്സ്വാന\0" // bw + "ബോസ്നിയയും ഹെർസഗോവിനയും\0" // ba + "ബ്രസീൽ\0" // br + "ബ്രിട്ടീഷ് ഇന്ത്യൻ മഹാസമുദ്ര പ്രദേശം\0" // io + "ബ്രിട്ടീഷ് വെർജിൻ ദ്വീപുകൾ\0" // vg + "ബ്രൂണൈ\0" // bn + "ബൗവെട്ട് ദ്വീപ്\0" // bv + "ബർക്കിന ഫാസോ\0" // bf + "ബർമുഡ\0" // bm + "ബൾഗേറിയ\0" // bg + "ഭൂട്ടാൻ\0" // bt + "മംഗോളിയ\0" // mn + "മക്കാവു\0" // mo + "മക്കാവു (sar) ചൈന\0" // mo + "മഡഗാസ്കർ\0" // mg + "മയോട്ടി\0" // yt + "മലാവി\0" // mw + "മലേഷ്യ\0" // my + "മാലി\0" // ml + "മാലിദ്വീപ്\0" // mv + "മാസിഡോണിയ\0" // mk + "മാസിഡോണിയ (fyrom)\0" // mk + "മാർട്ടിനിക്ക്\0" // mq + "മാർഷൽ ദ്വീപുകൾ\0" // mh + "മാൾട്ട\0" // mt + "മെക്സിക്കോ\0" // mx + "മൈക്രോനേഷ്യ\0" // fm + "മൊണാക്കോ\0" // mc + "മൊണ്ടെസരത്ത്\0" // ms + "മൊറോക്കൊ\0" // ma + "മൊസാംബിക്ക്\0" // mz + "മോണ്ടെനെഗ്രോ\0" // me + "മ്യാൻമാർ (ബർമ്മ)\0" // mm + "മൗറിറ്റാനിയ\0" // mr + "മൗറീഷ്യസ്\0" // mu + "മൾഡോവ\0" // md + "യു.എസ്\0" // us + "യു.എസ്. ദ്വീപസമൂഹങ്ങൾ\0" // um + "യു.എസ്. വെർജിൻ ദ്വീപുകൾ\0" // vi + "യു.കെ.\0" // gb + "യുണൈറ്റഡ് അറബ് എമിറൈറ്റ്‌സ്\0" // ae + "യുണൈറ്റഡ് കിംഗ്ഡം\0" // gb + "യൂറോസോൺ\0" // ez + "യെമൻ\0" // ye + "റഷ്യ\0" // ru + "റീയൂണിയൻ\0" // re + "റുവാണ്ട\0" // rw + "റൊമാനിയ\0" // ro + "ലക്സംബർഗ്\0" // lu + "ലാറ്റ്വിയ\0" // lv + "ലാവോസ്\0" // la + "ലിച്ചൺസ്റ്റൈൻ\0" // li + "ലിത്വാനിയ\0" // lt + "ലിബിയ\0" // ly + "ലെബനൻ\0" // lb + "ലെസോതോ\0" // ls + "ലൈബീരിയ\0" // lr + "വത്തിക്കാൻ\0" // va + "വന്വാതു\0" // vu + "വാലിസ് ആന്റ് ഫ്യൂച്യുന\0" // wf + "വിയറ്റ്നാം\0" // vn + "വെനിസ്വേല\0" // ve + "ശ്രീലങ്ക\0" // lk + "സമോവ\0" // ws + "സാംബിയ\0" // zm + "സാവോ ടോമും പ്രിൻസിപെയും\0" // st + "സാൻ മറിനോ\0" // sm + "സിംഗപ്പൂർ\0" // sg + "സിംബാബ്‌വേ\0" // zw + "സിന്റ് മാർട്ടെൻ\0" // sx + "സിയെറ ലിയോൺ\0" // sl + "സിറിയ\0" // sy + "സീഷെൽസ്\0" // sc + "സുഡാൻ\0" // sd + "സുരിനാം\0" // sr + "സെനഗൽ\0" // sn + "സെന്റ് കിറ്റ്‌സും നെവിസും\0" // kn + "സെന്റ് പിയറിയും മിക്കലണും\0" // pm + "സെന്റ് ബാർത്തലമി\0" // bl + "സെന്റ് മാർട്ടിൻ\0" // mf + "സെന്റ് ലൂസിയ\0" // lc + "സെന്റ് വിൻസെന്റും ഗ്രനെഡൈൻസും\0" // vc + "സെന്റ് ഹെലീന\0" // sh + "സെയൂത്ത ആൻഡ് മെലിയ\0" // ea + "സെൻട്രൽ ആഫ്രിക്കൻ റിപ്പബ്ലിക്ക്\0" // cf + "സെർബിയ\0" // rs + "സൈപ്രസ്\0" // cy + "സോമാലിയ\0" // so + "സോളമൻ ദ്വീപുകൾ\0" // sb + "സ്ലോവാക്യ\0" // sk + "സ്ലോവേനിയ\0" // si + "സ്വാസിലാന്റ്\0" // sz + "സ്വാൽബാഡും ജാൻ മായേനും\0" // sj + "സ്വിറ്റ്സർലാൻഡ്\0" // ch + "സ്വീഡൻ\0" // se + "സ്‌പെയിൻ\0" // es + "സൗദി അറേബ്യ\0" // sa + "ഹംഗറി\0" // hu + "ഹിയേർഡും മക്‌ഡൊണാൾഡ് ദ്വീപുകളും\0" // hm + "ഹെയ്തി\0" // ht + "ഹോങ്കോങ്\0" // hk + "ഹോങ്കോങ് (sar) ചൈന\0" // hk + "ഹോണ്ടുറാസ്\0" // hn + "අයර්ලන්තය\0" // ie + "අයිල් ඔෆ් මෑන්\0" // im + "අයිවරි කෝස්ට්\0" // ci + "අයිස්ලන්තය\0" // is + "අරූබා\0" // aw + "අසර්බයිජානය\0" // az + "ආර්ජෙන්ටිනාව\0" // ar + "ආර්මේනියාව\0" // am + "ඇන්ගුයිලාව\0" // ai + "ඇන්ගෝලාව\0" // ao + "ඇන්ටාක්ටිකාව\0" // aq + "ඇන්ටිගුවා සහ බාබියුඩාව\0" // ag + "ඇන්ඩෝරාව\0" // ad + "ඇමරිකානු වර්ජින් දූපත්\0" // vi + "ඇමරිකානු සැමෝවාව\0" // as + "ඇල්ජීරියාව\0" // dz + "ඇල්බේනියාව\0" // al + "ඇසෙන්ෂන් දිවයින\0" // ac + "ඇෆ්ගනිස්ථානය\0" // af + "ඈත ඕෂනියාව\0" // qo + "ඉක්වදෝරය\0" // ec + "ඉතාලිය\0" // it + "ඉතියෝපියාව\0" // et + "ඉන්දියාව\0" // in + "ඉන්දුනීසියාව\0" // id + "ඉරාකය\0" // iq + "ඉරානය\0" // ir + "ඊජිප්තුව\0" // eg + "ඊශ්‍රායලය\0" // il + "උගන්ඩාව\0" // ug + "උතුරු කොරියාව\0" // kp + "උතුරු මරියානා දූපත්\0" // mp + "උරුගුවේ\0" // uy + "උස්බෙකිස්ථානය\0" // uz + "එ.ජ\0" // us + "එ.රා\0" // gb + "එක්සත් අරාබි එමිර් රාජ්‍යය\0" // ae + "එක්සත් ජනපද ඈත දූපත්\0" // um + "එක්සත් ජනපදය\0" // us + "එක්සත් රාජධානිය\0" // gb + "එරිත්‍රියාව\0" // er + "එල් සැල්වදෝරය\0" // sv + "එස්තෝනියාව\0" // ee + "ඔස්ට්‍රියාව\0" // at + "ඕමානය\0" // om + "ඕලන්ඩ් දූපත්\0" // ax + "ඕස්ට්‍රේලියාව\0" // au + "කටාර්\0" // qa + "කසකස්තානය\0" // kz + "ක්ලීපර්ටන් දූපත\0" // cp + "ක්‍රිස්මස් දූපත\0" // cx + "ක්‍රොඒෂියාව\0" // hr + "කාම්බෝජය\0" // kh + "කැනඩාව\0" // ca + "කැනරි සූපත්\0" // ic + "කැමරූන්\0" // cm + "කැරිබියානු නෙදර්ලන්තය\0" // bq + "කියුබාව\0" // cu + "කිර්ගිස්තානය\0" // kg + "කිරිබති\0" // ki + "කුක් දූපත්\0" // ck + "කුරකාවෝ\0" // cw + "කුවේටය\0" // kw + "කෙන්යාව\0" // ke + "කේප් වර්ඩ්\0" // cv + "කේමන් දූපත්\0" // ky + "කොංගො - කින්ශාසා\0" // cd + "කොංගො - බ්‍රසාවිල්\0" // cg + "කොංගෝ (ජනරජය)\0" // cg + "කොංගෝව\0" // cd + "කොකෝස් දූපත්\0" // cc + "කොමොරෝස්\0" // km + "කොස්ටරිකාව\0" // cr + "කොසෝවෝ\0" // xk + "කොළොම්බියාව\0" // co + "කෝට් දි අයිවරි\0" // ci + "ගයනාව\0" // gy + "ගර්න්සිය\0" // gg + "ග්වෝඩලෝප්\0" // gp + "ග්‍රැනඩාව\0" // gd + "ග්‍රීන්ලන්තය\0" // gl + "ග්‍රීසිය\0" // gr + "ගැබොන්\0" // ga + "ගැම්බියාව\0" // gm + "ගිණියාව\0" // gn + "ගිනි බිසව්\0" // gw + "ගුවාම්\0" // gu + "ගෝතමාලාව\0" // gt + "ඝානාව\0" // gh + "චැච්\0" // td + "චිලී\0" // cl + "චීනය\0" // cn + "චෙක් ජනරජය\0" // cz + "ජපානය\0" // jp + "ජර්මනිය\0" // de + "ජර්සි\0" // je + "ජැමෙයිකාව\0" // jm + "ජිබ්‍රෝල්ටාව\0" // gi + "ජිබුටි\0" // dj + "ජෝර්ජියාව\0" // ge + "ජෝර්දානය\0" // jo + "ටජිකිස්තානය\0" // tj + "ටර්ක්මෙනිස්ථානය\0" // tm + "ටර්ක්ස් සහ කයිකොස් දූපත්\0" // tc + "ට්‍රිනිඩෑඩ් සහ ටොබැගෝ\0" // tt + "ට්‍රිස්ටන් ද කුන්හා\0" // ta + "ටැන්සානියාව\0" // tz + "ටිමෝර් - ලෙස්ත්\0" // tl + "ටියුනීසියාව\0" // tn + "ටුවාලූ\0" // tv + "ටොංගා\0" // to + "ටොකලාවු\0" // tk + "ටොගෝ\0" // tg + "ඩෙන්මාර්කය\0" // dk + "ඩොමිනිකා ජනරජය\0" // do + "ඩොමිනිකාව\0" // dm + "තායිලන්තය\0" // th + "තායිවානය\0" // tw + "තුර්කිය\0" // tr + "දකුණු අප්‍රිකාව\0" // za + "දකුණු කොරියාව\0" // kr + "දකුණු ජෝර්ජියාව සහ දකුණු සැන්ඩ්විච් දූපත්\0" // gs + "දකුණු ප්‍රංශ දූපත් සමූහය\0" // tf + "දකුණු සුඩානය\0" // ss + "දියාගෝ ගාර්සියා\0" // dg + "නයිජර්\0" // ne + "නයිජීරියාව\0" // ng + "නව කැලිඩෝනියාව\0" // nc + "නවසීලන්තය\0" // nz + "නාවුරු\0" // nr + "නැගෙනහිර ටිමෝරය\0" // tl + "නැමීබියාව\0" // na + "නිකරගුවාව\0" // ni + "නියූ\0" // nu + "නෙදර්ලන්තය\0" // nl + "නේපාලය\0" // np + "නෝර්වේ\0" // no + "නෝෆෝක් දූපත\0" // nf + "පලස්තීන රාජ්‍යය\0" // ps + "පලස්තීනය\0" // ps + "පලාවු\0" // pw + "ප්‍රංශ ගයනාව\0" // gf + "ප්‍රංශ පොලිනීසියාව\0" // pf + "ප්‍රංශය\0" // fr + "පාකිස්තානය\0" // pk + "පැනමාව\0" // pa + "පැපුවා නිව් ගිනියාව\0" // pg + "පැරගුවේ\0" // py + "පිට්කෙය්න් දූපත්\0" // pn + "පිලිපීනය\0" // ph + "පුවර්ටෝ රිකෝ\0" // pr + "පෘතුගාලය\0" // pt + "පේරු\0" // pe + "පෝලන්තය\0" // pl + "බංග්ලාදේශය\0" // bd + "බටහිර සහරාව\0" // eh + "බර්කිනා ෆාසෝ\0" // bf + "බර්මියුඩා\0" // bm + "බල්ගේරියාව\0" // bg + "බහමාස්\0" // bs + "බහරේන්\0" // bh + "බ්‍රසීලය\0" // br + "බ්‍රිතාන්‍ය ඉන්දීය සාගර බල ප්‍රදේශය\0" // io + "බ්‍රිතාන්‍ය වර්ජින් දූපත්\0" // vg + "බාබඩෝස්\0" // bb + "බුරුන්දි\0" // bi + "බුවට් දුපත්\0" // bv + "බෙනින්\0" // bj + "බෙලරුස්\0" // by + "බෙල්ජියම\0" // be + "බෙලීස්\0" // bz + "බොට්ස්වානා\0" // bw + "බොලීවියාව\0" // bo + "බොස්නියාව සහ හර්සගොවීනාව\0" // ba + "බෲනායි\0" // bn + "භූතානය\0" // bt + "මකාවු\0" // mo + "මකාවු චීන විශේෂ පරිපාලන කලාපය\0" // mo + "මධ්‍යම අප්‍රිකානු ජනරජය\0" // cf + "මයික්‍රොනීසියාව\0" // fm + "මයෝට්\0" // yt + "මර්ටිනික්\0" // mq + "මලාවි\0" // mw + "මාල දිවයින\0" // mv + "මාලි\0" // ml + "මාෂල් දූපත්\0" // mh + "මැඩගස්කරය\0" // mg + "මැලේසියාව\0" // my + "මැසිඩෝනියාව\0" // mk + "මැසිඩෝනියාව (fyrom)\0" // mk + "මියන්මාරය (බුරුමය)\0" // mm + "මුරුසිය\0" // mu + "මෙක්සිකෝව\0" // mx + "මොන්ගෝලියාව\0" // mn + "මොන්ටෙනීග්‍රෝ\0" // me + "මොන්සෙරාට්\0" // ms + "මොනාකෝව\0" // mc + "මොරිටේනියාව\0" // mr + "මොරොක්කෝව\0" // ma + "මොල්ඩෝවාව\0" // md + "මොසැම්බික්\0" // mz + "මෝල්ටාව\0" // mt + "යුක්රේනය\0" // ua + "යුරෝ කලාපය\0" // ez + "යේමනය\0" // ye + "රීයුනියන්\0" // re + "රුමේනියාව\0" // ro + "රුවන්ඩාව\0" // rw + "රුසියාව\0" // ru + "ලක්ශම්බර්ග්\0" // lu + "ලයිබීරියාව\0" // lr + "ලාඕසය\0" // la + "ලැට්වියාව\0" // lv + "ලික්ටන්ස්ටයින්\0" // li + "ලිතුවේනියාව\0" // lt + "ලිබියාව\0" // ly + "ලෙබනනය\0" // lb + "ලෙසතෝ\0" // ls + "වතිකානු නගරය\0" // va + "වනුවාටු\0" // vu + "වැලිස් සහ ෆුටුනා\0" // wf + "වියට්නාමය\0" // vn + "වෙනිසියුලාව\0" // ve + "ශ්‍රී ලංකාව\0" // lk + "ශාන්ත කිට්ස් සහ නේවිස්\0" // kn + "ශාන්ත පියරේ සහ මැකෝලන්\0" // pm + "ශාන්ත බර්තලෙමි\0" // bl + "ශාන්ත මාර්ටින්\0" // mf + "ශාන්ත මාර්ටෙන්\0" // sx + "ශාන්ත ලුසියා\0" // lc + "ශාන්ත වින්සන්ට් සහ ග්‍රෙනඩින්ස්\0" // vc + "ශාන්ත හෙලේනා\0" // sh + "සමක ගිනියාව\0" // gq + "සයිප්‍රසය\0" // cy + "සර්බියාව\0" // rs + "ස්පාඤ්ඤය\0" // es + "ස්ලෝවැකියාව\0" // sk + "ස්ලෝවේනියාව\0" // si + "ස්වාසිලන්තය\0" // sz + "ස්විස්ටර්ලන්තය\0" // ch + "ස්වීඩනය\0" // se + "ස්වෙල්බර්ඩ් සහ ජේන් මයේන්\0" // sj + "සාඕ තෝම් සහ ප්‍රින්සිප්\0" // st + "සැන් මැරිනෝ\0" // sm + "සැම්බියාව\0" // zm + "සැමෝවා\0" // ws + "සිංගප්පූරුව\0" // sg + "සිම්බාබ්වේ\0" // zw + "සියරාලියෝන්\0" // sl + "සිරියාව\0" // sy + "සීශෙල්ස්\0" // sc + "සුරිනාමය\0" // sr + "සූඩානය\0" // sd + "සෙනගාලය\0" // sn + "සෙයුටා සහ මෙලිල්ලා\0" // ea + "සොලමන් දූපත්\0" // sb + "සෝමාලියාව\0" // so + "සෞදි අරාබිය\0" // sa + "හන්ගේරියාව\0" // hu + "හයිටි\0" // ht + "හර්ඩ් දූපත සහ මැක්ඩොනල්ඩ් දූපත්\0" // hm + "හොංකොං\0" // hk + "හොංකොං චීන විශේෂ පරිපාලන කලාපය\0" // hk + "හොන්ඩුරාස්\0" // hn + "ෆැරෝ දූපත්\0" // fo + "ෆින්ලන්තය\0" // fi + "ෆීජී\0" // fj + "ෆෝක්ලන්ත දූපත්\0" // fk + "ෆෝක්ලන්ත දූපත් (අයිලස් මල්වියනාස්)\0" // fk + "กรีซ\0" // gr + "กรีนแลนด์\0" // gl + "กวม\0" // gu + "กวาเดอลูป\0" // gp + "กัมพูชา\0" // kh + "กัวเตมาลา\0" // gt + "กาตาร์\0" // qa + "กานา\0" // gh + "กาบอง\0" // ga + "กายอานา\0" // gy + "กินี\0" // gn + "กินี-บิสเซา\0" // gw + "คองโก (สาธารณรัฐ)\0" // cg + "คองโก (สาธารณรัฐประชาธิปไตย)\0" // cd + "คองโก - กินชาซา\0" // cd + "คองโก - บราซซาวิล\0" // cg + "คอสตาริกา\0" // cr + "คอโมโรส\0" // km + "คาซัคสถาน\0" // kz + "คิริบาส\0" // ki + "คิวบา\0" // cu + "คีร์กีซสถาน\0" // kg + "คูราเซา\0" // cw + "คูเวต\0" // kw + "จอร์เจีย\0" // ge + "จอร์แดน\0" // jo + "จาเมกา\0" // jm + "จิบูตี\0" // dj + "จีน\0" // cn + "ชาด\0" // td + "ชิลี\0" // cl + "ซานมาริโน\0" // sm + "ซามัว\0" // ws + "ซาอุดีอาระเบีย\0" // sa + "ซาฮาราตะวันตก\0" // eh + "ซินต์มาร์เทน\0" // sx + "ซิมบับเว\0" // zw + "ซีเรีย\0" // sy + "ซูดาน\0" // sd + "ซูดานใต้\0" // ss + "ซูรินาเม\0" // sr + "ญี่ปุ่น\0" // jp + "ดินแดนปาเลสไตน์\0" // ps + "ดิเอโกการ์เซีย\0" // dg + "ตรินิแดดและโตเบโก\0" // tt + "ตองกา\0" // to + "ติมอร์-เลสเต\0" // tl + "ติมอร์ตะวันออก\0" // tl + "ตุรกี\0" // tr + "ตูนิเซีย\0" // tn + "ตูวาลู\0" // tv + "ทริสตันดาคูนา\0" // ta + "ทาจิกิสถาน\0" // tj + "นครวาติกัน\0" // va + "นอร์เวย์\0" // no + "นามิเบีย\0" // na + "นาอูรู\0" // nr + "นิการากัว\0" // ni + "นิวซีแลนด์\0" // nz + "นิวแคลิโดเนีย\0" // nc + "นีอูเอ\0" // nu + "บราซิล\0" // br + "บริติชอินเดียนโอเชียนเทร์ริทอรี\0" // io + "บรูไน\0" // bn + "บอตสวานา\0" // bw + "บอสเนียและเฮอร์เซโกวีนา\0" // ba + "บังกลาเทศ\0" // bd + "บัลแกเรีย\0" // bg + "บาร์เบโดส\0" // bb + "บาห์เรน\0" // bh + "บาฮามาส\0" // bs + "บุรุนดี\0" // bi + "บูร์กินาฟาโซ\0" // bf + "ปากีสถาน\0" // pk + "ปานามา\0" // pa + "ปาปัวนิวกินี\0" // pg + "ปารากวัย\0" // py + "ปาเลสไตน์\0" // ps + "ปาเลา\0" // pw + "ฝรั่งเศส\0" // fr + "ฟิจิ\0" // fj + "ฟินแลนด์\0" // fi + "ฟิลิปปินส์\0" // ph + "ภูฏาน\0" // bt + "มองโกเลีย\0" // mn + "มอนต์เซอร์รัต\0" // ms + "มอนเตเนโกร\0" // me + "มอริเชียส\0" // mu + "มอริเตเนีย\0" // mr + "มอลตา\0" // mt + "มอลโดวา\0" // md + "มัลดีฟส์\0" // mv + "มาซิโดเนีย\0" // mk + "มาซิโดเนีย (fyrom)\0" // mk + "มาดากัสการ์\0" // mg + "มายอต\0" // yt + "มาร์ตินีก\0" // mq + "มาลาวี\0" // mw + "มาลี\0" // ml + "มาเก๊า\0" // mo + "มาเลเซีย\0" // my + "ยิบรอลตาร์\0" // gi + "ยูกันดา\0" // ug + "ยูเครน\0" // ua + "ยูโรโซน\0" // ez + "รวันดา\0" // rw + "รัสเซีย\0" // ru + "ลักเซมเบิร์ก\0" // lu + "ลัตเวีย\0" // lv + "ลาว\0" // la + "ลิกเตนสไตน์\0" // li + "ลิทัวเนีย\0" // lt + "ลิเบีย\0" // ly + "วานูอาตู\0" // vu + "วาลลิสและฟุตูนา\0" // wf + "ศรีลังกา\0" // lk + "สฟาลบาร์และยานไมเอน\0" // sj + "สวาซิแลนด์\0" // sz + "สวิตเซอร์แลนด์\0" // ch + "สวีเดน\0" // se + "สหรัฐอาหรับเอมิเรตส์\0" // ae + "สหรัฐอเมริกา\0" // us + "สหรัฐฯ\0" // us + "สหราชอาณาจักร\0" // gb + "สาธารณรัฐเช็ก\0" // cz + "สาธารณรัฐแอฟริกากลาง\0" // cf + "สาธารณรัฐโดมินิกัน\0" // do + "สิงคโปร์\0" // sg + "สเปน\0" // es + "สโลวะเกีย\0" // sk + "สโลวีเนีย\0" // si + "หมู่เกาะคานารี\0" // ic + "หมู่เกาะคุก\0" // ck + "หมู่เกาะนอร์เทิร์นมาเรียนา\0" // mp + "หมู่เกาะบริติชเวอร์จิน\0" // vg + "หมู่เกาะพิตแคร์น\0" // pn + "หมู่เกาะฟอล์กแลนด์\0" // fk + "หมู่เกาะฟอล์กแลนด์ (อิสลาส มาลวินาส)\0" // fk + "หมู่เกาะมาร์แชลล์\0" // mh + "หมู่เกาะยูเอสเวอร์จิน\0" // vi + "หมู่เกาะรอบนอกของสหรัฐอเมริกา\0" // um + "หมู่เกาะเคย์แมน\0" // ky + "หมู่เกาะเติกส์และหมู่เกาะเคคอส\0" // tc + "หมู่เกาะแฟโร\0" // fo + "หมู่เกาะโคโคส (คีลิง)\0" // cc + "หมู่เกาะโซโลมอน\0" // sb + "หมู่เกาะโอลันด์\0" // ax + "ออสเตรีย\0" // at + "ออสเตรเลีย\0" // au + "อังกฤษ\0" // gb + "อันดอร์รา\0" // ad + "อัฟกานิสถาน\0" // af + "อารูบา\0" // aw + "อาร์เจนตินา\0" // ar + "อาร์เมเนีย\0" // am + "อาเซอร์ไบจาน\0" // az + "อิตาลี\0" // it + "อินเดีย\0" // in + "อินโดนีเซีย\0" // id + "อิรัก\0" // iq + "อิสราเอล\0" // il + "อิหร่าน\0" // ir + "อิเควทอเรียลกินี\0" // gq + "อียิปต์\0" // eg + "อุซเบกิสถาน\0" // uz + "อุรุกวัย\0" // uy + "อเมริกันซามัว\0" // as + "ฮอนดูรัส\0" // hn + "ฮังการี\0" // hu + "ฮ่องกง\0" // hk + "เกรเนดา\0" // gd + "เกาหลีเหนือ\0" // kp + "เกาหลีใต้\0" // kr + "เกาะคริสต์มาส\0" // cx + "เกาะคลิปเปอร์ตัน\0" // cp + "เกาะนอร์ฟอล์ก\0" // nf + "เกาะบูเวต\0" // bv + "เกาะเซาท์จอร์เจียและหมู่เกาะเซาท์แซนด์วิช\0" // gs + "เกาะเฮิร์ดและหมู่เกาะแมกดอนัลด์\0" // hm + "เกาะแมน\0" // im + "เกาะแอสเซนชัน\0" // ac + "เกิร์นซีย์\0" // gg + "เขตปกครองพิเศษมาเก๊าแห่งสาธารณรัฐประชาชนจีน\0" // mo + "เขตปกครองพิเศษฮ่องกงแห่งสาธารณรัฐประชาชนจีน\0" // hk + "เคนยา\0" // ke + "เคปเวิร์ด\0" // cv + "เจอร์ซีย์\0" // je + "เช็ก\0" // cz + "เซนต์คิตส์และเนวิส\0" // kn + "เซนต์บาร์เธเลมี\0" // bl + "เซนต์มาร์ติน\0" // mf + "เซนต์ลูเซีย\0" // lc + "เซนต์วินเซนต์และเกรนาดีนส์\0" // vc + "เซนต์เฮเลนา\0" // sh + "เซวตาและเมลียา\0" // ea + "เซอร์เบีย\0" // rs + "เซาตูเมและปรินซิปี\0" // st + "เซียร์ราลีโอน\0" // sl + "เซเชลส์\0" // sc + "เซเนกัล\0" // sn + "เดนมาร์ก\0" // dk + "เติร์กเมนิสถาน\0" // tm + "เนปาล\0" // np + "เนเธอร์แลนด์\0" // nl + "เนเธอร์แลนด์แคริบเบียน\0" // bq + "เบนิน\0" // bj + "เบลารุส\0" // by + "เบลีซ\0" // bz + "เบลเยียม\0" // be + "เบอร์มิวดา\0" // bm + "เปรู\0" // pe + "เปอร์โตริโก\0" // pr + "เฟรนช์เกียนา\0" // gf + "เฟรนช์เซาเทิร์นเทร์ริทอรีส์\0" // tf + "เฟรนช์โปลินีเซีย\0" // pf + "เมียนมาร์ (พม่า)\0" // mm + "เม็กซิโก\0" // mx + "เยอรมนี\0" // de + "เยเมน\0" // ye + "เรอูนียง\0" // re + "เลบานอน\0" // lb + "เลโซโท\0" // ls + "เวียดนาม\0" // vn + "เวเนซุเอลา\0" // ve + "เอกวาดอร์\0" // ec + "เอธิโอเปีย\0" // et + "เอริเทรีย\0" // er + "เอลซัลวาดอร์\0" // sv + "เอสโตเนีย\0" // ee + "เอาต์ไลอิงโอเชียเนีย\0" // qo + "เฮติ\0" // ht + "แกมเบีย\0" // gm + "แคนาดา\0" // ca + "แคเมอรูน\0" // cm + "แซงปีแยร์และมีเกอลง\0" // pm + "แซมเบีย\0" // zm + "แทนซาเนีย\0" // tz + "แองกวิลลา\0" // ai + "แองโกลา\0" // ao + "แอนตาร์กติกา\0" // aq + "แอนติกาและบาร์บูดา\0" // ag + "แอฟริกาใต้\0" // za + "แอลจีเรีย\0" // dz + "แอลเบเนีย\0" // al + "โกตดิวัวร์\0" // ci + "โครเอเชีย\0" // hr + "โคลอมเบีย\0" // co + "โคโซโว\0" // xk + "โซมาเลีย\0" // so + "โดมินิกา\0" // dm + "โตเกเลา\0" // tk + "โตโก\0" // tg + "โบลิเวีย\0" // bo + "โปรตุเกส\0" // pt + "โปแลนด์\0" // pl + "โมซัมบิก\0" // mz + "โมนาโก\0" // mc + "โมร็อกโก\0" // ma + "โรมาเนีย\0" // ro + "โอมาน\0" // om + "ไซปรัส\0" // cy + "ไต้หวัน\0" // tw + "ไทย\0" // th + "ไนจีเรีย\0" // ng + "ไนเจอร์\0" // ne + "ไมโครนีเซีย\0" // fm + "ไลบีเรีย\0" // lr + "ไอซ์แลนด์\0" // is + "ไอร์แลนด์\0" // ie + "ไอวอรี่โคสต์\0" // ci + "ກຣີຊ\0" // gr + "ກຣີນແລນ\0" // gl + "ກວາມ\0" // gu + "ກາຍຢານາ\0" // gy + "ກາຕາ\0" // qa + "ການາ\0" // gh + "ກາບອນ\0" // ga + "ກຳປູເຈຍ\0" // kh + "ກິນີ\0" // gn + "ກິນີ-ບິສເຊົາ\0" // gw + "ກູເວດ\0" // kw + "ກົວດາລູບ\0" // gp + "ກົວເທມາລາ\0" // gt + "ຄອງໂກ (ສາທາລະນະລັດປະຊາທິປະໄຕ)\0" // cd + "ຄອງໂກ - ຄິນຊາຊາ\0" // cd + "ຄອງໂກ - ບຣາຊາວິວ\0" // cg + "ຄາຊັກສະຖານ\0" // kz + "ຄາຣິບບຽນ ເນເທີແລນ\0" // bq + "ຄາເມຣູນ\0" // cm + "ຄິຣິບາທິ\0" // ki + "ຄິວບາ\0" // cu + "ຄູຣາຊາວ\0" // cw + "ຄຽກກິດສະຖານ\0" // kg + "ຈາໄມຄາ\0" // jm + "ຈິບບຣອນທາ\0" // gi + "ຈິບູຕິ\0" // dj + "ຈີນ\0" // cn + "ຈໍເຈຍ\0" // ge + "ຈໍແດນ\0" // jo + "ຊາດ\0" // td + "ຊາມົວ\0" // ws + "ຊາອຸດິ ອາຣາເບຍ\0" // sa + "ຊາຮາຣາຕາເວັນຕົກ\0" // eh + "ຊິນ ມາເທັນ\0" // sx + "ຊິມບັບເວ\0" // zw + "ຊິລີ\0" // cl + "ຊີເຣຍ\0" // sy + "ຊູດານ\0" // sd + "ຊູດານໃຕ້\0" // ss + "ຊູຣິນາມ\0" // sr + "ຍີ່ປຸ່ນ\0" // jp + "ດິນແດນ ປາເລສຕິນຽນ\0" // ps + "ດິເອໂກ ກາເຊຍ\0" // dg + "ຕູນິເຊຍ\0" // tn + "ຕູວາລູ\0" // tv + "ທຣິນິແດດ ແລະ ໂທແບໂກ\0" // tt + "ທຣິສຕັນ ດາ ກັນຮາ\0" // ta + "ທອງກາ\0" // to + "ທາຈິກິດສະຖານ\0" // tj + "ທານຊາເນຍ\0" // tz + "ທິມໍ ຕາເວັນອອກ\0" // tl + "ທິມໍ-ເລສເຕ\0" // tl + "ນະຄອນ ວາຕິກັນ\0" // va + "ນາມີເບຍ\0" // na + "ນາອູຣູ\0" // nr + "ນິກຄາຣາກົວ\0" // ni + "ນິວ ຄາເລໂດເນຍ\0" // nc + "ນິວຊີແລນ\0" // nz + "ນິເຈີ\0" // ne + "ນີອູເອ\0" // nu + "ນໍເວ\0" // no + "ບຣາຊິວ\0" // br + "ບຣູໄນ\0" // bn + "ບອດສະວານາ\0" // bw + "ບອດສະເນຍ ແລະ ແຮສໂກວີນາ\0" // ba + "ບັງກະລາເທດ\0" // bd + "ບັງກາເຣຍ\0" // bg + "ບາບາໂດສ\0" // bb + "ບາຮາມາສ\0" // bs + "ບາເຣນ\0" // bh + "ບູຣຸນດິ\0" // bi + "ປາກິດສະຖານ\0" // pk + "ປາປົວນິວກີນີ\0" // pg + "ປາລາວ\0" // pw + "ປາເລສຕາຍ\0" // ps + "ຝຣັ່ງ\0" // fr + "ພອລທູໂກ\0" // pt + "ພານາມາ\0" // pa + "ພາຣາກວຍ\0" // py + "ພູຖານ\0" // bt + "ຟິຈິ\0" // fj + "ຟິນແລນ\0" // fi + "ຟິລິບປິນ\0" // ph + "ມອງໂກເລຍ\0" // mn + "ມອນທາ\0" // mt + "ມອນເຊີຣາດ\0" // ms + "ມອນເຕເນໂກຣ\0" // me + "ມັນດິຟ\0" // mv + "ມາກາວ\0" // mo + "ມາກາວ ເຂດປົກຄອງພິເສດ ຈີນ\0" // mo + "ມາດາກາສະກາ\0" // mg + "ມາຕິນີກ\0" // mq + "ມາຢັອດ\0" // yt + "ມາລາວີ\0" // mw + "ມາລີ\0" // ml + "ມາເລເຊຍ\0" // my + "ມົວຣິຊຽສ\0" // mu + "ມົວຣິເທເນຍ\0" // mr + "ມຽນມາ (ເບີມາ)\0" // mm + "ຢູເຄຣນ\0" // ua + "ຣວັນດາ\0" // rw + "ຣັດເຊຍ\0" // ru + "ລັດເວຍ\0" // lv + "ລາວ\0" // la + "ລິດເທນສະຕາຍ\0" // li + "ລິທົວເນຍ\0" // lt + "ລິເບຍ\0" // ly + "ລິເບີເຣຍ\0" // lr + "ລຸກແຊມເບີກ\0" // lu + "ວານົວຕູ\0" // vu + "ວາລລິສ ແລະ ຟູຕູນາ\0" // wf + "ສະວາຊິແລນ\0" // sz + "ສະວາບາ ແລະ ແຢນ ມາເຢນ\0" // sj + "ສະວິດເຊີແລນ\0" // ch + "ສະວີເດັນ\0" // se + "ສະຫະລັດ\0" // us + "ສະຫະລັດອາຣັບເອມິເຣດ\0" // ae + "ສະຫະລັດຯ\0" // us + "ສະຫະລາດຊະອະນາຈັກ\0" // gb + "ສະຫະລາດຊະອະນາຈັກຯ\0" // gb + "ສະເປນ\0" // es + "ສະໂລວາເກຍ\0" // sk + "ສະໂລເວເນຍ\0" // si + "ສາທາລະນະລັດ ໂດມິນິກັນ\0" // do + "ສາທາລະນະລັດຄອງໂກ\0" // cg + "ສາທາລະນະລັດອາຟຣິກາກາງ\0" // cf + "ສາທາລະນະລັດເຊັກ\0" // cz + "ສາທາລະນະລັດແກມເບຍ\0" // gm + "ສິງກະໂປ\0" // sg + "ສີລັງກາ\0" // lk + "ຫມູ່ເກາະຟອກແລນ\0" // fk + "ຫມູ່ເກາະມາແຊວ\0" // mh + "ຫມູ່ເກາະມາແຊວຕອນເຫນືອ\0" // mp + "ຫມູ່ເກາະແຟໂຣ\0" // fo + "ຫມູ່ເກາະໂກໂກສ\0" // cc + "ຫມູ່ເກາະໂຊໂລມອນ\0" // sb + "ຫມູ່ເກາະໂອລັນ\0" // ax + "ຫວຽດນາມ\0" // vn + "ອອສເຕຣເລຍ\0" // au + "ອອສເທຣຍ\0" // at + "ອັນດໍຣາ\0" // ad + "ອັລຈິເຣຍ\0" // dz + "ອາຟການິດສະຖານ\0" // af + "ອາຟຣິກາໃຕ້\0" // za + "ອາຣູບາ\0" // aw + "ອາເຈນທິນາ\0" // ar + "ອາເຊີໄບຈານ\0" // az + "ອາເມຣິກາ ຊາມົວ\0" // as + "ອາເມເນຍ\0" // am + "ອິຕາລີ\0" // it + "ອິນເດຍ\0" // in + "ອິນໂດເນເຊຍ\0" // id + "ອິສຣາເອວ\0" // il + "ອີທິໂອເປຍ\0" // et + "ອີຢິບ\0" // eg + "ອີຣັກ\0" // iq + "ອີຣານ\0" // ir + "ອຸສເບກິສະຖານ\0" // uz + "ອູການດາ\0" // ug + "ອູຣຸກວຍ\0" // uy + "ຮອນດູຣັສ\0" // hn + "ຮັງກາຣີ\0" // hu + "ຮົງກົງ\0" // hk + "ຮົງກົງ ເຂດປົກຄອງພິເສດ ຈີນ\0" // hk + "ເກຣເນດາ\0" // gd + "ເກາະຄຣິສມາດ\0" // cx + "ເກາະຄລິບເປີຕັນ\0" // cp + "ເກາະນໍໂຟກ\0" // nf + "ເກາະບູເວດ\0" // bv + "ເກາະອາເຊນຊັນ\0" // ac + "ເກີນຊີ\0" // gg + "ເກົາຫລີເໜືອ\0" // kp + "ເກົາຫລີໃຕ້\0" // kr + "ເຂດຢູໂຣບ\0" // ez + "ເຂດຫ່າງໄກໂອຊີເນຍ\0" // qo + "ເຂດແດນທາງໃຕ້ຂອຝຮັ່ງ\0" // tf + "ເຂດແດນອັງກິດໃນມະຫາສະມຸດອິນເດຍ\0" // io + "ເຄນຢາ\0" // ke + "ເຄບ ເວີດ\0" // cv + "ເຈີຊີ\0" // je + "ເຊຍຣາ ລີໂອນ\0" // sl + "ເຊນ ຄິດ ແລະ ເນວິສ\0" // kn + "ເຊນ ບາເທເລມີ\0" // bl + "ເຊນ ປີແອ ມິເກວລອນ\0" // pm + "ເຊນ ມາທິນ\0" // mf + "ເຊນ ລູເຊຍ\0" // lc + "ເຊນ ວິນເຊນ ແລະ ເກຣເນດິນ\0" // vc + "ເຊນ ເຮເລນາ\0" // sh + "ເຊນີໂກລ\0" // sn + "ເຊວຕາ ແລະເມລິນລາ\0" // ea + "ເຊັກເຊຍ\0" // cz + "ເຊີເບຍ\0" // rs + "ເຊົາທູເມ ແລະ ພຣິນຊິບ\0" // st + "ເຊເຊວເລສ\0" // sc + "ເດນມາກ\0" // dk + "ເທີກເມນິສະຖານ\0" // tm + "ເທີຄີ\0" // tr + "ເນປານ\0" // np + "ເນເທີແລນ\0" // nl + "ເບນິນ\0" // bj + "ເບລີຊ\0" // bz + "ເບວບາຣຸສ\0" // by + "ເບວຢຽມ\0" // be + "ເບີກິນາ ຟາໂຊ\0" // bf + "ເບີມິວດາ\0" // bm + "ເປຣູ\0" // pe + "ເພືອໂຕ ຣິໂກ\0" // pr + "ເຟຣນຊ໌ ກຸຍອານາ\0" // gf + "ເຟຣນຊ໌ ໂພລິນີເຊຍ\0" // pf + "ເມັກຊິໂກ\0" // mx + "ເຢຍລະມັນ\0" // de + "ເຢເມນ\0" // ye + "ເຣອູນິຍົງ\0" // re + "ເລບານອນ\0" // lb + "ເລໂຊໂທ\0" // ls + "ເວເນຊູເອລາ\0" // ve + "ເອກວາດໍ\0" // ec + "ເອຄົວໂທຣຽວ ກີນີ\0" // gq + "ເອຣິເທຣຍ\0" // er + "ເອວ ຊໍວາດໍ\0" // sv + "ເອວ ອອບ ແມນ\0" // im + "ເອສໂຕເນຍ\0" // ee + "ແຄນາດາ\0" // ca + "ແຊນ ມາຣິໂນ\0" // sm + "ແຊມເບຍ\0" // zm + "ແມຊິໂດເນຍ\0" // mk + "ແມຊິໂດເນຍ (fyrom)\0" // mk + "ແອງໂກລາ\0" // ao + "ແອນກຸຍລາ\0" // ai + "ແອນຕາດຕິກາ\0" // aq + "ແອນທິກົວ ແລະ ບາບູດາ\0" // ag + "ແອວເບເນຍ\0" // al + "ໂຄຕີ ວົວ\0" // ci + "ໂຄຣເອເທຍ\0" // hr + "ໂຄລົມເບຍ\0" // co + "ໂຄສຕາ ຣິກາ\0" // cr + "ໂຄໂຊໂວ\0" // xk + "ໂຄໂມໂຣສ\0" // km + "ໂຊມາເລຍ\0" // so + "ໂດມີນິຄາ\0" // dm + "ໂຕເກເລົາ\0" // tk + "ໂຕໂກ\0" // tg + "ໂບລິເວຍ\0" // bo + "ໂປແລນ\0" // pl + "ໂມນາໂຄ\0" // mc + "ໂມນໂດວາ\0" // md + "ໂມຣັອກໂຄ\0" // ma + "ໂມແຊມບິກ\0" // mz + "ໂຣແມເນຍ\0" // ro + "ໂອມານ\0" // om + "ໄຊປຣັສ\0" // cy + "ໄຕ້ຫວັນ\0" // tw + "ໄທ\0" // th + "ໄນຈີເຣຍ\0" // ng + "ໄມໂຄຣນີເຊຍ\0" // fm + "ໄອສແລນ\0" // is + "ໄອແລນ\0" // ie + "ໄອໂວຣີ ໂຄທ\0" // ci + "ໄຮຕິ\0" // ht + "ໝູ່ເກາະ ຈໍເຈຍຕອນໃຕ້ ແລະ ແຊນວິດຕອນໃຕ້\0" // gs + "ໝູ່ເກາະ ເຄແມນ\0" // ky + "ໝູ່ເກາະ ເທີກ ແລະ ໄຄໂຄສ\0" // tc + "ໝູ່ເກາະ ເວີຈິນ ຂອງສະຫະລັດ\0" // vi + "ໝູ່ເກາະ ເວີຈິນຂອງອັງກິດ\0" // vg + "ໝູ່ເກາະຄານາຣີ\0" // ic + "ໝູ່ເກາະຄຸກ\0" // ck + "ໝູ່ເກາະພິດແຄນ\0" // pn + "ໝູ່ເກາະຟອກແລນ (ອິສລາສ ມາວິນນາສ)\0" // fk + "ໝູ່ເກາະຮອບນອກຂອງສະຫະລັດຯ\0" // um + "ໝູ່ເກາະເຮີດ & ແມັກໂດນອລ\0" // hm + "ཀ་ཊར\0" // qa + "ཀ་ཏཱར།\0" // qa + "ཀ་ནེ་རི་གླིང་ཚོམ\0" // ic + "ཀ་མེ་རུན།\0" // cm + "ཀ་ཛགས་སཏཱན\0" // kz + "ཀམ་བོ་ཌི་ཡ།\0" // kh + "ཀམ་བྷོ་ཌི་ཡ\0" // kh + "ཀཱུག གླིང་ཕྲེན་རྒྱལ་ཁབ།\0" // ck + "ཀི་རི་བ་ཏི་མཚོ་གླིང\0" // ki + "ཀི་རི་བཱ་ཏི།\0" // ki + "ཀི་ལི་པེར་ཊོན་མཚོ་གླིང་\0" // cp + "ཀིའུ་བྷ\0" // cu + "ཀིར་གིས་སཏཱན\0" // kg + "ཀུ་ཝེཊ\0" // kw + "ཀུ་ཝེད་རྒྱལ་ཁབ།\0" // kw + "ཀུག་གླིང་ཚོམ\0" // ck + "ཀུརོ་ཤི་ཡ།\0" // hr + "ཀེ་ན་ཌ\0" // ca + "ཀེ་མ་རུན\0" // cm + "ཀེ་རི་བི་ཡེན་ནེ་དར་ལནཌས྄\0" // bq + "ཀེན་ཡ\0" // ke + "ཀེཔ་བཱཌ\0" // cv + "ཀོ་ཀོས་གླིང་ཚོམ\0" // cc + "ཀོ་ཊེ་ ཌི་ཨི་ཝོ་རེ\0" // ci + "ཀོ་ཊེ་ཌི། ཨི་ཝོ་རེ།\0" // ci + "ཀོ་མོ་རོས\0" // km + "ཀོ་ལོམ་བི་ཡ།\0" // co + "ཀོ་ལོམ་བྷི་ཡ\0" // co + "ཀོ་ས྄ཊ་རི་ཀ།\0" // cr + "ཀོང་གྷོ ཀིན་ཤ་ས\0" // cd + "ཀོང་གྷོ བྷྲ་ཛ་བིལ\0" // cg + "ཀོས་ཊ་རི་ཀ\0" // cr + "ཀྱཱུར་ར་ཀོ\0" // cw + "ཀྲོ་ཨེ་ཤ\0" // hr + "ཁ་ཛཱག་སྟཱན།\0" // kz + "ཁི་རིསྟ་མེས་མཚོ་གླིང\0" // cx + "ཁིར་གིཛ་སྟཱན།\0" // kg + "ཁེ་ན་ཌ།\0" // ca + "ཁེ་མེན་གླིང་ཕྲན།\0" // ky + "ཁེ་མེན་གླིང་ཚོམ\0" // ky + "ཁེན་ཉི་ཡ།\0" // ke + "ཁྱུའུ་བ།\0" // cu + "གིརཱིན་ལནཌ྄\0" // gl + "གིརིས྄\0" // gr + "གུ་འམ་ མཚོ་གླིང\0" // gu + "གུ་ཨེརྣ་སི\0" // gg + "གུའི་ཡ་ན་ ཕྲནས྄་མངའ་ཁོངས\0" // gf + "གེ་བཽན།\0" // ga + "གོ་ཌེ་ལུ་པེ\0" // gp + "གྲྀ་ན་ཌ\0" // gd + "གྷ་ན\0" // gh + "གྷ་ན།\0" // gh + "གྷ་བྷོན\0" // ga + "གྷ་ཡ་ན\0" // gy + "གྷ་རི་ན་ཌ།\0" // gd + "གྷམ་བི་ཡ།\0" // gm + "གྷི་ནི\0" // gn + "གྷི་ནི་ བྷི་སཱའུ\0" // gw + "གྷི་ནི་ཡ་བིས྄་སོ།\0" // gw + "གྷི་ནི་ཡ།\0" // gn + "གྷི་རཱི་སི།\0" // gr + "གྷུ་ཡཱ་ན།\0" // gy + "གྷེམ་བི་ཡ\0" // gm + "གྷོ་ཊ་མ་ལ\0" // gt + "གྷོ་ཊེ་མ་ལ།\0" // gt + "ཅཱཌ\0" // td + "ཅི་ལི\0" // cl + "ཅི་ལི།\0" // cl + "ཅེཀ་ རི་པབ་ལིཀ\0" // cz + "ཅཻག་སྤྱི་མཐུན་རྒྱལ་ཁབ།\0" // cz + "ཅཻཌ།\0" // td + "ཇ་པཱན\0" // jp + "ཇཱ་མཻ་ཀ\0" // jm + "ཇཱར་མ་ནི\0" // de + "ཇི་བྷུ་ཊི\0" // dj + "ཇིབ་རཱལ་ཊར\0" // gi + "ཇིབ་རཱལ་ཊར།\0" // gi + "ཇེར་སི\0" // je + "ཇོར་ཇི་ཡ།\0" // ge + "ཇོར་ཌན\0" // jo + "ཇོར་ཌན།\0" // jo + "ཇཽར་ཇཱ\0" // ge + "ཉི་ཧོང་\0" // jp + "ཊཱན་ཛཱ་ནི་ཡ\0" // tz + "ཊཱའི་ཝཱན\0" // tw + "ཊཱར་ཀི\0" // tr + "ཊཱརཀ་མེནའི་སཏཱན\0" // tm + "ཊི་ནི་ཌཱཌ་ ཨེནཌ་ ཊོ་བྷེ་གྷོ\0" // tt + "ཊུ་ནི་ཤི་ཡ\0" // tn + "ཊོ་གྷོ\0" // tg + "ཊོང་གྷ\0" // to + "ཌི་ཡེ་གོ་གར་སིའོ\0" // dg + "ཌེ་མོ་ཀེརེ་ཊིཀ་ རི་པབ་ལིཀ་ ཨོཕ་ ཀོང་གྷོ\0" // cd + "ཌེན་མཱཀ\0" // dk + "ཌེན་མཱརྐ།\0" // dk + "ཌོ་མི་ནི་ཀ\0" // dm + "ཌོ་མི་ནི་ཀཱན་ རི་པབ་ལིཀ\0" // do + "ཌོ་མིན་ནི་ཀ།\0" // dm + "ཌོ་མིནནི་ཀན་སྤྱི་མཐུན་རྒྱལ་ཁབ།\0" // do + "ཏ་ཇིག་གི་སཏཱན\0" // tj + "ཏི་་མོར་ལེ་ཨེསཊ\0" // tl + "ཏུ་ཝ་ལུ\0" // tv + "ཏུརཀི།\0" // tr + "ཏུརྐས྄་ ཨེནཌ་ ཀ་ཀོས་གླིང་ཚོམ\0" // tc + "ཏོ་ཀེ་ལའུ་ མཚོ་གླིང\0" // tk + "ཏྲིས་ཏན་ད་ཀུན་ཧ\0" // ta + "ཐཱའི་ལེནཌ\0" // th + "ཐུ་ཝ་ལུ།\0" // tv + "དབྱིན་ཇི་\0" // gb + "ན་མི་བི་ཡ\0" // na + "ན་མི་བི་ཡ།\0" // na + "ནའི་ཇར།\0" // ne + "ནའུ་རུ་\0" // nr + "ནཱའི་ཇཱ\0" // ne + "ནཱའི་ཇི་རི་ཡ\0" // ng + "ནཱའི་ཇི་རི་ཡ།\0" // ng + "ནི་ཀ་ར་གུ་ཨ།\0" // ni + "ནི་ཀྲ་ཝ་ག\0" // ni + "ནི་ཨུ་ཨཻ\0" // nu + "ནིའུ་ཀ་ལི་དོ་ནི་ཡ\0" // nc + "ནིའུ་ཛི་ལན྄ཌ།\0" // nz + "ནིའུ་ཛི་ལེནཌ\0" // nz + "ནིའུ་ཝ།\0" // nu + "ནུ་བ་ས་མོ་འ།\0" // ws + "ནུབ་ཕྱོགས་ ས་ཧཱ་ར\0" // eh + "ནེ་དར་ལནཌས྄\0" // nl + "ནོར་ཕོལཀ་མཚོ་གླིང༌\0" // nf + "ནོར་ཝེ\0" // no + "ནོར་ཝེ།\0" // no + "ནཽ་རུ།\0" // nr + "པ་ཀི་སཏཱན\0" // pk + "པ་ན་མ\0" // pa + "པ་ནཱ་མ།\0" // pa + "པ་པུ་ ནིའུ་གི་ནི\0" // pg + "པ་པུ་ཨ། ནིའུ། གྷི་ནི།\0" // pg + "པ་ར་གུ་ཝའི\0" // py + "པ་ལའུ\0" // pw + "པ་ལཽ།\0" // pw + "པཀི་སྟཱན།\0" // pk + "པཱ་ར་གེ།\0" // py + "པིཊ་ཀེ་ཡེརན་གླིང་ཚོམ\0" // pn + "པུ་འེར་ཊོ་རི་ཁོ\0" // pr + "པེ་རུ\0" // pe + "པེ་རུ།\0" // pe + "པེ་ལིསི་ཊི་ནི་ཡན་ཊེ་རི་ཐོ་རི\0" // ps + "པོ་ལནྜ།\0" // pl + "པོ་ལེནཌ\0" // pl + "པོར་ཅུ་གཱལ\0" // pt + "པོར་ཏུ་གྷལ།\0" // pt + "ཕ་རཱན་སི།\0" // fr + "ཕལྐ་ལནྜ་གླིང་ཕྲན།\0" // fk + "ཕལྐ་ལནྜ་གླིང་ཚོམ\0" // fk + "ཕལྐ་ལནྜ་གླིང་ཚོམ (ཨིས་ལཱས་མལ་བི་ཎཱས)\0" // fk + "ཕཱའེ་རོ་གླིང་ཚོམ\0" // fo + "ཕི་ཇི\0" // fj + "ཕི་ཇི།\0" // fj + "ཕི་ལི་པིནས\0" // ph + "ཕི་ལི་པིནས྄།\0" // ph + "ཕིན་ལན྄ཌ།\0" // fi + "ཕིན་ལེནཌ\0" // fi + "ཕྲནཅ་གི་ལྷོ་ཕྱོགས་མངའ་ཁོངས\0" // tf + "ཕྲཱནས\0" // fr + "ཕྲཱནས྄་ཀྱི་པོ་ལི་ནི་ཤི་ཡ\0" // pf + "བ་ཊི་ཀཱན་ སི་ཊི\0" // va + "བ་རཱ་ཛིལ།\0" // br + "བངྒ་ལ་དེཤ\0" // bd + "བངྒ་ལ་དེཤ།\0" // bd + "བར་མུ་ཌ\0" // bm + "བར་མུ་ཌ།\0" // bm + "བརཀི་ན། ཕསོ།\0" // bf + "བལ་ཡུལ\0" // np + "བལ་ཡུལ་\0" // np + "བཱརྦ་ཌོས྄།\0" // bb + "བཱེ་ནིན།\0" // bj + "བི་དི་ནམ།\0" // vn + "བུ་རུ་ནེ།\0" // bn + "བུ་རུན་ཌི།\0" // bi + "བུལ་ག་རི་ཡ\0" // bg + "བུལ་ག་རི་ཡ།\0" // bg + "བེ་ནི་ཛུ་ཝེ་ལ\0" // ve + "བེ་ལིཛ།\0" // bz + "བེ་ལུ་རུ་སུ།\0" // by + "བེཊ་ནཱམ\0" // vn + "བེལ་ཇི་ཡམ།\0" // be + "བེལ་ཨ་རུ་སུ\0" // by + "བོ་ལི་ཝིཡ།\0" // bo + "བོཙ་ཝ་ན།\0" // bw + "བོའུ་ཝེཊ་མཚོ་གླིང\0" // bv + "བོསྣི་ཡ་དང་ཧརྫོ་གོ་ཝི་ན།\0" // ba + "བྱང་ ཀོ་རི་ཡ\0" // kp + "བྱང་ཕྱོགས་ཀྱི་མ་ར་ཡ་ན་གླིང་ཚོམ\0" // mp + "བྲ་ཛིལ\0" // br + "བྲི་ཊིཤ་རྒྱ་གར་གྱི་རྒྱ་མཚོ་ས་ཁོངས\0" // io + "བྷ་རེན\0" // bh + "བྷ་ཧ་མས྄\0" // bs + "བྷར་ཀི་ན་ ཕེ་སོ\0" // bf + "བྷར་བེ་ཌོས\0" // bb + "བྷཱ་མས྄།\0" // bs + "བྷཱ་རེན།\0" // bh + "བྷུ་རུན་ཌི\0" // bi + "བྷེ་ནིན\0" // bj + "བྷེ་ལི་བི་ཡ\0" // bo + "བྷེ་ལིཛ\0" // bz + "བྷེལ་ཇམ\0" // be + "བྷོཙ་ཝ་ན\0" // bw + "བྷོས་ནི་ཡ་ ཨེནཌ་ ཧར་ཛི་གྷོ་བི་ན\0" // ba + "བྷྲུ་ནའི\0" // bn + "མ་དཱ་གེས་ཀར\0" // mg + "མ་དཱ་གྷསྐཱར།\0" // mg + "མ་ལ་ཝི\0" // mw + "མ་ལི།\0" // ml + "མ་ལེ་ཤི་ཡ\0" // my + "མ་ལེ་ཤི་ཡ།\0" // my + "མ་སེ་ཌོ་ནི་ཡ\0" // mk + "མ་སེ་ཌོ་ནི་ཡ་ (ཡུ་གོ་སླཱ་བི་ཡ)\0" // mk + "མཀ་ཨའུ\0" // mo + "མཀ་ཨའུ་ཅཱའི་ན\0" // mo + "མའི་ཀྲོ་ནི་ཤི་ཡ\0" // fm + "མར་ཤེལ་གླིང་ཚོམ\0" // mh + "མལ་ཊ།\0" // mt + "མལ་དྭིབ།\0" // mv + "མཱ་ལཱ་ཝི།\0" // mw + "མཱ་ལི\0" // ml + "མཱར་ཊི་ནིཀ\0" // mq + "མཱར་ཤལ་གླིང་ཕྲེན།\0" // mh + "མཱལ་ཊ\0" // mt + "མཱལ་དིབས\0" // mv + "མི་ཡཱན་མར་ (བྷར་མ)\0" // mm + "མེ་ཀའོ།\0" // mo + "མེ་ཡོཊ\0" // yt + "མེཀ་སི་ཀོ\0" // mx + "མེཀ་སི་ཀོ།\0" // mx + "མོ་ན་ཀོ\0" // mc + "མོ་ན་ཀོ།\0" // mc + "མོ་ཛམ་བིག།\0" // mz + "མོ་ཛམ་བྷིཀ\0" // mz + "མོ་རི་ཊེ་ནི་ཡ\0" // mr + "མོ་རི་ཤཱས\0" // mu + "མོ་རོ་ཀོ\0" // ma + "མོ་རོ་ཀྐོ།\0" // ma + "མོན་ཊི་ནེག་རོ\0" // me + "མོན་ས་རཊ\0" // ms + "མོལ་དོ་བཱ\0" // md + "མཽ་རི་ཏ་ནི་ཡ།\0" // mr + "མཽ་རིཤས྄།\0" // mu + "ཛ་མེ་ཀ།\0" // jm + "ཛམ་བི་ཡ།\0" // zm + "ཛམ་བྷི་ཡ\0" // zm + "ཛི་བུ་ཏི།\0" // dj + "ཛིམ་བྷབ་ཝེ\0" // zw + "ཛིམ་བྷཱ་བེ།\0" // zw + "ཝ་ནུ་ཨ་ཏུ\0" // vu + "ཝ་ནུ་ཨ་ཐུ།\0" // vu + "ཝརཇིན་གླིང་ཚོམ་ བྲཱི་ཊིཤ་མངའ་ཁོངས\0" // vg + "ཝརཇིན་གླིང་ཚོམ་ ཡུ་ཨེས་ཨེ་མངའ་ཁོངས\0" // vi + "ཝལ་ལིས྄་ ཨེནཌ་ ཕུ་ཏུ་ན་\0" // wf + "ཝེ་ཊི་ཀན།\0" // va + "ཝེ་ནི་ཛུའེ་ལ།\0" // ve + "འཇར་མན་\0" // de + "འབར་མ།\0" // mm + "འབྲུག\0" // bt + "འབྲུག་ཡུལ།\0" // bt + "འཛམ་གླིང་ལྷོ་མཐའི་ཁྱགས་གླིང\0" // aq + "ཡུ་ཀརེན\0" // ua + "ཡུ་ཀྲན།\0" // ua + "ཡུ་གན་ཌ།\0" // ug + "ཡུ་གྷན་ཌ\0" // ug + "ཡུ་ནཱའི་ཊེཌ་ ཀིང་ཌམ\0" // gb + "ཡུ་ནཱའི་ཊེཌ་ ཨ་རབ་ ཨེ་མེ་རེཊས\0" // ae + "ཡུ་རུ་གུ་ཝའི\0" // uy + "ཡུ་ཨེས་གྱི་མཐའ་མཚམས་མཚོ་གླིང་\0" // um + "ཡུ་ཨེས་ཨེ\0" // us + "ཡེ་མེན\0" // ye + "ཡེ་མེན།\0" // ye + "རི་པབ་ལིཀ་ ཨོཕ་ ཀོང་གྷོ\0" // cg + "རུ་ཝན་ཌ\0" // rw + "རུ་ཝན་ཌ།\0" // rw + "རེ་ཡུ་ནི་ཡོན\0" // re + "རོ་མཱ་ནིཡ།\0" // ro + "རོ་མེ་ནི་ཡ\0" // ro + "རྒྱ་གར\0" // in + "རྒྱ་གར་\0" // in + "རྒྱ་ནག\0" // cn + "ལཀ་ཛམ་བོརྒ།\0" // lu + "ལག་ཛམ་བོརྒ\0" // lu + "ལཊ་བི་ཡ\0" // lv + "ལཏ་བི་ཡ།\0" // lv + "ལཱ་ཝོས\0" // la + "ལཱ་འོས།\0" // la + "ལཱའི་བེ་རི་ཡ\0" // lr + "ལི་ཐུ་ཝེ་ནི་ཡ\0" // lt + "ལི་ཐུ་ཨེ་ནི་ཡ།\0" // lt + "ལི་བི་ཡ\0" // ly + "ལི་བི་ཡ།\0" // ly + "ལི་བེ་རི་ཡ།\0" // lr + "ལིཀ་ཏནས་ཏ་ཡིན\0" // li + "ལེ་བ་ནོན\0" // lb + "ལེ་སོ་ཐོ།\0" // ls + "ལེག་ཏེན་ཚིན།\0" // li + "ལེབ་ནོན།\0" // lb + "ལཻ་སོ་ཐོ\0" // ls + "ལྷོ་ ཀོ་རི་ཡ\0" // kr + "ལྷོ་ ཨཕྲི་ཀ།\0" // za + "ལྷོ་ཀོ་རི་ཡ།\0" // kr + "ལྷོ་རྩེའི་མཐའ་གླིང་།\0" // aq + "ཤར་ཕྱོགས་ཏི་་མོར\0" // tl + "ཤྲཱི་ལང་ཀ\0" // lk + "ཤྲཱི་ལངྐ་།\0" // lk + "ས་མོ་ཨ\0" // ws + "ས་མོ་ཨ་ཡུ་ཨེས་ཨེ་མངའ་ཁོངས\0" // as + "ས་འོ་ཏོད་མད། དང༌། པ྄རིན་སི་པེ།\0" // st + "ས་ལཽ་ཝཀྱ།\0" // sk + "ས་ལཽ་ཝེ་ནི་ཡ།\0" // si + "སན་མེ་རི་ནོ།\0" // sm + "སཝ་ ཊོ་མེ་ ཨེནཌ་ པྲྀན་སི་པེ\0" // st + "སཱ་ཤཻལ།\0" // sc + "སཱན་མ་རི་ནོ\0" // sm + "སཱཝ་དི་ ཨ་རེ་བྷི་ཡ\0" // sa + "སཱའི་པྲས\0" // cy + "སཱའུཐ་ སུ་ཌཱན\0" // ss + "སཱའུཐ་ ཨཕ་རི་ཀ\0" // za + "སཱའུཐ་ཇཽར་ཇཱ་ དང་ སཱའུཐ་སེནཌ྄་ཝིཅ་གླིང་ཚོམ\0" // gs + "སཱཡེ་པ་རས྄།\0" // cy + "སཱར་བྷི་ཡ\0" // rs + "སི་པན།\0" // es + "སི་ར་ ལི་འོན\0" // sl + "སི་རི་ཡ\0" // sy + "སིང་ག་པོར\0" // sg + "སིངྒ་པུར།\0" // sg + "སིནཊ་ མཱར་ཊེན\0" // sx + "སིནཊ་པི་ཡེར་ ཨེནཌ་ མིཀོ་ལེན\0" // pm + "སུ་ཌཱན\0" // sd + "སུ་དཱན།\0" // sd + "སུ་ཝ་ཛི་ལེནཌ\0" // sz + "སུ་ཝིཊ་ཛར་ལེནཌ\0" // ch + "སུ་རི་ནཱམ\0" // sr + "སུ་རི་ནཱམ།\0" // sr + "སུ་ལོ་བཱ་ཀི་ཡ\0" // sk + "སུ་ལོ་བི་ནི་ཡ\0" // si + "སུའི་ཌེན\0" // se + "སེ་ནི་གྷལ\0" // sn + "སེ་ནི་གྷལ།\0" // sn + "སེ་ཡར་ར། ལིའོན།\0" // sl + "སེ་ཤཱལས\0" // sc + "སེ་ཨུ་ཏ་ ཨེནཌ་ མེལ་ལི་ལ\0" // ea + "སེན་ཊལ་ ཨཕ་རི་ཀཱན་ རི་པབ་ལིཀ\0" // cf + "སེནཊ་ ཀིཊས་ དང་ ནེ་བིས\0" // kn + "སེནཊ་ བར་ཐོ་ལོམ་མིའུ\0" // bl + "སེནཊ་ མཱར་ཊིན\0" // mf + "སེནཊ་ ལུ་སི་ཡ\0" // lc + "སེནཊ་ ཧེ་ལི་ན\0" // sh + "སེནཊ་ཝིན་སེནཌ྄ ཨེནཌ་ གི་རེ་ན་དིནས྄\0" // vc + "སེནྚ། ཀིཊྚས྄། དང༌། ནེ་བིས྄།\0" // kn + "སེནྚ། ཝིན་སན། དང༌། གྷིརིན་ཌིན།\0" // vc + "སེནྚ། ལུ་ཤི་ཡ།\0" // lc + "སེནྚ། ཧེ་ལི་ན།\0" // sh + "སེར་བི་ཡ།\0" // rs + "སོ་མ་ལི་ཡ\0" // so + "སོ་མཱལི་ཡ།\0" // so + "སོ་ལོ་མོན་ གླིང་ཚོམ\0" // sb + "སོ་ལོ་མོན། གླིང་ཕྲན་ཚོ་ཁག།\0" // sb + "སོག་པོ་ཡུལ\0" // mn + "སོག་ཡུལ།\0" // mn + "སཽ་དྷི་ཨ་རཱ་བི་ཡ།\0" // sa + "སྭཱལ་བྷརྡ་ ཨེནཌ་ ཇཱན་མ་ཡེན\0" // sj + "ཧངྒ་རི།\0" // hu + "ཧའོ་ལན།\0" // nl + "ཧཱང་གྷ་རི\0" // hu + "ཧཱན་ཌུ་རཱས྄\0" // hn + "ཧཱརཌ་མཚོ་གླིང་ དང་ མེཀ་ཌོ་ནལཌ྄་གླིང་ཚོམ\0" // hm + "ཧེ་ཊི\0" // ht + "ཧེ་ཏི།\0" // ht + "ཧོང་ཀོང\0" // hk + "ཧོང་ཀོང་ཅཱའི་ན\0" // hk + "ཧོང་ཀོང༌།\0" // hk + "ཧོན་དུ་རས྄།\0" // hn + "ཧྲུད་ཧྲི།\0" // ch + "ཧྲུའི་ཏན།\0" // se + "ཨ་མེ་རི་ཀ།\0" // us + "ཨ་ཛར་བྷའི་ཇཱན\0" // az + "ཨ་ཡར་ལནཌ།\0" // ie + "ཨ་ཡུལ་ ཨོཕ་ མཱན\0" // im + "ཨ་རབ། ཨི་མི་རཊ྄། ཆིག་སྒྲིལ་རྒྱལ་ཁབ།\0" // ae + "ཨ་རུ་བ།\0" // aw + "ཨ་རུ་བཱ\0" // aw + "ཨ་ལནཌ་གླིང་ཚོམ\0" // ax + "ཨ་ཨི་སི་ལནད།\0" // is + "ཨང་གི་ལ\0" // ai + "ཨང་གུའི་ལ།\0" // ai + "ཨང་གཽ་ལ།\0" // ao + "ཨང་གྷོ་ལ\0" // ao + "ཨན་ཊི་གུ་ཝ་ ཨེནཌ་ བྷར་བྷུ་ཌ\0" // ag + "ཨཕ་ག་ནི་སྟཱན།\0" // af + "ཨཕ་གྷ་ནི་སཏཱན\0" // af + "ཨཛར་བཡེ་ཇན།\0" // az + "ཨར་ཇེན་ཊི་ན\0" // ar + "ཨར་ཇེན་ཊི་ན།\0" // ar + "ཨར་མི་ནི་ཡ\0" // am + "ཨར་མེ་ནི་ཡ།\0" // am + "ཨལ་ཇི་རི་ཡ།\0" // dz + "ཨལ་བཱ་ནི་ཡ།\0" // al + "ཨསྟྲི་ཡ།\0" // at + "ཨསྟྲེ་ལི་ཡ།\0" // au + "ཨཱ་ཡ་ལེནཌ\0" // ie + "ཨཱན་དོ་ར\0" // ad + "ཨཱའིས་ལེནཌ\0" // is + "ཨཱལ་ཇི་རི་ཡ\0" // dz + "ཨཱལ་བེ་ནི་ཡ\0" // al + "ཨཱོས་ཊྲི་ཡ\0" // at + "ཨཱོས་ཊྲེལ་ལི་ཡ\0" // au + "ཨི་ཀྲར་ལི་\0" // it + "ཨི་ཁྭ་ཌོར།\0" // ec + "ཨི་ཇིབཊ\0" // eg + "ཨི་ཇིབྚ།\0" // eg + "ཨི་ཊ་ལི\0" // it + "ཨི་ཐི་ཡོ་པི་ཡ\0" // et + "ཨི་ཐིའོ་པི་ཡ།\0" // et + "ཨི་ཛ྄་རེལ།\0" // il + "ཨི་ཝོ་རི་ཀོསཊ\0" // ci + "ཨི་རག།\0" // iq + "ཨི་རཱཀ\0" // iq + "ཨི་རཱན\0" // ir + "ཨི་རཱན།\0" // ir + "ཨིན་ཌོ་ནེ་ཤི་ཡ\0" // id + "ཨིན་ཌོ་ནེ་ཤི་ཡ།\0" // id + "ཨིས་པེན\0" // es + "ཨིས་ར་ཡེལ\0" // il + "ཨིསྟོ་ནི་ཡ།\0" // ee + "ཨུ་རུ་གྷེ།\0" // uy + "ཨུ་རུ་སུ\0" // ru + "ཨུ་རུ་སུ་\0" // ru + "ཨུཛ་བེ་ཀིསྟཱན།\0" // uz + "ཨུས་བེག་གི་སཏཱན\0" // uz + "ཨེ་ཀུ་ཊོ་རེལ་ གི་ནི\0" // gq + "ཨེ་ཁྭ་ཌོར\0" // ec + "ཨེ་རི་ཊྲེ་ཡ\0" // er + "ཨེ་རི་ཏྲེ་ཨ།\0" // er + "ཨེ་སེན་ཤུན་ཚོ་གླིང༌\0" // ac + "ཨེན་ཊི་གུ་དང་། བྷར་བུ་ཌ།\0" // ag + "ཨེན་ཌོ་ར།\0" // ad + "ཨེལ་སལ་བ་ཌོར\0" // sv + "ཨེལ། སཱལ་ཝ་ཌོར།\0" // sv + "ཨེས་ཊོ་ནི་ཡ\0" // ee + "ཨོ་མན།\0" // om + "ཨོ་མཱན\0" // om + "ཨོཤི་ཡཱན་ན་གྱི་མཐའ་མཚམས\0" // qo + "ကင်ညာ\0" // ke + "ကင်မရွန်း\0" // cm + "ကနေဒါ\0" // ca + "ကနေရီ ကျွန်းစု\0" // ic + "ကမ္ဘောဒီးယား\0" // kh + "ကလစ်ပါတန်ကျွန်း\0" // cp + "ကာဂျစ္စတန်\0" // kg + "ကာဇက်စတန်\0" // kz + "ကာတာ\0" // qa + "ကာရစ်ဘီယံ နယ်သာလန်\0" // bq + "ကိတ်ဗာဒီ\0" // cv + "ကိုကိုးကျွန်း\0" // cc + "ကိုဆိုဗို\0" // xk + "ကိုမိုရိုစ်\0" // km + "ကိုလံဘီယာ\0" // co + "ကို့စ်တာရီကာ\0" // cr + "ကို့တ် ဒီဗွာ\0" // ci + "ကူဝိတ်\0" // kw + "ကေမန် ကျွန်းစု\0" // ky + "ကျူရေးကိုးစ်\0" // cw + "ကျူးဘား\0" // cu + "ကွတ် ကျွန်းစု\0" // ck + "ကွန်ဂို\0" // cd + "ကွန်ဂို ဒီမိုကရက်တစ် သမ္မတနိုင်ငံ\0" // cd + "ကွန်ဂို သမ္မတနိုင်ငံ\0" // cg + "ကွန်ဂို-ဘရာဇာဗီးလ်\0" // cg + "ခရစ်စမတ် ကျွန်း\0" // cx + "ခရိုအေးရှား\0" // hr + "ခီရီဘာတီ\0" // ki + "ချက် ပြည်ထောင်စု\0" // cz + "ချက်ကီယား\0" // cz + "ချဒ်\0" // td + "ချီလီ\0" // cl + "ဂမ်ဘီရာ\0" // gm + "ဂရင်းလန်း\0" // gl + "ဂရိ\0" // gr + "ဂရီနေဒါ\0" // gd + "ဂါနာ\0" // gh + "ဂါဘွန်\0" // ga + "ဂိုင်ယာနာ\0" // gy + "ဂီနီ\0" // gn + "ဂီနီ-ဘီစော\0" // gw + "ဂူအမ်\0" // gu + "ဂျပန်\0" // jp + "ဂျမေကာ\0" // jm + "ဂျာစီ\0" // je + "ဂျာမနီ\0" // de + "ဂျီဘရော်လ်တာ\0" // gi + "ဂျီဘူတီ\0" // dj + "ဂျော်ဂျီယာ\0" // ge + "ဂျော်ဒန်\0" // jo + "ဂွန်းဇီ\0" // gg + "ဂွါတီမာလာ\0" // gt + "ဂွါဒီလု\0" // gp + "စင့်မာတင်\0" // sx + "စင်္ကာပူ\0" // sg + "စပိန်\0" // es + "စဗိုလ်ဘတ်နှင့်ဂျန်မေရန်\0" // sj + "စိန့်ကစ်နှင့်နီဗီစ်\0" // kn + "စိန့်ပီအဲရ်နှင့် မီကွီလွန်\0" // pm + "စိန့်ဗင်းဆင့်နှင့် ဂရိနေဒိုင်\0" // vc + "စိန့်ဘာသယ်လ်မီ\0" // bl + "စိန့်မာတင်\0" // mf + "စိန့်လူစီယာ\0" // lc + "စိန့်ဟယ်လယ်နာ\0" // sh + "ဆန်မာရီနို\0" // sm + "ဆမိုးအား\0" // ws + "ဆယ်ဥတာနှင့်မယ်လီလ်လာ\0" // ea + "ဆလိုဗက်ကီးယား\0" // sk + "ဆလိုဗေးနီးယား\0" // si + "ဆားဘီးယား\0" // rs + "ဆိုက်ပရပ်စ်\0" // cy + "ဆိုမာလီယာ\0" // so + "ဆီနီဂေါ\0" // sn + "ဆီယာရာ လီယွန်း\0" // sl + "ဆီးရီးယား\0" // sy + "ဆူဒန်\0" // sd + "ဆူရာနမ်\0" // sr + "ဆောင်တူမေးနှင့် ပရင်စီပီ\0" // st + "ဆော်ဒီအာရေးဘီးယား\0" // sa + "ဆော်လမွန်ကျွန်းစု\0" // sb + "ဆေးရှဲ\0" // sc + "ဆွစ်ဇာလန်\0" // ch + "ဆွာဇီလန်\0" // sz + "ဆွီဒင်\0" // se + "ဇင်ဘာဘွေ\0" // zw + "ဇမ်ဘီယာ\0" // zm + "တခ်စ်နှင့်ကာအီကိုစ်ကျွန်းစု\0" // tc + "တန်ဇန်းနီးယား\0" // tz + "တရုတ်\0" // cn + "တာဂျီကစ္စတန်\0" // tj + "တာ့ခ်မင်နစ္စတန်\0" // tm + "တိုကလောင်\0" // tk + "တိုဂို\0" // tg + "တူနီးရှား\0" // tn + "တူဗားလူ\0" // tv + "တူရကီ\0" // tr + "တောင် ဂျော်ဂျီယာ နှင့် တောင် ဆင်းဒဝစ်ဂျ် ကျွန်းစုများ\0" // gs + "တောင် ဆူဒန်\0" // ss + "တောင်ကိုရီးယား\0" // kr + "တောင်ပိုင်းမာရီအာနာကျွန်းစု\0" // mp + "တောင်အာဖရိက\0" // za + "တွန်ဂါ\0" // to + "ထရစ္စတန် ဒါ ကွန်ဟာ\0" // ta + "ထရီနီဒတ်နှင့် တိုဘက်ဂို\0" // tt + "ထိုင်ဝမ်\0" // tw + "ထိုင်း\0" // th + "ဒိန်းမတ်\0" // dk + "ဒိုမီနီကန်\0" // do + "ဒိုမီနီကာ\0" // dm + "ဒီအဲဂိုဂါစီရာ\0" // dg + "နမီးဘီးယား\0" // na + "နယူး ကယ်လီဒိုနီးယား\0" // nc + "နယူးဇီလန်\0" // nz + "နယ်သာလန်\0" // nl + "နိုင်ဂျာ\0" // ne + "နိုင်ဂျီးရီးယား\0" // ng + "နီကာရာဂွါ\0" // ni + "နီပေါ\0" // np + "နီဥူအေ\0" // nu + "နောဖုတ်ကျွန်း\0" // nf + "နော်ရူး\0" // nr + "နော်ဝေ\0" // no + "ပစ်တ်ကိန်းကျွန်းစု\0" // pn + "ပနားမား\0" // pa + "ပလာအို\0" // pw + "ပါကစ္စတန်\0" // pk + "ပါပူအာ နယူးဂီနီ\0" // pg + "ပါရာဂွေး\0" // py + "ပါလက်စတိုင်း\0" // ps + "ပါလက်စတိုင်း ပိုင်နက်\0" // ps + "ပိုလန်\0" // pl + "ပီရူး\0" // pe + "ပေါ်တိုရီကို\0" // pr + "ပေါ်တူဂီ\0" // pt + "ပြင်သစ်\0" // fr + "ပြင်သစ် ဂီယာနာ\0" // gf + "ပြင်သစ် တောင်ပိုင်း ပိုင်နက်များ\0" // tf + "ပြင်သစ် ပေါ်လီနီးရှား\0" // pf + "ဖင်လန်\0" // fi + "ဖာရိုး ကျွန်းစုများ\0" // fo + "ဖိလစ်ပိုင်\0" // ph + "ဖီဂျီ\0" // fj + "ဖော့ကလန် ကျွန်းစု\0" // fk + "ဖော့ကလန် ကျွန်းစု (အီလားစ် မောလ်ဗီနာစ်)\0" // fk + "ဗင်နီဇွဲလား\0" // ve + "ဗနွားတူ\0" // vu + "ဗဟို အာဖရိက ပြည်ထောင်စု\0" // cf + "ဗာတီကန်စီးတီး\0" // va + "ဗီယက်နမ်\0" // vn + "ဗြိတိသျှ ဗာဂျင်း ကျွန်းစု\0" // vg + "ဗြိတိသျှပိုင် အိန္ဒိယသမုဒ္ဒရာကျွန်းများ\0" // io + "ဘင်္ဂလားဒေ့ရှ်\0" // bd + "ဘယ်လ်ဂျီယမ်\0" // be + "ဘရာဇီး\0" // br + "ဘရူနိုင်း\0" // bn + "ဘလိဇ်\0" // bz + "ဘဟားမား\0" // bs + "ဘာကီးနား ဖားဆို\0" // bf + "ဘာဘေးဒိုးစ်\0" // bb + "ဘာမြူဒါ\0" // bm + "ဘာရိန်း\0" // bh + "ဘိုလီးဗီးယား\0" // bo + "ဘီနင်\0" // bj + "ဘီလာရုစ်\0" // by + "ဘူတန်\0" // bt + "ဘူဗက်ကျွန်း\0" // bv + "ဘူရွန်ဒီ\0" // bi + "ဘူလ်ဂေးရီးယား\0" // bg + "ဘော့စနီးယားနှင့် ဟာဇီဂိုဗီနား\0" // ba + "ဘော့ဆွာနာ\0" // bw + "မကာအို\0" // mo + "မကာအို (တရုတ်ပြည်)\0" // mo + "မက္ကဆီကို\0" // mx + "မက်ဆီဒိုးနီးယား\0" // mk + "မက်ဆီဒိုးနီးယား (ယခင် ယူဂိုစလားဗီးယား မက်ဆီဒိုးနီးယားပြည်ထောင်စု)\0" // mk + "မဒါဂတ်စကား\0" // mg + "မန်ကျွန်း\0" // im + "မလေးရှား\0" // my + "မာတီနိခ်\0" // mq + "မာရှယ် ကျွန်းစု\0" // mh + "မာလာဝီ\0" // mw + "မာလီ\0" // ml + "မိုင်ခရိုနီရှား\0" // fm + "မိုဇမ်ဘစ်\0" // mz + "မိုနာကို\0" // mc + "မေယော့\0" // yt + "မောင့်စဲရက်\0" // ms + "မောရစ်ရှ\0" // mu + "မောလ်တာ\0" // mt + "မောလ်ဒိုဗာ\0" // md + "မော်ရိုကို\0" // ma + "မော်ရီတေးနီးယား\0" // mr + "မော်လ်ဒိုက်\0" // mv + "မြန်မာ\0" // mm + "မြောက်ကိုရီးယား\0" // kp + "မွန်ဂိုးလီးယား\0" // mn + "မွန်တီနိဂရိုး\0" // me + "ယီမင်\0" // ye + "ယူကရိန်း\0" // ua + "ယူကေ\0" // gb + "ယူဂန်းဒါး\0" // ug + "ယူနိုက်တက်ကင်းဒမ်း\0" // gb + "ယူနိုက်တက်စတိတ် ကျွန်းနိုင်ငံများ\0" // um + "ယူအက်စ်\0" // us + "ယူအက်စ် ဗာဂျင်း ကျွန်းစု\0" // vi + "ယူအေအီး\0" // ae + "ရဝန်ဒါ\0" // rw + "ရိုမေးနီးယား\0" // ro + "ရီယူနီယန်\0" // re + "ရုရှား\0" // ru + "လက်ဘနွန်\0" // lb + "လစ်တန်စတိန်း\0" // li + "လစ်ဗျား\0" // ly + "လစ်သူယေးနီးယား\0" // lt + "လတ်ဗီးယား\0" // lv + "လာအို\0" // la + "လိုက်ဘေးရီးယား\0" // lr + "လီဆိုသို\0" // ls + "လူဇင်ဘတ်\0" // lu + "ဝေါလစ်နှင့် ဖူကျူးနား\0" // wf + "သမုဒ္ဒရာ အပြင်ဘက်ရှိ ကျွန်းနိုင်ငံများ\0" // qo + "သီရိလင်္ကာ\0" // lk + "ဟတ်ကျွန်းနှင့်မက်ဒေါနယ်ကျွန်းစု\0" // hm + "ဟန်ဂေရီ\0" // hu + "ဟေတီ\0" // ht + "ဟောင်ကောင်\0" // hk + "ဟောင်ကောင် (တရုတ်ပြည်)\0" // hk + "ဟွန်ဒူးရပ်စ်\0" // hn + "အက်စတိုးနီးယား\0" // ee + "အင်ဒိုနီးရှား\0" // id + "အစ္စရေး\0" // il + "အဆန်းရှင်းကျွန်း\0" // ac + "အဇာဘိုင်ဂျန်\0" // az + "အနောက် ဆာဟာရ\0" // eh + "အန္တာတိက\0" // aq + "အန်ဂိုလာ\0" // ao + "အန်ဂီလာ\0" // ai + "အန်တီဂွါနှင့် ဘာဘူဒါ\0" // ag + "အန်ဒိုရာ\0" // ad + "အမေရိကန် ဆမိုးအား\0" // as + "အမေရိကန် ပြည်ထောင်စု\0" // us + "အယ်လ်ဂျီးရီးယား\0" // dz + "အယ်လ်ဆာဗေးဒိုး\0" // sv + "အယ်လ်ဘေးနီးယား\0" // al + "အရှေ့တီမော\0" // tl + "အာဂျင်တီးနား\0" // ar + "အာဖဂန်နစ္စတန်\0" // af + "အာမေးနီးယား\0" // am + "အာရူးဗား\0" // aw + "အာလန်ကျွန်း\0" // ax + "အိန္ဒိယ\0" // in + "အိုက်စလန်\0" // is + "အိုင်ဗရီကို့စ်\0" // ci + "အိုင်ယာလန်\0" // ie + "အိုမန်\0" // om + "အီကွေတာ ဂီနီ\0" // gq + "အီကွေဒေါ\0" // ec + "အီဂျစ်\0" // eg + "အီတလီ\0" // it + "အီရတ်\0" // iq + "အီရန်\0" // ir + "အီရီထရီးယား\0" // er + "အီသီယိုးပီးယား\0" // et + "ဥဇဘက်ကစ္စတန်\0" // uz + "ဥရုဂွေး\0" // uy + "ဥရောပဒေသ\0" // ez + "ဩစတြီးယား\0" // at + "ဩစတြေးလျ\0" // au + "ავსტრალია\0" // au + "ავსტრია\0" // at + "ავღანეთი\0" // af + "აზერბაიჯანი\0" // az + "ალანდის კუნძულები\0" // ax + "ალბანეთი\0" // al + "ალჟირი\0" // dz + "ამაღლების კუნძული\0" // ac + "ამერიკის სამოა\0" // as + "ამერიკის შეერთებული შტატები\0" // us + "ანგვილა\0" // ai + "ანგოლა\0" // ao + "ანდორა\0" // ad + "ანტარქტიკა\0" // aq + "ანტიგუა და ბარბუდა\0" // ag + "არაბთა გაერთიანებული საამიროები\0" // ae + "არგენტინა\0" // ar + "არუბა\0" // aw + "აღმოსავლეთ ტიმორი\0" // tl + "აშშ\0" // us + "აშშ-ის ვირჯინის კუნძულები\0" // vi + "აშშ-ის შორეული კუნძულები\0" // um + "ახალი ზელანდია\0" // nz + "ახალი კალედონია\0" // nc + "ბანგლადეში\0" // bd + "ბარბადოსი\0" // bb + "ბაჰამის კუნძულები\0" // bs + "ბაჰრეინი\0" // bh + "ბელარუსი\0" // by + "ბელგია\0" // be + "ბელიზი\0" // bz + "ბენინი\0" // bj + "ბერმუდა\0" // bm + "ბოლივია\0" // bo + "ბოსნია და ჰერცეგოვინა\0" // ba + "ბოტსვანა\0" // bw + "ბრაზილია\0" // br + "ბრიტანეთის ვირჯინის კუნძულები\0" // vg + "ბრიტანეთის ტერიტორია ინდოეთის ოკეანეში\0" // io + "ბრუნეი\0" // bn + "ბუვე\0" // bv + "ბულგარეთი\0" // bg + "ბურკინა-ფასო\0" // bf + "ბურუნდი\0" // bi + "ბუტანი\0" // bt + "გაბონი\0" // ga + "გაერთ.სამ.\0" // gb + "გაერთიანებული სამეფო\0" // gb + "გაიანა\0" // gy + "გამბია\0" // gm + "განა\0" // gh + "გერმანია\0" // de + "გერნსი\0" // gg + "გვადელუპა\0" // gp + "გვატემალა\0" // gt + "გვინეა\0" // gn + "გვინეა-ბისაუ\0" // gw + "გიბრალტარი\0" // gi + "გრენადა\0" // gd + "გრენლანდია\0" // gl + "გუამი\0" // gu + "დანია\0" // dk + "დასავლეთ საჰარა\0" // eh + "დიეგო-გარსია\0" // dg + "დომინიკა\0" // dm + "დომინიკელთა რესპუბლიკა\0" // do + "ეგვიპტე\0" // eg + "ევროზონა\0" // ez + "ეთიოპია\0" // et + "ეკვადორი\0" // ec + "ეკვატორული გვინეა\0" // gq + "ერაყი\0" // iq + "ერიტრეა\0" // er + "ესპანეთი\0" // es + "ესტონეთი\0" // ee + "ვანუატუ\0" // vu + "ვენესუელა\0" // ve + "ვიეტნამი\0" // vn + "ზამბია\0" // zm + "ზიმბაბვე\0" // zw + "თერქს-ქაიქოსის კუნძულები\0" // tc + "თურქეთი\0" // tr + "თურქმენეთი\0" // tm + "იამაიკა\0" // jm + "იაპონია\0" // jp + "იემენი\0" // ye + "ინდოეთი\0" // in + "ინდონეზია\0" // id + "იორდანია\0" // jo + "ირანი\0" // ir + "ირლანდია\0" // ie + "ისლანდია\0" // is + "ისრაელი\0" // il + "იტალია\0" // it + "კაბო-ვერდე\0" // cv + "კაიმანის კუნძულები\0" // ky + "კამბოჯა\0" // kh + "კამერუნი\0" // cm + "კანადა\0" // ca + "კანარის კუნძულები\0" // ic + "კარიბის ნიდერლანდები\0" // bq + "კატარი\0" // qa + "კენია\0" // ke + "კვიპროსი\0" // cy + "კირიბატი\0" // ki + "კიურასაო\0" // cw + "კლიპერტონის კუნძული\0" // cp + "კოლუმბია\0" // co + "კომორის კუნძულები\0" // km + "კონგო (კონგოს დემოკრატიული რესპუბლიკა)\0" // cd + "კონგო (რესპუბლიკა)\0" // cg + "კონგო - ბრაზავილი\0" // cg + "კონგო - კინშასა\0" // cd + "კოსოვო\0" // xk + "კოსტა-რიკა\0" // cr + "კოტ-დივუარი\0" // ci + "კუბა\0" // cu + "კუკის კუნძულები\0" // ck + "ლაოსი\0" // la + "ლატვია\0" // lv + "ლესოთო\0" // ls + "ლიბანი\0" // lb + "ლიბერია\0" // lr + "ლიბია\0" // ly + "ლიტვა\0" // lt + "ლიხტენშტაინი\0" // li + "ლუქსემბურგი\0" // lu + "მადაგასკარი\0" // mg + "მავრიკი\0" // mu + "მავრიტანია\0" // mr + "მაიოტა\0" // yt + "მაკაო\0" // mo + "მაკაოს სპეციალური ადმინისტრაციული რეგიონი ჩინეთი\0" // mo + "მაკედონია\0" // mk + "მაკედონია (ყოფილი იუგოსლავიის რესპუბლიკა მაკედონია)\0" // mk + "მალავი\0" // mw + "მალაიზია\0" // my + "მალდივები\0" // mv + "მალი\0" // ml + "მალტა\0" // mt + "მაროკო\0" // ma + "მარტინიკა\0" // mq + "მარშალის კუნძულები\0" // mh + "მენის კუნძული\0" // im + "მექსიკა\0" // mx + "მიანმარი (ბირმა)\0" // mm + "მიკრონეზია\0" // fm + "მოზამბიკი\0" // mz + "მოლდოვა\0" // md + "მონაკო\0" // mc + "მონსერატი\0" // ms + "მონტენეგრო\0" // me + "მონღოლეთი\0" // mn + "ნამიბია\0" // na + "ნაურუ\0" // nr + "ნეპალი\0" // np + "ნიგერი\0" // ne + "ნიგერია\0" // ng + "ნიდერლანდები\0" // nl + "ნიკარაგუა\0" // ni + "ნიუე\0" // nu + "ნორვეგია\0" // no + "ნორფოლკის კუნძული\0" // nf + "ომანი\0" // om + "პაკისტანი\0" // pk + "პალაუ\0" // pw + "პალესტინა\0" // ps + "პალესტინის ტერიტორიები\0" // ps + "პანამა\0" // pa + "პაპუა-ახალი გვინეა\0" // pg + "პარაგვაი\0" // py + "პერუ\0" // pe + "პიტკერნის კუნძულები\0" // pn + "პოლონეთი\0" // pl + "პორტუგალია\0" // pt + "პუერტო-რიკო\0" // pr + "რეუნიონი\0" // re + "რუანდა\0" // rw + "რუმინეთი\0" // ro + "რუსეთი\0" // ru + "საბერძნეთი\0" // gr + "სალვადორი\0" // sv + "სამოა\0" // ws + "სამხრეთ აფრიკის რესპუბლიკა\0" // za + "სამხრეთ კორეა\0" // kr + "სამხრეთ სუდანი\0" // ss + "სამხრეთ ჯორჯია და სამხრეთ სენდვიჩის კუნძულები\0" // gs + "სან-მარინო\0" // sm + "სან-ტომე და პრინსიპი\0" // st + "საუდის არაბეთი\0" // sa + "საფრანგეთი\0" // fr + "საფრანგეთის გვიანა\0" // gf + "საფრანგეთის პოლინეზია\0" // pf + "საქართველო\0" // ge + "სეიშელის კუნძულები\0" // sc + "სენ-ბართელმი\0" // bl + "სენ-მარტენი\0" // mf + "სენ-პიერი და მიკელონი\0" // pm + "სენეგალი\0" // sn + "სენტ-ვინსენტი და გრენადინები\0" // vc + "სენტ-კიტსი და ნევისი\0" // kn + "სენტ-ლუსია\0" // lc + "სერბეთი\0" // rs + "სეუტა და მელილა\0" // ea + "სვაზილენდი\0" // sz + "სიერა-ლეონე\0" // sl + "სინგაპური\0" // sg + "სინტ-მარტენი\0" // sx + "სირია\0" // sy + "სლოვაკეთი\0" // sk + "სლოვენია\0" // si + "სოლომონის კუნძულები\0" // sb + "სომალი\0" // so + "სომხეთი\0" // am + "სპილოს ძვლის სანაპირო\0" // ci + "სუდანი\0" // sd + "სურინამი\0" // sr + "ტაივანი\0" // tw + "ტაილანდი\0" // th + "ტანზანია\0" // tz + "ტაჯიკეთი\0" // tj + "ტიმორ-ლესტე\0" // tl + "ტოგო\0" // tg + "ტოკელაუ\0" // tk + "ტონგა\0" // to + "ტრინიდადი და ტობაგო\0" // tt + "ტრისტან-და-კუნია\0" // ta + "ტუვალუ\0" // tv + "ტუნისი\0" // tn + "უგანდა\0" // ug + "უზბეკეთი\0" // uz + "უკრაინა\0" // ua + "უნგრეთი\0" // hu + "უოლისი და ფუტუნა\0" // wf + "ურუგვაი\0" // uy + "ფარერის კუნძულები\0" // fo + "ფილიპინები\0" // ph + "ფინეთი\0" // fi + "ფიჯი\0" // fj + "ფოლკლენდის კუნძულები\0" // fk + "ფოლკლენდის კუნძულები (მალვინის კუნძულები)\0" // fk + "ფრანგული სამხრეთის ტერიტორიები\0" // tf + "ქალაქი ვატიკანი\0" // va + "ქოქოსის (კილინგის) კუნძულები\0" // cc + "ქუვეითი\0" // kw + "ყაზახეთი\0" // kz + "ყირგიზეთი\0" // kg + "შვედეთი\0" // se + "შვეიცარია\0" // ch + "შობის კუნძული\0" // cx + "შორეული ოკეანეთი\0" // qo + "შპიცბერგენი და იან-მაიენი\0" // sj + "შრი-ლანკა\0" // lk + "ჩადი\0" // td + "ჩეხეთი\0" // cz + "ჩეხეთის რესპუბლიკა\0" // cz + "ჩილე\0" // cl + "ჩინეთი\0" // cn + "ჩრდილოეთ კორეა\0" // kp + "ჩრდილოეთ მარიანას კუნძულები\0" // mp + "ცენტრალური აფრიკის რესპუბლიკა\0" // cf + "წმინდა ელენეს კუნძული\0" // sh + "ხორვატია\0" // hr + "ჯერსი\0" // je + "ჯიბუტი\0" // dj + "ჰაიტი\0" // ht + "ჰერდი და მაკდონალდის კუნძულები\0" // hm + "ჰონდურასი\0" // hn + "ჰონკონგი\0" // hk + "ჰონკონგის სპეციალური ადმინისტრაციული რეგიონი ჩინეთი\0" // hk + "ሀንጋሪ\0" // hu + "ሀይቲ\0" // ht + "ህንዲ\0" // in + "ህንድ\0" // in + "ሆንዱራስ\0" // hn + "ሆንግ ኮንግ\0" // hk + "ሆንግ ኮንግ ልዩ የአስተዳደር ክልል ቻይና\0" // hk + "ሉክሰምበርግ\0" // lu + "ሊቢያ\0" // ly + "ሊባኖስ\0" // lb + "ሊቱዌኒያ\0" // lt + "ሊችተንስታይን\0" // li + "ላትቪያ\0" // lv + "ላኦስ\0" // la + "ላይቤሪያ\0" // lr + "ሌሶቶ\0" // ls + "ሕቡራት ኢማራት ዓረብ\0" // ae + "መቄዶኒያ\0" // mk + "መቄዶንያ\0" // mk + "መቄዶንያ (የቀድሞ የዩጎስላቭ መቄዶንያ ሪፐብሊክ)\0" // mk + "ሚክሮኔዢያ\0" // fm + "ማሊ\0" // ml + "ማላዊ\0" // mw + "ማሌዢያ\0" // my + "ማልታ\0" // mt + "ማልዲቭስ\0" // mv + "ማሩሸስ\0" // mu + "ማርሻል አይላንድ\0" // mh + "ማርቲኒክ\0" // mq + "ማእከላይ ኣፍሪቃ ሪፓብሊክ\0" // cf + "ማከዶኒያ\0" // mk + "ማካኡ\0" // mo + "ማካኡ ልዩ የአስተዳደር ክልል ቻይና\0" // mo + "ማካው\0" // mo + "ማካዎ\0" // mo + "ማያንማር\0" // mm + "ማይናማር(በርማ)\0" // mm + "ማዳጋስካር\0" // mg + "ሜክሲኮ\0" // mx + "ሜይኦቴ\0" // yt + "ምምሕዳር ፍልስጤም\0" // ps + "ምስራቅ ሌስት\0" // tl + "ምስራቅ ቲሞር\0" // tl + "ምብራቕ ቲሞር\0" // tl + "ምዕራባዊ ሳህራ\0" // eh + "ሞልዶቫ\0" // md + "ሞሪሸስ\0" // mu + "ሞሪቴኒያ\0" // mr + "ሞሮኮ\0" // ma + "ሞናኮ\0" // mc + "ሞንተኔግሮ\0" // me + "ሞንቴኔግሮ\0" // me + "ሞንትሴራት\0" // ms + "ሞንጎሊያ\0" // mn + "ሞዛምቢክ\0" // mz + "ሩስያ\0" // ru + "ሩዋንዳ\0" // rw + "ሪዩኒየን\0" // re + "ራሺያ\0" // ru + "ሮሜኒያ\0" // ro + "ሰሎሞን ደሴት\0" // sb + "ሰሜን ኮሪያ\0" // kp + "ሰርቢያ\0" // rs + "ሰርብያ\0" // rs + "ሱማሌ\0" // so + "ሱሪናም\0" // sr + "ሱዋዚላንድ\0" // sz + "ሱዳን\0" // sd + "ሲሪላንካ\0" // lk + "ሲሪያ\0" // sy + "ሲሼልስ\0" // sc + "ሲንት ማርተን\0" // sx + "ሲንት ማርቲን\0" // sx + "ሲንጋፖር\0" // sg + "ሲውታን ሜሊላን\0" // ea + "ሳሞአ\0" // ws + "ሳን ማሪኖ\0" // sm + "ሳኦ ቶሜ እና ፕሪንሲፔ\0" // st + "ሳኦ ቶሜን ፕሪንሲፔን\0" // st + "ሳውድአረቢያ\0" // sa + "ሳይፕረስ\0" // cy + "ሴራሊዮን\0" // sl + "ሴኔጋል\0" // sn + "ሴንት ሄለና\0" // sh + "ሴንት ሉቺያ\0" // lc + "ሴንት ማርቲን\0" // mf + "ሴኡታና ሜሊላ\0" // ea + "ስሎቫኪያ\0" // sk + "ስሎቬኒያ\0" // si + "ስቫልባርድ እና ጃን ማየን\0" // sj + "ስቫልባርድን ዣን ማየን ደሴታት\0" // sj + "ስዊዘርላንድ\0" // ch + "ስዊድን\0" // se + "ስዑዲ ዓረብ\0" // sa + "ስፔን\0" // es + "ቀጠር\0" // qa + "ቅዱስ በርቴሎሜ\0" // bl + "ቅዱስ ባርተለሚይ\0" // bl + "ቅዱስ ቪንሴንት እና ግሬናዲንስ\0" // vc + "ቅዱስ ቪንሴንትን ግሬናዲንስን\0" // vc + "ቅዱስ ኪትስ እና ኔቪስ\0" // kn + "ቅዱስ ኪትስን ኔቪስን\0" // kn + "ቅዱስ ፒዬር እና ሚኩኤሎን\0" // pm + "ቅዱስ ፒዬርን ሚኩኤሎን\0" // pm + "በሊዝ\0" // bz + "ቡህታን\0" // bt + "ቡልጌሪያ\0" // bg + "ቡርኪና ፋሶ\0" // bf + "ቡቬት ደሴት\0" // bv + "ቢሳዎ\0" // gw + "ባሃማስ\0" // bs + "ባህሬን\0" // bh + "ባርቤዶስ\0" // bb + "ባንግላዲሽ\0" // bd + "ቤሊዘ\0" // bz + "ቤላሩስ\0" // by + "ቤልጄም\0" // be + "ቤርሙዳ\0" // bm + "ቤኒን\0" // bj + "ብሩኒ\0" // bn + "ብሩንዲ\0" // bi + "ብራዚል\0" // br + "ቦሊቪያ\0" // bo + "ቦስኒያ እና ሄርዞጎቪኒያ\0" // ba + "ቦትስዋና\0" // bw + "ቦዝንያን ሄርዘጎቪናን\0" // ba + "ቨርጂን ደሴታት ኣሜሪካ\0" // vi + "ቨርጂን ደሴታት እንግሊዝ\0" // vg + "ቫቲካን\0" // va + "ቫቲካን ከተማ\0" // va + "ቫኑአቱ\0" // vu + "ቬትናም\0" // vn + "ቬንዙዌላ\0" // ve + "ቱርክ\0" // tr + "ቱርክሜኒስታን\0" // tm + "ቱቫሉ\0" // tv + "ቱኒዚያ\0" // tn + "ታንዛኒያ\0" // tz + "ታይላንድ\0" // th + "ታይዋን\0" // tw + "ታጃኪስታን\0" // tj + "ትሪስታን ዲ ኩንሃ\0" // ta + "ትሪስን ዳ ኩንሃ\0" // ta + "ትሪኒዳድን ቶባጎን\0" // tt + "ትሪናዳድ እና ቶቤጎ\0" // tt + "ቶንጋ\0" // to + "ቶክላው\0" // tk + "ቶጐ\0" // tg + "ቺሊ\0" // cl + "ቻይና\0" // cn + "ቻድ\0" // td + "ቼችኒያ\0" // cz + "ቼክ ሪፑብሊክ\0" // cz + "ቼክ ሪፓብሊክ\0" // cz + "ኒኡይ\0" // nu + "ኒካራጓ\0" // ni + "ኒው ካሌዶኒያ\0" // nc + "ኒው ዚላንድ\0" // nz + "ኒጀር\0" // ne + "ናሚቢያ\0" // na + "ናኡሩ\0" // nr + "ናይ ብሪጣንያ ህንዳዊ ውቅያኖስ ግዝኣት\0" // io + "ናይ ኣሜሪካ ሳሞኣ\0" // as + "ናይ ኣሜሪካ ፍንትት ዝበሉ ደሴታት\0" // um + "ናይ ፈረንሳይ ደቡባዊ ግዝኣታት\0" // tf + "ናይ ፈረንሳይ ጉይና\0" // gf + "ናይ ፈረንሳይ ፖሊነዝያ\0" // pf + "ናይጄሪያ\0" // ng + "ኔዘርላንድ\0" // nl + "ኔዘርላንድስ\0" // nl + "ኔፓል\0" // np + "ኖርዌ\0" // no + "ኖርዌይ\0" // no + "ኖርፎልክ ደሴት\0" // nf + "አልባኒያ\0" // al + "አልጄሪያ\0" // dz + "አሜሪካ\0" // us + "አሩባ\0" // aw + "አርሜኒያ\0" // am + "አርጀንቲና\0" // ar + "አሴንሽን ደሴት\0" // ac + "አንቲጓ እና ባሩዳ\0" // ag + "አንታርክቲካ\0" // aq + "አንዶራ\0" // ad + "አንጉኢላ\0" // ai + "አንጉይላ\0" // ai + "አንጐላ\0" // ao + "አውስትራልያ\0" // au + "አውስትሬሊያ\0" // au + "አውትላይንግ ኦሽንያ\0" // qo + "አዘርባጃን\0" // az + "አየርላንድ\0" // ie + "አይል ኦፍ ማን\0" // im + "አይስላንድ\0" // is + "አይቮሪ ኮስት\0" // ci + "አይቮሪኮስት\0" // ci + "አፍጋኒስታን\0" // af + "ኡራጓይ\0" // uy + "ኡዝቤኪስታን\0" // uz + "ኢራቅ\0" // iq + "ኢራን\0" // ir + "ኢትዮጵያ\0" // et + "ኢንዶኔዢያ\0" // id + "ኢኳቶሪያል ጊኒ\0" // gq + "ኢኳዶር\0" // ec + "ኣንቲጓን ባሩዳን\0" // ag + "ኤል ሳልቫዶር\0" // sv + "ኤርትራ\0" // er + "ኤስቶኒያ\0" // ee + "እስራኤል\0" // il + "እንግሊዝ\0" // gb + "ኦማን\0" // om + "ኦስትሪያ\0" // at + "ኩራሳዎ\0" // cw + "ኩራካዎ\0" // cw + "ኩባ\0" // cu + "ኩክ ደሴቶች\0" // ck + "ኪሪባቲ\0" // ki + "ኪርጂስታን\0" // kg + "ኪርጊስታን\0" // kg + "ካሜሩን\0" // cm + "ካምቦዲያ\0" // kh + "ካሪቢያን ኔዘርላንድስ\0" // bq + "ካናዳ\0" // ca + "ካዛኪስታን\0" // kz + "ካይማን ደሴቶች\0" // ky + "ኬንያ\0" // ke + "ኬፕ ቬርዴ\0" // cv + "ክሊፐርቶን ደሴት\0" // cp + "ክሮኤሽያ\0" // hr + "ክዌት\0" // kw + "ኮሎምቢያ\0" // co + "ኮሞሮስ\0" // km + "ኮስታ ሪካ\0" // cr + "ኮስታሪካ\0" // cr + "ኮሶቮ\0" // xk + "ኮት ዲቯር\0" // ci + "ኮንጎ\0" // cd + "ኮንጎ (ሪፐብሊክ)\0" // cg + "ኮንጎ (የዲሞክራቲክ ሪፐብሊክ ኮንጎ)\0" // cd + "ኮንጎ ሪፓብሊክ\0" // cg + "ኮንጎ ብራዛቪል\0" // cg + "ኮንጎ-ኪንሻሳ\0" // cd + "ኮኮስ ኬሊንግ ደሴቶች\0" // cc + "ኮኮስ(ኬሊንግ) ደሴቶች\0" // cc + "ኳታር\0" // qa + "ኽርድ ደሴቶችና ማክዶናልድ ደሴቶች\0" // hm + "ወጣ ያለ ኦሽኒያ\0" // qo + "ዋሊስ እና ፉቱና ደሴቶች\0" // wf + "ዋሊስን ፉቱናን\0" // wf + "ዚምቧቤ\0" // zw + "ዛምቢያ\0" // zm + "የመን\0" // ye + "የመካከለኛው አፍሪካ ሪፐብሊክ\0" // cf + "የሰሜናዊ ማሪያና ደሴቶች\0" // mp + "የብሪታኒያ ህንድ ውቂያኖስ ግዛት\0" // io + "የተባበሩት ዓረብ ኤምሬትስ\0" // ae + "የቱርኮችና የካኢኮስ ደሴቶች\0" // tc + "የአላንድ ደሴቶች\0" // ax + "የአሜሪካ ሳሞአ\0" // as + "የአሜሪካ ቨርጂን ደሴቶች\0" // vi + "የአውሮፓ ዞን\0" // ez + "የእንግሊዝ ቨርጂን ደሴቶች\0" // vg + "የካሪቢያን ኔዘርላንድስ\0" // bq + "የካናሪ ደሴቶች\0" // ic + "የዩ ኤስ ጠረፍ ላይ ያሉ ደሴቶች\0" // um + "የገና ደሴት\0" // cx + "የፈረንሳይ ደቡባዊ ግዛቶች\0" // tf + "የፈረንሳይ ጉዊአና\0" // gf + "የፈረንሳይ ፖሊኔዢያ\0" // pf + "የፋሮ ደሴቶች\0" // fo + "የፍልስጤም ግዛት\0" // ps + "የፎክላንድ ደሴቶች\0" // fk + "ዩ ኤስ\0" // us + "ዩናይትድ ስቴትስ\0" // us + "ዩናይትድ ኪንግደም\0" // gb + "ዩኤስ\0" // us + "ዩኬይ\0" // gb + "ዩክሬን\0" // ua + "ዩዝበኪስታን\0" // uz + "ዩጋንዳ\0" // ug + "ደሴታት ሀርድን ማክዶናልድን\0" // hm + "ደሴታት ሰሜናዊ ማሪያና\0" // mp + "ደሴታት ቦውቬት\0" // bv + "ደሴታት ቱርክን ካይኮስን\0" // tc + "ደሴታት ኣላንድ\0" // ax + "ደሴታት ኩክ\0" // ck + "ደሴታት ካናሪ\0" // ic + "ደሴታት ክሪስትማስ\0" // cx + "ደሴታት ደቡብ ጆርጂያን ደቡድ ሳንድዊችን\0" // gs + "ደሴታት ፋራኦ\0" // fo + "ደሴታት ፎክላንድ\0" // fk + "ደቡብ ሱዳን\0" // ss + "ደቡብ አፍሪካ\0" // za + "ደቡብ ኮሪያ\0" // kr + "ደቡብ ጆርጂያ እና የደቡብ ሳንድዊች ደሴቶች\0" // gs + "ዲየጎ ጋርሺያ\0" // dg + "ዲዬጎ ጋርሺያ\0" // dg + "ዴንማርክ\0" // dk + "ዶመኒካ ሪፓብሊክ\0" // do + "ዶመኒካን ሪፑብሊክ\0" // do + "ዶሚኒካ\0" // dm + "ጀርመን\0" // de + "ጀርሲ\0" // je + "ጂቡቲ\0" // dj + "ጂብራልተር\0" // gi + "ጃማይካ\0" // jm + "ጃፓን\0" // jp + "ጆርዳን\0" // jo + "ጆርጂያ\0" // ge + "ገርንሲ\0" // gg + "ጉርነሲ\0" // gg + "ጉዋም\0" // gu + "ጉዋቲማላ\0" // gt + "ጉዋደሉፕ\0" // gp + "ጉያና\0" // gy + "ጊብራልታር\0" // gi + "ጊኒ\0" // gn + "ጊኒ ቢሳኦ\0" // gw + "ጋምቢያ\0" // gm + "ጋቦን\0" // ga + "ጋና\0" // gh + "ግሪንላንድ\0" // gl + "ግሪክ\0" // gr + "ግሬናዳ\0" // gd + "ግብጽ\0" // eg + "ጣሊያን\0" // it + "ጫድ\0" // td + "ፈረንሳይ\0" // fr + "ፊሊፒንስ\0" // ph + "ፊንላንድ\0" // fi + "ፊጂ\0" // fj + "ፍልስጤም\0" // ps + "ፍልስጥኤም\0" // ps + "ፎክላንድ ደሴቶች (ኢስላስ ማልቪናስ)\0" // fk + "ፒትካኢርን\0" // pn + "ፒትካኢርን አይስላንድ\0" // pn + "ፓላው\0" // pw + "ፓራጓይ\0" // py + "ፓናማ\0" // pa + "ፓኪስታን\0" // pk + "ፓፑዋ ኒው ጊኒ\0" // pg + "ፔሩ\0" // pe + "ፖላንድ\0" // pl + "ፖርቱጋል\0" // pt + "ፖርታ ሪኮ\0" // pr + "ᎠᎵᎻᏂᎠ\0" // am + "ᎠᎵᏇᏂᏯ\0" // al + "ᎠᎵᏥᎵᏯ\0" // dz + "ᎠᎷᏆ\0" // aw + "ᎠᎺᎵᎧ ᏌᎼᎠ\0" // as + "ᎠᏂᎦᎸᏥ ᎩᎠ\0" // gf + "ᎠᏂᎦᎸᏥ ᏆᎵᏂᏏᎠ\0" // pf + "ᎠᏂᎦᎸᏥ ᏧᎦᎾᏮ ᎦᏙᎯ ᎤᎵᏍᏛᎢ\0" // tf + "ᎠᏂᎩᎳ\0" // ai + "ᎠᏂᎪᎳ\0" // ao + "ᎠᏂᏈᎵᎩᏃ\0" // ph + "ᎠᏂᏍᏆᏂ\0" // mx + "ᎠᏂᏍᏆᏂᏱ\0" // es + "ᎠᏂᏍᏩᏏᎢ\0" // sz + "ᎠᏂᏙᎳ\0" // ad + "ᎠᏂᏛᎵᎩ ᎠᎴ ᎨᎢᎪ ᏚᎦᏚᏛᎢ\0" // tc + "ᎠᏂᏛᏥ\0" // de + "ᎠᏍᏛ ᎣᏏᏰᏂᎠ\0" // qo + "ᎠᏍᏟᏯ\0" // at + "ᎠᏎᏆᏣᏂ\0" // az + "ᎠᏓᏍᏓᏴᎲᏍᎩ ᏚᎦᏚᏛᎢ\0" // ck + "ᎠᏥᎳᏁᏠ ᎦᏚᎲ\0" // va + "ᎠᏥᏂᏘᏂᎠ\0" // ar + "ᎠᏫᎨᏂᏍᏖᏂ\0" // af + "ᎠᏲᎳᏂ\0" // ie + "ᎡᎳᏗᏜ\0" // au + "ᎡᎵᏌᎵᏆᏙᎵ\0" // sv + "ᎡᎵᏟᏯ\0" // er + "ᎡᏆᏙᎵ\0" // ec + "ᎡᏆᏙᎵᎠᎵ ᎩᎢᏂ\0" // gq + "ᎡᏍᏙᏂᏯ\0" // ee + "ᎢᎬᎾᏕᎾ ᎢᏤᏳᏍᏗ\0" // cv + "ᎢᎳᎩ\0" // iq + "ᎢᎴᏂ\0" // ir + "ᎢᏂᏙᏂᏍᏯ\0" // id + "ᎢᏅᏗᎾ\0" // in + "ᎢᏏᎵᏱ\0" // il + "ᎢᏔᎵ\0" // it + "ᎢᏗᎣᏈᎠ\0" // et + "ᎢᏤ ᎧᎵᏙᏂᎠᏂ\0" // nc + "ᎢᏤ ᏏᎢᎴᏂᏗ\0" // nz + "ᎢᏤᏍᏛᏱ\0" // gl + "ᎢᏥᏈᎢ\0" // eg + "ᎢᏬᎵ ᎾᎿ ᎠᎹᏳᎶᏗ\0" // ci + "ᎣᎴᏅᏓ ᏚᎦᏚᏛᎢ\0" // ax + "ᎣᎺᏂ\0" // om + "ᎤᎵᏌᎳᏓᏅ ᎤᎦᏚᏛᎢ\0" // ac + "ᎤᏁᎬ ᎪᎳ ᎠᎹᏳᎶᏗ\0" // ci + "ᎤᏍᏇᎩᏍᏖᏂ\0" // uz + "ᎤᏍᏗ ᎤᎦᏚᏛᎢ ᎾᎿ ᎠᏍᎦᏯ\0" // im + "ᎤᏓᏅᏘ ᎨᏘᏏ ᎠᎴ ᏁᏪᏏ\0" // kn + "ᎤᏓᏅᏘ ᎮᎵᎾ\0" // sh + "ᎤᏓᏅᏘ ᎷᏏᏯ\0" // lc + "ᎤᏓᏅᏘ ᎹᎵᎢᏃ\0" // sm + "ᎤᏓᏅᏘ ᏆᏕᎳᎻ\0" // bl + "ᎤᏓᏅᏘ ᏈᏰ ᎠᎴ ᎻᏇᎶᏂ\0" // pm + "ᎤᏓᏅᏘ ᏡᏡ\0" // mf + "ᎤᏓᏅᏘ ᏫᏂᏏᏂᏗ ᎠᎴ ᎾᏍᎩ ᏇᎾᏗᏁᏍ\0" // vc + "ᎤᏪᏘ & ᏆᏊᏓ\0" // ag + "ᎦᎠᎾ\0" // gh + "ᎦᎸᏥᏱ\0" // fr + "ᎦᎹᏈᎢᎠ\0" // gm + "ᎦᏂᏴᏔᏅᎣᏓᎸ ᎤᎦᏚᏛᎢ\0" // cp + "ᎦᏉᏂ\0" // ga + "ᎦᏯᎾ\0" // gy + "ᎧᎵᏆᏘ\0" // ki + "ᎧᎵᏈᎢᏂᎯ ᎾᏍᎩᏁᏛᎳᏂ\0" // bq + "ᎧᎶᎡᏏᎠ\0" // hr + "ᎧᎹᎷᏂ\0" // cm + "ᎧᎹᏉᏗᎠᏂ\0" // kh + "ᎧᏂᎪ (drc)\0" // cd + "ᎧᏂᎪ (ᏍᎦᏚᎩ)\0" // cg + "ᎧᏂᎪ - ᎨᏂᏝᏌ\0" // cd + "ᎧᏂᎪ - ᏆᏌᏩᎵ\0" // cg + "ᎧᏎᎧᏍᏕᏂ\0" // kz + "ᎧᏔᎵ\0" // qa + "ᎨᎢᎹᏂ ᏚᎦᏚᏛᎢ\0" // ky + "ᎨᎾᏓ\0" // ca + "ᎨᏂᏯ\0" // ke + "ᎩᎢᏂ\0" // gn + "ᎩᎢᏂ-ᏈᏌᎤᏫ\0" // gw + "ᎩᎵᏏᏲ\0" // gb + "ᎩᎵᏣᎢᏍ\0" // kg + "ᎪᎢᎯ\0" // gr + "ᎪᎪᏍ (ᎩᎵᏂ) ᏚᎦᏚᏛᎢ\0" // cc + "ᎪᎸᎻᏈᎢᎠ\0" // co + "ᎪᎼᎳᏍ\0" // km + "ᎪᏍᏓ ᎵᎧ\0" // cr + "ᎪᏐᏉ\0" // xk + "ᎫᎳᎨᎣ\0" // cw + "ᎫᏆ\0" // cu + "ᎫᏪᎢᏘ\0" // kw + "ᎬᎿᎨᏍᏛ ᎠᏰᏟ ᏍᎦᏚᎩ\0" // cf + "ᎬᏂᏏ\0" // gg + "ᎬᏃ\0" // tr + "ᎭᏂᏚᎳᏍ\0" // hn + "ᎮᎢᏘ\0" // ht + "ᎰᏂᎩ ᎪᏂᎩ\0" // hk + "ᎰᏂᎩ ᎪᏂᎩ ᎤᏓᏤᎵᏓ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎢᎬᎾᏕᎾ ᏓᎶᏂᎨᏍᏛ\0" // hk + "ᎲᏂᎦᎵ\0" // hu + "ᎲᏗ ᎤᎦᏚᏛᎢ ᎠᎴ ᎺᎩᏓᎾᎵᏗ ᏚᎦᏚᏛᎢ\0" // hm + "ᎳᏈᎵᏯ\0" // lr + "ᎳᏘᏫᎠ\0" // lv + "ᎴᎣᏍ\0" // la + "ᎴᏆᎾᏂ\0" // lb + "ᎴᏐᏙ\0" // ls + "ᎴᏳᏂᎠᏂ\0" // re + "ᎵᎦᏗᏂᏍᏓᏂ\0" // li + "ᎵᏈᏯ\0" // ly + "ᎵᏗᏪᏂᎠ\0" // lt + "ᎶᎹᏂᏯ\0" // ro + "ᎶᏩᏂᏓ\0" // rw + "ᎸᎧᏎᏋᎩ\0" // lu + "ᎹᎢᏉᏂᏏᏯ\0" // fm + "ᎹᎧᎣ\0" // mo + "ᎹᎧᎣ (ᎤᏓᏤᎵᏓ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎢᎬᎾᏕᎾ) ᏣᎢ\0" // mo + "ᎹᎳᏫ\0" // mw + "ᎹᎴᏏᎢᎠ\0" // my + "ᎹᎵ\0" // ml + "ᎹᎵᏔ\0" // mt + "ᎹᎵᏗᏫᏍ\0" // mv + "ᎹᎵᏙᏫᎠ\0" // md + "ᎹᎾᎪ\0" // mc + "ᎹᏂᎪᎵᎠ\0" // mn + "ᎹᏂᏘᏌᎳᏗ\0" // ms + "ᎹᏌᎵ ᏚᎦᏚᏛᎢ\0" // mh + "ᎹᏎᏙᏂᏯ\0" // mk + "ᎹᏎᏙᏂᏯ (fyrom)\0" // mk + "ᎹᏓᎦᏍᎧᎵ\0" // mg + "ᎹᏘᎢᏯ\0" // mr + "ᎹᏘᏂᎨ\0" // mq + "ᎹᏯᎹᎵ (ᏇᎵᎹ)\0" // mm + "ᎺᏯᏖ\0" // yt + "ᎼᎵᏏᎥᏍ\0" // mu + "ᎼᎶᎪ\0" // ma + "ᎼᏂᏔᏁᎦᎶ\0" // me + "ᎼᏎᎻᏇᎩ\0" // mz + "ᎾᎢᏨ\0" // ne + "ᎾᎻᏈᎢᏯ\0" // na + "ᎾᏍᎩ ᏆᎭᎹᏍ\0" // bs + "ᏁᏆᎵ\0" // np + "ᏁᏛᎳᏂ\0" // nl + "ᏂᎧᎳᏆ\0" // ni + "ᏂᏥᎵᏯ\0" // ng + "ᏂᏳ\0" // nu + "ᏃᎤᎷ\0" // nr + "ᏃᎵᏬᎵᎩ ᎤᎦᏚᏛᎢ\0" // nf + "ᏃᏪ\0" // no + "ᏆᎩᏍᏖᏂ\0" // pk + "ᏆᎭᎴᎢᏂ\0" // bh + "ᏆᎳᏇᎢᏯ\0" // py + "ᏆᎴᎠᏫ\0" // pw + "ᏆᎴᏍᏗᏂ\0" // ps + "ᏆᎴᏍᏗᏂᎠᏂ ᏄᎬᏫᏳᏌᏕᎩ\0" // ps + "ᏆᎻ\0" // gu + "ᏆᎾᎹ\0" // pa + "ᏆᏂᎢᏂ\0" // bj + "ᏆᏂᎦᎵᏕᏍ\0" // bd + "ᏆᏇ ᎢᏤ ᎩᎢᏂ\0" // pg + "ᏆᏇᏙᏍ\0" // bb + "ᏆᏊᏓ\0" // bm + "ᏆᏏᎵ\0" // br + "ᏆᏣᏩᎾ\0" // bw + "ᏇᎡᏙ ᎵᎢᎪ\0" // pr + "ᏇᎳᎷᏍ\0" // by + "ᏇᎵᏍ\0" // bz + "ᏇᎵᏥᎥᎻ\0" // be + "ᏇᎷ\0" // pe + "ᏈᎧᎵᏂ ᏚᎦᏚᏛᎢ\0" // pn + "ᏈᏗᏍ ᎠᏒᏂᎸ ᏂᎨᏒᎾ ᏚᎦᏚᏛᎢ\0" // vg + "ᏈᏗᏏ ᏴᏫᏯ ᎠᎺᏉ ᎢᎬᎾᏕᏅ\0" // io + "ᏉᎳᏂ\0" // pl + "ᏉᎵᏫᎠ\0" // bo + "ᏉᏏᏂᎠ & ᎲᏤᎪᏫ\0" // ba + "ᏉᏥᎦᎳ\0" // pt + "ᏊᎵᎨᎵᎠ\0" // bg + "ᏊᎾᎢ\0" // bn + "ᏊᏔᏂ\0" // bt + "ᏊᏪ ᎤᎦᏚᏛᎢ\0" // bv + "ᏋᎩᎾ ᏩᏐ\0" // bf + "ᏋᎷᏂᏗ\0" // bi + "ᏋᎾᏓ\0" // gd + "ᏌᎢᏆᏍ\0" // cy + "ᏌᎣ ᏙᎺ ᎠᎴ ᏈᏂᏏᏇ\0" // st + "ᏌᎤᏗ ᎡᎴᏈᎠ\0" // sa + "ᏌᎻᏈᏯ\0" // zm + "ᏌᎼᎠ\0" // ws + "ᏌᏊ ᎢᏳᎾᎵᏍᏔᏅ ᎡᎳᏈ ᎢᎹᎵᏘᏏ\0" // ae + "ᏌᏊ ᎢᏳᎾᎵᏍᏔᏅ ᏍᎦᏚᎩ\0" // us + "ᏍᎵ ᎳᏂᎧ\0" // lk + "ᏍᎶᏩᎩᎠ\0" // sk + "ᏍᎶᏫᏂᎠ\0" // si + "ᏍᏩᎵᏆᎵᏗ ᎠᎴ ᏤᏂ ᎹᏰᏂ\0" // sj + "ᏍᏫᏍ\0" // ch + "ᏍᏫᏕᏂ\0" // se + "ᏏᎡᎳ ᎴᎣᏂ\0" // sl + "ᏏᎡᏥᎵᏍ\0" // sc + "ᏏᎵᎠ\0" // sy + "ᏏᎻᏆᏇ\0" // zw + "ᏏᏂᎦᎵ\0" // sn + "ᏏᏂᎦᏉᎵ\0" // sg + "ᏏᏂᏘ ᎹᏘᏂ\0" // sx + "ᏐᎶᎹᏂ ᏚᎦᏚᏛᎢ\0" // sb + "ᏐᎹᎵ\0" // so + "ᏑᏔ ᎠᎴ ᎺᎵᏯ\0" // ea + "ᏑᏕᏂ\0" // sd + "ᏒᎵᎾᎻ\0" // sr + "ᏒᏈᏯ\0" // rs + "ᏓᎶᏂᎨᏍᏛ\0" // cn + "ᏓᏂᏍᏓᏲᎯᎲ ᎤᎦᏚᏛᎢ\0" // cx + "ᏔᎢᏩᏂ\0" // tw + "ᏔᏂᎪ\0" // to + "ᏔᏥᎩᏍᏕᏂ\0" // tj + "ᏔᏯᎴᏂ\0" // th + "ᏖᏂᏏᏂᏯ\0" // tz + "ᏗᎧᎸᎬᎢ ᏘᎼᎵ\0" // tl + "ᏗᏂᎹᎦ\0" // dk + "ᏗᏰᎪ ᎦᏏᏯ\0" // dg + "ᏘᎼᎵ-ᎴᏍᏖ\0" // tl + "ᏙᎨᎳᏭ\0" // tk + "ᏙᎪ\0" // tg + "ᏙᎻᏂᎧ\0" // dm + "ᏙᎻᏂᎧᏂ ᏍᎦᏚᎩ\0" // do + "ᏚᏂᏏᏍᎠ\0" // tn + "ᏚᏩᎷ\0" // tv + "ᏛᎵᎩᎺᏂᏍᏔᏂ\0" // tm + "ᏟᏂᏕᏗ ᎠᎴ ᏙᏆᎪ\0" // tt + "ᏟᏍᏛᏂ Ꮣ ᎫᎾᎭ\0" // ta + "ᏣᎠᏥᎢ\0" // ge + "ᏣᎺᎢᎧ\0" // jm + "ᏣᏗ\0" // td + "ᏣᏩᏂᏏ\0" // jp + "ᏤᎩ ᏍᎦᏚᎩ\0" // cz + "ᏤᎩᎠ\0" // cz + "ᏥᎵ\0" // cl + "ᏥᏆᎵᏓ\0" // gi + "ᏥᏊᏗ\0" // dj + "ᏥᏍᏆ ᏚᎦᏚᏛᎢ\0" // ic + "ᏦᏓᏂ\0" // jo + "ᏧᎦᎾᏮ ᎬᎿᎨᏍᏛ\0" // za + "ᏧᎦᎾᏮ ᏑᏕᏂ\0" // ss + "ᏧᎦᏃᏮ ᎪᎵᎠ\0" // kr + "ᏧᎦᏃᏮ ᏣᎠᏥᎢ ᎠᎴ ᎾᏍᎩ ᏧᎦᏃᏮ ᎠᏍᏛᎭᏟ ᏚᎦᏚᏛᎢ\0" // gs + "ᏧᏁᏍᏓᎸ\0" // aq + "ᏧᏁᏍᏓᎸᎯ\0" // is + "ᏧᏴᏢ ᎪᎵᎠ\0" // kp + "ᏧᏴᏢ ᏗᏜ ᎹᎵᎠᎾ ᏚᎦᏚᏛᎢ\0" // mp + "ᏨᎵᏏ\0" // je + "ᏩᎩ ᏚᎦᏚᏛᎢ\0" // fk + "ᏩᎩ ᏚᎦᏚᏛᎢ (ᎢᏍᎳᏍ ᎹᎸᏫᎾᏍ)\0" // fk + "ᏩᎵᏍ ᎠᎴ ᏊᏚᎾ\0" // wf + "ᏩᏂᎤᏩᏚ\0" // vu + "ᏩᏓᎷᏇ\0" // gp + "ᏩᏔᎹᎳ\0" // gt + "ᏪᎶ ᏚᎦᏚᏛᎢ\0" // fo + "ᏪᏁᏑᏪᎳ\0" // ve + "ᏫᎡᏘᎾᎻ\0" // vn + "ᏫᏂᎦᏙᎯ\0" // fi + "ᏫᏥ\0" // fj + "ᏭᏕᎵᎬ ᏗᏜ ᏌᎮᎳ\0" // eh + "ᏰᎺᏂ\0" // ye + "ᏲᏂᎢ\0" // ru + "ᏳᎦᏂᏓ\0" // ug + "ᏳᎧᎴᏂ\0" // ua + "ᏳᎶᎠᏍᏓᏅᏅ\0" // ez + "ᏳᎷᏇ\0" // uy + "កម្ពុជា\0" // kh + "កាណាដា\0" // ca + "កាតា\0" // qa + "កាប់វែរ\0" // cv + "កាមេរូន\0" // cm + "កាហ្សាក់ស្ថាន\0" // kz + "កុងហ្គោ (សធារណរដ្ឋ)\0" // cg + "កុងហ្គោ (សាធារណរដ្ឋ​ប្រជាធិបតេយ្យ)\0" // cd + "កុងហ្គោ - ប្រាហ្សាវីល\0" // cg + "កុងហ្គោ- គីនស្ហាសា\0" // cd + "កូតឌីវ័រ\0" // ci + "កូម័រ\0" // km + "កូរ៉ាកៅ\0" // cw + "កូរ៉េ​ខាង​ជើង\0" // kp + "កូរ៉េ​ខាង​ត្បូង\0" // kr + "កូវ៉ែត\0" // kw + "កូសូវ៉ូ\0" // xk + "កូស្តារីកា\0" // cr + "កូឡុំប៊ី\0" // co + "កៀហ្ស៊ីស៊ីស្ថាន\0" // kg + "កេនយ៉ា\0" // ke + "កោះ​កាណារី\0" // ic + "កោះ​កូកូស (គីលីង)\0" // cc + "កោះ​កៃម៉ង់\0" // ky + "កោះ​ខូក\0" // ck + "កោះ​គ្រីស្មាស\0" // cx + "កោះ​ឃ្លីភឺតុន\0" // cp + "កោះ​ណ័រហ្វក់\0" // nf + "កោះ​ទួគ និង កៃកូស\0" // tc + "កោះ​ប៊ូវ៉េត\0" // bv + "កោះ​ភីតកាន\0" // pn + "កោះ​ម៉ារីណា​ខាង​ជើង\0" // mp + "កោះ​ម៉ាស់សល\0" // mh + "កោះ​វឺជិន​ចក្រភព​អង់គ្លេស\0" // vg + "កោះ​វឺជីន​អាមេរិក\0" // vi + "កោះ​សូឡូម៉ុង\0" // sb + "កោះ​ហឺដ និង​ម៉ាក់ដូណាល់\0" // hm + "កោះ​ហ្វក់ឡែន\0" // fk + "កោះ​ហ្វក់ឡែន (islas malvinas)\0" // fk + "កោះ​ហ្វារ៉ូ\0" // fo + "កោះ​ហ្សកហ្ស៊ី​ខាងត្បូង និង សង់វិច​ខាងត្បូង\0" // gs + "កោះ​អាសេនសិន\0" // ac + "កោះ​អាឡង់\0" // ax + "កោះ​អៅឡាយីង​អាមេរិក\0" // um + "ក្រិក\0" // gr + "ក្រូអាស៊ី\0" // hr + "ក្វាតេម៉ាឡា\0" // gt + "គិរីបាទី\0" // ki + "គុយបា\0" // cu + "ច.អ.\0" // gb + "ចក្រភព​អង់គ្លេស\0" // gb + "ចិន\0" // cn + "ឆាដ\0" // td + "ឆែគា\0" // cz + "ជប៉ុន\0" // jp + "ជីប៊ូទី\0" // dj + "ជឺតា និង​ម៉េលីឡា\0" // ea + "ជឺស៊ី\0" // je + "ដាណឺម៉ាក\0" // dk + "ដូមីនីក\0" // dm + "ដែនដី​បារាំង​នៅ​ភាគខាងត្បូង\0" // tf + "ដែនដី​អង់គ្លេស​នៅ​មហា​សមុទ្រ​ឥណ្ឌា\0" // io + "ដែន​ដីប៉ាលេស្ទីន\0" // ps + "ឌៀហ្គោហ្គាស៊ី\0" // dg + "ណាមីប៊ី\0" // na + "ណូរូ\0" // nr + "ណៀ\0" // nu + "តង់សានី\0" // tz + "តាហ្ស៊ីគីស្ថាន\0" // tj + "តុងហ្គា\0" // to + "តូខេឡៅ\0" // tk + "តូហ្គោ\0" // tg + "តួកគី\0" // tr + "តួកម៉េនីស្ថាន\0" // tm + "តៃវ៉ាន់\0" // tw + "តំបន់ចាយលុយអឺរ៉ូ\0" // ez + "តំបន់ជាយអូសេអានី\0" // qo + "ថៃ\0" // th + "ទីម័រលីស\0" // tl + "ទីម័រ​ខាង​កើត\0" // tl + "ទុយនីស៊ី\0" // tn + "ទូវ៉ាលូ\0" // tv + "ទ្រីនីដាត និង​តូបាហ្គោ\0" // tt + "ទ្រីស្តង់​ដា​ចូនហា\0" // ta + "នីការ៉ាហ្គា\0" // ni + "នីហ្សេ\0" // ne + "នីហ្សេរីយ៉ា\0" // ng + "នូវែល​កាឡេដូនី\0" // nc + "នូវែល​សេឡង់\0" // nz + "នេប៉ាល់\0" // np + "ន័រវែស\0" // no + "បង់ក្លាដែស\0" // bd + "បាបាដុស\0" // bb + "បារាំង\0" // fr + "បារ៉ែន\0" // bh + "បាហាម៉ា\0" // bs + "បុតស្វាណា\0" // bw + "បុរី​វ៉ាទីកង់\0" // va + "បូលីវី\0" // bo + "បូស្នី និងហឺហ្សីហ្គូវីណា\0" // ba + "បួគីណាហ្វាសូ\0" // bf + "បេណាំង\0" // bj + "បេលី\0" // bz + "បេឡារុស\0" // by + "បែលហ្ស៊ិក\0" // be + "ប៉ាគីស្ថាន\0" // pk + "ប៉ាណាម៉ា\0" // pa + "ប៉ាពូអាស៊ី​នូវែលហ្គីណេ\0" // pg + "ប៉ារ៉ាហ្គាយ\0" // py + "ប៉ាលេស្ទីន\0" // ps + "ប៉ូលី​ណេស៊ី​បារាំង\0" // pf + "ប៉ូឡូញ\0" // pl + "ប៉េរូ\0" // pe + "ប៊ឺមុយដា\0" // bm + "ប៊ុលហ្គារី\0" // bg + "ប៊ូតង់\0" // bt + "ប៊ូរុនឌី\0" // bi + "ប្រេស៊ីល\0" // br + "ផៅឡូ\0" // pw + "ព័រតូរីកូ\0" // pr + "ព័រទុយហ្គាល់\0" // pt + "ព្រុយណេ\0" // bn + "មីក្រូណេស៊ី\0" // fm + "មីយ៉ាន់ម៉ា (ភូមា)\0" // mm + "ម៉ាកាវ\0" // mo + "ម៉ាកាវ តំបន់រដ្ឋបាលពិសេសចិន\0" // mo + "ម៉ាដាហ្គាស្កា\0" // mg + "ម៉ាទីនីក\0" // mq + "ម៉ាយុត\0" // yt + "ម៉ារ៉ុក\0" // ma + "ម៉ាលី\0" // ml + "ម៉ាល់ឌីវ\0" // mv + "ម៉ាល់ត៍\0" // mt + "ម៉ាសេដ្វាន\0" // mk + "ម៉ាសេដ្វាន (អតីត​សាធារណរដ្ឋ​យូហ្គោស្លាវី)\0" // mk + "ម៉ាឡាវី\0" // mw + "ម៉ាឡេស៊ី\0" // my + "ម៉ិកស៊ិក\0" // mx + "ម៉ុងតេណេហ្គ្រោ\0" // me + "ម៉ុងស៊ែរ៉ា\0" // ms + "ម៉ុងហ្គោលី\0" // mn + "ម៉ុលដាវី\0" // md + "ម៉ូណាកូ\0" // mc + "ម៉ូរីតានី\0" // mr + "ម៉ូរីស\0" // mu + "ម៉ូសំប៊ិក\0" // mz + "យេម៉ែន\0" // ye + "រវ៉ាន់ដា\0" // rw + "រុស្ស៊ី\0" // ru + "រូម៉ានី\0" // ro + "រេអុយញ៉ុង\0" // re + "លិចតិនស្ដាញ\0" // li + "លីទុយអានី\0" // lt + "លីបង់\0" // lb + "លីបេរីយ៉ា\0" // lr + "លីប៊ី\0" // ly + "លុចសំបួ\0" // lu + "វៀតណាម\0" // vn + "វ៉ានូទូ\0" // vu + "វ៉ាលីស និង​ហ្វូទូណា\0" // wf + "វ៉េណេស៊ុយអេឡា\0" // ve + "ស.រ.អ\0" // us + "សង់ព្យែរ និង​មីគីឡុង\0" // pm + "សង់​ហេឡេណា\0" // sh + "សហរដ្ឋអាមេរិក\0" // us + "សាធារណរដ្ឋឆេក\0" // cz + "សាធារណរដ្ឋអាហ្វ្រិកកណ្ដាល\0" // cf + "សាធារណរដ្ឋ​ដូមីនីក\0" // do + "សាន​ម៉ារីណូ\0" // sm + "សាម័រ\0" // ws + "សាម័រ អាមេរិកាំង\0" // as + "សាហារ៉ាខាងលិច\0" // eh + "សាំងលូស៊ី\0" // lc + "សាំង​គីត និង ណេវីស\0" // kn + "សាំង​បាថេឡេមី\0" // bl + "សាំង​ម៉ាទីន\0" // mf + "សាំង​វ៉ាំងសង់ និង ហ្គ្រេណាឌីន\0" // vc + "សិង្ហបុរី\0" // sg + "សីង​ម៉ាធីន\0" // sx + "សីស្ហែល\0" // sc + "សូម៉ាលី\0" // so + "សូរីណាម\0" // sr + "សៀរ៉ាឡេអូន\0" // sl + "សេណេហ្គាល់\0" // sn + "សែប៊ី\0" // rs + "សៅតូម៉េ និង ប្រាំងស៊ីប\0" // st + "សំប៊ី\0" // zm + "ស៊ីប\0" // cy + "ស៊ីមបាវ៉េ\0" // zw + "ស៊ីរី\0" // sy + "ស៊ីលី\0" // cl + "ស៊ុយអែត\0" // se + "ស៊ូដង់\0" // sd + "ស៊ូដង់​ខាង​ត្បូង\0" // ss + "ស្រីលង្កា\0" // lk + "ស្លូវេនី\0" // si + "ស្លូវ៉ាគី\0" // sk + "ស្វាលបាដ និង ហ្សង់ម៉ាយេន\0" // sj + "ស្វាស៊ីឡង់\0" // sz + "ស្វីស\0" // ch + "ហុងកុង\0" // hk + "ហុងកុង តំបន់រដ្ឋបាលពិសេសចិន\0" // hk + "ហុងគ្រី\0" // hu + "ហុងឌូរ៉ាស\0" // hn + "ហូឡង់\0" // nl + "ហូឡង់ ការ៉ាប៊ីន\0" // bq + "ហៃទី\0" // ht + "ហ៊្សកដានី\0" // jo + "ហ្គាណា\0" // gh + "ហ្គាបុង\0" // ga + "ហ្គាំ\0" // gu + "ហ្គីណេ\0" // gn + "ហ្គីណេប៊ីស្សូ\0" // gw + "ហ្គីណេអេក្វាទ័រ\0" // gq + "ហ្គីយ៉ាន\0" // gy + "ហ្គីអាណា បារាំង\0" // gf + "ហ្គេនស៊ី\0" // gg + "ហ្គោដឺឡុប\0" // gp + "ហ្គំប៊ី\0" // gm + "ហ្គ្រើណាដ\0" // gd + "ហ្គ្រោអង់ឡង់\0" // gl + "ហ្វាំងឡង់\0" // fi + "ហ្វីជី\0" // fj + "ហ្វីលីពីន\0" // ph + "ហ្សកហ្ស៊ី\0" // ge + "ហ្សាម៉ាអ៊ីក\0" // jm + "ហ្ស៊ីប្រាល់តា\0" // gi + "ឡាវ\0" // la + "ឡេតូនី\0" // lv + "ឡេសូតូ\0" // ls + "អង់ដូរ៉ា\0" // ad + "អង់តាក់ទិក\0" // aq + "អង់ទីហ្គា និង បាប៊ុយដា\0" // ag + "អង់ហ្គីឡា\0" // ai + "អង់ហ្គោឡា\0" // ao + "អាមេនី\0" // am + "អាយវ៉ូរី ខូសថ៍\0" // ci + "អារូបា\0" // aw + "អារ៉ាប៊ីសាអូឌីត\0" // sa + "អាល់បានី\0" // al + "អាល់ហ្សេរី\0" // dz + "អាល្លឺម៉ង់\0" // de + "អាស៊ែបៃហ្សង់\0" // az + "អាហ្វហ្គានីស្ថាន\0" // af + "អាហ្វ្រិកខាងត្បូង\0" // za + "អាហ្សង់ទីន\0" // ar + "អូទ្រីស\0" // at + "អូម៉ង់\0" // om + "អូស្ត្រាលី\0" // au + "អៀរឡង់\0" // ie + "អេក្វាទ័រ\0" // ec + "អេត្យូពី\0" // et + "អេមីរ៉ាត​អារ៉ាប់​រួម\0" // ae + "អេរីត្រេ\0" // er + "អេស្តូនី\0" // ee + "អេស្ប៉ាញ\0" // es + "អេហ្ស៊ីប\0" // eg + "អែលសាល់វ៉ាឌ័រ\0" // sv + "អែលអុហ្វមែន\0" // im + "អ៊ីតាលី\0" // it + "អ៊ីរ៉ង់\0" // ir + "អ៊ីរ៉ាក់\0" // iq + "អ៊ីស្រាអែល\0" // il + "អ៊ីស្លង់\0" // is + "អ៊ុយក្រែន\0" // ua + "អ៊ុយរូហ្គាយ\0" // uy + "អ៊ូសបេគីស្ថាន\0" // uz + "អ៊ូហ្គង់ដា\0" // ug + "ឥណ្ឌា\0" // in + "ឥណ្ឌូណេស៊ី\0" // id + "ḍuminika\0" // dm + "ḥong kong\0" // hk + "ṛumanya\0" // ro + "ṣirbya\0" // rs + "ṣumal\0" // so + "ṣṣin\0" // cn + "ṣṣumal\0" // so + "ṭanzanya\0" // tz + "ṭanẓanya\0" // tz + "ṭayland\0" // th + "ṭaylanḍa\0" // th + "ṭaywan\0" // tw + "ṭaǧikistan\0" // tj + "ṭelyan\0" // it + "ṭrindad d ṭubagu\0" // tt + "ṭugu\0" // tg + "ṭuklaw\0" // tk + "ṭuklu\0" // tk + "ṭunga\0" // to + "ṭurk\0" // tr + "ṭurk d tegzirin n kaykus\0" // tc + "ṭurkmanistan\0" // tm + "ṭuvalu\0" // tv + "ṭṭugu\0" // tg + "ả rập xê-út\0" // sa + "ấn độ\0" // in + "​​république de côte d’ivoire\0" // ci + "ⴰⴳⵎⵎⴰⴹ ⵏ ⵜⴰⴳⵓⵜ ⴷ ⵖⵣⵣⴰ\0" // ps + "ⴰⴷⵔⴰⴱⵉⵊⴰⵏ\0" // az + "ⴰⴷⵔⴰⵔ ⵏ ⵟⴰⵕⵉⵇ\0" // gi + "ⴰⴼⵔⵉⵇⵢⴰ ⵏ ⵉⴼⴼⵓⵙ\0" // za + "ⴰⴼⵖⴰⵏⵉⵙⵜⴰⵏ\0" // af + "ⴰⵍⴱⴰⵏⵢⴰ\0" // al + "ⴰⵍⵎⴰⵏⵢⴰ\0" // de + "ⴰⵏⴳⵉⵍⴰ\0" // ai + "ⴰⵏⴳⵓⵍⴰ\0" // ao + "ⴰⵏⴷⵓⵏⵉⵙⵢⴰ\0" // id + "ⴰⵏⴷⵓⵔⴰ\0" // ad + "ⴰⵏⵜⵉⴳⴰ ⴷ ⴱⵔⴱⵓⴷⴰ\0" // ag + "ⴰⵔⵊⴰⵏⵜⵉⵏ\0" // ar + "ⴰⵔⵎⵉⵏⵢⴰ\0" // am + "ⴰⵔⵓⴱⴰ\0" // aw + "ⴰⵡⴰⵏⴽ ⵏ ⴼⴰⵜⵉⴽⴰⵏ\0" // va + "ⴱⴰⴱⵡⴰ ⵖⵉⵏⵢⴰ ⵜⴰⵎⴰⵢⵏⵓⵜ\0" // pg + "ⴱⴰⴽⵉⵙⵜⴰⵏ\0" // pk + "ⴱⴰⵀⴰⵎⴰⵙ\0" // bs + "ⴱⴰⵍⴰⵡ\0" // pw + "ⴱⴰⵏⴰⵎⴰ\0" // pa + "ⴱⴰⵏⴳⵍⴰⴷⵉⵛ\0" // bd + "ⴱⴰⵔⴰⴳⵡⴰⵢ\0" // py + "ⴱⴰⵔⴱⴰⴷ\0" // bb + "ⴱⵀⵓⵜⴰⵏ\0" // bt + "ⴱⵃⵔⴰⵢⵏ\0" // bh + "ⴱⵉⵍⴰⵔⵓⵙⵢⴰ\0" // by + "ⴱⵉⵍⵉⵣ\0" // bz + "ⴱⵉⵏⵉⵏ\0" // bj + "ⴱⵉⵔⵓ\0" // pe + "ⴱⵉⵜⴽⴰⵢⵔⵏ\0" // pn + "ⴱⵍⵊⵉⴽⴰ\0" // be + "ⴱⵍⵖⴰⵔⵢⴰ\0" // bg + "ⴱⵓⵍⵉⴱⵢⴰ\0" // bo + "ⴱⵓⵍⵉⴼⵢⴰ\0" // bo + "ⴱⵓⵍⵉⵏⵉⵣⵢⴰ ⵜⴰⴼⵔⴰⵏⵙⵉⵙⵜ\0" // pf + "ⴱⵓⵍⵓⵏⵢⴰ\0" // pl + "ⴱⵓⵔⴽⵉⵏⴰ ⴼⴰⵙⵓ\0" // bf + "ⴱⵓⵔⵓⵏⴷⵉ\0" // bi + "ⴱⵓⵔⵜⵓ ⵔⵉⴽⵓ\0" // pr + "ⴱⵓⵙⵏⴰ ⴷ ⵀⵉⵔⵙⵉⴽ\0" // ba + "ⴱⵓⵜⵙⵡⴰⵏⴰ\0" // bw + "ⴱⵔⴰⵣⵉⵍ\0" // br + "ⴱⵔⵎⵓⴷⴰ\0" // bm + "ⴱⵔⵓⵏⵉ\0" // bn + "ⴱⵕⵟⵇⵉⵣ\0" // pt + "ⴳⴰⴱⵓⵏ\0" // ga + "ⴳⴰⵎⴱⵢⴰ\0" // gm + "ⴳⵔⵉⵍⴰⵏⴷ\0" // gl + "ⴳⵡⴰⴷⴰⵍⵓⴱ\0" // gp + "ⴳⵡⴰⵎ\0" // gu + "ⴳⵡⴰⵜⵉⵎⴰⵍⴰ\0" // gt + "ⴳⵡⵉⵢⴰⵏ ⵜⴰⴼⵔⴰⵏⵙⵉⵙⵜ\0" // gf + "ⴳⵡⵉⵢⴰⵏⴰ\0" // gy + "ⴷⴰⵏⵎⴰⵔⴽ\0" // dk + "ⴷⵊⵉⴱⵓⵜⵉ\0" // dj + "ⴷⵓⵎⵉⵏⵉⴽ\0" // dm + "ⴷⵣⴰⵢⵔ\0" // dz + "ⴼⴰⵏⵡⴰⵟⵓ\0" // vu + "ⴼⵉⴷⵊⵉ\0" // fj + "ⴼⵉⵍⵉⴱⴱⵉⵏ\0" // ph + "ⴼⵉⵍⵍⴰⵏⴷⴰ\0" // fi + "ⴼⵉⵏⵣⵡⵉⵍⴰ\0" // ve + "ⴼⵉⵜⵏⴰⵎ\0" // vn + "ⴼⵔⴰⵏⵙⴰ\0" // fr + "ⴽⴰⵍⵉⴷⵓⵏⵢⴰ ⵜⴰⵎⴰⵢⵏⵓⵜ\0" // nc + "ⴽⴰⵎⴱⵓⴷⵢⴰ\0" // kh + "ⴽⴰⵎⵉⵔⵓⵏ\0" // cm + "ⴽⴰⵏⴰⴷⴰ\0" // ca + "ⴽⴰⵣⴰⵅⵙⵜⴰⵏ\0" // kz + "ⴽⵉⵏⵢⴰ\0" // ke + "ⴽⵉⵔⵉⴱⴰⵜⵉ\0" // ki + "ⴽⵉⵔⵖⵉⵣⵉⵙⵜⴰⵏ\0" // kg + "ⴽⵓⴱⴰ\0" // cu + "ⴽⵓⵍⵓⵎⴱⵢⴰ\0" // co + "ⴽⵓⵏⴳⵓ\0" // cg + "ⴽⵓⵔⵢⴰ ⵏ ⵉⴼⴼⵓⵙ\0" // kr + "ⴽⵓⵔⵢⴰ ⵏ ⵉⵥⵥⵍⵎⴹ\0" // kp + "ⴽⵓⵙⵜⴰ ⵔⵉⴽⴰ\0" // cr + "ⴽⵓⵜ ⴷⵉⴼⵡⴰⵔ\0" // ci + "ⴽⵔⵡⴰⵜⵢⴰ\0" // hr + "ⵀⴰⵢⵜⵉ\0" // ht + "ⵀⵏⵖⴰⵔⵢⴰ\0" // hu + "ⵀⵓⵍⴰⵏⴷⴰ\0" // nl + "ⵀⵓⵏⴷⵓⵔⴰⵙ\0" // hn + "ⵄⵓⵎⴰⵏ\0" // om + "ⵇⴰⵜⴰⵔ\0" // qa + "ⵇⵓⴱⵔⵓⵙ\0" // cy + "ⵇⵓⵎⵓⵔ\0" // km + "ⵉⴽⵡⴰⴷⵓⵔ\0" // ec + "ⵉⵔⴰⵏ\0" // ir + "ⵉⵔⵉⵜⵉⵔⵢⴰ\0" // er + "ⵉⵔⵍⴰⵏⴷⴰ\0" // ie + "ⵉⵙⵍⴰⵏⴷ\0" // is + "ⵉⵙⵔⴰⵢⵉⵍ\0" // il + "ⵉⵙⵜⵓⵏⵢⴰ\0" // ee + "ⵉⵜⵢⵓⴱⵢⴰ\0" // et + "ⵉⵟⴰⵍⵢⴰ\0" // it + "ⵉⵡⵓⵏⴰⴽ ⵎⵓⵏⵏⵉⵏ ⵏ ⵎⵉⵔⵉⴽⴰⵏ\0" // us + "ⵊⴰⵎⴰⵢⴽⴰ\0" // jm + "ⵊⵓⵔⵊⵢⴰ\0" // ge + "ⵍⴰⵜⴼⵢⴰ\0" // lv + "ⵍⴰⵡⵙ\0" // la + "ⵍⴽⵡⵉⵜ\0" // kw + "ⵍⵀⵉⵏⴷ\0" // in + "ⵍⵄⵉⵔⴰⵇ\0" // iq + "ⵍⵉⴱⵉⵔⵢⴰ\0" // lr + "ⵍⵉⴱⵢⴰ\0" // ly + "ⵍⵉⴽⵉⵏⵛⵜⴰⵢⵏ\0" // li + "ⵍⵉⵎⴰⵔⴰⵜ\0" // ae + "ⵍⵉⵚⵓⵟⵓ\0" // ls + "ⵍⵉⵜⵡⴰⵏⵢⴰ\0" // lt + "ⵍⵎⵖⵔⵉⴱ\0" // ma + "ⵍⵓⴱⵏⴰⵏ\0" // lb + "ⵍⵓⴽⵙⴰⵏⴱⵓⵔⴳ\0" // lu + "ⵍⵓⵔⴷⵓⵏ\0" // jo + "ⵍⵢⴰⴱⴰⵏ\0" // jp + "ⵍⵢⵓⵏⴰⵏ\0" // gr + "ⵎⴰⴷⴰⵖⴰⵛⵇⴰⵔ\0" // mg + "ⵎⴰⵍⴰⵡⵉ\0" // mw + "ⵎⴰⵍⴷⵉⴼ\0" // mv + "ⵎⴰⵍⵉ\0" // ml + "ⵎⴰⵍⵉⵣⵢⴰ\0" // my + "ⵎⴰⵍⵟⴰ\0" // mt + "ⵎⴰⵔⵜⵉⵏⵉⴽ\0" // mq + "ⵎⴰⵙⵉⴷⵓⵏⵢⴰ\0" // mk + "ⵎⴰⵢⵓⵟ\0" // yt + "ⵎⵉⴽⵔⵓⵏⵉⵣⵢⴰ\0" // fm + "ⵎⵉⴽⵙⵉⴽ\0" // mx + "ⵎⵉⵚⵕ\0" // eg + "ⵎⵏⵖⵓⵍⵢⴰ\0" // mn + "ⵎⵓⵍⴷⵓⴼⵢⴰ\0" // md + "ⵎⵓⵏⴰⴽⵓ\0" // mc + "ⵎⵓⵏⵙⵉⵔⴰⵜ\0" // ms + "ⵎⵓⵏⵜⵉⵏⵉⴳⵔⵓ\0" // me + "ⵎⵓⵔⵉⵙ\0" // mu + "ⵎⵓⵕⵉⵟⴰⵏⵢⴰ\0" // mr + "ⵎⵓⵣⵏⴱⵉⵇ\0" // mz + "ⵎⵢⴰⵏⵎⴰⵔ\0" // mm + "ⵏⴰⵎⵉⴱⵢⴰ\0" // na + "ⵏⴰⵡⵔⵓ\0" // nr + "ⵏⵉⴱⴰⵍ\0" // np + "ⵏⵉⴽⴰⵔⴰⴳⵡⴰ\0" // ni + "ⵏⵉⵊⵉⵔⵢⴰ\0" // ng + "ⵏⵉⵡⵉ\0" // nu + "ⵏⵏⵉⵊⵉⵔ\0" // ne + "ⵏⵏⵎⵙⴰ\0" // at + "ⵏⵏⵔⵡⵉⵊ\0" // no + "ⵏⵢⵓⵣⵉⵍⴰⵏⴷⴰ\0" // nz + "ⵓⴽⵔⴰⵏⵢⴰ\0" // ua + "ⵓⵔⵓⴳⵡⴰⵢ\0" // uy + "ⵓⵖⴰⵏⴷⴰ\0" // ug + "ⵓⵙⵜⵔⴰⵍⵢⴰ\0" // au + "ⵓⵣⴱⴰⴽⵉⵙⵜⴰⵏ\0" // uz + "ⵔⵉⵢⵓⵏⵢⵓⵏ\0" // re + "ⵔⵓⵎⴰⵏⵢⴰ\0" // ro + "ⵔⵓⵙⵢⴰ\0" // ru + "ⵔⵡⴰⵏⴷⴰ\0" // rw + "ⵖⴰⵏⴰ\0" // gh + "ⵖⵉⵏⵢⴰ\0" // gn + "ⵖⵉⵏⵢⴰ ⴱⵉⵙⴰⵡ\0" // gw + "ⵖⵉⵏⵢⴰ ⵏ ⵉⴽⵡⴰⴷⵓⵔ\0" // gq + "ⵖⵔⵏⴰⵟⴰ\0" // gd + "ⵙⴰⵍⴼⴰⴷⵓⵔ\0" // sv + "ⵙⴰⵎⵡⴰ\0" // ws + "ⵙⴰⵎⵡⴰ ⵜⴰⵎⵉⵔⵉⴽⴰⵏⵉⵜ\0" // as + "ⵙⴰⵏⴱⵢⵉⵔ ⴷ ⵎⵉⴽⵍⵓⵏ\0" // pm + "ⵙⴰⵏⴼⴰⵏⵙⴰⵏ ⴷ ⴳⵔⵉⵏⴰⴷⵉⵏ\0" // vc + "ⵙⴰⵏⴽⵔⵉⵙ ⴷ ⵏⵉⴼⵉⵙ\0" // kn + "ⵙⴰⵏⵎⴰⵔⵉⵏⵓ\0" // sm + "ⵙⴰⵏⵜⵉⵍⵉⵏ\0" // sh + "ⵙⴰⵏⵜⵍⵓⵙⵉ\0" // lc + "ⵙⴰⵡⵟⵓⵎⵉ ⴷ ⴱⵔⴰⵏⵙⵉⴱ\0" // st + "ⵙⴱⴰⵏⵢⴰ\0" // es + "ⵙⵉⵔⴱⵢⴰ\0" // rs + "ⵙⵍⵓⴼⴰⴽⵢⴰ\0" // sk + "ⵙⵍⵓⴼⵉⵏⵢⴰ\0" // si + "ⵙⵏⵖⴰⴼⵓⵔⴰ\0" // sg + "ⵙⵓⵔⵉⵏⴰⵎ\0" // sr + "ⵙⵓⵔⵢⴰ\0" // sy + "ⵙⵔⵉⵍⴰⵏⴽⴰ\0" // lk + "ⵙⵙⴰⵄⵓⴷⵉⵢⴰ\0" // sa + "ⵙⵙⵉⵏⵉⴳⴰⵍ\0" // sn + "ⵙⵙⵉⵔⴰⵍⵢⵓⵏ\0" // sl + "ⵙⵙⵉⵛⵉⵍ\0" // sc + "ⵙⵙⵓⴷⴰⵏ\0" // sd + "ⵙⵙⵓⴷⴰⵏ ⵏ ⵉⴼⴼⵓⵙ\0" // ss + "ⵙⵙⵡⵉⴷ\0" // se + "ⵙⵡⴰⵣⵉⵍⴰⵏⴷⴰ\0" // sz + "ⵙⵡⵉⵙⵔⴰ\0" // ch + "ⵚⵚⵓⵎⴰⵍ\0" // so + "ⵛⵛⵉⵍⵉ\0" // cl + "ⵛⵛⵉⵏⵡⴰ\0" // cn + "ⵜⴰⴳⴷⵓⴷⴰⵏⵜ ⵜⴰⴷⵉⵎⵓⵇⵔⴰⵜⵉⵜ ⵏ ⴽⵓⵏⴳⵓ\0" // cd + "ⵜⴰⴳⴷⵓⴷⴰⵏⵜ ⵜⴰⴷⵓⵎⵉⵏⵉⴽⵜ\0" // do + "ⵜⴰⴳⴷⵓⴷⴰⵏⵜ ⵜⴰⵏⴰⵎⵎⴰⵙⵜ ⵏ ⵉⴼⵔⵉⵇⵢⴰ\0" // cf + "ⵜⴰⴳⴷⵓⴷⴰⵏⵜ ⵜⴰⵜⵛⵉⴽⵉⵜ\0" // cz + "ⵜⴰⴳⵍⴷⵉⵜ ⵉⵎⵓⵏⵏ\0" // gb + "ⵜⴰⴷⵊⴰⴽⵉⵙⵜⴰⵏ\0" // tj + "ⵜⴰⵎⵏⴰⴹⵜ ⵜⴰⵏⴳⵍⵉⵣⵉⵜ ⵏ ⵓⴳⴰⵔⵓ ⴰⵀⵉⵏⴷⵉ\0" // io + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⴽⴰⴱⴱⵉⵔⴷⵉ\0" // cv + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⴽⴰⵢⵎⴰⵏ\0" // ky + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⴽⵓⴽ\0" // ck + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⵎⴰⵍⴰⵡⵉ\0" // fk + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⵎⴰⵔⵛⴰⵍ\0" // mh + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⵎⴰⵔⵢⴰⵏ ⵏ ⵉⵥⵥⵍⵎⴹ\0" // mp + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⵏⵓⵔⴼⵓⵍⴽ\0" // nf + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⵙⴰⵍⵓⵎⴰⵏ\0" // sb + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵏ ⵜⵓⵔⴽⵢⴰ ⴷ ⴽⴰⵢⴽ\0" // tc + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵜⵉⵎⴳⴰⴷ ⵏ ⵉⵡⵓⵏⴰⴽ ⵎⵓⵏⵏⵉⵏ\0" // vi + "ⵜⵉⴳⵣⵉⵔⵉⵏ ⵜⵉⵎⴳⴰⴷ ⵏ ⵏⵏⴳⵍⵉⵣ\0" // vg + "ⵜⵉⵎⵓⵔ ⵏ ⵍⵇⴱⵍⵜ\0" // tl + "ⵜⵓⴼⴰⵍⵓ\0" // tv + "ⵜⵓⵏⵙ\0" // tn + "ⵜⵓⵔⴽⵎⴰⵏⵙⵜⴰⵏ\0" // tm + "ⵜⵓⵔⴽⵢⴰ\0" // tr + "ⵜⵔⵉⵏⵉⴷⴰⴷ ⴷ ⵟⵓⴱⴰⴳⵓ\0" // tt + "ⵜⵛⴰⴷ\0" // td + "ⵟⴰⵏⵥⴰⵏⵢⴰ\0" // tz + "ⵟⴰⵢⵍⴰⵏⴷ\0" // th + "ⵟⴰⵢⵡⴰⵏ\0" // tw + "ⵟⵓⴳⵓ\0" // tg + "ⵟⵓⴽⵍⴰⵡ\0" // tk + "ⵟⵓⵏⴳⴰ\0" // to + "ⵡⴰⵍⵉⵙ ⴷ ⴼⵓⵜⵓⵏⴰ\0" // wf + "ⵢⴰⵎⴰⵏ\0" // ye + "ⵣⴰⵎⴱⵢⴰ\0" // zm + "ⵣⵉⵎⴱⴰⴱⵡⵉ\0" // zw + "アイスランド\0" // is + "アイルランド\0" // ie + "アセンション島\0" // ac + "アゼルバイジャン\0" // az + "アフガニスタン\0" // af + "アメリカ\0" // us + "アメリカ合衆国\0" // us + "アラブ首長国連邦\0" // ae + "アルジェリア\0" // dz + "アルゼンチン\0" // ar + "アルバ\0" // aw + "アルバニア\0" // al + "アルメニア\0" // am + "アンギラ\0" // ai + "アンゴラ\0" // ao + "アンティグア・バーブーダ\0" // ag + "アンドラ\0" // ad + "イエメン\0" // ye + "イギリス\0" // gb + "イスラエル\0" // il + "イタリア\0" // it + "イラク\0" // iq + "イラン\0" // ir + "インド\0" // in + "インドネシア\0" // id + "ウォリス・フツナ\0" // wf + "ウガンダ\0" // ug + "ウクライナ\0" // ua + "ウズベキスタン\0" // uz + "ウルグアイ\0" // uy + "エクアドル\0" // ec + "エジプト\0" // eg + "エストニア\0" // ee + "エチオピア\0" // et + "エリトリア\0" // er + "エルサルバドル\0" // sv + "オセアニア周辺地域\0" // qo + "オマーン\0" // om + "オランダ\0" // nl + "オランダ領カリブ\0" // bq + "オーストラリア\0" // au + "オーストリア\0" // at + "オーランド諸島\0" // ax + "カザフスタン\0" // kz + "カタール\0" // qa + "カナダ\0" // ca + "カナリア諸島\0" // ic + "カメルーン\0" // cm + "カンボジア\0" // kh + "カーボベルデ\0" // cv + "ガイアナ\0" // gy + "ガボン\0" // ga + "ガンビア\0" // gm + "ガーナ\0" // gh + "ガーンジー\0" // gg + "キプロス\0" // cy + "キュラソー\0" // cw + "キューバ\0" // cu + "キリバス\0" // ki + "キルギス\0" // kg + "ギニア\0" // gn + "ギニアビサウ\0" // gw + "ギリシャ\0" // gr + "クウェート\0" // kw + "クック諸島\0" // ck + "クリスマス島\0" // cx + "クリッパートン島\0" // cp + "クロアチア\0" // hr + "グアテマラ\0" // gt + "グアドループ\0" // gp + "グアム\0" // gu + "グリーンランド\0" // gl + "グレナダ\0" // gd + "ケイマン諸島\0" // ky + "ケニア\0" // ke + "ココス(キーリング)諸島\0" // cc + "コスタリカ\0" // cr + "コソボ\0" // xk + "コモロ\0" // km + "コロンビア\0" // co + "コンゴ共和国\0" // cg + "コンゴ共和国(ブラザビル)\0" // cg + "コンゴ民主共和国\0" // cd + "コンゴ民主共和国(キンシャサ)\0" // cd + "コートジボワール\0" // ci + "サウジアラビア\0" // sa + "サウスジョージア・サウスサンドウィッチ諸島\0" // gs + "サモア\0" // ws + "サントメ・プリンシペ\0" // st + "サンピエール島・ミクロン島\0" // pm + "サンマリノ\0" // sm + "サン・バルテルミー\0" // bl + "サン・マルタン\0" // mf + "ザンビア\0" // zm + "シエラレオネ\0" // sl + "シリア\0" // sy + "シンガポール\0" // sg + "シント・マールテン\0" // sx + "ジブチ\0" // dj + "ジブラルタル\0" // gi + "ジャマイカ\0" // jm + "ジャージー\0" // je + "ジョージア\0" // ge + "ジンバブエ\0" // zw + "スイス\0" // ch + "スウェーデン\0" // se + "スバールバル諸島・ヤンマイエン島\0" // sj + "スペイン\0" // es + "スリナム\0" // sr + "スリランカ\0" // lk + "スロバキア\0" // sk + "スロベニア\0" // si + "スワジランド\0" // sz + "スーダン\0" // sd + "セウタ・メリリャ\0" // ea + "セネガル\0" // sn + "セルビア\0" // rs + "セントクリストファー・ネーヴィス\0" // kn + "セントビンセント及びグレナディーン諸島\0" // vc + "セントヘレナ\0" // sh + "セントルシア\0" // lc + "セーシェル\0" // sc + "ソマリア\0" // so + "ソロモン諸島\0" // sb + "タイ\0" // th + "タジキスタン\0" // tj + "タンザニア\0" // tz + "タークス・カイコス諸島\0" // tc + "チェコ\0" // cz + "チェコ共和国\0" // cz + "チャド\0" // td + "チュニジア\0" // tn + "チリ\0" // cl + "ツバル\0" // tv + "ディエゴガルシア島\0" // dg + "デンマーク\0" // dk + "トケラウ\0" // tk + "トリスタン・ダ・クーニャ\0" // ta + "トリニダード・トバゴ\0" // tt + "トルクメニスタン\0" // tm + "トルコ\0" // tr + "トンガ\0" // to + "トーゴ\0" // tg + "ドイツ\0" // de + "ドミニカ共和国\0" // do + "ドミニカ国\0" // dm + "ナイジェリア\0" // ng + "ナウル\0" // nr + "ナミビア\0" // na + "ニウエ\0" // nu + "ニカラグア\0" // ni + "ニジェール\0" // ne + "ニューカレドニア\0" // nc + "ニュージーランド\0" // nz + "ネパール\0" // np + "ノルウェー\0" // no + "ノーフォーク島\0" // nf + "ハイチ\0" // ht + "ハンガリー\0" // hu + "ハード島・マクドナルド諸島\0" // hm + "バチカン市国\0" // va + "バヌアツ\0" // vu + "バハマ\0" // bs + "バミューダ\0" // bm + "バルバドス\0" // bb + "バングラデシュ\0" // bd + "バーレーン\0" // bh + "パキスタン\0" // pk + "パナマ\0" // pa + "パプアニューギニア\0" // pg + "パラオ\0" // pw + "パラグアイ\0" // py + "パレスチナ\0" // ps + "パレスチナ自治区\0" // ps + "ピトケアン諸島\0" // pn + "フィジー\0" // fj + "フィリピン\0" // ph + "フィンランド\0" // fi + "フェロー諸島\0" // fo + "フォークランド諸島\0" // fk + "フォークランド諸島 (マルビーナス諸島)\0" // fk + "フランス\0" // fr + "ブラジル\0" // br + "ブルガリア\0" // bg + "ブルキナファソ\0" // bf + "ブルネイ\0" // bn + "ブルンジ\0" // bi + "ブータン\0" // bt + "ブーベ島\0" // bv + "プエルトリコ\0" // pr + "ベトナム\0" // vn + "ベナン\0" // bj + "ベネズエラ\0" // ve + "ベラルーシ\0" // by + "ベリーズ\0" // bz + "ベルギー\0" // be + "ペルー\0" // pe + "ホンジュラス\0" // hn + "ボスニア・ヘルツェゴビナ\0" // ba + "ボツワナ\0" // bw + "ボリビア\0" // bo + "ポルトガル\0" // pt + "ポーランド\0" // pl + "マカオ\0" // mo + "マケドニア\0" // mk + "マケドニア(旧ユーゴスラビア共和国)\0" // mk + "マダガスカル\0" // mg + "マヨット\0" // yt + "マラウイ\0" // mw + "マリ\0" // ml + "マルタ\0" // mt + "マルティニーク\0" // mq + "マレーシア\0" // my + "マン島\0" // im + "マーシャル諸島\0" // mh + "ミクロネシア連邦\0" // fm + "ミャンマー (ビルマ)\0" // mm + "メキシコ\0" // mx + "モザンビーク\0" // mz + "モナコ\0" // mc + "モルディブ\0" // mv + "モルドバ\0" // md + "モロッコ\0" // ma + "モンゴル\0" // mn + "モンテネグロ\0" // me + "モントセラト\0" // ms + "モーリシャス\0" // mu + "モーリタニア\0" // mr + "ユーロ圏\0" // ez + "ヨルダン\0" // jo + "ラオス\0" // la + "ラトビア\0" // lv + "リトアニア\0" // lt + "リヒテンシュタイン\0" // li + "リビア\0" // ly + "リベリア\0" // lr + "ルクセンブルク\0" // lu + "ルワンダ\0" // rw + "ルーマニア\0" // ro + "レソト\0" // ls + "レバノン\0" // lb + "レユニオン\0" // re + "ロシア\0" // ru + "万那杜\0" // vu + "不丹\0" // bt + "东加\0" // to + "东帝汶\0" // tl + "中华人民共和国\0" // cn + "中华人民共和国澳门特别行政区\0" // mo + "中华人民共和国香港特别行政区\0" // hk + "中国\0" // cn + "中国澳门特别行政区\0" // mo + "中国香港特别行政区\0" // hk + "中國\0" // cn + "中國澳門特別行政區\0" // mo + "中國香港特別行政區\0" // hk + "中央アフリカ共和国\0" // cf + "中華人民共和国マカオ特別行政区\0" // mo + "中華人民共和国香港特別行政区\0" // hk + "中華人民共和國\0" // cn + "中華人民共和國澳門特別行政區\0" // mo + "中華人民共和國香港特別行政區\0" // hk + "中非共和国\0" // cf + "中非共和國\0" // cf + "丹麥\0" // dk + "丹麦\0" // dk + "义大利\0" // it + "乌克兰\0" // ua + "乌兹别克\0" // uz + "乌兹别克斯坦\0" // uz + "乌干达\0" // ug + "乌拉圭\0" // uy + "乍得\0" // td + "乔治亚共和国\0" // ge + "也門\0" // ye + "也门\0" // ye + "亚塞拜然\0" // az + "亚美尼亚\0" // am + "亞塞拜然\0" // az + "亞美尼亞\0" // am + "仏領ギアナ\0" // gf + "仏領ポリネシア\0" // pf + "仏領極南諸島\0" // tf + "以色列\0" // il + "伊拉克\0" // iq + "伊朗\0" // ir + "休达与梅利利亚\0" // ea + "休达及梅利利亚\0" // ea + "休達與梅利利亞\0" // ea + "伯利兹\0" // bz + "伯利茲\0" // bz + "佛得角\0" // cv + "俄罗斯\0" // ru + "俄羅斯\0" // ru + "保加利亚\0" // bg + "保加利亞\0" // bg + "克利珀顿岛\0" // cp + "克罗地亚\0" // hr + "克罗埃西亚\0" // hr + "克羅地亞\0" // hr + "克羅埃西亞\0" // hr + "克里派頓島\0" // cp + "克里派顿岛\0" // cp + "克里珀頓島\0" // cp + "关岛\0" // gu + "冈比亚\0" // gm + "冰岛\0" // is + "冰島\0" // is + "几内亚\0" // gn + "几内亚比索\0" // gw + "几内亚比绍\0" // gw + "列支敦士登\0" // li + "列支敦斯登\0" // li + "刚果共和国\0" // cg + "刚果民主共和国\0" // cd + "刚果(布拉萨)\0" // cg + "刚果(布)\0" // cg + "刚果(金夏沙)\0" // cd + "刚果(金)\0" // cd + "利比亚\0" // ly + "利比亞\0" // ly + "利比里亚\0" // lr + "利比里亞\0" // lr + "前南斯拉夫馬其頓共和國\0" // mk + "前南斯拉夫马其顿共和国\0" // mk + "剛果共和國\0" // cg + "剛果民主共和國\0" // cd + "剛果(布拉薩)\0" // cg + "剛果(金夏沙)\0" // cd + "加彭\0" // ga + "加拿大\0" // ca + "加納\0" // gh + "加纳\0" // gh + "加纳利群岛\0" // ic + "加蓬\0" // ga + "加那利群岛\0" // ic + "加那利群島\0" // ic + "匈牙利\0" // hu + "北マリアナ諸島\0" // mp + "北朝鮮\0" // kp + "北韓\0" // kp + "北韩\0" // kp + "北馬利安納群島\0" // mp + "北馬里亞納群島\0" // mp + "北马里亚纳群岛\0" // mp + "千里达同多巴哥\0" // tt + "千里達及托巴哥\0" // tt + "千里達同多巴哥\0" // tt + "千里達和多巴哥\0" // tt + "南アフリカ\0" // za + "南スーダン\0" // ss + "南乔治亚和南桑威奇群岛\0" // gs + "南佐治亚岛同南桑威奇群岛\0" // gs + "南佐治亞島同南桑威奇群島\0" // gs + "南佐治亞島與南桑威奇群島\0" // gs + "南喬治亞與南三明治群島\0" // gs + "南极洲\0" // aq + "南極\0" // aq + "南極洲\0" // aq + "南苏丹\0" // ss + "南蘇丹\0" // ss + "南非\0" // za + "南韓\0" // kr + "南韩\0" // kr + "博茨瓦納\0" // bw + "博茨瓦纳\0" // bw + "卡塔尔\0" // qa + "卡塔爾\0" // qa + "卡达\0" // qa + "卡達\0" // qa + "卢安达\0" // rw + "卢旺达\0" // rw + "卢森堡\0" // lu + "印尼\0" // id + "印度\0" // in + "印度尼西亚\0" // id + "危地馬拉\0" // gt + "危地马拉\0" // gt + "厄利垂亚\0" // er + "厄利垂亞\0" // er + "厄瓜多\0" // ec + "厄瓜多尔\0" // ec + "厄瓜多爾\0" // ec + "厄立特里亚\0" // er + "厄立特里亞\0" // er + "叙利亚\0" // sy + "古巴\0" // cu + "可可斯群島\0" // cc + "台湾\0" // tw + "台灣\0" // tw + "史瓦济兰\0" // sz + "史瓦濟蘭\0" // sz + "叶门\0" // ye + "合衆国領有小離島\0" // um + "吉尔吉斯\0" // kg + "吉尔吉斯斯坦\0" // kg + "吉布地\0" // dj + "吉布提\0" // dj + "吉爾吉斯\0" // kg + "吉里巴斯\0" // ki + "吐瓦魯\0" // tv + "吐瓦鲁\0" // tv + "哈萨克\0" // kz + "哈萨克斯坦\0" // kz + "哈薩克\0" // kz + "哥伦比亚\0" // co + "哥倫比亞\0" // co + "哥斯大黎加\0" // cr + "哥斯达黎加\0" // cr + "哥斯達黎加\0" // cr + "喀麥隆\0" // cm + "喀麦隆\0" // cm + "喬治亞\0" // ge + "喬治亞共和國\0" // ge + "图瓦卢\0" // tv + "圖瓦盧\0" // tv + "土克斯及开科斯群岛\0" // tc + "土克斯及開科斯群島\0" // tc + "土库曼\0" // tm + "土库曼斯坦\0" // tm + "土庫曼\0" // tm + "土耳其\0" // tr + "圣卢西亚\0" // lc + "圣基茨同尼维斯\0" // kn + "圣基茨和尼维斯\0" // kn + "圣多美同普林西比\0" // st + "圣多美和普林西比\0" // st + "圣巴泰勒米\0" // bl + "圣巴瑟米\0" // bl + "圣文森特同格林纳丁斯\0" // vc + "圣文森特和格林纳丁斯\0" // vc + "圣皮埃尔同密克隆群岛\0" // pm + "圣皮埃尔和密克隆群岛\0" // pm + "圣诞岛\0" // cx + "圣赫勒拿\0" // sh + "圣赫勒拿岛\0" // sh + "圣露西亚\0" // lc + "圣马利诺\0" // sm + "圣马力诺\0" // sm + "圭亚那\0" // gy + "圭亞那\0" // gy + "坦尚尼亚\0" // tz + "坦尚尼亞\0" // tz + "坦桑尼亚\0" // tz + "坦桑尼亞\0" // tz + "埃及\0" // eg + "埃塞俄比亚\0" // et + "埃塞俄比亞\0" // et + "基里巴斯\0" // ki + "塔吉克\0" // tj + "塔吉克斯坦\0" // tj + "塞內加爾\0" // sn + "塞内加尔\0" // sn + "塞尔维亚\0" // rs + "塞席尔\0" // sc + "塞席爾\0" // sc + "塞拉利昂\0" // sl + "塞浦路斯\0" // cy + "塞爾維亞\0" // rs + "塞舌尔\0" // sc + "塞舌爾\0" // sc + "墨西哥\0" // mx + "多哥\0" // tg + "多哥共和國\0" // tg + "多明尼加共和国\0" // do + "多明尼加共和國\0" // do + "多米尼克\0" // dm + "多米尼加共和国\0" // do + "大洋洲边疆群岛\0" // qo + "大洋洲边远群岛\0" // qo + "大洋洲邊疆群島\0" // qo + "奈及利亚\0" // ng + "奈及利亞\0" // ng + "奥兰群岛\0" // ax + "奥地利\0" // at + "奧地利\0" // at + "奧蘭群島\0" // ax + "委內瑞拉\0" // ve + "委内瑞拉\0" // ve + "孟加拉\0" // bd + "孟加拉国\0" // bd + "安哥拉\0" // ao + "安圭拉\0" // ai + "安地卡及巴布達\0" // ag + "安奎拉\0" // ai + "安提瓜同巴布达\0" // ag + "安提瓜同巴布達\0" // ag + "安提瓜和巴布达\0" // ag + "安提瓜和巴布達\0" // ag + "安道尔\0" // ad + "安道爾\0" // ad + "宏都拉斯\0" // hn + "密克罗尼西亚\0" // fm + "密克罗尼西亚群岛\0" // fm + "密克羅尼西亞\0" // fm + "密克羅尼西亞群島\0" // fm + "寮国\0" // la + "寮國\0" // la + "尚比亚\0" // zm + "尚比亞\0" // zm + "尼加拉瓜\0" // ni + "尼日\0" // ne + "尼日利亚\0" // ng + "尼日利亞\0" // ng + "尼日尔\0" // ne + "尼日爾\0" // ne + "尼泊尔\0" // np + "尼泊爾\0" // np + "岡比亞\0" // gm + "巴勒斯坦\0" // ps + "巴勒斯坦自治区\0" // ps + "巴勒斯坦自治區\0" // ps + "巴勒斯坦領土\0" // ps + "巴勒斯坦领土\0" // ps + "巴哈馬\0" // bs + "巴哈马\0" // bs + "巴基斯坦\0" // pk + "巴巴多斯\0" // bb + "巴布亚新几内亚\0" // pg + "巴布亚纽几内亚\0" // pg + "巴布亞新幾內亞\0" // pg + "巴布亞紐幾內亞\0" // pg + "巴拉圭\0" // py + "巴拿馬\0" // pa + "巴拿马\0" // pa + "巴林\0" // bh + "巴西\0" // br + "巴貝多\0" // bb + "巴贝多\0" // bb + "布吉納法索\0" // bf + "布吉纳法索\0" // bf + "布基納法索\0" // bf + "布基纳法索\0" // bf + "布威岛\0" // bv + "布威島\0" // bv + "布隆迪\0" // bi + "布韦岛\0" // bv + "希腊\0" // gr + "希臘\0" // gr + "帕劳\0" // pw + "帛琉\0" // pw + "幾內亞\0" // gn + "幾內亞比索\0" // gw + "幾內亞比紹\0" // gw + "库克群岛\0" // ck + "库拉索\0" // cw + "庫克群島\0" // ck + "庫拉索\0" // cw + "开曼群岛\0" // ky + "德国\0" // de + "德國\0" // de + "意大利\0" // it + "愛沙尼亞\0" // ee + "愛爾蘭\0" // ie + "所罗门群岛\0" // sb + "所羅門群島\0" // sb + "托克劳\0" // tk + "托克劳群岛\0" // tk + "托克勞群島\0" // tk + "拉脫維亞\0" // lv + "拉脱維亞\0" // lv + "拉脱维亚\0" // lv + "挪威\0" // no + "挪威屬斯瓦巴及尖棉\0" // sj + "捷克\0" // cz + "捷克共和国\0" // cz + "捷克共和國\0" // cz + "摩尔多瓦\0" // md + "摩洛哥\0" // ma + "摩爾多瓦\0" // md + "摩納哥\0" // mc + "摩纳哥\0" // mc + "敘利亞\0" // sy + "文莱\0" // bn + "斐济\0" // fj + "斐濟\0" // fj + "斯威士兰\0" // sz + "斯威士蘭\0" // sz + "斯洛伐克\0" // sk + "斯洛文尼亚\0" // si + "斯洛文尼亞\0" // si + "斯洛維尼亞\0" // si + "斯洛维尼亚\0" // si + "斯瓦尔巴和扬马延\0" // sj + "斯瓦尔巴特群岛同扬马延岛\0" // sj + "斯瓦爾巴特群島及揚馬延島\0" // sj + "斯瓦爾巴特群島同揚馬延島\0" // sj + "斯里兰卡\0" // lk + "斯里蘭卡\0" // lk + "新加坡\0" // sg + "新喀里多尼亚\0" // nc + "新喀里多尼亞\0" // nc + "新西兰\0" // nz + "日本\0" // jp + "智利\0" // cl + "曼岛\0" // im + "曼島\0" // im + "朝鲜\0" // kp + "東チモール\0" // tl + "東ティモール\0" // tl + "東加\0" // to + "東帝汶\0" // tl + "查德\0" // td + "柬埔寨\0" // kh + "根息\0" // gg + "根西岛\0" // gg + "根西島\0" // gg + "格林納達\0" // gd + "格林纳达\0" // gd + "格瑞那达\0" // gd + "格瑞那達\0" // gd + "格陵兰\0" // gl + "格陵蘭\0" // gl + "格魯吉亞\0" // ge + "格鲁吉亚\0" // ge + "梵蒂冈\0" // va + "梵蒂岡\0" // va + "模里西斯\0" // mu + "欧元区\0" // ez + "歐元區\0" // ez + "比利时\0" // be + "比利時\0" // be + "毛里塔尼亚\0" // mr + "毛里塔尼亞\0" // mr + "毛里求斯\0" // mu + "毛里裘斯\0" // mu + "汤加\0" // to + "汶莱\0" // bn + "汶萊\0" // bn + "沙乌地阿拉伯\0" // sa + "沙地阿拉伯\0" // sa + "沙烏地阿拉伯\0" // sa + "沙特阿拉伯\0" // sa + "法国\0" // fr + "法國\0" // fr + "法属南方属地\0" // tf + "法属南部领地\0" // tf + "法属圣马丁\0" // mf + "法属圭亚那\0" // gf + "法属波利尼西亚\0" // pf + "法属玻里尼西亚\0" // pf + "法屬南方屬地\0" // tf + "法屬南部屬地\0" // tf + "法屬南部領地\0" // tf + "法屬圭亞那\0" // gf + "法屬波利尼西亞\0" // pf + "法屬玻里尼西亞\0" // pf + "法屬聖馬丁\0" // mf + "法罗群岛\0" // fo + "法羅群島\0" // fo + "波兰\0" // pl + "波士尼亞與赫塞哥維納\0" // ba + "波多黎各\0" // pr + "波斯尼亚同黑塞哥维那\0" // ba + "波斯尼亚和黑塞哥维那\0" // ba + "波斯尼亞同黑塞哥維那\0" // ba + "波斯尼亞和黑塞哥維那\0" // ba + "波札那\0" // bw + "波蘭\0" // pl + "泰国\0" // th + "泰國\0" // th + "泽西岛\0" // je + "津巴布韋\0" // zw + "津巴布韦\0" // zw + "洪都拉斯\0" // hn + "海地\0" // ht + "湯加\0" // to + "澤西島\0" // je + "澳大利亚\0" // au + "澳洲\0" // au + "澳門\0" // mo + "澳门\0" // mo + "烏克蘭\0" // ua + "烏干達\0" // ug + "烏拉圭\0" // uy + "烏茲別克\0" // uz + "爱尔兰\0" // ie + "爱沙尼亚\0" // ee + "牙买加\0" // jm + "牙買加\0" // jm + "特克斯和凯科斯群岛\0" // tc + "特克斯和凱科斯群島\0" // tc + "特立尼达和多巴哥\0" // tt + "特里斯坦-达库尼亚群岛\0" // ta + "特里斯坦达库尼亚群岛\0" // ta + "特里斯坦達庫尼亞群島\0" // ta + "狮子山\0" // sl + "獅子山\0" // sl + "玻利維亞\0" // bo + "玻利维亚\0" // bo + "瑙魯\0" // nr + "瑙鲁\0" // nr + "瑞典\0" // se + "瑞士\0" // ch + "瓜地洛普\0" // gp + "瓜地馬拉\0" // gt + "瓜地马拉\0" // gt + "瓜德罗普\0" // gp + "瓦利斯同富图纳群岛\0" // wf + "瓦利斯同富圖納群島\0" // wf + "瓦利斯和富图纳\0" // wf + "瓦利斯群島和富圖那群島\0" // wf + "瓦努阿图\0" // vu + "瓦努阿圖\0" // vu + "甘比亚\0" // gm + "甘比亞\0" // gm + "留尼旺\0" // re + "留尼汪\0" // re + "白俄罗斯\0" // by + "白俄羅斯\0" // by + "百慕大\0" // bm + "百慕达\0" // bm + "百慕達\0" // bm + "皮特凯恩群岛\0" // pn + "皮特凱恩島\0" // pn + "皮特肯群岛\0" // pn + "皮特肯群島\0" // pn + "盖亚那\0" // gy + "盧安達\0" // rw + "盧旺達\0" // rw + "盧森堡\0" // lu + "直布罗陀\0" // gi + "直布羅陀\0" // gi + "福克兰群岛\0" // fk + "福克兰群岛 (马尔维纳斯群岛)\0" // fk + "福克兰群岛(马尔维纳斯群岛)\0" // fk + "福克蘭群島\0" // fk + "福克蘭群島 (馬爾維納斯群島)\0" // fk + "福克蘭群島(馬爾維納斯群島)\0" // fk + "科克斯(基靈)群島\0" // cc + "科威特\0" // kw + "科摩罗\0" // km + "科摩羅\0" // km + "科特迪瓦\0" // ci + "科科斯(基林)群岛\0" // cc + "科科斯(基林)群島\0" // cc + "科索沃\0" // xk + "秘魯\0" // pe + "秘鲁\0" // pe + "突尼斯\0" // tn + "突尼西亚\0" // tn + "突尼西亞\0" // tn + "立陶宛\0" // lt + "米領サモア\0" // as + "米領ヴァージン諸島\0" // vi + "約旦\0" // jo + "納米比亞\0" // na + "紐埃島\0" // nu + "紐西蘭\0" // nz + "索罗门群岛\0" // sb + "索羅門群島\0" // sb + "索馬利亞\0" // so + "索馬里\0" // so + "索马利亚\0" // so + "索马里\0" // so + "維德角\0" // cv + "緬甸\0" // mm + "约旦\0" // jo + "纳米比亚\0" // na + "纽埃\0" // nu + "纽埃岛\0" // nu + "纽西兰\0" // nz + "维德角\0" // cv + "缅甸\0" // mm + "罗马尼亚\0" // ro + "羅馬尼亞\0" // ro + "美国\0" // us + "美国本土外小岛屿\0" // um + "美國\0" // us + "美國本土外小島嶼\0" // um + "美属维京群岛\0" // vi + "美属维尔京群岛\0" // vi + "美属萨摩亚\0" // as + "美屬維京群島\0" // vi + "美屬維爾京群島\0" // vi + "美屬薩摩亞\0" // as + "義大利\0" // it + "老挝\0" // la + "老撾\0" // la + "聖克里斯多福及尼維斯\0" // kn + "聖基茨同尼維斯\0" // kn + "聖基茨和尼維斯\0" // kn + "聖多美同普林西比\0" // st + "聖多美和普林西比\0" // st + "聖多美普林西比\0" // st + "聖巴泰勒米\0" // bl + "聖巴瑟米\0" // bl + "聖文森及格瑞那丁\0" // vc + "聖文森特同格林納丁斯\0" // vc + "聖文森特和格林納丁斯\0" // vc + "聖皮埃爾同密克隆群島\0" // pm + "聖皮埃與密克隆群島\0" // pm + "聖盧西亞\0" // lc + "聖誕島\0" // cx + "聖赫勒拿島\0" // sh + "聖露西亞\0" // lc + "聖馬利諾\0" // sm + "肯亚\0" // ke + "肯亞\0" // ke + "肯尼亚\0" // ke + "肯雅\0" // ke + "芬兰\0" // fi + "芬蘭\0" // fi + "苏丹\0" // sd + "苏利南\0" // sr + "苏里南\0" // sr + "英国\0" // gb + "英國\0" // gb + "英属印度洋领地\0" // io + "英属维京群岛\0" // vg + "英属维尔京群岛\0" // vg + "英屬印度洋領地\0" // io + "英屬維京群島\0" // vg + "英屬維爾京群島\0" // vg + "英領インド洋地域\0" // io + "英領ヴァージン諸島\0" // vg + "茅利塔尼亚\0" // mr + "茅利塔尼亞\0" // mr + "荷兰\0" // nl + "荷兰加勒比区\0" // bq + "荷属加勒比区\0" // bq + "荷属圣马丁\0" // sx + "荷属阿鲁巴\0" // aw + "荷屬聖馬丁\0" // sx + "荷屬阿魯巴\0" // aw + "荷蘭\0" // nl + "荷蘭加勒比區\0" // bq + "莫三比克\0" // mz + "莫桑比克\0" // mz + "莱索托\0" // ls + "菲律宾\0" // ph + "菲律賓\0" // ph + "萨尔瓦多\0" // sv + "萨摩亚\0" // ws + "萬那杜\0" // vu + "葉門\0" // ye + "葛摩\0" // km + "葡萄牙\0" // pt + "蒙古\0" // mn + "蒙哲腊\0" // ms + "蒙哲臘\0" // ms + "蒙特內哥羅\0" // me + "蒙特内哥罗\0" // me + "蒙特塞拉特\0" // ms + "蒲隆地\0" // bi + "蓋亞那\0" // gy + "薩摩亞\0" // ws + "薩爾瓦多\0" // sv + "蘇丹\0" // sd + "蘇利南\0" // sr + "蘇里南\0" // sr + "衣索比亚\0" // et + "衣索比亞\0" // et + "西サハラ\0" // eh + "西撒哈拉\0" // eh + "西班牙\0" // es + "諾福克島\0" // nf + "諾魯\0" // nr + "诺福克岛\0" // nf + "诺鲁\0" // nr + "象牙海岸\0" // ci + "貝南\0" // bj + "貝寧\0" // bj + "貝里斯\0" // bz + "賴比瑞亞\0" // lr + "賴索托\0" // ls + "賽普勒斯\0" // cy + "贊比亞\0" // zm + "贝南\0" // bj + "贝宁\0" // bj + "贝里斯\0" // bz + "赖比瑞亚\0" // lr + "赖索托\0" // ls + "赛普勒斯\0" // cy + "赞比亚\0" // zm + "赤道ギニア\0" // gq + "赤道几内亚\0" // gq + "赤道幾內亞\0" // gq + "赫德岛同麦克唐纳群岛\0" // hm + "赫德岛和麦克唐纳群岛\0" // hm + "赫德島及麥唐納群島\0" // hm + "赫德島同麥克唐納群島\0" // hm + "越南\0" // vn + "辛巴威\0" // zw + "迦納\0" // gh + "迦纳\0" // gh + "迪亚哥加西亚岛\0" // dg + "迪亞哥加西亞島\0" // dg + "迪戈加西亚岛\0" // dg + "開曼群島\0" // ky + "關島\0" // gu + "阿塞拜疆\0" // az + "阿富汗\0" // af + "阿尔及利亚\0" // dz + "阿尔巴尼亚\0" // al + "阿拉伯联合大公国\0" // ae + "阿拉伯联合酋长国\0" // ae + "阿拉伯聯合大公國\0" // ae + "阿拉伯聯合酋長國\0" // ae + "阿曼\0" // om + "阿曼王国\0" // om + "阿曼王國\0" // om + "阿根廷\0" // ar + "阿森松岛\0" // ac + "阿森松島\0" // ac + "阿爾及利亞\0" // dz + "阿爾巴尼亞\0" // al + "阿魯巴\0" // aw + "阿鲁巴\0" // aw + "韓国\0" // kr + "韩国\0" // kr + "香港\0" // hk + "馬丁尼克\0" // mq + "馬丁尼克島\0" // mq + "馬來西亞\0" // my + "馬其頓\0" // mk + "馬利\0" // ml + "馬恩島\0" // im + "馬拉威\0" // mw + "馬拉維\0" // mw + "馬爾他\0" // mt + "馬爾代夫\0" // mv + "馬爾地夫\0" // mv + "馬約特\0" // yt + "馬約特島\0" // yt + "馬紹爾群島\0" // mh + "馬耳他\0" // mt + "馬達加斯加\0" // mg + "馬里\0" // ml + "马丁尼克岛\0" // mq + "马其顿\0" // mk + "马其顿(前南斯拉夫马其顿共和国)\0" // mk + "马利\0" // ml + "马尔他\0" // mt + "马尔代夫\0" // mv + "马尔地夫\0" // mv + "马恩岛\0" // im + "马拉威\0" // mw + "马拉维\0" // mw + "马提尼克\0" // mq + "马来西亚\0" // my + "马约特\0" // yt + "马绍尔群岛\0" // mh + "马耳他\0" // mt + "马达加斯加\0" // mg + "马里\0" // ml + "鮑威特島\0" // bv + "黎巴嫩\0" // lb + "黑山\0" // me + "ꀠꑭ\0" // br + "ꂰꇩ\0" // us + "ꃔꇩ\0" // fr + "ꄓꇩ\0" // de + "ꊉꇆꌦ\0" // ru + "ꍏꇩ\0" // cn + "ꏝꀪ\0" // jp + "ꑱꇩ\0" // gb + "ꑴꄊꆺ\0" // it + "ꑴꄗ\0" // in + "ꔀꔸꔳꕟ\0" // er + "ꔆꔷꔘ\0" // bz + "ꔋꕩ ꕒꕌꖺ ꕸꖃꔀ\0" // sl + "ꔎꔒ ꗃ ꔳꗞꖻ\0" // tl + "ꔒꔫꕩ\0" // ly + "ꔒꕑꗟꘋ\0" // lb + "ꔓꗠꖻ\0" // re + "ꔖꗼꔷ\0" // sc + "ꔚꔷ\0" // cl + "ꔛꔟꔻ ꔤꔺꕩ ꗛꔤꘂ ꕗꕴꔀ ꕮ\0" // io + "ꔛꔟꔻ ꗩꗡ ꗏ ꖷꖬ ꔳꘋꗣ\0" // vg + "ꔛꗨꗢ\0" // jp + "ꔝꘈꘋ\0" // ye + "ꔞꔀꕮꘋ ꔳꘋꗣ\0" // ky + "ꔞꔪ ꗲꔵ ꔳꘋꗣ\0" // cv + "ꔞꔻꕮꔻ ꔳꘋꗣ\0" // cx + "ꔞꕰ\0" // ke + "ꔤꔳꖎꔪꕩ\0" // et + "ꔤꔺꕩ\0" // in + "ꔤꕚꔷ\0" // it + "ꔤꕟꕃ\0" // iq + "ꔤꕟꘋ\0" // ir + "ꔤꖆꕇꔻꕩ\0" // id + "ꔪꔳꕪꕆ\0" // pn + "ꔪꖳꕿ ꔸꖏ\0" // pr + "ꔱꔒꔪꘋ\0" // ph + "ꔱꔤꕀ\0" // fj + "ꔱꗷꘋꔻ ꗛꔤ ꔒꘋꗣ ꗏ ꕸꖃꔀ ꖸ\0" // tf + "ꔱꘋ ꖨꕮꕊ\0" // fi + "ꔳꔻꕚꘋ ꕜ ꖴꕯ\0" // ta + "ꔵꔀꖑ ꔳꘋꗣ\0" // dg + "ꔷꖇꕿ\0" // ls + "ꔷꖤꔃꕇꕰ\0" // lt + "ꔷꗿꘋꔻꗳꘋ\0" // li + "ꔻꕇꕭꕌ\0" // sn + "ꔻꕙꕒꔵ ꗪ ꕧꘋ ꕮꘂꘋ\0" // sj + "ꔻꕩꘋ\0" // sy + "ꔻꕬꕶꕱ\0" // sg + "ꔻꖃꔍꕇꕰ\0" // si + "ꔻꖃꕙꕃꕩ\0" // sk + "ꔻꘋ ꔪꘂ ꗪ ꕆꔞꗏꘋ\0" // pm + "ꔻꘋ ꔲꘋꔻꘋ ꗪ ꖶꔓꕯꔵꘋ ꖸ\0" // vc + "ꔻꘋ ꕃꔳꔻ ꗪ ꔕꔲꔻ\0" // kn + "ꔻꘋ ꖨꔻꕩ\0" // lc + "ꔻꘋ ꗥꔷꕯ\0" // sh + "ꔻꘋꔳ ꕮꕊꗳꘋ\0" // sx + "ꔽꔤ ꖨꕮ ꕯꕮꕊ\0" // nz + "ꔽꕓꖜꔃ\0" // zw + "ꕀꖜꔳ\0" // dj + "ꕀꖜꕟꕚ\0" // gi + "ꕃꔒꕐꗋꘋ ꔳꘋꗣ\0" // cp + "ꕃꔸꕑꔳ\0" // ki + "ꕃꕅꔻꕚꘋ\0" // kg + "ꕃꖳꕑ\0" // cu + "ꕅꔤꕇ\0" // gn + "ꕅꔤꕇ ꔫꕢꕴ\0" // gw + "ꕆꔖꕞ\0" // eg + "ꕆꕩꘋꕮ\0" // mm + "ꕆꖏꕇꔻꕩ\0" // fm + "ꕇꕐꔷ\0" // np + "ꕇꕪꕟꖶꕎ\0" // ni + "ꕉꔓ ꖨꕮꕊ\0" // ie + "ꕉꔤꔻ ꖨꕮꕊ\0" // is + "ꕉꔱꔸꕪ ꗛꔤ ꔒꘋꗣ ꗏ ꕸꖃꔀ\0" // za + "ꕉꔱꔸꕪ ꗳ ꗳ ꕸꖃꔀ\0" // cf + "ꕉꔱꕭꔕꔻꕚꘋ\0" // af + "ꕉꔷꔠꔸꕩ\0" // dz + "ꕉꔷꕑꕇꕩ\0" // al + "ꕉꕄꕞ\0" // ai + "ꕉꕆꕯ\0" // am + "ꕉꕞꔺ\0" // ax + "ꕉꕤꕑꔤꕧꘋ\0" // az + "ꕉꖆꕟ\0" // ad + "ꕉꖐꕞ\0" // ao + "ꕉꖩꕑ\0" // aw + "ꕉꘀꘋꔳꕯ\0" // ar + "ꕉꘋꔳꖶꕎ ꗪ ꕑꖜꕜ\0" // ag + "ꕉꘋꕚꔳꕪ\0" // aq + "ꕌꔤꔳ\0" // ht + "ꕎꔷꔻ ꗪ ꖢꖤꕯ\0" // wf + "ꕐꔒꔻꔳꕯ ꔎꔒ ꕀꔤ ꗛꔤ ꕞ ꗱ ꗪ ꕭꕌꕤ\0" // ps + "ꕐꕃꔻꕚꘋ\0" // pk + "ꕐꕟꗝꔀ\0" // py + "ꕐꕯꕮ\0" // pa + "ꕐꖃ\0" // pw + "ꕐꖛꕎ ꕅꔤꕇ ꕯꕮꕊ\0" // pg + "ꕐꘊꔧ\0" // es + "ꕑꔆꖁꔻ\0" // bb + "ꕑꕅꕞꗵꔼ\0" // bd + "ꕑꕇꔻꕞꔤꕞ\0" // il + "ꕑꕌꕮꔻ\0" // bs + "ꕑꗸꘋ\0" // bh + "ꕘꔷꕃ ꖨꕮ ꔳꘋꗣ\0" // fk + "ꕘꖄ ꔳꘋꗣ\0" // fo + "ꕙꔳꕪꘋ ꕢꕨꕌ\0" // va + "ꕙꔳꕪꘋ ꕸꖃꔀ\0" // ve + "ꕙꖸꕎꖤ\0" // vu + "ꕚꔤ ꖨꕮꕊ\0" // th + "ꕚꔤꕎꘋ\0" // tw + "ꕚꕀꕃꔻꕚꘋ\0" // tj + "ꕚꖣꖨ\0" // tv + "ꕚꘋꕤꕇꕰ\0" // tz + "ꕜꕇꕮꕃ\0" // dk + "ꕞꔤꔫꕩ\0" // lr + "ꕞꔳꔲꕩ\0" // lv + "ꕞꕌꖝ ꕸꖃꔀ\0" // sa + "ꕞꕴꔻ\0" // la + "ꕟꖙꕡ\0" // rw + "ꕢꕌꕟ ꔎꔒ ꕀꔤ\0" // eh + "ꕢꕴ ꕿꔈ ꗪ ꕉ ꕮꔧ ꕗꕴꔀ\0" // st + "ꕢꕹꖙꕉ\0" // ws + "ꕢꗡꖛꗐꔻ\0" // cy + "ꕤꔭꕩ\0" // zm + "ꕦꔤꕯ\0" // cn + "ꕦꔵ\0" // td + "ꕧꕓ ꖴꕎ ꖨꕮꕊ\0" // gl + "ꕧꕮꔧ\0" // de + "ꕧꕮꔧꕪ\0" // jm + "ꕪꔈꖩꘋ\0" // cm + "ꕪꔓꔬꘂꘋ ꖨꕮ ꗨꗳꗣ\0" // bq + "ꕪꔷꖁꕇꕰ ꕯꕮꕊ\0" // nc + "ꕪꕚꕌ\0" // qa + "ꕪꕤꔻꕚꘋ\0" // kz + "ꕪꕯꕜ\0" // ca + "ꕪꕹꔵꕩ\0" // kh + "ꕪꘋꕓ ꗞꗢ ꕒꕚꕞꕆ\0" // bl + "ꕪꘋꕓ ꗞꗢ ꕮꕊꔳꘋ\0" // mf + "ꕭꔭꕩ\0" // gm + "ꕭꕌꕯ\0" // gh + "ꕭꕷꘋ\0" // ga + "ꕮꔒꔻꕩ\0" // my + "ꕮꔖꖁꕇꕰ\0" // mk + "ꕮꔳꕇꕃ\0" // mq + "ꕮꔷ\0" // ml + "ꕮꔷꕜꔍ\0" // mv + "ꕮꔸꖆ ꕢꘋ\0" // sm + "ꕮꕊꕚ\0" // mt + "ꕮꕊꕣ ꔳꘋꗣ\0" // mh + "ꕮꕜꕭꔻꕪ\0" // mg + "ꕮꕞꕌꔨ\0" // mw + "ꕮꗚꔎ\0" // yt + "ꕮꗛꖺ\0" // mo + "ꕮꘋ ꔳꘋꗣ\0" // im + "ꕯꔤꕀꔸꕩ\0" // ng + "ꕯꔤꕧ\0" // ne + "ꕯꕆꔫꕩ\0" // na + "ꕱꕮꘋ\0" // om + "ꕶꕱ\0" // us + "ꕶꕱ ꕢꕹꕎ\0" // as + "ꕶꕱ ꕪꘋ ꗅꘋ ꔳꘋꗣ ꖸ\0" // um + "ꕶꕱ ꗩꗡ ꗏ ꖷꖬ ꔳꘋꗣ\0" // vi + "ꕶꕿꕃꔤ ꕸꖃꔀ\0" // pt + "ꕶꗷꘋ\0" // pl + "ꕷꔷꔲꕩ\0" // bo + "ꕷꔻꕇꕰ ꗪ ꗥꕤꖑꔲꕯ\0" // ba + "ꕷꕃꕯ ꕘꖇ\0" // bf + "ꕷꖬꕎꕯ\0" // bw + "ꕹꕤꔭꕃ\0" // mz + "ꕿꔞꖃ\0" // tk + "ꕿꖑ\0" // tg + "ꖁꕆꕇꕪ\0" // dm + "ꖁꕆꕇꕪꘋ ꕸꕱꔀ\0" // do + "ꖄꕆꕇꕰ\0" // ro + "ꖆꖩ\0" // nr + "ꖇꕮꔷꕩ\0" // so + "ꖏꔓꔻꕩ\0" // hr + "ꖏꔳ ꕾꕎ\0" // ci + "ꖏꔸꕩ ꗛꔤ ꔒꘋꗣ ꗏ\0" // kr + "ꖏꔸꕩ ꗛꔤ ꕪꘋꗒ\0" // kp + "ꖏꔻꕚ ꔸꕪ\0" // cr + "ꖏꕃ ꔳꘋꗣ\0" // ck + "ꖏꕹꖄꔻ\0" // km + "ꖏꖇꕾ\0" // xk + "ꖏꖏꔻ (ꔞꔀꔷꘋ) ꔳꘋꗣ\0" // cc + "ꖏꖐ\0" // cg + "ꖏꖐ ꗵꗞꖴꕟꔎ ꕸꖃꔀ\0" // cd + "ꖒꔷꖁꕙ\0" // md + "ꖕꕯꔤꗳ\0" // gb + "ꖜꔍꔳ ꔳꘋꗣ\0" // bv + "ꖜꕚꘋ\0" // bt + "ꖜꕟꔘꔀ\0" // br + "ꖜꖩꔺ\0" // bi + "ꖜꖩꘉꔧ\0" // bn + "ꖢꕟꘋꔻ\0" // fr + "ꖤꔸꔕꕜ ꗪ ꕿꔆꖑ\0" // tt + "ꖤꕇꔻꕩ\0" // tn + "ꖦꕰꕊ ꗳ ꕅꔤꕇ\0" // gq + "ꖬꔃꕤ ꖨꕮꕊ\0" // ch + "ꖬꔨꗵꘋ\0" // se + "ꖬꔸ ꕞꘋꕪ\0" // lk + "ꖬꔸꕯꔈ\0" // sr + "ꖬꕎꔽ ꖨꕮꕊ\0" // sz + "ꖬꕜꘋ ꗛꔤ ꔒꘋꗣ ꗏ\0" // ss + "ꖬꕞꔤꕮꕊꕯ ꔳꘋꗣ\0" // sb + "ꖬꗵꘋ\0" // sd + "ꖳꔓꗝꔀ\0" // uy + "ꖳꕭꕡ\0" // ug + "ꖳꕯꔤꗳ ꕉꕟꔬ ꗡꕆꔓꔻ\0" // ae + "ꖳꖴꔓꘋ\0" // ua + "ꖳꗩꕃꔻꕚꘋ\0" // uz + "ꖴꔃꔳ\0" // kw + "ꖴꕟꖇꕱ\0" // cw + "ꖶꕎꔎꕮꕞ\0" // gt + "ꖶꕎꔐꖨꔅ\0" // gp + "ꖶꕎꕆ\0" // gu + "ꖶꕟꕯꕜ\0" // gd + "ꖶꕩꕯ\0" // gy + "ꖶꗦꘋꔻ\0" // gg + "ꖸꔃꔤ\0" // nu + "ꖺꔻꖤꕎ\0" // at + "ꖺꖬꖤꔃꔷꕩ\0" // au + "ꖽꖫꕟ\0" // hn + "ꖽꘋꕭꔓ\0" // hu + "ꗂꔠꔸꕩ\0" // bg + "ꗋꕬ\0" // to + "ꗋꖺꕃ\0" // tr + "ꗋꖺꕃꔻ ꗪ ꕪꔤꖏꔻ ꔳꘋꗣ\0" // tc + "ꗋꖺꕃꕮꕇꔻꕚꘋ\0" // tm + "ꗏꔻꘋꗂꖺ\0" // lu + "ꗐꖺꔻꕩ\0" // ru + "ꗘꖺꕀꕩ\0" // ge + "ꗘꖺꕀꕩ ꗛꔤ ꔒꘋꗣ ꗏ ꗪ ꗇꖢ ꔳꘋꗣ ꗛꔤ ꔒꘋꗣ ꗏ\0" // gs + "ꗘꖺꗵꘋ\0" // jo + "ꗛꔤ ꕪꘋꗒ ꕮꔸꕩꕯ ꔳꘋꗣ\0" // mp + "ꗛꖺꔻꕩ ꔳꘋꗣ\0" // ic + "ꗛꗏꔭꕩ\0" // co + "ꗞꔓꔎꕇꕰ\0" // mr + "ꗞꔓꗔ\0" // mu + "ꗞꔳꕇꖶꖄ\0" // me + "ꗞꕟꖏ\0" // ma + "ꗞꕯꖏ\0" // mc + "ꗞꖐꔷꕩ\0" // mn + "ꗞꘋꔖꕟꔳ\0" // ms + "ꗟꖺꔃ\0" // no + "ꗟꖺꗉ ꔳꘋꗣ\0" // nf + "ꗡꔻꕿꕇꕰ\0" // ee + "ꗡꖴꔃꗍ\0" // ec + "ꗡꗷ ꕢꔍꗍꖺ\0" // sv + "ꗥꗡꔵ ꗪ ꕮꖁꕯ\0" // hm + "ꗥꗷꘋ\0" // gr + "ꗨꗡꖩ\0" // pe + "ꗩꕀꗚꘋ\0" // be + "ꗩꕇꘋ\0" // bj + "ꗩꕞꖩꔻ\0" // by + "ꗩꖷꕜ\0" // bm + "ꗱꘋꔻ ꕶꔷꕇꔻꕩ\0" // pf + "ꗱꘋꔻ ꖶꕎꕯ\0" // gf + "ꗲꕇꖮꔃꕞ\0" // vn + "ꗻꕚ ꗪ ꔡꔷꕞ\0" // ea + "ꗻꗡ ꕒꕡꕌ ꗏ ꔳꘋꗣ\0" // ac + "ꗻꗡꔬꕩ\0" // rs + "ꗿꕃ ꕸꖃꔀ\0" // cz + "ꘀꗡꔘ\0" // je + "ꘈꔻꖏ\0" // mx + "ꘉꕜ ꖨꕮꕊ\0" // nl + "ꙗ҆пѡ́нїа\0" // jp + "가나\0" // gh + "가봉\0" // ga + "가이아나\0" // gy + "감비아\0" // gm + "건지\0" // gg + "과들루프\0" // gp + "과테말라\0" // gt + "괌\0" // gu + "그레나다\0" // gd + "그리스\0" // gr + "그린란드\0" // gl + "기니\0" // gn + "기니비사우\0" // gw + "나미비아\0" // na + "나우루\0" // nr + "나이지리아\0" // ng + "남극 대륙\0" // aq + "남수단\0" // ss + "남아프리카\0" // za + "네덜란드\0" // nl + "네덜란드령 카리브\0" // bq + "네팔\0" // np + "노르웨이\0" // no + "노퍽섬\0" // nf + "뉴질랜드\0" // nz + "뉴칼레도니아\0" // nc + "니우에\0" // nu + "니제르\0" // ne + "니카라과\0" // ni + "대만\0" // tw + "대한민국\0" // kr + "덴마크\0" // dk + "도미니카\0" // dm + "도미니카 공화국\0" // do + "독일\0" // de + "동티모르\0" // tl + "디에고 가르시아\0" // dg + "라오스\0" // la + "라이베리아\0" // lr + "라트비아\0" // lv + "러시아\0" // ru + "레바논\0" // lb + "레소토\0" // ls + "루마니아\0" // ro + "룩셈부르크\0" // lu + "르완다\0" // rw + "리비아\0" // ly + "리유니온\0" // re + "리투아니아\0" // lt + "리히텐슈타인\0" // li + "마다가스카르\0" // mg + "마르티니크\0" // mq + "마셜 제도\0" // mh + "마요트\0" // yt + "마카오\0" // mo + "마카오(중국 특별행정구)\0" // mo + "마케도니아\0" // mk + "마케도니아(fyrom)\0" // mk + "말라위\0" // mw + "말레이시아\0" // my + "말리\0" // ml + "맨 섬\0" // im + "멕시코\0" // mx + "모나코\0" // mc + "모로코\0" // ma + "모리셔스\0" // mu + "모리타니\0" // mr + "모잠비크\0" // mz + "몬테네그로\0" // me + "몬트세라트\0" // ms + "몰도바\0" // md + "몰디브\0" // mv + "몰타\0" // mt + "몽골\0" // mn + "미국\0" // us + "미국령 버진아일랜드\0" // vi + "미국령 해외 제도\0" // um + "미얀마\0" // mm + "미크로네시아\0" // fm + "바누아투\0" // vu + "바레인\0" // bh + "바베이도스\0" // bb + "바티칸 시국\0" // va + "바하마\0" // bs + "방글라데시\0" // bd + "버뮤다\0" // bm + "베냉\0" // bj + "베네수엘라\0" // ve + "베트남\0" // vn + "벨기에\0" // be + "벨라루스\0" // by + "벨리즈\0" // bz + "보스니아 헤르체고비나\0" // ba + "보츠와나\0" // bw + "볼리비아\0" // bo + "부룬디\0" // bi + "부르키나파소\0" // bf + "부베섬\0" // bv + "부탄\0" // bt + "북마리아나제도\0" // mp + "북한\0" // kp + "불가리아\0" // bg + "브라질\0" // br + "브루나이\0" // bn + "사모아\0" // ws + "사우디아라비아\0" // sa + "사우스조지아 사우스샌드위치 제도\0" // gs + "산마리노\0" // sm + "상투메 프린시페\0" // st + "생마르탱\0" // mf + "생바르텔레미\0" // bl + "생피에르 미클롱\0" // pm + "서사하라\0" // eh + "세네갈\0" // sn + "세르비아\0" // rs + "세우타 및 멜리야\0" // ea + "세이셸\0" // sc + "세인트루시아\0" // lc + "세인트빈센트그레나딘\0" // vc + "세인트키츠 네비스\0" // kn + "세인트헬레나\0" // sh + "소말리아\0" // so + "솔로몬 제도\0" // sb + "수단\0" // sd + "수리남\0" // sr + "스리랑카\0" // lk + "스발바르제도-얀마웬섬\0" // sj + "스와질란드\0" // sz + "스웨덴\0" // se + "스위스\0" // ch + "스페인\0" // es + "슬로바키아\0" // sk + "슬로베니아\0" // si + "시리아\0" // sy + "시에라리온\0" // sl + "신트마르턴\0" // sx + "싱가포르\0" // sg + "아랍에미리트\0" // ae + "아루바\0" // aw + "아르메니아\0" // am + "아르헨티나\0" // ar + "아메리칸 사모아\0" // as + "아이보리 코스트\0" // ci + "아이슬란드\0" // is + "아이티\0" // ht + "아일랜드\0" // ie + "아제르바이잔\0" // az + "아프가니스탄\0" // af + "안도라\0" // ad + "알바니아\0" // al + "알제리\0" // dz + "앙골라\0" // ao + "앤티가 바부다\0" // ag + "앵귈라\0" // ai + "어센션 섬\0" // ac + "에리트리아\0" // er + "에스토니아\0" // ee + "에콰도르\0" // ec + "에티오피아\0" // et + "엘살바도르\0" // sv + "영국\0" // gb + "영국령 버진아일랜드\0" // vg + "영국령 인도양 식민지\0" // io + "예멘\0" // ye + "오만\0" // om + "오세아니아 외곽\0" // qo + "오스트레일리아\0" // au + "오스트리아\0" // at + "온두라스\0" // hn + "올란드 제도\0" // ax + "왈리스-푸투나 제도\0" // wf + "요르단\0" // jo + "우간다\0" // ug + "우루과이\0" // uy + "우즈베키스탄\0" // uz + "우크라이나\0" // ua + "유로존\0" // ez + "이라크\0" // iq + "이란\0" // ir + "이스라엘\0" // il + "이집트\0" // eg + "이탈리아\0" // it + "인도\0" // in + "인도네시아\0" // id + "일본\0" // jp + "자메이카\0" // jm + "잠비아\0" // zm + "저지\0" // je + "적도 기니\0" // gq + "조선민주주의인민공화국\0" // kp + "조지아\0" // ge + "중국\0" // cn + "중앙 아프리카 공화국\0" // cf + "지부티\0" // dj + "지브롤터\0" // gi + "짐바브웨\0" // zw + "차드\0" // td + "체코\0" // cz + "체코 공화국\0" // cz + "칠레\0" // cl + "카나리아 제도\0" // ic + "카메룬\0" // cm + "카보베르데\0" // cv + "카자흐스탄\0" // kz + "카타르\0" // qa + "캄보디아\0" // kh + "캐나다\0" // ca + "케냐\0" // ke + "케이맨 제도\0" // ky + "코모로\0" // km + "코소보\0" // xk + "코스타리카\0" // cr + "코코스 제도\0" // cc + "코트디부아르\0" // ci + "콜롬비아\0" // co + "콩고 공화국\0" // cg + "콩고-브라자빌\0" // cg + "콩고-킨샤사\0" // cd + "콩고민주공화국\0" // cd + "쿠바\0" // cu + "쿠웨이트\0" // kw + "쿡 제도\0" // ck + "퀴라소\0" // cw + "크로아티아\0" // hr + "크리스마스섬\0" // cx + "클립퍼튼 섬\0" // cp + "키르기스스탄\0" // kg + "키리바시\0" // ki + "키프로스\0" // cy + "타지키스탄\0" // tj + "탄자니아\0" // tz + "태국\0" // th + "터크스 케이커스 제도\0" // tc + "터키\0" // tr + "토고\0" // tg + "토켈라우\0" // tk + "통가\0" // to + "투르크메니스탄\0" // tm + "투발루\0" // tv + "튀니지\0" // tn + "트리니다드 토바고\0" // tt + "트리스탄다쿠나\0" // ta + "파나마\0" // pa + "파라과이\0" // py + "파키스탄\0" // pk + "파푸아뉴기니\0" // pg + "팔라우\0" // pw + "팔레스타인\0" // ps + "팔레스타인 지구\0" // ps + "페로 제도\0" // fo + "페루\0" // pe + "포르투갈\0" // pt + "포클랜드 제도\0" // fk + "포클랜드 제도(말비나스 군도)\0" // fk + "폴란드\0" // pl + "푸에르토리코\0" // pr + "프랑스\0" // fr + "프랑스 남부 지방\0" // tf + "프랑스령 기아나\0" // gf + "프랑스령 폴리네시아\0" // pf + "피지\0" // fj + "핀란드\0" // fi + "필리핀\0" // ph + "핏케언 섬\0" // pn + "허드 맥도널드 제도\0" // hm + "헝가리\0" // hu + "홍콩\0" // hk + "홍콩(중국 특별행정구)\0" // hk + "𑄃𑄅𑄪𑄑𑄣𑄭𑄚𑄨𑄁 𑄃𑄮𑄥𑄚𑄨𑄠\0" // qo + "𑄃𑄌𑄴𑄑𑄳𑄢𑄬𑄣𑄨𑄠\0" // au + "𑄃𑄎𑄢𑄴𑄝𑄭𑄎𑄚𑄴\0" // az + "𑄃𑄚𑄴𑄓𑄮𑄢\0" // ad + "𑄃𑄛𑄴𑄉𑄚𑄨𑄌𑄴𑄖𑄚𑄴\0" // af + "𑄃𑄟𑄬𑄢𑄨𑄇𑄚𑄴 𑄥𑄟𑄮𑄠\0" // as + "𑄃𑄠𑄢𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // ie + "𑄃𑄢𑄪𑄝\0" // aw + "𑄃𑄢𑄴𑄎𑄬𑄚𑄴𑄑𑄨𑄚\0" // ar + "𑄃𑄢𑄴𑄎𑄬𑄢𑄨𑄠\0" // dz + "𑄃𑄢𑄴𑄟𑄬𑄚𑄨𑄠\0" // am + "𑄃𑄣𑄚𑄴𑄓𑄧 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // ax + "𑄃𑄣𑄧𑄟𑄴𑄝𑄨𑄠\0" // co + "𑄃𑄣𑄴𑄝𑄬𑄚𑄨𑄠\0" // al + "𑄃𑄧𑄌𑄴𑄑𑄳𑄢𑄨𑄠\0" // at + "𑄃𑄨𑄃𑄪𑄃𑄬𑄌𑄴\0" // us + "𑄃𑄨𑄃𑄪𑄇𑄳𑄢𑄬𑄚𑄴\0" // ua + "𑄃𑄨𑄜𑄨𑄃𑄮𑄛𑄨𑄠\0" // et + "𑄃𑄨𑄠𑄬𑄟𑄬𑄚𑄴\0" // ye + "𑄃𑄭𑄝𑄬𑄢𑄨𑄠\0" // lr + "𑄃𑄭𑄞𑄧𑄢𑄨\0" // ci + "𑄃𑄭𑄞𑄧𑄢𑄨 𑄇𑄮𑄌𑄴𑄑𑄴\0" // ci + "𑄃𑄭𑄣𑄴 𑄃𑄧𑄜𑄴 𑄟𑄳𑄠𑄚𑄴\0" // im + "𑄃𑄭𑄥𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // is + "𑄃𑄮𑄟𑄚𑄴\0" // om + "𑄃𑄳𑄠𑄋𑄴𑄉𑄮𑄣\0" // ao + "𑄃𑄳𑄠𑄚𑄴𑄑𑄢𑄴𑄇𑄧𑄑𑄨𑄇\0" // aq + "𑄃𑄳𑄠𑄥𑄴𑄥𑄬𑄚𑄴𑄥𑄧𑄚𑄴 𑄃𑄭𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // ac + "𑄄𑄃𑄪𑄇𑄬\0" // gb + "𑄄𑄇𑄪𑄠𑄬𑄓𑄧𑄢𑄴\0" // ec + "𑄄𑄎𑄴𑄢𑄠𑄬𑄣𑄴\0" // il + "𑄄𑄖𑄣𑄨\0" // it + "𑄄𑄚𑄴𑄘𑄮𑄚𑄬𑄥𑄨𑄠\0" // id + "𑄄𑄢𑄇𑄴\0" // iq + "𑄄𑄢𑄚𑄴\0" // ir + "𑄄𑄢𑄨𑄖𑄳𑄢𑄨𑄠\0" // er + "𑄄𑄳𑄠𑄋𑄴𑄉𑄪𑄃𑄨𑄣\0" // ai + "𑄅𑄉𑄚𑄴𑄓\0" // ug + "𑄅𑄪𑄎𑄴𑄝𑄬𑄇𑄨𑄌𑄴𑄖𑄚𑄴\0" // uz + "𑄅𑄪𑄖𑄴𑄖𑄮𑄉𑄎𑄢𑄴 𑄟𑄢𑄨𑄠𑄚 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // mp + "𑄅𑄪𑄖𑄴𑄖𑄮𑄢𑄴 𑄇𑄮𑄢𑄨𑄠\0" // kp + "𑄅𑄪𑄢𑄪𑄉𑄪𑄠𑄬\0" // uy + "𑄆𑄌𑄴𑄖𑄮𑄚𑄨𑄠\0" // ee + "𑄆𑄚𑄴𑄖𑄨𑄉𑄱 𑄃𑄮 𑄝𑄢𑄴𑄟𑄪𑄓\0" // ag + "𑄆𑄣𑄴 𑄥𑄣𑄴𑄞𑄬𑄘𑄧𑄢𑄴\0" // sv + "𑄇𑄎𑄈𑄌𑄴𑄖𑄚𑄴\0" // kz + "𑄇𑄖𑄢𑄴\0" // qa + "𑄇𑄚𑄓\0" // ca + "𑄇𑄧𑄋𑄴𑄉𑄮 (𑄛𑄳𑄢𑄎𑄖𑄚𑄴𑄖𑄳𑄢𑄧)\0" // cg + "𑄇𑄧𑄋𑄴𑄉𑄮(drc)\0" // cd + "𑄇𑄧𑄋𑄴𑄉𑄮-𑄚𑄨𑄇𑄴𑄥𑄥\0" // cd + "𑄇𑄧𑄋𑄴𑄉𑄮-𑄝𑄳𑄢𑄎𑄞𑄨𑄣𑄴\0" // cg + "𑄇𑄧𑄟𑄮𑄢𑄮𑄌𑄴\0" // km + "𑄇𑄧𑄟𑄴𑄝𑄮𑄓𑄨𑄠\0" // kh + "𑄇𑄧𑄥𑄮𑄞𑄮\0" // xk + "𑄇𑄨𑄃𑄪𑄝\0" // cu + "𑄇𑄨𑄃𑄪𑄢𑄥𑄃𑄮\0" // cw + "𑄇𑄨𑄢𑄨𑄝𑄖𑄨\0" // ki + "𑄇𑄨𑄢𑄴𑄉𑄨𑄎𑄨𑄌𑄴𑄖𑄚𑄴\0" // kg + "𑄇𑄪𑄃𑄪𑄑 𑄃𑄳𑄃 𑄟𑄬𑄣𑄨𑄣\0" // ea + "𑄇𑄪𑄇𑄪 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // ck + "𑄇𑄪𑄠𑄬𑄖𑄴\0" // kw + "𑄇𑄬𑄚𑄨𑄠\0" // ke + "𑄇𑄬𑄛𑄴𑄞𑄢𑄴𑄘𑄬\0" // cv + "𑄇𑄬𑄟𑄳𑄠𑄚𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // ky + "𑄇𑄮𑄇𑄮𑄌𑄴 (𑄇𑄨𑄣𑄨𑄁) 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // cc + "𑄇𑄮𑄥𑄳𑄑𑄢𑄨𑄇\0" // cr + "𑄇𑄳𑄠𑄚𑄢𑄨 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // ic + "𑄇𑄳𑄠𑄟𑄬𑄢𑄪𑄚𑄴\0" // cm + "𑄇𑄳𑄠𑄢𑄨𑄝𑄨𑄠𑄚𑄴 𑄚𑄬𑄘𑄢𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄧𑄥𑄴\0" // bq + "𑄇𑄳𑄢𑄨𑄥𑄴𑄟𑄥𑄴 𑄞𑄨𑄘𑄳𑄠\0" // cx + "𑄇𑄳𑄢𑄮𑄠𑄬𑄥𑄨𑄠\0" // hr + "𑄇𑄳𑄣𑄨𑄛𑄢𑄴𑄑𑄧𑄚𑄴 𑄃𑄭𑄣𑄳𑄠𑄚𑄳𑄓𑄴\0" // cp + "𑄉𑄟𑄴𑄝𑄨𑄠\0" // gm + "𑄉𑄨𑄚𑄨\0" // gn + "𑄉𑄨𑄚𑄨-𑄝𑄨𑄥𑄃𑄪\0" // gw + "𑄉𑄨𑄠𑄚\0" // gy + "𑄉𑄪𑄠𑄖𑄬𑄟𑄣\0" // gt + "𑄉𑄪𑄠𑄘𑄬𑄣𑄯𑄛𑄴\0" // gp + "𑄉𑄪𑄠𑄟𑄴\0" // gu + "𑄉𑄳𑄠𑄝𑄧𑄚𑄴\0" // ga + "𑄉𑄳𑄢𑄚𑄴𑄏𑄨\0" // gg + "𑄉𑄳𑄢𑄨𑄌𑄴\0" // gr + "𑄉𑄳𑄢𑄩𑄚𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // gl + "𑄉𑄳𑄢𑄬𑄚𑄓\0" // gd + "𑄊𑄚\0" // gh + "𑄌𑄘𑄴\0" // td + "𑄌𑄨𑄣𑄨\0" // cl + "𑄌𑄩𑄚𑄴\0" // cn + "𑄌𑄬𑄇𑄴 𑄛𑄳𑄢𑄎𑄖𑄧𑄚𑄴𑄖𑄳𑄢𑄧\0" // cz + "𑄌𑄬𑄌𑄨𑄠\0" // cz + "𑄎𑄛𑄚𑄴\0" // jp + "𑄎𑄟𑄭𑄇\0" // jm + "𑄎𑄟𑄴𑄝𑄨𑄠\0" // zm + "𑄎𑄢𑄴𑄟𑄚𑄨\0" // de + "𑄎𑄢𑄴𑄥𑄨\0" // je + "𑄎𑄧𑄙 𑄃𑄢𑄧𑄝𑄴 𑄃𑄟𑄨𑄢𑄖𑄴\0" // ae + "𑄎𑄧𑄙𑄢𑄬𑄌𑄴𑄎𑄮\0" // gb + "𑄎𑄧𑄙𑄢𑄬𑄌𑄴𑄎𑄮𑄢𑄴 𑄦𑄭𑄇𑄪𑄢𑄬 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // um + "𑄎𑄧𑄢𑄴𑄎𑄨𑄠\0" // ge + "𑄎𑄧𑄢𑄴𑄓𑄧𑄚𑄴\0" // jo + "𑄎𑄨𑄝𑄪𑄖𑄨\0" // dj + "𑄎𑄨𑄝𑄳𑄢𑄣𑄴𑄑𑄢𑄴\0" // gi + "𑄎𑄨𑄟𑄴𑄝𑄝𑄪𑄠𑄬\0" // zw + "𑄑𑄪𑄞𑄣𑄪\0" // tv + "𑄑𑄮𑄇𑄬𑄣𑄃𑄪\0" // tk + "𑄑𑄮𑄉𑄮\0" // tg + "𑄑𑄮𑄋𑄴𑄉\0" // to + "𑄑𑄳𑄢𑄌𑄴𑄑𑄚𑄴 𑄓 𑄇𑄪𑄚𑄴𑄦\0" // ta + "𑄓𑄬𑄚𑄴𑄟𑄢𑄴𑄇𑄧\0" // dk + "𑄓𑄮𑄟𑄨𑄚𑄨𑄇\0" // dm + "𑄓𑄮𑄟𑄨𑄚𑄨𑄇𑄚𑄴 𑄛𑄳𑄢𑄧𑄎𑄖𑄧𑄚𑄴𑄖𑄳𑄢𑄧\0" // do + "𑄖𑄎𑄨𑄇𑄴𑄥𑄳𑄗𑄚𑄴\0" // tj + "𑄖𑄚𑄴𑄎𑄚𑄨𑄠\0" // tz + "𑄖𑄨𑄃𑄪𑄚𑄨𑄥𑄨𑄠\0" // tn + "𑄖𑄨𑄟𑄪𑄢𑄴-𑄣𑄬𑄌𑄴𑄖𑄬\0" // tl + "𑄖𑄪𑄢𑄧𑄌𑄴𑄇𑄧\0" // tr + "𑄖𑄪𑄢𑄴𑄇𑄧𑄌𑄴 𑄃𑄮 𑄇𑄭𑄇𑄮𑄌𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // tc + "𑄖𑄪𑄢𑄴𑄇𑄧𑄟𑄬𑄚𑄨𑄌𑄴𑄖𑄚𑄴\0" // tm + "𑄖𑄭𑄤𑄚𑄴\0" // tw + "𑄖𑄳𑄢𑄨𑄚𑄨𑄚𑄘𑄴 𑄃𑄮 𑄑𑄮𑄝𑄳𑄠𑄉𑄮\0" // tt + "𑄗𑄭𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // th + "𑄘𑄧𑄉𑄨𑄚𑄴 𑄃𑄜𑄳𑄢𑄨𑄇\0" // za + "𑄘𑄧𑄉𑄨𑄚𑄴 𑄇𑄮𑄢𑄨𑄠\0" // kr + "𑄘𑄧𑄉𑄨𑄚𑄴 𑄎𑄧𑄢𑄴𑄎𑄨𑄠 𑄃𑄮 𑄘𑄧𑄉𑄨𑄚𑄴 𑄥𑄳𑄠𑄚𑄴𑄓𑄃𑄪𑄃𑄨𑄌𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // gs + "𑄘𑄧𑄉𑄨𑄚𑄴 𑄥𑄪𑄘𑄚𑄴\0" // ss + "𑄘𑄨𑄠𑄬𑄉𑄮 𑄉𑄢𑄴𑄥𑄨𑄠\0" // dg + "𑄚𑄃𑄪𑄢𑄪\0" // nr + "𑄚𑄟𑄨𑄝𑄨𑄠\0" // na + "𑄚𑄧𑄢𑄴𑄃𑄮𑄠𑄬\0" // no + "𑄚𑄨𑄃𑄪𑄎𑄨𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // nz + "𑄚𑄨𑄃𑄪𑄠𑄬\0" // nu + "𑄚𑄨𑄇𑄢𑄉𑄪𑄠\0" // ni + "𑄚𑄨𑄢𑄧𑄇𑄴𑄈𑄩𑄠𑄧 𑄉𑄨𑄚𑄨\0" // gq + "𑄚𑄨𑄢𑄴𑄜𑄮𑄇𑄴 𑄞𑄨𑄘𑄳𑄠\0" // nf + "𑄚𑄬𑄘𑄢𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴𑄥𑄴\0" // nl + "𑄚𑄬𑄛𑄣𑄴\0" // np + "𑄚𑄭𑄎𑄢𑄴\0" // ne + "𑄚𑄭𑄎𑄬𑄢𑄨𑄠\0" // ng + "𑄚𑄱 𑄇𑄳𑄠𑄣𑄬𑄓𑄮𑄚𑄨𑄠\0" // nc + "𑄛𑄇𑄨𑄌𑄴𑄖𑄚𑄴\0" // pk + "𑄛𑄚𑄟\0" // pa + "𑄛𑄛𑄪𑄠 𑄚𑄨𑄃𑄪 𑄉𑄨𑄚𑄨\0" // pg + "𑄛𑄣𑄃𑄪\0" // pw + "𑄛𑄧𑄎𑄨𑄟𑄴 𑄥𑄦𑄢\0" // eh + "𑄛𑄧𑄢𑄴𑄖𑄪𑄉𑄣𑄴\0" // pt + "𑄛𑄨𑄇𑄴𑄇𑄬𑄠𑄢𑄴𑄚𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // pn + "𑄛𑄪𑄉𑄮 𑄖𑄨𑄟𑄪𑄢𑄴\0" // tl + "𑄛𑄪𑄠𑄬𑄢𑄴𑄖𑄮 𑄢𑄨𑄇𑄮\0" // pr + "𑄛𑄬𑄢𑄪\0" // pe + "𑄛𑄮𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // pl + "𑄛𑄳𑄠𑄢𑄉𑄪𑄠𑄬\0" // py + "𑄜𑄢𑄥𑄩 𑄘𑄧𑄉𑄨𑄚𑄧 𑄎𑄉\0" // tf + "𑄜𑄧𑄇𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴 𑄃𑄭𑄣𑄳𑄠𑄚𑄴𑄓𑄴 (𑄄𑄥𑄴𑄣𑄳𑄠𑄌𑄴 𑄟𑄥𑄴𑄞𑄬𑄚𑄨𑄌𑄴)\0" // fk + "𑄜𑄧𑄇𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // fk + "𑄜𑄧𑄢𑄥𑄩 𑄉𑄠𑄚\0" // gf + "𑄜𑄧𑄢𑄥𑄩 𑄛𑄧𑄣𑄨𑄚𑄬𑄥𑄨𑄠\0" // pf + "𑄜𑄨𑄎𑄨\0" // fj + "𑄜𑄨𑄚𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // fi + "𑄜𑄨𑄣𑄨𑄌𑄴𑄖𑄨𑄚𑄴\0" // ps + "𑄜𑄨𑄣𑄨𑄌𑄴𑄖𑄨𑄚𑄴 𑄎𑄉𑄊𑄚𑄨\0" // ps + "𑄜𑄨𑄣𑄨𑄛𑄭𑄚𑄴\0" // ph + "𑄜𑄳𑄠𑄢𑄧𑄃𑄮 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // fo + "𑄜𑄳𑄢𑄚𑄴𑄥𑄴\0" // fr + "𑄝𑄁𑄣𑄘𑄬𑄌𑄴\0" // bd + "𑄝𑄢𑄴𑄝𑄘𑄮𑄌𑄴\0" // bb + "𑄝𑄢𑄴𑄟𑄪𑄓\0" // bm + "𑄝𑄦𑄟 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // bs + "𑄝𑄦𑄧𑄢𑄭𑄚𑄴\0" // bh + "𑄝𑄧𑄖𑄴𑄥𑄮𑄠𑄚\0" // bw + "𑄝𑄧𑄣𑄨𑄞𑄨𑄠\0" // bo + "𑄝𑄧𑄥𑄴𑄚𑄨𑄠 𑄃𑄮 𑄦𑄢𑄴𑄎𑄬𑄉𑄮𑄞𑄨𑄚\0" // ba + "𑄝𑄪𑄢𑄪𑄚𑄴𑄘𑄨\0" // bi + "𑄝𑄪𑄢𑄴𑄇𑄨𑄚 𑄜𑄥𑄮\0" // bf + "𑄝𑄪𑄣𑄴𑄉𑄬𑄢𑄨𑄠\0" // bg + "𑄝𑄬𑄚𑄨𑄚𑄴\0" // bj + "𑄝𑄬𑄣𑄢𑄪𑄌𑄴\0" // by + "𑄝𑄬𑄣𑄨𑄎𑄴\0" // bz + "𑄝𑄬𑄣𑄴𑄎𑄨𑄠𑄟𑄴\0" // be + "𑄝𑄮𑄞𑄬𑄑𑄴 𑄞𑄨𑄘𑄳𑄠\0" // bv + "𑄝𑄳𑄢𑄎𑄨𑄣𑄴\0" // br + "𑄝𑄳𑄢𑄨𑄑𑄨𑄌𑄴 𑄞𑄢𑄧𑄖𑄴 𑄟𑄧𑄦𑄥𑄉𑄧𑄢𑄨𑄠𑄧 𑄞𑄨𑄘𑄳𑄠\0" // io + "𑄝𑄳𑄢𑄨𑄑𑄨𑄌𑄴 𑄞𑄢𑄴𑄎𑄨𑄚𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // vg + "𑄝𑄳𑄢𑄪𑄚𑄬𑄭\0" // bn + "𑄞𑄚𑄪𑄠𑄑𑄪\0" // vu + "𑄞𑄢𑄧𑄖𑄴\0" // in + "𑄞𑄨𑄠𑄬𑄖𑄴𑄚𑄟𑄴\0" // vn + "𑄞𑄪𑄑𑄚𑄴\0" // bt + "𑄞𑄬𑄚𑄬𑄎𑄪𑄠𑄬𑄣\0" // ve + "𑄞𑄳𑄠𑄑𑄨𑄇𑄚𑄴 𑄥𑄨𑄑𑄨\0" // va + "𑄟𑄘𑄉𑄌𑄴𑄇𑄢𑄴\0" // mg + "𑄟𑄠𑄚𑄴𑄟𑄢𑄴 (𑄝𑄢𑄴𑄟)\0" // mm + "𑄟𑄠𑄮𑄖𑄴𑄖𑄬\0" // yt + "𑄟𑄢𑄴𑄇𑄨𑄚𑄴 𑄎𑄧𑄙𑄢𑄬𑄌𑄴𑄎𑄮\0" // us + "𑄟𑄢𑄴𑄇𑄨𑄚𑄴 𑄎𑄧𑄙𑄢𑄬𑄌𑄴𑄎𑄮𑄢𑄴 𑄞𑄢𑄴𑄎𑄨𑄚𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // vi + "𑄟𑄢𑄴𑄑𑄨𑄚𑄨𑄇𑄴\0" // mq + "𑄟𑄢𑄴𑄥𑄣𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // mh + "𑄟𑄣𑄃𑄪𑄃𑄨\0" // mw + "𑄟𑄣𑄨\0" // ml + "𑄟𑄣𑄴𑄑\0" // mt + "𑄟𑄣𑄴𑄘𑄨𑄛𑄴\0" // mv + "𑄟𑄣𑄴𑄠𑄬𑄥𑄨𑄠\0" // my + "𑄟𑄧𑄋𑄴𑄉𑄮𑄣𑄨𑄠\0" // mn + "𑄟𑄧𑄖𑄴𑄙𑄳𑄠𑄧 𑄃𑄜𑄳𑄢𑄨𑄇𑄢𑄴𑄛𑄳𑄢𑄎𑄖𑄧𑄚𑄴𑄖𑄳𑄢𑄧\0" // cf + "𑄟𑄧𑄚𑄴𑄑𑄨𑄚𑄨𑄉𑄳𑄢𑄮\0" // me + "𑄟𑄧𑄚𑄴𑄑𑄴𑄥𑄬𑄢𑄑𑄴\0" // ms + "𑄟𑄧𑄢𑄨𑄖𑄚𑄨𑄠\0" // mr + "𑄟𑄧𑄢𑄨𑄥𑄥𑄴\0" // mu + "𑄟𑄨𑄥𑄧𑄢𑄴\0" // eg + "𑄟𑄬𑄇𑄴𑄥𑄨𑄇𑄮\0" // mx + "𑄟𑄬𑄥𑄨𑄓𑄮𑄚𑄠(fyrom)\0" // mk + "𑄟𑄭𑄇𑄳𑄢𑄮𑄚𑄬𑄥𑄨𑄠\0" // fm + "𑄟𑄮𑄎𑄟𑄴𑄝𑄨𑄇𑄴\0" // mz + "𑄟𑄮𑄚𑄇𑄮\0" // mc + "𑄟𑄮𑄢𑄧𑄇𑄴𑄇𑄮\0" // ma + "𑄟𑄮𑄣𑄴𑄘𑄞𑄨𑄠\0" // md + "𑄟𑄳𑄠𑄇𑄃𑄮\0" // mo + "𑄟𑄳𑄠𑄇𑄃𑄮 𑄆𑄌𑄴𑄃𑄬𑄃𑄢𑄴 𑄌𑄩𑄚\0" // mo + "𑄟𑄳𑄠𑄥𑄓𑄮𑄚𑄨𑄠\0" // mk + "𑄢𑄥𑄨𑄠\0" // ru + "𑄢𑄨𑄃𑄨𑄃𑄪𑄚𑄨𑄠𑄧𑄚𑄴\0" // re + "𑄢𑄪𑄠𑄚𑄴𑄓\0" // rw + "𑄢𑄮𑄟𑄚𑄨𑄠\0" // ro + "𑄣𑄃𑄮𑄌𑄴\0" // la + "𑄣𑄖𑄴𑄞𑄨𑄠\0" // lv + "𑄣𑄨𑄌𑄬𑄚𑄴𑄥𑄳𑄑𑄬𑄃𑄨𑄚𑄴\0" // li + "𑄣𑄨𑄗𑄪𑄠𑄚𑄨𑄠\0" // lt + "𑄣𑄨𑄝𑄨𑄠\0" // ly + "𑄣𑄪𑄇𑄴𑄥𑄬𑄟𑄴𑄝𑄢𑄴𑄉𑄧\0" // lu + "𑄣𑄬𑄝𑄚𑄧𑄚𑄴\0" // lb + "𑄣𑄬𑄥𑄮𑄗𑄮\0" // ls + "𑄤𑄣𑄨𑄌𑄴 𑄃𑄮 𑄜𑄪𑄑𑄪𑄚\0" // wf + "𑄥𑄃𑄮𑄑𑄟 𑄃𑄮 𑄛𑄳𑄢𑄨𑄚𑄴𑄥𑄨𑄛𑄨\0" // st + "𑄥𑄚𑄴 𑄟𑄢𑄨𑄚𑄮\0" // sm + "𑄥𑄟𑄮𑄠\0" // ws + "𑄥𑄢𑄴𑄝𑄨𑄠\0" // rs + "𑄥𑄣𑄴𑄝𑄢𑄴𑄓𑄴 𑄃𑄮 𑄎𑄚𑄴 𑄟𑄬𑄠𑄬𑄚𑄴\0" // sj + "𑄥𑄧𑄣𑄮𑄟𑄚𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // sb + "𑄥𑄨𑄋𑄴𑄉𑄛𑄪𑄢𑄴\0" // sg + "𑄥𑄨𑄚𑄴𑄑𑄴 𑄟𑄢𑄴𑄑𑄬𑄚𑄴\0" // sx + "𑄥𑄨𑄠𑄬𑄢𑄣𑄨𑄃𑄮𑄚𑄴\0" // sl + "𑄥𑄨𑄢𑄨𑄠\0" // sy + "𑄥𑄨𑄥𑄨𑄣𑄨\0" // sc + "𑄥𑄪𑄘𑄚𑄴\0" // sd + "𑄥𑄪𑄢𑄨𑄚𑄟𑄴\0" // sr + "𑄥𑄬𑄚𑄬𑄉𑄣𑄴\0" // sn + "𑄥𑄬𑄚𑄴𑄑𑄴 𑄇𑄨𑄑𑄴𑄥𑄴 𑄃𑄮 𑄚𑄬𑄞𑄨𑄌𑄴\0" // kn + "𑄥𑄬𑄚𑄴𑄑𑄴 𑄛𑄨𑄠𑄬𑄢𑄴 𑄃𑄮 𑄟𑄨𑄢𑄪𑄠𑄬𑄣𑄧𑄚𑄴\0" // pm + "𑄥𑄬𑄚𑄴𑄑𑄴 𑄝𑄢𑄴𑄗𑄬𑄣𑄨𑄟𑄨\0" // bl + "𑄥𑄬𑄚𑄴𑄑𑄴 𑄞𑄨𑄚𑄴𑄥𑄬𑄚𑄴𑄑𑄴 𑄃𑄮 𑄘𑄳𑄠 𑄉𑄳𑄢𑄬𑄚𑄓𑄨𑄚𑄴𑄥𑄴\0" // vc + "𑄥𑄬𑄚𑄴𑄑𑄴 𑄟𑄢𑄴𑄑𑄨𑄚𑄴\0" // mf + "𑄥𑄬𑄚𑄴𑄑𑄴 𑄣𑄪𑄥𑄨𑄠\0" // lc + "𑄥𑄬𑄚𑄴𑄑𑄴 𑄦𑄬𑄣𑄬𑄚\0" // sh + "𑄥𑄭𑄛𑄳𑄢𑄥𑄴\0" // cy + "𑄥𑄭𑄪𑄎𑄢𑄴𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // ch + "𑄥𑄭𑄪𑄓𑄬𑄚𑄴\0" // se + "𑄥𑄮𑄟𑄣𑄨𑄠\0" // so + "𑄥𑄮𑄠𑄎𑄨𑄣𑄳𑄠𑄚𑄴𑄓𑄴\0" // sz + "𑄥𑄯𑄘𑄨 𑄃𑄢𑄧𑄝𑄴\0" // sa + "𑄥𑄳𑄛𑄬𑄚𑄴\0" // es + "𑄥𑄳𑄢𑄨𑄣𑄧𑄁𑄇\0" // lk + "𑄥𑄳𑄣𑄮𑄞𑄇𑄨𑄠\0" // sk + "𑄥𑄳𑄣𑄮𑄞𑄚𑄨𑄠\0" // si + "𑄦𑄢𑄴𑄓𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠 𑄃𑄳𑄃 𑄟𑄳𑄠𑄇𑄴𑄓𑄮𑄚𑄴𑄓𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠\0" // hm + "𑄦𑄧𑄁𑄇𑄧𑄁\0" // hk + "𑄦𑄧𑄁𑄇𑄧𑄁 𑄆𑄌𑄴𑄃𑄬𑄃𑄢𑄴 𑄌𑄩𑄚\0" // hk + "𑄦𑄧𑄋𑄴𑄉𑄬𑄢𑄨\0" // hu + "𑄦𑄪𑄚𑄴𑄓𑄪𑄢𑄥𑄴\0" // hn + "𑄦𑄭𑄖𑄨\0" // ht + +; + +static const CountryToIsoIndex country_to_iso_index[] = { + CountryToIsoIndex{0, "us"}, + CountryToIsoIndex{4, "us"}, + CountryToIsoIndex{9, "ax"}, + CountryToIsoIndex{22, "am"}, + CountryToIsoIndex{30, "sa"}, + CountryToIsoIndex{42, "us"}, + CountryToIsoIndex{46, "um"}, + CountryToIsoIndex{75, "vi"}, + CountryToIsoIndex{95, "af"}, + CountryToIsoIndex{107, "al"}, + CountryToIsoIndex{116, "us"}, + CountryToIsoIndex{121, "vi"}, + CountryToIsoIndex{142, "um"}, + CountryToIsoIndex{175, "um"}, + CountryToIsoIndex{202, "vi"}, + CountryToIsoIndex{227, "az"}, + CountryToIsoIndex{239, "ac"}, + CountryToIsoIndex{256, "az"}, + CountryToIsoIndex{267, "az"}, + CountryToIsoIndex{284, "az"}, + CountryToIsoIndex{294, "gi"}, + CountryToIsoIndex{312, "ar"}, + CountryToIsoIndex{322, "ps"}, + CountryToIsoIndex{380, "us"}, + CountryToIsoIndex{384, "ie"}, + CountryToIsoIndex{392, "ie"}, + CountryToIsoIndex{404, "ie"}, + CountryToIsoIndex{413, "is"}, + CountryToIsoIndex{421, "is"}, + CountryToIsoIndex{433, "af"}, + CountryToIsoIndex{447, "af"}, + CountryToIsoIndex{459, "af"}, + CountryToIsoIndex{472, "af"}, + CountryToIsoIndex{485, "af"}, + CountryToIsoIndex{498, "af"}, + CountryToIsoIndex{510, "af"}, + CountryToIsoIndex{523, "af"}, + CountryToIsoIndex{535, "af"}, + CountryToIsoIndex{546, "af"}, + CountryToIsoIndex{559, "af"}, + CountryToIsoIndex{571, "af"}, + CountryToIsoIndex{583, "af"}, + CountryToIsoIndex{596, "af"}, + CountryToIsoIndex{609, "af"}, + CountryToIsoIndex{622, "af"}, + CountryToIsoIndex{634, "af"}, + CountryToIsoIndex{643, "af"}, + CountryToIsoIndex{656, "af"}, + CountryToIsoIndex{668, "af"}, + CountryToIsoIndex{687, "af"}, + CountryToIsoIndex{700, "af"}, + CountryToIsoIndex{714, "af"}, + CountryToIsoIndex{727, "af"}, + CountryToIsoIndex{741, "af"}, + CountryToIsoIndex{754, "af"}, + CountryToIsoIndex{767, "af"}, + CountryToIsoIndex{780, "af"}, + CountryToIsoIndex{796, "za"}, + CountryToIsoIndex{811, "za"}, + CountryToIsoIndex{828, "za"}, + CountryToIsoIndex{854, "za"}, + CountryToIsoIndex{869, "za"}, + CountryToIsoIndex{887, "af"}, + CountryToIsoIndex{900, "af"}, + CountryToIsoIndex{913, "za"}, + CountryToIsoIndex{927, "za"}, + CountryToIsoIndex{941, "za"}, + CountryToIsoIndex{956, "za"}, + CountryToIsoIndex{970, "za"}, + CountryToIsoIndex{987, "za"}, + CountryToIsoIndex{1003, "za"}, + CountryToIsoIndex{1016, "za"}, + CountryToIsoIndex{1030, "za"}, + CountryToIsoIndex{1044, "za"}, + CountryToIsoIndex{1059, "za"}, + CountryToIsoIndex{1074, "cf"}, + CountryToIsoIndex{1100, "cf"}, + CountryToIsoIndex{1120, "za"}, + CountryToIsoIndex{1134, "za"}, + CountryToIsoIndex{1149, "za"}, + CountryToIsoIndex{1167, "za"}, + CountryToIsoIndex{1182, "za"}, + CountryToIsoIndex{1199, "za"}, + CountryToIsoIndex{1215, "za"}, + CountryToIsoIndex{1230, "za"}, + CountryToIsoIndex{1246, "za"}, + CountryToIsoIndex{1263, "za"}, + CountryToIsoIndex{1279, "af"}, + CountryToIsoIndex{1291, "af"}, + CountryToIsoIndex{1305, "af"}, + CountryToIsoIndex{1321, "af"}, + CountryToIsoIndex{1334, "za"}, + CountryToIsoIndex{1351, "af"}, + CountryToIsoIndex{1367, "af"}, + CountryToIsoIndex{1379, "za"}, + CountryToIsoIndex{1405, "za"}, + CountryToIsoIndex{1424, "ps"}, + CountryToIsoIndex{1464, "dz"}, + CountryToIsoIndex{1472, "ps"}, + CountryToIsoIndex{1497, "ar"}, + CountryToIsoIndex{1508, "gb"}, + CountryToIsoIndex{1525, "ax"}, + CountryToIsoIndex{1535, "ax"}, + CountryToIsoIndex{1546, "eg"}, + CountryToIsoIndex{1555, "ci"}, + CountryToIsoIndex{1567, "dz"}, + CountryToIsoIndex{1576, "ai"}, + CountryToIsoIndex{1584, "ag"}, + CountryToIsoIndex{1605, "sb"}, + CountryToIsoIndex{1625, "ie"}, + CountryToIsoIndex{1632, "am"}, + CountryToIsoIndex{1642, "is"}, + CountryToIsoIndex{1650, "is"}, + CountryToIsoIndex{1666, "is"}, + CountryToIsoIndex{1676, "is"}, + CountryToIsoIndex{1688, "is"}, + CountryToIsoIndex{1697, "im"}, + CountryToIsoIndex{1717, "is"}, + CountryToIsoIndex{1727, "ht"}, + CountryToIsoIndex{1733, "ci"}, + CountryToIsoIndex{1747, "az"}, + CountryToIsoIndex{1759, "ar"}, + CountryToIsoIndex{1768, "ar"}, + CountryToIsoIndex{1779, "az"}, + CountryToIsoIndex{1791, "ar"}, + CountryToIsoIndex{1804, "ar"}, + CountryToIsoIndex{1814, "ar"}, + CountryToIsoIndex{1826, "io"}, + CountryToIsoIndex{1856, "sa"}, + CountryToIsoIndex{1872, "sa"}, + CountryToIsoIndex{1886, "de"}, + CountryToIsoIndex{1894, "ax"}, + CountryToIsoIndex{1908, "ax"}, + CountryToIsoIndex{1923, "ax"}, + CountryToIsoIndex{1938, "ax"}, + CountryToIsoIndex{1953, "ax"}, + CountryToIsoIndex{1960, "ax"}, + CountryToIsoIndex{1972, "ax"}, + CountryToIsoIndex{1979, "ax"}, + CountryToIsoIndex{1993, "nl"}, + CountryToIsoIndex{2004, "sa"}, + CountryToIsoIndex{2020, "dz"}, + CountryToIsoIndex{2028, "al"}, + CountryToIsoIndex{2036, "al"}, + CountryToIsoIndex{2045, "al"}, + CountryToIsoIndex{2054, "al"}, + CountryToIsoIndex{2064, "al"}, + CountryToIsoIndex{2074, "gb"}, + CountryToIsoIndex{2096, "al"}, + CountryToIsoIndex{2103, "al"}, + CountryToIsoIndex{2111, "al"}, + CountryToIsoIndex{2126, "al"}, + CountryToIsoIndex{2135, "al"}, + CountryToIsoIndex{2143, "al"}, + CountryToIsoIndex{2152, "al"}, + CountryToIsoIndex{2160, "al"}, + CountryToIsoIndex{2169, "al"}, + CountryToIsoIndex{2178, "al"}, + CountryToIsoIndex{2187, "al"}, + CountryToIsoIndex{2197, "al"}, + CountryToIsoIndex{2206, "al"}, + CountryToIsoIndex{2215, "al"}, + CountryToIsoIndex{2223, "al"}, + CountryToIsoIndex{2231, "al"}, + CountryToIsoIndex{2240, "al"}, + CountryToIsoIndex{2249, "al"}, + CountryToIsoIndex{2259, "al"}, + CountryToIsoIndex{2267, "al"}, + CountryToIsoIndex{2277, "al"}, + CountryToIsoIndex{2286, "al"}, + CountryToIsoIndex{2295, "al"}, + CountryToIsoIndex{2304, "al"}, + CountryToIsoIndex{2314, "al"}, + CountryToIsoIndex{2323, "al"}, + CountryToIsoIndex{2332, "al"}, + CountryToIsoIndex{2342, "de"}, + CountryToIsoIndex{2351, "de"}, + CountryToIsoIndex{2360, "de"}, + CountryToIsoIndex{2368, "de"}, + CountryToIsoIndex{2377, "de"}, + CountryToIsoIndex{2385, "de"}, + CountryToIsoIndex{2394, "de"}, + CountryToIsoIndex{2403, "dz"}, + CountryToIsoIndex{2412, "dz"}, + CountryToIsoIndex{2420, "dz"}, + CountryToIsoIndex{2435, "dz"}, + CountryToIsoIndex{2444, "dz"}, + CountryToIsoIndex{2452, "dz"}, + CountryToIsoIndex{2461, "dz"}, + CountryToIsoIndex{2470, "dz"}, + CountryToIsoIndex{2479, "dz"}, + CountryToIsoIndex{2489, "dz"}, + CountryToIsoIndex{2498, "dz"}, + CountryToIsoIndex{2507, "dz"}, + CountryToIsoIndex{2516, "dz"}, + CountryToIsoIndex{2524, "dz"}, + CountryToIsoIndex{2533, "dz"}, + CountryToIsoIndex{2542, "dz"}, + CountryToIsoIndex{2551, "al"}, + CountryToIsoIndex{2559, "al"}, + CountryToIsoIndex{2569, "dz"}, + CountryToIsoIndex{2578, "ar"}, + CountryToIsoIndex{2589, "dz"}, + CountryToIsoIndex{2599, "dz"}, + CountryToIsoIndex{2607, "dz"}, + CountryToIsoIndex{2617, "dz"}, + CountryToIsoIndex{2627, "de"}, + CountryToIsoIndex{2636, "de"}, + CountryToIsoIndex{2645, "am"}, + CountryToIsoIndex{2655, "dz"}, + CountryToIsoIndex{2663, "dz"}, + CountryToIsoIndex{2672, "dz"}, + CountryToIsoIndex{2681, "dz"}, + CountryToIsoIndex{2691, "dz"}, + CountryToIsoIndex{2699, "dz"}, + CountryToIsoIndex{2707, "dz"}, + CountryToIsoIndex{2716, "dz"}, + CountryToIsoIndex{2725, "dz"}, + CountryToIsoIndex{2734, "de"}, + CountryToIsoIndex{2744, "dz"}, + CountryToIsoIndex{2755, "de"}, + CountryToIsoIndex{2763, "de"}, + CountryToIsoIndex{2772, "de"}, + CountryToIsoIndex{2779, "de"}, + CountryToIsoIndex{2788, "de"}, + CountryToIsoIndex{2796, "am"}, + CountryToIsoIndex{2805, "de"}, + CountryToIsoIndex{2812, "am"}, + CountryToIsoIndex{2820, "al"}, + CountryToIsoIndex{2828, "ar"}, + CountryToIsoIndex{2839, "dz"}, + CountryToIsoIndex{2847, "dz"}, + CountryToIsoIndex{2854, "dz"}, + CountryToIsoIndex{2861, "um"}, + CountryToIsoIndex{2896, "aw"}, + CountryToIsoIndex{2902, "al"}, + CountryToIsoIndex{2910, "al"}, + CountryToIsoIndex{2919, "al"}, + CountryToIsoIndex{2929, "al"}, + CountryToIsoIndex{2939, "dz"}, + CountryToIsoIndex{2948, "dz"}, + CountryToIsoIndex{2956, "dz"}, + CountryToIsoIndex{2963, "dz"}, + CountryToIsoIndex{2971, "dz"}, + CountryToIsoIndex{2979, "dz"}, + CountryToIsoIndex{2988, "aw"}, + CountryToIsoIndex{2995, "dz"}, + CountryToIsoIndex{3004, "dz"}, + CountryToIsoIndex{3013, "dz"}, + CountryToIsoIndex{3023, "dz"}, + CountryToIsoIndex{3030, "dz"}, + CountryToIsoIndex{3040, "dz"}, + CountryToIsoIndex{3049, "dz"}, + CountryToIsoIndex{3060, "dz"}, + CountryToIsoIndex{3071, "al"}, + CountryToIsoIndex{3082, "dz"}, + CountryToIsoIndex{3093, "me"}, + CountryToIsoIndex{3112, "ae"}, + CountryToIsoIndex{3146, "ph"}, + CountryToIsoIndex{3167, "mp"}, + CountryToIsoIndex{3206, "re"}, + CountryToIsoIndex{3227, "sb"}, + CountryToIsoIndex{3248, "sc"}, + CountryToIsoIndex{3270, "tc"}, + CountryToIsoIndex{3302, "vi"}, + CountryToIsoIndex{3338, "vi"}, + CountryToIsoIndex{3360, "as"}, + CountryToIsoIndex{3375, "us"}, + CountryToIsoIndex{3397, "us"}, + CountryToIsoIndex{3405, "am"}, + CountryToIsoIndex{3411, "am"}, + CountryToIsoIndex{3418, "as"}, + CountryToIsoIndex{3434, "as"}, + CountryToIsoIndex{3449, "as"}, + CountryToIsoIndex{3465, "vi"}, + CountryToIsoIndex{3493, "us"}, + CountryToIsoIndex{3525, "as"}, + CountryToIsoIndex{3541, "us"}, + CountryToIsoIndex{3549, "us"}, + CountryToIsoIndex{3578, "us"}, + CountryToIsoIndex{3610, "us"}, + CountryToIsoIndex{3638, "as"}, + CountryToIsoIndex{3652, "as"}, + CountryToIsoIndex{3673, "as"}, + CountryToIsoIndex{3689, "as"}, + CountryToIsoIndex{3706, "us"}, + CountryToIsoIndex{3722, "us"}, + CountryToIsoIndex{3739, "as"}, + CountryToIsoIndex{3754, "as"}, + CountryToIsoIndex{3774, "vi"}, + CountryToIsoIndex{3804, "as"}, + CountryToIsoIndex{3821, "um"}, + CountryToIsoIndex{3843, "as"}, + CountryToIsoIndex{3862, "vi"}, + CountryToIsoIndex{3893, "vi"}, + CountryToIsoIndex{3921, "as"}, + CountryToIsoIndex{3939, "as"}, + CountryToIsoIndex{3957, "vi"}, + CountryToIsoIndex{3986, "us"}, + CountryToIsoIndex{3995, "as"}, + CountryToIsoIndex{4011, "vi"}, + CountryToIsoIndex{4036, "as"}, + CountryToIsoIndex{4051, "as"}, + CountryToIsoIndex{4068, "as"}, + CountryToIsoIndex{4086, "vi"}, + CountryToIsoIndex{4115, "um"}, + CountryToIsoIndex{4137, "as"}, + CountryToIsoIndex{4156, "um"}, + CountryToIsoIndex{4178, "as"}, + CountryToIsoIndex{4197, "vi"}, + CountryToIsoIndex{4226, "um"}, + CountryToIsoIndex{4255, "um"}, + CountryToIsoIndex{4275, "as"}, + CountryToIsoIndex{4293, "vi"}, + CountryToIsoIndex{4323, "as"}, + CountryToIsoIndex{4340, "vi"}, + CountryToIsoIndex{4366, "as"}, + CountryToIsoIndex{4384, "um"}, + CountryToIsoIndex{4413, "us"}, + CountryToIsoIndex{4445, "us"}, + CountryToIsoIndex{4474, "us"}, + CountryToIsoIndex{4500, "um"}, + CountryToIsoIndex{4556, "us"}, + CountryToIsoIndex{4564, "vi"}, + CountryToIsoIndex{4591, "us"}, + CountryToIsoIndex{4615, "as"}, + CountryToIsoIndex{4629, "as"}, + CountryToIsoIndex{4644, "um"}, + CountryToIsoIndex{4663, "as"}, + CountryToIsoIndex{4678, "vi"}, + CountryToIsoIndex{4704, "vi"}, + CountryToIsoIndex{4730, "vi"}, + CountryToIsoIndex{4759, "vi"}, + CountryToIsoIndex{4789, "as"}, + CountryToIsoIndex{4805, "um"}, + CountryToIsoIndex{4830, "vi"}, + CountryToIsoIndex{4859, "as"}, + CountryToIsoIndex{4875, "vi"}, + CountryToIsoIndex{4900, "us"}, + CountryToIsoIndex{4909, "as"}, + CountryToIsoIndex{4932, "io"}, + CountryToIsoIndex{4966, "us"}, + CountryToIsoIndex{4973, "us"}, + CountryToIsoIndex{4983, "am"}, + CountryToIsoIndex{4992, "am"}, + CountryToIsoIndex{4999, "us"}, + CountryToIsoIndex{5008, "as"}, + CountryToIsoIndex{5023, "vi"}, + CountryToIsoIndex{5047, "us"}, + CountryToIsoIndex{5056, "et"}, + CountryToIsoIndex{5067, "af"}, + CountryToIsoIndex{5083, "za"}, + CountryToIsoIndex{5099, "qo"}, + CountryToIsoIndex{5121, "dz"}, + CountryToIsoIndex{5133, "ar"}, + CountryToIsoIndex{5147, "am"}, + CountryToIsoIndex{5159, "al"}, + CountryToIsoIndex{5170, "aq"}, + CountryToIsoIndex{5184, "aq"}, + CountryToIsoIndex{5197, "sa"}, + CountryToIsoIndex{5215, "ar"}, + CountryToIsoIndex{5228, "az"}, + CountryToIsoIndex{5245, "au"}, + CountryToIsoIndex{5257, "bd"}, + CountryToIsoIndex{5274, "by"}, + CountryToIsoIndex{5289, "be"}, + CountryToIsoIndex{5299, "bz"}, + CountryToIsoIndex{5311, "ba"}, + CountryToIsoIndex{5347, "bo"}, + CountryToIsoIndex{5358, "bw"}, + CountryToIsoIndex{5372, "br"}, + CountryToIsoIndex{5385, "bg"}, + CountryToIsoIndex{5398, "bi"}, + CountryToIsoIndex{5410, "bt"}, + CountryToIsoIndex{5423, "cv"}, + CountryToIsoIndex{5437, "kh"}, + CountryToIsoIndex{5450, "kz"}, + CountryToIsoIndex{5466, "cy"}, + CountryToIsoIndex{5476, "kg"}, + CountryToIsoIndex{5493, "co"}, + CountryToIsoIndex{5505, "xk"}, + CountryToIsoIndex{5516, "hr"}, + CountryToIsoIndex{5527, "ke"}, + CountryToIsoIndex{5539, "kr"}, + CountryToIsoIndex{5557, "kp"}, + CountryToIsoIndex{5577, "cg"}, + CountryToIsoIndex{5587, "cd"}, + CountryToIsoIndex{5603, "cg"}, + CountryToIsoIndex{5624, "ci"}, + CountryToIsoIndex{5640, "ci"}, + CountryToIsoIndex{5658, "dk"}, + CountryToIsoIndex{5671, "it"}, + CountryToIsoIndex{5682, "ye"}, + CountryToIsoIndex{5691, "ee"}, + CountryToIsoIndex{5702, "ee"}, + CountryToIsoIndex{5714, "ch"}, + CountryToIsoIndex{5726, "ch"}, + CountryToIsoIndex{5738, "er"}, + CountryToIsoIndex{5750, "fi"}, + CountryToIsoIndex{5764, "fi"}, + CountryToIsoIndex{5778, "fr"}, + CountryToIsoIndex{5789, "fr"}, + CountryToIsoIndex{5800, "ga"}, + CountryToIsoIndex{5812, "gm"}, + CountryToIsoIndex{5824, "de"}, + CountryToIsoIndex{5838, "gl"}, + CountryToIsoIndex{5853, "gr"}, + CountryToIsoIndex{5864, "gn"}, + CountryToIsoIndex{5874, "gq"}, + CountryToIsoIndex{5901, "gy"}, + CountryToIsoIndex{5912, "iq"}, + CountryToIsoIndex{5923, "ir"}, + CountryToIsoIndex{5934, "in"}, + CountryToIsoIndex{5943, "id"}, + CountryToIsoIndex{5956, "it"}, + CountryToIsoIndex{5967, "jo"}, + CountryToIsoIndex{5979, "no"}, + CountryToIsoIndex{5988, "et"}, + CountryToIsoIndex{5997, "lv"}, + CountryToIsoIndex{6008, "lv"}, + CountryToIsoIndex{6019, "ly"}, + CountryToIsoIndex{6028, "lr"}, + CountryToIsoIndex{6039, "lb"}, + CountryToIsoIndex{6051, "lt"}, + CountryToIsoIndex{6063, "lt"}, + CountryToIsoIndex{6076, "mk"}, + CountryToIsoIndex{6090, "mk"}, + CountryToIsoIndex{6111, "my"}, + CountryToIsoIndex{6125, "mw"}, + CountryToIsoIndex{6137, "fm"}, + CountryToIsoIndex{6152, "md"}, + CountryToIsoIndex{6165, "mn"}, + CountryToIsoIndex{6178, "mr"}, + CountryToIsoIndex{6193, "na"}, + CountryToIsoIndex{6203, "ng"}, + CountryToIsoIndex{6214, "nc"}, + CountryToIsoIndex{6232, "nz"}, + CountryToIsoIndex{6250, "ne"}, + CountryToIsoIndex{6260, "at"}, + CountryToIsoIndex{6270, "pk"}, + CountryToIsoIndex{6285, "ps"}, + CountryToIsoIndex{6300, "do"}, + CountryToIsoIndex{6327, "pl"}, + CountryToIsoIndex{6339, "pt"}, + CountryToIsoIndex{6356, "ru"}, + CountryToIsoIndex{6364, "gb"}, + CountryToIsoIndex{6388, "gb"}, + CountryToIsoIndex{6409, "ro"}, + CountryToIsoIndex{6421, "ru"}, + CountryToIsoIndex{6430, "eh"}, + CountryToIsoIndex{6447, "sv"}, + CountryToIsoIndex{6460, "es"}, + CountryToIsoIndex{6472, "es"}, + CountryToIsoIndex{6483, "jp"}, + CountryToIsoIndex{6495, "cz"}, + CountryToIsoIndex{6505, "td"}, + CountryToIsoIndex{6516, "cl"}, + CountryToIsoIndex{6526, "sk"}, + CountryToIsoIndex{6540, "si"}, + CountryToIsoIndex{6555, "se"}, + CountryToIsoIndex{6566, "rs"}, + CountryToIsoIndex{6578, "cn"}, + CountryToIsoIndex{6588, "zw"}, + CountryToIsoIndex{6602, "tz"}, + CountryToIsoIndex{6612, "tz"}, + CountryToIsoIndex{6624, "zm"}, + CountryToIsoIndex{6636, "sv"}, + CountryToIsoIndex{6651, "jp"}, + CountryToIsoIndex{6664, "cz"}, + CountryToIsoIndex{6675, "sn"}, + CountryToIsoIndex{6691, "rs"}, + CountryToIsoIndex{6703, "ge"}, + CountryToIsoIndex{6716, "gs"}, + CountryToIsoIndex{6764, "cl"}, + CountryToIsoIndex{6773, "zw"}, + CountryToIsoIndex{6787, "sy"}, + CountryToIsoIndex{6797, "si"}, + CountryToIsoIndex{6812, "sk"}, + CountryToIsoIndex{6825, "so"}, + CountryToIsoIndex{6837, "se"}, + CountryToIsoIndex{6850, "sz"}, + CountryToIsoIndex{6865, "cn"}, + CountryToIsoIndex{6874, "sd"}, + CountryToIsoIndex{6887, "ss"}, + CountryToIsoIndex{6906, "tr"}, + CountryToIsoIndex{6915, "tm"}, + CountryToIsoIndex{6936, "tj"}, + CountryToIsoIndex{6957, "th"}, + CountryToIsoIndex{6970, "tw"}, + CountryToIsoIndex{6983, "tn"}, + CountryToIsoIndex{6996, "ua"}, + CountryToIsoIndex{7007, "hu"}, + CountryToIsoIndex{7017, "hu"}, + CountryToIsoIndex{7028, "eg"}, + CountryToIsoIndex{7039, "eg"}, + CountryToIsoIndex{7050, "is"}, + CountryToIsoIndex{7063, "nl"}, + CountryToIsoIndex{7076, "bq"}, + CountryToIsoIndex{7101, "ua"}, + CountryToIsoIndex{7113, "uz"}, + CountryToIsoIndex{7134, "kr"}, + CountryToIsoIndex{7147, "ad"}, + CountryToIsoIndex{7154, "ad"}, + CountryToIsoIndex{7161, "ad"}, + CountryToIsoIndex{7169, "ad"}, + CountryToIsoIndex{7175, "ad"}, + CountryToIsoIndex{7182, "ad"}, + CountryToIsoIndex{7189, "ad"}, + CountryToIsoIndex{7196, "ad"}, + CountryToIsoIndex{7204, "ad"}, + CountryToIsoIndex{7219, "ad"}, + CountryToIsoIndex{7228, "ad"}, + CountryToIsoIndex{7236, "ad"}, + CountryToIsoIndex{7245, "ad"}, + CountryToIsoIndex{7253, "id"}, + CountryToIsoIndex{7263, "ad"}, + CountryToIsoIndex{7270, "ad"}, + CountryToIsoIndex{7277, "ad"}, + CountryToIsoIndex{7285, "ad"}, + CountryToIsoIndex{7293, "ad"}, + CountryToIsoIndex{7301, "ad"}, + CountryToIsoIndex{7308, "ad"}, + CountryToIsoIndex{7317, "ad"}, + CountryToIsoIndex{7327, "ai"}, + CountryToIsoIndex{7336, "gb"}, + CountryToIsoIndex{7347, "ai"}, + CountryToIsoIndex{7357, "ag"}, + CountryToIsoIndex{7376, "ai"}, + CountryToIsoIndex{7383, "ai"}, + CountryToIsoIndex{7391, "ai"}, + CountryToIsoIndex{7398, "ai"}, + CountryToIsoIndex{7407, "ai"}, + CountryToIsoIndex{7415, "ai"}, + CountryToIsoIndex{7423, "ai"}, + CountryToIsoIndex{7432, "vg"}, + CountryToIsoIndex{7459, "io"}, + CountryToIsoIndex{7485, "gb"}, + CountryToIsoIndex{7498, "dz"}, + CountryToIsoIndex{7506, "ai"}, + CountryToIsoIndex{7513, "ai"}, + CountryToIsoIndex{7520, "ai"}, + CountryToIsoIndex{7528, "ao"}, + CountryToIsoIndex{7537, "gb"}, + CountryToIsoIndex{7547, "io"}, + CountryToIsoIndex{7567, "ao"}, + CountryToIsoIndex{7574, "ao"}, + CountryToIsoIndex{7588, "ao"}, + CountryToIsoIndex{7596, "ao"}, + CountryToIsoIndex{7603, "ao"}, + CountryToIsoIndex{7611, "ao"}, + CountryToIsoIndex{7620, "ao"}, + CountryToIsoIndex{7628, "ao"}, + CountryToIsoIndex{7636, "ao"}, + CountryToIsoIndex{7643, "ai"}, + CountryToIsoIndex{7651, "ai"}, + CountryToIsoIndex{7660, "ai"}, + CountryToIsoIndex{7676, "ai"}, + CountryToIsoIndex{7686, "ai"}, + CountryToIsoIndex{7696, "ai"}, + CountryToIsoIndex{7705, "ai"}, + CountryToIsoIndex{7713, "ao"}, + CountryToIsoIndex{7720, "ai"}, + CountryToIsoIndex{7730, "ai"}, + CountryToIsoIndex{7740, "ai"}, + CountryToIsoIndex{7748, "ai"}, + CountryToIsoIndex{7757, "ai"}, + CountryToIsoIndex{7765, "ai"}, + CountryToIsoIndex{7773, "ai"}, + CountryToIsoIndex{7782, "ai"}, + CountryToIsoIndex{7790, "ai"}, + CountryToIsoIndex{7799, "ao"}, + CountryToIsoIndex{7807, "ao"}, + CountryToIsoIndex{7815, "ao"}, + CountryToIsoIndex{7824, "ai"}, + CountryToIsoIndex{7834, "gb"}, + CountryToIsoIndex{7851, "ai"}, + CountryToIsoIndex{7860, "ag"}, + CountryToIsoIndex{7882, "ag"}, + CountryToIsoIndex{7903, "ad"}, + CountryToIsoIndex{7912, "ai"}, + CountryToIsoIndex{7921, "ao"}, + CountryToIsoIndex{7930, "ao"}, + CountryToIsoIndex{7937, "aq"}, + CountryToIsoIndex{7947, "aq"}, + CountryToIsoIndex{7957, "aq"}, + CountryToIsoIndex{7968, "aq"}, + CountryToIsoIndex{7980, "aq"}, + CountryToIsoIndex{7991, "aq"}, + CountryToIsoIndex{8001, "aq"}, + CountryToIsoIndex{8012, "aq"}, + CountryToIsoIndex{8024, "aq"}, + CountryToIsoIndex{8034, "aq"}, + CountryToIsoIndex{8045, "aq"}, + CountryToIsoIndex{8054, "aq"}, + CountryToIsoIndex{8065, "aq"}, + CountryToIsoIndex{8077, "aq"}, + CountryToIsoIndex{8086, "aq"}, + CountryToIsoIndex{8103, "aq"}, + CountryToIsoIndex{8113, "aq"}, + CountryToIsoIndex{8123, "aq"}, + CountryToIsoIndex{8135, "ag"}, + CountryToIsoIndex{8151, "ag"}, + CountryToIsoIndex{8168, "ag"}, + CountryToIsoIndex{8188, "ag"}, + CountryToIsoIndex{8206, "ag"}, + CountryToIsoIndex{8225, "ag"}, + CountryToIsoIndex{8243, "ag"}, + CountryToIsoIndex{8261, "ag"}, + CountryToIsoIndex{8279, "ag"}, + CountryToIsoIndex{8297, "ag"}, + CountryToIsoIndex{8319, "ag"}, + CountryToIsoIndex{8341, "ag"}, + CountryToIsoIndex{8361, "ag"}, + CountryToIsoIndex{8380, "ag"}, + CountryToIsoIndex{8398, "ag"}, + CountryToIsoIndex{8417, "ag"}, + CountryToIsoIndex{8437, "ag"}, + CountryToIsoIndex{8456, "ag"}, + CountryToIsoIndex{8475, "ag"}, + CountryToIsoIndex{8493, "ag"}, + CountryToIsoIndex{8513, "ag"}, + CountryToIsoIndex{8532, "ag"}, + CountryToIsoIndex{8552, "ag"}, + CountryToIsoIndex{8571, "ag"}, + CountryToIsoIndex{8589, "ag"}, + CountryToIsoIndex{8608, "ag"}, + CountryToIsoIndex{8627, "ag"}, + CountryToIsoIndex{8648, "ag"}, + CountryToIsoIndex{8667, "ag"}, + CountryToIsoIndex{8686, "ag"}, + CountryToIsoIndex{8706, "ag"}, + CountryToIsoIndex{8725, "ag"}, + CountryToIsoIndex{8743, "ag"}, + CountryToIsoIndex{8762, "ag"}, + CountryToIsoIndex{8782, "ag"}, + CountryToIsoIndex{8801, "ag"}, + CountryToIsoIndex{8820, "ag"}, + CountryToIsoIndex{8840, "ag"}, + CountryToIsoIndex{8859, "ag"}, + CountryToIsoIndex{8877, "ag"}, + CountryToIsoIndex{8897, "ag"}, + CountryToIsoIndex{8917, "ag"}, + CountryToIsoIndex{8936, "ag"}, + CountryToIsoIndex{8955, "ag"}, + CountryToIsoIndex{8979, "ag"}, + CountryToIsoIndex{9002, "ag"}, + CountryToIsoIndex{9022, "ag"}, + CountryToIsoIndex{9042, "ag"}, + CountryToIsoIndex{9063, "ag"}, + CountryToIsoIndex{9081, "ag"}, + CountryToIsoIndex{9100, "ag"}, + CountryToIsoIndex{9119, "ag"}, + CountryToIsoIndex{9138, "ag"}, + CountryToIsoIndex{9154, "ag"}, + CountryToIsoIndex{9172, "ag"}, + CountryToIsoIndex{9191, "ag"}, + CountryToIsoIndex{9211, "ag"}, + CountryToIsoIndex{9231, "ag"}, + CountryToIsoIndex{9251, "ag"}, + CountryToIsoIndex{9270, "ag"}, + CountryToIsoIndex{9294, "bq"}, + CountryToIsoIndex{9318, "ag"}, + CountryToIsoIndex{9338, "aq"}, + CountryToIsoIndex{9349, "aq"}, + CountryToIsoIndex{9360, "aq"}, + CountryToIsoIndex{9371, "aq"}, + CountryToIsoIndex{9382, "ag"}, + CountryToIsoIndex{9403, "ag"}, + CountryToIsoIndex{9422, "ag"}, + CountryToIsoIndex{9443, "ag"}, + CountryToIsoIndex{9466, "ag"}, + CountryToIsoIndex{9487, "ag"}, + CountryToIsoIndex{9508, "za"}, + CountryToIsoIndex{9530, "tf"}, + CountryToIsoIndex{9554, "gs"}, + CountryToIsoIndex{9612, "kr"}, + CountryToIsoIndex{9633, "ss"}, + CountryToIsoIndex{9654, "ad"}, + CountryToIsoIndex{9664, "ci"}, + CountryToIsoIndex{9679, "ci"}, + CountryToIsoIndex{9691, "ae"}, + CountryToIsoIndex{9728, "vi"}, + CountryToIsoIndex{9746, "au"}, + CountryToIsoIndex{9756, "at"}, + CountryToIsoIndex{9764, "nz"}, + CountryToIsoIndex{9773, "at"}, + CountryToIsoIndex{9781, "ae"}, + CountryToIsoIndex{9808, "us"}, + CountryToIsoIndex{9813, "vi"}, + CountryToIsoIndex{9834, "um"}, + CountryToIsoIndex{9856, "re"}, + CountryToIsoIndex{9868, "ae"}, + CountryToIsoIndex{9892, "sa"}, + CountryToIsoIndex{9903, "sa"}, + CountryToIsoIndex{9916, "sa"}, + CountryToIsoIndex{9931, "sa"}, + CountryToIsoIndex{9946, "sa"}, + CountryToIsoIndex{9961, "sa"}, + CountryToIsoIndex{9976, "sa"}, + CountryToIsoIndex{9992, "sa"}, + CountryToIsoIndex{10009, "sa"}, + CountryToIsoIndex{10023, "ae"}, + CountryToIsoIndex{10047, "sa"}, + CountryToIsoIndex{10063, "sa"}, + CountryToIsoIndex{10078, "ae"}, + CountryToIsoIndex{10096, "ae"}, + CountryToIsoIndex{10111, "sa"}, + CountryToIsoIndex{10125, "sa"}, + CountryToIsoIndex{10142, "sa"}, + CountryToIsoIndex{10159, "ae"}, + CountryToIsoIndex{10177, "sa"}, + CountryToIsoIndex{10191, "sa"}, + CountryToIsoIndex{10205, "am"}, + CountryToIsoIndex{10215, "ar"}, + CountryToIsoIndex{10228, "ez"}, + CountryToIsoIndex{10242, "mo"}, + CountryToIsoIndex{10262, "hk"}, + CountryToIsoIndex{10287, "ci"}, + CountryToIsoIndex{10302, "dz"}, + CountryToIsoIndex{10310, "ar"}, + CountryToIsoIndex{10321, "ar"}, + CountryToIsoIndex{10333, "ar"}, + CountryToIsoIndex{10343, "ar"}, + CountryToIsoIndex{10360, "ar"}, + CountryToIsoIndex{10371, "ar"}, + CountryToIsoIndex{10381, "ar"}, + CountryToIsoIndex{10392, "ar"}, + CountryToIsoIndex{10403, "ar"}, + CountryToIsoIndex{10415, "ar"}, + CountryToIsoIndex{10427, "ar"}, + CountryToIsoIndex{10439, "ar"}, + CountryToIsoIndex{10449, "ar"}, + CountryToIsoIndex{10461, "ar"}, + CountryToIsoIndex{10471, "ar"}, + CountryToIsoIndex{10482, "ar"}, + CountryToIsoIndex{10493, "ar"}, + CountryToIsoIndex{10506, "ar"}, + CountryToIsoIndex{10517, "ar"}, + CountryToIsoIndex{10529, "dz"}, + CountryToIsoIndex{10538, "ar"}, + CountryToIsoIndex{10549, "dz"}, + CountryToIsoIndex{10560, "ar"}, + CountryToIsoIndex{10571, "am"}, + CountryToIsoIndex{10579, "am"}, + CountryToIsoIndex{10589, "am"}, + CountryToIsoIndex{10599, "ar"}, + CountryToIsoIndex{10609, "ar"}, + CountryToIsoIndex{10621, "ar"}, + CountryToIsoIndex{10631, "ar"}, + CountryToIsoIndex{10640, "ar"}, + CountryToIsoIndex{10652, "ar"}, + CountryToIsoIndex{10662, "ar"}, + CountryToIsoIndex{10671, "dz"}, + CountryToIsoIndex{10680, "ar"}, + CountryToIsoIndex{10691, "am"}, + CountryToIsoIndex{10702, "am"}, + CountryToIsoIndex{10710, "am"}, + CountryToIsoIndex{10719, "am"}, + CountryToIsoIndex{10728, "am"}, + CountryToIsoIndex{10738, "am"}, + CountryToIsoIndex{10745, "am"}, + CountryToIsoIndex{10753, "am"}, + CountryToIsoIndex{10768, "am"}, + CountryToIsoIndex{10777, "am"}, + CountryToIsoIndex{10785, "am"}, + CountryToIsoIndex{10794, "am"}, + CountryToIsoIndex{10802, "am"}, + CountryToIsoIndex{10811, "am"}, + CountryToIsoIndex{10820, "am"}, + CountryToIsoIndex{10829, "am"}, + CountryToIsoIndex{10838, "am"}, + CountryToIsoIndex{10847, "am"}, + CountryToIsoIndex{10856, "am"}, + CountryToIsoIndex{10865, "am"}, + CountryToIsoIndex{10875, "am"}, + CountryToIsoIndex{10883, "am"}, + CountryToIsoIndex{10892, "am"}, + CountryToIsoIndex{10901, "am"}, + CountryToIsoIndex{10910, "am"}, + CountryToIsoIndex{10920, "am"}, + CountryToIsoIndex{10929, "am"}, + CountryToIsoIndex{10939, "am"}, + CountryToIsoIndex{10949, "am"}, + CountryToIsoIndex{10958, "al"}, + CountryToIsoIndex{10969, "aw"}, + CountryToIsoIndex{10976, "am"}, + CountryToIsoIndex{10987, "ar"}, + CountryToIsoIndex{10996, "ar"}, + CountryToIsoIndex{11006, "aw"}, + CountryToIsoIndex{11012, "aw"}, + CountryToIsoIndex{11025, "aw"}, + CountryToIsoIndex{11032, "al"}, + CountryToIsoIndex{11041, "aw"}, + CountryToIsoIndex{11048, "aw"}, + CountryToIsoIndex{11054, "aw"}, + CountryToIsoIndex{11061, "am"}, + CountryToIsoIndex{11071, "aw"}, + CountryToIsoIndex{11078, "dz"}, + CountryToIsoIndex{11086, "ar"}, + CountryToIsoIndex{11096, "ar"}, + CountryToIsoIndex{11106, "ar"}, + CountryToIsoIndex{11117, "sa"}, + CountryToIsoIndex{11133, "sa"}, + CountryToIsoIndex{11152, "sa"}, + CountryToIsoIndex{11168, "ae"}, + CountryToIsoIndex{11189, "aw"}, + CountryToIsoIndex{11196, "aw"}, + CountryToIsoIndex{11203, "aw"}, + CountryToIsoIndex{11211, "aw"}, + CountryToIsoIndex{11218, "ar"}, + CountryToIsoIndex{11233, "am"}, + CountryToIsoIndex{11244, "az"}, + CountryToIsoIndex{11254, "az"}, + CountryToIsoIndex{11267, "ac"}, + CountryToIsoIndex{11277, "ac"}, + CountryToIsoIndex{11294, "ac"}, + CountryToIsoIndex{11311, "ac"}, + CountryToIsoIndex{11330, "ac"}, + CountryToIsoIndex{11348, "ac"}, + CountryToIsoIndex{11376, "ac"}, + CountryToIsoIndex{11391, "ac"}, + CountryToIsoIndex{11407, "ac"}, + CountryToIsoIndex{11425, "ac"}, + CountryToIsoIndex{11442, "ac"}, + CountryToIsoIndex{11458, "ac"}, + CountryToIsoIndex{11474, "ac"}, + CountryToIsoIndex{11488, "az"}, + CountryToIsoIndex{11499, "az"}, + CountryToIsoIndex{11513, "az"}, + CountryToIsoIndex{11526, "az"}, + CountryToIsoIndex{11540, "az"}, + CountryToIsoIndex{11552, "az"}, + CountryToIsoIndex{11565, "az"}, + CountryToIsoIndex{11577, "az"}, + CountryToIsoIndex{11588, "az"}, + CountryToIsoIndex{11602, "az"}, + CountryToIsoIndex{11617, "ac"}, + CountryToIsoIndex{11633, "az"}, + CountryToIsoIndex{11649, "au"}, + CountryToIsoIndex{11660, "us"}, + CountryToIsoIndex{11664, "um"}, + CountryToIsoIndex{11691, "as"}, + CountryToIsoIndex{11701, "vi"}, + CountryToIsoIndex{11717, "az"}, + CountryToIsoIndex{11731, "at"}, + CountryToIsoIndex{11741, "au"}, + CountryToIsoIndex{11754, "gb"}, + CountryToIsoIndex{11782, "au"}, + CountryToIsoIndex{11795, "au"}, + CountryToIsoIndex{11809, "tl"}, + CountryToIsoIndex{11820, "at"}, + CountryToIsoIndex{11831, "at"}, + CountryToIsoIndex{11840, "au"}, + CountryToIsoIndex{11850, "at"}, + CountryToIsoIndex{11858, "au"}, + CountryToIsoIndex{11869, "au"}, + CountryToIsoIndex{11881, "au"}, + CountryToIsoIndex{11890, "au"}, + CountryToIsoIndex{11900, "au"}, + CountryToIsoIndex{11917, "au"}, + CountryToIsoIndex{11927, "au"}, + CountryToIsoIndex{11938, "au"}, + CountryToIsoIndex{11949, "au"}, + CountryToIsoIndex{11960, "au"}, + CountryToIsoIndex{11971, "au"}, + CountryToIsoIndex{11982, "at"}, + CountryToIsoIndex{11989, "at"}, + CountryToIsoIndex{11997, "at"}, + CountryToIsoIndex{12012, "at"}, + CountryToIsoIndex{12021, "at"}, + CountryToIsoIndex{12029, "at"}, + CountryToIsoIndex{12038, "at"}, + CountryToIsoIndex{12047, "tl"}, + CountryToIsoIndex{12061, "au"}, + CountryToIsoIndex{12072, "au"}, + CountryToIsoIndex{12083, "au"}, + CountryToIsoIndex{12094, "au"}, + CountryToIsoIndex{12106, "au"}, + CountryToIsoIndex{12117, "tl"}, + CountryToIsoIndex{12131, "at"}, + CountryToIsoIndex{12143, "at"}, + CountryToIsoIndex{12152, "au"}, + CountryToIsoIndex{12164, "au"}, + CountryToIsoIndex{12175, "at"}, + CountryToIsoIndex{12184, "at"}, + CountryToIsoIndex{12193, "sd"}, + CountryToIsoIndex{12209, "af"}, + CountryToIsoIndex{12220, "cd"}, + CountryToIsoIndex{12229, "ez"}, + CountryToIsoIndex{12238, "au"}, + CountryToIsoIndex{12248, "au"}, + CountryToIsoIndex{12259, "au"}, + CountryToIsoIndex{12270, "at"}, + CountryToIsoIndex{12279, "at"}, + CountryToIsoIndex{12288, "au"}, + CountryToIsoIndex{12299, "at"}, + CountryToIsoIndex{12309, "va"}, + CountryToIsoIndex{12326, "va"}, + CountryToIsoIndex{12349, "va"}, + CountryToIsoIndex{12365, "au"}, + CountryToIsoIndex{12378, "at"}, + CountryToIsoIndex{12388, "au"}, + CountryToIsoIndex{12398, "au"}, + CountryToIsoIndex{12410, "au"}, + CountryToIsoIndex{12421, "at"}, + CountryToIsoIndex{12429, "at"}, + CountryToIsoIndex{12439, "at"}, + CountryToIsoIndex{12449, "au"}, + CountryToIsoIndex{12463, "at"}, + CountryToIsoIndex{12475, "au"}, + CountryToIsoIndex{12489, "at"}, + CountryToIsoIndex{12501, "ie"}, + CountryToIsoIndex{12508, "ie"}, + CountryToIsoIndex{12517, "ie"}, + CountryToIsoIndex{12528, "is"}, + CountryToIsoIndex{12537, "is"}, + CountryToIsoIndex{12548, "is"}, + CountryToIsoIndex{12559, "is"}, + CountryToIsoIndex{12570, "ht"}, + CountryToIsoIndex{12576, "ie"}, + CountryToIsoIndex{12585, "is"}, + CountryToIsoIndex{12594, "ht"}, + CountryToIsoIndex{12599, "ht"}, + CountryToIsoIndex{12606, "um"}, + CountryToIsoIndex{12635, "az"}, + CountryToIsoIndex{12646, "az"}, + CountryToIsoIndex{12657, "az"}, + CountryToIsoIndex{12667, "az"}, + CountryToIsoIndex{12679, "az"}, + CountryToIsoIndex{12689, "az"}, + CountryToIsoIndex{12701, "az"}, + CountryToIsoIndex{12712, "az"}, + CountryToIsoIndex{12723, "az"}, + CountryToIsoIndex{12734, "az"}, + CountryToIsoIndex{12748, "az"}, + CountryToIsoIndex{12760, "az"}, + CountryToIsoIndex{12773, "az"}, + CountryToIsoIndex{12788, "az"}, + CountryToIsoIndex{12803, "az"}, + CountryToIsoIndex{12815, "az"}, + CountryToIsoIndex{12826, "az"}, + CountryToIsoIndex{12844, "az"}, + CountryToIsoIndex{12857, "az"}, + CountryToIsoIndex{12869, "az"}, + CountryToIsoIndex{12881, "az"}, + CountryToIsoIndex{12893, "az"}, + CountryToIsoIndex{12905, "az"}, + CountryToIsoIndex{12917, "az"}, + CountryToIsoIndex{12928, "az"}, + CountryToIsoIndex{12941, "az"}, + CountryToIsoIndex{12955, "az"}, + CountryToIsoIndex{12968, "az"}, + CountryToIsoIndex{12981, "az"}, + CountryToIsoIndex{12993, "az"}, + CountryToIsoIndex{13006, "az"}, + CountryToIsoIndex{13017, "az"}, + CountryToIsoIndex{13030, "az"}, + CountryToIsoIndex{13043, "az"}, + CountryToIsoIndex{13055, "az"}, + CountryToIsoIndex{13067, "az"}, + CountryToIsoIndex{13080, "az"}, + CountryToIsoIndex{13093, "az"}, + CountryToIsoIndex{13106, "az"}, + CountryToIsoIndex{13117, "az"}, + CountryToIsoIndex{13132, "az"}, + CountryToIsoIndex{13146, "az"}, + CountryToIsoIndex{13156, "cv"}, + CountryToIsoIndex{13179, "az"}, + CountryToIsoIndex{13191, "az"}, + CountryToIsoIndex{13205, "az"}, + CountryToIsoIndex{13218, "az"}, + CountryToIsoIndex{13235, "ac"}, + CountryToIsoIndex{13245, "ck"}, + CountryToIsoIndex{13263, "fk"}, + CountryToIsoIndex{13286, "ky"}, + CountryToIsoIndex{13306, "mp"}, + CountryToIsoIndex{13336, "mh"}, + CountryToIsoIndex{13357, "nf"}, + CountryToIsoIndex{13377, "tc"}, + CountryToIsoIndex{13405, "vi"}, + CountryToIsoIndex{13437, "vg"}, + CountryToIsoIndex{13470, "ad"}, + CountryToIsoIndex{13479, "ao"}, + CountryToIsoIndex{13487, "ai"}, + CountryToIsoIndex{13497, "ai"}, + CountryToIsoIndex{13506, "ao"}, + CountryToIsoIndex{13515, "ao"}, + CountryToIsoIndex{13526, "ai"}, + CountryToIsoIndex{13535, "ao"}, + CountryToIsoIndex{13544, "ag"}, + CountryToIsoIndex{13565, "ag"}, + CountryToIsoIndex{13586, "ad"}, + CountryToIsoIndex{13595, "au"}, + CountryToIsoIndex{13606, "at"}, + CountryToIsoIndex{13616, "ar"}, + CountryToIsoIndex{13627, "am"}, + CountryToIsoIndex{13638, "by"}, + CountryToIsoIndex{13654, "be"}, + CountryToIsoIndex{13666, "bz"}, + CountryToIsoIndex{13680, "ve"}, + CountryToIsoIndex{13697, "bg"}, + CountryToIsoIndex{13711, "ge"}, + CountryToIsoIndex{13728, "cg"}, + CountryToIsoIndex{13740, "cd"}, + CountryToIsoIndex{13758, "cg"}, + CountryToIsoIndex{13784, "xk"}, + CountryToIsoIndex{13798, "hr"}, + CountryToIsoIndex{13814, "gm"}, + CountryToIsoIndex{13828, "de"}, + CountryToIsoIndex{13844, "gl"}, + CountryToIsoIndex{13860, "gr"}, + CountryToIsoIndex{13872, "mk"}, + CountryToIsoIndex{13886, "mk"}, + CountryToIsoIndex{13908, "md"}, + CountryToIsoIndex{13923, "do"}, + CountryToIsoIndex{13952, "pt"}, + CountryToIsoIndex{13968, "pl"}, + CountryToIsoIndex{13983, "pl"}, + CountryToIsoIndex{13990, "bb"}, + CountryToIsoIndex{14000, "bb"}, + CountryToIsoIndex{14009, "bs"}, + CountryToIsoIndex{14016, "bs"}, + CountryToIsoIndex{14024, "bb"}, + CountryToIsoIndex{14035, "bh"}, + CountryToIsoIndex{14044, "bb"}, + CountryToIsoIndex{14051, "bb"}, + CountryToIsoIndex{14060, "bb"}, + CountryToIsoIndex{14070, "bb"}, + CountryToIsoIndex{14081, "pg"}, + CountryToIsoIndex{14103, "bh"}, + CountryToIsoIndex{14112, "bh"}, + CountryToIsoIndex{14122, "bs"}, + CountryToIsoIndex{14137, "bs"}, + CountryToIsoIndex{14153, "bs"}, + CountryToIsoIndex{14162, "bh"}, + CountryToIsoIndex{14171, "bs"}, + CountryToIsoIndex{14186, "bs"}, + CountryToIsoIndex{14193, "bs"}, + CountryToIsoIndex{14209, "bs"}, + CountryToIsoIndex{14218, "bs"}, + CountryToIsoIndex{14230, "bs"}, + CountryToIsoIndex{14238, "bs"}, + CountryToIsoIndex{14248, "bs"}, + CountryToIsoIndex{14262, "bs"}, + CountryToIsoIndex{14270, "bs"}, + CountryToIsoIndex{14285, "bs"}, + CountryToIsoIndex{14294, "bs"}, + CountryToIsoIndex{14303, "bs"}, + CountryToIsoIndex{14313, "bs"}, + CountryToIsoIndex{14324, "bs"}, + CountryToIsoIndex{14332, "bs"}, + CountryToIsoIndex{14339, "bs"}, + CountryToIsoIndex{14347, "bs"}, + CountryToIsoIndex{14355, "bs"}, + CountryToIsoIndex{14368, "bs"}, + CountryToIsoIndex{14375, "bh"}, + CountryToIsoIndex{14383, "bh"}, + CountryToIsoIndex{14392, "bh"}, + CountryToIsoIndex{14401, "bh"}, + CountryToIsoIndex{14412, "bh"}, + CountryToIsoIndex{14421, "bh"}, + CountryToIsoIndex{14432, "bh"}, + CountryToIsoIndex{14440, "bh"}, + CountryToIsoIndex{14455, "bh"}, + CountryToIsoIndex{14464, "bh"}, + CountryToIsoIndex{14472, "bh"}, + CountryToIsoIndex{14480, "bh"}, + CountryToIsoIndex{14488, "bh"}, + CountryToIsoIndex{14497, "bh"}, + CountryToIsoIndex{14507, "bh"}, + CountryToIsoIndex{14515, "bh"}, + CountryToIsoIndex{14523, "bh"}, + CountryToIsoIndex{14532, "bh"}, + CountryToIsoIndex{14540, "bh"}, + CountryToIsoIndex{14549, "bh"}, + CountryToIsoIndex{14558, "bh"}, + CountryToIsoIndex{14568, "bh"}, + CountryToIsoIndex{14578, "bs"}, + CountryToIsoIndex{14587, "bs"}, + CountryToIsoIndex{14596, "bs"}, + CountryToIsoIndex{14606, "bs"}, + CountryToIsoIndex{14616, "bs"}, + CountryToIsoIndex{14625, "bh"}, + CountryToIsoIndex{14637, "bh"}, + CountryToIsoIndex{14646, "pk"}, + CountryToIsoIndex{14656, "pk"}, + CountryToIsoIndex{14665, "pw"}, + CountryToIsoIndex{14671, "by"}, + CountryToIsoIndex{14683, "by"}, + CountryToIsoIndex{14696, "ky"}, + CountryToIsoIndex{14705, "bm"}, + CountryToIsoIndex{14712, "pa"}, + CountryToIsoIndex{14719, "us"}, + CountryToIsoIndex{14731, "as"}, + CountryToIsoIndex{14750, "vi"}, + CountryToIsoIndex{14777, "bd"}, + CountryToIsoIndex{14792, "bd"}, + CountryToIsoIndex{14805, "bd"}, + CountryToIsoIndex{14817, "bd"}, + CountryToIsoIndex{14832, "bd"}, + CountryToIsoIndex{14846, "bd"}, + CountryToIsoIndex{14859, "bd"}, + CountryToIsoIndex{14870, "bd"}, + CountryToIsoIndex{14883, "bd"}, + CountryToIsoIndex{14896, "bd"}, + CountryToIsoIndex{14908, "bd"}, + CountryToIsoIndex{14920, "bd"}, + CountryToIsoIndex{14930, "bd"}, + CountryToIsoIndex{14941, "bd"}, + CountryToIsoIndex{14953, "bd"}, + CountryToIsoIndex{14963, "bd"}, + CountryToIsoIndex{14975, "bd"}, + CountryToIsoIndex{14986, "bd"}, + CountryToIsoIndex{15004, "bd"}, + CountryToIsoIndex{15016, "bd"}, + CountryToIsoIndex{15030, "bd"}, + CountryToIsoIndex{15041, "bd"}, + CountryToIsoIndex{15052, "bd"}, + CountryToIsoIndex{15063, "bd"}, + CountryToIsoIndex{15074, "bd"}, + CountryToIsoIndex{15084, "bd"}, + CountryToIsoIndex{15095, "bd"}, + CountryToIsoIndex{15107, "bd"}, + CountryToIsoIndex{15118, "bd"}, + CountryToIsoIndex{15129, "bd"}, + CountryToIsoIndex{15141, "bd"}, + CountryToIsoIndex{15154, "bd"}, + CountryToIsoIndex{15166, "bd"}, + CountryToIsoIndex{15176, "bd"}, + CountryToIsoIndex{15187, "bd"}, + CountryToIsoIndex{15199, "bd"}, + CountryToIsoIndex{15212, "bd"}, + CountryToIsoIndex{15223, "vu"}, + CountryToIsoIndex{15232, "bb"}, + CountryToIsoIndex{15243, "bb"}, + CountryToIsoIndex{15253, "py"}, + CountryToIsoIndex{15262, "bh"}, + CountryToIsoIndex{15269, "by"}, + CountryToIsoIndex{15278, "bb"}, + CountryToIsoIndex{15288, "bb"}, + CountryToIsoIndex{15295, "bb"}, + CountryToIsoIndex{15304, "bb"}, + CountryToIsoIndex{15312, "bb"}, + CountryToIsoIndex{15320, "bb"}, + CountryToIsoIndex{15330, "bb"}, + CountryToIsoIndex{15338, "bb"}, + CountryToIsoIndex{15348, "bb"}, + CountryToIsoIndex{15357, "bb"}, + CountryToIsoIndex{15373, "bb"}, + CountryToIsoIndex{15383, "bb"}, + CountryToIsoIndex{15394, "bb"}, + CountryToIsoIndex{15403, "bb"}, + CountryToIsoIndex{15412, "bb"}, + CountryToIsoIndex{15420, "bb"}, + CountryToIsoIndex{15430, "bb"}, + CountryToIsoIndex{15440, "bb"}, + CountryToIsoIndex{15449, "bh"}, + CountryToIsoIndex{15456, "bh"}, + CountryToIsoIndex{15464, "bh"}, + CountryToIsoIndex{15470, "bh"}, + CountryToIsoIndex{15479, "bm"}, + CountryToIsoIndex{15487, "bb"}, + CountryToIsoIndex{15498, "bh"}, + CountryToIsoIndex{15506, "bh"}, + CountryToIsoIndex{15513, "bh"}, + CountryToIsoIndex{15522, "bb"}, + CountryToIsoIndex{15532, "bb"}, + CountryToIsoIndex{15543, "bw"}, + CountryToIsoIndex{15551, "va"}, + CountryToIsoIndex{15559, "eh"}, + CountryToIsoIndex{15571, "qo"}, + CountryToIsoIndex{15590, "bh"}, + CountryToIsoIndex{15598, "bh"}, + CountryToIsoIndex{15607, "bd"}, + CountryToIsoIndex{15625, "bd"}, + CountryToIsoIndex{15638, "bh"}, + CountryToIsoIndex{15647, "bh"}, + CountryToIsoIndex{15657, "bh"}, + CountryToIsoIndex{15666, "bh"}, + CountryToIsoIndex{15677, "bm"}, + CountryToIsoIndex{15687, "bj"}, + CountryToIsoIndex{15694, "bm"}, + CountryToIsoIndex{15705, "by"}, + CountryToIsoIndex{15714, "nl"}, + CountryToIsoIndex{15722, "bq"}, + CountryToIsoIndex{15740, "bq"}, + CountryToIsoIndex{15756, "by"}, + CountryToIsoIndex{15764, "by"}, + CountryToIsoIndex{15773, "by"}, + CountryToIsoIndex{15781, "by"}, + CountryToIsoIndex{15796, "by"}, + CountryToIsoIndex{15805, "by"}, + CountryToIsoIndex{15817, "by"}, + CountryToIsoIndex{15826, "by"}, + CountryToIsoIndex{15836, "by"}, + CountryToIsoIndex{15845, "by"}, + CountryToIsoIndex{15853, "by"}, + CountryToIsoIndex{15862, "by"}, + CountryToIsoIndex{15873, "by"}, + CountryToIsoIndex{15883, "pw"}, + CountryToIsoIndex{15889, "by"}, + CountryToIsoIndex{15897, "pw"}, + CountryToIsoIndex{15905, "be"}, + CountryToIsoIndex{15914, "be"}, + CountryToIsoIndex{15923, "be"}, + CountryToIsoIndex{15930, "be"}, + CountryToIsoIndex{15939, "be"}, + CountryToIsoIndex{15946, "be"}, + CountryToIsoIndex{15954, "be"}, + CountryToIsoIndex{15963, "be"}, + CountryToIsoIndex{15971, "be"}, + CountryToIsoIndex{15979, "be"}, + CountryToIsoIndex{15986, "be"}, + CountryToIsoIndex{15995, "be"}, + CountryToIsoIndex{16004, "be"}, + CountryToIsoIndex{16012, "be"}, + CountryToIsoIndex{16027, "be"}, + CountryToIsoIndex{16037, "be"}, + CountryToIsoIndex{16045, "be"}, + CountryToIsoIndex{16054, "be"}, + CountryToIsoIndex{16062, "be"}, + CountryToIsoIndex{16071, "be"}, + CountryToIsoIndex{16081, "be"}, + CountryToIsoIndex{16091, "be"}, + CountryToIsoIndex{16099, "be"}, + CountryToIsoIndex{16107, "bz"}, + CountryToIsoIndex{16114, "bz"}, + CountryToIsoIndex{16122, "bz"}, + CountryToIsoIndex{16129, "bz"}, + CountryToIsoIndex{16137, "bz"}, + CountryToIsoIndex{16145, "bm"}, + CountryToIsoIndex{16154, "bz"}, + CountryToIsoIndex{16160, "bz"}, + CountryToIsoIndex{16167, "bz"}, + CountryToIsoIndex{16173, "bz"}, + CountryToIsoIndex{16180, "bz"}, + CountryToIsoIndex{16188, "bz"}, + CountryToIsoIndex{16195, "bz"}, + CountryToIsoIndex{16209, "bz"}, + CountryToIsoIndex{16216, "bz"}, + CountryToIsoIndex{16225, "bz"}, + CountryToIsoIndex{16232, "bz"}, + CountryToIsoIndex{16240, "bz"}, + CountryToIsoIndex{16248, "be"}, + CountryToIsoIndex{16255, "be"}, + CountryToIsoIndex{16263, "be"}, + CountryToIsoIndex{16271, "be"}, + CountryToIsoIndex{16278, "bm"}, + CountryToIsoIndex{16286, "by"}, + CountryToIsoIndex{16297, "by"}, + CountryToIsoIndex{16308, "be"}, + CountryToIsoIndex{16315, "be"}, + CountryToIsoIndex{16322, "be"}, + CountryToIsoIndex{16329, "be"}, + CountryToIsoIndex{16336, "be"}, + CountryToIsoIndex{16344, "be"}, + CountryToIsoIndex{16353, "bz"}, + CountryToIsoIndex{16362, "bz"}, + CountryToIsoIndex{16369, "bz"}, + CountryToIsoIndex{16377, "bz"}, + CountryToIsoIndex{16385, "be"}, + CountryToIsoIndex{16393, "bg"}, + CountryToIsoIndex{16403, "ae"}, + CountryToIsoIndex{16428, "bm"}, + CountryToIsoIndex{16435, "bj"}, + CountryToIsoIndex{16440, "bj"}, + CountryToIsoIndex{16446, "ve"}, + CountryToIsoIndex{16457, "bd"}, + CountryToIsoIndex{16468, "bd"}, + CountryToIsoIndex{16481, "bd"}, + CountryToIsoIndex{16493, "bd"}, + CountryToIsoIndex{16506, "bd"}, + CountryToIsoIndex{16519, "bj"}, + CountryToIsoIndex{16525, "bj"}, + CountryToIsoIndex{16531, "bj"}, + CountryToIsoIndex{16544, "bj"}, + CountryToIsoIndex{16551, "bj"}, + CountryToIsoIndex{16559, "bj"}, + CountryToIsoIndex{16566, "bj"}, + CountryToIsoIndex{16573, "bj"}, + CountryToIsoIndex{16580, "bj"}, + CountryToIsoIndex{16587, "bj"}, + CountryToIsoIndex{16595, "bj"}, + CountryToIsoIndex{16604, "bj"}, + CountryToIsoIndex{16611, "bj"}, + CountryToIsoIndex{16617, "bj"}, + CountryToIsoIndex{16624, "bm"}, + CountryToIsoIndex{16633, "bm"}, + CountryToIsoIndex{16643, "br"}, + CountryToIsoIndex{16652, "br"}, + CountryToIsoIndex{16660, "br"}, + CountryToIsoIndex{16669, "bm"}, + CountryToIsoIndex{16678, "bm"}, + CountryToIsoIndex{16689, "bz"}, + CountryToIsoIndex{16696, "bm"}, + CountryToIsoIndex{16703, "bm"}, + CountryToIsoIndex{16712, "bm"}, + CountryToIsoIndex{16719, "bm"}, + CountryToIsoIndex{16735, "bm"}, + CountryToIsoIndex{16743, "bm"}, + CountryToIsoIndex{16758, "bm"}, + CountryToIsoIndex{16775, "bm"}, + CountryToIsoIndex{16784, "bm"}, + CountryToIsoIndex{16793, "bm"}, + CountryToIsoIndex{16802, "bm"}, + CountryToIsoIndex{16810, "bm"}, + CountryToIsoIndex{16820, "bm"}, + CountryToIsoIndex{16829, "bm"}, + CountryToIsoIndex{16843, "bm"}, + CountryToIsoIndex{16851, "bm"}, + CountryToIsoIndex{16860, "bm"}, + CountryToIsoIndex{16869, "bm"}, + CountryToIsoIndex{16883, "be"}, + CountryToIsoIndex{16894, "ac"}, + CountryToIsoIndex{16911, "be"}, + CountryToIsoIndex{16921, "be"}, + CountryToIsoIndex{16930, "by"}, + CountryToIsoIndex{16942, "bj"}, + CountryToIsoIndex{16952, "bm"}, + CountryToIsoIndex{16963, "bb"}, + CountryToIsoIndex{16974, "bb"}, + CountryToIsoIndex{16983, "bs"}, + CountryToIsoIndex{16992, "bh"}, + CountryToIsoIndex{17002, "bd"}, + CountryToIsoIndex{17016, "bd"}, + CountryToIsoIndex{17033, "il"}, + CountryToIsoIndex{17048, "bh"}, + CountryToIsoIndex{17057, "by"}, + CountryToIsoIndex{17067, "be"}, + CountryToIsoIndex{17076, "bz"}, + CountryToIsoIndex{17083, "bz"}, + CountryToIsoIndex{17091, "bm"}, + CountryToIsoIndex{17099, "bj"}, + CountryToIsoIndex{17107, "vn"}, + CountryToIsoIndex{17117, "bt"}, + CountryToIsoIndex{17125, "bf"}, + CountryToIsoIndex{17139, "bo"}, + CountryToIsoIndex{17149, "ba"}, + CountryToIsoIndex{17172, "bw"}, + CountryToIsoIndex{17182, "bt"}, + CountryToIsoIndex{17190, "bt"}, + CountryToIsoIndex{17198, "bf"}, + CountryToIsoIndex{17211, "bg"}, + CountryToIsoIndex{17222, "br"}, + CountryToIsoIndex{17232, "bi"}, + CountryToIsoIndex{17241, "bn"}, + CountryToIsoIndex{17252, "bt"}, + CountryToIsoIndex{17259, "bt"}, + CountryToIsoIndex{17273, "bt"}, + CountryToIsoIndex{17281, "bt"}, + CountryToIsoIndex{17289, "bt"}, + CountryToIsoIndex{17297, "bt"}, + CountryToIsoIndex{17305, "bt"}, + CountryToIsoIndex{17314, "bg"}, + CountryToIsoIndex{17325, "ba"}, + CountryToIsoIndex{17336, "be"}, + CountryToIsoIndex{17348, "by"}, + CountryToIsoIndex{17359, "bm"}, + CountryToIsoIndex{17368, "bj"}, + CountryToIsoIndex{17375, "by"}, + CountryToIsoIndex{17386, "by"}, + CountryToIsoIndex{17398, "by"}, + CountryToIsoIndex{17412, "by"}, + CountryToIsoIndex{17423, "by"}, + CountryToIsoIndex{17435, "by"}, + CountryToIsoIndex{17447, "mk"}, + CountryToIsoIndex{17495, "by"}, + CountryToIsoIndex{17503, "by"}, + CountryToIsoIndex{17513, "bg"}, + CountryToIsoIndex{17521, "bz"}, + CountryToIsoIndex{17529, "bg"}, + CountryToIsoIndex{17538, "bz"}, + CountryToIsoIndex{17544, "be"}, + CountryToIsoIndex{17551, "by"}, + CountryToIsoIndex{17561, "bj"}, + CountryToIsoIndex{17568, "bj"}, + CountryToIsoIndex{17574, "bg"}, + CountryToIsoIndex{17584, "br"}, + CountryToIsoIndex{17592, "mm"}, + CountryToIsoIndex{17603, "vi"}, + CountryToIsoIndex{17630, "vg"}, + CountryToIsoIndex{17659, "ae"}, + CountryToIsoIndex{17687, "ae"}, + CountryToIsoIndex{17714, "gb"}, + CountryToIsoIndex{17735, "ae"}, + CountryToIsoIndex{17762, "gb"}, + CountryToIsoIndex{17781, "gb"}, + CountryToIsoIndex{17803, "ae"}, + CountryToIsoIndex{17837, "mm"}, + CountryToIsoIndex{17843, "mm"}, + CountryToIsoIndex{17852, "bm"}, + CountryToIsoIndex{17860, "gb"}, + CountryToIsoIndex{17870, "pe"}, + CountryToIsoIndex{17875, "fk"}, + CountryToIsoIndex{17919, "fo"}, + CountryToIsoIndex{17938, "ic"}, + CountryToIsoIndex{17958, "cv"}, + CountryToIsoIndex{17981, "ky"}, + CountryToIsoIndex{18001, "ck"}, + CountryToIsoIndex{18020, "fk"}, + CountryToIsoIndex{18039, "mp"}, + CountryToIsoIndex{18072, "mh"}, + CountryToIsoIndex{18095, "tc"}, + CountryToIsoIndex{18124, "vi"}, + CountryToIsoIndex{18154, "vg"}, + CountryToIsoIndex{18193, "cc"}, + CountryToIsoIndex{18207, "um"}, + CountryToIsoIndex{18260, "sb"}, + CountryToIsoIndex{18276, "ax"}, + CountryToIsoIndex{18291, "gw"}, + CountryToIsoIndex{18306, "gw"}, + CountryToIsoIndex{18320, "pn"}, + CountryToIsoIndex{18329, "vn"}, + CountryToIsoIndex{18339, "sb"}, + CountryToIsoIndex{18363, "ph"}, + CountryToIsoIndex{18384, "ck"}, + CountryToIsoIndex{18402, "mh"}, + CountryToIsoIndex{18421, "mp"}, + CountryToIsoIndex{18456, "mp"}, + CountryToIsoIndex{18494, "vi"}, + CountryToIsoIndex{18529, "cv"}, + CountryToIsoIndex{18556, "io"}, + CountryToIsoIndex{18575, "fk"}, + CountryToIsoIndex{18601, "km"}, + CountryToIsoIndex{18622, "mv"}, + CountryToIsoIndex{18645, "tc"}, + CountryToIsoIndex{18677, "ky"}, + CountryToIsoIndex{18700, "vg"}, + CountryToIsoIndex{18744, "by"}, + CountryToIsoIndex{18757, "by"}, + CountryToIsoIndex{18768, "ci"}, + CountryToIsoIndex{18785, "by"}, + CountryToIsoIndex{18797, "mk"}, + CountryToIsoIndex{18812, "gb"}, + CountryToIsoIndex{18815, "br"}, + CountryToIsoIndex{18823, "be"}, + CountryToIsoIndex{18830, "bn"}, + CountryToIsoIndex{18837, "bg"}, + CountryToIsoIndex{18845, "us"}, + CountryToIsoIndex{18849, "bw"}, + CountryToIsoIndex{18857, "bw"}, + CountryToIsoIndex{18865, "bo"}, + CountryToIsoIndex{18875, "bf"}, + CountryToIsoIndex{18887, "bg"}, + CountryToIsoIndex{18897, "bg"}, + CountryToIsoIndex{18907, "bg"}, + CountryToIsoIndex{18918, "ci"}, + CountryToIsoIndex{18929, "bo"}, + CountryToIsoIndex{18938, "bo"}, + CountryToIsoIndex{18946, "bo"}, + CountryToIsoIndex{18956, "bo"}, + CountryToIsoIndex{18964, "bo"}, + CountryToIsoIndex{18973, "bo"}, + CountryToIsoIndex{18982, "bo"}, + CountryToIsoIndex{18989, "bo"}, + CountryToIsoIndex{18997, "bo"}, + CountryToIsoIndex{19012, "bo"}, + CountryToIsoIndex{19021, "bo"}, + CountryToIsoIndex{19029, "bo"}, + CountryToIsoIndex{19038, "bo"}, + CountryToIsoIndex{19047, "bo"}, + CountryToIsoIndex{19055, "bo"}, + CountryToIsoIndex{19064, "bo"}, + CountryToIsoIndex{19073, "bo"}, + CountryToIsoIndex{19081, "bo"}, + CountryToIsoIndex{19090, "bo"}, + CountryToIsoIndex{19097, "bo"}, + CountryToIsoIndex{19105, "bo"}, + CountryToIsoIndex{19113, "bo"}, + CountryToIsoIndex{19121, "bo"}, + CountryToIsoIndex{19131, "bo"}, + CountryToIsoIndex{19141, "bo"}, + CountryToIsoIndex{19152, "bg"}, + CountryToIsoIndex{19165, "bo"}, + CountryToIsoIndex{19174, "bo"}, + CountryToIsoIndex{19183, "bo"}, + CountryToIsoIndex{19193, "bq"}, + CountryToIsoIndex{19201, "bq"}, + CountryToIsoIndex{19234, "bq"}, + CountryToIsoIndex{19264, "pl"}, + CountryToIsoIndex{19272, "bo"}, + CountryToIsoIndex{19280, "bo"}, + CountryToIsoIndex{19290, "bf"}, + CountryToIsoIndex{19303, "bi"}, + CountryToIsoIndex{19311, "pt"}, + CountryToIsoIndex{19321, "ba"}, + CountryToIsoIndex{19344, "ba"}, + CountryToIsoIndex{19369, "ba"}, + CountryToIsoIndex{19392, "ba"}, + CountryToIsoIndex{19412, "ba"}, + CountryToIsoIndex{19432, "ba"}, + CountryToIsoIndex{19453, "ba"}, + CountryToIsoIndex{19476, "ba"}, + CountryToIsoIndex{19489, "ba"}, + CountryToIsoIndex{19509, "ba"}, + CountryToIsoIndex{19525, "ba"}, + CountryToIsoIndex{19547, "ba"}, + CountryToIsoIndex{19565, "ba"}, + CountryToIsoIndex{19572, "ba"}, + CountryToIsoIndex{19593, "ba"}, + CountryToIsoIndex{19618, "ba"}, + CountryToIsoIndex{19641, "ba"}, + CountryToIsoIndex{19664, "ba"}, + CountryToIsoIndex{19685, "ba"}, + CountryToIsoIndex{19706, "ba"}, + CountryToIsoIndex{19728, "ba"}, + CountryToIsoIndex{19750, "ba"}, + CountryToIsoIndex{19772, "ba"}, + CountryToIsoIndex{19796, "ba"}, + CountryToIsoIndex{19819, "ba"}, + CountryToIsoIndex{19842, "ba"}, + CountryToIsoIndex{19874, "ba"}, + CountryToIsoIndex{19895, "ba"}, + CountryToIsoIndex{19917, "ba"}, + CountryToIsoIndex{19939, "ba"}, + CountryToIsoIndex{19961, "ba"}, + CountryToIsoIndex{19984, "ba"}, + CountryToIsoIndex{20005, "ba"}, + CountryToIsoIndex{20029, "ba"}, + CountryToIsoIndex{20048, "ba"}, + CountryToIsoIndex{20067, "ba"}, + CountryToIsoIndex{20086, "ba"}, + CountryToIsoIndex{20112, "ba"}, + CountryToIsoIndex{20132, "ba"}, + CountryToIsoIndex{20155, "ba"}, + CountryToIsoIndex{20178, "ba"}, + CountryToIsoIndex{20198, "ba"}, + CountryToIsoIndex{20221, "ba"}, + CountryToIsoIndex{20245, "ba"}, + CountryToIsoIndex{20268, "ba"}, + CountryToIsoIndex{20292, "ba"}, + CountryToIsoIndex{20312, "ba"}, + CountryToIsoIndex{20331, "ba"}, + CountryToIsoIndex{20354, "ba"}, + CountryToIsoIndex{20377, "ba"}, + CountryToIsoIndex{20396, "ba"}, + CountryToIsoIndex{20419, "ba"}, + CountryToIsoIndex{20439, "ba"}, + CountryToIsoIndex{20460, "ba"}, + CountryToIsoIndex{20483, "ba"}, + CountryToIsoIndex{20507, "ba"}, + CountryToIsoIndex{20531, "ba"}, + CountryToIsoIndex{20554, "ba"}, + CountryToIsoIndex{20577, "ba"}, + CountryToIsoIndex{20601, "ba"}, + CountryToIsoIndex{20622, "ba"}, + CountryToIsoIndex{20647, "ba"}, + CountryToIsoIndex{20672, "bw"}, + CountryToIsoIndex{20680, "ba"}, + CountryToIsoIndex{20700, "ba"}, + CountryToIsoIndex{20726, "ba"}, + CountryToIsoIndex{20759, "bw"}, + CountryToIsoIndex{20770, "ba"}, + CountryToIsoIndex{20798, "ba"}, + CountryToIsoIndex{20821, "bw"}, + CountryToIsoIndex{20831, "bw"}, + CountryToIsoIndex{20843, "bw"}, + CountryToIsoIndex{20852, "bw"}, + CountryToIsoIndex{20861, "bw"}, + CountryToIsoIndex{20870, "bw"}, + CountryToIsoIndex{20880, "bw"}, + CountryToIsoIndex{20890, "bw"}, + CountryToIsoIndex{20900, "bw"}, + CountryToIsoIndex{20909, "bw"}, + CountryToIsoIndex{20925, "bw"}, + CountryToIsoIndex{20935, "bw"}, + CountryToIsoIndex{20945, "bw"}, + CountryToIsoIndex{20955, "bw"}, + CountryToIsoIndex{20966, "bt"}, + CountryToIsoIndex{20973, "bv"}, + CountryToIsoIndex{20980, "bv"}, + CountryToIsoIndex{20994, "bv"}, + CountryToIsoIndex{21008, "bv"}, + CountryToIsoIndex{21024, "bv"}, + CountryToIsoIndex{21039, "bv"}, + CountryToIsoIndex{21064, "bv"}, + CountryToIsoIndex{21078, "bv"}, + CountryToIsoIndex{21091, "bv"}, + CountryToIsoIndex{21105, "bv"}, + CountryToIsoIndex{21119, "bv"}, + CountryToIsoIndex{21132, "bv"}, + CountryToIsoIndex{21145, "bv"}, + CountryToIsoIndex{21156, "bv"}, + CountryToIsoIndex{21168, "bv"}, + CountryToIsoIndex{21180, "bv"}, + CountryToIsoIndex{21196, "bv"}, + CountryToIsoIndex{21210, "bv"}, + CountryToIsoIndex{21225, "bv"}, + CountryToIsoIndex{21237, "bv"}, + CountryToIsoIndex{21251, "bv"}, + CountryToIsoIndex{21261, "bv"}, + CountryToIsoIndex{21272, "bv"}, + CountryToIsoIndex{21283, "bv"}, + CountryToIsoIndex{21300, "bv"}, + CountryToIsoIndex{21315, "bv"}, + CountryToIsoIndex{21331, "ba"}, + CountryToIsoIndex{21351, "ba"}, + CountryToIsoIndex{21374, "ba"}, + CountryToIsoIndex{21393, "ba"}, + CountryToIsoIndex{21415, "bw"}, + CountryToIsoIndex{21424, "ba"}, + CountryToIsoIndex{21448, "bg"}, + CountryToIsoIndex{21459, "ba"}, + CountryToIsoIndex{21481, "cx"}, + CountryToIsoIndex{21496, "cx"}, + CountryToIsoIndex{21513, "cx"}, + CountryToIsoIndex{21528, "br"}, + CountryToIsoIndex{21537, "br"}, + CountryToIsoIndex{21545, "br"}, + CountryToIsoIndex{21555, "br"}, + CountryToIsoIndex{21562, "br"}, + CountryToIsoIndex{21570, "br"}, + CountryToIsoIndex{21579, "br"}, + CountryToIsoIndex{21588, "br"}, + CountryToIsoIndex{21598, "br"}, + CountryToIsoIndex{21608, "br"}, + CountryToIsoIndex{21618, "br"}, + CountryToIsoIndex{21628, "br"}, + CountryToIsoIndex{21638, "br"}, + CountryToIsoIndex{21648, "br"}, + CountryToIsoIndex{21656, "br"}, + CountryToIsoIndex{21663, "br"}, + CountryToIsoIndex{21677, "br"}, + CountryToIsoIndex{21685, "br"}, + CountryToIsoIndex{21694, "br"}, + CountryToIsoIndex{21704, "br"}, + CountryToIsoIndex{21714, "br"}, + CountryToIsoIndex{21724, "br"}, + CountryToIsoIndex{21734, "br"}, + CountryToIsoIndex{21745, "br"}, + CountryToIsoIndex{21753, "br"}, + CountryToIsoIndex{21763, "br"}, + CountryToIsoIndex{21771, "br"}, + CountryToIsoIndex{21780, "br"}, + CountryToIsoIndex{21789, "br"}, + CountryToIsoIndex{21799, "br"}, + CountryToIsoIndex{21809, "br"}, + CountryToIsoIndex{21820, "br"}, + CountryToIsoIndex{21828, "ci"}, + CountryToIsoIndex{21847, "br"}, + CountryToIsoIndex{21854, "io"}, + CountryToIsoIndex{21879, "vg"}, + CountryToIsoIndex{21901, "gb"}, + CountryToIsoIndex{21910, "io"}, + CountryToIsoIndex{21952, "br"}, + CountryToIsoIndex{21959, "br"}, + CountryToIsoIndex{21967, "br"}, + CountryToIsoIndex{21976, "br"}, + CountryToIsoIndex{21986, "br"}, + CountryToIsoIndex{21995, "vg"}, + CountryToIsoIndex{22022, "bn"}, + CountryToIsoIndex{22030, "io"}, + CountryToIsoIndex{22060, "vg"}, + CountryToIsoIndex{22081, "io"}, + CountryToIsoIndex{22108, "vg"}, + CountryToIsoIndex{22133, "io"}, + CountryToIsoIndex{22171, "vg"}, + CountryToIsoIndex{22215, "vg"}, + CountryToIsoIndex{22238, "vg"}, + CountryToIsoIndex{22260, "gb"}, + CountryToIsoIndex{22270, "vg"}, + CountryToIsoIndex{22296, "io"}, + CountryToIsoIndex{22333, "io"}, + CountryToIsoIndex{22369, "vg"}, + CountryToIsoIndex{22399, "io"}, + CountryToIsoIndex{22448, "gb"}, + CountryToIsoIndex{22458, "vg"}, + CountryToIsoIndex{22487, "vg"}, + CountryToIsoIndex{22517, "io"}, + CountryToIsoIndex{22555, "io"}, + CountryToIsoIndex{22595, "vg"}, + CountryToIsoIndex{22620, "vg"}, + CountryToIsoIndex{22649, "io"}, + CountryToIsoIndex{22686, "io"}, + CountryToIsoIndex{22723, "io"}, + CountryToIsoIndex{22758, "vg"}, + CountryToIsoIndex{22783, "io"}, + CountryToIsoIndex{22820, "vg"}, + CountryToIsoIndex{22845, "io"}, + CountryToIsoIndex{22886, "io"}, + CountryToIsoIndex{22910, "vg"}, + CountryToIsoIndex{22929, "io"}, + CountryToIsoIndex{22968, "vg"}, + CountryToIsoIndex{22993, "io"}, + CountryToIsoIndex{23035, "vg"}, + CountryToIsoIndex{23060, "io"}, + CountryToIsoIndex{23102, "io"}, + CountryToIsoIndex{23133, "vg"}, + CountryToIsoIndex{23156, "vg"}, + CountryToIsoIndex{23182, "vg"}, + CountryToIsoIndex{23208, "io"}, + CountryToIsoIndex{23245, "io"}, + CountryToIsoIndex{23283, "io"}, + CountryToIsoIndex{23322, "io"}, + CountryToIsoIndex{23349, "vg"}, + CountryToIsoIndex{23375, "vg"}, + CountryToIsoIndex{23398, "io"}, + CountryToIsoIndex{23431, "io"}, + CountryToIsoIndex{23458, "io"}, + CountryToIsoIndex{23495, "vg"}, + CountryToIsoIndex{23517, "vg"}, + CountryToIsoIndex{23540, "vg"}, + CountryToIsoIndex{23563, "io"}, + CountryToIsoIndex{23597, "io"}, + CountryToIsoIndex{23632, "vg"}, + CountryToIsoIndex{23659, "vg"}, + CountryToIsoIndex{23683, "vg"}, + CountryToIsoIndex{23710, "io"}, + CountryToIsoIndex{23749, "io"}, + CountryToIsoIndex{23786, "vg"}, + CountryToIsoIndex{23814, "vg"}, + CountryToIsoIndex{23838, "io"}, + CountryToIsoIndex{23878, "vg"}, + CountryToIsoIndex{23896, "br"}, + CountryToIsoIndex{23903, "bm"}, + CountryToIsoIndex{23910, "bn"}, + CountryToIsoIndex{23918, "bn"}, + CountryToIsoIndex{23925, "bn"}, + CountryToIsoIndex{23932, "bn"}, + CountryToIsoIndex{23939, "bn"}, + CountryToIsoIndex{23957, "bn"}, + CountryToIsoIndex{23971, "bn"}, + CountryToIsoIndex{23978, "bn"}, + CountryToIsoIndex{23986, "bn"}, + CountryToIsoIndex{23994, "bn"}, + CountryToIsoIndex{24001, "bn"}, + CountryToIsoIndex{24009, "bn"}, + CountryToIsoIndex{24015, "bn"}, + CountryToIsoIndex{24023, "bn"}, + CountryToIsoIndex{24042, "bn"}, + CountryToIsoIndex{24050, "bn"}, + CountryToIsoIndex{24069, "bn"}, + CountryToIsoIndex{24077, "bn"}, + CountryToIsoIndex{24087, "bn"}, + CountryToIsoIndex{24096, "bn"}, + CountryToIsoIndex{24104, "bn"}, + CountryToIsoIndex{24112, "io"}, + CountryToIsoIndex{24153, "vg"}, + CountryToIsoIndex{24180, "br"}, + CountryToIsoIndex{24189, "br"}, + CountryToIsoIndex{24197, "bn"}, + CountryToIsoIndex{24207, "bn"}, + CountryToIsoIndex{24216, "bn"}, + CountryToIsoIndex{24224, "br"}, + CountryToIsoIndex{24233, "be"}, + CountryToIsoIndex{24242, "bf"}, + CountryToIsoIndex{24254, "de"}, + CountryToIsoIndex{24262, "fr"}, + CountryToIsoIndex{24272, "fr"}, + CountryToIsoIndex{24282, "fi"}, + CountryToIsoIndex{24289, "bg"}, + CountryToIsoIndex{24298, "gr"}, + CountryToIsoIndex{24318, "de"}, + CountryToIsoIndex{24330, "bf"}, + CountryToIsoIndex{24345, "bf"}, + CountryToIsoIndex{24361, "bf"}, + CountryToIsoIndex{24373, "bf"}, + CountryToIsoIndex{24384, "bf"}, + CountryToIsoIndex{24396, "bf"}, + CountryToIsoIndex{24409, "mg"}, + CountryToIsoIndex{24416, "bf"}, + CountryToIsoIndex{24431, "mg"}, + CountryToIsoIndex{24440, "bf"}, + CountryToIsoIndex{24459, "br"}, + CountryToIsoIndex{24468, "bg"}, + CountryToIsoIndex{24477, "bg"}, + CountryToIsoIndex{24487, "bg"}, + CountryToIsoIndex{24497, "bg"}, + CountryToIsoIndex{24508, "bg"}, + CountryToIsoIndex{24517, "bg"}, + CountryToIsoIndex{24525, "bg"}, + CountryToIsoIndex{24534, "bg"}, + CountryToIsoIndex{24550, "bg"}, + CountryToIsoIndex{24560, "bg"}, + CountryToIsoIndex{24569, "bg"}, + CountryToIsoIndex{24579, "bg"}, + CountryToIsoIndex{24588, "bg"}, + CountryToIsoIndex{24598, "bg"}, + CountryToIsoIndex{24608, "bg"}, + CountryToIsoIndex{24620, "bg"}, + CountryToIsoIndex{24630, "bg"}, + CountryToIsoIndex{24640, "bg"}, + CountryToIsoIndex{24650, "bg"}, + CountryToIsoIndex{24659, "bg"}, + CountryToIsoIndex{24668, "bg"}, + CountryToIsoIndex{24682, "bg"}, + CountryToIsoIndex{24692, "bg"}, + CountryToIsoIndex{24702, "bg"}, + CountryToIsoIndex{24713, "bg"}, + CountryToIsoIndex{24723, "bo"}, + CountryToIsoIndex{24731, "bo"}, + CountryToIsoIndex{24739, "bg"}, + CountryToIsoIndex{24750, "bg"}, + CountryToIsoIndex{24759, "bg"}, + CountryToIsoIndex{24770, "bg"}, + CountryToIsoIndex{24781, "pf"}, + CountryToIsoIndex{24802, "bo"}, + CountryToIsoIndex{24809, "bo"}, + CountryToIsoIndex{24817, "bg"}, + CountryToIsoIndex{24826, "bg"}, + CountryToIsoIndex{24838, "bg"}, + CountryToIsoIndex{24849, "bg"}, + CountryToIsoIndex{24860, "bi"}, + CountryToIsoIndex{24868, "bn"}, + CountryToIsoIndex{24877, "pl"}, + CountryToIsoIndex{24885, "bn"}, + CountryToIsoIndex{24893, "bg"}, + CountryToIsoIndex{24904, "bf"}, + CountryToIsoIndex{24921, "gb"}, + CountryToIsoIndex{24931, "gb"}, + CountryToIsoIndex{24942, "bi"}, + CountryToIsoIndex{24950, "br"}, + CountryToIsoIndex{24960, "br"}, + CountryToIsoIndex{24969, "bn"}, + CountryToIsoIndex{24979, "bf"}, + CountryToIsoIndex{24994, "bf"}, + CountryToIsoIndex{25009, "bf"}, + CountryToIsoIndex{25023, "bf"}, + CountryToIsoIndex{25037, "bf"}, + CountryToIsoIndex{25050, "bf"}, + CountryToIsoIndex{25070, "bf"}, + CountryToIsoIndex{25084, "bf"}, + CountryToIsoIndex{25097, "bf"}, + CountryToIsoIndex{25110, "bf"}, + CountryToIsoIndex{25122, "bf"}, + CountryToIsoIndex{25130, "bf"}, + CountryToIsoIndex{25147, "mm"}, + CountryToIsoIndex{25153, "mm"}, + CountryToIsoIndex{25168, "bn"}, + CountryToIsoIndex{25176, "bn"}, + CountryToIsoIndex{25183, "bf"}, + CountryToIsoIndex{25197, "pr"}, + CountryToIsoIndex{25208, "bg"}, + CountryToIsoIndex{25219, "tl"}, + CountryToIsoIndex{25244, "bf"}, + CountryToIsoIndex{25259, "bf"}, + CountryToIsoIndex{25273, "bn"}, + CountryToIsoIndex{25282, "bi"}, + CountryToIsoIndex{25293, "bi"}, + CountryToIsoIndex{25301, "bi"}, + CountryToIsoIndex{25316, "bi"}, + CountryToIsoIndex{25325, "bi"}, + CountryToIsoIndex{25335, "bi"}, + CountryToIsoIndex{25344, "bi"}, + CountryToIsoIndex{25352, "bi"}, + CountryToIsoIndex{25361, "bi"}, + CountryToIsoIndex{25371, "bn"}, + CountryToIsoIndex{25378, "bn"}, + CountryToIsoIndex{25388, "bn"}, + CountryToIsoIndex{25396, "bn"}, + CountryToIsoIndex{25404, "bn"}, + CountryToIsoIndex{25413, "bi"}, + CountryToIsoIndex{25422, "bn"}, + CountryToIsoIndex{25432, "bn"}, + CountryToIsoIndex{25441, "vg"}, + CountryToIsoIndex{25471, "io"}, + CountryToIsoIndex{25497, "bi"}, + CountryToIsoIndex{25507, "ba"}, + CountryToIsoIndex{25522, "ba"}, + CountryToIsoIndex{25537, "ba"}, + CountryToIsoIndex{25552, "bw"}, + CountryToIsoIndex{25561, "bt"}, + CountryToIsoIndex{25568, "bt"}, + CountryToIsoIndex{25576, "bt"}, + CountryToIsoIndex{25582, "bt"}, + CountryToIsoIndex{25590, "bt"}, + CountryToIsoIndex{25597, "bt"}, + CountryToIsoIndex{25604, "bt"}, + CountryToIsoIndex{25611, "bt"}, + CountryToIsoIndex{25619, "bw"}, + CountryToIsoIndex{25628, "bt"}, + CountryToIsoIndex{25636, "tr"}, + CountryToIsoIndex{25651, "bt"}, + CountryToIsoIndex{25658, "bt"}, + CountryToIsoIndex{25667, "bt"}, + CountryToIsoIndex{25674, "bt"}, + CountryToIsoIndex{25682, "bt"}, + CountryToIsoIndex{25690, "bt"}, + CountryToIsoIndex{25697, "bt"}, + CountryToIsoIndex{25704, "bt"}, + CountryToIsoIndex{25712, "bt"}, + CountryToIsoIndex{25720, "bt"}, + CountryToIsoIndex{25728, "bv"}, + CountryToIsoIndex{25740, "bv"}, + CountryToIsoIndex{25751, "bv"}, + CountryToIsoIndex{25762, "bv"}, + CountryToIsoIndex{25773, "bv"}, + CountryToIsoIndex{25784, "in"}, + CountryToIsoIndex{25792, "gr"}, + CountryToIsoIndex{25802, "gb"}, + CountryToIsoIndex{25818, "bg"}, + CountryToIsoIndex{25828, "bt"}, + CountryToIsoIndex{25836, "bg"}, + CountryToIsoIndex{25845, "by"}, + CountryToIsoIndex{25855, "mk"}, + CountryToIsoIndex{25898, "bb"}, + CountryToIsoIndex{25908, "bs"}, + CountryToIsoIndex{25918, "bh"}, + CountryToIsoIndex{25926, "bh"}, + CountryToIsoIndex{25935, "bb"}, + CountryToIsoIndex{25945, "bd"}, + CountryToIsoIndex{25961, "bs"}, + CountryToIsoIndex{25971, "br"}, + CountryToIsoIndex{25983, "bb"}, + CountryToIsoIndex{25994, "by"}, + CountryToIsoIndex{26004, "be"}, + CountryToIsoIndex{26013, "bz"}, + CountryToIsoIndex{26021, "bj"}, + CountryToIsoIndex{26032, "by"}, + CountryToIsoIndex{26041, "be"}, + CountryToIsoIndex{26050, "be"}, + CountryToIsoIndex{26059, "be"}, + CountryToIsoIndex{26068, "bj"}, + CountryToIsoIndex{26075, "be"}, + CountryToIsoIndex{26094, "io"}, + CountryToIsoIndex{26131, "fk"}, + CountryToIsoIndex{26150, "ky"}, + CountryToIsoIndex{26168, "ck"}, + CountryToIsoIndex{26183, "vi"}, + CountryToIsoIndex{26208, "vg"}, + CountryToIsoIndex{26236, "mh"}, + CountryToIsoIndex{26254, "mp"}, + CountryToIsoIndex{26286, "sb"}, + CountryToIsoIndex{26305, "tc"}, + CountryToIsoIndex{26334, "bw"}, + CountryToIsoIndex{26346, "ba"}, + CountryToIsoIndex{26370, "bo"}, + CountryToIsoIndex{26379, "bo"}, + CountryToIsoIndex{26390, "ba"}, + CountryToIsoIndex{26412, "bw"}, + CountryToIsoIndex{26428, "bo"}, + CountryToIsoIndex{26438, "ba"}, + CountryToIsoIndex{26447, "ba"}, + CountryToIsoIndex{26469, "ba"}, + CountryToIsoIndex{26490, "ba"}, + CountryToIsoIndex{26510, "bf"}, + CountryToIsoIndex{26525, "bg"}, + CountryToIsoIndex{26537, "bi"}, + CountryToIsoIndex{26547, "bf"}, + CountryToIsoIndex{26564, "bi"}, + CountryToIsoIndex{26574, "bt"}, + CountryToIsoIndex{26582, "bg"}, + CountryToIsoIndex{26594, "bg"}, + CountryToIsoIndex{26605, "bf"}, + CountryToIsoIndex{26621, "bi"}, + CountryToIsoIndex{26632, "bt"}, + CountryToIsoIndex{26639, "qo"}, + CountryToIsoIndex{26655, "by"}, + CountryToIsoIndex{26666, "by"}, + CountryToIsoIndex{26678, "bo"}, + CountryToIsoIndex{26688, "ba"}, + CountryToIsoIndex{26712, "ae"}, + CountryToIsoIndex{26750, "bf"}, + CountryToIsoIndex{26763, "bg"}, + CountryToIsoIndex{26773, "ba"}, + CountryToIsoIndex{26800, "bw"}, + CountryToIsoIndex{26812, "bw"}, + CountryToIsoIndex{26822, "bo"}, + CountryToIsoIndex{26834, "bh"}, + CountryToIsoIndex{26843, "by"}, + CountryToIsoIndex{26853, "br"}, + CountryToIsoIndex{26863, "bz"}, + CountryToIsoIndex{26871, "bj"}, + CountryToIsoIndex{26880, "as"}, + CountryToIsoIndex{26906, "by"}, + CountryToIsoIndex{26915, "by"}, + CountryToIsoIndex{26924, "be"}, + CountryToIsoIndex{26932, "be"}, + CountryToIsoIndex{26942, "be"}, + CountryToIsoIndex{26952, "bz"}, + CountryToIsoIndex{26959, "be"}, + CountryToIsoIndex{26969, "be"}, + CountryToIsoIndex{26978, "by"}, + CountryToIsoIndex{26989, "be"}, + CountryToIsoIndex{27000, "bm"}, + CountryToIsoIndex{27008, "bd"}, + CountryToIsoIndex{27022, "bj"}, + CountryToIsoIndex{27029, "bj"}, + CountryToIsoIndex{27039, "bm"}, + CountryToIsoIndex{27048, "bm"}, + CountryToIsoIndex{27059, "bd"}, + CountryToIsoIndex{27073, "be"}, + CountryToIsoIndex{27085, "bm"}, + CountryToIsoIndex{27097, "bz"}, + CountryToIsoIndex{27110, "bm"}, + CountryToIsoIndex{27121, "bj"}, + CountryToIsoIndex{27134, "bm"}, + CountryToIsoIndex{27146, "bn"}, + CountryToIsoIndex{27157, "br"}, + CountryToIsoIndex{27170, "bh"}, + CountryToIsoIndex{27179, "br"}, + CountryToIsoIndex{27188, "pt"}, + CountryToIsoIndex{27199, "be"}, + CountryToIsoIndex{27204, "pt"}, + CountryToIsoIndex{27219, "ci"}, + CountryToIsoIndex{27236, "bq"}, + CountryToIsoIndex{27254, "td"}, + CountryToIsoIndex{27259, "td"}, + CountryToIsoIndex{27265, "td"}, + CountryToIsoIndex{27271, "cv"}, + CountryToIsoIndex{27282, "cv"}, + CountryToIsoIndex{27293, "td"}, + CountryToIsoIndex{27297, "td"}, + CountryToIsoIndex{27302, "nc"}, + CountryToIsoIndex{27318, "cn"}, + CountryToIsoIndex{27324, "cn"}, + CountryToIsoIndex{27335, "cy"}, + CountryToIsoIndex{27345, "nc"}, + CountryToIsoIndex{27362, "cm"}, + CountryToIsoIndex{27370, "cm"}, + CountryToIsoIndex{27380, "cm"}, + CountryToIsoIndex{27389, "kh"}, + CountryToIsoIndex{27398, "kh"}, + CountryToIsoIndex{27408, "kh"}, + CountryToIsoIndex{27417, "kh"}, + CountryToIsoIndex{27427, "kh"}, + CountryToIsoIndex{27436, "kh"}, + CountryToIsoIndex{27447, "kh"}, + CountryToIsoIndex{27456, "kh"}, + CountryToIsoIndex{27464, "kh"}, + CountryToIsoIndex{27472, "kh"}, + CountryToIsoIndex{27480, "kh"}, + CountryToIsoIndex{27489, "kh"}, + CountryToIsoIndex{27499, "cm"}, + CountryToIsoIndex{27508, "cm"}, + CountryToIsoIndex{27519, "cm"}, + CountryToIsoIndex{27528, "cm"}, + CountryToIsoIndex{27536, "cm"}, + CountryToIsoIndex{27545, "cm"}, + CountryToIsoIndex{27554, "kh"}, + CountryToIsoIndex{27564, "ca"}, + CountryToIsoIndex{27571, "ca"}, + CountryToIsoIndex{27585, "ca"}, + CountryToIsoIndex{27592, "ca"}, + CountryToIsoIndex{27600, "ca"}, + CountryToIsoIndex{27608, "ic"}, + CountryToIsoIndex{27617, "ic"}, + CountryToIsoIndex{27637, "ic"}, + CountryToIsoIndex{27652, "cv"}, + CountryToIsoIndex{27661, "cv"}, + CountryToIsoIndex{27671, "cv"}, + CountryToIsoIndex{27680, "cv"}, + CountryToIsoIndex{27691, "cv"}, + CountryToIsoIndex{27710, "cv"}, + CountryToIsoIndex{27721, "cv"}, + CountryToIsoIndex{27732, "cv"}, + CountryToIsoIndex{27744, "bq"}, + CountryToIsoIndex{27761, "bq"}, + CountryToIsoIndex{27779, "bq"}, + CountryToIsoIndex{27801, "bq"}, + CountryToIsoIndex{27820, "bq"}, + CountryToIsoIndex{27840, "me"}, + CountryToIsoIndex{27852, "kz"}, + CountryToIsoIndex{27864, "kz"}, + CountryToIsoIndex{27877, "kz"}, + CountryToIsoIndex{27890, "qa"}, + CountryToIsoIndex{27896, "va"}, + CountryToIsoIndex{27917, "va"}, + CountryToIsoIndex{27939, "cl"}, + CountryToIsoIndex{27946, "cn"}, + CountryToIsoIndex{27953, "ky"}, + CountryToIsoIndex{27969, "ky"}, + CountryToIsoIndex{27984, "ky"}, + CountryToIsoIndex{28000, "ky"}, + CountryToIsoIndex{28014, "ky"}, + CountryToIsoIndex{28029, "ky"}, + CountryToIsoIndex{28041, "ky"}, + CountryToIsoIndex{28055, "ky"}, + CountryToIsoIndex{28068, "ky"}, + CountryToIsoIndex{28083, "ky"}, + CountryToIsoIndex{28096, "ky"}, + CountryToIsoIndex{28109, "ky"}, + CountryToIsoIndex{28122, "ky"}, + CountryToIsoIndex{28135, "cn"}, + CountryToIsoIndex{28141, "kz"}, + CountryToIsoIndex{28154, "td"}, + CountryToIsoIndex{28160, "td"}, + CountryToIsoIndex{28166, "cl"}, + CountryToIsoIndex{28172, "cn"}, + CountryToIsoIndex{28179, "ca"}, + CountryToIsoIndex{28187, "gi"}, + CountryToIsoIndex{28200, "cz"}, + CountryToIsoIndex{28207, "cz"}, + CountryToIsoIndex{28213, "ke"}, + CountryToIsoIndex{28220, "cz"}, + CountryToIsoIndex{28229, "cz"}, + CountryToIsoIndex{28244, "cz"}, + CountryToIsoIndex{28249, "cf"}, + CountryToIsoIndex{28273, "cf"}, + CountryToIsoIndex{28292, "cf"}, + CountryToIsoIndex{28322, "cf"}, + CountryToIsoIndex{28334, "cf"}, + CountryToIsoIndex{28359, "cf"}, + CountryToIsoIndex{28385, "cf"}, + CountryToIsoIndex{28414, "cf"}, + CountryToIsoIndex{28441, "cf"}, + CountryToIsoIndex{28469, "cf"}, + CountryToIsoIndex{28497, "cf"}, + CountryToIsoIndex{28527, "cf"}, + CountryToIsoIndex{28554, "je"}, + CountryToIsoIndex{28560, "ea"}, + CountryToIsoIndex{28576, "ea"}, + CountryToIsoIndex{28592, "ea"}, + CountryToIsoIndex{28612, "ea"}, + CountryToIsoIndex{28631, "ea"}, + CountryToIsoIndex{28649, "ea"}, + CountryToIsoIndex{28665, "ea"}, + CountryToIsoIndex{28681, "ea"}, + CountryToIsoIndex{28698, "ea"}, + CountryToIsoIndex{28715, "ea"}, + CountryToIsoIndex{28733, "ea"}, + CountryToIsoIndex{28750, "ea"}, + CountryToIsoIndex{28766, "ea"}, + CountryToIsoIndex{28783, "ea"}, + CountryToIsoIndex{28800, "ea"}, + CountryToIsoIndex{28818, "ea"}, + CountryToIsoIndex{28835, "ea"}, + CountryToIsoIndex{28853, "ea"}, + CountryToIsoIndex{28870, "ea"}, + CountryToIsoIndex{28886, "ea"}, + CountryToIsoIndex{28904, "ea"}, + CountryToIsoIndex{28922, "ea"}, + CountryToIsoIndex{28938, "ea"}, + CountryToIsoIndex{28956, "ea"}, + CountryToIsoIndex{28974, "dz"}, + CountryToIsoIndex{28982, "td"}, + CountryToIsoIndex{28987, "td"}, + CountryToIsoIndex{28993, "td"}, + CountryToIsoIndex{28999, "cn"}, + CountryToIsoIndex{29007, "cn"}, + CountryToIsoIndex{29014, "cz"}, + CountryToIsoIndex{29022, "cz"}, + CountryToIsoIndex{29030, "me"}, + CountryToIsoIndex{29043, "cz"}, + CountryToIsoIndex{29051, "cz"}, + CountryToIsoIndex{29072, "cn"}, + CountryToIsoIndex{29079, "cl"}, + CountryToIsoIndex{29085, "cl"}, + CountryToIsoIndex{29091, "cl"}, + CountryToIsoIndex{29098, "cl"}, + CountryToIsoIndex{29106, "cl"}, + CountryToIsoIndex{29113, "cn"}, + CountryToIsoIndex{29119, "cn"}, + CountryToIsoIndex{29126, "cn"}, + CountryToIsoIndex{29132, "cn"}, + CountryToIsoIndex{29138, "cy"}, + CountryToIsoIndex{29145, "ck"}, + CountryToIsoIndex{29162, "fk"}, + CountryToIsoIndex{29183, "ky"}, + CountryToIsoIndex{29201, "mh"}, + CountryToIsoIndex{29222, "mp"}, + CountryToIsoIndex{29256, "nf"}, + CountryToIsoIndex{29276, "sb"}, + CountryToIsoIndex{29296, "tc"}, + CountryToIsoIndex{29325, "vi"}, + CountryToIsoIndex{29354, "vg"}, + CountryToIsoIndex{29384, "nf"}, + CountryToIsoIndex{29404, "hr"}, + CountryToIsoIndex{29415, "hr"}, + CountryToIsoIndex{29427, "hr"}, + CountryToIsoIndex{29437, "hr"}, + CountryToIsoIndex{29448, "cx"}, + CountryToIsoIndex{29465, "cx"}, + CountryToIsoIndex{29482, "cx"}, + CountryToIsoIndex{29500, "cx"}, + CountryToIsoIndex{29516, "cx"}, + CountryToIsoIndex{29530, "cx"}, + CountryToIsoIndex{29549, "fk"}, + CountryToIsoIndex{29568, "mh"}, + CountryToIsoIndex{29587, "nf"}, + CountryToIsoIndex{29605, "tc"}, + CountryToIsoIndex{29633, "ck"}, + CountryToIsoIndex{29652, "cv"}, + CountryToIsoIndex{29680, "fk"}, + CountryToIsoIndex{29703, "mh"}, + CountryToIsoIndex{29723, "nf"}, + CountryToIsoIndex{29744, "sb"}, + CountryToIsoIndex{29769, "mp"}, + CountryToIsoIndex{29809, "vg"}, + CountryToIsoIndex{29852, "ky"}, + CountryToIsoIndex{29874, "cy"}, + CountryToIsoIndex{29881, "td"}, + CountryToIsoIndex{29889, "td"}, + CountryToIsoIndex{29896, "cn"}, + CountryToIsoIndex{29905, "td"}, + CountryToIsoIndex{29910, "cl"}, + CountryToIsoIndex{29917, "cz"}, + CountryToIsoIndex{29926, "cl"}, + CountryToIsoIndex{29934, "cn"}, + CountryToIsoIndex{29942, "cz"}, + CountryToIsoIndex{29955, "cz"}, + CountryToIsoIndex{29975, "ci"}, + CountryToIsoIndex{29978, "td"}, + CountryToIsoIndex{29983, "dj"}, + CountryToIsoIndex{29990, "va"}, + CountryToIsoIndex{30009, "cl"}, + CountryToIsoIndex{30014, "cl"}, + CountryToIsoIndex{30019, "cl"}, + CountryToIsoIndex{30025, "cl"}, + CountryToIsoIndex{30032, "cn"}, + CountryToIsoIndex{30037, "cn"}, + CountryToIsoIndex{30042, "sg"}, + CountryToIsoIndex{30052, "cy"}, + CountryToIsoIndex{30058, "cy"}, + CountryToIsoIndex{30064, "cy"}, + CountryToIsoIndex{30069, "cy"}, + CountryToIsoIndex{30075, "cy"}, + CountryToIsoIndex{30081, "cy"}, + CountryToIsoIndex{30087, "cy"}, + CountryToIsoIndex{30093, "cy"}, + CountryToIsoIndex{30100, "iq"}, + CountryToIsoIndex{30107, "ki"}, + CountryToIsoIndex{30119, "ki"}, + CountryToIsoIndex{30128, "va"}, + CountryToIsoIndex{30146, "va"}, + CountryToIsoIndex{30166, "va"}, + CountryToIsoIndex{30183, "va"}, + CountryToIsoIndex{30203, "va"}, + CountryToIsoIndex{30223, "va"}, + CountryToIsoIndex{30242, "cu"}, + CountryToIsoIndex{30248, "cv"}, + CountryToIsoIndex{30259, "cp"}, + CountryToIsoIndex{30270, "cp"}, + CountryToIsoIndex{30288, "cp"}, + CountryToIsoIndex{30305, "cp"}, + CountryToIsoIndex{30323, "cp"}, + CountryToIsoIndex{30343, "cp"}, + CountryToIsoIndex{30362, "cp"}, + CountryToIsoIndex{30378, "cp"}, + CountryToIsoIndex{30395, "cp"}, + CountryToIsoIndex{30413, "cp"}, + CountryToIsoIndex{30431, "cp"}, + CountryToIsoIndex{30448, "cp"}, + CountryToIsoIndex{30465, "cp"}, + CountryToIsoIndex{30483, "cp"}, + CountryToIsoIndex{30502, "cp"}, + CountryToIsoIndex{30520, "cp"}, + CountryToIsoIndex{30534, "cp"}, + CountryToIsoIndex{30549, "cp"}, + CountryToIsoIndex{30564, "cp"}, + CountryToIsoIndex{30585, "cn"}, + CountryToIsoIndex{30588, "ci"}, + CountryToIsoIndex{30606, "cc"}, + CountryToIsoIndex{30631, "cc"}, + CountryToIsoIndex{30655, "cc"}, + CountryToIsoIndex{30670, "cc"}, + CountryToIsoIndex{30685, "cc"}, + CountryToIsoIndex{30698, "cc"}, + CountryToIsoIndex{30712, "cc"}, + CountryToIsoIndex{30724, "kr"}, + CountryToIsoIndex{30732, "kp"}, + CountryToIsoIndex{30748, "co"}, + CountryToIsoIndex{30758, "co"}, + CountryToIsoIndex{30767, "co"}, + CountryToIsoIndex{30777, "co"}, + CountryToIsoIndex{30786, "co"}, + CountryToIsoIndex{30796, "co"}, + CountryToIsoIndex{30805, "co"}, + CountryToIsoIndex{30815, "co"}, + CountryToIsoIndex{30825, "km"}, + CountryToIsoIndex{30833, "km"}, + CountryToIsoIndex{30840, "km"}, + CountryToIsoIndex{30856, "km"}, + CountryToIsoIndex{30864, "km"}, + CountryToIsoIndex{30874, "km"}, + CountryToIsoIndex{30882, "km"}, + CountryToIsoIndex{30890, "km"}, + CountryToIsoIndex{30898, "km"}, + CountryToIsoIndex{30907, "cg"}, + CountryToIsoIndex{30913, "cd"}, + CountryToIsoIndex{30925, "cg"}, + CountryToIsoIndex{30936, "cd"}, + CountryToIsoIndex{30948, "cg"}, + CountryToIsoIndex{30967, "cg"}, + CountryToIsoIndex{30984, "cd"}, + CountryToIsoIndex{31019, "cg"}, + CountryToIsoIndex{31037, "cg"}, + CountryToIsoIndex{31056, "cg"}, + CountryToIsoIndex{31074, "cg"}, + CountryToIsoIndex{31091, "cg"}, + CountryToIsoIndex{31109, "cg"}, + CountryToIsoIndex{31126, "cg"}, + CountryToIsoIndex{31155, "cd"}, + CountryToIsoIndex{31197, "cd"}, + CountryToIsoIndex{31239, "cg"}, + CountryToIsoIndex{31258, "cg"}, + CountryToIsoIndex{31278, "cd"}, + CountryToIsoIndex{31295, "cg"}, + CountryToIsoIndex{31313, "cd"}, + CountryToIsoIndex{31328, "cg"}, + CountryToIsoIndex{31335, "cd"}, + CountryToIsoIndex{31347, "cg"}, + CountryToIsoIndex{31370, "cg"}, + CountryToIsoIndex{31390, "cd"}, + CountryToIsoIndex{31406, "ck"}, + CountryToIsoIndex{31420, "ck"}, + CountryToIsoIndex{31433, "ck"}, + CountryToIsoIndex{31447, "ck"}, + CountryToIsoIndex{31461, "ck"}, + CountryToIsoIndex{31475, "ck"}, + CountryToIsoIndex{31486, "ck"}, + CountryToIsoIndex{31498, "ck"}, + CountryToIsoIndex{31512, "ck"}, + CountryToIsoIndex{31524, "ck"}, + CountryToIsoIndex{31537, "ck"}, + CountryToIsoIndex{31550, "ck"}, + CountryToIsoIndex{31563, "ck"}, + CountryToIsoIndex{31576, "ck"}, + CountryToIsoIndex{31588, "ck"}, + CountryToIsoIndex{31599, "ck"}, + CountryToIsoIndex{31610, "ck"}, + CountryToIsoIndex{31626, "ck"}, + CountryToIsoIndex{31640, "ck"}, + CountryToIsoIndex{31654, "ck"}, + CountryToIsoIndex{31670, "ck"}, + CountryToIsoIndex{31683, "ck"}, + CountryToIsoIndex{31695, "ck"}, + CountryToIsoIndex{31708, "ck"}, + CountryToIsoIndex{31721, "ck"}, + CountryToIsoIndex{31732, "ck"}, + CountryToIsoIndex{31743, "ck"}, + CountryToIsoIndex{31754, "ck"}, + CountryToIsoIndex{31765, "kp"}, + CountryToIsoIndex{31780, "kr"}, + CountryToIsoIndex{31794, "kp"}, + CountryToIsoIndex{31809, "kp"}, + CountryToIsoIndex{31825, "kr"}, + CountryToIsoIndex{31839, "kr"}, + CountryToIsoIndex{31853, "kp"}, + CountryToIsoIndex{31868, "kr"}, + CountryToIsoIndex{31881, "kp"}, + CountryToIsoIndex{31896, "kr"}, + CountryToIsoIndex{31910, "kp"}, + CountryToIsoIndex{31925, "kr"}, + CountryToIsoIndex{31939, "kp"}, + CountryToIsoIndex{31955, "kr"}, + CountryToIsoIndex{31969, "kp"}, + CountryToIsoIndex{31984, "kr"}, + CountryToIsoIndex{31998, "kp"}, + CountryToIsoIndex{32015, "kr"}, + CountryToIsoIndex{32030, "cr"}, + CountryToIsoIndex{32043, "ci"}, + CountryToIsoIndex{32059, "ci"}, + CountryToIsoIndex{32076, "ci"}, + CountryToIsoIndex{32092, "ci"}, + CountryToIsoIndex{32108, "ci"}, + CountryToIsoIndex{32125, "ci"}, + CountryToIsoIndex{32141, "ci"}, + CountryToIsoIndex{32156, "cr"}, + CountryToIsoIndex{32167, "cr"}, + CountryToIsoIndex{32180, "ci"}, + CountryToIsoIndex{32196, "hr"}, + CountryToIsoIndex{32206, "me"}, + CountryToIsoIndex{32216, "hr"}, + CountryToIsoIndex{32224, "hr"}, + CountryToIsoIndex{32232, "hr"}, + CountryToIsoIndex{32241, "hr"}, + CountryToIsoIndex{32249, "hr"}, + CountryToIsoIndex{32257, "hr"}, + CountryToIsoIndex{32266, "hr"}, + CountryToIsoIndex{32275, "hr"}, + CountryToIsoIndex{32284, "io"}, + CountryToIsoIndex{32321, "tf"}, + CountryToIsoIndex{32362, "cz"}, + CountryToIsoIndex{32382, "cz"}, + CountryToIsoIndex{32394, "td"}, + CountryToIsoIndex{32400, "cu"}, + CountryToIsoIndex{32405, "cu"}, + CountryToIsoIndex{32411, "ci"}, + CountryToIsoIndex{32427, "kw"}, + CountryToIsoIndex{32437, "co"}, + CountryToIsoIndex{32446, "om"}, + CountryToIsoIndex{32453, "km"}, + CountryToIsoIndex{32459, "cw"}, + CountryToIsoIndex{32467, "cw"}, + CountryToIsoIndex{32475, "cw"}, + CountryToIsoIndex{32484, "cw"}, + CountryToIsoIndex{32493, "kw"}, + CountryToIsoIndex{32500, "cy"}, + CountryToIsoIndex{32507, "cy"}, + CountryToIsoIndex{32512, "cy"}, + CountryToIsoIndex{32521, "cy"}, + CountryToIsoIndex{32528, "cz"}, + CountryToIsoIndex{32531, "td"}, + CountryToIsoIndex{32536, "me"}, + CountryToIsoIndex{32548, "cz"}, + CountryToIsoIndex{32563, "cz"}, + CountryToIsoIndex{32579, "cz"}, + CountryToIsoIndex{32587, "cz"}, + CountryToIsoIndex{32594, "td"}, + CountryToIsoIndex{32600, "ae"}, + CountryToIsoIndex{32652, "um"}, + CountryToIsoIndex{32689, "td"}, + CountryToIsoIndex{32694, "td"}, + CountryToIsoIndex{32699, "cy"}, + CountryToIsoIndex{32708, "kg"}, + CountryToIsoIndex{32720, "cl"}, + CountryToIsoIndex{32726, "cl"}, + CountryToIsoIndex{32734, "cn"}, + CountryToIsoIndex{32739, "cy"}, + CountryToIsoIndex{32747, "cr"}, + CountryToIsoIndex{32760, "ci"}, + CountryToIsoIndex{32768, "ci"}, + CountryToIsoIndex{32785, "ci"}, + CountryToIsoIndex{32820, "cu"}, + CountryToIsoIndex{32826, "cu"}, + CountryToIsoIndex{32832, "gi"}, + CountryToIsoIndex{32848, "za"}, + CountryToIsoIndex{32862, "gs"}, + CountryToIsoIndex{32908, "kr"}, + CountryToIsoIndex{32923, "ss"}, + CountryToIsoIndex{32937, "cf"}, + CountryToIsoIndex{32965, "cz"}, + CountryToIsoIndex{32972, "cg"}, + CountryToIsoIndex{32990, "do"}, + CountryToIsoIndex{33011, "cd"}, + CountryToIsoIndex{33040, "cz"}, + CountryToIsoIndex{33057, "cf"}, + CountryToIsoIndex{33079, "um"}, + CountryToIsoIndex{33124, "dk"}, + CountryToIsoIndex{33135, "dk"}, + CountryToIsoIndex{33144, "dk"}, + CountryToIsoIndex{33154, "dk"}, + CountryToIsoIndex{33163, "dk"}, + CountryToIsoIndex{33173, "dk"}, + CountryToIsoIndex{33184, "ac"}, + CountryToIsoIndex{33205, "dk"}, + CountryToIsoIndex{33211, "dk"}, + CountryToIsoIndex{33218, "dk"}, + CountryToIsoIndex{33227, "dk"}, + CountryToIsoIndex{33237, "dk"}, + CountryToIsoIndex{33248, "dk"}, + CountryToIsoIndex{33259, "dk"}, + CountryToIsoIndex{33269, "dk"}, + CountryToIsoIndex{33280, "dk"}, + CountryToIsoIndex{33287, "dk"}, + CountryToIsoIndex{33295, "dk"}, + CountryToIsoIndex{33302, "dk"}, + CountryToIsoIndex{33310, "dk"}, + CountryToIsoIndex{33319, "dk"}, + CountryToIsoIndex{33328, "dk"}, + CountryToIsoIndex{33337, "dk"}, + CountryToIsoIndex{33346, "dk"}, + CountryToIsoIndex{33355, "dk"}, + CountryToIsoIndex{33362, "dk"}, + CountryToIsoIndex{33369, "dk"}, + CountryToIsoIndex{33382, "dk"}, + CountryToIsoIndex{33394, "kp"}, + CountryToIsoIndex{33406, "mp"}, + CountryToIsoIndex{33422, "sd"}, + CountryToIsoIndex{33433, "dk"}, + CountryToIsoIndex{33441, "dk"}, + CountryToIsoIndex{33450, "qo"}, + CountryToIsoIndex{33467, "gb"}, + CountryToIsoIndex{33470, "za"}, + CountryToIsoIndex{33481, "vi"}, + CountryToIsoIndex{33507, "vi"}, + CountryToIsoIndex{33535, "vi"}, + CountryToIsoIndex{33571, "bs"}, + CountryToIsoIndex{33582, "bm"}, + CountryToIsoIndex{33594, "vg"}, + CountryToIsoIndex{33623, "vg"}, + CountryToIsoIndex{33646, "vg"}, + CountryToIsoIndex{33671, "bv"}, + CountryToIsoIndex{33686, "cd"}, + CountryToIsoIndex{33721, "dg"}, + CountryToIsoIndex{33743, "do"}, + CountryToIsoIndex{33773, "bb"}, + CountryToIsoIndex{33791, "im"}, + CountryToIsoIndex{33805, "sh"}, + CountryToIsoIndex{33827, "lc"}, + CountryToIsoIndex{33849, "sj"}, + CountryToIsoIndex{33882, "tc"}, + CountryToIsoIndex{33909, "fk"}, + CountryToIsoIndex{33929, "fj"}, + CountryToIsoIndex{33948, "ae"}, + CountryToIsoIndex{33978, "ae"}, + CountryToIsoIndex{34007, "tf"}, + CountryToIsoIndex{34058, "tf"}, + CountryToIsoIndex{34085, "fo"}, + CountryToIsoIndex{34105, "gs"}, + CountryToIsoIndex{34142, "hm"}, + CountryToIsoIndex{34180, "ky"}, + CountryToIsoIndex{34198, "ic"}, + CountryToIsoIndex{34221, "cv"}, + CountryToIsoIndex{34246, "bq"}, + CountryToIsoIndex{34273, "cp"}, + CountryToIsoIndex{34293, "cc"}, + CountryToIsoIndex{34311, "km"}, + CountryToIsoIndex{34323, "kr"}, + CountryToIsoIndex{34332, "ck"}, + CountryToIsoIndex{34348, "mh"}, + CountryToIsoIndex{34370, "fk"}, + CountryToIsoIndex{34396, "nl"}, + CountryToIsoIndex{34410, "nf"}, + CountryToIsoIndex{34426, "mp"}, + CountryToIsoIndex{34459, "ax"}, + CountryToIsoIndex{34477, "ps"}, + CountryToIsoIndex{34506, "pn"}, + CountryToIsoIndex{34524, "cg"}, + CountryToIsoIndex{34543, "za"}, + CountryToIsoIndex{34567, "ch"}, + CountryToIsoIndex{34578, "sc"}, + CountryToIsoIndex{34593, "sb"}, + CountryToIsoIndex{34613, "ss"}, + CountryToIsoIndex{34622, "bq"}, + CountryToIsoIndex{34657, "cz"}, + CountryToIsoIndex{34672, "tr"}, + CountryToIsoIndex{34683, "ua"}, + CountryToIsoIndex{34698, "us"}, + CountryToIsoIndex{34738, "um"}, + CountryToIsoIndex{34813, "mk"}, + CountryToIsoIndex{34876, "cx"}, + CountryToIsoIndex{34896, "bl"}, + CountryToIsoIndex{34922, "mf"}, + CountryToIsoIndex{34945, "cf"}, + CountryToIsoIndex{34981, "ci"}, + CountryToIsoIndex{35000, "gb"}, + CountryToIsoIndex{35015, "ac"}, + CountryToIsoIndex{35037, "dk"}, + CountryToIsoIndex{35048, "vi"}, + CountryToIsoIndex{35077, "vg"}, + CountryToIsoIndex{35103, "tf"}, + CountryToIsoIndex{35130, "ae"}, + CountryToIsoIndex{35160, "kp"}, + CountryToIsoIndex{35179, "mp"}, + CountryToIsoIndex{35206, "cd"}, + CountryToIsoIndex{35239, "tl"}, + CountryToIsoIndex{35274, "cd"}, + CountryToIsoIndex{35308, "kp"}, + CountryToIsoIndex{35344, "cd"}, + CountryToIsoIndex{35373, "cd"}, + CountryToIsoIndex{35410, "cd"}, + CountryToIsoIndex{35440, "cd"}, + CountryToIsoIndex{35470, "cd"}, + CountryToIsoIndex{35498, "cd"}, + CountryToIsoIndex{35528, "cf"}, + CountryToIsoIndex{35559, "cd"}, + CountryToIsoIndex{35597, "cd"}, + CountryToIsoIndex{35632, "do"}, + CountryToIsoIndex{35658, "do"}, + CountryToIsoIndex{35685, "do"}, + CountryToIsoIndex{35714, "cf"}, + CountryToIsoIndex{35746, "cf"}, + CountryToIsoIndex{35780, "mk"}, + CountryToIsoIndex{35829, "mk"}, + CountryToIsoIndex{35876, "mk"}, + CountryToIsoIndex{35923, "cz"}, + CountryToIsoIndex{35946, "dk"}, + CountryToIsoIndex{35956, "dk"}, + CountryToIsoIndex{35967, "dk"}, + CountryToIsoIndex{35977, "dk"}, + CountryToIsoIndex{35986, "dk"}, + CountryToIsoIndex{35995, "dk"}, + CountryToIsoIndex{36003, "dk"}, + CountryToIsoIndex{36011, "dk"}, + CountryToIsoIndex{36019, "dk"}, + CountryToIsoIndex{36034, "dk"}, + CountryToIsoIndex{36043, "sn"}, + CountryToIsoIndex{36057, "aq"}, + CountryToIsoIndex{36069, "td"}, + CountryToIsoIndex{36081, "va"}, + CountryToIsoIndex{36095, "io"}, + CountryToIsoIndex{36133, "io"}, + CountryToIsoIndex{36178, "ps"}, + CountryToIsoIndex{36203, "de"}, + CountryToIsoIndex{36215, "de"}, + CountryToIsoIndex{36223, "je"}, + CountryToIsoIndex{36234, "zm"}, + CountryToIsoIndex{36242, "zw"}, + CountryToIsoIndex{36252, "jm"}, + CountryToIsoIndex{36261, "gi"}, + CountryToIsoIndex{36270, "dj"}, + CountryToIsoIndex{36280, "vg"}, + CountryToIsoIndex{36319, "dg"}, + CountryToIsoIndex{36332, "dg"}, + CountryToIsoIndex{36346, "dg"}, + CountryToIsoIndex{36366, "dg"}, + CountryToIsoIndex{36380, "dg"}, + CountryToIsoIndex{36393, "dg"}, + CountryToIsoIndex{36406, "gs"}, + CountryToIsoIndex{36451, "kr"}, + CountryToIsoIndex{36465, "ss"}, + CountryToIsoIndex{36480, "za"}, + CountryToIsoIndex{36506, "dg"}, + CountryToIsoIndex{36520, "dg"}, + CountryToIsoIndex{36534, "dg"}, + CountryToIsoIndex{36549, "ae"}, + CountryToIsoIndex{36584, "dk"}, + CountryToIsoIndex{36594, "dk"}, + CountryToIsoIndex{36604, "gi"}, + CountryToIsoIndex{36615, "dj"}, + CountryToIsoIndex{36627, "cf"}, + CountryToIsoIndex{36659, "cz"}, + CountryToIsoIndex{36678, "do"}, + CountryToIsoIndex{36698, "cd"}, + CountryToIsoIndex{36715, "dg"}, + CountryToIsoIndex{36730, "dg"}, + CountryToIsoIndex{36747, "dg"}, + CountryToIsoIndex{36768, "dj"}, + CountryToIsoIndex{36777, "dj"}, + CountryToIsoIndex{36785, "dj"}, + CountryToIsoIndex{36794, "dj"}, + CountryToIsoIndex{36802, "dj"}, + CountryToIsoIndex{36813, "de"}, + CountryToIsoIndex{36822, "dm"}, + CountryToIsoIndex{36832, "dm"}, + CountryToIsoIndex{36843, "dm"}, + CountryToIsoIndex{36853, "do"}, + CountryToIsoIndex{36861, "dm"}, + CountryToIsoIndex{36870, "do"}, + CountryToIsoIndex{36893, "dm"}, + CountryToIsoIndex{36903, "do"}, + CountryToIsoIndex{36922, "dm"}, + CountryToIsoIndex{36932, "dm"}, + CountryToIsoIndex{36940, "do"}, + CountryToIsoIndex{36960, "dm"}, + CountryToIsoIndex{36969, "dm"}, + CountryToIsoIndex{36985, "do"}, + CountryToIsoIndex{37011, "do"}, + CountryToIsoIndex{37032, "do"}, + CountryToIsoIndex{37057, "do"}, + CountryToIsoIndex{37086, "do"}, + CountryToIsoIndex{37110, "do"}, + CountryToIsoIndex{37133, "do"}, + CountryToIsoIndex{37156, "do"}, + CountryToIsoIndex{37181, "do"}, + CountryToIsoIndex{37202, "do"}, + CountryToIsoIndex{37225, "do"}, + CountryToIsoIndex{37248, "do"}, + CountryToIsoIndex{37272, "do"}, + CountryToIsoIndex{37283, "do"}, + CountryToIsoIndex{37306, "do"}, + CountryToIsoIndex{37330, "do"}, + CountryToIsoIndex{37353, "do"}, + CountryToIsoIndex{37376, "do"}, + CountryToIsoIndex{37400, "do"}, + CountryToIsoIndex{37422, "do"}, + CountryToIsoIndex{37446, "dm"}, + CountryToIsoIndex{37456, "dm"}, + CountryToIsoIndex{37465, "do"}, + CountryToIsoIndex{37486, "do"}, + CountryToIsoIndex{37511, "do"}, + CountryToIsoIndex{37535, "do"}, + CountryToIsoIndex{37560, "dm"}, + CountryToIsoIndex{37570, "do"}, + CountryToIsoIndex{37582, "dm"}, + CountryToIsoIndex{37592, "dm"}, + CountryToIsoIndex{37602, "dm"}, + CountryToIsoIndex{37612, "dm"}, + CountryToIsoIndex{37624, "do"}, + CountryToIsoIndex{37643, "dm"}, + CountryToIsoIndex{37653, "dm"}, + CountryToIsoIndex{37663, "dm"}, + CountryToIsoIndex{37674, "dm"}, + CountryToIsoIndex{37683, "dm"}, + CountryToIsoIndex{37693, "do"}, + CountryToIsoIndex{37709, "tf"}, + CountryToIsoIndex{37733, "va"}, + CountryToIsoIndex{37748, "us"}, + CountryToIsoIndex{37773, "de"}, + CountryToIsoIndex{37786, "tl"}, + CountryToIsoIndex{37798, "cd"}, + CountryToIsoIndex{37807, "ci"}, + CountryToIsoIndex{37830, "ci"}, + CountryToIsoIndex{37863, "jm"}, + CountryToIsoIndex{37875, "dj"}, + CountryToIsoIndex{37885, "dj"}, + CountryToIsoIndex{37896, "je"}, + CountryToIsoIndex{37906, "gb"}, + CountryToIsoIndex{37909, "de"}, + CountryToIsoIndex{37916, "de"}, + CountryToIsoIndex{37926, "de"}, + CountryToIsoIndex{37937, "dm"}, + CountryToIsoIndex{37945, "dm"}, + CountryToIsoIndex{37954, "ax"}, + CountryToIsoIndex{37967, "um"}, + CountryToIsoIndex{37989, "fk"}, + CountryToIsoIndex{38003, "fo"}, + CountryToIsoIndex{38013, "hm"}, + CountryToIsoIndex{38042, "ky"}, + CountryToIsoIndex{38055, "cc"}, + CountryToIsoIndex{38073, "ck"}, + CountryToIsoIndex{38083, "mp"}, + CountryToIsoIndex{38102, "mh"}, + CountryToIsoIndex{38115, "pn"}, + CountryToIsoIndex{38130, "sb"}, + CountryToIsoIndex{38143, "tc"}, + CountryToIsoIndex{38163, "vg"}, + CountryToIsoIndex{38188, "vi"}, + CountryToIsoIndex{38213, "bv"}, + CountryToIsoIndex{38224, "cx"}, + CountryToIsoIndex{38238, "im"}, + CountryToIsoIndex{38248, "nf"}, + CountryToIsoIndex{38261, "tr"}, + CountryToIsoIndex{38267, "fk"}, + CountryToIsoIndex{38283, "cv"}, + CountryToIsoIndex{38299, "ky"}, + CountryToIsoIndex{38313, "vi"}, + CountryToIsoIndex{38333, "vg"}, + CountryToIsoIndex{38355, "ck"}, + CountryToIsoIndex{38367, "mp"}, + CountryToIsoIndex{38389, "mh"}, + CountryToIsoIndex{38404, "nf"}, + CountryToIsoIndex{38419, "sb"}, + CountryToIsoIndex{38434, "tc"}, + CountryToIsoIndex{38457, "tl"}, + CountryToIsoIndex{38471, "jm"}, + CountryToIsoIndex{38480, "jp"}, + CountryToIsoIndex{38488, "dj"}, + CountryToIsoIndex{38496, "dj"}, + CountryToIsoIndex{38505, "ge"}, + CountryToIsoIndex{38512, "jm"}, + CountryToIsoIndex{38528, "de"}, + CountryToIsoIndex{38537, "jp"}, + CountryToIsoIndex{38551, "dz"}, + CountryToIsoIndex{38558, "dz"}, + CountryToIsoIndex{38564, "dj"}, + CountryToIsoIndex{38572, "dj"}, + CountryToIsoIndex{38587, "dj"}, + CountryToIsoIndex{38596, "gi"}, + CountryToIsoIndex{38610, "kp"}, + CountryToIsoIndex{38630, "mp"}, + CountryToIsoIndex{38664, "jo"}, + CountryToIsoIndex{38672, "dj"}, + CountryToIsoIndex{38681, "jp"}, + CountryToIsoIndex{38691, "jm"}, + CountryToIsoIndex{38702, "dj"}, + CountryToIsoIndex{38713, "ge"}, + CountryToIsoIndex{38725, "je"}, + CountryToIsoIndex{38739, "dk"}, + CountryToIsoIndex{38749, "dk"}, + CountryToIsoIndex{38756, "dk"}, + CountryToIsoIndex{38767, "dk"}, + CountryToIsoIndex{38775, "bj"}, + CountryToIsoIndex{38785, "cg"}, + CountryToIsoIndex{38809, "cd"}, + CountryToIsoIndex{38832, "de"}, + CountryToIsoIndex{38845, "dk"}, + CountryToIsoIndex{38855, "dk"}, + CountryToIsoIndex{38866, "za"}, + CountryToIsoIndex{38894, "kr"}, + CountryToIsoIndex{38905, "ss"}, + CountryToIsoIndex{38918, "gs"}, + CountryToIsoIndex{38960, "dm"}, + CountryToIsoIndex{38971, "do"}, + CountryToIsoIndex{38995, "do"}, + CountryToIsoIndex{39005, "dm"}, + CountryToIsoIndex{39014, "dm"}, + CountryToIsoIndex{39025, "do"}, + CountryToIsoIndex{39050, "dm"}, + CountryToIsoIndex{39061, "dm"}, + CountryToIsoIndex{39073, "mn"}, + CountryToIsoIndex{39094, "sz"}, + CountryToIsoIndex{39117, "th"}, + CountryToIsoIndex{39138, "de"}, + CountryToIsoIndex{39148, "gq"}, + CountryToIsoIndex{39168, "de"}, + CountryToIsoIndex{39182, "dk"}, + CountryToIsoIndex{39194, "dk"}, + CountryToIsoIndex{39202, "dm"}, + CountryToIsoIndex{39212, "do"}, + CountryToIsoIndex{39234, "dj"}, + CountryToIsoIndex{39243, "dj"}, + CountryToIsoIndex{39252, "dj"}, + CountryToIsoIndex{39261, "je"}, + CountryToIsoIndex{39270, "je"}, + CountryToIsoIndex{39278, "dj"}, + CountryToIsoIndex{39287, "dj"}, + CountryToIsoIndex{39298, "dj"}, + CountryToIsoIndex{39308, "dj"}, + CountryToIsoIndex{39319, "je"}, + CountryToIsoIndex{39330, "dm"}, + CountryToIsoIndex{39340, "do"}, + CountryToIsoIndex{39360, "do"}, + CountryToIsoIndex{39380, "dm"}, + CountryToIsoIndex{39389, "do"}, + CountryToIsoIndex{39409, "dm"}, + CountryToIsoIndex{39419, "dk"}, + CountryToIsoIndex{39427, "dk"}, + CountryToIsoIndex{39437, "cd"}, + CountryToIsoIndex{39478, "io"}, + CountryToIsoIndex{39535, "ec"}, + CountryToIsoIndex{39544, "ec"}, + CountryToIsoIndex{39554, "er"}, + CountryToIsoIndex{39561, "tl"}, + CountryToIsoIndex{39572, "tl"}, + CountryToIsoIndex{39583, "at"}, + CountryToIsoIndex{39593, "gb"}, + CountryToIsoIndex{39596, "fk"}, + CountryToIsoIndex{39622, "sb"}, + CountryToIsoIndex{39645, "tc"}, + CountryToIsoIndex{39676, "io"}, + CountryToIsoIndex{39694, "fk"}, + CountryToIsoIndex{39718, "ph"}, + CountryToIsoIndex{39740, "io"}, + CountryToIsoIndex{39776, "ky"}, + CountryToIsoIndex{39799, "ky"}, + CountryToIsoIndex{39821, "cv"}, + CountryToIsoIndex{39846, "cv"}, + CountryToIsoIndex{39868, "ck"}, + CountryToIsoIndex{39887, "km"}, + CountryToIsoIndex{39907, "ck"}, + CountryToIsoIndex{39926, "mv"}, + CountryToIsoIndex{39948, "mh"}, + CountryToIsoIndex{39969, "sb"}, + CountryToIsoIndex{39992, "tc"}, + CountryToIsoIndex{40023, "vg"}, + CountryToIsoIndex{40067, "vi"}, + CountryToIsoIndex{40102, "vg"}, + CountryToIsoIndex{40140, "vi"}, + CountryToIsoIndex{40176, "mp"}, + CountryToIsoIndex{40210, "ci"}, + CountryToIsoIndex{40221, "nf"}, + CountryToIsoIndex{40242, "et"}, + CountryToIsoIndex{40250, "et"}, + CountryToIsoIndex{40257, "et"}, + CountryToIsoIndex{40263, "et"}, + CountryToIsoIndex{40270, "ec"}, + CountryToIsoIndex{40278, "ec"}, + CountryToIsoIndex{40287, "eg"}, + CountryToIsoIndex{40293, "us"}, + CountryToIsoIndex{40301, "vi"}, + CountryToIsoIndex{40324, "us"}, + CountryToIsoIndex{40331, "ee"}, + CountryToIsoIndex{40337, "ee"}, + CountryToIsoIndex{40350, "ee"}, + CountryToIsoIndex{40359, "et"}, + CountryToIsoIndex{40368, "et"}, + CountryToIsoIndex{40378, "eg"}, + CountryToIsoIndex{40385, "eg"}, + CountryToIsoIndex{40391, "eg"}, + CountryToIsoIndex{40398, "eg"}, + CountryToIsoIndex{40406, "eg"}, + CountryToIsoIndex{40413, "eg"}, + CountryToIsoIndex{40421, "eg"}, + CountryToIsoIndex{40428, "eg"}, + CountryToIsoIndex{40436, "eg"}, + CountryToIsoIndex{40442, "eg"}, + CountryToIsoIndex{40449, "eg"}, + CountryToIsoIndex{40456, "eg"}, + CountryToIsoIndex{40462, "gq"}, + CountryToIsoIndex{40482, "ae"}, + CountryToIsoIndex{40509, "gb"}, + CountryToIsoIndex{40531, "us"}, + CountryToIsoIndex{40550, "eg"}, + CountryToIsoIndex{40559, "eg"}, + CountryToIsoIndex{40565, "eg"}, + CountryToIsoIndex{40572, "eg"}, + CountryToIsoIndex{40583, "eg"}, + CountryToIsoIndex{40590, "eg"}, + CountryToIsoIndex{40604, "eg"}, + CountryToIsoIndex{40612, "eg"}, + CountryToIsoIndex{40619, "eg"}, + CountryToIsoIndex{40630, "eg"}, + CountryToIsoIndex{40641, "eg"}, + CountryToIsoIndex{40653, "cf"}, + CountryToIsoIndex{40684, "im"}, + CountryToIsoIndex{40695, "bv"}, + CountryToIsoIndex{40709, "cp"}, + CountryToIsoIndex{40727, "hm"}, + CountryToIsoIndex{40759, "im"}, + CountryToIsoIndex{40775, "ac"}, + CountryToIsoIndex{40799, "cx"}, + CountryToIsoIndex{40817, "sh"}, + CountryToIsoIndex{40837, "nf"}, + CountryToIsoIndex{40852, "vg"}, + CountryToIsoIndex{40886, "ck"}, + CountryToIsoIndex{40900, "mh"}, + CountryToIsoIndex{40919, "vi"}, + CountryToIsoIndex{40951, "pn"}, + CountryToIsoIndex{40979, "sb"}, + CountryToIsoIndex{40997, "ez"}, + CountryToIsoIndex{41006, "ee"}, + CountryToIsoIndex{41015, "eg"}, + CountryToIsoIndex{41021, "eg"}, + CountryToIsoIndex{41027, "mk"}, + CountryToIsoIndex{41041, "eg"}, + CountryToIsoIndex{41048, "tl"}, + CountryToIsoIndex{41064, "nf"}, + CountryToIsoIndex{41082, "ec"}, + CountryToIsoIndex{41091, "ec"}, + CountryToIsoIndex{41099, "ec"}, + CountryToIsoIndex{41114, "ec"}, + CountryToIsoIndex{41123, "gq"}, + CountryToIsoIndex{41138, "gq"}, + CountryToIsoIndex{41162, "ec"}, + CountryToIsoIndex{41172, "ec"}, + CountryToIsoIndex{41183, "ec"}, + CountryToIsoIndex{41193, "ec"}, + CountryToIsoIndex{41201, "ec"}, + CountryToIsoIndex{41210, "ec"}, + CountryToIsoIndex{41220, "ec"}, + CountryToIsoIndex{41229, "gq"}, + CountryToIsoIndex{41244, "gq"}, + CountryToIsoIndex{41260, "gq"}, + CountryToIsoIndex{41274, "gq"}, + CountryToIsoIndex{41293, "gq"}, + CountryToIsoIndex{41312, "gq"}, + CountryToIsoIndex{41331, "gq"}, + CountryToIsoIndex{41349, "gq"}, + CountryToIsoIndex{41366, "gq"}, + CountryToIsoIndex{41387, "gq"}, + CountryToIsoIndex{41409, "gq"}, + CountryToIsoIndex{41429, "gq"}, + CountryToIsoIndex{41451, "gq"}, + CountryToIsoIndex{41470, "ec"}, + CountryToIsoIndex{41479, "ec"}, + CountryToIsoIndex{41489, "ec"}, + CountryToIsoIndex{41496, "ec"}, + CountryToIsoIndex{41504, "ec"}, + CountryToIsoIndex{41512, "ec"}, + CountryToIsoIndex{41522, "ec"}, + CountryToIsoIndex{41531, "ec"}, + CountryToIsoIndex{41540, "ec"}, + CountryToIsoIndex{41548, "ec"}, + CountryToIsoIndex{41557, "gq"}, + CountryToIsoIndex{41576, "gq"}, + CountryToIsoIndex{41596, "gq"}, + CountryToIsoIndex{41616, "ec"}, + CountryToIsoIndex{41625, "ec"}, + CountryToIsoIndex{41634, "ec"}, + CountryToIsoIndex{41643, "ec"}, + CountryToIsoIndex{41656, "ne"}, + CountryToIsoIndex{41666, "sv"}, + CountryToIsoIndex{41678, "sv"}, + CountryToIsoIndex{41690, "sv"}, + CountryToIsoIndex{41702, "sv"}, + CountryToIsoIndex{41715, "sv"}, + CountryToIsoIndex{41729, "sv"}, + CountryToIsoIndex{41748, "sv"}, + CountryToIsoIndex{41761, "sv"}, + CountryToIsoIndex{41773, "ci"}, + CountryToIsoIndex{41791, "ci"}, + CountryToIsoIndex{41809, "re"}, + CountryToIsoIndex{41823, "ci"}, + CountryToIsoIndex{41836, "ci"}, + CountryToIsoIndex{41851, "ci"}, + CountryToIsoIndex{41868, "ci"}, + CountryToIsoIndex{41883, "ci"}, + CountryToIsoIndex{41899, "ci"}, + CountryToIsoIndex{41916, "ci"}, + CountryToIsoIndex{41931, "ci"}, + CountryToIsoIndex{41947, "ci"}, + CountryToIsoIndex{41963, "sv"}, + CountryToIsoIndex{41978, "sv"}, + CountryToIsoIndex{41990, "sv"}, + CountryToIsoIndex{42000, "er"}, + CountryToIsoIndex{42008, "er"}, + CountryToIsoIndex{42017, "er"}, + CountryToIsoIndex{42027, "er"}, + CountryToIsoIndex{42036, "er"}, + CountryToIsoIndex{42046, "er"}, + CountryToIsoIndex{42054, "er"}, + CountryToIsoIndex{42062, "er"}, + CountryToIsoIndex{42072, "im"}, + CountryToIsoIndex{42085, "sv"}, + CountryToIsoIndex{42094, "ch"}, + CountryToIsoIndex{42103, "af"}, + CountryToIsoIndex{42122, "cf"}, + CountryToIsoIndex{42146, "za"}, + CountryToIsoIndex{42175, "al"}, + CountryToIsoIndex{42190, "dz"}, + CountryToIsoIndex{42205, "as"}, + CountryToIsoIndex{42227, "us"}, + CountryToIsoIndex{42242, "ad"}, + CountryToIsoIndex{42257, "ao"}, + CountryToIsoIndex{42271, "ai"}, + CountryToIsoIndex{42287, "ag"}, + CountryToIsoIndex{42313, "ar"}, + CountryToIsoIndex{42330, "am"}, + CountryToIsoIndex{42345, "aw"}, + CountryToIsoIndex{42358, "au"}, + CountryToIsoIndex{42375, "at"}, + CountryToIsoIndex{42390, "az"}, + CountryToIsoIndex{42408, "bs"}, + CountryToIsoIndex{42423, "bh"}, + CountryToIsoIndex{42438, "bd"}, + CountryToIsoIndex{42456, "bb"}, + CountryToIsoIndex{42472, "by"}, + CountryToIsoIndex{42487, "be"}, + CountryToIsoIndex{42502, "bz"}, + CountryToIsoIndex{42516, "bj"}, + CountryToIsoIndex{42529, "bm"}, + CountryToIsoIndex{42544, "bt"}, + CountryToIsoIndex{42558, "bo"}, + CountryToIsoIndex{42573, "ba"}, + CountryToIsoIndex{42602, "bw"}, + CountryToIsoIndex{42618, "br"}, + CountryToIsoIndex{42632, "bn"}, + CountryToIsoIndex{42646, "bg"}, + CountryToIsoIndex{42662, "bf"}, + CountryToIsoIndex{42682, "bi"}, + CountryToIsoIndex{42697, "kh"}, + CountryToIsoIndex{42713, "cm"}, + CountryToIsoIndex{42729, "ca"}, + CountryToIsoIndex{42743, "td"}, + CountryToIsoIndex{42755, "cl"}, + CountryToIsoIndex{42768, "cn"}, + CountryToIsoIndex{42781, "co"}, + CountryToIsoIndex{42797, "km"}, + CountryToIsoIndex{42812, "cg"}, + CountryToIsoIndex{42839, "cd"}, + CountryToIsoIndex{42863, "cr"}, + CountryToIsoIndex{42881, "hr"}, + CountryToIsoIndex{42896, "cu"}, + CountryToIsoIndex{42908, "cy"}, + CountryToIsoIndex{42922, "cz"}, + CountryToIsoIndex{42944, "ci"}, + CountryToIsoIndex{42968, "dk"}, + CountryToIsoIndex{42983, "dj"}, + CountryToIsoIndex{42999, "dm"}, + CountryToIsoIndex{43015, "do"}, + CountryToIsoIndex{43041, "ec"}, + CountryToIsoIndex{43056, "sv"}, + CountryToIsoIndex{43075, "gq"}, + CountryToIsoIndex{43100, "er"}, + CountryToIsoIndex{43115, "ee"}, + CountryToIsoIndex{43130, "et"}, + CountryToIsoIndex{43146, "fj"}, + CountryToIsoIndex{43158, "fi"}, + CountryToIsoIndex{43173, "fr"}, + CountryToIsoIndex{43187, "ga"}, + CountryToIsoIndex{43200, "gm"}, + CountryToIsoIndex{43214, "ge"}, + CountryToIsoIndex{43229, "de"}, + CountryToIsoIndex{43244, "gh"}, + CountryToIsoIndex{43257, "gi"}, + CountryToIsoIndex{43274, "gr"}, + CountryToIsoIndex{43288, "gl"}, + CountryToIsoIndex{43305, "gd"}, + CountryToIsoIndex{43320, "gp"}, + CountryToIsoIndex{43338, "gu"}, + CountryToIsoIndex{43350, "gt"}, + CountryToIsoIndex{43367, "gf"}, + CountryToIsoIndex{43395, "gn"}, + CountryToIsoIndex{43409, "gw"}, + CountryToIsoIndex{43430, "gy"}, + CountryToIsoIndex{43444, "ht"}, + CountryToIsoIndex{43457, "sh"}, + CountryToIsoIndex{43480, "nl"}, + CountryToIsoIndex{43494, "hn"}, + CountryToIsoIndex{43510, "hu"}, + CountryToIsoIndex{43525, "is"}, + CountryToIsoIndex{43540, "in"}, + CountryToIsoIndex{43553, "id"}, + CountryToIsoIndex{43570, "ir"}, + CountryToIsoIndex{43582, "iq"}, + CountryToIsoIndex{43594, "ie"}, + CountryToIsoIndex{43609, "il"}, + CountryToIsoIndex{43623, "it"}, + CountryToIsoIndex{43636, "jm"}, + CountryToIsoIndex{43651, "jp"}, + CountryToIsoIndex{43664, "jo"}, + CountryToIsoIndex{43678, "kz"}, + CountryToIsoIndex{43696, "ke"}, + CountryToIsoIndex{43709, "ae"}, + CountryToIsoIndex{43738, "gb"}, + CountryToIsoIndex{43770, "ki"}, + CountryToIsoIndex{43786, "kp"}, + CountryToIsoIndex{43816, "kr"}, + CountryToIsoIndex{43844, "kw"}, + CountryToIsoIndex{43858, "kg"}, + CountryToIsoIndex{43876, "la"}, + CountryToIsoIndex{43888, "lv"}, + CountryToIsoIndex{43902, "lb"}, + CountryToIsoIndex{43917, "ls"}, + CountryToIsoIndex{43932, "lr"}, + CountryToIsoIndex{43947, "ly"}, + CountryToIsoIndex{43960, "li"}, + CountryToIsoIndex{43981, "lt"}, + CountryToIsoIndex{43998, "lc"}, + CountryToIsoIndex{44014, "lu"}, + CountryToIsoIndex{44032, "mk"}, + CountryToIsoIndex{44049, "mg"}, + CountryToIsoIndex{44067, "mw"}, + CountryToIsoIndex{44081, "my"}, + CountryToIsoIndex{44097, "mv"}, + CountryToIsoIndex{44113, "ml"}, + CountryToIsoIndex{44125, "mt"}, + CountryToIsoIndex{44138, "mq"}, + CountryToIsoIndex{44156, "mr"}, + CountryToIsoIndex{44174, "mu"}, + CountryToIsoIndex{44191, "yt"}, + CountryToIsoIndex{44206, "mx"}, + CountryToIsoIndex{44220, "fm"}, + CountryToIsoIndex{44238, "eg"}, + CountryToIsoIndex{44252, "md"}, + CountryToIsoIndex{44267, "mc"}, + CountryToIsoIndex{44281, "mn"}, + CountryToIsoIndex{44297, "ms"}, + CountryToIsoIndex{44315, "ma"}, + CountryToIsoIndex{44330, "mz"}, + CountryToIsoIndex{44348, "mm"}, + CountryToIsoIndex{44363, "na"}, + CountryToIsoIndex{44378, "nr"}, + CountryToIsoIndex{44391, "np"}, + CountryToIsoIndex{44404, "nc"}, + CountryToIsoIndex{44425, "nz"}, + CountryToIsoIndex{44444, "ni"}, + CountryToIsoIndex{44461, "ne"}, + CountryToIsoIndex{44474, "ng"}, + CountryToIsoIndex{44489, "nu"}, + CountryToIsoIndex{44501, "no"}, + CountryToIsoIndex{44515, "om"}, + CountryToIsoIndex{44527, "pk"}, + CountryToIsoIndex{44543, "pw"}, + CountryToIsoIndex{44556, "ps"}, + CountryToIsoIndex{44573, "pa"}, + CountryToIsoIndex{44587, "pg"}, + CountryToIsoIndex{44611, "py"}, + CountryToIsoIndex{44627, "pe"}, + CountryToIsoIndex{44639, "pm"}, + CountryToIsoIndex{44673, "ph"}, + CountryToIsoIndex{44692, "pn"}, + CountryToIsoIndex{44708, "pl"}, + CountryToIsoIndex{44722, "pf"}, + CountryToIsoIndex{44753, "pt"}, + CountryToIsoIndex{44769, "pr"}, + CountryToIsoIndex{44788, "qa"}, + CountryToIsoIndex{44801, "ro"}, + CountryToIsoIndex{44816, "ru"}, + CountryToIsoIndex{44830, "rw"}, + CountryToIsoIndex{44844, "re"}, + CountryToIsoIndex{44860, "kn"}, + CountryToIsoIndex{44888, "ws"}, + CountryToIsoIndex{44901, "sm"}, + CountryToIsoIndex{44919, "sa"}, + CountryToIsoIndex{44939, "sn"}, + CountryToIsoIndex{44954, "sc"}, + CountryToIsoIndex{44972, "sl"}, + CountryToIsoIndex{44992, "sg"}, + CountryToIsoIndex{45009, "sk"}, + CountryToIsoIndex{45025, "si"}, + CountryToIsoIndex{45041, "so"}, + CountryToIsoIndex{45056, "es"}, + CountryToIsoIndex{45069, "lk"}, + CountryToIsoIndex{45086, "sd"}, + CountryToIsoIndex{45099, "sr"}, + CountryToIsoIndex{45115, "sz"}, + CountryToIsoIndex{45132, "se"}, + CountryToIsoIndex{45146, "ch"}, + CountryToIsoIndex{45165, "sy"}, + CountryToIsoIndex{45178, "st"}, + CountryToIsoIndex{45210, "tw"}, + CountryToIsoIndex{45224, "tj"}, + CountryToIsoIndex{45242, "tz"}, + CountryToIsoIndex{45258, "th"}, + CountryToIsoIndex{45274, "tl"}, + CountryToIsoIndex{45302, "tg"}, + CountryToIsoIndex{45314, "tk"}, + CountryToIsoIndex{45329, "to"}, + CountryToIsoIndex{45342, "tt"}, + CountryToIsoIndex{45368, "tn"}, + CountryToIsoIndex{45383, "tr"}, + CountryToIsoIndex{45397, "tm"}, + CountryToIsoIndex{45417, "tv"}, + CountryToIsoIndex{45431, "ug"}, + CountryToIsoIndex{45445, "ua"}, + CountryToIsoIndex{45461, "uy"}, + CountryToIsoIndex{45476, "uz"}, + CountryToIsoIndex{45496, "vu"}, + CountryToIsoIndex{45511, "va"}, + CountryToIsoIndex{45526, "ve"}, + CountryToIsoIndex{45543, "vn"}, + CountryToIsoIndex{45558, "vc"}, + CountryToIsoIndex{45595, "wf"}, + CountryToIsoIndex{45618, "ye"}, + CountryToIsoIndex{45631, "zm"}, + CountryToIsoIndex{45645, "zw"}, + CountryToIsoIndex{45661, "ae"}, + CountryToIsoIndex{45676, "ae"}, + CountryToIsoIndex{45700, "ae"}, + CountryToIsoIndex{45725, "ae"}, + CountryToIsoIndex{45749, "ae"}, + CountryToIsoIndex{45771, "ae"}, + CountryToIsoIndex{45793, "ae"}, + CountryToIsoIndex{45820, "ae"}, + CountryToIsoIndex{45840, "ae"}, + CountryToIsoIndex{45864, "ae"}, + CountryToIsoIndex{45889, "ae"}, + CountryToIsoIndex{45909, "ae"}, + CountryToIsoIndex{45930, "ae"}, + CountryToIsoIndex{45939, "ae"}, + CountryToIsoIndex{45965, "ae"}, + CountryToIsoIndex{45986, "ae"}, + CountryToIsoIndex{46010, "ae"}, + CountryToIsoIndex{46032, "in"}, + CountryToIsoIndex{46036, "id"}, + CountryToIsoIndex{46045, "id"}, + CountryToIsoIndex{46055, "in"}, + CountryToIsoIndex{46062, "io"}, + CountryToIsoIndex{46096, "io"}, + CountryToIsoIndex{46134, "ac"}, + CountryToIsoIndex{46149, "bv"}, + CountryToIsoIndex{46161, "cx"}, + CountryToIsoIndex{46176, "cp"}, + CountryToIsoIndex{46192, "nf"}, + CountryToIsoIndex{46205, "pn"}, + CountryToIsoIndex{46219, "im"}, + CountryToIsoIndex{46230, "gb"}, + CountryToIsoIndex{46238, "in"}, + CountryToIsoIndex{46244, "id"}, + CountryToIsoIndex{46255, "ec"}, + CountryToIsoIndex{46263, "gq"}, + CountryToIsoIndex{46282, "gq"}, + CountryToIsoIndex{46300, "gq"}, + CountryToIsoIndex{46319, "gq"}, + CountryToIsoIndex{46335, "gq"}, + CountryToIsoIndex{46352, "er"}, + CountryToIsoIndex{46363, "sv"}, + CountryToIsoIndex{46376, "er"}, + CountryToIsoIndex{46384, "er"}, + CountryToIsoIndex{46393, "er"}, + CountryToIsoIndex{46402, "er"}, + CountryToIsoIndex{46412, "er"}, + CountryToIsoIndex{46422, "er"}, + CountryToIsoIndex{46429, "er"}, + CountryToIsoIndex{46437, "er"}, + CountryToIsoIndex{46452, "er"}, + CountryToIsoIndex{46461, "er"}, + CountryToIsoIndex{46469, "er"}, + CountryToIsoIndex{46478, "er"}, + CountryToIsoIndex{46487, "er"}, + CountryToIsoIndex{46496, "er"}, + CountryToIsoIndex{46504, "er"}, + CountryToIsoIndex{46513, "er"}, + CountryToIsoIndex{46523, "er"}, + CountryToIsoIndex{46533, "er"}, + CountryToIsoIndex{46542, "er"}, + CountryToIsoIndex{46552, "er"}, + CountryToIsoIndex{46562, "am"}, + CountryToIsoIndex{46573, "am"}, + CountryToIsoIndex{46585, "ir"}, + CountryToIsoIndex{46590, "gb"}, + CountryToIsoIndex{46605, "ro"}, + CountryToIsoIndex{46615, "ru"}, + CountryToIsoIndex{46623, "mk"}, + CountryToIsoIndex{46637, "er"}, + CountryToIsoIndex{46645, "er"}, + CountryToIsoIndex{46653, "er"}, + CountryToIsoIndex{46662, "bv"}, + CountryToIsoIndex{46675, "cp"}, + CountryToIsoIndex{46693, "nf"}, + CountryToIsoIndex{46709, "im"}, + CountryToIsoIndex{46723, "ac"}, + CountryToIsoIndex{46749, "cx"}, + CountryToIsoIndex{46768, "ee"}, + CountryToIsoIndex{46776, "ee"}, + CountryToIsoIndex{46785, "es"}, + CountryToIsoIndex{46794, "es"}, + CountryToIsoIndex{46803, "eg"}, + CountryToIsoIndex{46809, "ee"}, + CountryToIsoIndex{46817, "ee"}, + CountryToIsoIndex{46827, "sk"}, + CountryToIsoIndex{46837, "sk"}, + CountryToIsoIndex{46848, "si"}, + CountryToIsoIndex{46858, "sk"}, + CountryToIsoIndex{46870, "sk"}, + CountryToIsoIndex{46882, "si"}, + CountryToIsoIndex{46893, "si"}, + CountryToIsoIndex{46904, "si"}, + CountryToIsoIndex{46915, "sk"}, + CountryToIsoIndex{46924, "si"}, + CountryToIsoIndex{46933, "es"}, + CountryToIsoIndex{46941, "es"}, + CountryToIsoIndex{46950, "es"}, + CountryToIsoIndex{46958, "es"}, + CountryToIsoIndex{46966, "es"}, + CountryToIsoIndex{46975, "es"}, + CountryToIsoIndex{46983, "es"}, + CountryToIsoIndex{46991, "es"}, + CountryToIsoIndex{46999, "es"}, + CountryToIsoIndex{47006, "es"}, + CountryToIsoIndex{47014, "es"}, + CountryToIsoIndex{47024, "es"}, + CountryToIsoIndex{47033, "us"}, + CountryToIsoIndex{47048, "us"}, + CountryToIsoIndex{47075, "ee"}, + CountryToIsoIndex{47086, "us"}, + CountryToIsoIndex{47101, "us"}, + CountryToIsoIndex{47114, "ee"}, + CountryToIsoIndex{47121, "ee"}, + CountryToIsoIndex{47129, "ee"}, + CountryToIsoIndex{47137, "ee"}, + CountryToIsoIndex{47146, "ee"}, + CountryToIsoIndex{47156, "ee"}, + CountryToIsoIndex{47164, "ee"}, + CountryToIsoIndex{47173, "ee"}, + CountryToIsoIndex{47180, "ee"}, + CountryToIsoIndex{47188, "ee"}, + CountryToIsoIndex{47203, "ee"}, + CountryToIsoIndex{47212, "ee"}, + CountryToIsoIndex{47220, "ee"}, + CountryToIsoIndex{47229, "ee"}, + CountryToIsoIndex{47238, "ee"}, + CountryToIsoIndex{47248, "ee"}, + CountryToIsoIndex{47257, "ee"}, + CountryToIsoIndex{47266, "ee"}, + CountryToIsoIndex{47274, "ee"}, + CountryToIsoIndex{47283, "ee"}, + CountryToIsoIndex{47292, "ee"}, + CountryToIsoIndex{47300, "ee"}, + CountryToIsoIndex{47310, "ee"}, + CountryToIsoIndex{47319, "ee"}, + CountryToIsoIndex{47328, "ee"}, + CountryToIsoIndex{47338, "ee"}, + CountryToIsoIndex{47347, "et"}, + CountryToIsoIndex{47355, "sv"}, + CountryToIsoIndex{47365, "eg"}, + CountryToIsoIndex{47372, "me"}, + CountryToIsoIndex{47387, "us"}, + CountryToIsoIndex{47397, "it"}, + CountryToIsoIndex{47404, "us"}, + CountryToIsoIndex{47413, "za"}, + CountryToIsoIndex{47428, "gs"}, + CountryToIsoIndex{47472, "kr"}, + CountryToIsoIndex{47485, "ss"}, + CountryToIsoIndex{47498, "et"}, + CountryToIsoIndex{47507, "et"}, + CountryToIsoIndex{47517, "et"}, + CountryToIsoIndex{47526, "et"}, + CountryToIsoIndex{47536, "et"}, + CountryToIsoIndex{47546, "et"}, + CountryToIsoIndex{47556, "et"}, + CountryToIsoIndex{47567, "ee"}, + CountryToIsoIndex{47576, "kp"}, + CountryToIsoIndex{47588, "et"}, + CountryToIsoIndex{47597, "et"}, + CountryToIsoIndex{47604, "et"}, + CountryToIsoIndex{47612, "et"}, + CountryToIsoIndex{47627, "et"}, + CountryToIsoIndex{47635, "et"}, + CountryToIsoIndex{47644, "et"}, + CountryToIsoIndex{47653, "et"}, + CountryToIsoIndex{47663, "et"}, + CountryToIsoIndex{47672, "et"}, + CountryToIsoIndex{47680, "et"}, + CountryToIsoIndex{47689, "et"}, + CountryToIsoIndex{47698, "et"}, + CountryToIsoIndex{47708, "et"}, + CountryToIsoIndex{47717, "et"}, + CountryToIsoIndex{47726, "et"}, + CountryToIsoIndex{47735, "et"}, + CountryToIsoIndex{47744, "et"}, + CountryToIsoIndex{47753, "us"}, + CountryToIsoIndex{47757, "ez"}, + CountryToIsoIndex{47771, "ez"}, + CountryToIsoIndex{47781, "ez"}, + CountryToIsoIndex{47789, "ez"}, + CountryToIsoIndex{47798, "ez"}, + CountryToIsoIndex{47810, "ez"}, + CountryToIsoIndex{47820, "ez"}, + CountryToIsoIndex{47829, "ez"}, + CountryToIsoIndex{47838, "ez"}, + CountryToIsoIndex{47848, "ez"}, + CountryToIsoIndex{47857, "ez"}, + CountryToIsoIndex{47866, "ez"}, + CountryToIsoIndex{47876, "ez"}, + CountryToIsoIndex{47886, "ez"}, + CountryToIsoIndex{47896, "ez"}, + CountryToIsoIndex{47907, "ez"}, + CountryToIsoIndex{47916, "ez"}, + CountryToIsoIndex{47929, "ez"}, + CountryToIsoIndex{47938, "ez"}, + CountryToIsoIndex{47952, "mk"}, + CountryToIsoIndex{47989, "eg"}, + CountryToIsoIndex{47996, "eg"}, + CountryToIsoIndex{48003, "in"}, + CountryToIsoIndex{48009, "at"}, + CountryToIsoIndex{48021, "tl"}, + CountryToIsoIndex{48033, "ez"}, + CountryToIsoIndex{48036, "eg"}, + CountryToIsoIndex{48044, "eg"}, + CountryToIsoIndex{48053, "il"}, + CountryToIsoIndex{48065, "ir"}, + CountryToIsoIndex{48072, "et"}, + CountryToIsoIndex{48084, "ee"}, + CountryToIsoIndex{48093, "mk"}, + CountryToIsoIndex{48133, "va"}, + CountryToIsoIndex{48143, "fo"}, + CountryToIsoIndex{48160, "fo"}, + CountryToIsoIndex{48169, "af"}, + CountryToIsoIndex{48194, "fr"}, + CountryToIsoIndex{48199, "fr"}, + CountryToIsoIndex{48209, "ps"}, + CountryToIsoIndex{48243, "ps"}, + CountryToIsoIndex{48252, "ps"}, + CountryToIsoIndex{48271, "ps"}, + CountryToIsoIndex{48291, "fk"}, + CountryToIsoIndex{48309, "fk"}, + CountryToIsoIndex{48347, "fk"}, + CountryToIsoIndex{48364, "fk"}, + CountryToIsoIndex{48398, "fk"}, + CountryToIsoIndex{48416, "fk"}, + CountryToIsoIndex{48462, "fk"}, + CountryToIsoIndex{48491, "fk"}, + CountryToIsoIndex{48509, "fk"}, + CountryToIsoIndex{48524, "fk"}, + CountryToIsoIndex{48542, "fk"}, + CountryToIsoIndex{48578, "fk"}, + CountryToIsoIndex{48594, "fk"}, + CountryToIsoIndex{48621, "fk"}, + CountryToIsoIndex{48638, "fk"}, + CountryToIsoIndex{48672, "fk"}, + CountryToIsoIndex{48691, "fk"}, + CountryToIsoIndex{48708, "fk"}, + CountryToIsoIndex{48725, "fk"}, + CountryToIsoIndex{48759, "fk"}, + CountryToIsoIndex{48775, "fk"}, + CountryToIsoIndex{48790, "fk"}, + CountryToIsoIndex{48816, "fk"}, + CountryToIsoIndex{48831, "fk"}, + CountryToIsoIndex{48856, "fk"}, + CountryToIsoIndex{48871, "fk"}, + CountryToIsoIndex{48897, "fk"}, + CountryToIsoIndex{48914, "fk"}, + CountryToIsoIndex{48941, "fk"}, + CountryToIsoIndex{48959, "fk"}, + CountryToIsoIndex{48987, "fk"}, + CountryToIsoIndex{49005, "fk"}, + CountryToIsoIndex{49033, "fk"}, + CountryToIsoIndex{49054, "fk"}, + CountryToIsoIndex{49086, "fk"}, + CountryToIsoIndex{49103, "fk"}, + CountryToIsoIndex{49137, "fk"}, + CountryToIsoIndex{49152, "fk"}, + CountryToIsoIndex{49169, "fk"}, + CountryToIsoIndex{49205, "fk"}, + CountryToIsoIndex{49221, "fk"}, + CountryToIsoIndex{49237, "fk"}, + CountryToIsoIndex{49270, "fk"}, + CountryToIsoIndex{49286, "fk"}, + CountryToIsoIndex{49319, "fk"}, + CountryToIsoIndex{49335, "fk"}, + CountryToIsoIndex{49368, "fk"}, + CountryToIsoIndex{49378, "fk"}, + CountryToIsoIndex{49399, "fk"}, + CountryToIsoIndex{49419, "fk"}, + CountryToIsoIndex{49436, "fk"}, + CountryToIsoIndex{49470, "ae"}, + CountryToIsoIndex{49488, "ae"}, + CountryToIsoIndex{49506, "ae"}, + CountryToIsoIndex{49523, "ae"}, + CountryToIsoIndex{49540, "fr"}, + CountryToIsoIndex{49550, "vu"}, + CountryToIsoIndex{49559, "vu"}, + CountryToIsoIndex{49569, "fr"}, + CountryToIsoIndex{49577, "fr"}, + CountryToIsoIndex{49585, "fr"}, + CountryToIsoIndex{49593, "gf"}, + CountryToIsoIndex{49608, "gf"}, + CountryToIsoIndex{49627, "pf"}, + CountryToIsoIndex{49647, "pf"}, + CountryToIsoIndex{49665, "fr"}, + CountryToIsoIndex{49675, "fr"}, + CountryToIsoIndex{49683, "fo"}, + CountryToIsoIndex{49697, "fo"}, + CountryToIsoIndex{49712, "fo"}, + CountryToIsoIndex{49727, "fo"}, + CountryToIsoIndex{49741, "io"}, + CountryToIsoIndex{49775, "fo"}, + CountryToIsoIndex{49790, "fo"}, + CountryToIsoIndex{49804, "fo"}, + CountryToIsoIndex{49819, "fo"}, + CountryToIsoIndex{49845, "fo"}, + CountryToIsoIndex{49860, "fo"}, + CountryToIsoIndex{49874, "fo"}, + CountryToIsoIndex{49887, "fr"}, + CountryToIsoIndex{49896, "fo"}, + CountryToIsoIndex{49906, "ma"}, + CountryToIsoIndex{49910, "va"}, + CountryToIsoIndex{49921, "fo"}, + CountryToIsoIndex{49932, "fr"}, + CountryToIsoIndex{49941, "ph"}, + CountryToIsoIndex{49951, "ve"}, + CountryToIsoIndex{49963, "ve"}, + CountryToIsoIndex{49975, "fi"}, + CountryToIsoIndex{49983, "us"}, + CountryToIsoIndex{50001, "fo"}, + CountryToIsoIndex{50008, "fo"}, + CountryToIsoIndex{50021, "fo"}, + CountryToIsoIndex{50038, "fr"}, + CountryToIsoIndex{50046, "fj"}, + CountryToIsoIndex{50051, "fj"}, + CountryToIsoIndex{50057, "fj"}, + CountryToIsoIndex{50065, "fj"}, + CountryToIsoIndex{50072, "fj"}, + CountryToIsoIndex{50078, "fj"}, + CountryToIsoIndex{50086, "fj"}, + CountryToIsoIndex{50092, "fj"}, + CountryToIsoIndex{50105, "fj"}, + CountryToIsoIndex{50112, "fj"}, + CountryToIsoIndex{50119, "fj"}, + CountryToIsoIndex{50126, "fj"}, + CountryToIsoIndex{50133, "fj"}, + CountryToIsoIndex{50140, "fj"}, + CountryToIsoIndex{50147, "fj"}, + CountryToIsoIndex{50155, "vn"}, + CountryToIsoIndex{50163, "fj"}, + CountryToIsoIndex{50168, "fk"}, + CountryToIsoIndex{50192, "ck"}, + CountryToIsoIndex{50212, "mp"}, + CountryToIsoIndex{50262, "sb"}, + CountryToIsoIndex{50285, "tc"}, + CountryToIsoIndex{50315, "vi"}, + CountryToIsoIndex{50354, "ky"}, + CountryToIsoIndex{50378, "mh"}, + CountryToIsoIndex{50403, "vg"}, + CountryToIsoIndex{50445, "fj"}, + CountryToIsoIndex{50451, "fj"}, + CountryToIsoIndex{50456, "fj"}, + CountryToIsoIndex{50462, "fj"}, + CountryToIsoIndex{50473, "fj"}, + CountryToIsoIndex{50480, "fj"}, + CountryToIsoIndex{50486, "ci"}, + CountryToIsoIndex{50503, "ci"}, + CountryToIsoIndex{50528, "fi"}, + CountryToIsoIndex{50536, "fi"}, + CountryToIsoIndex{50545, "ci"}, + CountryToIsoIndex{50561, "ph"}, + CountryToIsoIndex{50570, "ph"}, + CountryToIsoIndex{50579, "ph"}, + CountryToIsoIndex{50589, "ph"}, + CountryToIsoIndex{50598, "ph"}, + CountryToIsoIndex{50609, "ph"}, + CountryToIsoIndex{50620, "ph"}, + CountryToIsoIndex{50628, "ph"}, + CountryToIsoIndex{50637, "ph"}, + CountryToIsoIndex{50647, "ph"}, + CountryToIsoIndex{50657, "ph"}, + CountryToIsoIndex{50667, "ph"}, + CountryToIsoIndex{50676, "ph"}, + CountryToIsoIndex{50686, "ph"}, + CountryToIsoIndex{50696, "ph"}, + CountryToIsoIndex{50706, "ph"}, + CountryToIsoIndex{50715, "ph"}, + CountryToIsoIndex{50731, "ph"}, + CountryToIsoIndex{50741, "ph"}, + CountryToIsoIndex{50752, "ph"}, + CountryToIsoIndex{50761, "ph"}, + CountryToIsoIndex{50770, "ph"}, + CountryToIsoIndex{50780, "ph"}, + CountryToIsoIndex{50789, "ph"}, + CountryToIsoIndex{50799, "ph"}, + CountryToIsoIndex{50808, "ph"}, + CountryToIsoIndex{50820, "ph"}, + CountryToIsoIndex{50833, "ph"}, + CountryToIsoIndex{50842, "ph"}, + CountryToIsoIndex{50854, "ph"}, + CountryToIsoIndex{50865, "ph"}, + CountryToIsoIndex{50875, "ph"}, + CountryToIsoIndex{50887, "ph"}, + CountryToIsoIndex{50900, "ph"}, + CountryToIsoIndex{50913, "ph"}, + CountryToIsoIndex{50925, "ph"}, + CountryToIsoIndex{50938, "ph"}, + CountryToIsoIndex{50948, "ph"}, + CountryToIsoIndex{50962, "ph"}, + CountryToIsoIndex{50972, "ph"}, + CountryToIsoIndex{50981, "ph"}, + CountryToIsoIndex{50991, "ph"}, + CountryToIsoIndex{51001, "ph"}, + CountryToIsoIndex{51012, "ph"}, + CountryToIsoIndex{51023, "ps"}, + CountryToIsoIndex{51032, "ps"}, + CountryToIsoIndex{51052, "vg"}, + CountryToIsoIndex{51071, "fi"}, + CountryToIsoIndex{51080, "ph"}, + CountryToIsoIndex{51091, "fi"}, + CountryToIsoIndex{51101, "fi"}, + CountryToIsoIndex{51110, "fi"}, + CountryToIsoIndex{51117, "fi"}, + CountryToIsoIndex{51125, "fi"}, + CountryToIsoIndex{51140, "fi"}, + CountryToIsoIndex{51149, "fi"}, + CountryToIsoIndex{51158, "fi"}, + CountryToIsoIndex{51167, "fi"}, + CountryToIsoIndex{51177, "fi"}, + CountryToIsoIndex{51187, "fi"}, + CountryToIsoIndex{51198, "fi"}, + CountryToIsoIndex{51210, "fi"}, + CountryToIsoIndex{51219, "fi"}, + CountryToIsoIndex{51228, "fi"}, + CountryToIsoIndex{51238, "fi"}, + CountryToIsoIndex{51249, "fi"}, + CountryToIsoIndex{51257, "fi"}, + CountryToIsoIndex{51266, "fi"}, + CountryToIsoIndex{51277, "fi"}, + CountryToIsoIndex{51288, "fi"}, + CountryToIsoIndex{51296, "fi"}, + CountryToIsoIndex{51307, "fi"}, + CountryToIsoIndex{51316, "fi"}, + CountryToIsoIndex{51326, "fi"}, + CountryToIsoIndex{51338, "fi"}, + CountryToIsoIndex{51345, "fi"}, + CountryToIsoIndex{51352, "ve"}, + CountryToIsoIndex{51361, "nc"}, + CountryToIsoIndex{51378, "nz"}, + CountryToIsoIndex{51393, "fi"}, + CountryToIsoIndex{51403, "va"}, + CountryToIsoIndex{51424, "ph"}, + CountryToIsoIndex{51433, "fj"}, + CountryToIsoIndex{51438, "vn"}, + CountryToIsoIndex{51445, "fj"}, + CountryToIsoIndex{51453, "fj"}, + CountryToIsoIndex{51459, "vn"}, + CountryToIsoIndex{51469, "fj"}, + CountryToIsoIndex{51474, "fj"}, + CountryToIsoIndex{51479, "fj"}, + CountryToIsoIndex{51486, "fj"}, + CountryToIsoIndex{51492, "fi"}, + CountryToIsoIndex{51502, "vn"}, + CountryToIsoIndex{51513, "qo"}, + CountryToIsoIndex{51531, "fk"}, + CountryToIsoIndex{51534, "fk"}, + CountryToIsoIndex{51564, "fk"}, + CountryToIsoIndex{51582, "pf"}, + CountryToIsoIndex{51604, "fk"}, + CountryToIsoIndex{51631, "fk"}, + CountryToIsoIndex{51647, "fk"}, + CountryToIsoIndex{51678, "fk"}, + CountryToIsoIndex{51697, "fk"}, + CountryToIsoIndex{51724, "fk"}, + CountryToIsoIndex{51751, "fk"}, + CountryToIsoIndex{51768, "fk"}, + CountryToIsoIndex{51786, "fk"}, + CountryToIsoIndex{51822, "fk"}, + CountryToIsoIndex{51840, "fk"}, + CountryToIsoIndex{51866, "fk"}, + CountryToIsoIndex{51882, "fr"}, + CountryToIsoIndex{51892, "fr"}, + CountryToIsoIndex{51901, "gf"}, + CountryToIsoIndex{51915, "pf"}, + CountryToIsoIndex{51932, "fr"}, + CountryToIsoIndex{51939, "fr"}, + CountryToIsoIndex{51953, "fr"}, + CountryToIsoIndex{51961, "tf"}, + CountryToIsoIndex{51986, "gf"}, + CountryToIsoIndex{52001, "pf"}, + CountryToIsoIndex{52020, "fr"}, + CountryToIsoIndex{52035, "fr"}, + CountryToIsoIndex{52043, "fr"}, + CountryToIsoIndex{52052, "tf"}, + CountryToIsoIndex{52086, "gf"}, + CountryToIsoIndex{52104, "pf"}, + CountryToIsoIndex{52126, "fr"}, + CountryToIsoIndex{52134, "fr"}, + CountryToIsoIndex{52145, "gf"}, + CountryToIsoIndex{52163, "pf"}, + CountryToIsoIndex{52186, "tf"}, + CountryToIsoIndex{52237, "fr"}, + CountryToIsoIndex{52247, "gf"}, + CountryToIsoIndex{52264, "gf"}, + CountryToIsoIndex{52282, "pf"}, + CountryToIsoIndex{52303, "pf"}, + CountryToIsoIndex{52325, "tf"}, + CountryToIsoIndex{52366, "tf"}, + CountryToIsoIndex{52391, "gf"}, + CountryToIsoIndex{52411, "tf"}, + CountryToIsoIndex{52440, "pf"}, + CountryToIsoIndex{52464, "fr"}, + CountryToIsoIndex{52473, "fr"}, + CountryToIsoIndex{52483, "gf"}, + CountryToIsoIndex{52500, "gf"}, + CountryToIsoIndex{52518, "pf"}, + CountryToIsoIndex{52539, "tf"}, + CountryToIsoIndex{52567, "tf"}, + CountryToIsoIndex{52610, "tf"}, + CountryToIsoIndex{52658, "fr"}, + CountryToIsoIndex{52666, "gf"}, + CountryToIsoIndex{52685, "pf"}, + CountryToIsoIndex{52708, "tf"}, + CountryToIsoIndex{52751, "fr"}, + CountryToIsoIndex{52763, "fr"}, + CountryToIsoIndex{52774, "fr"}, + CountryToIsoIndex{52785, "fr"}, + CountryToIsoIndex{52795, "fr"}, + CountryToIsoIndex{52804, "fr"}, + CountryToIsoIndex{52814, "mf"}, + CountryToIsoIndex{52837, "fr"}, + CountryToIsoIndex{52848, "fr"}, + CountryToIsoIndex{52859, "gf"}, + CountryToIsoIndex{52879, "pf"}, + CountryToIsoIndex{52901, "mf"}, + CountryToIsoIndex{52926, "fr"}, + CountryToIsoIndex{52936, "fr"}, + CountryToIsoIndex{52946, "fr"}, + CountryToIsoIndex{52957, "fr"}, + CountryToIsoIndex{52967, "fr"}, + CountryToIsoIndex{52976, "fr"}, + CountryToIsoIndex{52988, "fr"}, + CountryToIsoIndex{52994, "gf"}, + CountryToIsoIndex{53007, "pf"}, + CountryToIsoIndex{53024, "pf"}, + CountryToIsoIndex{53041, "fr"}, + CountryToIsoIndex{53048, "pf"}, + CountryToIsoIndex{53069, "gf"}, + CountryToIsoIndex{53086, "tf"}, + CountryToIsoIndex{53116, "tf"}, + CountryToIsoIndex{53165, "tf"}, + CountryToIsoIndex{53213, "tf"}, + CountryToIsoIndex{53238, "fr"}, + CountryToIsoIndex{53245, "fr"}, + CountryToIsoIndex{53254, "fr"}, + CountryToIsoIndex{53264, "gf"}, + CountryToIsoIndex{53278, "pf"}, + CountryToIsoIndex{53295, "pf"}, + CountryToIsoIndex{53313, "gf"}, + CountryToIsoIndex{53328, "gf"}, + CountryToIsoIndex{53343, "gf"}, + CountryToIsoIndex{53360, "pf"}, + CountryToIsoIndex{53378, "pf"}, + CountryToIsoIndex{53397, "pf"}, + CountryToIsoIndex{53418, "tf"}, + CountryToIsoIndex{53443, "fr"}, + CountryToIsoIndex{53452, "gf"}, + CountryToIsoIndex{53469, "gf"}, + CountryToIsoIndex{53486, "tf"}, + CountryToIsoIndex{53520, "tf"}, + CountryToIsoIndex{53546, "pf"}, + CountryToIsoIndex{53567, "pf"}, + CountryToIsoIndex{53589, "fr"}, + CountryToIsoIndex{53598, "tf"}, + CountryToIsoIndex{53637, "pf"}, + CountryToIsoIndex{53660, "gf"}, + CountryToIsoIndex{53679, "tf"}, + CountryToIsoIndex{53707, "pf"}, + CountryToIsoIndex{53729, "fr"}, + CountryToIsoIndex{53737, "fr"}, + CountryToIsoIndex{53747, "fr"}, + CountryToIsoIndex{53756, "fr"}, + CountryToIsoIndex{53763, "gf"}, + CountryToIsoIndex{53784, "gf"}, + CountryToIsoIndex{53807, "pf"}, + CountryToIsoIndex{53831, "pf"}, + CountryToIsoIndex{53855, "tf"}, + CountryToIsoIndex{53896, "tf"}, + CountryToIsoIndex{53938, "gf"}, + CountryToIsoIndex{53957, "pf"}, + CountryToIsoIndex{53979, "tf"}, + CountryToIsoIndex{54018, "gf"}, + CountryToIsoIndex{54039, "pf"}, + CountryToIsoIndex{54063, "tf"}, + CountryToIsoIndex{54105, "gf"}, + CountryToIsoIndex{54128, "pf"}, + CountryToIsoIndex{54156, "tf"}, + CountryToIsoIndex{54188, "fr"}, + CountryToIsoIndex{54196, "fr"}, + CountryToIsoIndex{54204, "fr"}, + CountryToIsoIndex{54211, "gf"}, + CountryToIsoIndex{54225, "pf"}, + CountryToIsoIndex{54242, "tf"}, + CountryToIsoIndex{54270, "gf"}, + CountryToIsoIndex{54292, "pf"}, + CountryToIsoIndex{54318, "tf"}, + CountryToIsoIndex{54344, "tf"}, + CountryToIsoIndex{54376, "gf"}, + CountryToIsoIndex{54392, "pf"}, + CountryToIsoIndex{54413, "fr"}, + CountryToIsoIndex{54425, "fj"}, + CountryToIsoIndex{54430, "fr"}, + CountryToIsoIndex{54440, "fr"}, + CountryToIsoIndex{54448, "fr"}, + CountryToIsoIndex{54461, "fk"}, + CountryToIsoIndex{54484, "fo"}, + CountryToIsoIndex{54495, "fo"}, + CountryToIsoIndex{54508, "fo"}, + CountryToIsoIndex{54519, "fo"}, + CountryToIsoIndex{54527, "fo"}, + CountryToIsoIndex{54536, "fo"}, + CountryToIsoIndex{54545, "fo"}, + CountryToIsoIndex{54560, "fo"}, + CountryToIsoIndex{54575, "fo"}, + CountryToIsoIndex{54585, "fo"}, + CountryToIsoIndex{54596, "fo"}, + CountryToIsoIndex{54607, "fo"}, + CountryToIsoIndex{54618, "ph"}, + CountryToIsoIndex{54628, "fi"}, + CountryToIsoIndex{54638, "fj"}, + CountryToIsoIndex{54644, "ph"}, + CountryToIsoIndex{54655, "fi"}, + CountryToIsoIndex{54665, "fj"}, + CountryToIsoIndex{54678, "fj"}, + CountryToIsoIndex{54685, "fj"}, + CountryToIsoIndex{54691, "ci"}, + CountryToIsoIndex{54710, "ci"}, + CountryToIsoIndex{54730, "fi"}, + CountryToIsoIndex{54738, "fi"}, + CountryToIsoIndex{54746, "fj"}, + CountryToIsoIndex{54752, "pl"}, + CountryToIsoIndex{54759, "ae"}, + CountryToIsoIndex{54782, "fo"}, + CountryToIsoIndex{54791, "ph"}, + CountryToIsoIndex{54808, "fo"}, + CountryToIsoIndex{54820, "fk"}, + CountryToIsoIndex{54836, "pt"}, + CountryToIsoIndex{54851, "ps"}, + CountryToIsoIndex{54862, "ps"}, + CountryToIsoIndex{54885, "fr"}, + CountryToIsoIndex{54895, "fi"}, + CountryToIsoIndex{54905, "fr"}, + CountryToIsoIndex{54913, "gf"}, + CountryToIsoIndex{54928, "pf"}, + CountryToIsoIndex{54948, "fi"}, + CountryToIsoIndex{54957, "fr"}, + CountryToIsoIndex{54966, "ga"}, + CountryToIsoIndex{54973, "ga"}, + CountryToIsoIndex{54981, "gh"}, + CountryToIsoIndex{54987, "gh"}, + CountryToIsoIndex{54994, "ga"}, + CountryToIsoIndex{55002, "ga"}, + CountryToIsoIndex{55011, "ga"}, + CountryToIsoIndex{55016, "ga"}, + CountryToIsoIndex{55023, "ga"}, + CountryToIsoIndex{55029, "ga"}, + CountryToIsoIndex{55036, "ga"}, + CountryToIsoIndex{55044, "ga"}, + CountryToIsoIndex{55051, "ga"}, + CountryToIsoIndex{55058, "ga"}, + CountryToIsoIndex{55064, "ga"}, + CountryToIsoIndex{55072, "ga"}, + CountryToIsoIndex{55079, "ga"}, + CountryToIsoIndex{55085, "ga"}, + CountryToIsoIndex{55092, "ga"}, + CountryToIsoIndex{55099, "ga"}, + CountryToIsoIndex{55106, "ga"}, + CountryToIsoIndex{55115, "ga"}, + CountryToIsoIndex{55123, "ga"}, + CountryToIsoIndex{55131, "ga"}, + CountryToIsoIndex{55137, "ga"}, + CountryToIsoIndex{55144, "ga"}, + CountryToIsoIndex{55158, "ga"}, + CountryToIsoIndex{55166, "ht"}, + CountryToIsoIndex{55172, "gy"}, + CountryToIsoIndex{55179, "gy"}, + CountryToIsoIndex{55187, "gm"}, + CountryToIsoIndex{55193, "gm"}, + CountryToIsoIndex{55200, "gm"}, + CountryToIsoIndex{55214, "gm"}, + CountryToIsoIndex{55222, "gm"}, + CountryToIsoIndex{55229, "gm"}, + CountryToIsoIndex{55237, "gm"}, + CountryToIsoIndex{55244, "gm"}, + CountryToIsoIndex{55252, "gm"}, + CountryToIsoIndex{55260, "gm"}, + CountryToIsoIndex{55269, "gm"}, + CountryToIsoIndex{55276, "gm"}, + CountryToIsoIndex{55284, "gm"}, + CountryToIsoIndex{55291, "gm"}, + CountryToIsoIndex{55299, "gm"}, + CountryToIsoIndex{55307, "gm"}, + CountryToIsoIndex{55314, "gh"}, + CountryToIsoIndex{55319, "gh"}, + CountryToIsoIndex{55325, "gh"}, + CountryToIsoIndex{55331, "gm"}, + CountryToIsoIndex{55337, "gh"}, + CountryToIsoIndex{55343, "gh"}, + CountryToIsoIndex{55349, "gh"}, + CountryToIsoIndex{55356, "gh"}, + CountryToIsoIndex{55362, "gd"}, + CountryToIsoIndex{55370, "gd"}, + CountryToIsoIndex{55378, "cf"}, + CountryToIsoIndex{55406, "gy"}, + CountryToIsoIndex{55413, "gq"}, + CountryToIsoIndex{55436, "gq"}, + CountryToIsoIndex{55455, "gy"}, + CountryToIsoIndex{55463, "kz"}, + CountryToIsoIndex{55474, "gy"}, + CountryToIsoIndex{55482, "gb"}, + CountryToIsoIndex{55485, "sl"}, + CountryToIsoIndex{55499, "gg"}, + CountryToIsoIndex{55508, "je"}, + CountryToIsoIndex{55516, "gr"}, + CountryToIsoIndex{55523, "gd"}, + CountryToIsoIndex{55533, "ge"}, + CountryToIsoIndex{55542, "ge"}, + CountryToIsoIndex{55550, "gs"}, + CountryToIsoIndex{55596, "gs"}, + CountryToIsoIndex{55638, "gs"}, + CountryToIsoIndex{55682, "gs"}, + CountryToIsoIndex{55718, "gs"}, + CountryToIsoIndex{55763, "ge"}, + CountryToIsoIndex{55778, "gs"}, + CountryToIsoIndex{55821, "gs"}, + CountryToIsoIndex{55861, "ge"}, + CountryToIsoIndex{55870, "ge"}, + CountryToIsoIndex{55878, "ge"}, + CountryToIsoIndex{55887, "ge"}, + CountryToIsoIndex{55897, "ge"}, + CountryToIsoIndex{55906, "ge"}, + CountryToIsoIndex{55915, "ge"}, + CountryToIsoIndex{55924, "gr"}, + CountryToIsoIndex{55931, "gd"}, + CountryToIsoIndex{55940, "de"}, + CountryToIsoIndex{55949, "de"}, + CountryToIsoIndex{55965, "de"}, + CountryToIsoIndex{55975, "de"}, + CountryToIsoIndex{55986, "de"}, + CountryToIsoIndex{55996, "de"}, + CountryToIsoIndex{56004, "gg"}, + CountryToIsoIndex{56012, "gg"}, + CountryToIsoIndex{56020, "gg"}, + CountryToIsoIndex{56027, "gg"}, + CountryToIsoIndex{56035, "gg"}, + CountryToIsoIndex{56042, "gr"}, + CountryToIsoIndex{56050, "gg"}, + CountryToIsoIndex{56062, "ge"}, + CountryToIsoIndex{56071, "ge"}, + CountryToIsoIndex{56080, "qa"}, + CountryToIsoIndex{56087, "gh"}, + CountryToIsoIndex{56093, "gh"}, + CountryToIsoIndex{56106, "gh"}, + CountryToIsoIndex{56113, "gh"}, + CountryToIsoIndex{56120, "jm"}, + CountryToIsoIndex{56129, "gy"}, + CountryToIsoIndex{56135, "gf"}, + CountryToIsoIndex{56150, "jp"}, + CountryToIsoIndex{56159, "jp"}, + CountryToIsoIndex{56166, "gi"}, + CountryToIsoIndex{56177, "gi"}, + CountryToIsoIndex{56187, "gi"}, + CountryToIsoIndex{56204, "gi"}, + CountryToIsoIndex{56216, "gi"}, + CountryToIsoIndex{56227, "gi"}, + CountryToIsoIndex{56239, "gi"}, + CountryToIsoIndex{56251, "gi"}, + CountryToIsoIndex{56261, "gi"}, + CountryToIsoIndex{56272, "dj"}, + CountryToIsoIndex{56279, "gi"}, + CountryToIsoIndex{56289, "gd"}, + CountryToIsoIndex{56298, "gl"}, + CountryToIsoIndex{56310, "gn"}, + CountryToIsoIndex{56315, "gw"}, + CountryToIsoIndex{56327, "gq"}, + CountryToIsoIndex{56343, "gq"}, + CountryToIsoIndex{56361, "gq"}, + CountryToIsoIndex{56375, "gq"}, + CountryToIsoIndex{56391, "gq"}, + CountryToIsoIndex{56406, "gq"}, + CountryToIsoIndex{56421, "gw"}, + CountryToIsoIndex{56434, "gw"}, + CountryToIsoIndex{56449, "gw"}, + CountryToIsoIndex{56460, "gw"}, + CountryToIsoIndex{56472, "gw"}, + CountryToIsoIndex{56483, "gn"}, + CountryToIsoIndex{56489, "gq"}, + CountryToIsoIndex{56509, "gw"}, + CountryToIsoIndex{56522, "gw"}, + CountryToIsoIndex{56535, "gw"}, + CountryToIsoIndex{56545, "gw"}, + CountryToIsoIndex{56556, "gq"}, + CountryToIsoIndex{56577, "gq"}, + CountryToIsoIndex{56594, "gn"}, + CountryToIsoIndex{56601, "gw"}, + CountryToIsoIndex{56615, "gn"}, + CountryToIsoIndex{56622, "gw"}, + CountryToIsoIndex{56636, "gq"}, + CountryToIsoIndex{56646, "gw"}, + CountryToIsoIndex{56660, "gq"}, + CountryToIsoIndex{56680, "gn"}, + CountryToIsoIndex{56685, "gw"}, + CountryToIsoIndex{56698, "gw"}, + CountryToIsoIndex{56709, "gw"}, + CountryToIsoIndex{56720, "gq"}, + CountryToIsoIndex{56733, "gq"}, + CountryToIsoIndex{56757, "pg"}, + CountryToIsoIndex{56779, "gf"}, + CountryToIsoIndex{56795, "gq"}, + CountryToIsoIndex{56811, "gw"}, + CountryToIsoIndex{56822, "gw"}, + CountryToIsoIndex{56834, "gw"}, + CountryToIsoIndex{56852, "gw"}, + CountryToIsoIndex{56864, "gn"}, + CountryToIsoIndex{56870, "gw"}, + CountryToIsoIndex{56885, "gn"}, + CountryToIsoIndex{56891, "gw"}, + CountryToIsoIndex{56904, "gw"}, + CountryToIsoIndex{56917, "gq"}, + CountryToIsoIndex{56931, "gw"}, + CountryToIsoIndex{56943, "gn"}, + CountryToIsoIndex{56950, "gq"}, + CountryToIsoIndex{56971, "gn"}, + CountryToIsoIndex{56977, "gw"}, + CountryToIsoIndex{56988, "gn"}, + CountryToIsoIndex{56996, "gw"}, + CountryToIsoIndex{57012, "gq"}, + CountryToIsoIndex{57033, "gq"}, + CountryToIsoIndex{57052, "gi"}, + CountryToIsoIndex{57064, "jo"}, + CountryToIsoIndex{57074, "gd"}, + CountryToIsoIndex{57085, "gr"}, + CountryToIsoIndex{57092, "gd"}, + CountryToIsoIndex{57103, "gl"}, + CountryToIsoIndex{57117, "gl"}, + CountryToIsoIndex{57128, "gr"}, + CountryToIsoIndex{57134, "gd"}, + CountryToIsoIndex{57142, "gg"}, + CountryToIsoIndex{57150, "gy"}, + CountryToIsoIndex{57157, "gf"}, + CountryToIsoIndex{57172, "gy"}, + CountryToIsoIndex{57178, "gy"}, + CountryToIsoIndex{57185, "gf"}, + CountryToIsoIndex{57204, "gf"}, + CountryToIsoIndex{57225, "jm"}, + CountryToIsoIndex{57235, "jp"}, + CountryToIsoIndex{57242, "ge"}, + CountryToIsoIndex{57251, "ge"}, + CountryToIsoIndex{57261, "de"}, + CountryToIsoIndex{57270, "de"}, + CountryToIsoIndex{57280, "gi"}, + CountryToIsoIndex{57291, "gd"}, + CountryToIsoIndex{57299, "gl"}, + CountryToIsoIndex{57309, "gw"}, + CountryToIsoIndex{57323, "nc"}, + CountryToIsoIndex{57339, "nz"}, + CountryToIsoIndex{57353, "gp"}, + CountryToIsoIndex{57363, "gt"}, + CountryToIsoIndex{57374, "gl"}, + CountryToIsoIndex{57382, "kp"}, + CountryToIsoIndex{57396, "hn"}, + CountryToIsoIndex{57405, "hk"}, + CountryToIsoIndex{57413, "hk"}, + CountryToIsoIndex{57433, "hk"}, + CountryToIsoIndex{57452, "ge"}, + CountryToIsoIndex{57458, "eh"}, + CountryToIsoIndex{57475, "gl"}, + CountryToIsoIndex{57486, "gl"}, + CountryToIsoIndex{57498, "gl"}, + CountryToIsoIndex{57508, "gr"}, + CountryToIsoIndex{57517, "gd"}, + CountryToIsoIndex{57525, "gd"}, + CountryToIsoIndex{57533, "gd"}, + CountryToIsoIndex{57543, "gd"}, + CountryToIsoIndex{57553, "gr"}, + CountryToIsoIndex{57560, "gr"}, + CountryToIsoIndex{57567, "gr"}, + CountryToIsoIndex{57574, "gr"}, + CountryToIsoIndex{57581, "gr"}, + CountryToIsoIndex{57595, "gr"}, + CountryToIsoIndex{57604, "gl"}, + CountryToIsoIndex{57614, "gl"}, + CountryToIsoIndex{57623, "gr"}, + CountryToIsoIndex{57630, "gr"}, + CountryToIsoIndex{57641, "gr"}, + CountryToIsoIndex{57650, "gr"}, + CountryToIsoIndex{57658, "gd"}, + CountryToIsoIndex{57667, "gd"}, + CountryToIsoIndex{57674, "gd"}, + CountryToIsoIndex{57682, "gd"}, + CountryToIsoIndex{57697, "gd"}, + CountryToIsoIndex{57705, "gd"}, + CountryToIsoIndex{57713, "gd"}, + CountryToIsoIndex{57721, "gd"}, + CountryToIsoIndex{57730, "gd"}, + CountryToIsoIndex{57739, "gl"}, + CountryToIsoIndex{57748, "gl"}, + CountryToIsoIndex{57758, "gl"}, + CountryToIsoIndex{57769, "gl"}, + CountryToIsoIndex{57781, "gl"}, + CountryToIsoIndex{57793, "gl"}, + CountryToIsoIndex{57806, "gl"}, + CountryToIsoIndex{57817, "gl"}, + CountryToIsoIndex{57829, "gd"}, + CountryToIsoIndex{57838, "gd"}, + CountryToIsoIndex{57847, "gr"}, + CountryToIsoIndex{57853, "gr"}, + CountryToIsoIndex{57858, "gr"}, + CountryToIsoIndex{57867, "gr"}, + CountryToIsoIndex{57873, "gr"}, + CountryToIsoIndex{57882, "gl"}, + CountryToIsoIndex{57892, "gr"}, + CountryToIsoIndex{57899, "gr"}, + CountryToIsoIndex{57909, "gr"}, + CountryToIsoIndex{57921, "gr"}, + CountryToIsoIndex{57934, "gr"}, + CountryToIsoIndex{57945, "gr"}, + CountryToIsoIndex{57957, "gl"}, + CountryToIsoIndex{57967, "gr"}, + CountryToIsoIndex{57977, "gr"}, + CountryToIsoIndex{57989, "gr"}, + CountryToIsoIndex{57999, "gr"}, + CountryToIsoIndex{58010, "gr"}, + CountryToIsoIndex{58020, "gr"}, + CountryToIsoIndex{58028, "gl"}, + CountryToIsoIndex{58036, "gd"}, + CountryToIsoIndex{58044, "gl"}, + CountryToIsoIndex{58052, "gl"}, + CountryToIsoIndex{58061, "gl"}, + CountryToIsoIndex{58077, "gl"}, + CountryToIsoIndex{58087, "gl"}, + CountryToIsoIndex{58098, "gl"}, + CountryToIsoIndex{58110, "gr"}, + CountryToIsoIndex{58121, "gr"}, + CountryToIsoIndex{58130, "gl"}, + CountryToIsoIndex{58140, "gl"}, + CountryToIsoIndex{58151, "gl"}, + CountryToIsoIndex{58162, "gl"}, + CountryToIsoIndex{58174, "gl"}, + CountryToIsoIndex{58187, "gl"}, + CountryToIsoIndex{58200, "gl"}, + CountryToIsoIndex{58213, "gl"}, + CountryToIsoIndex{58223, "gb"}, + CountryToIsoIndex{58239, "gb"}, + CountryToIsoIndex{58255, "gb"}, + CountryToIsoIndex{58272, "gl"}, + CountryToIsoIndex{58285, "gd"}, + CountryToIsoIndex{58292, "gl"}, + CountryToIsoIndex{58301, "ge"}, + CountryToIsoIndex{58311, "ge"}, + CountryToIsoIndex{58319, "ge"}, + CountryToIsoIndex{58326, "ge"}, + CountryToIsoIndex{58333, "ge"}, + CountryToIsoIndex{58341, "ge"}, + CountryToIsoIndex{58349, "ge"}, + CountryToIsoIndex{58358, "ge"}, + CountryToIsoIndex{58365, "ge"}, + CountryToIsoIndex{58376, "gr"}, + CountryToIsoIndex{58388, "gr"}, + CountryToIsoIndex{58401, "cv"}, + CountryToIsoIndex{58419, "gl"}, + CountryToIsoIndex{58429, "gr"}, + CountryToIsoIndex{58436, "gr"}, + CountryToIsoIndex{58444, "gd"}, + CountryToIsoIndex{58454, "gr"}, + CountryToIsoIndex{58462, "gr"}, + CountryToIsoIndex{58470, "gr"}, + CountryToIsoIndex{58478, "gl"}, + CountryToIsoIndex{58487, "gl"}, + CountryToIsoIndex{58496, "gl"}, + CountryToIsoIndex{58506, "gl"}, + CountryToIsoIndex{58517, "gl"}, + CountryToIsoIndex{58530, "gl"}, + CountryToIsoIndex{58541, "gl"}, + CountryToIsoIndex{58553, "gl"}, + CountryToIsoIndex{58565, "cv"}, + CountryToIsoIndex{58584, "gl"}, + CountryToIsoIndex{58594, "ge"}, + CountryToIsoIndex{58602, "gr"}, + CountryToIsoIndex{58610, "gr"}, + CountryToIsoIndex{58617, "gr"}, + CountryToIsoIndex{58630, "gl"}, + CountryToIsoIndex{58642, "gr"}, + CountryToIsoIndex{58651, "gl"}, + CountryToIsoIndex{58662, "gr"}, + CountryToIsoIndex{58669, "gd"}, + CountryToIsoIndex{58679, "gr"}, + CountryToIsoIndex{58687, "gp"}, + CountryToIsoIndex{58696, "gp"}, + CountryToIsoIndex{58706, "gp"}, + CountryToIsoIndex{58716, "gp"}, + CountryToIsoIndex{58726, "gp"}, + CountryToIsoIndex{58737, "gp"}, + CountryToIsoIndex{58747, "gp"}, + CountryToIsoIndex{58758, "gp"}, + CountryToIsoIndex{58768, "gp"}, + CountryToIsoIndex{58785, "gp"}, + CountryToIsoIndex{58796, "gp"}, + CountryToIsoIndex{58805, "gp"}, + CountryToIsoIndex{58815, "gp"}, + CountryToIsoIndex{58826, "gf"}, + CountryToIsoIndex{58843, "gf"}, + CountryToIsoIndex{58860, "gy"}, + CountryToIsoIndex{58869, "gu"}, + CountryToIsoIndex{58874, "gu"}, + CountryToIsoIndex{58886, "gu"}, + CountryToIsoIndex{58892, "gu"}, + CountryToIsoIndex{58899, "gu"}, + CountryToIsoIndex{58905, "gt"}, + CountryToIsoIndex{58915, "gt"}, + CountryToIsoIndex{58926, "gt"}, + CountryToIsoIndex{58936, "gt"}, + CountryToIsoIndex{58953, "gt"}, + CountryToIsoIndex{58964, "gt"}, + CountryToIsoIndex{58975, "gt"}, + CountryToIsoIndex{58985, "gt"}, + CountryToIsoIndex{58998, "gf"}, + CountryToIsoIndex{59015, "gf"}, + CountryToIsoIndex{59023, "gg"}, + CountryToIsoIndex{59033, "gg"}, + CountryToIsoIndex{59048, "gg"}, + CountryToIsoIndex{59057, "gy"}, + CountryToIsoIndex{59064, "gf"}, + CountryToIsoIndex{59080, "gf"}, + CountryToIsoIndex{59096, "gf"}, + CountryToIsoIndex{59112, "gf"}, + CountryToIsoIndex{59133, "gf"}, + CountryToIsoIndex{59152, "gy"}, + CountryToIsoIndex{59163, "gf"}, + CountryToIsoIndex{59185, "gn"}, + CountryToIsoIndex{59191, "gw"}, + CountryToIsoIndex{59204, "gw"}, + CountryToIsoIndex{59216, "gq"}, + CountryToIsoIndex{59233, "gw"}, + CountryToIsoIndex{59249, "pg"}, + CountryToIsoIndex{59263, "gw"}, + CountryToIsoIndex{59275, "gn"}, + CountryToIsoIndex{59282, "gw"}, + CountryToIsoIndex{59296, "gq"}, + CountryToIsoIndex{59314, "gq"}, + CountryToIsoIndex{59330, "gq"}, + CountryToIsoIndex{59348, "gq"}, + CountryToIsoIndex{59366, "gq"}, + CountryToIsoIndex{59385, "gq"}, + CountryToIsoIndex{59404, "gq"}, + CountryToIsoIndex{59422, "gq"}, + CountryToIsoIndex{59442, "gq"}, + CountryToIsoIndex{59462, "gq"}, + CountryToIsoIndex{59479, "gw"}, + CountryToIsoIndex{59493, "gw"}, + CountryToIsoIndex{59507, "gn"}, + CountryToIsoIndex{59515, "gn"}, + CountryToIsoIndex{59522, "gq"}, + CountryToIsoIndex{59541, "gw"}, + CountryToIsoIndex{59555, "gn"}, + CountryToIsoIndex{59563, "gq"}, + CountryToIsoIndex{59584, "gw"}, + CountryToIsoIndex{59599, "pg"}, + CountryToIsoIndex{59618, "gq"}, + CountryToIsoIndex{59638, "gn"}, + CountryToIsoIndex{59651, "gn"}, + CountryToIsoIndex{59658, "gw"}, + CountryToIsoIndex{59672, "gq"}, + CountryToIsoIndex{59690, "gw"}, + CountryToIsoIndex{59704, "gn"}, + CountryToIsoIndex{59712, "gq"}, + CountryToIsoIndex{59733, "gw"}, + CountryToIsoIndex{59748, "gy"}, + CountryToIsoIndex{59755, "gf"}, + CountryToIsoIndex{59772, "gy"}, + CountryToIsoIndex{59779, "gy"}, + CountryToIsoIndex{59787, "gn"}, + CountryToIsoIndex{59794, "gq"}, + CountryToIsoIndex{59799, "gd"}, + CountryToIsoIndex{59808, "gl"}, + CountryToIsoIndex{59820, "gl"}, + CountryToIsoIndex{59833, "gr"}, + CountryToIsoIndex{59841, "gd"}, + CountryToIsoIndex{59851, "kp"}, + CountryToIsoIndex{59864, "gl"}, + CountryToIsoIndex{59876, "gp"}, + CountryToIsoIndex{59887, "gt"}, + CountryToIsoIndex{59900, "gp"}, + CountryToIsoIndex{59910, "gp"}, + CountryToIsoIndex{59920, "gp"}, + CountryToIsoIndex{59931, "gu"}, + CountryToIsoIndex{59937, "gu"}, + CountryToIsoIndex{59944, "gy"}, + CountryToIsoIndex{59951, "gt"}, + CountryToIsoIndex{59962, "gt"}, + CountryToIsoIndex{59974, "gf"}, + CountryToIsoIndex{59990, "gy"}, + CountryToIsoIndex{59998, "gy"}, + CountryToIsoIndex{60005, "gf"}, + CountryToIsoIndex{60022, "gf"}, + CountryToIsoIndex{60038, "gf"}, + CountryToIsoIndex{60054, "gf"}, + CountryToIsoIndex{60071, "gf"}, + CountryToIsoIndex{60087, "gf"}, + CountryToIsoIndex{60104, "gf"}, + CountryToIsoIndex{60120, "gf"}, + CountryToIsoIndex{60135, "gf"}, + CountryToIsoIndex{60153, "gf"}, + CountryToIsoIndex{60173, "gy"}, + CountryToIsoIndex{60182, "gy"}, + CountryToIsoIndex{60189, "gf"}, + CountryToIsoIndex{60201, "gf"}, + CountryToIsoIndex{60217, "gf"}, + CountryToIsoIndex{60235, "gy"}, + CountryToIsoIndex{60244, "gy"}, + CountryToIsoIndex{60251, "gf"}, + CountryToIsoIndex{60272, "gf"}, + CountryToIsoIndex{60293, "gf"}, + CountryToIsoIndex{60311, "gu"}, + CountryToIsoIndex{60317, "gu"}, + CountryToIsoIndex{60323, "gy"}, + CountryToIsoIndex{60333, "gp"}, + CountryToIsoIndex{60343, "gp"}, + CountryToIsoIndex{60352, "gp"}, + CountryToIsoIndex{60362, "gp"}, + CountryToIsoIndex{60372, "gp"}, + CountryToIsoIndex{60382, "gp"}, + CountryToIsoIndex{60397, "gy"}, + CountryToIsoIndex{60405, "gu"}, + CountryToIsoIndex{60410, "gu"}, + CountryToIsoIndex{60416, "gt"}, + CountryToIsoIndex{60426, "gt"}, + CountryToIsoIndex{60436, "gn"}, + CountryToIsoIndex{60444, "gw"}, + CountryToIsoIndex{60458, "gw"}, + CountryToIsoIndex{60473, "gw"}, + CountryToIsoIndex{60487, "gw"}, + CountryToIsoIndex{60502, "gn"}, + CountryToIsoIndex{60509, "gw"}, + CountryToIsoIndex{60524, "gn"}, + CountryToIsoIndex{60532, "gw"}, + CountryToIsoIndex{60546, "gn"}, + CountryToIsoIndex{60555, "gy"}, + CountryToIsoIndex{60564, "gp"}, + CountryToIsoIndex{60574, "gt"}, + CountryToIsoIndex{60586, "gp"}, + CountryToIsoIndex{60595, "gp"}, + CountryToIsoIndex{60604, "gp"}, + CountryToIsoIndex{60618, "gp"}, + CountryToIsoIndex{60627, "gp"}, + CountryToIsoIndex{60637, "gp"}, + CountryToIsoIndex{60647, "gp"}, + CountryToIsoIndex{60657, "gp"}, + CountryToIsoIndex{60666, "gp"}, + CountryToIsoIndex{60676, "gp"}, + CountryToIsoIndex{60686, "gp"}, + CountryToIsoIndex{60696, "gp"}, + CountryToIsoIndex{60708, "gp"}, + CountryToIsoIndex{60718, "gp"}, + CountryToIsoIndex{60730, "gp"}, + CountryToIsoIndex{60741, "gu"}, + CountryToIsoIndex{60746, "gu"}, + CountryToIsoIndex{60752, "gu"}, + CountryToIsoIndex{60759, "gu"}, + CountryToIsoIndex{60765, "gt"}, + CountryToIsoIndex{60775, "gt"}, + CountryToIsoIndex{60786, "gt"}, + CountryToIsoIndex{60796, "gt"}, + CountryToIsoIndex{60806, "gt"}, + CountryToIsoIndex{60818, "gt"}, + CountryToIsoIndex{60829, "gt"}, + CountryToIsoIndex{60839, "gt"}, + CountryToIsoIndex{60850, "gf"}, + CountryToIsoIndex{60873, "cf"}, + CountryToIsoIndex{60904, "do"}, + CountryToIsoIndex{60925, "cz"}, + CountryToIsoIndex{60943, "gg"}, + CountryToIsoIndex{60953, "gf"}, + CountryToIsoIndex{60968, "gn"}, + CountryToIsoIndex{60975, "gw"}, + CountryToIsoIndex{60989, "gq"}, + CountryToIsoIndex{61007, "gn"}, + CountryToIsoIndex{61016, "gw"}, + CountryToIsoIndex{61031, "gf"}, + CountryToIsoIndex{61049, "gy"}, + CountryToIsoIndex{61057, "gf"}, + CountryToIsoIndex{61075, "gf"}, + CountryToIsoIndex{61095, "gf"}, + CountryToIsoIndex{61115, "gf"}, + CountryToIsoIndex{61136, "gf"}, + CountryToIsoIndex{61157, "gf"}, + CountryToIsoIndex{61176, "gf"}, + CountryToIsoIndex{61191, "gf"}, + CountryToIsoIndex{61217, "be"}, + CountryToIsoIndex{61228, "gr"}, + CountryToIsoIndex{61240, "jo"}, + CountryToIsoIndex{61256, "pl"}, + CountryToIsoIndex{61267, "sz"}, + CountryToIsoIndex{61279, "th"}, + CountryToIsoIndex{61290, "is"}, + CountryToIsoIndex{61303, "gp"}, + CountryToIsoIndex{61315, "gt"}, + CountryToIsoIndex{61328, "gt"}, + CountryToIsoIndex{61343, "gu"}, + CountryToIsoIndex{61349, "gt"}, + CountryToIsoIndex{61361, "de"}, + CountryToIsoIndex{61369, "jm"}, + CountryToIsoIndex{61378, "jm"}, + CountryToIsoIndex{61386, "jp"}, + CountryToIsoIndex{61395, "jp"}, + CountryToIsoIndex{61402, "gi"}, + CountryToIsoIndex{61412, "dj"}, + CountryToIsoIndex{61420, "ge"}, + CountryToIsoIndex{61428, "ge"}, + CountryToIsoIndex{61435, "kg"}, + CountryToIsoIndex{61447, "jo"}, + CountryToIsoIndex{61455, "ge"}, + CountryToIsoIndex{61464, "ga"}, + CountryToIsoIndex{61472, "ga"}, + CountryToIsoIndex{61483, "gm"}, + CountryToIsoIndex{61490, "gm"}, + CountryToIsoIndex{61498, "gm"}, + CountryToIsoIndex{61507, "gh"}, + CountryToIsoIndex{61513, "gf"}, + CountryToIsoIndex{61538, "gh"}, + CountryToIsoIndex{61545, "gm"}, + CountryToIsoIndex{61553, "gh"}, + CountryToIsoIndex{61559, "gm"}, + CountryToIsoIndex{61567, "gg"}, + CountryToIsoIndex{61577, "ge"}, + CountryToIsoIndex{61589, "ge"}, + CountryToIsoIndex{61598, "gs"}, + CountryToIsoIndex{61639, "gi"}, + CountryToIsoIndex{61652, "gw"}, + CountryToIsoIndex{61667, "gq"}, + CountryToIsoIndex{61687, "pg"}, + CountryToIsoIndex{61702, "gn"}, + CountryToIsoIndex{61709, "gi"}, + CountryToIsoIndex{61720, "gn"}, + CountryToIsoIndex{61727, "gw"}, + CountryToIsoIndex{61742, "gq"}, + CountryToIsoIndex{61758, "gn"}, + CountryToIsoIndex{61765, "gw"}, + CountryToIsoIndex{61779, "cx"}, + CountryToIsoIndex{61793, "gr"}, + CountryToIsoIndex{61808, "gy"}, + CountryToIsoIndex{61817, "gf"}, + CountryToIsoIndex{61835, "gu"}, + CountryToIsoIndex{61842, "ss"}, + CountryToIsoIndex{61857, "gy"}, + CountryToIsoIndex{61865, "gf"}, + CountryToIsoIndex{61882, "eh"}, + CountryToIsoIndex{61899, "tl"}, + CountryToIsoIndex{61915, "za"}, + CountryToIsoIndex{61929, "gs"}, + CountryToIsoIndex{61972, "kr"}, + CountryToIsoIndex{61984, "ss"}, + CountryToIsoIndex{61997, "za"}, + CountryToIsoIndex{62013, "gs"}, + CountryToIsoIndex{62059, "kr"}, + CountryToIsoIndex{62076, "ss"}, + CountryToIsoIndex{62091, "ge"}, + CountryToIsoIndex{62102, "ge"}, + CountryToIsoIndex{62114, "gf"}, + CountryToIsoIndex{62136, "gg"}, + CountryToIsoIndex{62146, "cc"}, + CountryToIsoIndex{62171, "ck"}, + CountryToIsoIndex{62185, "mh"}, + CountryToIsoIndex{62203, "pn"}, + CountryToIsoIndex{62221, "bv"}, + CountryToIsoIndex{62235, "nf"}, + CountryToIsoIndex{62250, "gl"}, + CountryToIsoIndex{62266, "gd"}, + CountryToIsoIndex{62279, "gr"}, + CountryToIsoIndex{62289, "gr"}, + CountryToIsoIndex{62298, "ng"}, + CountryToIsoIndex{62309, "gl"}, + CountryToIsoIndex{62322, "gr"}, + CountryToIsoIndex{62332, "gd"}, + CountryToIsoIndex{62346, "eh"}, + CountryToIsoIndex{62369, "et"}, + CountryToIsoIndex{62377, "ht"}, + CountryToIsoIndex{62385, "ht"}, + CountryToIsoIndex{62391, "ht"}, + CountryToIsoIndex{62404, "ht"}, + CountryToIsoIndex{62411, "ht"}, + CountryToIsoIndex{62418, "ht"}, + CountryToIsoIndex{62425, "ht"}, + CountryToIsoIndex{62433, "jm"}, + CountryToIsoIndex{62442, "hu"}, + CountryToIsoIndex{62450, "hu"}, + CountryToIsoIndex{62458, "hu"}, + CountryToIsoIndex{62467, "hu"}, + CountryToIsoIndex{62475, "jp"}, + CountryToIsoIndex{62484, "ht"}, + CountryToIsoIndex{62489, "za"}, + CountryToIsoIndex{62508, "kr"}, + CountryToIsoIndex{62521, "ht"}, + CountryToIsoIndex{62528, "ht"}, + CountryToIsoIndex{62534, "ht"}, + CountryToIsoIndex{62541, "ht"}, + CountryToIsoIndex{62549, "ht"}, + CountryToIsoIndex{62557, "ht"}, + CountryToIsoIndex{62564, "ht"}, + CountryToIsoIndex{62571, "ae"}, + CountryToIsoIndex{62601, "ws"}, + CountryToIsoIndex{62610, "as"}, + CountryToIsoIndex{62629, "ht"}, + CountryToIsoIndex{62639, "hm"}, + CountryToIsoIndex{62664, "hm"}, + CountryToIsoIndex{62698, "hm"}, + CountryToIsoIndex{62724, "hm"}, + CountryToIsoIndex{62752, "hm"}, + CountryToIsoIndex{62785, "hm"}, + CountryToIsoIndex{62811, "hm"}, + CountryToIsoIndex{62838, "hm"}, + CountryToIsoIndex{62878, "hm"}, + CountryToIsoIndex{62903, "hm"}, + CountryToIsoIndex{62927, "hm"}, + CountryToIsoIndex{62952, "hm"}, + CountryToIsoIndex{62978, "hm"}, + CountryToIsoIndex{63005, "hm"}, + CountryToIsoIndex{63031, "hm"}, + CountryToIsoIndex{63056, "hm"}, + CountryToIsoIndex{63084, "hm"}, + CountryToIsoIndex{63111, "hm"}, + CountryToIsoIndex{63146, "hm"}, + CountryToIsoIndex{63177, "hm"}, + CountryToIsoIndex{63204, "hm"}, + CountryToIsoIndex{63242, "hm"}, + CountryToIsoIndex{63276, "hm"}, + CountryToIsoIndex{63309, "hm"}, + CountryToIsoIndex{63337, "hm"}, + CountryToIsoIndex{63365, "hm"}, + CountryToIsoIndex{63403, "kr"}, + CountryToIsoIndex{63414, "ss"}, + CountryToIsoIndex{63425, "za"}, + CountryToIsoIndex{63436, "gs"}, + CountryToIsoIndex{63488, "tf"}, + CountryToIsoIndex{63519, "ps"}, + CountryToIsoIndex{63557, "ht"}, + CountryToIsoIndex{63563, "gr"}, + CountryToIsoIndex{63570, "gr"}, + CountryToIsoIndex{63577, "hu"}, + CountryToIsoIndex{63587, "nl"}, + CountryToIsoIndex{63599, "hm"}, + CountryToIsoIndex{63626, "hm"}, + CountryToIsoIndex{63654, "hm"}, + CountryToIsoIndex{63680, "hm"}, + CountryToIsoIndex{63710, "hm"}, + CountryToIsoIndex{63736, "cn"}, + CountryToIsoIndex{63742, "kp"}, + CountryToIsoIndex{63757, "ac"}, + CountryToIsoIndex{63775, "in"}, + CountryToIsoIndex{63780, "in"}, + CountryToIsoIndex{63790, "in"}, + CountryToIsoIndex{63800, "in"}, + CountryToIsoIndex{63808, "in"}, + CountryToIsoIndex{63816, "hn"}, + CountryToIsoIndex{63825, "es"}, + CountryToIsoIndex{63836, "es"}, + CountryToIsoIndex{63847, "es"}, + CountryToIsoIndex{63857, "es"}, + CountryToIsoIndex{63866, "es"}, + CountryToIsoIndex{63876, "es"}, + CountryToIsoIndex{63886, "es"}, + CountryToIsoIndex{63896, "hm"}, + CountryToIsoIndex{63899, "hu"}, + CountryToIsoIndex{63908, "us"}, + CountryToIsoIndex{63917, "cx"}, + CountryToIsoIndex{63930, "nl"}, + CountryToIsoIndex{63936, "nl"}, + CountryToIsoIndex{63943, "nl"}, + CountryToIsoIndex{63951, "nl"}, + CountryToIsoIndex{63959, "nl"}, + CountryToIsoIndex{63968, "nl"}, + CountryToIsoIndex{63978, "nl"}, + CountryToIsoIndex{63988, "nl"}, + CountryToIsoIndex{63997, "nl"}, + CountryToIsoIndex{64005, "bq"}, + CountryToIsoIndex{64028, "nl"}, + CountryToIsoIndex{64037, "nl"}, + CountryToIsoIndex{64046, "bq"}, + CountryToIsoIndex{64075, "nl"}, + CountryToIsoIndex{64085, "nl"}, + CountryToIsoIndex{64094, "nl"}, + CountryToIsoIndex{64103, "hn"}, + CountryToIsoIndex{64114, "hn"}, + CountryToIsoIndex{64123, "hn"}, + CountryToIsoIndex{64133, "hn"}, + CountryToIsoIndex{64142, "hn"}, + CountryToIsoIndex{64152, "hn"}, + CountryToIsoIndex{64163, "hn"}, + CountryToIsoIndex{64173, "hn"}, + CountryToIsoIndex{64184, "hn"}, + CountryToIsoIndex{64193, "hn"}, + CountryToIsoIndex{64201, "hn"}, + CountryToIsoIndex{64213, "hn"}, + CountryToIsoIndex{64224, "hn"}, + CountryToIsoIndex{64234, "hn"}, + CountryToIsoIndex{64244, "hn"}, + CountryToIsoIndex{64254, "hk"}, + CountryToIsoIndex{64264, "hk"}, + CountryToIsoIndex{64274, "hk"}, + CountryToIsoIndex{64295, "hk"}, + CountryToIsoIndex{64311, "hk"}, + CountryToIsoIndex{64332, "hk"}, + CountryToIsoIndex{64350, "hk"}, + CountryToIsoIndex{64373, "hk"}, + CountryToIsoIndex{64396, "hk"}, + CountryToIsoIndex{64415, "hk"}, + CountryToIsoIndex{64435, "hk"}, + CountryToIsoIndex{64454, "hk"}, + CountryToIsoIndex{64477, "hk"}, + CountryToIsoIndex{64500, "hk"}, + CountryToIsoIndex{64522, "hk"}, + CountryToIsoIndex{64546, "hk"}, + CountryToIsoIndex{64556, "hu"}, + CountryToIsoIndex{64567, "hu"}, + CountryToIsoIndex{64577, "hu"}, + CountryToIsoIndex{64586, "hk"}, + CountryToIsoIndex{64598, "hk"}, + CountryToIsoIndex{64621, "hu"}, + CountryToIsoIndex{64632, "hk"}, + CountryToIsoIndex{64641, "hk"}, + CountryToIsoIndex{64654, "hk"}, + CountryToIsoIndex{64675, "hk"}, + CountryToIsoIndex{64698, "hk"}, + CountryToIsoIndex{64720, "hk"}, + CountryToIsoIndex{64739, "hk"}, + CountryToIsoIndex{64765, "hk"}, + CountryToIsoIndex{64792, "hk"}, + CountryToIsoIndex{64816, "hk"}, + CountryToIsoIndex{64840, "hk"}, + CountryToIsoIndex{64868, "hu"}, + CountryToIsoIndex{64876, "hu"}, + CountryToIsoIndex{64884, "hn"}, + CountryToIsoIndex{64895, "hk"}, + CountryToIsoIndex{64904, "hk"}, + CountryToIsoIndex{64914, "hk"}, + CountryToIsoIndex{64923, "hk"}, + CountryToIsoIndex{64933, "hk"}, + CountryToIsoIndex{64973, "nl"}, + CountryToIsoIndex{64982, "hr"}, + CountryToIsoIndex{64992, "hr"}, + CountryToIsoIndex{65007, "hr"}, + CountryToIsoIndex{65018, "hr"}, + CountryToIsoIndex{65029, "jo"}, + CountryToIsoIndex{65040, "ge"}, + CountryToIsoIndex{65051, "hr"}, + CountryToIsoIndex{65060, "hr"}, + CountryToIsoIndex{65069, "za"}, + CountryToIsoIndex{65091, "af"}, + CountryToIsoIndex{65106, "is"}, + CountryToIsoIndex{65117, "ar"}, + CountryToIsoIndex{65128, "al"}, + CountryToIsoIndex{65138, "dz"}, + CountryToIsoIndex{65148, "aw"}, + CountryToIsoIndex{65156, "am"}, + CountryToIsoIndex{65165, "ad"}, + CountryToIsoIndex{65174, "ao"}, + CountryToIsoIndex{65183, "ai"}, + CountryToIsoIndex{65193, "ag"}, + CountryToIsoIndex{65217, "at"}, + CountryToIsoIndex{65226, "au"}, + CountryToIsoIndex{65238, "ie"}, + CountryToIsoIndex{65249, "az"}, + CountryToIsoIndex{65261, "bb"}, + CountryToIsoIndex{65272, "bh"}, + CountryToIsoIndex{65283, "bs"}, + CountryToIsoIndex{65292, "bd"}, + CountryToIsoIndex{65307, "by"}, + CountryToIsoIndex{65318, "bz"}, + CountryToIsoIndex{65327, "bm"}, + CountryToIsoIndex{65337, "bj"}, + CountryToIsoIndex{65346, "br"}, + CountryToIsoIndex{65356, "bo"}, + CountryToIsoIndex{65366, "ba"}, + CountryToIsoIndex{65392, "bw"}, + CountryToIsoIndex{65404, "bn"}, + CountryToIsoIndex{65413, "bf"}, + CountryToIsoIndex{65426, "mg"}, + CountryToIsoIndex{65435, "bg"}, + CountryToIsoIndex{65446, "bi"}, + CountryToIsoIndex{65456, "bt"}, + CountryToIsoIndex{65465, "td"}, + CountryToIsoIndex{65473, "cl"}, + CountryToIsoIndex{65481, "cn"}, + CountryToIsoIndex{65489, "dk"}, + CountryToIsoIndex{65499, "dm"}, + CountryToIsoIndex{65510, "ec"}, + CountryToIsoIndex{65519, "sv"}, + CountryToIsoIndex{65530, "er"}, + CountryToIsoIndex{65540, "ee"}, + CountryToIsoIndex{65550, "ae"}, + CountryToIsoIndex{65571, "fj"}, + CountryToIsoIndex{65578, "ph"}, + CountryToIsoIndex{65589, "ga"}, + CountryToIsoIndex{65598, "gm"}, + CountryToIsoIndex{65607, "gh"}, + CountryToIsoIndex{65615, "gw"}, + CountryToIsoIndex{65627, "gq"}, + CountryToIsoIndex{65639, "gd"}, + CountryToIsoIndex{65649, "gy"}, + CountryToIsoIndex{65658, "gp"}, + CountryToIsoIndex{65670, "gu"}, + CountryToIsoIndex{65677, "gt"}, + CountryToIsoIndex{65689, "gf"}, + CountryToIsoIndex{65713, "ht"}, + CountryToIsoIndex{65721, "es"}, + CountryToIsoIndex{65732, "hn"}, + CountryToIsoIndex{65744, "hu"}, + CountryToIsoIndex{65755, "iq"}, + CountryToIsoIndex{65763, "in"}, + CountryToIsoIndex{65771, "id"}, + CountryToIsoIndex{65783, "sj"}, + CountryToIsoIndex{65809, "il"}, + CountryToIsoIndex{65820, "it"}, + CountryToIsoIndex{65829, "jm"}, + CountryToIsoIndex{65839, "jp"}, + CountryToIsoIndex{65848, "gi"}, + CountryToIsoIndex{65859, "dj"}, + CountryToIsoIndex{65868, "gn"}, + CountryToIsoIndex{65875, "gl"}, + CountryToIsoIndex{65886, "ge"}, + CountryToIsoIndex{65894, "kh"}, + CountryToIsoIndex{65905, "cm"}, + CountryToIsoIndex{65916, "ca"}, + CountryToIsoIndex{65925, "qa"}, + CountryToIsoIndex{65934, "kz"}, + CountryToIsoIndex{65948, "ke"}, + CountryToIsoIndex{65956, "cv"}, + CountryToIsoIndex{65967, "ki"}, + CountryToIsoIndex{65978, "kg"}, + CountryToIsoIndex{65994, "ci"}, + CountryToIsoIndex{66004, "kp"}, + CountryToIsoIndex{66022, "kr"}, + CountryToIsoIndex{66037, "co"}, + CountryToIsoIndex{66048, "km"}, + CountryToIsoIndex{66057, "cg"}, + CountryToIsoIndex{66065, "hr"}, + CountryToIsoIndex{66075, "cr"}, + CountryToIsoIndex{66087, "cu"}, + CountryToIsoIndex{66094, "cy"}, + CountryToIsoIndex{66104, "kw"}, + CountryToIsoIndex{66114, "bq"}, + CountryToIsoIndex{66133, "nl"}, + CountryToIsoIndex{66141, "nl"}, + CountryToIsoIndex{66151, "la"}, + CountryToIsoIndex{66159, "lu"}, + CountryToIsoIndex{66171, "lv"}, + CountryToIsoIndex{66181, "lb"}, + CountryToIsoIndex{66192, "ls"}, + CountryToIsoIndex{66201, "lr"}, + CountryToIsoIndex{66211, "ly"}, + CountryToIsoIndex{66220, "li"}, + CountryToIsoIndex{66233, "lt"}, + CountryToIsoIndex{66244, "re"}, + CountryToIsoIndex{66256, "ro"}, + CountryToIsoIndex{66266, "rw"}, + CountryToIsoIndex{66275, "mw"}, + CountryToIsoIndex{66284, "us"}, + CountryToIsoIndex{66295, "my"}, + CountryToIsoIndex{66305, "ml"}, + CountryToIsoIndex{66312, "mt"}, + CountryToIsoIndex{66320, "mq"}, + CountryToIsoIndex{66332, "mk"}, + CountryToIsoIndex{66344, "yt"}, + CountryToIsoIndex{66354, "mx"}, + CountryToIsoIndex{66364, "fm"}, + CountryToIsoIndex{66377, "eg"}, + CountryToIsoIndex{66385, "mv"}, + CountryToIsoIndex{66394, "md"}, + CountryToIsoIndex{66404, "mu"}, + CountryToIsoIndex{66413, "mr"}, + CountryToIsoIndex{66425, "ma"}, + CountryToIsoIndex{66434, "mc"}, + CountryToIsoIndex{66443, "mn"}, + CountryToIsoIndex{66454, "ms"}, + CountryToIsoIndex{66468, "mz"}, + CountryToIsoIndex{66480, "mm"}, + CountryToIsoIndex{66488, "na"}, + CountryToIsoIndex{66498, "nr"}, + CountryToIsoIndex{66506, "hn"}, + CountryToIsoIndex{66515, "hn"}, + CountryToIsoIndex{66525, "np"}, + CountryToIsoIndex{66534, "hk"}, + CountryToIsoIndex{66544, "hu"}, + CountryToIsoIndex{66553, "hu"}, + CountryToIsoIndex{66564, "hu"}, + CountryToIsoIndex{66573, "hu"}, + CountryToIsoIndex{66583, "hu"}, + CountryToIsoIndex{66591, "hu"}, + CountryToIsoIndex{66606, "hu"}, + CountryToIsoIndex{66615, "hu"}, + CountryToIsoIndex{66625, "hu"}, + CountryToIsoIndex{66635, "hu"}, + CountryToIsoIndex{66643, "hu"}, + CountryToIsoIndex{66653, "hu"}, + CountryToIsoIndex{66660, "hu"}, + CountryToIsoIndex{66668, "hu"}, + CountryToIsoIndex{66677, "hu"}, + CountryToIsoIndex{66686, "hu"}, + CountryToIsoIndex{66696, "ne"}, + CountryToIsoIndex{66705, "ng"}, + CountryToIsoIndex{66715, "ni"}, + CountryToIsoIndex{66727, "nu"}, + CountryToIsoIndex{66734, "no"}, + CountryToIsoIndex{66742, "nc"}, + CountryToIsoIndex{66757, "nz"}, + CountryToIsoIndex{66770, "om"}, + CountryToIsoIndex{66778, "pk"}, + CountryToIsoIndex{66790, "py"}, + CountryToIsoIndex{66801, "pw"}, + CountryToIsoIndex{66809, "pa"}, + CountryToIsoIndex{66818, "pg"}, + CountryToIsoIndex{66826, "pe"}, + CountryToIsoIndex{66833, "pn"}, + CountryToIsoIndex{66844, "pl"}, + CountryToIsoIndex{66854, "pf"}, + CountryToIsoIndex{66880, "pr"}, + CountryToIsoIndex{66892, "sm"}, + CountryToIsoIndex{66903, "ws"}, + CountryToIsoIndex{66911, "as"}, + CountryToIsoIndex{66933, "sh"}, + CountryToIsoIndex{66947, "kn"}, + CountryToIsoIndex{66971, "lc"}, + CountryToIsoIndex{66984, "pm"}, + CountryToIsoIndex{67011, "vc"}, + CountryToIsoIndex{67041, "st"}, + CountryToIsoIndex{67065, "sa"}, + CountryToIsoIndex{67073, "sn"}, + CountryToIsoIndex{67084, "sc"}, + CountryToIsoIndex{67097, "sl"}, + CountryToIsoIndex{67111, "sy"}, + CountryToIsoIndex{67119, "sg"}, + CountryToIsoIndex{67130, "lk"}, + CountryToIsoIndex{67142, "sk"}, + CountryToIsoIndex{67153, "si"}, + CountryToIsoIndex{67164, "so"}, + CountryToIsoIndex{67174, "sd"}, + CountryToIsoIndex{67183, "sr"}, + CountryToIsoIndex{67194, "th"}, + CountryToIsoIndex{67205, "tw"}, + CountryToIsoIndex{67215, "tj"}, + CountryToIsoIndex{67229, "tz"}, + CountryToIsoIndex{67240, "tl"}, + CountryToIsoIndex{67262, "tg"}, + CountryToIsoIndex{67269, "tk"}, + CountryToIsoIndex{67279, "to"}, + CountryToIsoIndex{67287, "tt"}, + CountryToIsoIndex{67308, "tn"}, + CountryToIsoIndex{67318, "tv"}, + CountryToIsoIndex{67327, "ir"}, + CountryToIsoIndex{67336, "be"}, + CountryToIsoIndex{67347, "fr"}, + CountryToIsoIndex{67358, "fi"}, + CountryToIsoIndex{67366, "ug"}, + CountryToIsoIndex{67375, "gr"}, + CountryToIsoIndex{67385, "et"}, + CountryToIsoIndex{67396, "nl"}, + CountryToIsoIndex{67407, "gb"}, + CountryToIsoIndex{67419, "de"}, + CountryToIsoIndex{67431, "ua"}, + CountryToIsoIndex{67441, "pt"}, + CountryToIsoIndex{67449, "uy"}, + CountryToIsoIndex{67459, "ru"}, + CountryToIsoIndex{67467, "sz"}, + CountryToIsoIndex{67476, "se"}, + CountryToIsoIndex{67485, "ch"}, + CountryToIsoIndex{67494, "tr"}, + CountryToIsoIndex{67504, "tm"}, + CountryToIsoIndex{67523, "uz"}, + CountryToIsoIndex{67538, "vu"}, + CountryToIsoIndex{67548, "va"}, + CountryToIsoIndex{67559, "ve"}, + CountryToIsoIndex{67571, "vn"}, + CountryToIsoIndex{67583, "wf"}, + CountryToIsoIndex{67603, "ye"}, + CountryToIsoIndex{67612, "jo"}, + CountryToIsoIndex{67623, "zm"}, + CountryToIsoIndex{67632, "zw"}, + CountryToIsoIndex{67643, "by"}, + CountryToIsoIndex{67656, "by"}, + CountryToIsoIndex{67670, "by"}, + CountryToIsoIndex{67684, "by"}, + CountryToIsoIndex{67701, "by"}, + CountryToIsoIndex{67716, "hu"}, + CountryToIsoIndex{67724, "gr"}, + CountryToIsoIndex{67733, "cn"}, + CountryToIsoIndex{67740, "nl"}, + CountryToIsoIndex{67748, "kr"}, + CountryToIsoIndex{67760, "ht"}, + CountryToIsoIndex{67767, "ht"}, + CountryToIsoIndex{67776, "hm"}, + CountryToIsoIndex{67806, "hm"}, + CountryToIsoIndex{67838, "hr"}, + CountryToIsoIndex{67851, "nl"}, + CountryToIsoIndex{67859, "hn"}, + CountryToIsoIndex{67869, "ht"}, + CountryToIsoIndex{67877, "hn"}, + CountryToIsoIndex{67888, "hn"}, + CountryToIsoIndex{67899, "hn"}, + CountryToIsoIndex{67908, "hn"}, + CountryToIsoIndex{67918, "hk"}, + CountryToIsoIndex{67937, "hk"}, + CountryToIsoIndex{67967, "hu"}, + CountryToIsoIndex{67975, "hu"}, + CountryToIsoIndex{67987, "hu"}, + CountryToIsoIndex{67998, "gr"}, + CountryToIsoIndex{68007, "hk"}, + CountryToIsoIndex{68020, "hk"}, + CountryToIsoIndex{68047, "af"}, + CountryToIsoIndex{68061, "al"}, + CountryToIsoIndex{68071, "dz"}, + CountryToIsoIndex{68081, "as"}, + CountryToIsoIndex{68098, "ad"}, + CountryToIsoIndex{68108, "ao"}, + CountryToIsoIndex{68117, "ai"}, + CountryToIsoIndex{68128, "aq"}, + CountryToIsoIndex{68141, "ag"}, + CountryToIsoIndex{68162, "ar"}, + CountryToIsoIndex{68174, "am"}, + CountryToIsoIndex{68184, "aw"}, + CountryToIsoIndex{68192, "ac"}, + CountryToIsoIndex{68211, "au"}, + CountryToIsoIndex{68223, "at"}, + CountryToIsoIndex{68233, "az"}, + CountryToIsoIndex{68246, "bs"}, + CountryToIsoIndex{68256, "bh"}, + CountryToIsoIndex{68266, "bd"}, + CountryToIsoIndex{68279, "bb"}, + CountryToIsoIndex{68290, "by"}, + CountryToIsoIndex{68300, "be"}, + CountryToIsoIndex{68310, "bz"}, + CountryToIsoIndex{68319, "bj"}, + CountryToIsoIndex{68327, "bm"}, + CountryToIsoIndex{68337, "bt"}, + CountryToIsoIndex{68346, "bo"}, + CountryToIsoIndex{68356, "ba"}, + CountryToIsoIndex{68380, "bv"}, + CountryToIsoIndex{68396, "br"}, + CountryToIsoIndex{68405, "io"}, + CountryToIsoIndex{68438, "vg"}, + CountryToIsoIndex{68463, "bn"}, + CountryToIsoIndex{68472, "bg"}, + CountryToIsoIndex{68483, "bf"}, + CountryToIsoIndex{68498, "bi"}, + CountryToIsoIndex{68508, "kh"}, + CountryToIsoIndex{68519, "cm"}, + CountryToIsoIndex{68530, "ca"}, + CountryToIsoIndex{68539, "ic"}, + CountryToIsoIndex{68556, "cv"}, + CountryToIsoIndex{68569, "bq"}, + CountryToIsoIndex{68593, "ky"}, + CountryToIsoIndex{68610, "cf"}, + CountryToIsoIndex{68637, "td"}, + CountryToIsoIndex{68644, "cl"}, + CountryToIsoIndex{68652, "cn"}, + CountryToIsoIndex{68660, "cx"}, + CountryToIsoIndex{68679, "cp"}, + CountryToIsoIndex{68699, "cc"}, + CountryToIsoIndex{68725, "co"}, + CountryToIsoIndex{68736, "km"}, + CountryToIsoIndex{68746, "cd"}, + CountryToIsoIndex{68760, "cg"}, + CountryToIsoIndex{68779, "cg"}, + CountryToIsoIndex{68801, "cd"}, + CountryToIsoIndex{68820, "ck"}, + CountryToIsoIndex{68835, "cr"}, + CountryToIsoIndex{68848, "hr"}, + CountryToIsoIndex{68858, "cu"}, + CountryToIsoIndex{68865, "ea"}, + CountryToIsoIndex{68884, "cw"}, + CountryToIsoIndex{68895, "cy"}, + CountryToIsoIndex{68904, "cz"}, + CountryToIsoIndex{68921, "cz"}, + CountryToIsoIndex{68931, "ci"}, + CountryToIsoIndex{68950, "dk"}, + CountryToIsoIndex{68960, "dg"}, + CountryToIsoIndex{68975, "dj"}, + CountryToIsoIndex{68986, "dm"}, + CountryToIsoIndex{68997, "do"}, + CountryToIsoIndex{69018, "tl"}, + CountryToIsoIndex{69031, "ec"}, + CountryToIsoIndex{69041, "eg"}, + CountryToIsoIndex{69049, "sv"}, + CountryToIsoIndex{69063, "gq"}, + CountryToIsoIndex{69083, "er"}, + CountryToIsoIndex{69093, "ee"}, + CountryToIsoIndex{69103, "et"}, + CountryToIsoIndex{69114, "fk"}, + CountryToIsoIndex{69133, "fk"}, + CountryToIsoIndex{69169, "fo"}, + CountryToIsoIndex{69185, "fj"}, + CountryToIsoIndex{69192, "fi"}, + CountryToIsoIndex{69202, "fr"}, + CountryToIsoIndex{69211, "gf"}, + CountryToIsoIndex{69227, "pf"}, + CountryToIsoIndex{69246, "tf"}, + CountryToIsoIndex{69276, "ga"}, + CountryToIsoIndex{69284, "gm"}, + CountryToIsoIndex{69293, "ge"}, + CountryToIsoIndex{69303, "de"}, + CountryToIsoIndex{69313, "gh"}, + CountryToIsoIndex{69321, "gi"}, + CountryToIsoIndex{69333, "gr"}, + CountryToIsoIndex{69342, "gl"}, + CountryToIsoIndex{69354, "gd"}, + CountryToIsoIndex{69364, "gp"}, + CountryToIsoIndex{69377, "gu"}, + CountryToIsoIndex{69384, "gt"}, + CountryToIsoIndex{69396, "gg"}, + CountryToIsoIndex{69407, "gn"}, + CountryToIsoIndex{69416, "gw"}, + CountryToIsoIndex{69432, "gy"}, + CountryToIsoIndex{69441, "ht"}, + CountryToIsoIndex{69449, "hm"}, + CountryToIsoIndex{69484, "hn"}, + CountryToIsoIndex{69495, "hk"}, + CountryToIsoIndex{69507, "hk"}, + CountryToIsoIndex{69529, "hu"}, + CountryToIsoIndex{69539, "is"}, + CountryToIsoIndex{69549, "in"}, + CountryToIsoIndex{69557, "id"}, + CountryToIsoIndex{69569, "ir"}, + CountryToIsoIndex{69576, "iq"}, + CountryToIsoIndex{69583, "ie"}, + CountryToIsoIndex{69593, "im"}, + CountryToIsoIndex{69607, "it"}, + CountryToIsoIndex{69615, "ci"}, + CountryToIsoIndex{69629, "jm"}, + CountryToIsoIndex{69639, "jp"}, + CountryToIsoIndex{69647, "je"}, + CountryToIsoIndex{69656, "jo"}, + CountryToIsoIndex{69665, "kz"}, + CountryToIsoIndex{69678, "ke"}, + CountryToIsoIndex{69686, "ki"}, + CountryToIsoIndex{69697, "xk"}, + CountryToIsoIndex{69706, "kw"}, + CountryToIsoIndex{69715, "kg"}, + CountryToIsoIndex{69728, "la"}, + CountryToIsoIndex{69735, "lv"}, + CountryToIsoIndex{69744, "lb"}, + CountryToIsoIndex{69754, "lr"}, + CountryToIsoIndex{69764, "ly"}, + CountryToIsoIndex{69772, "li"}, + CountryToIsoIndex{69788, "lt"}, + CountryToIsoIndex{69800, "lu"}, + CountryToIsoIndex{69813, "mo"}, + CountryToIsoIndex{69821, "mo"}, + CountryToIsoIndex{69839, "mk"}, + CountryToIsoIndex{69851, "mk"}, + CountryToIsoIndex{69871, "mg"}, + CountryToIsoIndex{69884, "my"}, + CountryToIsoIndex{69895, "mv"}, + CountryToIsoIndex{69906, "mt"}, + CountryToIsoIndex{69914, "mh"}, + CountryToIsoIndex{69933, "mq"}, + CountryToIsoIndex{69946, "mr"}, + CountryToIsoIndex{69959, "mu"}, + CountryToIsoIndex{69971, "yt"}, + CountryToIsoIndex{69981, "mx"}, + CountryToIsoIndex{69990, "fm"}, + CountryToIsoIndex{70003, "md"}, + CountryToIsoIndex{70013, "mc"}, + CountryToIsoIndex{70022, "mn"}, + CountryToIsoIndex{70033, "me"}, + CountryToIsoIndex{70046, "ms"}, + CountryToIsoIndex{70059, "ma"}, + CountryToIsoIndex{70069, "mz"}, + CountryToIsoIndex{70082, "mm"}, + CountryToIsoIndex{70100, "na"}, + CountryToIsoIndex{70110, "nr"}, + CountryToIsoIndex{70118, "np"}, + CountryToIsoIndex{70126, "nl"}, + CountryToIsoIndex{70140, "nc"}, + CountryToIsoIndex{70156, "nz"}, + CountryToIsoIndex{70170, "ni"}, + CountryToIsoIndex{70182, "ne"}, + CountryToIsoIndex{70190, "ng"}, + CountryToIsoIndex{70200, "nu"}, + CountryToIsoIndex{70207, "nf"}, + CountryToIsoIndex{70224, "kp"}, + CountryToIsoIndex{70238, "mp"}, + CountryToIsoIndex{70265, "no"}, + CountryToIsoIndex{70274, "om"}, + CountryToIsoIndex{70281, "qo"}, + CountryToIsoIndex{70300, "pk"}, + CountryToIsoIndex{70311, "pw"}, + CountryToIsoIndex{70319, "ps"}, + CountryToIsoIndex{70331, "ps"}, + CountryToIsoIndex{70357, "pa"}, + CountryToIsoIndex{70366, "pg"}, + CountryToIsoIndex{70385, "py"}, + CountryToIsoIndex{70396, "pe"}, + CountryToIsoIndex{70403, "ph"}, + CountryToIsoIndex{70417, "pn"}, + CountryToIsoIndex{70436, "pl"}, + CountryToIsoIndex{70445, "pt"}, + CountryToIsoIndex{70456, "pr"}, + CountryToIsoIndex{70470, "qa"}, + CountryToIsoIndex{70478, "ro"}, + CountryToIsoIndex{70488, "ru"}, + CountryToIsoIndex{70497, "rw"}, + CountryToIsoIndex{70506, "re"}, + CountryToIsoIndex{70517, "bl"}, + CountryToIsoIndex{70537, "kn"}, + CountryToIsoIndex{70560, "lc"}, + CountryToIsoIndex{70574, "mf"}, + CountryToIsoIndex{70589, "pm"}, + CountryToIsoIndex{70622, "vc"}, + CountryToIsoIndex{70652, "ws"}, + CountryToIsoIndex{70660, "sm"}, + CountryToIsoIndex{70673, "sa"}, + CountryToIsoIndex{70688, "sn"}, + CountryToIsoIndex{70698, "rs"}, + CountryToIsoIndex{70707, "sc"}, + CountryToIsoIndex{70720, "sl"}, + CountryToIsoIndex{70735, "sg"}, + CountryToIsoIndex{70747, "sx"}, + CountryToIsoIndex{70762, "sk"}, + CountryToIsoIndex{70773, "si"}, + CountryToIsoIndex{70784, "sb"}, + CountryToIsoIndex{70802, "so"}, + CountryToIsoIndex{70812, "gs"}, + CountryToIsoIndex{70854, "kr"}, + CountryToIsoIndex{70868, "ss"}, + CountryToIsoIndex{70882, "es"}, + CountryToIsoIndex{70890, "lk"}, + CountryToIsoIndex{70902, "sh"}, + CountryToIsoIndex{70915, "sd"}, + CountryToIsoIndex{70923, "sr"}, + CountryToIsoIndex{70934, "sj"}, + CountryToIsoIndex{70958, "sz"}, + CountryToIsoIndex{70970, "se"}, + CountryToIsoIndex{70979, "ch"}, + CountryToIsoIndex{70993, "sy"}, + CountryToIsoIndex{71001, "st"}, + CountryToIsoIndex{71033, "tw"}, + CountryToIsoIndex{71042, "tj"}, + CountryToIsoIndex{71055, "tz"}, + CountryToIsoIndex{71066, "th"}, + CountryToIsoIndex{71077, "tl"}, + CountryToIsoIndex{71091, "tg"}, + CountryToIsoIndex{71098, "tk"}, + CountryToIsoIndex{71108, "to"}, + CountryToIsoIndex{71116, "tt"}, + CountryToIsoIndex{71137, "ta"}, + CountryToIsoIndex{71156, "tn"}, + CountryToIsoIndex{71166, "tr"}, + CountryToIsoIndex{71175, "tm"}, + CountryToIsoIndex{71190, "tc"}, + CountryToIsoIndex{71216, "tv"}, + CountryToIsoIndex{71225, "gb"}, + CountryToIsoIndex{71232, "us"}, + CountryToIsoIndex{71238, "um"}, + CountryToIsoIndex{71268, "vi"}, + CountryToIsoIndex{71290, "ug"}, + CountryToIsoIndex{71299, "ua"}, + CountryToIsoIndex{71309, "ae"}, + CountryToIsoIndex{71332, "gb"}, + CountryToIsoIndex{71349, "us"}, + CountryToIsoIndex{71365, "uy"}, + CountryToIsoIndex{71375, "uz"}, + CountryToIsoIndex{71388, "vu"}, + CountryToIsoIndex{71398, "va"}, + CountryToIsoIndex{71413, "ve"}, + CountryToIsoIndex{71425, "vn"}, + CountryToIsoIndex{71435, "wf"}, + CountryToIsoIndex{71454, "eh"}, + CountryToIsoIndex{71471, "ye"}, + CountryToIsoIndex{71479, "zm"}, + CountryToIsoIndex{71488, "ax"}, + CountryToIsoIndex{71505, "jm"}, + CountryToIsoIndex{71514, "cv"}, + CountryToIsoIndex{71534, "ky"}, + CountryToIsoIndex{71554, "vg"}, + CountryToIsoIndex{71588, "bw"}, + CountryToIsoIndex{71598, "is"}, + CountryToIsoIndex{71606, "dk"}, + CountryToIsoIndex{71619, "tl"}, + CountryToIsoIndex{71629, "ye"}, + CountryToIsoIndex{71635, "ye"}, + CountryToIsoIndex{71642, "io"}, + CountryToIsoIndex{71682, "ie"}, + CountryToIsoIndex{71690, "ie"}, + CountryToIsoIndex{71698, "is"}, + CountryToIsoIndex{71706, "fk"}, + CountryToIsoIndex{71727, "ky"}, + CountryToIsoIndex{71746, "ck"}, + CountryToIsoIndex{71763, "mp"}, + CountryToIsoIndex{71799, "mh"}, + CountryToIsoIndex{71819, "sb"}, + CountryToIsoIndex{71839, "tc"}, + CountryToIsoIndex{71866, "vg"}, + CountryToIsoIndex{71900, "vi"}, + CountryToIsoIndex{71934, "ee"}, + CountryToIsoIndex{71943, "nf"}, + CountryToIsoIndex{71962, "ir"}, + CountryToIsoIndex{71969, "ie"}, + CountryToIsoIndex{71977, "is"}, + CountryToIsoIndex{71986, "is"}, + CountryToIsoIndex{71994, "il"}, + CountryToIsoIndex{72002, "cf"}, + CountryToIsoIndex{72031, "cz"}, + CountryToIsoIndex{72049, "cd"}, + CountryToIsoIndex{72084, "do"}, + CountryToIsoIndex{72107, "is"}, + CountryToIsoIndex{72115, "ua"}, + CountryToIsoIndex{72122, "ua"}, + CountryToIsoIndex{72130, "ua"}, + CountryToIsoIndex{72137, "ua"}, + CountryToIsoIndex{72145, "ec"}, + CountryToIsoIndex{72155, "ec"}, + CountryToIsoIndex{72164, "ec"}, + CountryToIsoIndex{72172, "ec"}, + CountryToIsoIndex{72182, "ec"}, + CountryToIsoIndex{72192, "ec"}, + CountryToIsoIndex{72199, "mp"}, + CountryToIsoIndex{72238, "mh"}, + CountryToIsoIndex{72261, "nf"}, + CountryToIsoIndex{72283, "sb"}, + CountryToIsoIndex{72305, "tc"}, + CountryToIsoIndex{72335, "vg"}, + CountryToIsoIndex{72363, "cv"}, + CountryToIsoIndex{72387, "ky"}, + CountryToIsoIndex{72407, "ck"}, + CountryToIsoIndex{72425, "fk"}, + CountryToIsoIndex{72447, "vi"}, + CountryToIsoIndex{72469, "mp"}, + CountryToIsoIndex{72494, "nf"}, + CountryToIsoIndex{72513, "sb"}, + CountryToIsoIndex{72528, "bs"}, + CountryToIsoIndex{72539, "bh"}, + CountryToIsoIndex{72550, "bd"}, + CountryToIsoIndex{72564, "by"}, + CountryToIsoIndex{72578, "bz"}, + CountryToIsoIndex{72588, "be"}, + CountryToIsoIndex{72599, "bj"}, + CountryToIsoIndex{72608, "bt"}, + CountryToIsoIndex{72618, "bo"}, + CountryToIsoIndex{72629, "bw"}, + CountryToIsoIndex{72641, "ba"}, + CountryToIsoIndex{72666, "br"}, + CountryToIsoIndex{72677, "bn"}, + CountryToIsoIndex{72687, "bg"}, + CountryToIsoIndex{72700, "bf"}, + CountryToIsoIndex{72716, "bi"}, + CountryToIsoIndex{72727, "cr"}, + CountryToIsoIndex{72741, "dj"}, + CountryToIsoIndex{72753, "ph"}, + CountryToIsoIndex{72766, "fi"}, + CountryToIsoIndex{72779, "ga"}, + CountryToIsoIndex{72788, "gm"}, + CountryToIsoIndex{72798, "ge"}, + CountryToIsoIndex{72809, "gs"}, + CountryToIsoIndex{72870, "gh"}, + CountryToIsoIndex{72879, "gr"}, + CountryToIsoIndex{72890, "gn"}, + CountryToIsoIndex{72900, "gq"}, + CountryToIsoIndex{72922, "gw"}, + CountryToIsoIndex{72939, "gy"}, + CountryToIsoIndex{72949, "gf"}, + CountryToIsoIndex{72970, "gt"}, + CountryToIsoIndex{72983, "ax"}, + CountryToIsoIndex{73001, "ic"}, + CountryToIsoIndex{73020, "ky"}, + CountryToIsoIndex{73039, "fo"}, + CountryToIsoIndex{73058, "fk"}, + CountryToIsoIndex{73079, "fk"}, + CountryToIsoIndex{73123, "hm"}, + CountryToIsoIndex{73163, "um"}, + CountryToIsoIndex{73209, "sb"}, + CountryToIsoIndex{73229, "tc"}, + CountryToIsoIndex{73256, "vg"}, + CountryToIsoIndex{73288, "vi"}, + CountryToIsoIndex{73325, "cx"}, + CountryToIsoIndex{73345, "cp"}, + CountryToIsoIndex{73366, "ht"}, + CountryToIsoIndex{73375, "hn"}, + CountryToIsoIndex{73387, "ye"}, + CountryToIsoIndex{73396, "kh"}, + CountryToIsoIndex{73408, "cm"}, + CountryToIsoIndex{73419, "ca"}, + CountryToIsoIndex{73429, "kz"}, + CountryToIsoIndex{73444, "ke"}, + CountryToIsoIndex{73453, "kg"}, + CountryToIsoIndex{73469, "co"}, + CountryToIsoIndex{73481, "cg"}, + CountryToIsoIndex{73504, "kp"}, + CountryToIsoIndex{73523, "kr"}, + CountryToIsoIndex{73542, "ci"}, + CountryToIsoIndex{73562, "hr"}, + CountryToIsoIndex{73573, "kw"}, + CountryToIsoIndex{73583, "la"}, + CountryToIsoIndex{73591, "lv"}, + CountryToIsoIndex{73601, "ls"}, + CountryToIsoIndex{73611, "lb"}, + CountryToIsoIndex{73621, "lr"}, + CountryToIsoIndex{73632, "ly"}, + CountryToIsoIndex{73641, "li"}, + CountryToIsoIndex{73658, "lt"}, + CountryToIsoIndex{73670, "lu"}, + CountryToIsoIndex{73685, "mo"}, + CountryToIsoIndex{73694, "my"}, + CountryToIsoIndex{73705, "mw"}, + CountryToIsoIndex{73715, "mv"}, + CountryToIsoIndex{73726, "ml"}, + CountryToIsoIndex{73734, "ma"}, + CountryToIsoIndex{73744, "mr"}, + CountryToIsoIndex{73758, "mx"}, + CountryToIsoIndex{73769, "md"}, + CountryToIsoIndex{73780, "mn"}, + CountryToIsoIndex{73792, "me"}, + CountryToIsoIndex{73806, "mz"}, + CountryToIsoIndex{73820, "mm"}, + CountryToIsoIndex{73837, "pk"}, + CountryToIsoIndex{73849, "ps"}, + CountryToIsoIndex{73862, "pa"}, + CountryToIsoIndex{73872, "py"}, + CountryToIsoIndex{73884, "pe"}, + CountryToIsoIndex{73893, "pl"}, + CountryToIsoIndex{73904, "pt"}, + CountryToIsoIndex{73917, "qa"}, + CountryToIsoIndex{73926, "ve"}, + CountryToIsoIndex{73939, "vn"}, + CountryToIsoIndex{73950, "jm"}, + CountryToIsoIndex{73962, "jp"}, + CountryToIsoIndex{73973, "de"}, + CountryToIsoIndex{73986, "jo"}, + CountryToIsoIndex{73997, "iq"}, + CountryToIsoIndex{74003, "hm"}, + CountryToIsoIndex{74030, "ls"}, + CountryToIsoIndex{74039, "bv"}, + CountryToIsoIndex{74051, "bv"}, + CountryToIsoIndex{74061, "cx"}, + CountryToIsoIndex{74076, "ac"}, + CountryToIsoIndex{74094, "cp"}, + CountryToIsoIndex{74113, "im"}, + CountryToIsoIndex{74125, "ac"}, + CountryToIsoIndex{74142, "im"}, + CountryToIsoIndex{74154, "cx"}, + CountryToIsoIndex{74168, "cx"}, + CountryToIsoIndex{74182, "cp"}, + CountryToIsoIndex{74197, "nf"}, + CountryToIsoIndex{74210, "ax"}, + CountryToIsoIndex{74222, "io"}, + CountryToIsoIndex{74251, "ky"}, + CountryToIsoIndex{74264, "ky"}, + CountryToIsoIndex{74278, "ic"}, + CountryToIsoIndex{74294, "ky"}, + CountryToIsoIndex{74307, "cc"}, + CountryToIsoIndex{74329, "ck"}, + CountryToIsoIndex{74340, "qo"}, + CountryToIsoIndex{74357, "cc"}, + CountryToIsoIndex{74383, "fk"}, + CountryToIsoIndex{74398, "fk"}, + CountryToIsoIndex{74430, "fo"}, + CountryToIsoIndex{74442, "fo"}, + CountryToIsoIndex{74455, "gs"}, + CountryToIsoIndex{74495, "hm"}, + CountryToIsoIndex{74518, "hm"}, + CountryToIsoIndex{74541, "gs"}, + CountryToIsoIndex{74581, "ky"}, + CountryToIsoIndex{74595, "cc"}, + CountryToIsoIndex{74617, "ck"}, + CountryToIsoIndex{74627, "fk"}, + CountryToIsoIndex{74642, "mp"}, + CountryToIsoIndex{74666, "mp"}, + CountryToIsoIndex{74690, "mh"}, + CountryToIsoIndex{74705, "mh"}, + CountryToIsoIndex{74718, "um"}, + CountryToIsoIndex{74750, "um"}, + CountryToIsoIndex{74782, "um"}, + CountryToIsoIndex{74823, "nf"}, + CountryToIsoIndex{74837, "pn"}, + CountryToIsoIndex{74852, "sb"}, + CountryToIsoIndex{74867, "sb"}, + CountryToIsoIndex{74882, "tc"}, + CountryToIsoIndex{74904, "tc"}, + CountryToIsoIndex{74926, "tc"}, + CountryToIsoIndex{74947, "vi"}, + CountryToIsoIndex{74972, "vg"}, + CountryToIsoIndex{74998, "vi"}, + CountryToIsoIndex{75020, "vg"}, + CountryToIsoIndex{75046, "vi"}, + CountryToIsoIndex{75069, "ax"}, + CountryToIsoIndex{75082, "ie"}, + CountryToIsoIndex{75091, "bv"}, + CountryToIsoIndex{75103, "cx"}, + CountryToIsoIndex{75118, "cp"}, + CountryToIsoIndex{75134, "ac"}, + CountryToIsoIndex{75153, "re"}, + CountryToIsoIndex{75172, "ac"}, + CountryToIsoIndex{75194, "im"}, + CountryToIsoIndex{75206, "cx"}, + CountryToIsoIndex{75220, "hm"}, + CountryToIsoIndex{75248, "hm"}, + CountryToIsoIndex{75276, "nf"}, + CountryToIsoIndex{75289, "ax"}, + CountryToIsoIndex{75301, "ky"}, + CountryToIsoIndex{75315, "ic"}, + CountryToIsoIndex{75330, "cc"}, + CountryToIsoIndex{75352, "ck"}, + CountryToIsoIndex{75363, "fo"}, + CountryToIsoIndex{75375, "fk"}, + CountryToIsoIndex{75390, "fk"}, + CountryToIsoIndex{75416, "mp"}, + CountryToIsoIndex{75440, "mh"}, + CountryToIsoIndex{75455, "pn"}, + CountryToIsoIndex{75470, "sb"}, + CountryToIsoIndex{75485, "tc"}, + CountryToIsoIndex{75506, "um"}, + CountryToIsoIndex{75533, "vg"}, + CountryToIsoIndex{75558, "vi"}, + CountryToIsoIndex{75587, "gs"}, + CountryToIsoIndex{75626, "ky"}, + CountryToIsoIndex{75639, "ic"}, + CountryToIsoIndex{75655, "cc"}, + CountryToIsoIndex{75667, "ck"}, + CountryToIsoIndex{75678, "fo"}, + CountryToIsoIndex{75691, "gs"}, + CountryToIsoIndex{75733, "fk"}, + CountryToIsoIndex{75748, "fk"}, + CountryToIsoIndex{75780, "mp"}, + CountryToIsoIndex{75805, "mh"}, + CountryToIsoIndex{75820, "um"}, + CountryToIsoIndex{75856, "pn"}, + CountryToIsoIndex{75871, "sb"}, + CountryToIsoIndex{75885, "tc"}, + CountryToIsoIndex{75906, "vg"}, + CountryToIsoIndex{75932, "vi"}, + CountryToIsoIndex{75961, "ax"}, + CountryToIsoIndex{75974, "iq"}, + CountryToIsoIndex{75980, "ie"}, + CountryToIsoIndex{75986, "ir"}, + CountryToIsoIndex{75993, "iq"}, + CountryToIsoIndex{75999, "ae"}, + CountryToIsoIndex{76030, "mw"}, + CountryToIsoIndex{76038, "ml"}, + CountryToIsoIndex{76044, "ae"}, + CountryToIsoIndex{76071, "ae"}, + CountryToIsoIndex{76091, "na"}, + CountryToIsoIndex{76102, "np"}, + CountryToIsoIndex{76111, "nl"}, + CountryToIsoIndex{76126, "bq"}, + CountryToIsoIndex{76153, "ni"}, + CountryToIsoIndex{76166, "ne"}, + CountryToIsoIndex{76176, "ng"}, + CountryToIsoIndex{76188, "no"}, + CountryToIsoIndex{76201, "in"}, + CountryToIsoIndex{76206, "in"}, + CountryToIsoIndex{76211, "in"}, + CountryToIsoIndex{76217, "in"}, + CountryToIsoIndex{76230, "in"}, + CountryToIsoIndex{76237, "io"}, + CountryToIsoIndex{76276, "in"}, + CountryToIsoIndex{76282, "in"}, + CountryToIsoIndex{76289, "in"}, + CountryToIsoIndex{76296, "io"}, + CountryToIsoIndex{76329, "in"}, + CountryToIsoIndex{76336, "io"}, + CountryToIsoIndex{76368, "in"}, + CountryToIsoIndex{76376, "in"}, + CountryToIsoIndex{76383, "in"}, + CountryToIsoIndex{76390, "in"}, + CountryToIsoIndex{76398, "id"}, + CountryToIsoIndex{76409, "id"}, + CountryToIsoIndex{76420, "id"}, + CountryToIsoIndex{76432, "id"}, + CountryToIsoIndex{76444, "id"}, + CountryToIsoIndex{76454, "id"}, + CountryToIsoIndex{76466, "id"}, + CountryToIsoIndex{76475, "id"}, + CountryToIsoIndex{76485, "id"}, + CountryToIsoIndex{76502, "id"}, + CountryToIsoIndex{76513, "id"}, + CountryToIsoIndex{76523, "id"}, + CountryToIsoIndex{76534, "id"}, + CountryToIsoIndex{76545, "id"}, + CountryToIsoIndex{76556, "id"}, + CountryToIsoIndex{76566, "id"}, + CountryToIsoIndex{76577, "id"}, + CountryToIsoIndex{76586, "id"}, + CountryToIsoIndex{76596, "id"}, + CountryToIsoIndex{76607, "id"}, + CountryToIsoIndex{76617, "id"}, + CountryToIsoIndex{76629, "id"}, + CountryToIsoIndex{76640, "id"}, + CountryToIsoIndex{76652, "id"}, + CountryToIsoIndex{76662, "id"}, + CountryToIsoIndex{76673, "id"}, + CountryToIsoIndex{76684, "id"}, + CountryToIsoIndex{76695, "id"}, + CountryToIsoIndex{76706, "id"}, + CountryToIsoIndex{76718, "id"}, + CountryToIsoIndex{76729, "in"}, + CountryToIsoIndex{76740, "id"}, + CountryToIsoIndex{76749, "id"}, + CountryToIsoIndex{76759, "id"}, + CountryToIsoIndex{76770, "in"}, + CountryToIsoIndex{76775, "in"}, + CountryToIsoIndex{76783, "in"}, + CountryToIsoIndex{76789, "id"}, + CountryToIsoIndex{76802, "id"}, + CountryToIsoIndex{76814, "id"}, + CountryToIsoIndex{76826, "id"}, + CountryToIsoIndex{76838, "gb"}, + CountryToIsoIndex{76851, "gb"}, + CountryToIsoIndex{76862, "za"}, + CountryToIsoIndex{76880, "ky"}, + CountryToIsoIndex{76893, "ck"}, + CountryToIsoIndex{76904, "um"}, + CountryToIsoIndex{76936, "fo"}, + CountryToIsoIndex{76948, "fk"}, + CountryToIsoIndex{76963, "fk"}, + CountryToIsoIndex{76993, "gs"}, + CountryToIsoIndex{77038, "vi"}, + CountryToIsoIndex{77071, "vg"}, + CountryToIsoIndex{77098, "hm"}, + CountryToIsoIndex{77122, "ic"}, + CountryToIsoIndex{77137, "cc"}, + CountryToIsoIndex{77149, "mp"}, + CountryToIsoIndex{77172, "mh"}, + CountryToIsoIndex{77187, "sb"}, + CountryToIsoIndex{77201, "tc"}, + CountryToIsoIndex{77223, "ax"}, + CountryToIsoIndex{77236, "is"}, + CountryToIsoIndex{77248, "im"}, + CountryToIsoIndex{77258, "bv"}, + CountryToIsoIndex{77271, "cx"}, + CountryToIsoIndex{77290, "im"}, + CountryToIsoIndex{77303, "nf"}, + CountryToIsoIndex{77317, "ax"}, + CountryToIsoIndex{77330, "ky"}, + CountryToIsoIndex{77344, "cc"}, + CountryToIsoIndex{77357, "ck"}, + CountryToIsoIndex{77369, "hm"}, + CountryToIsoIndex{77399, "mh"}, + CountryToIsoIndex{77418, "fk"}, + CountryToIsoIndex{77438, "fo"}, + CountryToIsoIndex{77451, "mp"}, + CountryToIsoIndex{77477, "um"}, + CountryToIsoIndex{77539, "tc"}, + CountryToIsoIndex{77561, "vi"}, + CountryToIsoIndex{77588, "vg"}, + CountryToIsoIndex{77616, "im"}, + CountryToIsoIndex{77630, "ac"}, + CountryToIsoIndex{77647, "bv"}, + CountryToIsoIndex{77661, "cx"}, + CountryToIsoIndex{77678, "cp"}, + CountryToIsoIndex{77696, "hm"}, + CountryToIsoIndex{77731, "im"}, + CountryToIsoIndex{77742, "nf"}, + CountryToIsoIndex{77757, "ic"}, + CountryToIsoIndex{77773, "bq"}, + CountryToIsoIndex{77799, "ky"}, + CountryToIsoIndex{77815, "cc"}, + CountryToIsoIndex{77840, "ck"}, + CountryToIsoIndex{77854, "fk"}, + CountryToIsoIndex{77872, "fk"}, + CountryToIsoIndex{77909, "fo"}, + CountryToIsoIndex{77924, "mp"}, + CountryToIsoIndex{77949, "mh"}, + CountryToIsoIndex{77967, "pn"}, + CountryToIsoIndex{77985, "sb"}, + CountryToIsoIndex{78002, "tc"}, + CountryToIsoIndex{78028, "vi"}, + CountryToIsoIndex{78055, "vg"}, + CountryToIsoIndex{78082, "ax"}, + CountryToIsoIndex{78098, "um"}, + CountryToIsoIndex{78132, "io"}, + CountryToIsoIndex{78181, "in"}, + CountryToIsoIndex{78187, "jo"}, + CountryToIsoIndex{78196, "jo"}, + CountryToIsoIndex{78206, "jo"}, + CountryToIsoIndex{78217, "iq"}, + CountryToIsoIndex{78224, "ir"}, + CountryToIsoIndex{78231, "il"}, + CountryToIsoIndex{78239, "kp"}, + CountryToIsoIndex{78250, "mp"}, + CountryToIsoIndex{78272, "gb"}, + CountryToIsoIndex{78286, "cd"}, + CountryToIsoIndex{78322, "do"}, + CountryToIsoIndex{78347, "cg"}, + CountryToIsoIndex{78371, "cz"}, + CountryToIsoIndex{78391, "cf"}, + CountryToIsoIndex{78422, "mo"}, + CountryToIsoIndex{78504, "hk"}, + CountryToIsoIndex{78592, "ro"}, + CountryToIsoIndex{78604, "ru"}, + CountryToIsoIndex{78614, "rw"}, + CountryToIsoIndex{78624, "ir"}, + CountryToIsoIndex{78628, "iq"}, + CountryToIsoIndex{78634, "iq"}, + CountryToIsoIndex{78641, "ir"}, + CountryToIsoIndex{78647, "ir"}, + CountryToIsoIndex{78654, "iq"}, + CountryToIsoIndex{78659, "iq"}, + CountryToIsoIndex{78664, "iq"}, + CountryToIsoIndex{78669, "iq"}, + CountryToIsoIndex{78676, "iq"}, + CountryToIsoIndex{78682, "iq"}, + CountryToIsoIndex{78688, "ir"}, + CountryToIsoIndex{78693, "ir"}, + CountryToIsoIndex{78705, "ir"}, + CountryToIsoIndex{78712, "ir"}, + CountryToIsoIndex{78718, "ir"}, + CountryToIsoIndex{78725, "ir"}, + CountryToIsoIndex{78731, "iq"}, + CountryToIsoIndex{78736, "iq"}, + CountryToIsoIndex{78746, "iq"}, + CountryToIsoIndex{78752, "iq"}, + CountryToIsoIndex{78759, "ir"}, + CountryToIsoIndex{78765, "iq"}, + CountryToIsoIndex{78772, "ie"}, + CountryToIsoIndex{78780, "ie"}, + CountryToIsoIndex{78795, "ie"}, + CountryToIsoIndex{78804, "ie"}, + CountryToIsoIndex{78814, "ie"}, + CountryToIsoIndex{78823, "uy"}, + CountryToIsoIndex{78830, "uy"}, + CountryToIsoIndex{78838, "ie"}, + CountryToIsoIndex{78847, "ru"}, + CountryToIsoIndex{78853, "er"}, + CountryToIsoIndex{78862, "er"}, + CountryToIsoIndex{78871, "er"}, + CountryToIsoIndex{78880, "er"}, + CountryToIsoIndex{78888, "ru"}, + CountryToIsoIndex{78901, "ie"}, + CountryToIsoIndex{78908, "ie"}, + CountryToIsoIndex{78916, "ie"}, + CountryToIsoIndex{78924, "ie"}, + CountryToIsoIndex{78932, "ie"}, + CountryToIsoIndex{78941, "ie"}, + CountryToIsoIndex{78951, "ie"}, + CountryToIsoIndex{78962, "ie"}, + CountryToIsoIndex{78970, "ie"}, + CountryToIsoIndex{78978, "ie"}, + CountryToIsoIndex{78986, "ie"}, + CountryToIsoIndex{78995, "ie"}, + CountryToIsoIndex{79004, "ie"}, + CountryToIsoIndex{79012, "ie"}, + CountryToIsoIndex{79022, "ie"}, + CountryToIsoIndex{79030, "ie"}, + CountryToIsoIndex{79039, "ie"}, + CountryToIsoIndex{79048, "iq"}, + CountryToIsoIndex{79053, "ie"}, + CountryToIsoIndex{79061, "ie"}, + CountryToIsoIndex{79067, "ie"}, + CountryToIsoIndex{79073, "iq"}, + CountryToIsoIndex{79081, "iq"}, + CountryToIsoIndex{79087, "iq"}, + CountryToIsoIndex{79093, "ir"}, + CountryToIsoIndex{79099, "ir"}, + CountryToIsoIndex{79106, "ir"}, + CountryToIsoIndex{79111, "iq"}, + CountryToIsoIndex{79118, "ir"}, + CountryToIsoIndex{79123, "ir"}, + CountryToIsoIndex{79129, "ir"}, + CountryToIsoIndex{79135, "ir"}, + CountryToIsoIndex{79142, "iq"}, + CountryToIsoIndex{79149, "ir"}, + CountryToIsoIndex{79156, "ie"}, + CountryToIsoIndex{79168, "as"}, + CountryToIsoIndex{79187, "eh"}, + CountryToIsoIndex{79209, "sn"}, + CountryToIsoIndex{79220, "rs"}, + CountryToIsoIndex{79230, "sc"}, + CountryToIsoIndex{79244, "sy"}, + CountryToIsoIndex{79253, "sk"}, + CountryToIsoIndex{79266, "si"}, + CountryToIsoIndex{79278, "so"}, + CountryToIsoIndex{79289, "lk"}, + CountryToIsoIndex{79302, "sd"}, + CountryToIsoIndex{79311, "ss"}, + CountryToIsoIndex{79330, "sr"}, + CountryToIsoIndex{79342, "sz"}, + CountryToIsoIndex{79355, "es"}, + CountryToIsoIndex{79362, "ax"}, + CountryToIsoIndex{79377, "mp"}, + CountryToIsoIndex{79404, "vg"}, + CountryToIsoIndex{79433, "vi"}, + CountryToIsoIndex{79464, "fk"}, + CountryToIsoIndex{79480, "fk"}, + CountryToIsoIndex{79506, "fo"}, + CountryToIsoIndex{79519, "hm"}, + CountryToIsoIndex{79544, "ky"}, + CountryToIsoIndex{79558, "ic"}, + CountryToIsoIndex{79573, "cc"}, + CountryToIsoIndex{79586, "ck"}, + CountryToIsoIndex{79597, "mh"}, + CountryToIsoIndex{79613, "um"}, + CountryToIsoIndex{79645, "pn"}, + CountryToIsoIndex{79660, "sb"}, + CountryToIsoIndex{79675, "tc"}, + CountryToIsoIndex{79699, "ac"}, + CountryToIsoIndex{79717, "bv"}, + CountryToIsoIndex{79730, "cx"}, + CountryToIsoIndex{79754, "im"}, + CountryToIsoIndex{79770, "cp"}, + CountryToIsoIndex{79789, "nf"}, + CountryToIsoIndex{79805, "il"}, + CountryToIsoIndex{79814, "is"}, + CountryToIsoIndex{79823, "is"}, + CountryToIsoIndex{79832, "is"}, + CountryToIsoIndex{79842, "il"}, + CountryToIsoIndex{79851, "il"}, + CountryToIsoIndex{79861, "il"}, + CountryToIsoIndex{79870, "il"}, + CountryToIsoIndex{79880, "il"}, + CountryToIsoIndex{79890, "il"}, + CountryToIsoIndex{79901, "il"}, + CountryToIsoIndex{79912, "ck"}, + CountryToIsoIndex{79927, "ky"}, + CountryToIsoIndex{79944, "sb"}, + CountryToIsoIndex{79962, "ac"}, + CountryToIsoIndex{79978, "bv"}, + CountryToIsoIndex{79990, "cx"}, + CountryToIsoIndex{80005, "cp"}, + CountryToIsoIndex{80021, "ac"}, + CountryToIsoIndex{80043, "im"}, + CountryToIsoIndex{80055, "cx"}, + CountryToIsoIndex{80071, "nf"}, + CountryToIsoIndex{80084, "il"}, + CountryToIsoIndex{80092, "is"}, + CountryToIsoIndex{80099, "is"}, + CountryToIsoIndex{80107, "is"}, + CountryToIsoIndex{80115, "is"}, + CountryToIsoIndex{80123, "is"}, + CountryToIsoIndex{80132, "is"}, + CountryToIsoIndex{80142, "is"}, + CountryToIsoIndex{80152, "is"}, + CountryToIsoIndex{80163, "is"}, + CountryToIsoIndex{80171, "is"}, + CountryToIsoIndex{80181, "is"}, + CountryToIsoIndex{80189, "is"}, + CountryToIsoIndex{80198, "is"}, + CountryToIsoIndex{80207, "is"}, + CountryToIsoIndex{80215, "is"}, + CountryToIsoIndex{80225, "ky"}, + CountryToIsoIndex{80239, "ic"}, + CountryToIsoIndex{80254, "cc"}, + CountryToIsoIndex{80266, "ck"}, + CountryToIsoIndex{80277, "fo"}, + CountryToIsoIndex{80289, "gs"}, + CountryToIsoIndex{80330, "hm"}, + CountryToIsoIndex{80353, "fk"}, + CountryToIsoIndex{80368, "fk"}, + CountryToIsoIndex{80400, "mp"}, + CountryToIsoIndex{80425, "mh"}, + CountryToIsoIndex{80440, "um"}, + CountryToIsoIndex{80474, "um"}, + CountryToIsoIndex{80511, "pn"}, + CountryToIsoIndex{80526, "sb"}, + CountryToIsoIndex{80541, "tc"}, + CountryToIsoIndex{80563, "qo"}, + CountryToIsoIndex{80582, "um"}, + CountryToIsoIndex{80611, "vg"}, + CountryToIsoIndex{80639, "vi"}, + CountryToIsoIndex{80666, "vi"}, + CountryToIsoIndex{80704, "ax"}, + CountryToIsoIndex{80717, "il"}, + CountryToIsoIndex{80728, "im"}, + CountryToIsoIndex{80740, "ac"}, + CountryToIsoIndex{80757, "bv"}, + CountryToIsoIndex{80770, "cx"}, + CountryToIsoIndex{80786, "cp"}, + CountryToIsoIndex{80803, "im"}, + CountryToIsoIndex{80816, "nf"}, + CountryToIsoIndex{80830, "ax"}, + CountryToIsoIndex{80843, "ky"}, + CountryToIsoIndex{80858, "ic"}, + CountryToIsoIndex{80874, "cc"}, + CountryToIsoIndex{80897, "ck"}, + CountryToIsoIndex{80909, "fo"}, + CountryToIsoIndex{80922, "fj"}, + CountryToIsoIndex{80934, "hm"}, + CountryToIsoIndex{80958, "fk"}, + CountryToIsoIndex{80993, "mp"}, + CountryToIsoIndex{81019, "mh"}, + CountryToIsoIndex{81035, "um"}, + CountryToIsoIndex{81078, "pn"}, + CountryToIsoIndex{81094, "sb"}, + CountryToIsoIndex{81110, "tc"}, + CountryToIsoIndex{81134, "vi"}, + CountryToIsoIndex{81162, "vg"}, + CountryToIsoIndex{81192, "gs"}, + CountryToIsoIndex{81233, "is"}, + CountryToIsoIndex{81241, "is"}, + CountryToIsoIndex{81251, "is"}, + CountryToIsoIndex{81260, "is"}, + CountryToIsoIndex{81269, "is"}, + CountryToIsoIndex{81279, "is"}, + CountryToIsoIndex{81288, "is"}, + CountryToIsoIndex{81298, "gb"}, + CountryToIsoIndex{81312, "ac"}, + CountryToIsoIndex{81329, "bv"}, + CountryToIsoIndex{81342, "cx"}, + CountryToIsoIndex{81358, "cp"}, + CountryToIsoIndex{81378, "im"}, + CountryToIsoIndex{81391, "nf"}, + CountryToIsoIndex{81405, "ic"}, + CountryToIsoIndex{81419, "ky"}, + CountryToIsoIndex{81432, "cc"}, + CountryToIsoIndex{81454, "ck"}, + CountryToIsoIndex{81465, "fk"}, + CountryToIsoIndex{81480, "fk"}, + CountryToIsoIndex{81511, "fo"}, + CountryToIsoIndex{81527, "hm"}, + CountryToIsoIndex{81550, "mp"}, + CountryToIsoIndex{81580, "mh"}, + CountryToIsoIndex{81595, "nf"}, + CountryToIsoIndex{81609, "pn"}, + CountryToIsoIndex{81624, "sb"}, + CountryToIsoIndex{81639, "tc"}, + CountryToIsoIndex{81660, "vi"}, + CountryToIsoIndex{81684, "vg"}, + CountryToIsoIndex{81710, "ax"}, + CountryToIsoIndex{81723, "es"}, + CountryToIsoIndex{81732, "es"}, + CountryToIsoIndex{81741, "es"}, + CountryToIsoIndex{81751, "il"}, + CountryToIsoIndex{81762, "il"}, + CountryToIsoIndex{81775, "il"}, + CountryToIsoIndex{81783, "il"}, + CountryToIsoIndex{81790, "il"}, + CountryToIsoIndex{81804, "il"}, + CountryToIsoIndex{81812, "il"}, + CountryToIsoIndex{81820, "il"}, + CountryToIsoIndex{81828, "il"}, + CountryToIsoIndex{81836, "il"}, + CountryToIsoIndex{81844, "il"}, + CountryToIsoIndex{81852, "il"}, + CountryToIsoIndex{81860, "il"}, + CountryToIsoIndex{81868, "il"}, + CountryToIsoIndex{81877, "il"}, + CountryToIsoIndex{81887, "il"}, + CountryToIsoIndex{81894, "il"}, + CountryToIsoIndex{81905, "tl"}, + CountryToIsoIndex{81920, "ee"}, + CountryToIsoIndex{81928, "bv"}, + CountryToIsoIndex{81941, "cx"}, + CountryToIsoIndex{81957, "cp"}, + CountryToIsoIndex{81974, "im"}, + CountryToIsoIndex{81987, "hm"}, + CountryToIsoIndex{82017, "ax"}, + CountryToIsoIndex{82030, "ic"}, + CountryToIsoIndex{82046, "ky"}, + CountryToIsoIndex{82060, "cc"}, + CountryToIsoIndex{82073, "ck"}, + CountryToIsoIndex{82085, "fk"}, + CountryToIsoIndex{82101, "fk"}, + CountryToIsoIndex{82135, "fo"}, + CountryToIsoIndex{82148, "mp"}, + CountryToIsoIndex{82172, "mh"}, + CountryToIsoIndex{82188, "um"}, + CountryToIsoIndex{82234, "sb"}, + CountryToIsoIndex{82249, "tc"}, + CountryToIsoIndex{82271, "vi"}, + CountryToIsoIndex{82299, "vg"}, + CountryToIsoIndex{82328, "il"}, + CountryToIsoIndex{82337, "sz"}, + CountryToIsoIndex{82350, "se"}, + CountryToIsoIndex{82359, "eg"}, + CountryToIsoIndex{82367, "is"}, + CountryToIsoIndex{82379, "il"}, + CountryToIsoIndex{82391, "ee"}, + CountryToIsoIndex{82401, "th"}, + CountryToIsoIndex{82414, "tw"}, + CountryToIsoIndex{82424, "tz"}, + CountryToIsoIndex{82437, "tj"}, + CountryToIsoIndex{82452, "tf"}, + CountryToIsoIndex{82491, "ps"}, + CountryToIsoIndex{82518, "tg"}, + CountryToIsoIndex{82526, "tk"}, + CountryToIsoIndex{82537, "tn"}, + CountryToIsoIndex{82550, "tr"}, + CountryToIsoIndex{82561, "tm"}, + CountryToIsoIndex{82577, "it"}, + CountryToIsoIndex{82584, "it"}, + CountryToIsoIndex{82592, "it"}, + CountryToIsoIndex{82600, "it"}, + CountryToIsoIndex{82609, "it"}, + CountryToIsoIndex{82615, "it"}, + CountryToIsoIndex{82622, "it"}, + CountryToIsoIndex{82636, "it"}, + CountryToIsoIndex{82644, "it"}, + CountryToIsoIndex{82651, "it"}, + CountryToIsoIndex{82659, "it"}, + CountryToIsoIndex{82667, "it"}, + CountryToIsoIndex{82675, "it"}, + CountryToIsoIndex{82683, "it"}, + CountryToIsoIndex{82692, "it"}, + CountryToIsoIndex{82700, "it"}, + CountryToIsoIndex{82708, "it"}, + CountryToIsoIndex{82714, "it"}, + CountryToIsoIndex{82721, "it"}, + CountryToIsoIndex{82728, "it"}, + CountryToIsoIndex{82737, "it"}, + CountryToIsoIndex{82744, "it"}, + CountryToIsoIndex{82750, "et"}, + CountryToIsoIndex{82759, "il"}, + CountryToIsoIndex{82768, "et"}, + CountryToIsoIndex{82777, "et"}, + CountryToIsoIndex{82788, "et"}, + CountryToIsoIndex{82796, "et"}, + CountryToIsoIndex{82804, "it"}, + CountryToIsoIndex{82812, "it"}, + CountryToIsoIndex{82820, "it"}, + CountryToIsoIndex{82828, "it"}, + CountryToIsoIndex{82838, "tl"}, + CountryToIsoIndex{82849, "at"}, + CountryToIsoIndex{82859, "it"}, + CountryToIsoIndex{82868, "ci"}, + CountryToIsoIndex{82877, "ci"}, + CountryToIsoIndex{82887, "ci"}, + CountryToIsoIndex{82897, "ci"}, + CountryToIsoIndex{82910, "ci"}, + CountryToIsoIndex{82921, "ci"}, + CountryToIsoIndex{82933, "ci"}, + CountryToIsoIndex{82951, "ie"}, + CountryToIsoIndex{82960, "ie"}, + CountryToIsoIndex{82969, "us"}, + CountryToIsoIndex{82995, "us"}, + CountryToIsoIndex{83019, "de"}, + CountryToIsoIndex{83042, "nl"}, + CountryToIsoIndex{83054, "zw"}, + CountryToIsoIndex{83064, "fk"}, + CountryToIsoIndex{83087, "km"}, + CountryToIsoIndex{83105, "ck"}, + CountryToIsoIndex{83121, "mh"}, + CountryToIsoIndex{83142, "mu"}, + CountryToIsoIndex{83160, "nf"}, + CountryToIsoIndex{83182, "cy"}, + CountryToIsoIndex{83201, "il"}, + CountryToIsoIndex{83212, "is"}, + CountryToIsoIndex{83219, "il"}, + CountryToIsoIndex{83226, "il"}, + CountryToIsoIndex{83235, "il"}, + CountryToIsoIndex{83243, "il"}, + CountryToIsoIndex{83252, "il"}, + CountryToIsoIndex{83261, "is"}, + CountryToIsoIndex{83269, "il"}, + CountryToIsoIndex{83278, "ye"}, + CountryToIsoIndex{83285, "ye"}, + CountryToIsoIndex{83292, "jo"}, + CountryToIsoIndex{83300, "jp"}, + CountryToIsoIndex{83308, "td"}, + CountryToIsoIndex{83317, "cl"}, + CountryToIsoIndex{83327, "zm"}, + CountryToIsoIndex{83339, "zw"}, + CountryToIsoIndex{83353, "il"}, + CountryToIsoIndex{83361, "it"}, + CountryToIsoIndex{83370, "td"}, + CountryToIsoIndex{83375, "gh"}, + CountryToIsoIndex{83381, "jp"}, + CountryToIsoIndex{83389, "jp"}, + CountryToIsoIndex{83396, "jp"}, + CountryToIsoIndex{83404, "jp"}, + CountryToIsoIndex{83411, "ga"}, + CountryToIsoIndex{83418, "dj"}, + CountryToIsoIndex{83426, "jm"}, + CountryToIsoIndex{83435, "jm"}, + CountryToIsoIndex{83443, "jm"}, + CountryToIsoIndex{83452, "jm"}, + CountryToIsoIndex{83460, "jm"}, + CountryToIsoIndex{83468, "jm"}, + CountryToIsoIndex{83476, "jm"}, + CountryToIsoIndex{83484, "de"}, + CountryToIsoIndex{83490, "jm"}, + CountryToIsoIndex{83499, "jm"}, + CountryToIsoIndex{83507, "jm"}, + CountryToIsoIndex{83515, "jm"}, + CountryToIsoIndex{83524, "jm"}, + CountryToIsoIndex{83533, "jm"}, + CountryToIsoIndex{83543, "gl"}, + CountryToIsoIndex{83561, "gm"}, + CountryToIsoIndex{83569, "jm"}, + CountryToIsoIndex{83577, "cf"}, + CountryToIsoIndex{83603, "cz"}, + CountryToIsoIndex{83620, "do"}, + CountryToIsoIndex{83640, "cd"}, + CountryToIsoIndex{83673, "cf"}, + CountryToIsoIndex{83699, "cz"}, + CountryToIsoIndex{83716, "do"}, + CountryToIsoIndex{83736, "cd"}, + CountryToIsoIndex{83769, "cd"}, + CountryToIsoIndex{83803, "cg"}, + CountryToIsoIndex{83820, "cf"}, + CountryToIsoIndex{83849, "cz"}, + CountryToIsoIndex{83864, "cd"}, + CountryToIsoIndex{83897, "do"}, + CountryToIsoIndex{83917, "cf"}, + CountryToIsoIndex{83946, "cd"}, + CountryToIsoIndex{83980, "do"}, + CountryToIsoIndex{84004, "cz"}, + CountryToIsoIndex{84022, "jm"}, + CountryToIsoIndex{84031, "cf"}, + CountryToIsoIndex{84068, "cf"}, + CountryToIsoIndex{84099, "cz"}, + CountryToIsoIndex{84118, "cd"}, + CountryToIsoIndex{84155, "do"}, + CountryToIsoIndex{84176, "cd"}, + CountryToIsoIndex{84212, "cz"}, + CountryToIsoIndex{84230, "cz"}, + CountryToIsoIndex{84252, "do"}, + CountryToIsoIndex{84276, "cd"}, + CountryToIsoIndex{84317, "de"}, + CountryToIsoIndex{84323, "jm"}, + CountryToIsoIndex{84331, "jm"}, + CountryToIsoIndex{84340, "de"}, + CountryToIsoIndex{84348, "de"}, + CountryToIsoIndex{84355, "jm"}, + CountryToIsoIndex{84364, "za"}, + CountryToIsoIndex{84392, "gs"}, + CountryToIsoIndex{84438, "kr"}, + CountryToIsoIndex{84453, "ss"}, + CountryToIsoIndex{84467, "jp"}, + CountryToIsoIndex{84473, "jp"}, + CountryToIsoIndex{84480, "jp"}, + CountryToIsoIndex{84487, "jp"}, + CountryToIsoIndex{84495, "jp"}, + CountryToIsoIndex{84504, "jp"}, + CountryToIsoIndex{84513, "jp"}, + CountryToIsoIndex{84523, "jp"}, + CountryToIsoIndex{84530, "jp"}, + CountryToIsoIndex{84536, "jp"}, + CountryToIsoIndex{84543, "jp"}, + CountryToIsoIndex{84551, "jp"}, + CountryToIsoIndex{84560, "jp"}, + CountryToIsoIndex{84569, "jp"}, + CountryToIsoIndex{84578, "jp"}, + CountryToIsoIndex{84586, "jp"}, + CountryToIsoIndex{84592, "jp"}, + CountryToIsoIndex{84597, "jp"}, + CountryToIsoIndex{84606, "jp"}, + CountryToIsoIndex{84613, "jp"}, + CountryToIsoIndex{84621, "jp"}, + CountryToIsoIndex{84628, "jp"}, + CountryToIsoIndex{84635, "jp"}, + CountryToIsoIndex{84641, "jp"}, + CountryToIsoIndex{84648, "jp"}, + CountryToIsoIndex{84656, "jp"}, + CountryToIsoIndex{84666, "jp"}, + CountryToIsoIndex{84673, "jp"}, + CountryToIsoIndex{84683, "jp"}, + CountryToIsoIndex{84692, "de"}, + CountryToIsoIndex{84699, "nc"}, + CountryToIsoIndex{84714, "nz"}, + CountryToIsoIndex{84727, "us"}, + CountryToIsoIndex{84731, "fk"}, + CountryToIsoIndex{84752, "ck"}, + CountryToIsoIndex{84768, "dz"}, + CountryToIsoIndex{84775, "ye"}, + CountryToIsoIndex{84781, "ye"}, + CountryToIsoIndex{84788, "je"}, + CountryToIsoIndex{84795, "ye"}, + CountryToIsoIndex{84801, "ye"}, + CountryToIsoIndex{84808, "ye"}, + CountryToIsoIndex{84816, "ye"}, + CountryToIsoIndex{84823, "vg"}, + CountryToIsoIndex{84858, "io"}, + CountryToIsoIndex{84895, "ge"}, + CountryToIsoIndex{84903, "ge"}, + CountryToIsoIndex{84913, "jp"}, + CountryToIsoIndex{84920, "jp"}, + CountryToIsoIndex{84926, "de"}, + CountryToIsoIndex{84933, "am"}, + CountryToIsoIndex{84943, "je"}, + CountryToIsoIndex{84950, "je"}, + CountryToIsoIndex{84956, "je"}, + CountryToIsoIndex{84965, "ge"}, + CountryToIsoIndex{84976, "gi"}, + CountryToIsoIndex{84987, "gi"}, + CountryToIsoIndex{84998, "gi"}, + CountryToIsoIndex{85008, "dj"}, + CountryToIsoIndex{85016, "gi"}, + CountryToIsoIndex{85025, "gi"}, + CountryToIsoIndex{85036, "gi"}, + CountryToIsoIndex{85045, "gi"}, + CountryToIsoIndex{85056, "gi"}, + CountryToIsoIndex{85066, "gi"}, + CountryToIsoIndex{85076, "gi"}, + CountryToIsoIndex{85088, "gi"}, + CountryToIsoIndex{85099, "gi"}, + CountryToIsoIndex{85111, "dj"}, + CountryToIsoIndex{85118, "dj"}, + CountryToIsoIndex{85126, "dj"}, + CountryToIsoIndex{85134, "dj"}, + CountryToIsoIndex{85142, "dj"}, + CountryToIsoIndex{85151, "za"}, + CountryToIsoIndex{85174, "cl"}, + CountryToIsoIndex{85179, "gn"}, + CountryToIsoIndex{85187, "gw"}, + CountryToIsoIndex{85202, "ge"}, + CountryToIsoIndex{85212, "ge"}, + CountryToIsoIndex{85220, "ge"}, + CountryToIsoIndex{85229, "gs"}, + CountryToIsoIndex{85275, "kr"}, + CountryToIsoIndex{85289, "ss"}, + CountryToIsoIndex{85305, "je"}, + CountryToIsoIndex{85313, "jp"}, + CountryToIsoIndex{85321, "dj"}, + CountryToIsoIndex{85329, "gb"}, + CountryToIsoIndex{85332, "jo"}, + CountryToIsoIndex{85339, "ge"}, + CountryToIsoIndex{85345, "ge"}, + CountryToIsoIndex{85352, "ge"}, + CountryToIsoIndex{85361, "jo"}, + CountryToIsoIndex{85371, "jo"}, + CountryToIsoIndex{85381, "jo"}, + CountryToIsoIndex{85392, "jo"}, + CountryToIsoIndex{85399, "jo"}, + CountryToIsoIndex{85407, "jo"}, + CountryToIsoIndex{85416, "jo"}, + CountryToIsoIndex{85425, "jo"}, + CountryToIsoIndex{85435, "jo"}, + CountryToIsoIndex{85445, "jo"}, + CountryToIsoIndex{85454, "jo"}, + CountryToIsoIndex{85465, "jo"}, + CountryToIsoIndex{85475, "jo"}, + CountryToIsoIndex{85485, "jo"}, + CountryToIsoIndex{85494, "jo"}, + CountryToIsoIndex{85504, "jo"}, + CountryToIsoIndex{85514, "jo"}, + CountryToIsoIndex{85525, "jo"}, + CountryToIsoIndex{85535, "jo"}, + CountryToIsoIndex{85546, "ge"}, + CountryToIsoIndex{85553, "ge"}, + CountryToIsoIndex{85560, "jo"}, + CountryToIsoIndex{85570, "cx"}, + CountryToIsoIndex{85581, "gd"}, + CountryToIsoIndex{85590, "gr"}, + CountryToIsoIndex{85603, "gb"}, + CountryToIsoIndex{85621, "gl"}, + CountryToIsoIndex{85632, "gp"}, + CountryToIsoIndex{85642, "gi"}, + CountryToIsoIndex{85655, "gu"}, + CountryToIsoIndex{85661, "cf"}, + CountryToIsoIndex{85698, "gy"}, + CountryToIsoIndex{85706, "cx"}, + CountryToIsoIndex{85719, "cx"}, + CountryToIsoIndex{85728, "cx"}, + CountryToIsoIndex{85735, "ae"}, + CountryToIsoIndex{85762, "um"}, + CountryToIsoIndex{85810, "vi"}, + CountryToIsoIndex{85847, "gb"}, + CountryToIsoIndex{85868, "us"}, + CountryToIsoIndex{85889, "me"}, + CountryToIsoIndex{85901, "cx"}, + CountryToIsoIndex{85917, "cx"}, + CountryToIsoIndex{85932, "ge"}, + CountryToIsoIndex{85939, "gt"}, + CountryToIsoIndex{85951, "za"}, + CountryToIsoIndex{85977, "gs"}, + CountryToIsoIndex{86021, "gs"}, + CountryToIsoIndex{86067, "gs"}, + CountryToIsoIndex{86110, "gs"}, + CountryToIsoIndex{86152, "gs"}, + CountryToIsoIndex{86195, "kr"}, + CountryToIsoIndex{86209, "ss"}, + CountryToIsoIndex{86222, "za"}, + CountryToIsoIndex{86247, "za"}, + CountryToIsoIndex{86272, "ss"}, + CountryToIsoIndex{86285, "za"}, + CountryToIsoIndex{86300, "gs"}, + CountryToIsoIndex{86346, "kr"}, + CountryToIsoIndex{86361, "ss"}, + CountryToIsoIndex{86376, "ge"}, + CountryToIsoIndex{86384, "jm"}, + CountryToIsoIndex{86395, "ye"}, + CountryToIsoIndex{86402, "ye"}, + CountryToIsoIndex{86408, "dj"}, + CountryToIsoIndex{86417, "jo"}, + CountryToIsoIndex{86425, "ge"}, + CountryToIsoIndex{86432, "cx"}, + CountryToIsoIndex{86440, "cx"}, + CountryToIsoIndex{86453, "jo"}, + CountryToIsoIndex{86464, "cx"}, + CountryToIsoIndex{86475, "gg"}, + CountryToIsoIndex{86485, "je"}, + CountryToIsoIndex{86494, "jo"}, + CountryToIsoIndex{86504, "jo"}, + CountryToIsoIndex{86513, "ge"}, + CountryToIsoIndex{86521, "ge"}, + CountryToIsoIndex{86529, "jo"}, + CountryToIsoIndex{86539, "ge"}, + CountryToIsoIndex{86549, "ky"}, + CountryToIsoIndex{86565, "ky"}, + CountryToIsoIndex{86581, "nc"}, + CountryToIsoIndex{86599, "cm"}, + CountryToIsoIndex{86609, "cv"}, + CountryToIsoIndex{86620, "cv"}, + CountryToIsoIndex{86632, "kz"}, + CountryToIsoIndex{86643, "cv"}, + CountryToIsoIndex{86652, "cv"}, + CountryToIsoIndex{86663, "cv"}, + CountryToIsoIndex{86674, "cv"}, + CountryToIsoIndex{86685, "cv"}, + CountryToIsoIndex{86696, "cv"}, + CountryToIsoIndex{86707, "cv"}, + CountryToIsoIndex{86717, "cv"}, + CountryToIsoIndex{86728, "cv"}, + CountryToIsoIndex{86739, "ky"}, + CountryToIsoIndex{86755, "ky"}, + CountryToIsoIndex{86771, "ky"}, + CountryToIsoIndex{86785, "ky"}, + CountryToIsoIndex{86798, "ky"}, + CountryToIsoIndex{86811, "ky"}, + CountryToIsoIndex{86825, "ky"}, + CountryToIsoIndex{86839, "ky"}, + CountryToIsoIndex{86854, "ky"}, + CountryToIsoIndex{86871, "ky"}, + CountryToIsoIndex{86887, "ky"}, + CountryToIsoIndex{86904, "ky"}, + CountryToIsoIndex{86919, "ky"}, + CountryToIsoIndex{86935, "ky"}, + CountryToIsoIndex{86951, "ky"}, + CountryToIsoIndex{86970, "ky"}, + CountryToIsoIndex{86978, "ky"}, + CountryToIsoIndex{86995, "gl"}, + CountryToIsoIndex{87012, "nc"}, + CountryToIsoIndex{87027, "nc"}, + CountryToIsoIndex{87043, "nc"}, + CountryToIsoIndex{87060, "nc"}, + CountryToIsoIndex{87077, "nc"}, + CountryToIsoIndex{87092, "nc"}, + CountryToIsoIndex{87109, "nc"}, + CountryToIsoIndex{87124, "nc"}, + CountryToIsoIndex{87141, "nc"}, + CountryToIsoIndex{87157, "nc"}, + CountryToIsoIndex{87174, "nc"}, + CountryToIsoIndex{87192, "nc"}, + CountryToIsoIndex{87208, "nc"}, + CountryToIsoIndex{87224, "nc"}, + CountryToIsoIndex{87242, "nc"}, + CountryToIsoIndex{87262, "nc"}, + CountryToIsoIndex{87281, "bq"}, + CountryToIsoIndex{87303, "gr"}, + CountryToIsoIndex{87310, "fk"}, + CountryToIsoIndex{87324, "cx"}, + CountryToIsoIndex{87338, "nc"}, + CountryToIsoIndex{87358, "cm"}, + CountryToIsoIndex{87366, "cm"}, + CountryToIsoIndex{87373, "cm"}, + CountryToIsoIndex{87383, "kh"}, + CountryToIsoIndex{87391, "kh"}, + CountryToIsoIndex{87400, "kh"}, + CountryToIsoIndex{87416, "kh"}, + CountryToIsoIndex{87426, "kh"}, + CountryToIsoIndex{87434, "kh"}, + CountryToIsoIndex{87443, "kh"}, + CountryToIsoIndex{87454, "kh"}, + CountryToIsoIndex{87464, "kh"}, + CountryToIsoIndex{87473, "kh"}, + CountryToIsoIndex{87482, "kh"}, + CountryToIsoIndex{87491, "kh"}, + CountryToIsoIndex{87501, "kh"}, + CountryToIsoIndex{87511, "kh"}, + CountryToIsoIndex{87521, "kh"}, + CountryToIsoIndex{87531, "kh"}, + CountryToIsoIndex{87541, "kh"}, + CountryToIsoIndex{87551, "kh"}, + CountryToIsoIndex{87558, "kh"}, + CountryToIsoIndex{87566, "kh"}, + CountryToIsoIndex{87574, "kh"}, + CountryToIsoIndex{87582, "kh"}, + CountryToIsoIndex{87593, "kh"}, + CountryToIsoIndex{87602, "kh"}, + CountryToIsoIndex{87612, "kh"}, + CountryToIsoIndex{87622, "kh"}, + CountryToIsoIndex{87631, "kh"}, + CountryToIsoIndex{87640, "kh"}, + CountryToIsoIndex{87648, "kh"}, + CountryToIsoIndex{87657, "gm"}, + CountryToIsoIndex{87665, "kh"}, + CountryToIsoIndex{87675, "kh"}, + CountryToIsoIndex{87686, "kh"}, + CountryToIsoIndex{87696, "cm"}, + CountryToIsoIndex{87705, "cm"}, + CountryToIsoIndex{87714, "cm"}, + CountryToIsoIndex{87723, "cm"}, + CountryToIsoIndex{87732, "cm"}, + CountryToIsoIndex{87742, "cm"}, + CountryToIsoIndex{87750, "cm"}, + CountryToIsoIndex{87765, "cm"}, + CountryToIsoIndex{87774, "cm"}, + CountryToIsoIndex{87783, "cm"}, + CountryToIsoIndex{87792, "cm"}, + CountryToIsoIndex{87801, "cm"}, + CountryToIsoIndex{87811, "cm"}, + CountryToIsoIndex{87820, "cm"}, + CountryToIsoIndex{87829, "cm"}, + CountryToIsoIndex{87840, "cm"}, + CountryToIsoIndex{87850, "cm"}, + CountryToIsoIndex{87860, "cm"}, + CountryToIsoIndex{87871, "gm"}, + CountryToIsoIndex{87879, "kh"}, + CountryToIsoIndex{87890, "cm"}, + CountryToIsoIndex{87898, "cm"}, + CountryToIsoIndex{87908, "km"}, + CountryToIsoIndex{87916, "cm"}, + CountryToIsoIndex{87926, "cm"}, + CountryToIsoIndex{87936, "cm"}, + CountryToIsoIndex{87945, "cm"}, + CountryToIsoIndex{87955, "cm"}, + CountryToIsoIndex{87965, "gh"}, + CountryToIsoIndex{87970, "ca"}, + CountryToIsoIndex{87978, "ic"}, + CountryToIsoIndex{87993, "ca"}, + CountryToIsoIndex{88000, "ca"}, + CountryToIsoIndex{88008, "ca"}, + CountryToIsoIndex{88016, "ca"}, + CountryToIsoIndex{88023, "ca"}, + CountryToIsoIndex{88031, "ca"}, + CountryToIsoIndex{88039, "ca"}, + CountryToIsoIndex{88047, "ca"}, + CountryToIsoIndex{88056, "ca"}, + CountryToIsoIndex{88064, "ca"}, + CountryToIsoIndex{88072, "ic"}, + CountryToIsoIndex{88086, "ic"}, + CountryToIsoIndex{88101, "ic"}, + CountryToIsoIndex{88116, "ic"}, + CountryToIsoIndex{88134, "ic"}, + CountryToIsoIndex{88161, "ic"}, + CountryToIsoIndex{88178, "ic"}, + CountryToIsoIndex{88187, "ic"}, + CountryToIsoIndex{88202, "ic"}, + CountryToIsoIndex{88218, "ic"}, + CountryToIsoIndex{88236, "ic"}, + CountryToIsoIndex{88250, "ic"}, + CountryToIsoIndex{88268, "ic"}, + CountryToIsoIndex{88283, "ic"}, + CountryToIsoIndex{88298, "ic"}, + CountryToIsoIndex{88313, "ic"}, + CountryToIsoIndex{88326, "ic"}, + CountryToIsoIndex{88339, "ic"}, + CountryToIsoIndex{88356, "ic"}, + CountryToIsoIndex{88372, "ic"}, + CountryToIsoIndex{88387, "ic"}, + CountryToIsoIndex{88402, "ic"}, + CountryToIsoIndex{88419, "ic"}, + CountryToIsoIndex{88439, "ic"}, + CountryToIsoIndex{88452, "ic"}, + CountryToIsoIndex{88466, "kh"}, + CountryToIsoIndex{88475, "eh"}, + CountryToIsoIndex{88492, "gh"}, + CountryToIsoIndex{88498, "ca"}, + CountryToIsoIndex{88506, "ic"}, + CountryToIsoIndex{88523, "ic"}, + CountryToIsoIndex{88533, "ic"}, + CountryToIsoIndex{88548, "ic"}, + CountryToIsoIndex{88566, "ic"}, + CountryToIsoIndex{88585, "ca"}, + CountryToIsoIndex{88593, "ic"}, + CountryToIsoIndex{88609, "cv"}, + CountryToIsoIndex{88623, "cv"}, + CountryToIsoIndex{88631, "cv"}, + CountryToIsoIndex{88641, "cv"}, + CountryToIsoIndex{88649, "cv"}, + CountryToIsoIndex{88660, "cv"}, + CountryToIsoIndex{88678, "ga"}, + CountryToIsoIndex{88685, "cv"}, + CountryToIsoIndex{88696, "cv"}, + CountryToIsoIndex{88711, "cv"}, + CountryToIsoIndex{88721, "cv"}, + CountryToIsoIndex{88730, "cv"}, + CountryToIsoIndex{88738, "ga"}, + CountryToIsoIndex{88748, "me"}, + CountryToIsoIndex{88757, "bq"}, + CountryToIsoIndex{88776, "bq"}, + CountryToIsoIndex{88795, "bq"}, + CountryToIsoIndex{88815, "bq"}, + CountryToIsoIndex{88833, "bq"}, + CountryToIsoIndex{88850, "bq"}, + CountryToIsoIndex{88868, "bq"}, + CountryToIsoIndex{88904, "bq"}, + CountryToIsoIndex{88925, "bq"}, + CountryToIsoIndex{88944, "bq"}, + CountryToIsoIndex{88964, "bq"}, + CountryToIsoIndex{88984, "bq"}, + CountryToIsoIndex{89003, "bq"}, + CountryToIsoIndex{89028, "bq"}, + CountryToIsoIndex{89050, "bq"}, + CountryToIsoIndex{89070, "bq"}, + CountryToIsoIndex{89091, "bq"}, + CountryToIsoIndex{89110, "bq"}, + CountryToIsoIndex{89130, "bq"}, + CountryToIsoIndex{89149, "bq"}, + CountryToIsoIndex{89175, "ge"}, + CountryToIsoIndex{89186, "cx"}, + CountryToIsoIndex{89204, "bq"}, + CountryToIsoIndex{89230, "kz"}, + CountryToIsoIndex{89244, "kz"}, + CountryToIsoIndex{89257, "kz"}, + CountryToIsoIndex{89268, "kz"}, + CountryToIsoIndex{89278, "kz"}, + CountryToIsoIndex{89289, "kz"}, + CountryToIsoIndex{89301, "kz"}, + CountryToIsoIndex{89314, "kz"}, + CountryToIsoIndex{89325, "kz"}, + CountryToIsoIndex{89338, "kz"}, + CountryToIsoIndex{89349, "kz"}, + CountryToIsoIndex{89359, "kz"}, + CountryToIsoIndex{89370, "kz"}, + CountryToIsoIndex{89381, "kz"}, + CountryToIsoIndex{89393, "qa"}, + CountryToIsoIndex{89398, "qa"}, + CountryToIsoIndex{89404, "qa"}, + CountryToIsoIndex{89411, "qa"}, + CountryToIsoIndex{89418, "qa"}, + CountryToIsoIndex{89425, "qa"}, + CountryToIsoIndex{89431, "qa"}, + CountryToIsoIndex{89444, "qa"}, + CountryToIsoIndex{89451, "qa"}, + CountryToIsoIndex{89459, "qa"}, + CountryToIsoIndex{89466, "qa"}, + CountryToIsoIndex{89473, "qa"}, + CountryToIsoIndex{89481, "qa"}, + CountryToIsoIndex{89487, "qa"}, + CountryToIsoIndex{89493, "qa"}, + CountryToIsoIndex{89501, "qa"}, + CountryToIsoIndex{89510, "qa"}, + CountryToIsoIndex{89517, "qa"}, + CountryToIsoIndex{89525, "qa"}, + CountryToIsoIndex{89531, "ky"}, + CountryToIsoIndex{89547, "ky"}, + CountryToIsoIndex{89561, "ky"}, + CountryToIsoIndex{89578, "ky"}, + CountryToIsoIndex{89594, "ky"}, + CountryToIsoIndex{89621, "ky"}, + CountryToIsoIndex{89640, "kz"}, + CountryToIsoIndex{89652, "kz"}, + CountryToIsoIndex{89665, "kz"}, + CountryToIsoIndex{89676, "kz"}, + CountryToIsoIndex{89689, "kz"}, + CountryToIsoIndex{89701, "kz"}, + CountryToIsoIndex{89711, "kz"}, + CountryToIsoIndex{89723, "kz"}, + CountryToIsoIndex{89735, "kz"}, + CountryToIsoIndex{89747, "kz"}, + CountryToIsoIndex{89762, "kz"}, + CountryToIsoIndex{89773, "kz"}, + CountryToIsoIndex{89786, "kz"}, + CountryToIsoIndex{89800, "kz"}, + CountryToIsoIndex{89813, "kz"}, + CountryToIsoIndex{89825, "kz"}, + CountryToIsoIndex{89839, "kz"}, + CountryToIsoIndex{89850, "kz"}, + CountryToIsoIndex{89862, "kz"}, + CountryToIsoIndex{89874, "kz"}, + CountryToIsoIndex{89886, "kz"}, + CountryToIsoIndex{89899, "kz"}, + CountryToIsoIndex{89909, "kz"}, + CountryToIsoIndex{89926, "kz"}, + CountryToIsoIndex{89937, "kz"}, + CountryToIsoIndex{89948, "kz"}, + CountryToIsoIndex{89960, "kz"}, + CountryToIsoIndex{89971, "kz"}, + CountryToIsoIndex{89984, "kz"}, + CountryToIsoIndex{89995, "kz"}, + CountryToIsoIndex{90006, "kz"}, + CountryToIsoIndex{90016, "kz"}, + CountryToIsoIndex{90028, "ky"}, + CountryToIsoIndex{90044, "kh"}, + CountryToIsoIndex{90056, "io"}, + CountryToIsoIndex{90105, "ky"}, + CountryToIsoIndex{90122, "ke"}, + CountryToIsoIndex{90129, "ke"}, + CountryToIsoIndex{90137, "ke"}, + CountryToIsoIndex{90145, "ke"}, + CountryToIsoIndex{90154, "io"}, + CountryToIsoIndex{90188, "ke"}, + CountryToIsoIndex{90195, "ky"}, + CountryToIsoIndex{90204, "cz"}, + CountryToIsoIndex{90211, "de"}, + CountryToIsoIndex{90222, "gd"}, + CountryToIsoIndex{90232, "gd"}, + CountryToIsoIndex{90242, "tl"}, + CountryToIsoIndex{90254, "ky"}, + CountryToIsoIndex{90270, "kh"}, + CountryToIsoIndex{90278, "cm"}, + CountryToIsoIndex{90287, "dk"}, + CountryToIsoIndex{90296, "ke"}, + CountryToIsoIndex{90302, "ke"}, + CountryToIsoIndex{90309, "ke"}, + CountryToIsoIndex{90316, "ke"}, + CountryToIsoIndex{90323, "ke"}, + CountryToIsoIndex{90331, "ke"}, + CountryToIsoIndex{90338, "ke"}, + CountryToIsoIndex{90344, "ke"}, + CountryToIsoIndex{90350, "ke"}, + CountryToIsoIndex{90356, "ke"}, + CountryToIsoIndex{90369, "ke"}, + CountryToIsoIndex{90376, "ke"}, + CountryToIsoIndex{90384, "ke"}, + CountryToIsoIndex{90392, "ke"}, + CountryToIsoIndex{90399, "es"}, + CountryToIsoIndex{90407, "cv"}, + CountryToIsoIndex{90423, "cv"}, + CountryToIsoIndex{90443, "ax"}, + CountryToIsoIndex{90459, "ic"}, + CountryToIsoIndex{90476, "ky"}, + CountryToIsoIndex{90493, "cc"}, + CountryToIsoIndex{90519, "ck"}, + CountryToIsoIndex{90534, "fk"}, + CountryToIsoIndex{90553, "fk"}, + CountryToIsoIndex{90589, "fo"}, + CountryToIsoIndex{90605, "gs"}, + CountryToIsoIndex{90650, "hm"}, + CountryToIsoIndex{90677, "fk"}, + CountryToIsoIndex{90696, "fk"}, + CountryToIsoIndex{90726, "mp"}, + CountryToIsoIndex{90750, "mh"}, + CountryToIsoIndex{90769, "nf"}, + CountryToIsoIndex{90787, "pn"}, + CountryToIsoIndex{90806, "sb"}, + CountryToIsoIndex{90824, "sj"}, + CountryToIsoIndex{90857, "um"}, + CountryToIsoIndex{90880, "um"}, + CountryToIsoIndex{90905, "tc"}, + CountryToIsoIndex{90932, "vi"}, + CountryToIsoIndex{90954, "vg"}, + CountryToIsoIndex{90979, "vg"}, + CountryToIsoIndex{91004, "wf"}, + CountryToIsoIndex{91032, "cv"}, + CountryToIsoIndex{91041, "cv"}, + CountryToIsoIndex{91052, "cv"}, + CountryToIsoIndex{91070, "sh"}, + CountryToIsoIndex{91094, "cx"}, + CountryToIsoIndex{91105, "hr"}, + CountryToIsoIndex{91114, "cf"}, + CountryToIsoIndex{91136, "cf"}, + CountryToIsoIndex{91160, "ea"}, + CountryToIsoIndex{91185, "ke"}, + CountryToIsoIndex{91192, "ke"}, + CountryToIsoIndex{91198, "cm"}, + CountryToIsoIndex{91208, "gh"}, + CountryToIsoIndex{91214, "ca"}, + CountryToIsoIndex{91222, "ke"}, + CountryToIsoIndex{91229, "ki"}, + CountryToIsoIndex{91239, "co"}, + CountryToIsoIndex{91250, "km"}, + CountryToIsoIndex{91258, "cg"}, + CountryToIsoIndex{91265, "cr"}, + CountryToIsoIndex{91278, "ez"}, + CountryToIsoIndex{91301, "kw"}, + CountryToIsoIndex{91310, "cu"}, + CountryToIsoIndex{91315, "kg"}, + CountryToIsoIndex{91326, "kg"}, + CountryToIsoIndex{91337, "kg"}, + CountryToIsoIndex{91348, "kg"}, + CountryToIsoIndex{91360, "ki"}, + CountryToIsoIndex{91368, "kg"}, + CountryToIsoIndex{91381, "cn"}, + CountryToIsoIndex{91387, "ke"}, + CountryToIsoIndex{91395, "cn"}, + CountryToIsoIndex{91403, "gn"}, + CountryToIsoIndex{91410, "gw"}, + CountryToIsoIndex{91423, "cl"}, + CountryToIsoIndex{91428, "ki"}, + CountryToIsoIndex{91437, "kg"}, + CountryToIsoIndex{91452, "kg"}, + CountryToIsoIndex{91466, "kg"}, + CountryToIsoIndex{91481, "ki"}, + CountryToIsoIndex{91490, "ki"}, + CountryToIsoIndex{91500, "gr"}, + CountryToIsoIndex{91511, "cn"}, + CountryToIsoIndex{91516, "gn"}, + CountryToIsoIndex{91521, "gw"}, + CountryToIsoIndex{91532, "cn"}, + CountryToIsoIndex{91539, "ke"}, + CountryToIsoIndex{91545, "cn"}, + CountryToIsoIndex{91551, "gq"}, + CountryToIsoIndex{91567, "cn"}, + CountryToIsoIndex{91573, "cu"}, + CountryToIsoIndex{91580, "kg"}, + CountryToIsoIndex{91591, "cy"}, + CountryToIsoIndex{91597, "cy"}, + CountryToIsoIndex{91602, "cy"}, + CountryToIsoIndex{91608, "cy"}, + CountryToIsoIndex{91615, "cy"}, + CountryToIsoIndex{91624, "cy"}, + CountryToIsoIndex{91630, "cy"}, + CountryToIsoIndex{91637, "cw"}, + CountryToIsoIndex{91645, "kg"}, + CountryToIsoIndex{91658, "kg"}, + CountryToIsoIndex{91671, "kg"}, + CountryToIsoIndex{91683, "kg"}, + CountryToIsoIndex{91698, "kg"}, + CountryToIsoIndex{91707, "kg"}, + CountryToIsoIndex{91719, "kg"}, + CountryToIsoIndex{91730, "kg"}, + CountryToIsoIndex{91740, "kg"}, + CountryToIsoIndex{91751, "kg"}, + CountryToIsoIndex{91762, "kg"}, + CountryToIsoIndex{91772, "kg"}, + CountryToIsoIndex{91784, "kg"}, + CountryToIsoIndex{91797, "kg"}, + CountryToIsoIndex{91811, "kg"}, + CountryToIsoIndex{91821, "kg"}, + CountryToIsoIndex{91831, "kg"}, + CountryToIsoIndex{91849, "kg"}, + CountryToIsoIndex{91861, "kg"}, + CountryToIsoIndex{91874, "kg"}, + CountryToIsoIndex{91885, "kg"}, + CountryToIsoIndex{91897, "kg"}, + CountryToIsoIndex{91910, "kg"}, + CountryToIsoIndex{91924, "ki"}, + CountryToIsoIndex{91934, "ki"}, + CountryToIsoIndex{91943, "ki"}, + CountryToIsoIndex{91952, "ki"}, + CountryToIsoIndex{91968, "ki"}, + CountryToIsoIndex{91978, "ki"}, + CountryToIsoIndex{91987, "ki"}, + CountryToIsoIndex{91997, "ki"}, + CountryToIsoIndex{92007, "ki"}, + CountryToIsoIndex{92018, "ki"}, + CountryToIsoIndex{92028, "kg"}, + CountryToIsoIndex{92041, "kg"}, + CountryToIsoIndex{92056, "kg"}, + CountryToIsoIndex{92067, "kg"}, + CountryToIsoIndex{92081, "kg"}, + CountryToIsoIndex{92097, "kg"}, + CountryToIsoIndex{92112, "kg"}, + CountryToIsoIndex{92126, "kg"}, + CountryToIsoIndex{92141, "kg"}, + CountryToIsoIndex{92156, "kg"}, + CountryToIsoIndex{92168, "kg"}, + CountryToIsoIndex{92179, "kg"}, + CountryToIsoIndex{92192, "ac"}, + CountryToIsoIndex{92213, "bv"}, + CountryToIsoIndex{92231, "cx"}, + CountryToIsoIndex{92252, "cp"}, + CountryToIsoIndex{92274, "hm"}, + CountryToIsoIndex{92314, "cx"}, + CountryToIsoIndex{92334, "nf"}, + CountryToIsoIndex{92352, "nf"}, + CountryToIsoIndex{92370, "nf"}, + CountryToIsoIndex{92389, "nf"}, + CountryToIsoIndex{92413, "jp"}, + CountryToIsoIndex{92435, "cn"}, + CountryToIsoIndex{92444, "nf"}, + CountryToIsoIndex{92463, "ps"}, + CountryToIsoIndex{92486, "cz"}, + CountryToIsoIndex{92505, "cd"}, + CountryToIsoIndex{92524, "do"}, + CountryToIsoIndex{92550, "cu"}, + CountryToIsoIndex{92556, "cu"}, + CountryToIsoIndex{92563, "cu"}, + CountryToIsoIndex{92569, "cw"}, + CountryToIsoIndex{92578, "cu"}, + CountryToIsoIndex{92586, "nf"}, + CountryToIsoIndex{92609, "td"}, + CountryToIsoIndex{92614, "um"}, + CountryToIsoIndex{92649, "um"}, + CountryToIsoIndex{92699, "cp"}, + CountryToIsoIndex{92726, "cp"}, + CountryToIsoIndex{92742, "cp"}, + CountryToIsoIndex{92758, "cp"}, + CountryToIsoIndex{92775, "cp"}, + CountryToIsoIndex{92793, "cp"}, + CountryToIsoIndex{92810, "ci"}, + CountryToIsoIndex{92819, "ci"}, + CountryToIsoIndex{92829, "ci"}, + CountryToIsoIndex{92841, "ci"}, + CountryToIsoIndex{92849, "ci"}, + CountryToIsoIndex{92858, "ci"}, + CountryToIsoIndex{92886, "ci"}, + CountryToIsoIndex{92895, "kw"}, + CountryToIsoIndex{92903, "cc"}, + CountryToIsoIndex{92926, "cc"}, + CountryToIsoIndex{92958, "cc"}, + CountryToIsoIndex{92982, "cc"}, + CountryToIsoIndex{93006, "cc"}, + CountryToIsoIndex{93021, "cc"}, + CountryToIsoIndex{93033, "cc"}, + CountryToIsoIndex{93046, "cc"}, + CountryToIsoIndex{93058, "cc"}, + CountryToIsoIndex{93071, "cc"}, + CountryToIsoIndex{93083, "cc"}, + CountryToIsoIndex{93095, "cc"}, + CountryToIsoIndex{93124, "cc"}, + CountryToIsoIndex{93152, "cc"}, + CountryToIsoIndex{93180, "cc"}, + CountryToIsoIndex{93195, "cc"}, + CountryToIsoIndex{93213, "cc"}, + CountryToIsoIndex{93227, "cc"}, + CountryToIsoIndex{93240, "cc"}, + CountryToIsoIndex{93264, "cc"}, + CountryToIsoIndex{93276, "cc"}, + CountryToIsoIndex{93288, "cc"}, + CountryToIsoIndex{93300, "cc"}, + CountryToIsoIndex{93324, "co"}, + CountryToIsoIndex{93334, "hr"}, + CountryToIsoIndex{93342, "hr"}, + CountryToIsoIndex{93351, "kp"}, + CountryToIsoIndex{93368, "kp"}, + CountryToIsoIndex{93384, "kr"}, + CountryToIsoIndex{93397, "kr"}, + CountryToIsoIndex{93414, "kp"}, + CountryToIsoIndex{93446, "va"}, + CountryToIsoIndex{93460, "co"}, + CountryToIsoIndex{93468, "co"}, + CountryToIsoIndex{93477, "co"}, + CountryToIsoIndex{93493, "co"}, + CountryToIsoIndex{93502, "co"}, + CountryToIsoIndex{93512, "co"}, + CountryToIsoIndex{93521, "co"}, + CountryToIsoIndex{93531, "co"}, + CountryToIsoIndex{93541, "co"}, + CountryToIsoIndex{93549, "co"}, + CountryToIsoIndex{93558, "hr"}, + CountryToIsoIndex{93569, "co"}, + CountryToIsoIndex{93577, "co"}, + CountryToIsoIndex{93586, "co"}, + CountryToIsoIndex{93595, "co"}, + CountryToIsoIndex{93605, "co"}, + CountryToIsoIndex{93615, "co"}, + CountryToIsoIndex{93625, "co"}, + CountryToIsoIndex{93636, "co"}, + CountryToIsoIndex{93646, "co"}, + CountryToIsoIndex{93657, "co"}, + CountryToIsoIndex{93667, "co"}, + CountryToIsoIndex{93677, "co"}, + CountryToIsoIndex{93687, "kh"}, + CountryToIsoIndex{93696, "km"}, + CountryToIsoIndex{93703, "km"}, + CountryToIsoIndex{93712, "km"}, + CountryToIsoIndex{93721, "km"}, + CountryToIsoIndex{93728, "km"}, + CountryToIsoIndex{93736, "km"}, + CountryToIsoIndex{93745, "km"}, + CountryToIsoIndex{93754, "km"}, + CountryToIsoIndex{93760, "km"}, + CountryToIsoIndex{93774, "km"}, + CountryToIsoIndex{93789, "km"}, + CountryToIsoIndex{93804, "km"}, + CountryToIsoIndex{93811, "km"}, + CountryToIsoIndex{93819, "km"}, + CountryToIsoIndex{93828, "km"}, + CountryToIsoIndex{93835, "km"}, + CountryToIsoIndex{93844, "km"}, + CountryToIsoIndex{93852, "km"}, + CountryToIsoIndex{93860, "km"}, + CountryToIsoIndex{93869, "km"}, + CountryToIsoIndex{93879, "km"}, + CountryToIsoIndex{93887, "km"}, + CountryToIsoIndex{93894, "km"}, + CountryToIsoIndex{93902, "km"}, + CountryToIsoIndex{93911, "km"}, + CountryToIsoIndex{93918, "km"}, + CountryToIsoIndex{93926, "km"}, + CountryToIsoIndex{93934, "km"}, + CountryToIsoIndex{93949, "km"}, + CountryToIsoIndex{93958, "km"}, + CountryToIsoIndex{93971, "km"}, + CountryToIsoIndex{93987, "km"}, + CountryToIsoIndex{93994, "km"}, + CountryToIsoIndex{94007, "km"}, + CountryToIsoIndex{94014, "km"}, + CountryToIsoIndex{94022, "km"}, + CountryToIsoIndex{94030, "km"}, + CountryToIsoIndex{94039, "km"}, + CountryToIsoIndex{94046, "km"}, + CountryToIsoIndex{94054, "km"}, + CountryToIsoIndex{94063, "cg"}, + CountryToIsoIndex{94081, "cd"}, + CountryToIsoIndex{94097, "cg"}, + CountryToIsoIndex{94103, "cg"}, + CountryToIsoIndex{94121, "cd"}, + CountryToIsoIndex{94151, "cd"}, + CountryToIsoIndex{94182, "cd"}, + CountryToIsoIndex{94213, "cd"}, + CountryToIsoIndex{94251, "cd"}, + CountryToIsoIndex{94281, "cd"}, + CountryToIsoIndex{94292, "cd"}, + CountryToIsoIndex{94304, "cd"}, + CountryToIsoIndex{94316, "cd"}, + CountryToIsoIndex{94328, "cd"}, + CountryToIsoIndex{94345, "cg"}, + CountryToIsoIndex{94364, "cd"}, + CountryToIsoIndex{94376, "cd"}, + CountryToIsoIndex{94390, "cd"}, + CountryToIsoIndex{94402, "cg"}, + CountryToIsoIndex{94419, "cg"}, + CountryToIsoIndex{94441, "cg"}, + CountryToIsoIndex{94458, "cg"}, + CountryToIsoIndex{94476, "cg"}, + CountryToIsoIndex{94495, "cg"}, + CountryToIsoIndex{94506, "cd"}, + CountryToIsoIndex{94519, "cg"}, + CountryToIsoIndex{94536, "cg"}, + CountryToIsoIndex{94556, "cg"}, + CountryToIsoIndex{94574, "cd"}, + CountryToIsoIndex{94591, "cd"}, + CountryToIsoIndex{94608, "cd"}, + CountryToIsoIndex{94625, "cd"}, + CountryToIsoIndex{94642, "cg"}, + CountryToIsoIndex{94661, "cd"}, + CountryToIsoIndex{94676, "cg"}, + CountryToIsoIndex{94694, "cg"}, + CountryToIsoIndex{94719, "cg"}, + CountryToIsoIndex{94737, "cd"}, + CountryToIsoIndex{94772, "cd"}, + CountryToIsoIndex{94801, "cd"}, + CountryToIsoIndex{94835, "cd"}, + CountryToIsoIndex{94865, "cd"}, + CountryToIsoIndex{94896, "cd"}, + CountryToIsoIndex{94905, "cd"}, + CountryToIsoIndex{94937, "cd"}, + CountryToIsoIndex{94959, "cg"}, + CountryToIsoIndex{94982, "cg"}, + CountryToIsoIndex{94999, "cg"}, + CountryToIsoIndex{95017, "cg"}, + CountryToIsoIndex{95032, "cg"}, + CountryToIsoIndex{95052, "cg"}, + CountryToIsoIndex{95074, "cd"}, + CountryToIsoIndex{95093, "cd"}, + CountryToIsoIndex{95118, "cg"}, + CountryToIsoIndex{95135, "cg"}, + CountryToIsoIndex{95153, "cd"}, + CountryToIsoIndex{95168, "cg"}, + CountryToIsoIndex{95188, "cd"}, + CountryToIsoIndex{95221, "cg"}, + CountryToIsoIndex{95229, "cd"}, + CountryToIsoIndex{95261, "cg"}, + CountryToIsoIndex{95278, "cg"}, + CountryToIsoIndex{95285, "cd"}, + CountryToIsoIndex{95312, "cg"}, + CountryToIsoIndex{95318, "cg"}, + CountryToIsoIndex{95336, "cd"}, + CountryToIsoIndex{95352, "cg"}, + CountryToIsoIndex{95359, "cd"}, + CountryToIsoIndex{95372, "cg"}, + CountryToIsoIndex{95396, "cd"}, + CountryToIsoIndex{95432, "cg"}, + CountryToIsoIndex{95454, "cg"}, + CountryToIsoIndex{95475, "cd"}, + CountryToIsoIndex{95493, "cd"}, + CountryToIsoIndex{95507, "cg"}, + CountryToIsoIndex{95526, "cd"}, + CountryToIsoIndex{95542, "cd"}, + CountryToIsoIndex{95559, "cg"}, + CountryToIsoIndex{95566, "cg"}, + CountryToIsoIndex{95573, "cd"}, + CountryToIsoIndex{95585, "cg"}, + CountryToIsoIndex{95604, "cg"}, + CountryToIsoIndex{95622, "cd"}, + CountryToIsoIndex{95639, "cd"}, + CountryToIsoIndex{95673, "cg"}, + CountryToIsoIndex{95693, "ck"}, + CountryToIsoIndex{95708, "ck"}, + CountryToIsoIndex{95721, "ck"}, + CountryToIsoIndex{95744, "cc"}, + CountryToIsoIndex{95757, "cc"}, + CountryToIsoIndex{95786, "cc"}, + CountryToIsoIndex{95819, "za"}, + CountryToIsoIndex{95834, "ss"}, + CountryToIsoIndex{95850, "kp"}, + CountryToIsoIndex{95864, "kr"}, + CountryToIsoIndex{95878, "hr"}, + CountryToIsoIndex{95886, "hr"}, + CountryToIsoIndex{95895, "hr"}, + CountryToIsoIndex{95904, "kp"}, + CountryToIsoIndex{95914, "kp"}, + CountryToIsoIndex{95928, "kr"}, + CountryToIsoIndex{95944, "kp"}, + CountryToIsoIndex{95959, "kr"}, + CountryToIsoIndex{95971, "kr"}, + CountryToIsoIndex{95984, "kp"}, + CountryToIsoIndex{96001, "kp"}, + CountryToIsoIndex{96016, "kp"}, + CountryToIsoIndex{96032, "kp"}, + CountryToIsoIndex{96049, "kr"}, + CountryToIsoIndex{96064, "kr"}, + CountryToIsoIndex{96077, "kr"}, + CountryToIsoIndex{96091, "kp"}, + CountryToIsoIndex{96104, "kr"}, + CountryToIsoIndex{96118, "kp"}, + CountryToIsoIndex{96130, "kr"}, + CountryToIsoIndex{96148, "kp"}, + CountryToIsoIndex{96165, "kr"}, + CountryToIsoIndex{96179, "kr"}, + CountryToIsoIndex{96193, "kp"}, + CountryToIsoIndex{96205, "kp"}, + CountryToIsoIndex{96218, "kr"}, + CountryToIsoIndex{96231, "kp"}, + CountryToIsoIndex{96245, "kr"}, + CountryToIsoIndex{96258, "kp"}, + CountryToIsoIndex{96269, "kr"}, + CountryToIsoIndex{96281, "kp"}, + CountryToIsoIndex{96297, "kr"}, + CountryToIsoIndex{96311, "kr"}, + CountryToIsoIndex{96326, "kp"}, + CountryToIsoIndex{96342, "hr"}, + CountryToIsoIndex{96351, "kr"}, + CountryToIsoIndex{96368, "kp"}, + CountryToIsoIndex{96384, "kp"}, + CountryToIsoIndex{96405, "kr"}, + CountryToIsoIndex{96430, "kp"}, + CountryToIsoIndex{96453, "kr"}, + CountryToIsoIndex{96480, "kp"}, + CountryToIsoIndex{96496, "kr"}, + CountryToIsoIndex{96511, "kp"}, + CountryToIsoIndex{96534, "kr"}, + CountryToIsoIndex{96554, "kp"}, + CountryToIsoIndex{96575, "kr"}, + CountryToIsoIndex{96600, "hr"}, + CountryToIsoIndex{96610, "co"}, + CountryToIsoIndex{96620, "km"}, + CountryToIsoIndex{96627, "hr"}, + CountryToIsoIndex{96636, "hr"}, + CountryToIsoIndex{96647, "hr"}, + CountryToIsoIndex{96657, "hr"}, + CountryToIsoIndex{96666, "hr"}, + CountryToIsoIndex{96678, "kp"}, + CountryToIsoIndex{96693, "kr"}, + CountryToIsoIndex{96708, "kp"}, + CountryToIsoIndex{96724, "kr"}, + CountryToIsoIndex{96738, "kr"}, + CountryToIsoIndex{96754, "kp"}, + CountryToIsoIndex{96776, "hr"}, + CountryToIsoIndex{96786, "kp"}, + CountryToIsoIndex{96803, "kr"}, + CountryToIsoIndex{96821, "kp"}, + CountryToIsoIndex{96839, "kr"}, + CountryToIsoIndex{96854, "kp"}, + CountryToIsoIndex{96867, "kr"}, + CountryToIsoIndex{96877, "cr"}, + CountryToIsoIndex{96889, "cr"}, + CountryToIsoIndex{96901, "cr"}, + CountryToIsoIndex{96912, "cr"}, + CountryToIsoIndex{96923, "cf"}, + CountryToIsoIndex{96949, "xk"}, + CountryToIsoIndex{96956, "xk"}, + CountryToIsoIndex{96964, "xk"}, + CountryToIsoIndex{96971, "xk"}, + CountryToIsoIndex{96978, "xk"}, + CountryToIsoIndex{96986, "xk"}, + CountryToIsoIndex{96993, "ci"}, + CountryToIsoIndex{97009, "ci"}, + CountryToIsoIndex{97044, "cr"}, + CountryToIsoIndex{97056, "cr"}, + CountryToIsoIndex{97067, "cr"}, + CountryToIsoIndex{97085, "cr"}, + CountryToIsoIndex{97097, "cr"}, + CountryToIsoIndex{97109, "cr"}, + CountryToIsoIndex{97121, "cr"}, + CountryToIsoIndex{97132, "cr"}, + CountryToIsoIndex{97144, "cr"}, + CountryToIsoIndex{97154, "cr"}, + CountryToIsoIndex{97164, "cr"}, + CountryToIsoIndex{97174, "cr"}, + CountryToIsoIndex{97184, "cr"}, + CountryToIsoIndex{97195, "xk"}, + CountryToIsoIndex{97204, "ci"}, + CountryToIsoIndex{97218, "ci"}, + CountryToIsoIndex{97232, "va"}, + CountryToIsoIndex{97245, "ci"}, + CountryToIsoIndex{97257, "ci"}, + CountryToIsoIndex{97270, "ci"}, + CountryToIsoIndex{97281, "ci"}, + CountryToIsoIndex{97296, "ci"}, + CountryToIsoIndex{97319, "ci"}, + CountryToIsoIndex{97331, "ci"}, + CountryToIsoIndex{97344, "cr"}, + CountryToIsoIndex{97355, "cr"}, + CountryToIsoIndex{97366, "ci"}, + CountryToIsoIndex{97380, "kw"}, + CountryToIsoIndex{97387, "kw"}, + CountryToIsoIndex{97393, "kw"}, + CountryToIsoIndex{97400, "kw"}, + CountryToIsoIndex{97408, "kw"}, + CountryToIsoIndex{97416, "kw"}, + CountryToIsoIndex{97424, "kw"}, + CountryToIsoIndex{97432, "kw"}, + CountryToIsoIndex{97441, "xk"}, + CountryToIsoIndex{97448, "pg"}, + CountryToIsoIndex{97473, "pk"}, + CountryToIsoIndex{97489, "py"}, + CountryToIsoIndex{97502, "es"}, + CountryToIsoIndex{97510, "pa"}, + CountryToIsoIndex{97519, "pn"}, + CountryToIsoIndex{97533, "pf"}, + CountryToIsoIndex{97562, "pl"}, + CountryToIsoIndex{97570, "pt"}, + CountryToIsoIndex{97580, "pw"}, + CountryToIsoIndex{97590, "pr"}, + CountryToIsoIndex{97602, "es"}, + CountryToIsoIndex{97611, "pe"}, + CountryToIsoIndex{97619, "gr"}, + CountryToIsoIndex{97626, "gr"}, + CountryToIsoIndex{97634, "ru"}, + CountryToIsoIndex{97643, "cx"}, + CountryToIsoIndex{97670, "kn"}, + CountryToIsoIndex{97696, "hr"}, + CountryToIsoIndex{97705, "hr"}, + CountryToIsoIndex{97712, "hr"}, + CountryToIsoIndex{97719, "hr"}, + CountryToIsoIndex{97727, "hr"}, + CountryToIsoIndex{97736, "hr"}, + CountryToIsoIndex{97745, "hr"}, + CountryToIsoIndex{97753, "hr"}, + CountryToIsoIndex{97761, "hr"}, + CountryToIsoIndex{97770, "hr"}, + CountryToIsoIndex{97779, "hr"}, + CountryToIsoIndex{97788, "hr"}, + CountryToIsoIndex{97797, "hr"}, + CountryToIsoIndex{97813, "hr"}, + CountryToIsoIndex{97822, "hr"}, + CountryToIsoIndex{97830, "hr"}, + CountryToIsoIndex{97839, "hr"}, + CountryToIsoIndex{97847, "hr"}, + CountryToIsoIndex{97857, "hr"}, + CountryToIsoIndex{97867, "hr"}, + CountryToIsoIndex{97876, "hr"}, + CountryToIsoIndex{97885, "hr"}, + CountryToIsoIndex{97895, "hr"}, + CountryToIsoIndex{97903, "hr"}, + CountryToIsoIndex{97911, "hr"}, + CountryToIsoIndex{97919, "cx"}, + CountryToIsoIndex{97930, "hr"}, + CountryToIsoIndex{97941, "hr"}, + CountryToIsoIndex{97951, "by"}, + CountryToIsoIndex{97959, "ci"}, + CountryToIsoIndex{97972, "gu"}, + CountryToIsoIndex{97980, "gu"}, + CountryToIsoIndex{97986, "gp"}, + CountryToIsoIndex{97996, "gt"}, + CountryToIsoIndex{98006, "gp"}, + CountryToIsoIndex{98017, "gt"}, + CountryToIsoIndex{98028, "cu"}, + CountryToIsoIndex{98033, "cu"}, + CountryToIsoIndex{98045, "cu"}, + CountryToIsoIndex{98051, "cu"}, + CountryToIsoIndex{98056, "cu"}, + CountryToIsoIndex{98062, "cu"}, + CountryToIsoIndex{98068, "cu"}, + CountryToIsoIndex{98075, "cu"}, + CountryToIsoIndex{98081, "ci"}, + CountryToIsoIndex{98088, "kw"}, + CountryToIsoIndex{98095, "gg"}, + CountryToIsoIndex{98104, "cu"}, + CountryToIsoIndex{98110, "gy"}, + CountryToIsoIndex{98117, "gf"}, + CountryToIsoIndex{98138, "za"}, + CountryToIsoIndex{98153, "ss"}, + CountryToIsoIndex{98167, "ck"}, + CountryToIsoIndex{98179, "ck"}, + CountryToIsoIndex{98192, "ck"}, + CountryToIsoIndex{98205, "ck"}, + CountryToIsoIndex{98220, "ck"}, + CountryToIsoIndex{98231, "ck"}, + CountryToIsoIndex{98240, "ck"}, + CountryToIsoIndex{98251, "ck"}, + CountryToIsoIndex{98262, "ck"}, + CountryToIsoIndex{98276, "cw"}, + CountryToIsoIndex{98284, "gl"}, + CountryToIsoIndex{98295, "hr"}, + CountryToIsoIndex{98304, "co"}, + CountryToIsoIndex{98312, "co"}, + CountryToIsoIndex{98321, "gl"}, + CountryToIsoIndex{98334, "km"}, + CountryToIsoIndex{98340, "cg"}, + CountryToIsoIndex{98346, "cg"}, + CountryToIsoIndex{98362, "cy"}, + CountryToIsoIndex{98371, "cy"}, + CountryToIsoIndex{98379, "cy"}, + CountryToIsoIndex{98387, "cy"}, + CountryToIsoIndex{98396, "cy"}, + CountryToIsoIndex{98407, "tc"}, + CountryToIsoIndex{98427, "cw"}, + CountryToIsoIndex{98442, "cw"}, + CountryToIsoIndex{98450, "cw"}, + CountryToIsoIndex{98458, "cw"}, + CountryToIsoIndex{98467, "hr"}, + CountryToIsoIndex{98480, "hr"}, + CountryToIsoIndex{98490, "cw"}, + CountryToIsoIndex{98498, "kr"}, + CountryToIsoIndex{98512, "kp"}, + CountryToIsoIndex{98533, "kp"}, + CountryToIsoIndex{98547, "kr"}, + CountryToIsoIndex{98563, "kp"}, + CountryToIsoIndex{98577, "kr"}, + CountryToIsoIndex{98590, "cr"}, + CountryToIsoIndex{98601, "cr"}, + CountryToIsoIndex{98614, "ci"}, + CountryToIsoIndex{98625, "cu"}, + CountryToIsoIndex{98631, "ck"}, + CountryToIsoIndex{98643, "kr"}, + CountryToIsoIndex{98664, "kp"}, + CountryToIsoIndex{98682, "cu"}, + CountryToIsoIndex{98690, "kw"}, + CountryToIsoIndex{98697, "kw"}, + CountryToIsoIndex{98704, "kw"}, + CountryToIsoIndex{98712, "kw"}, + CountryToIsoIndex{98719, "kw"}, + CountryToIsoIndex{98727, "kw"}, + CountryToIsoIndex{98736, "kw"}, + CountryToIsoIndex{98743, "kw"}, + CountryToIsoIndex{98750, "kw"}, + CountryToIsoIndex{98764, "kw"}, + CountryToIsoIndex{98772, "kw"}, + CountryToIsoIndex{98779, "kw"}, + CountryToIsoIndex{98786, "kw"}, + CountryToIsoIndex{98793, "kw"}, + CountryToIsoIndex{98801, "kw"}, + CountryToIsoIndex{98808, "kw"}, + CountryToIsoIndex{98815, "kw"}, + CountryToIsoIndex{98822, "kw"}, + CountryToIsoIndex{98830, "kw"}, + CountryToIsoIndex{98838, "kw"}, + CountryToIsoIndex{98846, "kw"}, + CountryToIsoIndex{98854, "kw"}, + CountryToIsoIndex{98863, "kw"}, + CountryToIsoIndex{98871, "gy"}, + CountryToIsoIndex{98879, "gf"}, + CountryToIsoIndex{98898, "kp"}, + CountryToIsoIndex{98909, "mp"}, + CountryToIsoIndex{98932, "cg"}, + CountryToIsoIndex{98940, "cw"}, + CountryToIsoIndex{98952, "xk"}, + CountryToIsoIndex{98961, "ci"}, + CountryToIsoIndex{98974, "ci"}, + CountryToIsoIndex{98996, "by"}, + CountryToIsoIndex{99010, "il"}, + CountryToIsoIndex{99021, "km"}, + CountryToIsoIndex{99030, "cr"}, + CountryToIsoIndex{99042, "qa"}, + CountryToIsoIndex{99049, "kw"}, + CountryToIsoIndex{99056, "td"}, + CountryToIsoIndex{99061, "cn"}, + CountryToIsoIndex{99068, "cn"}, + CountryToIsoIndex{99075, "cl"}, + CountryToIsoIndex{99081, "cy"}, + CountryToIsoIndex{99086, "cy"}, + CountryToIsoIndex{99093, "kg"}, + CountryToIsoIndex{99104, "kg"}, + CountryToIsoIndex{99115, "kg"}, + CountryToIsoIndex{99128, "kg"}, + CountryToIsoIndex{99140, "cu"}, + CountryToIsoIndex{99146, "cw"}, + CountryToIsoIndex{99155, "cu"}, + CountryToIsoIndex{99163, "cz"}, + CountryToIsoIndex{99179, "nc"}, + CountryToIsoIndex{99204, "nc"}, + CountryToIsoIndex{99228, "cm"}, + CountryToIsoIndex{99238, "kh"}, + CountryToIsoIndex{99249, "kh"}, + CountryToIsoIndex{99261, "kh"}, + CountryToIsoIndex{99269, "cm"}, + CountryToIsoIndex{99281, "cm"}, + CountryToIsoIndex{99294, "ca"}, + CountryToIsoIndex{99303, "qa"}, + CountryToIsoIndex{99311, "kz"}, + CountryToIsoIndex{99326, "kz"}, + CountryToIsoIndex{99340, "kh"}, + CountryToIsoIndex{99350, "ca"}, + CountryToIsoIndex{99358, "ca"}, + CountryToIsoIndex{99367, "ca"}, + CountryToIsoIndex{99376, "cv"}, + CountryToIsoIndex{99385, "ky"}, + CountryToIsoIndex{99397, "eg"}, + CountryToIsoIndex{99406, "kg"}, + CountryToIsoIndex{99419, "ky"}, + CountryToIsoIndex{99434, "kh"}, + CountryToIsoIndex{99444, "ca"}, + CountryToIsoIndex{99453, "ki"}, + CountryToIsoIndex{99464, "ke"}, + CountryToIsoIndex{99472, "ke"}, + CountryToIsoIndex{99479, "ke"}, + CountryToIsoIndex{99486, "kg"}, + CountryToIsoIndex{99502, "cl"}, + CountryToIsoIndex{99509, "kg"}, + CountryToIsoIndex{99526, "ki"}, + CountryToIsoIndex{99538, "cn"}, + CountryToIsoIndex{99544, "ki"}, + CountryToIsoIndex{99555, "co"}, + CountryToIsoIndex{99566, "cr"}, + CountryToIsoIndex{99580, "cr"}, + CountryToIsoIndex{99598, "kw"}, + CountryToIsoIndex{99606, "hr"}, + CountryToIsoIndex{99618, "cg"}, + CountryToIsoIndex{99626, "cd"}, + CountryToIsoIndex{99643, "ci"}, + CountryToIsoIndex{99657, "ci"}, + CountryToIsoIndex{99668, "ck"}, + CountryToIsoIndex{99683, "cc"}, + CountryToIsoIndex{99705, "cc"}, + CountryToIsoIndex{99732, "co"}, + CountryToIsoIndex{99743, "km"}, + CountryToIsoIndex{99755, "cg"}, + CountryToIsoIndex{99762, "cg"}, + CountryToIsoIndex{99770, "cr"}, + CountryToIsoIndex{99788, "cr"}, + CountryToIsoIndex{99801, "cr"}, + CountryToIsoIndex{99816, "xk"}, + CountryToIsoIndex{99826, "ci"}, + CountryToIsoIndex{99838, "ci"}, + CountryToIsoIndex{99851, "kw"}, + CountryToIsoIndex{99859, "co"}, + CountryToIsoIndex{99870, "km"}, + CountryToIsoIndex{99879, "cg"}, + CountryToIsoIndex{99887, "cr"}, + CountryToIsoIndex{99900, "kg"}, + CountryToIsoIndex{99913, "gb"}, + CountryToIsoIndex{99935, "cf"}, + CountryToIsoIndex{99965, "do"}, + CountryToIsoIndex{99994, "cd"}, + CountryToIsoIndex{100037, "cz"}, + CountryToIsoIndex{100063, "km"}, + CountryToIsoIndex{100072, "kw"}, + CountryToIsoIndex{100081, "cf"}, + CountryToIsoIndex{100112, "kp"}, + CountryToIsoIndex{100128, "kr"}, + CountryToIsoIndex{100144, "kw"}, + CountryToIsoIndex{100153, "cu"}, + CountryToIsoIndex{100159, "cu"}, + CountryToIsoIndex{100165, "ck"}, + CountryToIsoIndex{100172, "kw"}, + CountryToIsoIndex{100180, "cu"}, + CountryToIsoIndex{100186, "qo"}, + CountryToIsoIndex{100204, "cy"}, + CountryToIsoIndex{100212, "kw"}, + CountryToIsoIndex{100220, "cy"}, + CountryToIsoIndex{100228, "cy"}, + CountryToIsoIndex{100235, "cw"}, + CountryToIsoIndex{100245, "ca"}, + CountryToIsoIndex{100253, "ca"}, + CountryToIsoIndex{100261, "kg"}, + CountryToIsoIndex{100273, "cn"}, + CountryToIsoIndex{100279, "cy"}, + CountryToIsoIndex{100288, "kg"}, + CountryToIsoIndex{100302, "kp"}, + CountryToIsoIndex{100317, "kr"}, + CountryToIsoIndex{100330, "co"}, + CountryToIsoIndex{100341, "xk"}, + CountryToIsoIndex{100349, "xk"}, + CountryToIsoIndex{100357, "cu"}, + CountryToIsoIndex{100363, "gb"}, + CountryToIsoIndex{100394, "nl"}, + CountryToIsoIndex{100413, "mp"}, + CountryToIsoIndex{100445, "co"}, + CountryToIsoIndex{100457, "kp"}, + CountryToIsoIndex{100476, "kr"}, + CountryToIsoIndex{100492, "co"}, + CountryToIsoIndex{100504, "co"}, + CountryToIsoIndex{100517, "co"}, + CountryToIsoIndex{100531, "km"}, + CountryToIsoIndex{100539, "km"}, + CountryToIsoIndex{100550, "km"}, + CountryToIsoIndex{100565, "km"}, + CountryToIsoIndex{100577, "cg"}, + CountryToIsoIndex{100585, "cd"}, + CountryToIsoIndex{100602, "tl"}, + CountryToIsoIndex{100617, "cr"}, + CountryToIsoIndex{100629, "cr"}, + CountryToIsoIndex{100641, "cr"}, + CountryToIsoIndex{100653, "ci"}, + CountryToIsoIndex{100664, "cg"}, + CountryToIsoIndex{100673, "io"}, + CountryToIsoIndex{100704, "co"}, + CountryToIsoIndex{100719, "km"}, + CountryToIsoIndex{100731, "kr"}, + CountryToIsoIndex{100758, "kp"}, + CountryToIsoIndex{100781, "ci"}, + CountryToIsoIndex{100796, "cd"}, + CountryToIsoIndex{100817, "cg"}, + CountryToIsoIndex{100841, "hr"}, + CountryToIsoIndex{100853, "cm"}, + CountryToIsoIndex{100863, "ke"}, + CountryToIsoIndex{100870, "cv"}, + CountryToIsoIndex{100891, "kg"}, + CountryToIsoIndex{100903, "kp"}, + CountryToIsoIndex{100918, "mp"}, + CountryToIsoIndex{100941, "ke"}, + CountryToIsoIndex{100950, "ke"}, + CountryToIsoIndex{100958, "kw"}, + CountryToIsoIndex{100968, "ci"}, + CountryToIsoIndex{100989, "af"}, + CountryToIsoIndex{101002, "za"}, + CountryToIsoIndex{101021, "al"}, + CountryToIsoIndex{101032, "dz"}, + CountryToIsoIndex{101044, "ao"}, + CountryToIsoIndex{101053, "aq"}, + CountryToIsoIndex{101065, "sa"}, + CountryToIsoIndex{101082, "am"}, + CountryToIsoIndex{101092, "ar"}, + CountryToIsoIndex{101105, "au"}, + CountryToIsoIndex{101117, "at"}, + CountryToIsoIndex{101128, "az"}, + CountryToIsoIndex{101143, "mk"}, + CountryToIsoIndex{101185, "ec"}, + CountryToIsoIndex{101195, "ae"}, + CountryToIsoIndex{101223, "er"}, + CountryToIsoIndex{101233, "ee"}, + CountryToIsoIndex{101243, "et"}, + CountryToIsoIndex{101253, "eg"}, + CountryToIsoIndex{101263, "in"}, + CountryToIsoIndex{101271, "id"}, + CountryToIsoIndex{101284, "ir"}, + CountryToIsoIndex{101291, "iq"}, + CountryToIsoIndex{101298, "ie"}, + CountryToIsoIndex{101308, "va"}, + CountryToIsoIndex{101337, "us"}, + CountryToIsoIndex{101352, "it"}, + CountryToIsoIndex{101361, "is"}, + CountryToIsoIndex{101372, "se"}, + CountryToIsoIndex{101383, "om"}, + CountryToIsoIndex{101390, "ug"}, + CountryToIsoIndex{101399, "ua"}, + CountryToIsoIndex{101409, "hu"}, + CountryToIsoIndex{101420, "uy"}, + CountryToIsoIndex{101430, "uz"}, + CountryToIsoIndex{101444, "ci"}, + CountryToIsoIndex{101464, "mq"}, + CountryToIsoIndex{101477, "re"}, + CountryToIsoIndex{101489, "gb"}, + CountryToIsoIndex{101509, "la"}, + CountryToIsoIndex{101515, "ae"}, + CountryToIsoIndex{101542, "la"}, + CountryToIsoIndex{101549, "lb"}, + CountryToIsoIndex{101557, "lr"}, + CountryToIsoIndex{101566, "cn"}, + CountryToIsoIndex{101572, "lr"}, + CountryToIsoIndex{101581, "fr"}, + CountryToIsoIndex{101589, "gr"}, + CountryToIsoIndex{101596, "sa"}, + CountryToIsoIndex{101603, "lr"}, + CountryToIsoIndex{101612, "lr"}, + CountryToIsoIndex{101621, "jo"}, + CountryToIsoIndex{101631, "lu"}, + CountryToIsoIndex{101644, "lu"}, + CountryToIsoIndex{101657, "kp"}, + CountryToIsoIndex{101670, "kr"}, + CountryToIsoIndex{101683, "lu"}, + CountryToIsoIndex{101694, "al"}, + CountryToIsoIndex{101702, "de"}, + CountryToIsoIndex{101709, "us"}, + CountryToIsoIndex{101717, "us"}, + CountryToIsoIndex{101728, "la"}, + CountryToIsoIndex{101733, "la"}, + CountryToIsoIndex{101745, "la"}, + CountryToIsoIndex{101751, "la"}, + CountryToIsoIndex{101758, "la"}, + CountryToIsoIndex{101764, "la"}, + CountryToIsoIndex{101770, "la"}, + CountryToIsoIndex{101776, "la"}, + CountryToIsoIndex{101783, "sa"}, + CountryToIsoIndex{101798, "re"}, + CountryToIsoIndex{101807, "ru"}, + CountryToIsoIndex{101814, "ar"}, + CountryToIsoIndex{101825, "ru"}, + CountryToIsoIndex{101830, "lu"}, + CountryToIsoIndex{101840, "lu"}, + CountryToIsoIndex{101852, "cn"}, + CountryToIsoIndex{101859, "sy"}, + CountryToIsoIndex{101866, "se"}, + CountryToIsoIndex{101873, "ch"}, + CountryToIsoIndex{101880, "va"}, + CountryToIsoIndex{101893, "lv"}, + CountryToIsoIndex{101900, "lv"}, + CountryToIsoIndex{101908, "lv"}, + CountryToIsoIndex{101915, "lu"}, + CountryToIsoIndex{101926, "lv"}, + CountryToIsoIndex{101935, "lv"}, + CountryToIsoIndex{101942, "lv"}, + CountryToIsoIndex{101950, "lv"}, + CountryToIsoIndex{101959, "lv"}, + CountryToIsoIndex{101967, "lv"}, + CountryToIsoIndex{101975, "lv"}, + CountryToIsoIndex{101982, "lv"}, + CountryToIsoIndex{101996, "lv"}, + CountryToIsoIndex{102004, "lv"}, + CountryToIsoIndex{102012, "lv"}, + CountryToIsoIndex{102020, "lv"}, + CountryToIsoIndex{102029, "la"}, + CountryToIsoIndex{102033, "la"}, + CountryToIsoIndex{102038, "la"}, + CountryToIsoIndex{102044, "la"}, + CountryToIsoIndex{102051, "la"}, + CountryToIsoIndex{102057, "la"}, + CountryToIsoIndex{102064, "la"}, + CountryToIsoIndex{102069, "la"}, + CountryToIsoIndex{102076, "lr"}, + CountryToIsoIndex{102087, "li"}, + CountryToIsoIndex{102099, "la"}, + CountryToIsoIndex{102106, "lu"}, + CountryToIsoIndex{102123, "la"}, + CountryToIsoIndex{102131, "la"}, + CountryToIsoIndex{102137, "la"}, + CountryToIsoIndex{102143, "lt"}, + CountryToIsoIndex{102152, "la"}, + CountryToIsoIndex{102158, "la"}, + CountryToIsoIndex{102166, "lb"}, + CountryToIsoIndex{102175, "ls"}, + CountryToIsoIndex{102183, "lb"}, + CountryToIsoIndex{102191, "lb"}, + CountryToIsoIndex{102200, "lb"}, + CountryToIsoIndex{102210, "lb"}, + CountryToIsoIndex{102221, "lb"}, + CountryToIsoIndex{102237, "lb"}, + CountryToIsoIndex{102247, "lb"}, + CountryToIsoIndex{102257, "lb"}, + CountryToIsoIndex{102266, "ly"}, + CountryToIsoIndex{102274, "ly"}, + CountryToIsoIndex{102281, "lt"}, + CountryToIsoIndex{102287, "ls"}, + CountryToIsoIndex{102295, "li"}, + CountryToIsoIndex{102307, "ae"}, + CountryToIsoIndex{102320, "pl"}, + CountryToIsoIndex{102335, "pl"}, + CountryToIsoIndex{102343, "in"}, + CountryToIsoIndex{102348, "re"}, + CountryToIsoIndex{102354, "ls"}, + CountryToIsoIndex{102363, "lb"}, + CountryToIsoIndex{102372, "cz"}, + CountryToIsoIndex{102388, "do"}, + CountryToIsoIndex{102408, "cf"}, + CountryToIsoIndex{102438, "bs"}, + CountryToIsoIndex{102450, "bm"}, + CountryToIsoIndex{102463, "km"}, + CountryToIsoIndex{102475, "mv"}, + CountryToIsoIndex{102488, "sc"}, + CountryToIsoIndex{102501, "ls"}, + CountryToIsoIndex{102509, "ls"}, + CountryToIsoIndex{102516, "ls"}, + CountryToIsoIndex{102524, "ls"}, + CountryToIsoIndex{102532, "ls"}, + CountryToIsoIndex{102541, "ls"}, + CountryToIsoIndex{102549, "ls"}, + CountryToIsoIndex{102556, "ls"}, + CountryToIsoIndex{102564, "es"}, + CountryToIsoIndex{102572, "ls"}, + CountryToIsoIndex{102581, "ls"}, + CountryToIsoIndex{102590, "ls"}, + CountryToIsoIndex{102599, "ls"}, + CountryToIsoIndex{102608, "us"}, + CountryToIsoIndex{102637, "ae"}, + CountryToIsoIndex{102667, "ls"}, + CountryToIsoIndex{102675, "et"}, + CountryToIsoIndex{102683, "lv"}, + CountryToIsoIndex{102691, "lv"}, + CountryToIsoIndex{102699, "lv"}, + CountryToIsoIndex{102708, "lv"}, + CountryToIsoIndex{102716, "lv"}, + CountryToIsoIndex{102723, "lv"}, + CountryToIsoIndex{102731, "lv"}, + CountryToIsoIndex{102739, "lv"}, + CountryToIsoIndex{102747, "lv"}, + CountryToIsoIndex{102756, "lv"}, + CountryToIsoIndex{102765, "lv"}, + CountryToIsoIndex{102773, "lv"}, + CountryToIsoIndex{102781, "lv"}, + CountryToIsoIndex{102791, "lv"}, + CountryToIsoIndex{102799, "lv"}, + CountryToIsoIndex{102808, "lv"}, + CountryToIsoIndex{102817, "lv"}, + CountryToIsoIndex{102826, "lv"}, + CountryToIsoIndex{102838, "va"}, + CountryToIsoIndex{102859, "lv"}, + CountryToIsoIndex{102868, "lv"}, + CountryToIsoIndex{102877, "lv"}, + CountryToIsoIndex{102886, "li"}, + CountryToIsoIndex{102900, "re"}, + CountryToIsoIndex{102910, "eg"}, + CountryToIsoIndex{102917, "ls"}, + CountryToIsoIndex{102924, "ls"}, + CountryToIsoIndex{102931, "dz"}, + CountryToIsoIndex{102940, "in"}, + CountryToIsoIndex{102946, "in"}, + CountryToIsoIndex{102952, "lb"}, + CountryToIsoIndex{102961, "lb"}, + CountryToIsoIndex{102966, "lb"}, + CountryToIsoIndex{102972, "lb"}, + CountryToIsoIndex{102978, "lb"}, + CountryToIsoIndex{102985, "lb"}, + CountryToIsoIndex{102993, "lb"}, + CountryToIsoIndex{103000, "lb"}, + CountryToIsoIndex{103007, "lb"}, + CountryToIsoIndex{103015, "lb"}, + CountryToIsoIndex{103023, "lb"}, + CountryToIsoIndex{103030, "ly"}, + CountryToIsoIndex{103038, "lr"}, + CountryToIsoIndex{103047, "lr"}, + CountryToIsoIndex{103057, "lr"}, + CountryToIsoIndex{103065, "lr"}, + CountryToIsoIndex{103074, "lr"}, + CountryToIsoIndex{103081, "lr"}, + CountryToIsoIndex{103089, "lr"}, + CountryToIsoIndex{103104, "lr"}, + CountryToIsoIndex{103113, "lr"}, + CountryToIsoIndex{103121, "lr"}, + CountryToIsoIndex{103130, "lr"}, + CountryToIsoIndex{103138, "lr"}, + CountryToIsoIndex{103147, "lr"}, + CountryToIsoIndex{103157, "lr"}, + CountryToIsoIndex{103166, "lr"}, + CountryToIsoIndex{103176, "lr"}, + CountryToIsoIndex{103184, "lr"}, + CountryToIsoIndex{103193, "lr"}, + CountryToIsoIndex{103203, "ly"}, + CountryToIsoIndex{103211, "ly"}, + CountryToIsoIndex{103216, "ly"}, + CountryToIsoIndex{103222, "ly"}, + CountryToIsoIndex{103228, "ly"}, + CountryToIsoIndex{103235, "ly"}, + CountryToIsoIndex{103241, "lr"}, + CountryToIsoIndex{103249, "ly"}, + CountryToIsoIndex{103256, "ly"}, + CountryToIsoIndex{103263, "ly"}, + CountryToIsoIndex{103269, "ly"}, + CountryToIsoIndex{103282, "ly"}, + CountryToIsoIndex{103289, "ly"}, + CountryToIsoIndex{103295, "ly"}, + CountryToIsoIndex{103302, "ly"}, + CountryToIsoIndex{103309, "ly"}, + CountryToIsoIndex{103317, "lb"}, + CountryToIsoIndex{103323, "lb"}, + CountryToIsoIndex{103331, "lr"}, + CountryToIsoIndex{103339, "lr"}, + CountryToIsoIndex{103348, "lr"}, + CountryToIsoIndex{103357, "lr"}, + CountryToIsoIndex{103366, "lr"}, + CountryToIsoIndex{103376, "ly"}, + CountryToIsoIndex{103384, "ly"}, + CountryToIsoIndex{103390, "ly"}, + CountryToIsoIndex{103396, "ly"}, + CountryToIsoIndex{103403, "lb"}, + CountryToIsoIndex{103412, "lb"}, + CountryToIsoIndex{103420, "lr"}, + CountryToIsoIndex{103430, "lr"}, + CountryToIsoIndex{103439, "lr"}, + CountryToIsoIndex{103448, "li"}, + CountryToIsoIndex{103459, "li"}, + CountryToIsoIndex{103472, "li"}, + CountryToIsoIndex{103489, "li"}, + CountryToIsoIndex{103505, "li"}, + CountryToIsoIndex{103522, "li"}, + CountryToIsoIndex{103536, "li"}, + CountryToIsoIndex{103551, "li"}, + CountryToIsoIndex{103567, "li"}, + CountryToIsoIndex{103581, "li"}, + CountryToIsoIndex{103596, "li"}, + CountryToIsoIndex{103610, "li"}, + CountryToIsoIndex{103624, "li"}, + CountryToIsoIndex{103639, "li"}, + CountryToIsoIndex{103654, "li"}, + CountryToIsoIndex{103670, "gb"}, + CountryToIsoIndex{103685, "io"}, + CountryToIsoIndex{103724, "lt"}, + CountryToIsoIndex{103732, "lt"}, + CountryToIsoIndex{103740, "li"}, + CountryToIsoIndex{103753, "li"}, + CountryToIsoIndex{103766, "li"}, + CountryToIsoIndex{103779, "li"}, + CountryToIsoIndex{103793, "li"}, + CountryToIsoIndex{103806, "li"}, + CountryToIsoIndex{103820, "lb"}, + CountryToIsoIndex{103829, "ly"}, + CountryToIsoIndex{103835, "ly"}, + CountryToIsoIndex{103843, "lr"}, + CountryToIsoIndex{103853, "ly"}, + CountryToIsoIndex{103861, "li"}, + CountryToIsoIndex{103872, "lu"}, + CountryToIsoIndex{103884, "lu"}, + CountryToIsoIndex{103896, "li"}, + CountryToIsoIndex{103912, "lu"}, + CountryToIsoIndex{103924, "lu"}, + CountryToIsoIndex{103935, "lu"}, + CountryToIsoIndex{103946, "lu"}, + CountryToIsoIndex{103957, "li"}, + CountryToIsoIndex{103970, "li"}, + CountryToIsoIndex{103982, "nf"}, + CountryToIsoIndex{103994, "ae"}, + CountryToIsoIndex{104002, "ez"}, + CountryToIsoIndex{104021, "li"}, + CountryToIsoIndex{104033, "in"}, + CountryToIsoIndex{104041, "lu"}, + CountryToIsoIndex{104053, "cz"}, + CountryToIsoIndex{104073, "do"}, + CountryToIsoIndex{104096, "cf"}, + CountryToIsoIndex{104124, "cf"}, + CountryToIsoIndex{104153, "cz"}, + CountryToIsoIndex{104173, "do"}, + CountryToIsoIndex{104196, "lb"}, + CountryToIsoIndex{104204, "lr"}, + CountryToIsoIndex{104213, "ly"}, + CountryToIsoIndex{104220, "ie"}, + CountryToIsoIndex{104228, "li"}, + CountryToIsoIndex{104243, "li"}, + CountryToIsoIndex{104255, "li"}, + CountryToIsoIndex{104267, "li"}, + CountryToIsoIndex{104278, "li"}, + CountryToIsoIndex{104291, "li"}, + CountryToIsoIndex{104304, "li"}, + CountryToIsoIndex{104314, "li"}, + CountryToIsoIndex{104333, "li"}, + CountryToIsoIndex{104344, "li"}, + CountryToIsoIndex{104357, "li"}, + CountryToIsoIndex{104369, "lt"}, + CountryToIsoIndex{104379, "lt"}, + CountryToIsoIndex{104389, "ls"}, + CountryToIsoIndex{104398, "ls"}, + CountryToIsoIndex{104406, "li"}, + CountryToIsoIndex{104421, "it"}, + CountryToIsoIndex{104432, "lt"}, + CountryToIsoIndex{104439, "lt"}, + CountryToIsoIndex{104447, "lt"}, + CountryToIsoIndex{104456, "lt"}, + CountryToIsoIndex{104463, "lt"}, + CountryToIsoIndex{104472, "lt"}, + CountryToIsoIndex{104482, "lt"}, + CountryToIsoIndex{104493, "lt"}, + CountryToIsoIndex{104502, "lt"}, + CountryToIsoIndex{104511, "lt"}, + CountryToIsoIndex{104521, "lt"}, + CountryToIsoIndex{104530, "lt"}, + CountryToIsoIndex{104539, "lt"}, + CountryToIsoIndex{104548, "li"}, + CountryToIsoIndex{104567, "lt"}, + CountryToIsoIndex{104575, "lt"}, + CountryToIsoIndex{104584, "lt"}, + CountryToIsoIndex{104594, "lt"}, + CountryToIsoIndex{104602, "lt"}, + CountryToIsoIndex{104611, "lt"}, + CountryToIsoIndex{104627, "lt"}, + CountryToIsoIndex{104636, "lt"}, + CountryToIsoIndex{104646, "lt"}, + CountryToIsoIndex{104656, "lt"}, + CountryToIsoIndex{104665, "lt"}, + CountryToIsoIndex{104675, "lt"}, + CountryToIsoIndex{104686, "lt"}, + CountryToIsoIndex{104698, "lt"}, + CountryToIsoIndex{104708, "lt"}, + CountryToIsoIndex{104720, "lt"}, + CountryToIsoIndex{104731, "lt"}, + CountryToIsoIndex{104740, "lt"}, + CountryToIsoIndex{104750, "lt"}, + CountryToIsoIndex{104760, "lt"}, + CountryToIsoIndex{104770, "lt"}, + CountryToIsoIndex{104776, "lt"}, + CountryToIsoIndex{104786, "lt"}, + CountryToIsoIndex{104795, "lt"}, + CountryToIsoIndex{104805, "lt"}, + CountryToIsoIndex{104811, "lt"}, + CountryToIsoIndex{104819, "lt"}, + CountryToIsoIndex{104828, "lt"}, + CountryToIsoIndex{104838, "lt"}, + CountryToIsoIndex{104847, "lt"}, + CountryToIsoIndex{104856, "lu"}, + CountryToIsoIndex{104870, "lb"}, + CountryToIsoIndex{104876, "ly"}, + CountryToIsoIndex{104883, "lb"}, + CountryToIsoIndex{104889, "ly"}, + CountryToIsoIndex{104897, "li"}, + CountryToIsoIndex{104908, "li"}, + CountryToIsoIndex{104921, "li"}, + CountryToIsoIndex{104934, "re"}, + CountryToIsoIndex{104944, "ls"}, + CountryToIsoIndex{104953, "li"}, + CountryToIsoIndex{104969, "li"}, + CountryToIsoIndex{104984, "ls"}, + CountryToIsoIndex{104995, "lt"}, + CountryToIsoIndex{105006, "lv"}, + CountryToIsoIndex{105019, "kw"}, + CountryToIsoIndex{105025, "ma"}, + CountryToIsoIndex{105033, "ma"}, + CountryToIsoIndex{105041, "ro"}, + CountryToIsoIndex{105049, "ro"}, + CountryToIsoIndex{105058, "ro"}, + CountryToIsoIndex{105067, "ru"}, + CountryToIsoIndex{105075, "ls"}, + CountryToIsoIndex{105083, "au"}, + CountryToIsoIndex{105092, "at"}, + CountryToIsoIndex{105100, "lv"}, + CountryToIsoIndex{105110, "rw"}, + CountryToIsoIndex{105119, "lb"}, + CountryToIsoIndex{105127, "lb"}, + CountryToIsoIndex{105134, "lu"}, + CountryToIsoIndex{105146, "lu"}, + CountryToIsoIndex{105157, "lu"}, + CountryToIsoIndex{105168, "lu"}, + CountryToIsoIndex{105180, "lu"}, + CountryToIsoIndex{105193, "lu"}, + CountryToIsoIndex{105204, "lu"}, + CountryToIsoIndex{105215, "lu"}, + CountryToIsoIndex{105227, "lu"}, + CountryToIsoIndex{105238, "lu"}, + CountryToIsoIndex{105250, "lu"}, + CountryToIsoIndex{105261, "lu"}, + CountryToIsoIndex{105273, "lu"}, + CountryToIsoIndex{105286, "lu"}, + CountryToIsoIndex{105298, "lu"}, + CountryToIsoIndex{105310, "lu"}, + CountryToIsoIndex{105321, "lu"}, + CountryToIsoIndex{105333, "lu"}, + CountryToIsoIndex{105346, "gs"}, + CountryToIsoIndex{105385, "jo"}, + CountryToIsoIndex{105392, "lc"}, + CountryToIsoIndex{105402, "lu"}, + CountryToIsoIndex{105411, "lu"}, + CountryToIsoIndex{105422, "lu"}, + CountryToIsoIndex{105434, "ru"}, + CountryToIsoIndex{105440, "cv"}, + CountryToIsoIndex{105461, "ky"}, + CountryToIsoIndex{105480, "ck"}, + CountryToIsoIndex{105499, "fk"}, + CountryToIsoIndex{105518, "mp"}, + CountryToIsoIndex{105547, "mh"}, + CountryToIsoIndex{105569, "nf"}, + CountryToIsoIndex{105588, "sb"}, + CountryToIsoIndex{105607, "tc"}, + CountryToIsoIndex{105635, "vi"}, + CountryToIsoIndex{105665, "vg"}, + CountryToIsoIndex{105698, "io"}, + CountryToIsoIndex{105738, "rw"}, + CountryToIsoIndex{105747, "lu"}, + CountryToIsoIndex{105756, "lu"}, + CountryToIsoIndex{105766, "lu"}, + CountryToIsoIndex{105776, "lu"}, + CountryToIsoIndex{105787, "lu"}, + CountryToIsoIndex{105799, "lu"}, + CountryToIsoIndex{105809, "lu"}, + CountryToIsoIndex{105820, "lu"}, + CountryToIsoIndex{105833, "lu"}, + CountryToIsoIndex{105844, "lu"}, + CountryToIsoIndex{105856, "lu"}, + CountryToIsoIndex{105868, "lu"}, + CountryToIsoIndex{105879, "lu"}, + CountryToIsoIndex{105891, "rw"}, + CountryToIsoIndex{105898, "lu"}, + CountryToIsoIndex{105909, "jp"}, + CountryToIsoIndex{105916, "ye"}, + CountryToIsoIndex{105923, "um"}, + CountryToIsoIndex{105972, "lu"}, + CountryToIsoIndex{105984, "gr"}, + CountryToIsoIndex{105991, "lv"}, + CountryToIsoIndex{106000, "lr"}, + CountryToIsoIndex{106012, "la"}, + CountryToIsoIndex{106017, "la"}, + CountryToIsoIndex{106025, "lv"}, + CountryToIsoIndex{106034, "la"}, + CountryToIsoIndex{106041, "la"}, + CountryToIsoIndex{106048, "lv"}, + CountryToIsoIndex{106056, "ps"}, + CountryToIsoIndex{106078, "tf"}, + CountryToIsoIndex{106114, "io"}, + CountryToIsoIndex{106157, "eh"}, + CountryToIsoIndex{106171, "lv"}, + CountryToIsoIndex{106177, "lv"}, + CountryToIsoIndex{106186, "eh"}, + CountryToIsoIndex{106201, "lb"}, + CountryToIsoIndex{106211, "lt"}, + CountryToIsoIndex{106224, "re"}, + CountryToIsoIndex{106238, "lu"}, + CountryToIsoIndex{106250, "lr"}, + CountryToIsoIndex{106261, "lt"}, + CountryToIsoIndex{106274, "lb"}, + CountryToIsoIndex{106281, "lb"}, + CountryToIsoIndex{106289, "lb"}, + CountryToIsoIndex{106298, "lb"}, + CountryToIsoIndex{106306, "lr"}, + CountryToIsoIndex{106316, "ly"}, + CountryToIsoIndex{106323, "ly"}, + CountryToIsoIndex{106330, "ly"}, + CountryToIsoIndex{106338, "li"}, + CountryToIsoIndex{106357, "li"}, + CountryToIsoIndex{106376, "za"}, + CountryToIsoIndex{106400, "gs"}, + CountryToIsoIndex{106442, "kr"}, + CountryToIsoIndex{106455, "ss"}, + CountryToIsoIndex{106469, "la"}, + CountryToIsoIndex{106478, "lu"}, + CountryToIsoIndex{106491, "ro"}, + CountryToIsoIndex{106502, "rw"}, + CountryToIsoIndex{106512, "lu"}, + CountryToIsoIndex{106523, "ly"}, + CountryToIsoIndex{106530, "lb"}, + CountryToIsoIndex{106538, "lu"}, + CountryToIsoIndex{106550, "lu"}, + CountryToIsoIndex{106562, "ly"}, + CountryToIsoIndex{106571, "lu"}, + CountryToIsoIndex{106584, "re"}, + CountryToIsoIndex{106594, "ly"}, + CountryToIsoIndex{106601, "ly"}, + CountryToIsoIndex{106609, "li"}, + CountryToIsoIndex{106626, "ly"}, + CountryToIsoIndex{106633, "ru"}, + CountryToIsoIndex{106640, "ru"}, + CountryToIsoIndex{106647, "ls"}, + CountryToIsoIndex{106656, "ls"}, + CountryToIsoIndex{106665, "lv"}, + CountryToIsoIndex{106674, "lb"}, + CountryToIsoIndex{106683, "lb"}, + CountryToIsoIndex{106693, "iq"}, + CountryToIsoIndex{106701, "ae"}, + CountryToIsoIndex{106715, "ls"}, + CountryToIsoIndex{106730, "ls"}, + CountryToIsoIndex{106738, "ls"}, + CountryToIsoIndex{106750, "lv"}, + CountryToIsoIndex{106759, "ls"}, + CountryToIsoIndex{106770, "re"}, + CountryToIsoIndex{106785, "aq"}, + CountryToIsoIndex{106800, "ma"}, + CountryToIsoIndex{106809, "mk"}, + CountryToIsoIndex{106820, "za"}, + CountryToIsoIndex{106835, "gs"}, + CountryToIsoIndex{106882, "kr"}, + CountryToIsoIndex{106895, "ss"}, + CountryToIsoIndex{106908, "mt"}, + CountryToIsoIndex{106915, "mv"}, + CountryToIsoIndex{106926, "ml"}, + CountryToIsoIndex{106932, "ma"}, + CountryToIsoIndex{106939, "mt"}, + CountryToIsoIndex{106946, "io"}, + CountryToIsoIndex{106992, "mo"}, + CountryToIsoIndex{106998, "mo"}, + CountryToIsoIndex{107023, "mo"}, + CountryToIsoIndex{107033, "mo"}, + CountryToIsoIndex{107051, "mo"}, + CountryToIsoIndex{107070, "mo"}, + CountryToIsoIndex{107094, "mo"}, + CountryToIsoIndex{107115, "mo"}, + CountryToIsoIndex{107136, "mo"}, + CountryToIsoIndex{107156, "hu"}, + CountryToIsoIndex{107167, "hu"}, + CountryToIsoIndex{107179, "mo"}, + CountryToIsoIndex{107185, "mo"}, + CountryToIsoIndex{107202, "mo"}, + CountryToIsoIndex{107226, "mo"}, + CountryToIsoIndex{107239, "mo"}, + CountryToIsoIndex{107258, "mo"}, + CountryToIsoIndex{107277, "mo"}, + CountryToIsoIndex{107292, "mo"}, + CountryToIsoIndex{107308, "mo"}, + CountryToIsoIndex{107332, "mo"}, + CountryToIsoIndex{107352, "mo"}, + CountryToIsoIndex{107368, "mo"}, + CountryToIsoIndex{107386, "mo"}, + CountryToIsoIndex{107406, "mk"}, + CountryToIsoIndex{107416, "mk"}, + CountryToIsoIndex{107433, "mk"}, + CountryToIsoIndex{107451, "mk"}, + CountryToIsoIndex{107468, "mk"}, + CountryToIsoIndex{107485, "mk"}, + CountryToIsoIndex{107503, "mk"}, + CountryToIsoIndex{107514, "mk"}, + CountryToIsoIndex{107524, "mk"}, + CountryToIsoIndex{107542, "mk"}, + CountryToIsoIndex{107553, "mk"}, + CountryToIsoIndex{107564, "mk"}, + CountryToIsoIndex{107583, "mk"}, + CountryToIsoIndex{107601, "mk"}, + CountryToIsoIndex{107612, "mk"}, + CountryToIsoIndex{107667, "mk"}, + CountryToIsoIndex{107678, "mk"}, + CountryToIsoIndex{107696, "mk"}, + CountryToIsoIndex{107714, "mk"}, + CountryToIsoIndex{107726, "mk"}, + CountryToIsoIndex{107745, "mk"}, + CountryToIsoIndex{107756, "mk"}, + CountryToIsoIndex{107774, "mk"}, + CountryToIsoIndex{107786, "mk"}, + CountryToIsoIndex{107796, "mq"}, + CountryToIsoIndex{107806, "mo"}, + CountryToIsoIndex{107815, "mo"}, + CountryToIsoIndex{107837, "mo"}, + CountryToIsoIndex{107844, "mk"}, + CountryToIsoIndex{107855, "mk"}, + CountryToIsoIndex{107873, "mg"}, + CountryToIsoIndex{107884, "mg"}, + CountryToIsoIndex{107896, "mg"}, + CountryToIsoIndex{107909, "mg"}, + CountryToIsoIndex{107920, "mg"}, + CountryToIsoIndex{107931, "mg"}, + CountryToIsoIndex{107944, "mg"}, + CountryToIsoIndex{107957, "mg"}, + CountryToIsoIndex{107968, "mg"}, + CountryToIsoIndex{107978, "mg"}, + CountryToIsoIndex{107995, "mg"}, + CountryToIsoIndex{108007, "mg"}, + CountryToIsoIndex{108018, "mg"}, + CountryToIsoIndex{108030, "mg"}, + CountryToIsoIndex{108043, "mg"}, + CountryToIsoIndex{108055, "mg"}, + CountryToIsoIndex{108068, "mg"}, + CountryToIsoIndex{108081, "mg"}, + CountryToIsoIndex{108097, "mg"}, + CountryToIsoIndex{108109, "mg"}, + CountryToIsoIndex{108120, "mg"}, + CountryToIsoIndex{108132, "mg"}, + CountryToIsoIndex{108144, "mg"}, + CountryToIsoIndex{108155, "mg"}, + CountryToIsoIndex{108166, "mv"}, + CountryToIsoIndex{108173, "mv"}, + CountryToIsoIndex{108182, "hu"}, + CountryToIsoIndex{108193, "hu"}, + CountryToIsoIndex{108204, "fm"}, + CountryToIsoIndex{108217, "fm"}, + CountryToIsoIndex{108234, "tf"}, + CountryToIsoIndex{108263, "ps"}, + CountryToIsoIndex{108283, "mm"}, + CountryToIsoIndex{108299, "ma"}, + CountryToIsoIndex{108308, "hu"}, + CountryToIsoIndex{108322, "ml"}, + CountryToIsoIndex{108329, "yt"}, + CountryToIsoIndex{108336, "mq"}, + CountryToIsoIndex{108346, "yt"}, + CountryToIsoIndex{108352, "yt"}, + CountryToIsoIndex{108359, "yt"}, + CountryToIsoIndex{108367, "yt"}, + CountryToIsoIndex{108374, "yt"}, + CountryToIsoIndex{108381, "yt"}, + CountryToIsoIndex{108388, "yt"}, + CountryToIsoIndex{108396, "yt"}, + CountryToIsoIndex{108404, "mo"}, + CountryToIsoIndex{108412, "mk"}, + CountryToIsoIndex{108424, "mo"}, + CountryToIsoIndex{108430, "mo"}, + CountryToIsoIndex{108447, "mo"}, + CountryToIsoIndex{108465, "mo"}, + CountryToIsoIndex{108480, "mo"}, + CountryToIsoIndex{108516, "mx"}, + CountryToIsoIndex{108525, "mo"}, + CountryToIsoIndex{108531, "mo"}, + CountryToIsoIndex{108545, "mo"}, + CountryToIsoIndex{108562, "mo"}, + CountryToIsoIndex{108579, "mo"}, + CountryToIsoIndex{108598, "mo"}, + CountryToIsoIndex{108604, "mo"}, + CountryToIsoIndex{108611, "mo"}, + CountryToIsoIndex{108622, "mk"}, + CountryToIsoIndex{108632, "mk"}, + CountryToIsoIndex{108648, "mk"}, + CountryToIsoIndex{108673, "mk"}, + CountryToIsoIndex{108690, "mk"}, + CountryToIsoIndex{108707, "mk"}, + CountryToIsoIndex{108717, "mk"}, + CountryToIsoIndex{108735, "mk"}, + CountryToIsoIndex{108746, "mk"}, + CountryToIsoIndex{108757, "mk"}, + CountryToIsoIndex{108774, "mk"}, + CountryToIsoIndex{108792, "mk"}, + CountryToIsoIndex{108811, "mk"}, + CountryToIsoIndex{108834, "mk"}, + CountryToIsoIndex{108845, "mk"}, + CountryToIsoIndex{108863, "mk"}, + CountryToIsoIndex{108881, "mk"}, + CountryToIsoIndex{108893, "mk"}, + CountryToIsoIndex{108913, "mk"}, + CountryToIsoIndex{108924, "mk"}, + CountryToIsoIndex{108943, "mk"}, + CountryToIsoIndex{108954, "mk"}, + CountryToIsoIndex{108964, "mk"}, + CountryToIsoIndex{108981, "mk"}, + CountryToIsoIndex{108992, "mk"}, + CountryToIsoIndex{109012, "mk"}, + CountryToIsoIndex{109024, "mk"}, + CountryToIsoIndex{109042, "mk"}, + CountryToIsoIndex{109053, "mk"}, + CountryToIsoIndex{109070, "mk"}, + CountryToIsoIndex{109082, "mk"}, + CountryToIsoIndex{109133, "mo"}, + CountryToIsoIndex{109140, "me"}, + CountryToIsoIndex{109149, "mw"}, + CountryToIsoIndex{109157, "mw"}, + CountryToIsoIndex{109168, "mv"}, + CountryToIsoIndex{109177, "my"}, + CountryToIsoIndex{109188, "my"}, + CountryToIsoIndex{109197, "my"}, + CountryToIsoIndex{109206, "my"}, + CountryToIsoIndex{109216, "my"}, + CountryToIsoIndex{109226, "my"}, + CountryToIsoIndex{109235, "my"}, + CountryToIsoIndex{109245, "my"}, + CountryToIsoIndex{109254, "my"}, + CountryToIsoIndex{109262, "my"}, + CountryToIsoIndex{109271, "my"}, + CountryToIsoIndex{109281, "my"}, + CountryToIsoIndex{109290, "mw"}, + CountryToIsoIndex{109298, "my"}, + CountryToIsoIndex{109306, "my"}, + CountryToIsoIndex{109315, "mv"}, + CountryToIsoIndex{109326, "mw"}, + CountryToIsoIndex{109333, "mw"}, + CountryToIsoIndex{109340, "mw"}, + CountryToIsoIndex{109348, "mw"}, + CountryToIsoIndex{109356, "mw"}, + CountryToIsoIndex{109364, "mw"}, + CountryToIsoIndex{109371, "mw"}, + CountryToIsoIndex{109385, "mw"}, + CountryToIsoIndex{109393, "mw"}, + CountryToIsoIndex{109401, "mw"}, + CountryToIsoIndex{109410, "my"}, + CountryToIsoIndex{109419, "my"}, + CountryToIsoIndex{109435, "my"}, + CountryToIsoIndex{109445, "my"}, + CountryToIsoIndex{109455, "my"}, + CountryToIsoIndex{109465, "my"}, + CountryToIsoIndex{109477, "mv"}, + CountryToIsoIndex{109484, "mv"}, + CountryToIsoIndex{109492, "mv"}, + CountryToIsoIndex{109499, "mv"}, + CountryToIsoIndex{109509, "mv"}, + CountryToIsoIndex{109518, "mv"}, + CountryToIsoIndex{109526, "mv"}, + CountryToIsoIndex{109535, "mv"}, + CountryToIsoIndex{109542, "mv"}, + CountryToIsoIndex{109558, "mv"}, + CountryToIsoIndex{109574, "mv"}, + CountryToIsoIndex{109582, "mv"}, + CountryToIsoIndex{109591, "mv"}, + CountryToIsoIndex{109601, "mv"}, + CountryToIsoIndex{109610, "mv"}, + CountryToIsoIndex{109618, "mv"}, + CountryToIsoIndex{109627, "mv"}, + CountryToIsoIndex{109637, "mv"}, + CountryToIsoIndex{109648, "mv"}, + CountryToIsoIndex{109659, "mv"}, + CountryToIsoIndex{109668, "mv"}, + CountryToIsoIndex{109678, "mv"}, + CountryToIsoIndex{109692, "mv"}, + CountryToIsoIndex{109701, "mv"}, + CountryToIsoIndex{109709, "mv"}, + CountryToIsoIndex{109718, "mv"}, + CountryToIsoIndex{109727, "mv"}, + CountryToIsoIndex{109737, "mv"}, + CountryToIsoIndex{109746, "mv"}, + CountryToIsoIndex{109760, "mv"}, + CountryToIsoIndex{109768, "mv"}, + CountryToIsoIndex{109777, "mv"}, + CountryToIsoIndex{109787, "md"}, + CountryToIsoIndex{109795, "mv"}, + CountryToIsoIndex{109804, "mv"}, + CountryToIsoIndex{109821, "mv"}, + CountryToIsoIndex{109834, "mv"}, + CountryToIsoIndex{109843, "mv"}, + CountryToIsoIndex{109854, "mv"}, + CountryToIsoIndex{109865, "mv"}, + CountryToIsoIndex{109877, "mv"}, + CountryToIsoIndex{109887, "mv"}, + CountryToIsoIndex{109896, "mv"}, + CountryToIsoIndex{109906, "mv"}, + CountryToIsoIndex{109916, "mv"}, + CountryToIsoIndex{109925, "mv"}, + CountryToIsoIndex{109934, "mv"}, + CountryToIsoIndex{109943, "my"}, + CountryToIsoIndex{109951, "my"}, + CountryToIsoIndex{109960, "my"}, + CountryToIsoIndex{109970, "us"}, + CountryToIsoIndex{109979, "my"}, + CountryToIsoIndex{109986, "my"}, + CountryToIsoIndex{109994, "my"}, + CountryToIsoIndex{110002, "my"}, + CountryToIsoIndex{110011, "my"}, + CountryToIsoIndex{110019, "my"}, + CountryToIsoIndex{110028, "mv"}, + CountryToIsoIndex{110038, "my"}, + CountryToIsoIndex{110048, "my"}, + CountryToIsoIndex{110055, "my"}, + CountryToIsoIndex{110064, "my"}, + CountryToIsoIndex{110073, "my"}, + CountryToIsoIndex{110081, "my"}, + CountryToIsoIndex{110089, "my"}, + CountryToIsoIndex{110098, "my"}, + CountryToIsoIndex{110108, "ml"}, + CountryToIsoIndex{110113, "ml"}, + CountryToIsoIndex{110125, "um"}, + CountryToIsoIndex{110151, "ml"}, + CountryToIsoIndex{110157, "mv"}, + CountryToIsoIndex{110166, "ml"}, + CountryToIsoIndex{110172, "ml"}, + CountryToIsoIndex{110178, "mt"}, + CountryToIsoIndex{110185, "mt"}, + CountryToIsoIndex{110192, "mq"}, + CountryToIsoIndex{110203, "mt"}, + CountryToIsoIndex{110211, "my"}, + CountryToIsoIndex{110219, "mv"}, + CountryToIsoIndex{110230, "mt"}, + CountryToIsoIndex{110235, "mt"}, + CountryToIsoIndex{110241, "mt"}, + CountryToIsoIndex{110254, "mt"}, + CountryToIsoIndex{110260, "mt"}, + CountryToIsoIndex{110266, "mq"}, + CountryToIsoIndex{110276, "mq"}, + CountryToIsoIndex{110287, "mt"}, + CountryToIsoIndex{110293, "mt"}, + CountryToIsoIndex{110300, "mt"}, + CountryToIsoIndex{110307, "mt"}, + CountryToIsoIndex{110314, "fk"}, + CountryToIsoIndex{110327, "fk"}, + CountryToIsoIndex{110336, "fk"}, + CountryToIsoIndex{110352, "fk"}, + CountryToIsoIndex{110361, "my"}, + CountryToIsoIndex{110371, "mw"}, + CountryToIsoIndex{110380, "my"}, + CountryToIsoIndex{110389, "mw"}, + CountryToIsoIndex{110397, "mw"}, + CountryToIsoIndex{110405, "my"}, + CountryToIsoIndex{110414, "my"}, + CountryToIsoIndex{110424, "ml"}, + CountryToIsoIndex{110430, "ml"}, + CountryToIsoIndex{110436, "ml"}, + CountryToIsoIndex{110442, "ml"}, + CountryToIsoIndex{110449, "ma"}, + CountryToIsoIndex{110457, "mw"}, + CountryToIsoIndex{110467, "my"}, + CountryToIsoIndex{110476, "my"}, + CountryToIsoIndex{110485, "mv"}, + CountryToIsoIndex{110497, "my"}, + CountryToIsoIndex{110506, "my"}, + CountryToIsoIndex{110514, "my"}, + CountryToIsoIndex{110525, "mt"}, + CountryToIsoIndex{110532, "mt"}, + CountryToIsoIndex{110540, "im"}, + CountryToIsoIndex{110544, "im"}, + CountryToIsoIndex{110555, "im"}, + CountryToIsoIndex{110567, "im"}, + CountryToIsoIndex{110578, "mn"}, + CountryToIsoIndex{110588, "im"}, + CountryToIsoIndex{110598, "um"}, + CountryToIsoIndex{110624, "im"}, + CountryToIsoIndex{110636, "im"}, + CountryToIsoIndex{110645, "ms"}, + CountryToIsoIndex{110655, "im"}, + CountryToIsoIndex{110666, "ms"}, + CountryToIsoIndex{110676, "mn"}, + CountryToIsoIndex{110686, "yt"}, + CountryToIsoIndex{110692, "mu"}, + CountryToIsoIndex{110700, "mr"}, + CountryToIsoIndex{110711, "mr"}, + CountryToIsoIndex{110723, "mk"}, + CountryToIsoIndex{110732, "mk"}, + CountryToIsoIndex{110741, "mk"}, + CountryToIsoIndex{110757, "ma"}, + CountryToIsoIndex{110765, "mw"}, + CountryToIsoIndex{110772, "my"}, + CountryToIsoIndex{110782, "us"}, + CountryToIsoIndex{110793, "us"}, + CountryToIsoIndex{110802, "ml"}, + CountryToIsoIndex{110807, "mp"}, + CountryToIsoIndex{110828, "mp"}, + CountryToIsoIndex{110846, "mp"}, + CountryToIsoIndex{110873, "mp"}, + CountryToIsoIndex{110892, "mv"}, + CountryToIsoIndex{110902, "sm"}, + CountryToIsoIndex{110914, "mh"}, + CountryToIsoIndex{110927, "mt"}, + CountryToIsoIndex{110934, "mq"}, + CountryToIsoIndex{110946, "mq"}, + CountryToIsoIndex{110957, "mq"}, + CountryToIsoIndex{110970, "cf"}, + CountryToIsoIndex{110999, "ma"}, + CountryToIsoIndex{111005, "ma"}, + CountryToIsoIndex{111013, "ma"}, + CountryToIsoIndex{111021, "ma"}, + CountryToIsoIndex{111027, "ma"}, + CountryToIsoIndex{111033, "ma"}, + CountryToIsoIndex{111040, "ma"}, + CountryToIsoIndex{111048, "ma"}, + CountryToIsoIndex{111057, "ma"}, + CountryToIsoIndex{111064, "ma"}, + CountryToIsoIndex{111072, "ma"}, + CountryToIsoIndex{111081, "ma"}, + CountryToIsoIndex{111088, "ma"}, + CountryToIsoIndex{111096, "ma"}, + CountryToIsoIndex{111104, "ma"}, + CountryToIsoIndex{111112, "ma"}, + CountryToIsoIndex{111119, "ma"}, + CountryToIsoIndex{111128, "ma"}, + CountryToIsoIndex{111138, "mh"}, + CountryToIsoIndex{111166, "mh"}, + CountryToIsoIndex{111184, "mh"}, + CountryToIsoIndex{111201, "mh"}, + CountryToIsoIndex{111219, "mh"}, + CountryToIsoIndex{111237, "mh"}, + CountryToIsoIndex{111255, "mh"}, + CountryToIsoIndex{111273, "mh"}, + CountryToIsoIndex{111289, "mh"}, + CountryToIsoIndex{111306, "mh"}, + CountryToIsoIndex{111323, "mh"}, + CountryToIsoIndex{111337, "mh"}, + CountryToIsoIndex{111354, "mh"}, + CountryToIsoIndex{111371, "mh"}, + CountryToIsoIndex{111387, "mh"}, + CountryToIsoIndex{111402, "mh"}, + CountryToIsoIndex{111416, "mh"}, + CountryToIsoIndex{111436, "mh"}, + CountryToIsoIndex{111454, "mh"}, + CountryToIsoIndex{111474, "mh"}, + CountryToIsoIndex{111491, "mh"}, + CountryToIsoIndex{111507, "mh"}, + CountryToIsoIndex{111522, "mh"}, + CountryToIsoIndex{111539, "mh"}, + CountryToIsoIndex{111554, "mh"}, + CountryToIsoIndex{111569, "mh"}, + CountryToIsoIndex{111584, "mh"}, + CountryToIsoIndex{111599, "mq"}, + CountryToIsoIndex{111609, "mq"}, + CountryToIsoIndex{111620, "mq"}, + CountryToIsoIndex{111630, "mq"}, + CountryToIsoIndex{111641, "mq"}, + CountryToIsoIndex{111650, "mq"}, + CountryToIsoIndex{111660, "mq"}, + CountryToIsoIndex{111670, "mq"}, + CountryToIsoIndex{111687, "mq"}, + CountryToIsoIndex{111697, "mq"}, + CountryToIsoIndex{111708, "mq"}, + CountryToIsoIndex{111719, "mq"}, + CountryToIsoIndex{111729, "mq"}, + CountryToIsoIndex{111739, "ma"}, + CountryToIsoIndex{111745, "ma"}, + CountryToIsoIndex{111753, "ma"}, + CountryToIsoIndex{111761, "mh"}, + CountryToIsoIndex{111771, "mh"}, + CountryToIsoIndex{111788, "mh"}, + CountryToIsoIndex{111805, "mh"}, + CountryToIsoIndex{111820, "mh"}, + CountryToIsoIndex{111834, "mh"}, + CountryToIsoIndex{111849, "mh"}, + CountryToIsoIndex{111867, "mh"}, + CountryToIsoIndex{111884, "mh"}, + CountryToIsoIndex{111902, "ma"}, + CountryToIsoIndex{111909, "ma"}, + CountryToIsoIndex{111917, "ma"}, + CountryToIsoIndex{111926, "mq"}, + CountryToIsoIndex{111938, "eg"}, + CountryToIsoIndex{111944, "eg"}, + CountryToIsoIndex{111958, "mk"}, + CountryToIsoIndex{111975, "mk"}, + CountryToIsoIndex{111985, "mk"}, + CountryToIsoIndex{111997, "mk"}, + CountryToIsoIndex{112008, "mk"}, + CountryToIsoIndex{112019, "mk"}, + CountryToIsoIndex{112030, "mk"}, + CountryToIsoIndex{112073, "mk"}, + CountryToIsoIndex{112084, "mk"}, + CountryToIsoIndex{112094, "mk"}, + CountryToIsoIndex{112104, "mk"}, + CountryToIsoIndex{112115, "mk"}, + CountryToIsoIndex{112126, "mk"}, + CountryToIsoIndex{112136, "mk"}, + CountryToIsoIndex{112147, "mk"}, + CountryToIsoIndex{112166, "mh"}, + CountryToIsoIndex{112181, "mk"}, + CountryToIsoIndex{112191, "mk"}, + CountryToIsoIndex{112246, "mk"}, + CountryToIsoIndex{112255, "mk"}, + CountryToIsoIndex{112266, "mk"}, + CountryToIsoIndex{112285, "ci"}, + CountryToIsoIndex{112305, "mg"}, + CountryToIsoIndex{112316, "mg"}, + CountryToIsoIndex{112329, "mk"}, + CountryToIsoIndex{112340, "mq"}, + CountryToIsoIndex{112348, "mq"}, + CountryToIsoIndex{112357, "mq"}, + CountryToIsoIndex{112366, "mr"}, + CountryToIsoIndex{112377, "mr"}, + CountryToIsoIndex{112388, "mu"}, + CountryToIsoIndex{112399, "mr"}, + CountryToIsoIndex{112411, "mr"}, + CountryToIsoIndex{112422, "mr"}, + CountryToIsoIndex{112433, "mr"}, + CountryToIsoIndex{112445, "mr"}, + CountryToIsoIndex{112457, "mr"}, + CountryToIsoIndex{112469, "mu"}, + CountryToIsoIndex{112477, "mu"}, + CountryToIsoIndex{112485, "mu"}, + CountryToIsoIndex{112496, "mu"}, + CountryToIsoIndex{112505, "mu"}, + CountryToIsoIndex{112514, "mu"}, + CountryToIsoIndex{112524, "mu"}, + CountryToIsoIndex{112535, "mu"}, + CountryToIsoIndex{112547, "mr"}, + CountryToIsoIndex{112559, "mr"}, + CountryToIsoIndex{112569, "mr"}, + CountryToIsoIndex{112580, "mr"}, + CountryToIsoIndex{112598, "mr"}, + CountryToIsoIndex{112609, "mr"}, + CountryToIsoIndex{112621, "mr"}, + CountryToIsoIndex{112633, "mr"}, + CountryToIsoIndex{112645, "mr"}, + CountryToIsoIndex{112658, "mu"}, + CountryToIsoIndex{112668, "mu"}, + CountryToIsoIndex{112683, "mr"}, + CountryToIsoIndex{112695, "mr"}, + CountryToIsoIndex{112707, "mr"}, + CountryToIsoIndex{112719, "mr"}, + CountryToIsoIndex{112731, "mr"}, + CountryToIsoIndex{112744, "mu"}, + CountryToIsoIndex{112752, "mu"}, + CountryToIsoIndex{112763, "mu"}, + CountryToIsoIndex{112772, "mu"}, + CountryToIsoIndex{112782, "mu"}, + CountryToIsoIndex{112792, "mu"}, + CountryToIsoIndex{112803, "mu"}, + CountryToIsoIndex{112813, "mu"}, + CountryToIsoIndex{112825, "mu"}, + CountryToIsoIndex{112836, "mr"}, + CountryToIsoIndex{112849, "yt"}, + CountryToIsoIndex{112856, "mr"}, + CountryToIsoIndex{112868, "mu"}, + CountryToIsoIndex{112876, "mu"}, + CountryToIsoIndex{112885, "mr"}, + CountryToIsoIndex{112897, "mr"}, + CountryToIsoIndex{112909, "mr"}, + CountryToIsoIndex{112922, "mu"}, + CountryToIsoIndex{112932, "mr"}, + CountryToIsoIndex{112945, "mu"}, + CountryToIsoIndex{112957, "mr"}, + CountryToIsoIndex{112969, "mm"}, + CountryToIsoIndex{112978, "yt"}, + CountryToIsoIndex{112985, "yt"}, + CountryToIsoIndex{112993, "yt"}, + CountryToIsoIndex{112999, "yt"}, + CountryToIsoIndex{113006, "yt"}, + CountryToIsoIndex{113013, "yt"}, + CountryToIsoIndex{113021, "yt"}, + CountryToIsoIndex{113029, "yt"}, + CountryToIsoIndex{113044, "yt"}, + CountryToIsoIndex{113052, "yt"}, + CountryToIsoIndex{113060, "yt"}, + CountryToIsoIndex{113069, "yt"}, + CountryToIsoIndex{113077, "yt"}, + CountryToIsoIndex{113084, "yt"}, + CountryToIsoIndex{113092, "yt"}, + CountryToIsoIndex{113101, "yt"}, + CountryToIsoIndex{113110, "yt"}, + CountryToIsoIndex{113121, "yt"}, + CountryToIsoIndex{113130, "mk"}, + CountryToIsoIndex{113140, "mk"}, + CountryToIsoIndex{113181, "mk"}, + CountryToIsoIndex{113191, "mk"}, + CountryToIsoIndex{113207, "mk"}, + CountryToIsoIndex{113218, "mk"}, + CountryToIsoIndex{113235, "mk"}, + CountryToIsoIndex{113246, "mk"}, + CountryToIsoIndex{113264, "mk"}, + CountryToIsoIndex{113276, "yt"}, + CountryToIsoIndex{113285, "hu"}, + CountryToIsoIndex{113295, "hu"}, + CountryToIsoIndex{113305, "mk"}, + CountryToIsoIndex{113317, "fk"}, + CountryToIsoIndex{113335, "mp"}, + CountryToIsoIndex{113349, "cv"}, + CountryToIsoIndex{113368, "ck"}, + CountryToIsoIndex{113384, "ky"}, + CountryToIsoIndex{113401, "mh"}, + CountryToIsoIndex{113421, "nf"}, + CountryToIsoIndex{113442, "sb"}, + CountryToIsoIndex{113462, "tc"}, + CountryToIsoIndex{113487, "mu"}, + CountryToIsoIndex{113497, "mr"}, + CountryToIsoIndex{113510, "eg"}, + CountryToIsoIndex{113517, "bo"}, + CountryToIsoIndex{113525, "za"}, + CountryToIsoIndex{113540, "ba"}, + CountryToIsoIndex{113562, "bw"}, + CountryToIsoIndex{113572, "gb"}, + CountryToIsoIndex{113594, "bf"}, + CountryToIsoIndex{113612, "bi"}, + CountryToIsoIndex{113621, "bi"}, + CountryToIsoIndex{113631, "bi"}, + CountryToIsoIndex{113640, "bt"}, + CountryToIsoIndex{113648, "bo"}, + CountryToIsoIndex{113658, "bw"}, + CountryToIsoIndex{113670, "br"}, + CountryToIsoIndex{113681, "bj"}, + CountryToIsoIndex{113693, "mx"}, + CountryToIsoIndex{113702, "um"}, + CountryToIsoIndex{113735, "mk"}, + CountryToIsoIndex{113746, "mx"}, + CountryToIsoIndex{113754, "mx"}, + CountryToIsoIndex{113764, "mx"}, + CountryToIsoIndex{113772, "mx"}, + CountryToIsoIndex{113779, "mx"}, + CountryToIsoIndex{113789, "mx"}, + CountryToIsoIndex{113796, "mx"}, + CountryToIsoIndex{113805, "mx"}, + CountryToIsoIndex{113815, "mx"}, + CountryToIsoIndex{113825, "mx"}, + CountryToIsoIndex{113832, "mx"}, + CountryToIsoIndex{113840, "mx"}, + CountryToIsoIndex{113848, "mx"}, + CountryToIsoIndex{113857, "mx"}, + CountryToIsoIndex{113865, "mx"}, + CountryToIsoIndex{113873, "mx"}, + CountryToIsoIndex{113881, "mx"}, + CountryToIsoIndex{113890, "mx"}, + CountryToIsoIndex{113897, "mx"}, + CountryToIsoIndex{113906, "me"}, + CountryToIsoIndex{113916, "im"}, + CountryToIsoIndex{113926, "im"}, + CountryToIsoIndex{113937, "im"}, + CountryToIsoIndex{113947, "im"}, + CountryToIsoIndex{113952, "eh"}, + CountryToIsoIndex{113972, "im"}, + CountryToIsoIndex{113982, "um"}, + CountryToIsoIndex{114012, "um"}, + CountryToIsoIndex{114041, "eg"}, + CountryToIsoIndex{114047, "mx"}, + CountryToIsoIndex{114054, "mx"}, + CountryToIsoIndex{114062, "mx"}, + CountryToIsoIndex{114068, "mx"}, + CountryToIsoIndex{114075, "mx"}, + CountryToIsoIndex{114089, "mx"}, + CountryToIsoIndex{114097, "mx"}, + CountryToIsoIndex{114103, "mx"}, + CountryToIsoIndex{114110, "mx"}, + CountryToIsoIndex{114117, "mx"}, + CountryToIsoIndex{114125, "mx"}, + CountryToIsoIndex{114133, "mx"}, + CountryToIsoIndex{114142, "ma"}, + CountryToIsoIndex{114153, "ac"}, + CountryToIsoIndex{114168, "mm"}, + CountryToIsoIndex{114176, "mm"}, + CountryToIsoIndex{114192, "mm"}, + CountryToIsoIndex{114212, "mm"}, + CountryToIsoIndex{114232, "mm"}, + CountryToIsoIndex{114248, "mm"}, + CountryToIsoIndex{114266, "mm"}, + CountryToIsoIndex{114277, "mm"}, + CountryToIsoIndex{114288, "fm"}, + CountryToIsoIndex{114299, "fm"}, + CountryToIsoIndex{114310, "fm"}, + CountryToIsoIndex{114322, "fm"}, + CountryToIsoIndex{114334, "fm"}, + CountryToIsoIndex{114345, "fm"}, + CountryToIsoIndex{114357, "fm"}, + CountryToIsoIndex{114369, "fm"}, + CountryToIsoIndex{114381, "mx"}, + CountryToIsoIndex{114390, "mm"}, + CountryToIsoIndex{114407, "fm"}, + CountryToIsoIndex{114419, "fm"}, + CountryToIsoIndex{114432, "fm"}, + CountryToIsoIndex{114443, "fm"}, + CountryToIsoIndex{114456, "fm"}, + CountryToIsoIndex{114469, "fm"}, + CountryToIsoIndex{114480, "fm"}, + CountryToIsoIndex{114492, "fm"}, + CountryToIsoIndex{114505, "fm"}, + CountryToIsoIndex{114516, "fm"}, + CountryToIsoIndex{114527, "fm"}, + CountryToIsoIndex{114539, "fm"}, + CountryToIsoIndex{114552, "fm"}, + CountryToIsoIndex{114565, "fm"}, + CountryToIsoIndex{114577, "fm"}, + CountryToIsoIndex{114589, "fm"}, + CountryToIsoIndex{114602, "fm"}, + CountryToIsoIndex{114613, "fm"}, + CountryToIsoIndex{114636, "fm"}, + CountryToIsoIndex{114654, "fm"}, + CountryToIsoIndex{114678, "fm"}, + CountryToIsoIndex{114703, "fm"}, + CountryToIsoIndex{114724, "fm"}, + CountryToIsoIndex{114735, "fm"}, + CountryToIsoIndex{114747, "fm"}, + CountryToIsoIndex{114759, "fm"}, + CountryToIsoIndex{114771, "fm"}, + CountryToIsoIndex{114781, "fm"}, + CountryToIsoIndex{114792, "fm"}, + CountryToIsoIndex{114804, "fm"}, + CountryToIsoIndex{114815, "fm"}, + CountryToIsoIndex{114828, "fm"}, + CountryToIsoIndex{114840, "fm"}, + CountryToIsoIndex{114853, "fm"}, + CountryToIsoIndex{114864, "fm"}, + CountryToIsoIndex{114875, "fm"}, + CountryToIsoIndex{114887, "fm"}, + CountryToIsoIndex{114899, "fm"}, + CountryToIsoIndex{114911, "fm"}, + CountryToIsoIndex{114923, "fm"}, + CountryToIsoIndex{114936, "fm"}, + CountryToIsoIndex{114949, "fm"}, + CountryToIsoIndex{114960, "fm"}, + CountryToIsoIndex{114972, "mx"}, + CountryToIsoIndex{114979, "de"}, + CountryToIsoIndex{114992, "fm"}, + CountryToIsoIndex{115005, "fm"}, + CountryToIsoIndex{115017, "cx"}, + CountryToIsoIndex{115030, "ae"}, + CountryToIsoIndex{115064, "vi"}, + CountryToIsoIndex{115086, "fk"}, + CountryToIsoIndex{115110, "mp"}, + CountryToIsoIndex{115138, "ky"}, + CountryToIsoIndex{115160, "cv"}, + CountryToIsoIndex{115182, "ck"}, + CountryToIsoIndex{115199, "mh"}, + CountryToIsoIndex{115220, "sb"}, + CountryToIsoIndex{115243, "tc"}, + CountryToIsoIndex{115274, "nf"}, + CountryToIsoIndex{115300, "vi"}, + CountryToIsoIndex{115331, "vg"}, + CountryToIsoIndex{115367, "eg"}, + CountryToIsoIndex{115374, "eg"}, + CountryToIsoIndex{115380, "eg"}, + CountryToIsoIndex{115387, "eg"}, + CountryToIsoIndex{115393, "eg"}, + CountryToIsoIndex{115398, "eg"}, + CountryToIsoIndex{115404, "eg"}, + CountryToIsoIndex{115410, "eg"}, + CountryToIsoIndex{115417, "mm"}, + CountryToIsoIndex{115426, "mm"}, + CountryToIsoIndex{115435, "mm"}, + CountryToIsoIndex{115443, "mm"}, + CountryToIsoIndex{115453, "mm"}, + CountryToIsoIndex{115462, "mm"}, + CountryToIsoIndex{115471, "mm"}, + CountryToIsoIndex{115479, "cf"}, + CountryToIsoIndex{115504, "cf"}, + CountryToIsoIndex{115527, "gq"}, + CountryToIsoIndex{115544, "eg"}, + CountryToIsoIndex{115551, "eg"}, + CountryToIsoIndex{115560, "mm"}, + CountryToIsoIndex{115575, "mm"}, + CountryToIsoIndex{115583, "mm"}, + CountryToIsoIndex{115591, "mm"}, + CountryToIsoIndex{115607, "mm"}, + CountryToIsoIndex{115624, "mm"}, + CountryToIsoIndex{115635, "va"}, + CountryToIsoIndex{115650, "br"}, + CountryToIsoIndex{115660, "mn"}, + CountryToIsoIndex{115669, "mv"}, + CountryToIsoIndex{115676, "mv"}, + CountryToIsoIndex{115685, "cd"}, + CountryToIsoIndex{115713, "cz"}, + CountryToIsoIndex{115728, "do"}, + CountryToIsoIndex{115747, "md"}, + CountryToIsoIndex{115758, "md"}, + CountryToIsoIndex{115765, "md"}, + CountryToIsoIndex{115773, "md"}, + CountryToIsoIndex{115782, "md"}, + CountryToIsoIndex{115791, "md"}, + CountryToIsoIndex{115801, "md"}, + CountryToIsoIndex{115811, "md"}, + CountryToIsoIndex{115821, "md"}, + CountryToIsoIndex{115831, "md"}, + CountryToIsoIndex{115841, "md"}, + CountryToIsoIndex{115852, "md"}, + CountryToIsoIndex{115863, "md"}, + CountryToIsoIndex{115871, "md"}, + CountryToIsoIndex{115881, "md"}, + CountryToIsoIndex{115890, "md"}, + CountryToIsoIndex{115900, "md"}, + CountryToIsoIndex{115908, "md"}, + CountryToIsoIndex{115916, "md"}, + CountryToIsoIndex{115931, "md"}, + CountryToIsoIndex{115939, "md"}, + CountryToIsoIndex{115949, "md"}, + CountryToIsoIndex{115957, "md"}, + CountryToIsoIndex{115967, "md"}, + CountryToIsoIndex{115977, "md"}, + CountryToIsoIndex{115986, "md"}, + CountryToIsoIndex{115995, "md"}, + CountryToIsoIndex{116004, "md"}, + CountryToIsoIndex{116015, "mu"}, + CountryToIsoIndex{116022, "mr"}, + CountryToIsoIndex{116032, "mr"}, + CountryToIsoIndex{116043, "mr"}, + CountryToIsoIndex{116053, "md"}, + CountryToIsoIndex{116062, "ma"}, + CountryToIsoIndex{116069, "md"}, + CountryToIsoIndex{116078, "md"}, + CountryToIsoIndex{116087, "mv"}, + CountryToIsoIndex{116096, "md"}, + CountryToIsoIndex{116105, "mu"}, + CountryToIsoIndex{116112, "md"}, + CountryToIsoIndex{116123, "mc"}, + CountryToIsoIndex{116132, "mc"}, + CountryToIsoIndex{116139, "mc"}, + CountryToIsoIndex{116147, "mc"}, + CountryToIsoIndex{116154, "mc"}, + CountryToIsoIndex{116162, "mc"}, + CountryToIsoIndex{116170, "mc"}, + CountryToIsoIndex{116178, "mc"}, + CountryToIsoIndex{116185, "mc"}, + CountryToIsoIndex{116199, "mc"}, + CountryToIsoIndex{116206, "mc"}, + CountryToIsoIndex{116214, "mc"}, + CountryToIsoIndex{116223, "mn"}, + CountryToIsoIndex{116233, "mn"}, + CountryToIsoIndex{116245, "mn"}, + CountryToIsoIndex{116254, "mn"}, + CountryToIsoIndex{116262, "mn"}, + CountryToIsoIndex{116271, "mn"}, + CountryToIsoIndex{116287, "mn"}, + CountryToIsoIndex{116296, "mn"}, + CountryToIsoIndex{116306, "mn"}, + CountryToIsoIndex{116316, "mn"}, + CountryToIsoIndex{116326, "mn"}, + CountryToIsoIndex{116336, "mn"}, + CountryToIsoIndex{116347, "mn"}, + CountryToIsoIndex{116357, "mn"}, + CountryToIsoIndex{116367, "mn"}, + CountryToIsoIndex{116377, "mn"}, + CountryToIsoIndex{116386, "mn"}, + CountryToIsoIndex{116396, "mn"}, + CountryToIsoIndex{116405, "mn"}, + CountryToIsoIndex{116415, "mn"}, + CountryToIsoIndex{116426, "mn"}, + CountryToIsoIndex{116435, "ms"}, + CountryToIsoIndex{116447, "mn"}, + CountryToIsoIndex{116457, "mn"}, + CountryToIsoIndex{116467, "mn"}, + CountryToIsoIndex{116478, "me"}, + CountryToIsoIndex{116491, "ms"}, + CountryToIsoIndex{116504, "mn"}, + CountryToIsoIndex{116514, "mn"}, + CountryToIsoIndex{116526, "ms"}, + CountryToIsoIndex{116536, "ms"}, + CountryToIsoIndex{116546, "ms"}, + CountryToIsoIndex{116555, "ms"}, + CountryToIsoIndex{116565, "ms"}, + CountryToIsoIndex{116576, "ms"}, + CountryToIsoIndex{116587, "me"}, + CountryToIsoIndex{116602, "me"}, + CountryToIsoIndex{116614, "me"}, + CountryToIsoIndex{116626, "me"}, + CountryToIsoIndex{116637, "me"}, + CountryToIsoIndex{116655, "me"}, + CountryToIsoIndex{116666, "me"}, + CountryToIsoIndex{116678, "me"}, + CountryToIsoIndex{116689, "ms"}, + CountryToIsoIndex{116701, "ms"}, + CountryToIsoIndex{116714, "ms"}, + CountryToIsoIndex{116726, "ms"}, + CountryToIsoIndex{116736, "ms"}, + CountryToIsoIndex{116747, "ms"}, + CountryToIsoIndex{116756, "ms"}, + CountryToIsoIndex{116766, "ms"}, + CountryToIsoIndex{116778, "ms"}, + CountryToIsoIndex{116789, "ms"}, + CountryToIsoIndex{116807, "ms"}, + CountryToIsoIndex{116819, "ms"}, + CountryToIsoIndex{116831, "ms"}, + CountryToIsoIndex{116844, "me"}, + CountryToIsoIndex{116857, "mc"}, + CountryToIsoIndex{116866, "mc"}, + CountryToIsoIndex{116874, "mu"}, + CountryToIsoIndex{116888, "mr"}, + CountryToIsoIndex{116899, "mr"}, + CountryToIsoIndex{116909, "ms"}, + CountryToIsoIndex{116918, "ms"}, + CountryToIsoIndex{116929, "mr"}, + CountryToIsoIndex{116941, "md"}, + CountryToIsoIndex{116950, "mu"}, + CountryToIsoIndex{116957, "mu"}, + CountryToIsoIndex{116963, "mu"}, + CountryToIsoIndex{116970, "mu"}, + CountryToIsoIndex{116977, "mu"}, + CountryToIsoIndex{116985, "mu"}, + CountryToIsoIndex{116993, "mr"}, + CountryToIsoIndex{117002, "mr"}, + CountryToIsoIndex{117012, "mr"}, + CountryToIsoIndex{117023, "mr"}, + CountryToIsoIndex{117033, "mr"}, + CountryToIsoIndex{117043, "mr"}, + CountryToIsoIndex{117054, "mu"}, + CountryToIsoIndex{117062, "mu"}, + CountryToIsoIndex{117070, "mr"}, + CountryToIsoIndex{117081, "ma"}, + CountryToIsoIndex{117089, "ma"}, + CountryToIsoIndex{117096, "ma"}, + CountryToIsoIndex{117104, "ma"}, + CountryToIsoIndex{117111, "ma"}, + CountryToIsoIndex{117125, "mu"}, + CountryToIsoIndex{117134, "mu"}, + CountryToIsoIndex{117141, "ma"}, + CountryToIsoIndex{117150, "mz"}, + CountryToIsoIndex{117159, "mz"}, + CountryToIsoIndex{117169, "mz"}, + CountryToIsoIndex{117179, "mz"}, + CountryToIsoIndex{117188, "mz"}, + CountryToIsoIndex{117198, "mz"}, + CountryToIsoIndex{117208, "mz"}, + CountryToIsoIndex{117218, "mz"}, + CountryToIsoIndex{117230, "cp"}, + CountryToIsoIndex{117246, "cx"}, + CountryToIsoIndex{117262, "im"}, + CountryToIsoIndex{117272, "nf"}, + CountryToIsoIndex{117287, "bv"}, + CountryToIsoIndex{117299, "ac"}, + CountryToIsoIndex{117316, "yt"}, + CountryToIsoIndex{117324, "mz"}, + CountryToIsoIndex{117333, "mz"}, + CountryToIsoIndex{117343, "mz"}, + CountryToIsoIndex{117354, "mz"}, + CountryToIsoIndex{117363, "mz"}, + CountryToIsoIndex{117373, "mz"}, + CountryToIsoIndex{117384, "mz"}, + CountryToIsoIndex{117394, "mz"}, + CountryToIsoIndex{117404, "mz"}, + CountryToIsoIndex{117421, "mz"}, + CountryToIsoIndex{117431, "mz"}, + CountryToIsoIndex{117442, "mz"}, + CountryToIsoIndex{117452, "mz"}, + CountryToIsoIndex{117463, "mz"}, + CountryToIsoIndex{117473, "mz"}, + CountryToIsoIndex{117483, "mz"}, + CountryToIsoIndex{117495, "mn"}, + CountryToIsoIndex{117507, "md"}, + CountryToIsoIndex{117517, "mn"}, + CountryToIsoIndex{117525, "ms"}, + CountryToIsoIndex{117534, "ms"}, + CountryToIsoIndex{117549, "pl"}, + CountryToIsoIndex{117557, "pr"}, + CountryToIsoIndex{117567, "pt"}, + CountryToIsoIndex{117580, "mz"}, + CountryToIsoIndex{117589, "mz"}, + CountryToIsoIndex{117599, "qo"}, + CountryToIsoIndex{117621, "cv"}, + CountryToIsoIndex{117634, "md"}, + CountryToIsoIndex{117642, "md"}, + CountryToIsoIndex{117651, "md"}, + CountryToIsoIndex{117662, "mc"}, + CountryToIsoIndex{117669, "mn"}, + CountryToIsoIndex{117678, "ps"}, + CountryToIsoIndex{117729, "ms"}, + CountryToIsoIndex{117738, "me"}, + CountryToIsoIndex{117749, "me"}, + CountryToIsoIndex{117760, "ms"}, + CountryToIsoIndex{117770, "sh"}, + CountryToIsoIndex{117792, "mu"}, + CountryToIsoIndex{117798, "mu"}, + CountryToIsoIndex{117810, "mr"}, + CountryToIsoIndex{117822, "mr"}, + CountryToIsoIndex{117831, "mr"}, + CountryToIsoIndex{117841, "mr"}, + CountryToIsoIndex{117853, "mz"}, + CountryToIsoIndex{117863, "mz"}, + CountryToIsoIndex{117873, "ms"}, + CountryToIsoIndex{117880, "eg"}, + CountryToIsoIndex{117888, "mz"}, + CountryToIsoIndex{117898, "mz"}, + CountryToIsoIndex{117910, "mm"}, + CountryToIsoIndex{117917, "mz"}, + CountryToIsoIndex{117926, "mz"}, + CountryToIsoIndex{117935, "mz"}, + CountryToIsoIndex{117943, "mr"}, + CountryToIsoIndex{117957, "mr"}, + CountryToIsoIndex{117968, "mu"}, + CountryToIsoIndex{117976, "ps"}, + CountryToIsoIndex{118011, "mm"}, + CountryToIsoIndex{118017, "mm"}, + CountryToIsoIndex{118025, "mm"}, + CountryToIsoIndex{118034, "mm"}, + CountryToIsoIndex{118042, "mm"}, + CountryToIsoIndex{118052, "mm"}, + CountryToIsoIndex{118059, "mm"}, + CountryToIsoIndex{118074, "mm"}, + CountryToIsoIndex{118082, "mm"}, + CountryToIsoIndex{118098, "mm"}, + CountryToIsoIndex{118114, "mm"}, + CountryToIsoIndex{118133, "mm"}, + CountryToIsoIndex{118152, "mm"}, + CountryToIsoIndex{118172, "mm"}, + CountryToIsoIndex{118188, "mm"}, + CountryToIsoIndex{118211, "mm"}, + CountryToIsoIndex{118236, "mm"}, + CountryToIsoIndex{118245, "mm"}, + CountryToIsoIndex{118255, "mm"}, + CountryToIsoIndex{118265, "za"}, + CountryToIsoIndex{118282, "mv"}, + CountryToIsoIndex{118291, "mg"}, + CountryToIsoIndex{118306, "mg"}, + CountryToIsoIndex{118321, "ml"}, + CountryToIsoIndex{118328, "mw"}, + CountryToIsoIndex{118337, "mv"}, + CountryToIsoIndex{118346, "ml"}, + CountryToIsoIndex{118352, "mw"}, + CountryToIsoIndex{118361, "my"}, + CountryToIsoIndex{118373, "my"}, + CountryToIsoIndex{118387, "ma"}, + CountryToIsoIndex{118396, "mq"}, + CountryToIsoIndex{118408, "mk"}, + CountryToIsoIndex{118422, "mq"}, + CountryToIsoIndex{118434, "yt"}, + CountryToIsoIndex{118443, "yt"}, + CountryToIsoIndex{118453, "ci"}, + CountryToIsoIndex{118470, "ml"}, + CountryToIsoIndex{118477, "mt"}, + CountryToIsoIndex{118485, "mt"}, + CountryToIsoIndex{118492, "mt"}, + CountryToIsoIndex{118502, "mt"}, + CountryToIsoIndex{118512, "mg"}, + CountryToIsoIndex{118529, "mr"}, + CountryToIsoIndex{118541, "mu"}, + CountryToIsoIndex{118552, "mk"}, + CountryToIsoIndex{118564, "za"}, + CountryToIsoIndex{118580, "kr"}, + CountryToIsoIndex{118593, "ss"}, + CountryToIsoIndex{118605, "mt"}, + CountryToIsoIndex{118612, "mq"}, + CountryToIsoIndex{118625, "mx"}, + CountryToIsoIndex{118633, "mx"}, + CountryToIsoIndex{118643, "yt"}, + CountryToIsoIndex{118652, "mx"}, + CountryToIsoIndex{118659, "mx"}, + CountryToIsoIndex{118667, "mx"}, + CountryToIsoIndex{118675, "mx"}, + CountryToIsoIndex{118683, "fm"}, + CountryToIsoIndex{118698, "fm"}, + CountryToIsoIndex{118712, "us"}, + CountryToIsoIndex{118741, "eg"}, + CountryToIsoIndex{118749, "eg"}, + CountryToIsoIndex{118758, "ma"}, + CountryToIsoIndex{118767, "mc"}, + CountryToIsoIndex{118775, "mc"}, + CountryToIsoIndex{118784, "md"}, + CountryToIsoIndex{118794, "mr"}, + CountryToIsoIndex{118808, "mu"}, + CountryToIsoIndex{118816, "mz"}, + CountryToIsoIndex{118827, "mz"}, + CountryToIsoIndex{118839, "mn"}, + CountryToIsoIndex{118852, "mc"}, + CountryToIsoIndex{118860, "mc"}, + CountryToIsoIndex{118868, "mc"}, + CountryToIsoIndex{118876, "mc"}, + CountryToIsoIndex{118885, "mr"}, + CountryToIsoIndex{118896, "mu"}, + CountryToIsoIndex{118906, "mz"}, + CountryToIsoIndex{118918, "mz"}, + CountryToIsoIndex{118929, "md"}, + CountryToIsoIndex{118939, "mc"}, + CountryToIsoIndex{118947, "mc"}, + CountryToIsoIndex{118956, "mn"}, + CountryToIsoIndex{118967, "mn"}, + CountryToIsoIndex{118978, "im"}, + CountryToIsoIndex{118983, "mu"}, + CountryToIsoIndex{118992, "mz"}, + CountryToIsoIndex{119005, "mu"}, + CountryToIsoIndex{119019, "mr"}, + CountryToIsoIndex{119033, "mc"}, + CountryToIsoIndex{119041, "mz"}, + CountryToIsoIndex{119052, "mn"}, + CountryToIsoIndex{119064, "ms"}, + CountryToIsoIndex{119076, "pm"}, + CountryToIsoIndex{119105, "sh"}, + CountryToIsoIndex{119124, "eg"}, + CountryToIsoIndex{119132, "mm"}, + CountryToIsoIndex{119148, "ml"}, + CountryToIsoIndex{119154, "mt"}, + CountryToIsoIndex{119161, "mh"}, + CountryToIsoIndex{119177, "mq"}, + CountryToIsoIndex{119187, "eg"}, + CountryToIsoIndex{119195, "md"}, + CountryToIsoIndex{119206, "mc"}, + CountryToIsoIndex{119215, "me"}, + CountryToIsoIndex{119228, "mm"}, + CountryToIsoIndex{119237, "md"}, + CountryToIsoIndex{119247, "md"}, + CountryToIsoIndex{119257, "md"}, + CountryToIsoIndex{119266, "md"}, + CountryToIsoIndex{119276, "mr"}, + CountryToIsoIndex{119287, "mt"}, + CountryToIsoIndex{119294, "ma"}, + CountryToIsoIndex{119304, "mc"}, + CountryToIsoIndex{119312, "mc"}, + CountryToIsoIndex{119321, "mn"}, + CountryToIsoIndex{119331, "mn"}, + CountryToIsoIndex{119342, "mn"}, + CountryToIsoIndex{119355, "ms"}, + CountryToIsoIndex{119366, "ms"}, + CountryToIsoIndex{119377, "mu"}, + CountryToIsoIndex{119389, "mu"}, + CountryToIsoIndex{119399, "mr"}, + CountryToIsoIndex{119412, "mr"}, + CountryToIsoIndex{119423, "mr"}, + CountryToIsoIndex{119433, "ma"}, + CountryToIsoIndex{119441, "ms"}, + CountryToIsoIndex{119449, "ms"}, + CountryToIsoIndex{119459, "mz"}, + CountryToIsoIndex{119470, "mn"}, + CountryToIsoIndex{119480, "ms"}, + CountryToIsoIndex{119491, "ms"}, + CountryToIsoIndex{119505, "ms"}, + CountryToIsoIndex{119519, "ma"}, + CountryToIsoIndex{119529, "cf"}, + CountryToIsoIndex{119560, "mx"}, + CountryToIsoIndex{119569, "mx"}, + CountryToIsoIndex{119579, "mx"}, + CountryToIsoIndex{119588, "mx"}, + CountryToIsoIndex{119597, "mx"}, + CountryToIsoIndex{119608, "mx"}, + CountryToIsoIndex{119620, "mx"}, + CountryToIsoIndex{119629, "mx"}, + CountryToIsoIndex{119636, "mx"}, + CountryToIsoIndex{119647, "mk"}, + CountryToIsoIndex{119665, "sh"}, + CountryToIsoIndex{119688, "kn"}, + CountryToIsoIndex{119721, "lc"}, + CountryToIsoIndex{119743, "pm"}, + CountryToIsoIndex{119780, "vc"}, + CountryToIsoIndex{119819, "bs"}, + CountryToIsoIndex{119832, "ps"}, + CountryToIsoIndex{119860, "bs"}, + CountryToIsoIndex{119883, "ky"}, + CountryToIsoIndex{119905, "ic"}, + CountryToIsoIndex{119929, "cc"}, + CountryToIsoIndex{119960, "ph"}, + CountryToIsoIndex{119986, "fk"}, + CountryToIsoIndex{120012, "fk"}, + CountryToIsoIndex{120055, "fo"}, + CountryToIsoIndex{120075, "mp"}, + CountryToIsoIndex{120108, "mv"}, + CountryToIsoIndex{120133, "mu"}, + CountryToIsoIndex{120158, "sc"}, + CountryToIsoIndex{120182, "tc"}, + CountryToIsoIndex{120214, "ax"}, + CountryToIsoIndex{120235, "id"}, + CountryToIsoIndex{120251, "in"}, + CountryToIsoIndex{120267, "ae"}, + CountryToIsoIndex{120300, "ic"}, + CountryToIsoIndex{120325, "ph"}, + CountryToIsoIndex{120353, "mp"}, + CountryToIsoIndex{120388, "fm"}, + CountryToIsoIndex{120407, "ps"}, + CountryToIsoIndex{120436, "us"}, + CountryToIsoIndex{120459, "sc"}, + CountryToIsoIndex{120472, "nl"}, + CountryToIsoIndex{120489, "bq"}, + CountryToIsoIndex{120517, "no"}, + CountryToIsoIndex{120523, "ng"}, + CountryToIsoIndex{120533, "us"}, + CountryToIsoIndex{120553, "na"}, + CountryToIsoIndex{120561, "nr"}, + CountryToIsoIndex{120568, "ne"}, + CountryToIsoIndex{120576, "ng"}, + CountryToIsoIndex{120586, "ne"}, + CountryToIsoIndex{120593, "ng"}, + CountryToIsoIndex{120604, "ne"}, + CountryToIsoIndex{120610, "ng"}, + CountryToIsoIndex{120619, "ng"}, + CountryToIsoIndex{120629, "ng"}, + CountryToIsoIndex{120638, "ng"}, + CountryToIsoIndex{120647, "aq"}, + CountryToIsoIndex{120657, "gs"}, + CountryToIsoIndex{120698, "za"}, + CountryToIsoIndex{120706, "ss"}, + CountryToIsoIndex{120716, "na"}, + CountryToIsoIndex{120726, "na"}, + CountryToIsoIndex{120733, "na"}, + CountryToIsoIndex{120741, "na"}, + CountryToIsoIndex{120756, "na"}, + CountryToIsoIndex{120765, "na"}, + CountryToIsoIndex{120773, "na"}, + CountryToIsoIndex{120781, "na"}, + CountryToIsoIndex{120790, "na"}, + CountryToIsoIndex{120798, "na"}, + CountryToIsoIndex{120807, "na"}, + CountryToIsoIndex{120816, "na"}, + CountryToIsoIndex{120826, "na"}, + CountryToIsoIndex{120834, "na"}, + CountryToIsoIndex{120842, "na"}, + CountryToIsoIndex{120851, "na"}, + CountryToIsoIndex{120861, "na"}, + CountryToIsoIndex{120870, "na"}, + CountryToIsoIndex{120880, "na"}, + CountryToIsoIndex{120890, "na"}, + CountryToIsoIndex{120899, "na"}, + CountryToIsoIndex{120908, "na"}, + CountryToIsoIndex{120916, "na"}, + CountryToIsoIndex{120924, "na"}, + CountryToIsoIndex{120933, "na"}, + CountryToIsoIndex{120943, "vc"}, + CountryToIsoIndex{120984, "kn"}, + CountryToIsoIndex{121011, "lc"}, + CountryToIsoIndex{121025, "mf"}, + CountryToIsoIndex{121041, "nr"}, + CountryToIsoIndex{121048, "nc"}, + CountryToIsoIndex{121067, "nz"}, + CountryToIsoIndex{121085, "nr"}, + CountryToIsoIndex{121091, "nr"}, + CountryToIsoIndex{121100, "nr"}, + CountryToIsoIndex{121106, "nr"}, + CountryToIsoIndex{121112, "nr"}, + CountryToIsoIndex{121125, "nr"}, + CountryToIsoIndex{121132, "nz"}, + CountryToIsoIndex{121146, "nr"}, + CountryToIsoIndex{121153, "nr"}, + CountryToIsoIndex{121159, "nr"}, + CountryToIsoIndex{121166, "nr"}, + CountryToIsoIndex{121174, "nr"}, + CountryToIsoIndex{121181, "ng"}, + CountryToIsoIndex{121191, "ng"}, + CountryToIsoIndex{121202, "ne"}, + CountryToIsoIndex{121209, "nr"}, + CountryToIsoIndex{121217, "ne"}, + CountryToIsoIndex{121224, "ng"}, + CountryToIsoIndex{121235, "ng"}, + CountryToIsoIndex{121250, "ps"}, + CountryToIsoIndex{121301, "cz"}, + CountryToIsoIndex{121317, "cd"}, + CountryToIsoIndex{121351, "cf"}, + CountryToIsoIndex{121375, "do"}, + CountryToIsoIndex{121396, "de"}, + CountryToIsoIndex{121405, "np"}, + CountryToIsoIndex{121413, "np"}, + CountryToIsoIndex{121420, "nl"}, + CountryToIsoIndex{121433, "nl"}, + CountryToIsoIndex{121443, "nl"}, + CountryToIsoIndex{121454, "nl"}, + CountryToIsoIndex{121466, "nl"}, + CountryToIsoIndex{121476, "nl"}, + CountryToIsoIndex{121491, "nl"}, + CountryToIsoIndex{121501, "nl"}, + CountryToIsoIndex{121512, "nc"}, + CountryToIsoIndex{121526, "np"}, + CountryToIsoIndex{121533, "nz"}, + CountryToIsoIndex{121544, "np"}, + CountryToIsoIndex{121550, "nc"}, + CountryToIsoIndex{121564, "np"}, + CountryToIsoIndex{121572, "nz"}, + CountryToIsoIndex{121584, "ni"}, + CountryToIsoIndex{121595, "de"}, + CountryToIsoIndex{121604, "de"}, + CountryToIsoIndex{121612, "de"}, + CountryToIsoIndex{121621, "np"}, + CountryToIsoIndex{121626, "np"}, + CountryToIsoIndex{121633, "np"}, + CountryToIsoIndex{121639, "np"}, + CountryToIsoIndex{121652, "np"}, + CountryToIsoIndex{121659, "np"}, + CountryToIsoIndex{121667, "np"}, + CountryToIsoIndex{121674, "np"}, + CountryToIsoIndex{121681, "np"}, + CountryToIsoIndex{121688, "np"}, + CountryToIsoIndex{121696, "np"}, + CountryToIsoIndex{121701, "np"}, + CountryToIsoIndex{121709, "np"}, + CountryToIsoIndex{121718, "np"}, + CountryToIsoIndex{121725, "np"}, + CountryToIsoIndex{121734, "np"}, + CountryToIsoIndex{121742, "nr"}, + CountryToIsoIndex{121748, "nl"}, + CountryToIsoIndex{121760, "nl"}, + CountryToIsoIndex{121779, "nc"}, + CountryToIsoIndex{121793, "nc"}, + CountryToIsoIndex{121807, "nz"}, + CountryToIsoIndex{121818, "nc"}, + CountryToIsoIndex{121832, "nc"}, + CountryToIsoIndex{121853, "nz"}, + CountryToIsoIndex{121865, "nz"}, + CountryToIsoIndex{121884, "nz"}, + CountryToIsoIndex{121897, "nz"}, + CountryToIsoIndex{121910, "fr"}, + CountryToIsoIndex{121919, "ph"}, + CountryToIsoIndex{121927, "ru"}, + CountryToIsoIndex{121931, "ga"}, + CountryToIsoIndex{121937, "gh"}, + CountryToIsoIndex{121943, "gr"}, + CountryToIsoIndex{121951, "gd"}, + CountryToIsoIndex{121961, "gb"}, + CountryToIsoIndex{121970, "gn"}, + CountryToIsoIndex{121976, "gw"}, + CountryToIsoIndex{121987, "gr"}, + CountryToIsoIndex{121995, "gl"}, + CountryToIsoIndex{122008, "gy"}, + CountryToIsoIndex{122016, "gl"}, + CountryToIsoIndex{122027, "gp"}, + CountryToIsoIndex{122038, "gu"}, + CountryToIsoIndex{122045, "gt"}, + CountryToIsoIndex{122056, "gi"}, + CountryToIsoIndex{122066, "jp"}, + CountryToIsoIndex{122079, "np"}, + CountryToIsoIndex{122085, "ni"}, + CountryToIsoIndex{122096, "ni"}, + CountryToIsoIndex{122106, "ni"}, + CountryToIsoIndex{122117, "ni"}, + CountryToIsoIndex{122132, "ni"}, + CountryToIsoIndex{122143, "ni"}, + CountryToIsoIndex{122154, "nl"}, + CountryToIsoIndex{122164, "nl"}, + CountryToIsoIndex{122177, "nl"}, + CountryToIsoIndex{122191, "bq"}, + CountryToIsoIndex{122213, "ne"}, + CountryToIsoIndex{122221, "ng"}, + CountryToIsoIndex{122230, "nl"}, + CountryToIsoIndex{122241, "nl"}, + CountryToIsoIndex{122253, "de"}, + CountryToIsoIndex{122260, "nc"}, + CountryToIsoIndex{122276, "nz"}, + CountryToIsoIndex{122289, "nc"}, + CountryToIsoIndex{122306, "nz"}, + CountryToIsoIndex{122320, "ng"}, + CountryToIsoIndex{122329, "ne"}, + CountryToIsoIndex{122335, "ne"}, + CountryToIsoIndex{122348, "ng"}, + CountryToIsoIndex{122356, "ng"}, + CountryToIsoIndex{122371, "ng"}, + CountryToIsoIndex{122379, "ng"}, + CountryToIsoIndex{122388, "ng"}, + CountryToIsoIndex{122397, "ne"}, + CountryToIsoIndex{122405, "ng"}, + CountryToIsoIndex{122414, "ng"}, + CountryToIsoIndex{122423, "ng"}, + CountryToIsoIndex{122433, "ne"}, + CountryToIsoIndex{122440, "ng"}, + CountryToIsoIndex{122450, "ng"}, + CountryToIsoIndex{122459, "ng"}, + CountryToIsoIndex{122468, "ng"}, + CountryToIsoIndex{122477, "ne"}, + CountryToIsoIndex{122485, "ng"}, + CountryToIsoIndex{122495, "ng"}, + CountryToIsoIndex{122504, "ne"}, + CountryToIsoIndex{122513, "ng"}, + CountryToIsoIndex{122523, "ne"}, + CountryToIsoIndex{122531, "nc"}, + CountryToIsoIndex{122546, "nz"}, + CountryToIsoIndex{122558, "ne"}, + CountryToIsoIndex{122563, "ne"}, + CountryToIsoIndex{122569, "ne"}, + CountryToIsoIndex{122574, "ne"}, + CountryToIsoIndex{122581, "ne"}, + CountryToIsoIndex{122588, "ng"}, + CountryToIsoIndex{122597, "ne"}, + CountryToIsoIndex{122603, "ne"}, + CountryToIsoIndex{122610, "ne"}, + CountryToIsoIndex{122617, "ng"}, + CountryToIsoIndex{122625, "ng"}, + CountryToIsoIndex{122634, "ng"}, + CountryToIsoIndex{122644, "ng"}, + CountryToIsoIndex{122652, "ng"}, + CountryToIsoIndex{122660, "ng"}, + CountryToIsoIndex{122668, "ng"}, + CountryToIsoIndex{122677, "ne"}, + CountryToIsoIndex{122686, "ng"}, + CountryToIsoIndex{122697, "ne"}, + CountryToIsoIndex{122705, "ni"}, + CountryToIsoIndex{122715, "ni"}, + CountryToIsoIndex{122725, "ni"}, + CountryToIsoIndex{122735, "ng"}, + CountryToIsoIndex{122746, "ni"}, + CountryToIsoIndex{122758, "ni"}, + CountryToIsoIndex{122769, "ni"}, + CountryToIsoIndex{122779, "ni"}, + CountryToIsoIndex{122790, "ni"}, + CountryToIsoIndex{122802, "ni"}, + CountryToIsoIndex{122812, "ni"}, + CountryToIsoIndex{122822, "ni"}, + CountryToIsoIndex{122832, "ni"}, + CountryToIsoIndex{122844, "ni"}, + CountryToIsoIndex{122854, "ni"}, + CountryToIsoIndex{122865, "ni"}, + CountryToIsoIndex{122877, "ni"}, + CountryToIsoIndex{122888, "ni"}, + CountryToIsoIndex{122900, "de"}, + CountryToIsoIndex{122907, "ng"}, + CountryToIsoIndex{122919, "ni"}, + CountryToIsoIndex{122930, "nu"}, + CountryToIsoIndex{122936, "nu"}, + CountryToIsoIndex{122942, "np"}, + CountryToIsoIndex{122948, "np"}, + CountryToIsoIndex{122955, "no"}, + CountryToIsoIndex{122966, "ng"}, + CountryToIsoIndex{122975, "ne"}, + CountryToIsoIndex{122981, "eg"}, + CountryToIsoIndex{122988, "ng"}, + CountryToIsoIndex{122997, "ne"}, + CountryToIsoIndex{123008, "nl"}, + CountryToIsoIndex{123021, "nc"}, + CountryToIsoIndex{123036, "nu"}, + CountryToIsoIndex{123041, "nu"}, + CountryToIsoIndex{123053, "nu"}, + CountryToIsoIndex{123060, "nc"}, + CountryToIsoIndex{123073, "nu"}, + CountryToIsoIndex{123078, "nu"}, + CountryToIsoIndex{123084, "nz"}, + CountryToIsoIndex{123095, "nz"}, + CountryToIsoIndex{123106, "nu"}, + CountryToIsoIndex{123112, "nu"}, + CountryToIsoIndex{123118, "nu"}, + CountryToIsoIndex{123124, "nu"}, + CountryToIsoIndex{123130, "nu"}, + CountryToIsoIndex{123134, "nu"}, + CountryToIsoIndex{123139, "nu"}, + CountryToIsoIndex{123144, "nc"}, + CountryToIsoIndex{123157, "nz"}, + CountryToIsoIndex{123168, "nu"}, + CountryToIsoIndex{123174, "nu"}, + CountryToIsoIndex{123182, "ng"}, + CountryToIsoIndex{123190, "nu"}, + CountryToIsoIndex{123195, "nc"}, + CountryToIsoIndex{123210, "nu"}, + CountryToIsoIndex{123217, "nu"}, + CountryToIsoIndex{123225, "nz"}, + CountryToIsoIndex{123238, "ne"}, + CountryToIsoIndex{123244, "ng"}, + CountryToIsoIndex{123252, "ng"}, + CountryToIsoIndex{123261, "ng"}, + CountryToIsoIndex{123269, "ng"}, + CountryToIsoIndex{123278, "nl"}, + CountryToIsoIndex{123289, "bq"}, + CountryToIsoIndex{123307, "nl"}, + CountryToIsoIndex{123318, "ne"}, + CountryToIsoIndex{123326, "ne"}, + CountryToIsoIndex{123334, "ne"}, + CountryToIsoIndex{123343, "nl"}, + CountryToIsoIndex{123354, "bq"}, + CountryToIsoIndex{123374, "nu"}, + CountryToIsoIndex{123381, "ng"}, + CountryToIsoIndex{123390, "ne"}, + CountryToIsoIndex{123398, "ne"}, + CountryToIsoIndex{123405, "nl"}, + CountryToIsoIndex{123417, "jp"}, + CountryToIsoIndex{123425, "de"}, + CountryToIsoIndex{123434, "de"}, + CountryToIsoIndex{123444, "de"}, + CountryToIsoIndex{123454, "dj"}, + CountryToIsoIndex{123464, "jo"}, + CountryToIsoIndex{123475, "de"}, + CountryToIsoIndex{123483, "cz"}, + CountryToIsoIndex{123505, "do"}, + CountryToIsoIndex{123525, "gb"}, + CountryToIsoIndex{123544, "io"}, + CountryToIsoIndex{123583, "gb"}, + CountryToIsoIndex{123592, "ne"}, + CountryToIsoIndex{123599, "ne"}, + CountryToIsoIndex{123606, "at"}, + CountryToIsoIndex{123612, "no"}, + CountryToIsoIndex{123619, "no"}, + CountryToIsoIndex{123627, "kp"}, + CountryToIsoIndex{123639, "mp"}, + CountryToIsoIndex{123666, "no"}, + CountryToIsoIndex{123676, "no"}, + CountryToIsoIndex{123683, "no"}, + CountryToIsoIndex{123689, "no"}, + CountryToIsoIndex{123696, "kp"}, + CountryToIsoIndex{123708, "sd"}, + CountryToIsoIndex{123719, "kp"}, + CountryToIsoIndex{123731, "mp"}, + CountryToIsoIndex{123753, "mp"}, + CountryToIsoIndex{123774, "kp"}, + CountryToIsoIndex{123785, "no"}, + CountryToIsoIndex{123792, "no"}, + CountryToIsoIndex{123801, "no"}, + CountryToIsoIndex{123810, "no"}, + CountryToIsoIndex{123820, "no"}, + CountryToIsoIndex{123829, "no"}, + CountryToIsoIndex{123840, "kp"}, + CountryToIsoIndex{123851, "kp"}, + CountryToIsoIndex{123862, "mp"}, + CountryToIsoIndex{123877, "mp"}, + CountryToIsoIndex{123892, "mp"}, + CountryToIsoIndex{123906, "kp"}, + CountryToIsoIndex{123916, "mp"}, + CountryToIsoIndex{123931, "mp"}, + CountryToIsoIndex{123946, "no"}, + CountryToIsoIndex{123952, "no"}, + CountryToIsoIndex{123960, "nf"}, + CountryToIsoIndex{123968, "nf"}, + CountryToIsoIndex{123982, "nf"}, + CountryToIsoIndex{123997, "nf"}, + CountryToIsoIndex{124012, "nf"}, + CountryToIsoIndex{124027, "nf"}, + CountryToIsoIndex{124045, "nf"}, + CountryToIsoIndex{124059, "nf"}, + CountryToIsoIndex{124075, "nf"}, + CountryToIsoIndex{124101, "nf"}, + CountryToIsoIndex{124115, "nf"}, + CountryToIsoIndex{124130, "nf"}, + CountryToIsoIndex{124145, "nf"}, + CountryToIsoIndex{124159, "nf"}, + CountryToIsoIndex{124173, "nf"}, + CountryToIsoIndex{124185, "nf"}, + CountryToIsoIndex{124200, "nf"}, + CountryToIsoIndex{124213, "nf"}, + CountryToIsoIndex{124226, "nf"}, + CountryToIsoIndex{124240, "nf"}, + CountryToIsoIndex{124254, "nf"}, + CountryToIsoIndex{124270, "nf"}, + CountryToIsoIndex{124284, "nf"}, + CountryToIsoIndex{124298, "nf"}, + CountryToIsoIndex{124313, "nf"}, + CountryToIsoIndex{124324, "nf"}, + CountryToIsoIndex{124336, "nf"}, + CountryToIsoIndex{124352, "no"}, + CountryToIsoIndex{124358, "no"}, + CountryToIsoIndex{124364, "no"}, + CountryToIsoIndex{124373, "no"}, + CountryToIsoIndex{124383, "no"}, + CountryToIsoIndex{124389, "no"}, + CountryToIsoIndex{124395, "no"}, + CountryToIsoIndex{124405, "no"}, + CountryToIsoIndex{124412, "ci"}, + CountryToIsoIndex{124430, "kp"}, + CountryToIsoIndex{124442, "mp"}, + CountryToIsoIndex{124467, "nr"}, + CountryToIsoIndex{124472, "no"}, + CountryToIsoIndex{124480, "no"}, + CountryToIsoIndex{124489, "no"}, + CountryToIsoIndex{124497, "no"}, + CountryToIsoIndex{124506, "no"}, + CountryToIsoIndex{124516, "no"}, + CountryToIsoIndex{124526, "no"}, + CountryToIsoIndex{124535, "no"}, + CountryToIsoIndex{124544, "no"}, + CountryToIsoIndex{124554, "no"}, + CountryToIsoIndex{124563, "no"}, + CountryToIsoIndex{124570, "no"}, + CountryToIsoIndex{124578, "no"}, + CountryToIsoIndex{124588, "no"}, + CountryToIsoIndex{124597, "no"}, + CountryToIsoIndex{124607, "no"}, + CountryToIsoIndex{124619, "no"}, + CountryToIsoIndex{124626, "no"}, + CountryToIsoIndex{124640, "no"}, + CountryToIsoIndex{124646, "no"}, + CountryToIsoIndex{124655, "no"}, + CountryToIsoIndex{124663, "no"}, + CountryToIsoIndex{124672, "no"}, + CountryToIsoIndex{124681, "no"}, + CountryToIsoIndex{124692, "no"}, + CountryToIsoIndex{124702, "no"}, + CountryToIsoIndex{124708, "no"}, + CountryToIsoIndex{124714, "no"}, + CountryToIsoIndex{124723, "mp"}, + CountryToIsoIndex{124745, "kp"}, + CountryToIsoIndex{124760, "mp"}, + CountryToIsoIndex{124782, "kp"}, + CountryToIsoIndex{124795, "vg"}, + CountryToIsoIndex{124819, "cv"}, + CountryToIsoIndex{124833, "fk"}, + CountryToIsoIndex{124846, "ky"}, + CountryToIsoIndex{124858, "ck"}, + CountryToIsoIndex{124868, "mp"}, + CountryToIsoIndex{124892, "mh"}, + CountryToIsoIndex{124906, "nf"}, + CountryToIsoIndex{124919, "sb"}, + CountryToIsoIndex{124933, "tc"}, + CountryToIsoIndex{124956, "vi"}, + CountryToIsoIndex{124979, "nc"}, + CountryToIsoIndex{124994, "nz"}, + CountryToIsoIndex{125009, "nz"}, + CountryToIsoIndex{125023, "nc"}, + CountryToIsoIndex{125039, "nc"}, + CountryToIsoIndex{125059, "nz"}, + CountryToIsoIndex{125077, "nc"}, + CountryToIsoIndex{125091, "nz"}, + CountryToIsoIndex{125103, "nc"}, + CountryToIsoIndex{125118, "nc"}, + CountryToIsoIndex{125134, "nc"}, + CountryToIsoIndex{125150, "nc"}, + CountryToIsoIndex{125166, "nc"}, + CountryToIsoIndex{125182, "nc"}, + CountryToIsoIndex{125198, "nz"}, + CountryToIsoIndex{125211, "nz"}, + CountryToIsoIndex{125225, "nz"}, + CountryToIsoIndex{125240, "nz"}, + CountryToIsoIndex{125255, "nz"}, + CountryToIsoIndex{125270, "nz"}, + CountryToIsoIndex{125282, "nc"}, + CountryToIsoIndex{125298, "nc"}, + CountryToIsoIndex{125315, "nz"}, + CountryToIsoIndex{125329, "nc"}, + CountryToIsoIndex{125344, "nc"}, + CountryToIsoIndex{125361, "nz"}, + CountryToIsoIndex{125375, "no"}, + CountryToIsoIndex{125380, "no"}, + CountryToIsoIndex{125387, "nz"}, + CountryToIsoIndex{125402, "es"}, + CountryToIsoIndex{125410, "de"}, + CountryToIsoIndex{125418, "io"}, + CountryToIsoIndex{125466, "cf"}, + CountryToIsoIndex{125493, "cz"}, + CountryToIsoIndex{125508, "do"}, + CountryToIsoIndex{125526, "cd"}, + CountryToIsoIndex{125557, "pg"}, + CountryToIsoIndex{125575, "nc"}, + CountryToIsoIndex{125591, "nz"}, + CountryToIsoIndex{125605, "nc"}, + CountryToIsoIndex{125624, "nz"}, + CountryToIsoIndex{125642, "tl"}, + CountryToIsoIndex{125655, "at"}, + CountryToIsoIndex{125667, "at"}, + CountryToIsoIndex{125683, "nc"}, + CountryToIsoIndex{125699, "nz"}, + CountryToIsoIndex{125713, "qo"}, + CountryToIsoIndex{125731, "nr"}, + CountryToIsoIndex{125736, "no"}, + CountryToIsoIndex{125743, "nc"}, + CountryToIsoIndex{125760, "nz"}, + CountryToIsoIndex{125776, "nz"}, + CountryToIsoIndex{125790, "nc"}, + CountryToIsoIndex{125805, "nc"}, + CountryToIsoIndex{125821, "nz"}, + CountryToIsoIndex{125836, "nz"}, + CountryToIsoIndex{125850, "nz"}, + CountryToIsoIndex{125858, "nz"}, + CountryToIsoIndex{125868, "va"}, + CountryToIsoIndex{125876, "nr"}, + CountryToIsoIndex{125883, "nc"}, + CountryToIsoIndex{125897, "nc"}, + CountryToIsoIndex{125910, "nc"}, + CountryToIsoIndex{125925, "nz"}, + CountryToIsoIndex{125937, "nl"}, + CountryToIsoIndex{125949, "nz"}, + CountryToIsoIndex{125961, "nu"}, + CountryToIsoIndex{125966, "eh"}, + CountryToIsoIndex{125981, "nc"}, + CountryToIsoIndex{125994, "nc"}, + CountryToIsoIndex{126008, "nz"}, + CountryToIsoIndex{126019, "nu"}, + CountryToIsoIndex{126025, "nz"}, + CountryToIsoIndex{126036, "nz"}, + CountryToIsoIndex{126047, "nz"}, + CountryToIsoIndex{126059, "nu"}, + CountryToIsoIndex{126065, "zm"}, + CountryToIsoIndex{126073, "zw"}, + CountryToIsoIndex{126084, "na"}, + CountryToIsoIndex{126094, "na"}, + CountryToIsoIndex{126105, "nr"}, + CountryToIsoIndex{126114, "nr"}, + CountryToIsoIndex{126121, "np"}, + CountryToIsoIndex{126129, "de"}, + CountryToIsoIndex{126143, "np"}, + CountryToIsoIndex{126150, "np"}, + CountryToIsoIndex{126159, "mp"}, + CountryToIsoIndex{126178, "ne"}, + CountryToIsoIndex{126186, "ng"}, + CountryToIsoIndex{126197, "ne"}, + CountryToIsoIndex{126207, "ni"}, + CountryToIsoIndex{126220, "nu"}, + CountryToIsoIndex{126229, "ne"}, + CountryToIsoIndex{126236, "ng"}, + CountryToIsoIndex{126246, "ne"}, + CountryToIsoIndex{126253, "ni"}, + CountryToIsoIndex{126264, "ni"}, + CountryToIsoIndex{126276, "ne"}, + CountryToIsoIndex{126283, "no"}, + CountryToIsoIndex{126291, "no"}, + CountryToIsoIndex{126300, "nc"}, + CountryToIsoIndex{126315, "nz"}, + CountryToIsoIndex{126327, "mp"}, + CountryToIsoIndex{126347, "mp"}, + CountryToIsoIndex{126367, "mp"}, + CountryToIsoIndex{126386, "no"}, + CountryToIsoIndex{126396, "mp"}, + CountryToIsoIndex{126418, "kn"}, + CountryToIsoIndex{126444, "lc"}, + CountryToIsoIndex{126459, "sm"}, + CountryToIsoIndex{126477, "pm"}, + CountryToIsoIndex{126507, "vc"}, + CountryToIsoIndex{126545, "sh"}, + CountryToIsoIndex{126563, "nc"}, + CountryToIsoIndex{126581, "nz"}, + CountryToIsoIndex{126596, "nc"}, + CountryToIsoIndex{126610, "nz"}, + CountryToIsoIndex{126621, "de"}, + CountryToIsoIndex{126630, "de"}, + CountryToIsoIndex{126638, "nl"}, + CountryToIsoIndex{126650, "bq"}, + CountryToIsoIndex{126677, "no"}, + CountryToIsoIndex{126687, "au"}, + CountryToIsoIndex{126698, "nf"}, + CountryToIsoIndex{126713, "nf"}, + CountryToIsoIndex{126729, "no"}, + CountryToIsoIndex{126742, "no"}, + CountryToIsoIndex{126757, "no"}, + CountryToIsoIndex{126768, "nf"}, + CountryToIsoIndex{126784, "no"}, + CountryToIsoIndex{126793, "no"}, + CountryToIsoIndex{126804, "no"}, + CountryToIsoIndex{126817, "no"}, + CountryToIsoIndex{126825, "no"}, + CountryToIsoIndex{126839, "nl"}, + CountryToIsoIndex{126850, "np"}, + CountryToIsoIndex{126859, "np"}, + CountryToIsoIndex{126866, "np"}, + CountryToIsoIndex{126874, "sv"}, + CountryToIsoIndex{126885, "eh"}, + CountryToIsoIndex{126899, "ci"}, + CountryToIsoIndex{126916, "ci"}, + CountryToIsoIndex{126933, "ci"}, + CountryToIsoIndex{126966, "qo"}, + CountryToIsoIndex{126984, "qo"}, + CountryToIsoIndex{127000, "qo"}, + CountryToIsoIndex{127019, "qo"}, + CountryToIsoIndex{127039, "qo"}, + CountryToIsoIndex{127054, "qo"}, + CountryToIsoIndex{127072, "qo"}, + CountryToIsoIndex{127087, "qo"}, + CountryToIsoIndex{127113, "qo"}, + CountryToIsoIndex{127133, "qo"}, + CountryToIsoIndex{127151, "qo"}, + CountryToIsoIndex{127168, "qo"}, + CountryToIsoIndex{127187, "ug"}, + CountryToIsoIndex{127195, "ua"}, + CountryToIsoIndex{127205, "qo"}, + CountryToIsoIndex{127220, "uz"}, + CountryToIsoIndex{127232, "uz"}, + CountryToIsoIndex{127244, "ug"}, + CountryToIsoIndex{127251, "vg"}, + CountryToIsoIndex{127286, "ky"}, + CountryToIsoIndex{127302, "km"}, + CountryToIsoIndex{127320, "cc"}, + CountryToIsoIndex{127345, "ck"}, + CountryToIsoIndex{127359, "fo"}, + CountryToIsoIndex{127375, "fk"}, + CountryToIsoIndex{127396, "fk"}, + CountryToIsoIndex{127434, "um"}, + CountryToIsoIndex{127461, "mh"}, + CountryToIsoIndex{127479, "mv"}, + CountryToIsoIndex{127499, "vi"}, + CountryToIsoIndex{127537, "tc"}, + CountryToIsoIndex{127570, "pw"}, + CountryToIsoIndex{127585, "pn"}, + CountryToIsoIndex{127603, "sb"}, + CountryToIsoIndex{127622, "ax"}, + CountryToIsoIndex{127638, "bv"}, + CountryToIsoIndex{127653, "cp"}, + CountryToIsoIndex{127672, "hm"}, + CountryToIsoIndex{127709, "im"}, + CountryToIsoIndex{127725, "mu"}, + CountryToIsoIndex{127742, "ac"}, + CountryToIsoIndex{127766, "cx"}, + CountryToIsoIndex{127784, "tt"}, + CountryToIsoIndex{127820, "nf"}, + CountryToIsoIndex{127836, "mk"}, + CountryToIsoIndex{127850, "gb"}, + CountryToIsoIndex{127853, "eh"}, + CountryToIsoIndex{127870, "qo"}, + CountryToIsoIndex{127890, "qo"}, + CountryToIsoIndex{127917, "qo"}, + CountryToIsoIndex{127944, "ua"}, + CountryToIsoIndex{127952, "nl"}, + CountryToIsoIndex{127958, "nl"}, + CountryToIsoIndex{127965, "ax"}, + CountryToIsoIndex{127979, "ax"}, + CountryToIsoIndex{127995, "nl"}, + CountryToIsoIndex{128003, "it"}, + CountryToIsoIndex{128016, "om"}, + CountryToIsoIndex{128022, "om"}, + CountryToIsoIndex{128029, "om"}, + CountryToIsoIndex{128034, "om"}, + CountryToIsoIndex{128046, "om"}, + CountryToIsoIndex{128053, "om"}, + CountryToIsoIndex{128059, "om"}, + CountryToIsoIndex{128065, "om"}, + CountryToIsoIndex{128071, "om"}, + CountryToIsoIndex{128077, "qo"}, + CountryToIsoIndex{128097, "om"}, + CountryToIsoIndex{128103, "om"}, + CountryToIsoIndex{128109, "om"}, + CountryToIsoIndex{128117, "om"}, + CountryToIsoIndex{128124, "om"}, + CountryToIsoIndex{128131, "om"}, + CountryToIsoIndex{128136, "om"}, + CountryToIsoIndex{128143, "hn"}, + CountryToIsoIndex{128152, "hn"}, + CountryToIsoIndex{128160, "hn"}, + CountryToIsoIndex{128169, "hn"}, + CountryToIsoIndex{128179, "hn"}, + CountryToIsoIndex{128188, "hu"}, + CountryToIsoIndex{128195, "hu"}, + CountryToIsoIndex{128202, "hu"}, + CountryToIsoIndex{128210, "hu"}, + CountryToIsoIndex{128219, "hu"}, + CountryToIsoIndex{128225, "hn"}, + CountryToIsoIndex{128235, "hu"}, + CountryToIsoIndex{128243, "tl"}, + CountryToIsoIndex{128253, "tl"}, + CountryToIsoIndex{128264, "at"}, + CountryToIsoIndex{128275, "at"}, + CountryToIsoIndex{128285, "tl"}, + CountryToIsoIndex{128295, "hk"}, + CountryToIsoIndex{128305, "qo"}, + CountryToIsoIndex{128342, "do"}, + CountryToIsoIndex{128371, "cd"}, + CountryToIsoIndex{128392, "do"}, + CountryToIsoIndex{128422, "cd"}, + CountryToIsoIndex{128444, "uy"}, + CountryToIsoIndex{128452, "ru"}, + CountryToIsoIndex{128465, "cf"}, + CountryToIsoIndex{128489, "cf"}, + CountryToIsoIndex{128514, "ar"}, + CountryToIsoIndex{128539, "ie"}, + CountryToIsoIndex{128561, "am"}, + CountryToIsoIndex{128585, "za"}, + CountryToIsoIndex{128613, "kr"}, + CountryToIsoIndex{128640, "is"}, + CountryToIsoIndex{128664, "at"}, + CountryToIsoIndex{128691, "az"}, + CountryToIsoIndex{128721, "bs"}, + CountryToIsoIndex{128748, "br"}, + CountryToIsoIndex{128775, "bb"}, + CountryToIsoIndex{128802, "bd"}, + CountryToIsoIndex{128833, "bh"}, + CountryToIsoIndex{128857, "bz"}, + CountryToIsoIndex{128883, "be"}, + CountryToIsoIndex{128911, "by"}, + CountryToIsoIndex{128938, "bm"}, + CountryToIsoIndex{128962, "bg"}, + CountryToIsoIndex{128990, "bf"}, + CountryToIsoIndex{129022, "bi"}, + CountryToIsoIndex{129049, "bn"}, + CountryToIsoIndex{129078, "bt"}, + CountryToIsoIndex{129102, "bo"}, + CountryToIsoIndex{129131, "ba"}, + CountryToIsoIndex{129181, "bw"}, + CountryToIsoIndex{129213, "bj"}, + CountryToIsoIndex{129238, "dj"}, + CountryToIsoIndex{129266, "dm"}, + CountryToIsoIndex{129293, "dk"}, + CountryToIsoIndex{129319, "gq"}, + CountryToIsoIndex{129347, "ec"}, + CountryToIsoIndex{129370, "er"}, + CountryToIsoIndex{129392, "ee"}, + CountryToIsoIndex{129415, "vi"}, + CountryToIsoIndex{129455, "fk"}, + CountryToIsoIndex{129486, "mp"}, + CountryToIsoIndex{129521, "mh"}, + CountryToIsoIndex{129551, "nf"}, + CountryToIsoIndex{129586, "sb"}, + CountryToIsoIndex{129616, "et"}, + CountryToIsoIndex{129637, "vg"}, + CountryToIsoIndex{129691, "io"}, + CountryToIsoIndex{129747, "ky"}, + CountryToIsoIndex{129780, "cv"}, + CountryToIsoIndex{129818, "ck"}, + CountryToIsoIndex{129850, "vu"}, + CountryToIsoIndex{129872, "fr"}, + CountryToIsoIndex{129894, "fj"}, + CountryToIsoIndex{129913, "fi"}, + CountryToIsoIndex{129935, "ph"}, + CountryToIsoIndex{129958, "gf"}, + CountryToIsoIndex{129987, "pf"}, + CountryToIsoIndex{130020, "vc"}, + CountryToIsoIndex{130057, "ve"}, + CountryToIsoIndex{130085, "vn"}, + CountryToIsoIndex{130109, "ga"}, + CountryToIsoIndex{130129, "gp"}, + CountryToIsoIndex{130152, "gm"}, + CountryToIsoIndex{130173, "gh"}, + CountryToIsoIndex{130192, "de"}, + CountryToIsoIndex{130213, "gd"}, + CountryToIsoIndex{130234, "gn"}, + CountryToIsoIndex{130253, "gw"}, + CountryToIsoIndex{130278, "gl"}, + CountryToIsoIndex{130302, "gr"}, + CountryToIsoIndex{130324, "gi"}, + CountryToIsoIndex{130349, "gu"}, + CountryToIsoIndex{130369, "gt"}, + CountryToIsoIndex{130393, "kp"}, + CountryToIsoIndex{130420, "gy"}, + CountryToIsoIndex{130441, "ge"}, + CountryToIsoIndex{130462, "ht"}, + CountryToIsoIndex{130482, "hn"}, + CountryToIsoIndex{130506, "hu"}, + CountryToIsoIndex{130528, "sh"}, + CountryToIsoIndex{130550, "in"}, + CountryToIsoIndex{130570, "id"}, + CountryToIsoIndex{130594, "iq"}, + CountryToIsoIndex{130614, "ir"}, + CountryToIsoIndex{130634, "il"}, + CountryToIsoIndex{130657, "it"}, + CountryToIsoIndex{130679, "ps"}, + CountryToIsoIndex{130723, "jm"}, + CountryToIsoIndex{130745, "jp"}, + CountryToIsoIndex{130766, "jo"}, + CountryToIsoIndex{130788, "nc"}, + CountryToIsoIndex{130818, "cm"}, + CountryToIsoIndex{130845, "kz"}, + CountryToIsoIndex{130872, "ke"}, + CountryToIsoIndex{130892, "kn"}, + CountryToIsoIndex{130922, "ki"}, + CountryToIsoIndex{130945, "qa"}, + CountryToIsoIndex{130964, "kg"}, + CountryToIsoIndex{130992, "cr"}, + CountryToIsoIndex{131021, "kw"}, + CountryToIsoIndex{131042, "kh"}, + CountryToIsoIndex{131071, "ca"}, + CountryToIsoIndex{131095, "co"}, + CountryToIsoIndex{131123, "km"}, + CountryToIsoIndex{131150, "hr"}, + CountryToIsoIndex{131178, "cg"}, + CountryToIsoIndex{131200, "ci"}, + CountryToIsoIndex{131229, "cu"}, + CountryToIsoIndex{131250, "cy"}, + CountryToIsoIndex{131274, "lr"}, + CountryToIsoIndex{131296, "la"}, + CountryToIsoIndex{131316, "lv"}, + CountryToIsoIndex{131338, "lb"}, + CountryToIsoIndex{131361, "ls"}, + CountryToIsoIndex{131382, "ly"}, + CountryToIsoIndex{131403, "lt"}, + CountryToIsoIndex{131426, "lu"}, + CountryToIsoIndex{131449, "lc"}, + CountryToIsoIndex{131470, "li"}, + CountryToIsoIndex{131502, "mg"}, + CountryToIsoIndex{131525, "fm"}, + CountryToIsoIndex{131551, "mv"}, + CountryToIsoIndex{131574, "my"}, + CountryToIsoIndex{131596, "mt"}, + CountryToIsoIndex{131617, "mw"}, + CountryToIsoIndex{131638, "ml"}, + CountryToIsoIndex{131657, "mm"}, + CountryToIsoIndex{131680, "mr"}, + CountryToIsoIndex{131704, "mu"}, + CountryToIsoIndex{131728, "mk"}, + CountryToIsoIndex{131752, "mq"}, + CountryToIsoIndex{131777, "yt"}, + CountryToIsoIndex{131798, "mx"}, + CountryToIsoIndex{131819, "md"}, + CountryToIsoIndex{131841, "mn"}, + CountryToIsoIndex{131863, "mc"}, + CountryToIsoIndex{131884, "ma"}, + CountryToIsoIndex{131905, "mz"}, + CountryToIsoIndex{131931, "ms"}, + CountryToIsoIndex{131955, "na"}, + CountryToIsoIndex{131977, "nr"}, + CountryToIsoIndex{131997, "nl"}, + CountryToIsoIndex{132021, "np"}, + CountryToIsoIndex{132040, "ni"}, + CountryToIsoIndex{132064, "nu"}, + CountryToIsoIndex{132083, "uy"}, + CountryToIsoIndex{132106, "uz"}, + CountryToIsoIndex{132136, "ne"}, + CountryToIsoIndex{132159, "ng"}, + CountryToIsoIndex{132187, "no"}, + CountryToIsoIndex{132210, "gb"}, + CountryToIsoIndex{132235, "us"}, + CountryToIsoIndex{132267, "pw"}, + CountryToIsoIndex{132287, "pg"}, + CountryToIsoIndex{132316, "pk"}, + CountryToIsoIndex{132340, "pa"}, + CountryToIsoIndex{132361, "py"}, + CountryToIsoIndex{132384, "pe"}, + CountryToIsoIndex{132403, "pn"}, + CountryToIsoIndex{132426, "pl"}, + CountryToIsoIndex{132448, "pr"}, + CountryToIsoIndex{132473, "pt"}, + CountryToIsoIndex{132495, "pm"}, + CountryToIsoIndex{132530, "re"}, + CountryToIsoIndex{132553, "ro"}, + CountryToIsoIndex{132576, "rw"}, + CountryToIsoIndex{132598, "ru"}, + CountryToIsoIndex{132620, "ws"}, + CountryToIsoIndex{132640, "sm"}, + CountryToIsoIndex{132666, "st"}, + CountryToIsoIndex{132704, "sz"}, + CountryToIsoIndex{132728, "sa"}, + CountryToIsoIndex{132755, "sc"}, + CountryToIsoIndex{132781, "zm"}, + CountryToIsoIndex{132804, "nz"}, + CountryToIsoIndex{132833, "zw"}, + CountryToIsoIndex{132857, "td"}, + CountryToIsoIndex{132881, "cn"}, + CountryToIsoIndex{132905, "cl"}, + CountryToIsoIndex{132927, "cz"}, + CountryToIsoIndex{132955, "sk"}, + CountryToIsoIndex{132979, "si"}, + CountryToIsoIndex{133003, "sg"}, + CountryToIsoIndex{133025, "es"}, + CountryToIsoIndex{133046, "lk"}, + CountryToIsoIndex{133071, "sy"}, + CountryToIsoIndex{133091, "sl"}, + CountryToIsoIndex{133117, "so"}, + CountryToIsoIndex{133139, "sd"}, + CountryToIsoIndex{133160, "sr"}, + CountryToIsoIndex{133183, "se"}, + CountryToIsoIndex{133205, "ch"}, + CountryToIsoIndex{133233, "sn"}, + CountryToIsoIndex{133256, "th"}, + CountryToIsoIndex{133279, "tw"}, + CountryToIsoIndex{133301, "tj"}, + CountryToIsoIndex{133326, "tz"}, + CountryToIsoIndex{133350, "tt"}, + CountryToIsoIndex{133384, "tg"}, + CountryToIsoIndex{133403, "tk"}, + CountryToIsoIndex{133425, "to"}, + CountryToIsoIndex{133445, "tv"}, + CountryToIsoIndex{133466, "tn"}, + CountryToIsoIndex{133489, "tr"}, + CountryToIsoIndex{133511, "tc"}, + CountryToIsoIndex{133552, "tm"}, + CountryToIsoIndex{133582, "ug"}, + CountryToIsoIndex{133603, "ua"}, + CountryToIsoIndex{133625, "wf"}, + CountryToIsoIndex{133655, "ye"}, + CountryToIsoIndex{133676, "af"}, + CountryToIsoIndex{133709, "al"}, + CountryToIsoIndex{133740, "dz"}, + CountryToIsoIndex{133771, "cf"}, + CountryToIsoIndex{133811, "ad"}, + CountryToIsoIndex{133837, "ao"}, + CountryToIsoIndex{133863, "ai"}, + CountryToIsoIndex{133892, "ag"}, + CountryToIsoIndex{133938, "aw"}, + CountryToIsoIndex{133961, "au"}, + CountryToIsoIndex{133988, "eg"}, + CountryToIsoIndex{134014, "tl"}, + CountryToIsoIndex{134050, "om"}, + CountryToIsoIndex{134071, "ae"}, + CountryToIsoIndex{134109, "sv"}, + CountryToIsoIndex{134137, "ar"}, + CountryToIsoIndex{134163, "ie"}, + CountryToIsoIndex{134186, "am"}, + CountryToIsoIndex{134211, "za"}, + CountryToIsoIndex{134240, "kr"}, + CountryToIsoIndex{134269, "at"}, + CountryToIsoIndex{134297, "az"}, + CountryToIsoIndex{134329, "is"}, + CountryToIsoIndex{134355, "bs"}, + CountryToIsoIndex{134383, "br"}, + CountryToIsoIndex{134411, "bb"}, + CountryToIsoIndex{134439, "bd"}, + CountryToIsoIndex{134471, "bh"}, + CountryToIsoIndex{134496, "bz"}, + CountryToIsoIndex{134524, "be"}, + CountryToIsoIndex{134554, "by"}, + CountryToIsoIndex{134582, "bm"}, + CountryToIsoIndex{134607, "bg"}, + CountryToIsoIndex{134636, "bf"}, + CountryToIsoIndex{134669, "bi"}, + CountryToIsoIndex{134697, "bn"}, + CountryToIsoIndex{134728, "bt"}, + CountryToIsoIndex{134753, "bj"}, + CountryToIsoIndex{134781, "bo"}, + CountryToIsoIndex{134812, "ba"}, + CountryToIsoIndex{134866, "bw"}, + CountryToIsoIndex{134900, "dj"}, + CountryToIsoIndex{134930, "dm"}, + CountryToIsoIndex{134958, "dk"}, + CountryToIsoIndex{134986, "gq"}, + CountryToIsoIndex{135015, "ec"}, + CountryToIsoIndex{135039, "er"}, + CountryToIsoIndex{135062, "ee"}, + CountryToIsoIndex{135086, "vi"}, + CountryToIsoIndex{135128, "fk"}, + CountryToIsoIndex{135160, "mp"}, + CountryToIsoIndex{135196, "mh"}, + CountryToIsoIndex{135228, "nf"}, + CountryToIsoIndex{135265, "sb"}, + CountryToIsoIndex{135296, "et"}, + CountryToIsoIndex{135318, "vg"}, + CountryToIsoIndex{135373, "io"}, + CountryToIsoIndex{135430, "ky"}, + CountryToIsoIndex{135464, "cv"}, + CountryToIsoIndex{135503, "ck"}, + CountryToIsoIndex{135536, "vu"}, + CountryToIsoIndex{135559, "fr"}, + CountryToIsoIndex{135582, "fj"}, + CountryToIsoIndex{135602, "fi"}, + CountryToIsoIndex{135625, "ph"}, + CountryToIsoIndex{135649, "gf"}, + CountryToIsoIndex{135680, "pf"}, + CountryToIsoIndex{135715, "vc"}, + CountryToIsoIndex{135754, "ve"}, + CountryToIsoIndex{135787, "vn"}, + CountryToIsoIndex{135813, "ga"}, + CountryToIsoIndex{135834, "gp"}, + CountryToIsoIndex{135858, "gm"}, + CountryToIsoIndex{135880, "gh"}, + CountryToIsoIndex{135900, "de"}, + CountryToIsoIndex{135922, "gd"}, + CountryToIsoIndex{135944, "gn"}, + CountryToIsoIndex{135964, "gw"}, + CountryToIsoIndex{135990, "gl"}, + CountryToIsoIndex{136015, "gr"}, + CountryToIsoIndex{136038, "gi"}, + CountryToIsoIndex{136064, "gu"}, + CountryToIsoIndex{136085, "gt"}, + CountryToIsoIndex{136110, "kp"}, + CountryToIsoIndex{136139, "gy"}, + CountryToIsoIndex{136161, "ge"}, + CountryToIsoIndex{136184, "ht"}, + CountryToIsoIndex{136205, "hn"}, + CountryToIsoIndex{136230, "hu"}, + CountryToIsoIndex{136253, "sh"}, + CountryToIsoIndex{136277, "in"}, + CountryToIsoIndex{136298, "id"}, + CountryToIsoIndex{136323, "iq"}, + CountryToIsoIndex{136344, "ir"}, + CountryToIsoIndex{136365, "il"}, + CountryToIsoIndex{136390, "it"}, + CountryToIsoIndex{136413, "ps"}, + CountryToIsoIndex{136460, "jm"}, + CountryToIsoIndex{136483, "jp"}, + CountryToIsoIndex{136505, "jo"}, + CountryToIsoIndex{136529, "nc"}, + CountryToIsoIndex{136560, "cm"}, + CountryToIsoIndex{136588, "kz"}, + CountryToIsoIndex{136618, "ke"}, + CountryToIsoIndex{136639, "kn"}, + CountryToIsoIndex{136670, "ki"}, + CountryToIsoIndex{136694, "qa"}, + CountryToIsoIndex{136714, "kg"}, + CountryToIsoIndex{136744, "cr"}, + CountryToIsoIndex{136774, "kw"}, + CountryToIsoIndex{136796, "kh"}, + CountryToIsoIndex{136826, "ca"}, + CountryToIsoIndex{136851, "co"}, + CountryToIsoIndex{136880, "km"}, + CountryToIsoIndex{136908, "hr"}, + CountryToIsoIndex{136937, "cg"}, + CountryToIsoIndex{136960, "ci"}, + CountryToIsoIndex{136990, "cu"}, + CountryToIsoIndex{137012, "cy"}, + CountryToIsoIndex{137037, "lr"}, + CountryToIsoIndex{137060, "la"}, + CountryToIsoIndex{137081, "lv"}, + CountryToIsoIndex{137104, "lb"}, + CountryToIsoIndex{137128, "ls"}, + CountryToIsoIndex{137150, "ly"}, + CountryToIsoIndex{137172, "lt"}, + CountryToIsoIndex{137196, "lu"}, + CountryToIsoIndex{137220, "lc"}, + CountryToIsoIndex{137243, "li"}, + CountryToIsoIndex{137279, "mg"}, + CountryToIsoIndex{137303, "fm"}, + CountryToIsoIndex{137330, "mv"}, + CountryToIsoIndex{137354, "my"}, + CountryToIsoIndex{137377, "mt"}, + CountryToIsoIndex{137399, "mw"}, + CountryToIsoIndex{137421, "ml"}, + CountryToIsoIndex{137441, "mm"}, + CountryToIsoIndex{137465, "mr"}, + CountryToIsoIndex{137490, "mu"}, + CountryToIsoIndex{137515, "mk"}, + CountryToIsoIndex{137540, "mq"}, + CountryToIsoIndex{137566, "yt"}, + CountryToIsoIndex{137588, "mx"}, + CountryToIsoIndex{137610, "md"}, + CountryToIsoIndex{137633, "mn"}, + CountryToIsoIndex{137656, "mc"}, + CountryToIsoIndex{137678, "ma"}, + CountryToIsoIndex{137700, "ms"}, + CountryToIsoIndex{137725, "mz"}, + CountryToIsoIndex{137753, "na"}, + CountryToIsoIndex{137776, "nr"}, + CountryToIsoIndex{137797, "nl"}, + CountryToIsoIndex{137822, "np"}, + CountryToIsoIndex{137842, "ni"}, + CountryToIsoIndex{137867, "nu"}, + CountryToIsoIndex{137887, "uy"}, + CountryToIsoIndex{137911, "ne"}, + CountryToIsoIndex{137935, "ng"}, + CountryToIsoIndex{137964, "uz"}, + CountryToIsoIndex{137997, "no"}, + CountryToIsoIndex{138023, "gb"}, + CountryToIsoIndex{138049, "us"}, + CountryToIsoIndex{138083, "pw"}, + CountryToIsoIndex{138104, "pg"}, + CountryToIsoIndex{138134, "pk"}, + CountryToIsoIndex{138159, "pa"}, + CountryToIsoIndex{138181, "py"}, + CountryToIsoIndex{138205, "pe"}, + CountryToIsoIndex{138225, "pn"}, + CountryToIsoIndex{138249, "pl"}, + CountryToIsoIndex{138272, "pm"}, + CountryToIsoIndex{138310, "pr"}, + CountryToIsoIndex{138337, "pt"}, + CountryToIsoIndex{138361, "re"}, + CountryToIsoIndex{138385, "ro"}, + CountryToIsoIndex{138409, "rw"}, + CountryToIsoIndex{138432, "ru"}, + CountryToIsoIndex{138457, "ws"}, + CountryToIsoIndex{138479, "sm"}, + CountryToIsoIndex{138506, "st"}, + CountryToIsoIndex{138546, "sa"}, + CountryToIsoIndex{138574, "sz"}, + CountryToIsoIndex{138600, "sc"}, + CountryToIsoIndex{138630, "sk"}, + CountryToIsoIndex{138655, "si"}, + CountryToIsoIndex{138680, "sg"}, + CountryToIsoIndex{138703, "es"}, + CountryToIsoIndex{138725, "lk"}, + CountryToIsoIndex{138751, "sy"}, + CountryToIsoIndex{138772, "sl"}, + CountryToIsoIndex{138799, "so"}, + CountryToIsoIndex{138822, "sd"}, + CountryToIsoIndex{138844, "sr"}, + CountryToIsoIndex{138868, "se"}, + CountryToIsoIndex{138891, "ch"}, + CountryToIsoIndex{138921, "sn"}, + CountryToIsoIndex{138947, "th"}, + CountryToIsoIndex{138971, "tw"}, + CountryToIsoIndex{138994, "tj"}, + CountryToIsoIndex{139020, "tz"}, + CountryToIsoIndex{139046, "tt"}, + CountryToIsoIndex{139081, "tg"}, + CountryToIsoIndex{139101, "tk"}, + CountryToIsoIndex{139124, "to"}, + CountryToIsoIndex{139145, "tv"}, + CountryToIsoIndex{139167, "tn"}, + CountryToIsoIndex{139192, "tr"}, + CountryToIsoIndex{139217, "tc"}, + CountryToIsoIndex{139262, "tm"}, + CountryToIsoIndex{139295, "ug"}, + CountryToIsoIndex{139317, "ua"}, + CountryToIsoIndex{139340, "wf"}, + CountryToIsoIndex{139371, "ye"}, + CountryToIsoIndex{139393, "af"}, + CountryToIsoIndex{139427, "al"}, + CountryToIsoIndex{139459, "dz"}, + CountryToIsoIndex{139491, "cf"}, + CountryToIsoIndex{139532, "ad"}, + CountryToIsoIndex{139559, "ao"}, + CountryToIsoIndex{139586, "ai"}, + CountryToIsoIndex{139616, "ag"}, + CountryToIsoIndex{139663, "aw"}, + CountryToIsoIndex{139687, "au"}, + CountryToIsoIndex{139715, "eg"}, + CountryToIsoIndex{139742, "tl"}, + CountryToIsoIndex{139780, "zm"}, + CountryToIsoIndex{139805, "nz"}, + CountryToIsoIndex{139836, "zw"}, + CountryToIsoIndex{139862, "td"}, + CountryToIsoIndex{139888, "cn"}, + CountryToIsoIndex{139914, "cl"}, + CountryToIsoIndex{139938, "cz"}, + CountryToIsoIndex{139970, "ae"}, + CountryToIsoIndex{140011, "sv"}, + CountryToIsoIndex{140042, "om"}, + CountryToIsoIndex{140066, "tl"}, + CountryToIsoIndex{140077, "qo"}, + CountryToIsoIndex{140093, "qo"}, + CountryToIsoIndex{140106, "au"}, + CountryToIsoIndex{140114, "au"}, + CountryToIsoIndex{140126, "au"}, + CountryToIsoIndex{140136, "au"}, + CountryToIsoIndex{140149, "at"}, + CountryToIsoIndex{140158, "au"}, + CountryToIsoIndex{140167, "qo"}, + CountryToIsoIndex{140183, "au"}, + CountryToIsoIndex{140194, "au"}, + CountryToIsoIndex{140203, "au"}, + CountryToIsoIndex{140214, "qo"}, + CountryToIsoIndex{140234, "at"}, + CountryToIsoIndex{140243, "au"}, + CountryToIsoIndex{140252, "au"}, + CountryToIsoIndex{140262, "au"}, + CountryToIsoIndex{140283, "at"}, + CountryToIsoIndex{140290, "im"}, + CountryToIsoIndex{140301, "tc"}, + CountryToIsoIndex{140323, "wf"}, + CountryToIsoIndex{140345, "ac"}, + CountryToIsoIndex{140362, "ac"}, + CountryToIsoIndex{140378, "bv"}, + CountryToIsoIndex{140390, "hm"}, + CountryToIsoIndex{140424, "cp"}, + CountryToIsoIndex{140441, "im"}, + CountryToIsoIndex{140452, "nf"}, + CountryToIsoIndex{140466, "nf"}, + CountryToIsoIndex{140481, "tl"}, + CountryToIsoIndex{140490, "au"}, + CountryToIsoIndex{140503, "at"}, + CountryToIsoIndex{140515, "au"}, + CountryToIsoIndex{140524, "at"}, + CountryToIsoIndex{140532, "at"}, + CountryToIsoIndex{140540, "at"}, + CountryToIsoIndex{140548, "at"}, + CountryToIsoIndex{140557, "at"}, + CountryToIsoIndex{140565, "hm"}, + CountryToIsoIndex{140588, "pn"}, + CountryToIsoIndex{140603, "tc"}, + CountryToIsoIndex{140624, "ac"}, + CountryToIsoIndex{140639, "bv"}, + CountryToIsoIndex{140651, "cp"}, + CountryToIsoIndex{140667, "im"}, + CountryToIsoIndex{140676, "nf"}, + CountryToIsoIndex{140689, "tc"}, + CountryToIsoIndex{140711, "at"}, + CountryToIsoIndex{140717, "at"}, + CountryToIsoIndex{140723, "at"}, + CountryToIsoIndex{140731, "at"}, + CountryToIsoIndex{140739, "ug"}, + CountryToIsoIndex{140747, "qo"}, + CountryToIsoIndex{140772, "qo"}, + CountryToIsoIndex{140789, "uz"}, + CountryToIsoIndex{140801, "uz"}, + CountryToIsoIndex{140814, "qo"}, + CountryToIsoIndex{140830, "ae"}, + CountryToIsoIndex{140860, "gb"}, + CountryToIsoIndex{140885, "us"}, + CountryToIsoIndex{140903, "vi"}, + CountryToIsoIndex{140938, "um"}, + CountryToIsoIndex{140976, "af"}, + CountryToIsoIndex{140987, "az"}, + CountryToIsoIndex{140998, "uz"}, + CountryToIsoIndex{141009, "qo"}, + CountryToIsoIndex{141032, "tl"}, + CountryToIsoIndex{141042, "nc"}, + CountryToIsoIndex{141059, "nz"}, + CountryToIsoIndex{141075, "hu"}, + CountryToIsoIndex{141081, "tl"}, + CountryToIsoIndex{141091, "uz"}, + CountryToIsoIndex{141104, "pk"}, + CountryToIsoIndex{141114, "pg"}, + CountryToIsoIndex{141132, "nl"}, + CountryToIsoIndex{141144, "pk"}, + CountryToIsoIndex{141154, "bs"}, + CountryToIsoIndex{141161, "bs"}, + CountryToIsoIndex{141170, "nl"}, + CountryToIsoIndex{141182, "pk"}, + CountryToIsoIndex{141193, "pk"}, + CountryToIsoIndex{141202, "pk"}, + CountryToIsoIndex{141214, "pk"}, + CountryToIsoIndex{141225, "pk"}, + CountryToIsoIndex{141236, "pk"}, + CountryToIsoIndex{141246, "pk"}, + CountryToIsoIndex{141259, "pk"}, + CountryToIsoIndex{141269, "pk"}, + CountryToIsoIndex{141279, "pk"}, + CountryToIsoIndex{141288, "pk"}, + CountryToIsoIndex{141304, "pk"}, + CountryToIsoIndex{141315, "pk"}, + CountryToIsoIndex{141325, "pk"}, + CountryToIsoIndex{141336, "pk"}, + CountryToIsoIndex{141346, "pk"}, + CountryToIsoIndex{141356, "pk"}, + CountryToIsoIndex{141366, "pk"}, + CountryToIsoIndex{141377, "pk"}, + CountryToIsoIndex{141387, "pk"}, + CountryToIsoIndex{141398, "pk"}, + CountryToIsoIndex{141409, "pk"}, + CountryToIsoIndex{141420, "pk"}, + CountryToIsoIndex{141432, "pk"}, + CountryToIsoIndex{141443, "pk"}, + CountryToIsoIndex{141453, "pw"}, + CountryToIsoIndex{141461, "pw"}, + CountryToIsoIndex{141468, "py"}, + CountryToIsoIndex{141477, "py"}, + CountryToIsoIndex{141487, "py"}, + CountryToIsoIndex{141496, "py"}, + CountryToIsoIndex{141505, "py"}, + CountryToIsoIndex{141515, "fr"}, + CountryToIsoIndex{141522, "pw"}, + CountryToIsoIndex{141528, "pw"}, + CountryToIsoIndex{141535, "ps"}, + CountryToIsoIndex{141545, "ps"}, + CountryToIsoIndex{141556, "pw"}, + CountryToIsoIndex{141562, "pw"}, + CountryToIsoIndex{141575, "pw"}, + CountryToIsoIndex{141585, "pw"}, + CountryToIsoIndex{141591, "pw"}, + CountryToIsoIndex{141598, "pw"}, + CountryToIsoIndex{141606, "bh"}, + CountryToIsoIndex{141614, "ps"}, + CountryToIsoIndex{141623, "ps"}, + CountryToIsoIndex{141635, "ps"}, + CountryToIsoIndex{141648, "ps"}, + CountryToIsoIndex{141669, "ps"}, + CountryToIsoIndex{141700, "ps"}, + CountryToIsoIndex{141711, "ps"}, + CountryToIsoIndex{141755, "ps"}, + CountryToIsoIndex{141783, "ps"}, + CountryToIsoIndex{141794, "ps"}, + CountryToIsoIndex{141824, "ps"}, + CountryToIsoIndex{141835, "ps"}, + CountryToIsoIndex{141851, "ps"}, + CountryToIsoIndex{141872, "ps"}, + CountryToIsoIndex{141893, "ps"}, + CountryToIsoIndex{141902, "ps"}, + CountryToIsoIndex{141912, "ps"}, + CountryToIsoIndex{141933, "ps"}, + CountryToIsoIndex{141958, "ps"}, + CountryToIsoIndex{141981, "ps"}, + CountryToIsoIndex{141991, "ps"}, + CountryToIsoIndex{142018, "ps"}, + CountryToIsoIndex{142052, "ps"}, + CountryToIsoIndex{142070, "ps"}, + CountryToIsoIndex{142094, "ps"}, + CountryToIsoIndex{142125, "ps"}, + CountryToIsoIndex{142155, "ps"}, + CountryToIsoIndex{142177, "ps"}, + CountryToIsoIndex{142200, "ps"}, + CountryToIsoIndex{142223, "ps"}, + CountryToIsoIndex{142249, "ps"}, + CountryToIsoIndex{142272, "ps"}, + CountryToIsoIndex{142304, "ps"}, + CountryToIsoIndex{142337, "ps"}, + CountryToIsoIndex{142357, "ps"}, + CountryToIsoIndex{142379, "ps"}, + CountryToIsoIndex{142400, "ps"}, + CountryToIsoIndex{142421, "ps"}, + CountryToIsoIndex{142432, "ps"}, + CountryToIsoIndex{142442, "ps"}, + CountryToIsoIndex{142461, "ps"}, + CountryToIsoIndex{142482, "ps"}, + CountryToIsoIndex{142493, "ps"}, + CountryToIsoIndex{142518, "ps"}, + CountryToIsoIndex{142539, "ps"}, + CountryToIsoIndex{142550, "ps"}, + CountryToIsoIndex{142569, "ps"}, + CountryToIsoIndex{142580, "ps"}, + CountryToIsoIndex{142591, "ps"}, + CountryToIsoIndex{142600, "ps"}, + CountryToIsoIndex{142610, "pw"}, + CountryToIsoIndex{142617, "pw"}, + CountryToIsoIndex{142622, "bb"}, + CountryToIsoIndex{142632, "pw"}, + CountryToIsoIndex{142637, "pw"}, + CountryToIsoIndex{142643, "pw"}, + CountryToIsoIndex{142649, "pw"}, + CountryToIsoIndex{142657, "pw"}, + CountryToIsoIndex{142664, "ps"}, + CountryToIsoIndex{142692, "ps"}, + CountryToIsoIndex{142703, "ps"}, + CountryToIsoIndex{142738, "ps"}, + CountryToIsoIndex{142764, "ps"}, + CountryToIsoIndex{142775, "br"}, + CountryToIsoIndex{142785, "ps"}, + CountryToIsoIndex{142795, "ps"}, + CountryToIsoIndex{142805, "bh"}, + CountryToIsoIndex{142813, "pa"}, + CountryToIsoIndex{142819, "pa"}, + CountryToIsoIndex{142826, "pa"}, + CountryToIsoIndex{142840, "pa"}, + CountryToIsoIndex{142848, "pa"}, + CountryToIsoIndex{142855, "pa"}, + CountryToIsoIndex{142863, "pa"}, + CountryToIsoIndex{142871, "pa"}, + CountryToIsoIndex{142879, "pa"}, + CountryToIsoIndex{142887, "ci"}, + CountryToIsoIndex{142901, "es"}, + CountryToIsoIndex{142908, "es"}, + CountryToIsoIndex{142917, "pa"}, + CountryToIsoIndex{142926, "pa"}, + CountryToIsoIndex{142934, "pg"}, + CountryToIsoIndex{142953, "pg"}, + CountryToIsoIndex{142973, "pg"}, + CountryToIsoIndex{142991, "pg"}, + CountryToIsoIndex{143010, "pg"}, + CountryToIsoIndex{143037, "pg"}, + CountryToIsoIndex{143058, "pg"}, + CountryToIsoIndex{143064, "pg"}, + CountryToIsoIndex{143087, "pg"}, + CountryToIsoIndex{143106, "pg"}, + CountryToIsoIndex{143124, "pg"}, + CountryToIsoIndex{143144, "pg"}, + CountryToIsoIndex{143164, "pg"}, + CountryToIsoIndex{143187, "pg"}, + CountryToIsoIndex{143209, "pg"}, + CountryToIsoIndex{143226, "pg"}, + CountryToIsoIndex{143244, "pg"}, + CountryToIsoIndex{143259, "pg"}, + CountryToIsoIndex{143277, "pg"}, + CountryToIsoIndex{143296, "pg"}, + CountryToIsoIndex{143309, "pg"}, + CountryToIsoIndex{143328, "pg"}, + CountryToIsoIndex{143348, "pg"}, + CountryToIsoIndex{143364, "pg"}, + CountryToIsoIndex{143380, "pg"}, + CountryToIsoIndex{143397, "pg"}, + CountryToIsoIndex{143413, "pg"}, + CountryToIsoIndex{143429, "pg"}, + CountryToIsoIndex{143453, "pg"}, + CountryToIsoIndex{143471, "pg"}, + CountryToIsoIndex{143487, "pg"}, + CountryToIsoIndex{143503, "pg"}, + CountryToIsoIndex{143519, "pg"}, + CountryToIsoIndex{143537, "pg"}, + CountryToIsoIndex{143553, "pg"}, + CountryToIsoIndex{143571, "pg"}, + CountryToIsoIndex{143590, "pg"}, + CountryToIsoIndex{143608, "pg"}, + CountryToIsoIndex{143628, "pg"}, + CountryToIsoIndex{143646, "pg"}, + CountryToIsoIndex{143667, "pg"}, + CountryToIsoIndex{143686, "pg"}, + CountryToIsoIndex{143699, "pg"}, + CountryToIsoIndex{143721, "pg"}, + CountryToIsoIndex{143746, "pg"}, + CountryToIsoIndex{143765, "pg"}, + CountryToIsoIndex{143782, "pg"}, + CountryToIsoIndex{143789, "pg"}, + CountryToIsoIndex{143809, "pg"}, + CountryToIsoIndex{143827, "pg"}, + CountryToIsoIndex{143845, "pg"}, + CountryToIsoIndex{143859, "pg"}, + CountryToIsoIndex{143878, "pg"}, + CountryToIsoIndex{143897, "pg"}, + CountryToIsoIndex{143919, "pg"}, + CountryToIsoIndex{143939, "pg"}, + CountryToIsoIndex{143953, "pg"}, + CountryToIsoIndex{143975, "pg"}, + CountryToIsoIndex{143997, "pg"}, + CountryToIsoIndex{144023, "pg"}, + CountryToIsoIndex{144054, "pg"}, + CountryToIsoIndex{144080, "pg"}, + CountryToIsoIndex{144100, "pg"}, + CountryToIsoIndex{144120, "pg"}, + CountryToIsoIndex{144139, "pg"}, + CountryToIsoIndex{144147, "pg"}, + CountryToIsoIndex{144177, "pk"}, + CountryToIsoIndex{144188, "pk"}, + CountryToIsoIndex{144199, "py"}, + CountryToIsoIndex{144207, "py"}, + CountryToIsoIndex{144216, "py"}, + CountryToIsoIndex{144224, "py"}, + CountryToIsoIndex{144239, "py"}, + CountryToIsoIndex{144248, "py"}, + CountryToIsoIndex{144258, "py"}, + CountryToIsoIndex{144269, "py"}, + CountryToIsoIndex{144278, "py"}, + CountryToIsoIndex{144287, "py"}, + CountryToIsoIndex{144298, "py"}, + CountryToIsoIndex{144309, "py"}, + CountryToIsoIndex{144318, "py"}, + CountryToIsoIndex{144328, "py"}, + CountryToIsoIndex{144339, "py"}, + CountryToIsoIndex{144349, "py"}, + CountryToIsoIndex{144358, "py"}, + CountryToIsoIndex{144368, "py"}, + CountryToIsoIndex{144377, "py"}, + CountryToIsoIndex{144387, "py"}, + CountryToIsoIndex{144397, "py"}, + CountryToIsoIndex{144408, "py"}, + CountryToIsoIndex{144417, "py"}, + CountryToIsoIndex{144426, "py"}, + CountryToIsoIndex{144435, "py"}, + CountryToIsoIndex{144444, "py"}, + CountryToIsoIndex{144453, "py"}, + CountryToIsoIndex{144463, "py"}, + CountryToIsoIndex{144473, "py"}, + CountryToIsoIndex{144481, "py"}, + CountryToIsoIndex{144492, "py"}, + CountryToIsoIndex{144503, "py"}, + CountryToIsoIndex{144512, "py"}, + CountryToIsoIndex{144521, "ps"}, + CountryToIsoIndex{144540, "py"}, + CountryToIsoIndex{144551, "pn"}, + CountryToIsoIndex{144564, "nl"}, + CountryToIsoIndex{144573, "bq"}, + CountryToIsoIndex{144593, "nl"}, + CountryToIsoIndex{144608, "bq"}, + CountryToIsoIndex{144634, "nl"}, + CountryToIsoIndex{144648, "nl"}, + CountryToIsoIndex{144662, "nl"}, + CountryToIsoIndex{144672, "nl"}, + CountryToIsoIndex{144687, "bd"}, + CountryToIsoIndex{144700, "es"}, + CountryToIsoIndex{144707, "pe"}, + CountryToIsoIndex{144714, "gq"}, + CountryToIsoIndex{144739, "pe"}, + CountryToIsoIndex{144745, "pe"}, + CountryToIsoIndex{144753, "bf"}, + CountryToIsoIndex{144765, "by"}, + CountryToIsoIndex{144774, "by"}, + CountryToIsoIndex{144783, "be"}, + CountryToIsoIndex{144793, "bz"}, + CountryToIsoIndex{144800, "pe"}, + CountryToIsoIndex{144805, "bz"}, + CountryToIsoIndex{144813, "pe"}, + CountryToIsoIndex{144819, "pe"}, + CountryToIsoIndex{144825, "mm"}, + CountryToIsoIndex{144830, "bd"}, + CountryToIsoIndex{144843, "bj"}, + CountryToIsoIndex{144850, "bj"}, + CountryToIsoIndex{144858, "fr"}, + CountryToIsoIndex{144867, "us"}, + CountryToIsoIndex{144889, "pe"}, + CountryToIsoIndex{144895, "pe"}, + CountryToIsoIndex{144901, "pe"}, + CountryToIsoIndex{144907, "pe"}, + CountryToIsoIndex{144914, "ir"}, + CountryToIsoIndex{144922, "pe"}, + CountryToIsoIndex{144927, "pe"}, + CountryToIsoIndex{144939, "pe"}, + CountryToIsoIndex{144945, "pe"}, + CountryToIsoIndex{144951, "pe"}, + CountryToIsoIndex{144957, "pe"}, + CountryToIsoIndex{144963, "pe"}, + CountryToIsoIndex{144969, "pe"}, + CountryToIsoIndex{144976, "pe"}, + CountryToIsoIndex{144982, "nl"}, + CountryToIsoIndex{144991, "nl"}, + CountryToIsoIndex{144998, "pk"}, + CountryToIsoIndex{145009, "pe"}, + CountryToIsoIndex{145015, "ph"}, + CountryToIsoIndex{145027, "ph"}, + CountryToIsoIndex{145038, "ph"}, + CountryToIsoIndex{145050, "ph"}, + CountryToIsoIndex{145062, "ph"}, + CountryToIsoIndex{145075, "ph"}, + CountryToIsoIndex{145087, "pl"}, + CountryToIsoIndex{145096, "pf"}, + CountryToIsoIndex{145119, "fr"}, + CountryToIsoIndex{145125, "fi"}, + CountryToIsoIndex{145136, "za"}, + CountryToIsoIndex{145150, "gs"}, + CountryToIsoIndex{145195, "kr"}, + CountryToIsoIndex{145210, "ss"}, + CountryToIsoIndex{145225, "pn"}, + CountryToIsoIndex{145234, "br"}, + CountryToIsoIndex{145243, "ph"}, + CountryToIsoIndex{145253, "gb"}, + CountryToIsoIndex{145264, "vi"}, + CountryToIsoIndex{145291, "pn"}, + CountryToIsoIndex{145300, "pe"}, + CountryToIsoIndex{145305, "pn"}, + CountryToIsoIndex{145315, "pn"}, + CountryToIsoIndex{145324, "pn"}, + CountryToIsoIndex{145342, "pn"}, + CountryToIsoIndex{145359, "pn"}, + CountryToIsoIndex{145377, "pn"}, + CountryToIsoIndex{145392, "pn"}, + CountryToIsoIndex{145410, "pn"}, + CountryToIsoIndex{145426, "pn"}, + CountryToIsoIndex{145443, "pn"}, + CountryToIsoIndex{145460, "pn"}, + CountryToIsoIndex{145477, "pn"}, + CountryToIsoIndex{145493, "pn"}, + CountryToIsoIndex{145508, "pn"}, + CountryToIsoIndex{145528, "pn"}, + CountryToIsoIndex{145548, "pn"}, + CountryToIsoIndex{145565, "pn"}, + CountryToIsoIndex{145581, "pn"}, + CountryToIsoIndex{145596, "pn"}, + CountryToIsoIndex{145608, "pn"}, + CountryToIsoIndex{145620, "pn"}, + CountryToIsoIndex{145630, "pn"}, + CountryToIsoIndex{145641, "pn"}, + CountryToIsoIndex{145651, "pn"}, + CountryToIsoIndex{145662, "pn"}, + CountryToIsoIndex{145675, "pn"}, + CountryToIsoIndex{145686, "pn"}, + CountryToIsoIndex{145696, "pn"}, + CountryToIsoIndex{145716, "pn"}, + CountryToIsoIndex{145726, "pn"}, + CountryToIsoIndex{145735, "pn"}, + CountryToIsoIndex{145744, "pn"}, + CountryToIsoIndex{145771, "pn"}, + CountryToIsoIndex{145781, "pn"}, + CountryToIsoIndex{145790, "pn"}, + CountryToIsoIndex{145806, "pn"}, + CountryToIsoIndex{145814, "pn"}, + CountryToIsoIndex{145830, "pn"}, + CountryToIsoIndex{145847, "pn"}, + CountryToIsoIndex{145864, "pn"}, + CountryToIsoIndex{145879, "pn"}, + CountryToIsoIndex{145897, "pn"}, + CountryToIsoIndex{145905, "pn"}, + CountryToIsoIndex{145922, "pn"}, + CountryToIsoIndex{145932, "pr"}, + CountryToIsoIndex{145944, "pm"}, + CountryToIsoIndex{145970, "cf"}, + CountryToIsoIndex{145994, "cz"}, + CountryToIsoIndex{146012, "cd"}, + CountryToIsoIndex{146045, "cf"}, + CountryToIsoIndex{146072, "cz"}, + CountryToIsoIndex{146090, "ci"}, + CountryToIsoIndex{146110, "ci"}, + CountryToIsoIndex{146131, "pt"}, + CountryToIsoIndex{146142, "pr"}, + CountryToIsoIndex{146153, "pt"}, + CountryToIsoIndex{146160, "kp"}, + CountryToIsoIndex{146174, "mp"}, + CountryToIsoIndex{146192, "pf"}, + CountryToIsoIndex{146214, "pk"}, + CountryToIsoIndex{146223, "pf"}, + CountryToIsoIndex{146245, "pl"}, + CountryToIsoIndex{146251, "pl"}, + CountryToIsoIndex{146258, "pl"}, + CountryToIsoIndex{146272, "pl"}, + CountryToIsoIndex{146280, "pl"}, + CountryToIsoIndex{146289, "pl"}, + CountryToIsoIndex{146296, "pl"}, + CountryToIsoIndex{146301, "pl"}, + CountryToIsoIndex{146307, "pl"}, + CountryToIsoIndex{146314, "pl"}, + CountryToIsoIndex{146321, "pf"}, + CountryToIsoIndex{146339, "pf"}, + CountryToIsoIndex{146358, "pf"}, + CountryToIsoIndex{146377, "pf"}, + CountryToIsoIndex{146397, "pf"}, + CountryToIsoIndex{146416, "pf"}, + CountryToIsoIndex{146435, "pf"}, + CountryToIsoIndex{146453, "pf"}, + CountryToIsoIndex{146476, "pf"}, + CountryToIsoIndex{146496, "pf"}, + CountryToIsoIndex{146518, "pf"}, + CountryToIsoIndex{146540, "pf"}, + CountryToIsoIndex{146563, "pf"}, + CountryToIsoIndex{146582, "pf"}, + CountryToIsoIndex{146600, "pf"}, + CountryToIsoIndex{146621, "pf"}, + CountryToIsoIndex{146645, "pf"}, + CountryToIsoIndex{146666, "pf"}, + CountryToIsoIndex{146690, "pf"}, + CountryToIsoIndex{146706, "pf"}, + CountryToIsoIndex{146727, "pf"}, + CountryToIsoIndex{146749, "pf"}, + CountryToIsoIndex{146767, "pf"}, + CountryToIsoIndex{146786, "pf"}, + CountryToIsoIndex{146806, "pf"}, + CountryToIsoIndex{146832, "pf"}, + CountryToIsoIndex{146852, "pf"}, + CountryToIsoIndex{146876, "pf"}, + CountryToIsoIndex{146898, "pf"}, + CountryToIsoIndex{146922, "pf"}, + CountryToIsoIndex{146942, "pf"}, + CountryToIsoIndex{146962, "pf"}, + CountryToIsoIndex{146989, "pf"}, + CountryToIsoIndex{147009, "pl"}, + CountryToIsoIndex{147017, "pl"}, + CountryToIsoIndex{147026, "pl"}, + CountryToIsoIndex{147033, "pl"}, + CountryToIsoIndex{147041, "pl"}, + CountryToIsoIndex{147049, "pl"}, + CountryToIsoIndex{147057, "pl"}, + CountryToIsoIndex{147064, "pl"}, + CountryToIsoIndex{147072, "pl"}, + CountryToIsoIndex{147080, "pl"}, + CountryToIsoIndex{147088, "pl"}, + CountryToIsoIndex{147096, "pl"}, + CountryToIsoIndex{147103, "pl"}, + CountryToIsoIndex{147111, "pl"}, + CountryToIsoIndex{147119, "pl"}, + CountryToIsoIndex{147126, "pl"}, + CountryToIsoIndex{147133, "pl"}, + CountryToIsoIndex{147140, "pf"}, + CountryToIsoIndex{147155, "pf"}, + CountryToIsoIndex{147174, "pf"}, + CountryToIsoIndex{147198, "pf"}, + CountryToIsoIndex{147220, "pf"}, + CountryToIsoIndex{147239, "pf"}, + CountryToIsoIndex{147261, "bo"}, + CountryToIsoIndex{147270, "pl"}, + CountryToIsoIndex{147279, "pl"}, + CountryToIsoIndex{147288, "pl"}, + CountryToIsoIndex{147297, "bo"}, + CountryToIsoIndex{147306, "pl"}, + CountryToIsoIndex{147313, "pl"}, + CountryToIsoIndex{147322, "us"}, + CountryToIsoIndex{147326, "vi"}, + CountryToIsoIndex{147355, "as"}, + CountryToIsoIndex{147367, "pl"}, + CountryToIsoIndex{147373, "pl"}, + CountryToIsoIndex{147379, "pl"}, + CountryToIsoIndex{147388, "pt"}, + CountryToIsoIndex{147397, "pt"}, + CountryToIsoIndex{147407, "pt"}, + CountryToIsoIndex{147416, "pt"}, + CountryToIsoIndex{147426, "pr"}, + CountryToIsoIndex{147437, "pr"}, + CountryToIsoIndex{147448, "pr"}, + CountryToIsoIndex{147460, "pr"}, + CountryToIsoIndex{147473, "pr"}, + CountryToIsoIndex{147485, "pr"}, + CountryToIsoIndex{147496, "pt"}, + CountryToIsoIndex{147507, "pr"}, + CountryToIsoIndex{147517, "pr"}, + CountryToIsoIndex{147527, "pr"}, + CountryToIsoIndex{147537, "pr"}, + CountryToIsoIndex{147548, "pt"}, + CountryToIsoIndex{147558, "pt"}, + CountryToIsoIndex{147567, "pt"}, + CountryToIsoIndex{147583, "pt"}, + CountryToIsoIndex{147593, "pt"}, + CountryToIsoIndex{147604, "pt"}, + CountryToIsoIndex{147616, "pt"}, + CountryToIsoIndex{147628, "pt"}, + CountryToIsoIndex{147641, "pt"}, + CountryToIsoIndex{147653, "pt"}, + CountryToIsoIndex{147665, "pt"}, + CountryToIsoIndex{147677, "pt"}, + CountryToIsoIndex{147687, "pt"}, + CountryToIsoIndex{147698, "pt"}, + CountryToIsoIndex{147710, "pt"}, + CountryToIsoIndex{147720, "pt"}, + CountryToIsoIndex{147731, "pt"}, + CountryToIsoIndex{147743, "pt"}, + CountryToIsoIndex{147753, "pt"}, + CountryToIsoIndex{147764, "hk"}, + CountryToIsoIndex{147818, "mo"}, + CountryToIsoIndex{147869, "ba"}, + CountryToIsoIndex{147892, "bw"}, + CountryToIsoIndex{147901, "bw"}, + CountryToIsoIndex{147912, "pt"}, + CountryToIsoIndex{147919, "pt"}, + CountryToIsoIndex{147928, "pr"}, + CountryToIsoIndex{147937, "io"}, + CountryToIsoIndex{147978, "tf"}, + CountryToIsoIndex{148009, "ps"}, + CountryToIsoIndex{148026, "pt"}, + CountryToIsoIndex{148036, "pt"}, + CountryToIsoIndex{148045, "fr"}, + CountryToIsoIndex{148055, "pl"}, + CountryToIsoIndex{148063, "fr"}, + CountryToIsoIndex{148071, "gf"}, + CountryToIsoIndex{148092, "fr"}, + CountryToIsoIndex{148104, "gf"}, + CountryToIsoIndex{148124, "tf"}, + CountryToIsoIndex{148151, "pf"}, + CountryToIsoIndex{148175, "fr"}, + CountryToIsoIndex{148186, "gf"}, + CountryToIsoIndex{148205, "tf"}, + CountryToIsoIndex{148226, "pf"}, + CountryToIsoIndex{148248, "fr"}, + CountryToIsoIndex{148260, "pr"}, + CountryToIsoIndex{148272, "pr"}, + CountryToIsoIndex{148285, "pr"}, + CountryToIsoIndex{148298, "pr"}, + CountryToIsoIndex{148310, "pr"}, + CountryToIsoIndex{148329, "pr"}, + CountryToIsoIndex{148341, "pr"}, + CountryToIsoIndex{148352, "pr"}, + CountryToIsoIndex{148364, "pr"}, + CountryToIsoIndex{148374, "ac"}, + CountryToIsoIndex{148390, "bv"}, + CountryToIsoIndex{148403, "cx"}, + CountryToIsoIndex{148419, "cp"}, + CountryToIsoIndex{148436, "hm"}, + CountryToIsoIndex{148471, "cx"}, + CountryToIsoIndex{148485, "im"}, + CountryToIsoIndex{148495, "nf"}, + CountryToIsoIndex{148509, "us"}, + CountryToIsoIndex{148543, "bf"}, + CountryToIsoIndex{148559, "pf"}, + CountryToIsoIndex{148580, "bg"}, + CountryToIsoIndex{148590, "bg"}, + CountryToIsoIndex{148601, "pl"}, + CountryToIsoIndex{148608, "bn"}, + CountryToIsoIndex{148616, "bi"}, + CountryToIsoIndex{148625, "pf"}, + CountryToIsoIndex{148645, "pl"}, + CountryToIsoIndex{148653, "bn"}, + CountryToIsoIndex{148662, "pl"}, + CountryToIsoIndex{148671, "pl"}, + CountryToIsoIndex{148677, "hk"}, + CountryToIsoIndex{148696, "mo"}, + CountryToIsoIndex{148711, "pr"}, + CountryToIsoIndex{148722, "pt"}, + CountryToIsoIndex{148732, "pt"}, + CountryToIsoIndex{148741, "pr"}, + CountryToIsoIndex{148751, "pt"}, + CountryToIsoIndex{148761, "gq"}, + CountryToIsoIndex{148779, "ba"}, + CountryToIsoIndex{148798, "za"}, + CountryToIsoIndex{148816, "kr"}, + CountryToIsoIndex{148835, "bt"}, + CountryToIsoIndex{148842, "pt"}, + CountryToIsoIndex{148855, "pr"}, + CountryToIsoIndex{148866, "pr"}, + CountryToIsoIndex{148878, "pr"}, + CountryToIsoIndex{148891, "pr"}, + CountryToIsoIndex{148903, "us"}, + CountryToIsoIndex{148906, "pr"}, + CountryToIsoIndex{148916, "pr"}, + CountryToIsoIndex{148926, "pr"}, + CountryToIsoIndex{148941, "pr"}, + CountryToIsoIndex{148957, "pk"}, + CountryToIsoIndex{148969, "pw"}, + CountryToIsoIndex{148977, "ps"}, + CountryToIsoIndex{149012, "es"}, + CountryToIsoIndex{149019, "pa"}, + CountryToIsoIndex{149028, "py"}, + CountryToIsoIndex{149039, "pk"}, + CountryToIsoIndex{149050, "pg"}, + CountryToIsoIndex{149068, "gq"}, + CountryToIsoIndex{149092, "pe"}, + CountryToIsoIndex{149099, "pe"}, + CountryToIsoIndex{149106, "pe"}, + CountryToIsoIndex{149113, "pe"}, + CountryToIsoIndex{149119, "pn"}, + CountryToIsoIndex{149130, "pn"}, + CountryToIsoIndex{149150, "pl"}, + CountryToIsoIndex{149159, "pf"}, + CountryToIsoIndex{149182, "za"}, + CountryToIsoIndex{149216, "gs"}, + CountryToIsoIndex{149275, "kr"}, + CountryToIsoIndex{149297, "ss"}, + CountryToIsoIndex{149318, "kp"}, + CountryToIsoIndex{149339, "mp"}, + CountryToIsoIndex{149361, "eh"}, + CountryToIsoIndex{149381, "tl"}, + CountryToIsoIndex{149400, "pl"}, + CountryToIsoIndex{149409, "pl"}, + CountryToIsoIndex{149418, "pl"}, + CountryToIsoIndex{149426, "pr"}, + CountryToIsoIndex{149440, "pl"}, + CountryToIsoIndex{149449, "pr"}, + CountryToIsoIndex{149463, "pl"}, + CountryToIsoIndex{149472, "pt"}, + CountryToIsoIndex{149484, "pr"}, + CountryToIsoIndex{149498, "kp"}, + CountryToIsoIndex{149511, "mp"}, + CountryToIsoIndex{149528, "pl"}, + CountryToIsoIndex{149537, "pt"}, + CountryToIsoIndex{149566, "fr"}, + CountryToIsoIndex{149593, "pr"}, + CountryToIsoIndex{149609, "bi"}, + CountryToIsoIndex{149620, "pk"}, + CountryToIsoIndex{149632, "bb"}, + CountryToIsoIndex{149643, "bm"}, + CountryToIsoIndex{149651, "pl"}, + CountryToIsoIndex{149657, "pt"}, + CountryToIsoIndex{149669, "bt"}, + CountryToIsoIndex{149677, "cn"}, + CountryToIsoIndex{149710, "pf"}, + CountryToIsoIndex{149736, "pt"}, + CountryToIsoIndex{149748, "pl"}, + CountryToIsoIndex{149757, "pl"}, + CountryToIsoIndex{149770, "pt"}, + CountryToIsoIndex{149782, "pr"}, + CountryToIsoIndex{149794, "pt"}, + CountryToIsoIndex{149804, "pr"}, + CountryToIsoIndex{149814, "pr"}, + CountryToIsoIndex{149825, "pt"}, + CountryToIsoIndex{149834, "pr"}, + CountryToIsoIndex{149850, "pt"}, + CountryToIsoIndex{149862, "bm"}, + CountryToIsoIndex{149872, "be"}, + CountryToIsoIndex{149882, "pe"}, + CountryToIsoIndex{149889, "pe"}, + CountryToIsoIndex{149895, "pe"}, + CountryToIsoIndex{149902, "fr"}, + CountryToIsoIndex{149914, "sc"}, + CountryToIsoIndex{149928, "nl"}, + CountryToIsoIndex{149937, "ga"}, + CountryToIsoIndex{149943, "qa"}, + CountryToIsoIndex{149949, "aq"}, + CountryToIsoIndex{149970, "gm"}, + CountryToIsoIndex{149978, "gh"}, + CountryToIsoIndex{149983, "qa"}, + CountryToIsoIndex{149989, "gy"}, + CountryToIsoIndex{149996, "kz"}, + CountryToIsoIndex{150008, "qa"}, + CountryToIsoIndex{150016, "cy"}, + CountryToIsoIndex{150022, "kg"}, + CountryToIsoIndex{150036, "kz"}, + CountryToIsoIndex{150049, "gd"}, + CountryToIsoIndex{150057, "gl"}, + CountryToIsoIndex{150069, "gu"}, + CountryToIsoIndex{150074, "qa"}, + CountryToIsoIndex{150081, "cy"}, + CountryToIsoIndex{150088, "kg"}, + CountryToIsoIndex{150101, "ki"}, + CountryToIsoIndex{150111, "ki"}, + CountryToIsoIndex{150122, "km"}, + CountryToIsoIndex{150128, "kw"}, + CountryToIsoIndex{150135, "ke"}, + CountryToIsoIndex{150143, "ke"}, + CountryToIsoIndex{150151, "mp"}, + CountryToIsoIndex{150179, "ic"}, + CountryToIsoIndex{150200, "ky"}, + CountryToIsoIndex{150221, "cc"}, + CountryToIsoIndex{150251, "ck"}, + CountryToIsoIndex{150270, "fk"}, + CountryToIsoIndex{150293, "fk"}, + CountryToIsoIndex{150333, "fo"}, + CountryToIsoIndex{150353, "hm"}, + CountryToIsoIndex{150386, "mh"}, + CountryToIsoIndex{150409, "pn"}, + CountryToIsoIndex{150432, "sb"}, + CountryToIsoIndex{150454, "tc"}, + CountryToIsoIndex{150485, "vg"}, + CountryToIsoIndex{150518, "vi"}, + CountryToIsoIndex{150552, "ax"}, + CountryToIsoIndex{150573, "gp"}, + CountryToIsoIndex{150583, "gt"}, + CountryToIsoIndex{150593, "gn"}, + CountryToIsoIndex{150601, "gw"}, + CountryToIsoIndex{150615, "kg"}, + CountryToIsoIndex{150631, "eh"}, + CountryToIsoIndex{150645, "qa"}, + CountryToIsoIndex{150653, "gb"}, + CountryToIsoIndex{150659, "gb"}, + CountryToIsoIndex{150665, "hk"}, + CountryToIsoIndex{150694, "mo"}, + CountryToIsoIndex{150719, "hk"}, + CountryToIsoIndex{150745, "mo"}, + CountryToIsoIndex{150767, "gb"}, + CountryToIsoIndex{150772, "gb"}, + CountryToIsoIndex{150775, "hk"}, + CountryToIsoIndex{150800, "mo"}, + CountryToIsoIndex{150821, "at"}, + CountryToIsoIndex{150830, "at"}, + CountryToIsoIndex{150839, "io"}, + CountryToIsoIndex{150880, "tf"}, + CountryToIsoIndex{150910, "fr"}, + CountryToIsoIndex{150917, "gf"}, + CountryToIsoIndex{150931, "tf"}, + CountryToIsoIndex{150958, "pf"}, + CountryToIsoIndex{150975, "tf"}, + CountryToIsoIndex{151001, "gf"}, + CountryToIsoIndex{151017, "pf"}, + CountryToIsoIndex{151035, "ez"}, + CountryToIsoIndex{151049, "hk"}, + CountryToIsoIndex{151066, "mo"}, + CountryToIsoIndex{151079, "ru"}, + CountryToIsoIndex{151085, "ru"}, + CountryToIsoIndex{151092, "ru"}, + CountryToIsoIndex{151100, "ru"}, + CountryToIsoIndex{151107, "rw"}, + CountryToIsoIndex{151115, "re"}, + CountryToIsoIndex{151125, "gb"}, + CountryToIsoIndex{151136, "re"}, + CountryToIsoIndex{151145, "re"}, + CountryToIsoIndex{151153, "gb"}, + CountryToIsoIndex{151166, "gb"}, + CountryToIsoIndex{151181, "hk"}, + CountryToIsoIndex{151235, "mo"}, + CountryToIsoIndex{151283, "hk"}, + CountryToIsoIndex{151334, "mo"}, + CountryToIsoIndex{151381, "gb"}, + CountryToIsoIndex{151392, "gb"}, + CountryToIsoIndex{151404, "gb"}, + CountryToIsoIndex{151420, "re"}, + CountryToIsoIndex{151430, "re"}, + CountryToIsoIndex{151438, "re"}, + CountryToIsoIndex{151447, "gb"}, + CountryToIsoIndex{151459, "gb"}, + CountryToIsoIndex{151471, "gb"}, + CountryToIsoIndex{151484, "re"}, + CountryToIsoIndex{151493, "hk"}, + CountryToIsoIndex{151537, "mo"}, + CountryToIsoIndex{151577, "re"}, + CountryToIsoIndex{151588, "cz"}, + CountryToIsoIndex{151604, "cf"}, + CountryToIsoIndex{151633, "do"}, + CountryToIsoIndex{151656, "cz"}, + CountryToIsoIndex{151670, "cd"}, + CountryToIsoIndex{151696, "do"}, + CountryToIsoIndex{151715, "do"}, + CountryToIsoIndex{151734, "cf"}, + CountryToIsoIndex{151758, "cf"}, + CountryToIsoIndex{151781, "do"}, + CountryToIsoIndex{151804, "cf"}, + CountryToIsoIndex{151828, "cd"}, + CountryToIsoIndex{151849, "cz"}, + CountryToIsoIndex{151870, "cz"}, + CountryToIsoIndex{151886, "cf"}, + CountryToIsoIndex{151911, "mk"}, + CountryToIsoIndex{151935, "do"}, + CountryToIsoIndex{151957, "cz"}, + CountryToIsoIndex{151973, "cf"}, + CountryToIsoIndex{151998, "cf"}, + CountryToIsoIndex{152024, "cd"}, + CountryToIsoIndex{152056, "do"}, + CountryToIsoIndex{152077, "do"}, + CountryToIsoIndex{152099, "mk"}, + CountryToIsoIndex{152119, "mk"}, + CountryToIsoIndex{152146, "md"}, + CountryToIsoIndex{152164, "cz"}, + CountryToIsoIndex{152182, "cz"}, + CountryToIsoIndex{152199, "cf"}, + CountryToIsoIndex{152226, "cd"}, + CountryToIsoIndex{152260, "do"}, + CountryToIsoIndex{152282, "ci"}, + CountryToIsoIndex{152302, "cf"}, + CountryToIsoIndex{152325, "cz"}, + CountryToIsoIndex{152339, "cz"}, + CountryToIsoIndex{152354, "do"}, + CountryToIsoIndex{152372, "do"}, + CountryToIsoIndex{152390, "do"}, + CountryToIsoIndex{152409, "cg"}, + CountryToIsoIndex{152424, "kr"}, + CountryToIsoIndex{152440, "cf"}, + CountryToIsoIndex{152462, "md"}, + CountryToIsoIndex{152478, "cz"}, + CountryToIsoIndex{152493, "cz"}, + CountryToIsoIndex{152510, "do"}, + CountryToIsoIndex{152531, "cf"}, + CountryToIsoIndex{152561, "cg"}, + CountryToIsoIndex{152577, "cg"}, + CountryToIsoIndex{152593, "za"}, + CountryToIsoIndex{152623, "cf"}, + CountryToIsoIndex{152649, "cv"}, + CountryToIsoIndex{152680, "cz"}, + CountryToIsoIndex{152696, "cf"}, + CountryToIsoIndex{152727, "cg"}, + CountryToIsoIndex{152744, "cg"}, + CountryToIsoIndex{152762, "cg"}, + CountryToIsoIndex{152780, "cd"}, + CountryToIsoIndex{152814, "cd"}, + CountryToIsoIndex{152855, "cz"}, + CountryToIsoIndex{152874, "do"}, + CountryToIsoIndex{152897, "cf"}, + CountryToIsoIndex{152925, "cf"}, + CountryToIsoIndex{152951, "cf"}, + CountryToIsoIndex{152978, "cf"}, + CountryToIsoIndex{153004, "cz"}, + CountryToIsoIndex{153021, "za"}, + CountryToIsoIndex{153047, "cg"}, + CountryToIsoIndex{153068, "tl"}, + CountryToIsoIndex{153107, "cd"}, + CountryToIsoIndex{153141, "cd"}, + CountryToIsoIndex{153174, "cg"}, + CountryToIsoIndex{153194, "do"}, + CountryToIsoIndex{153216, "cm"}, + CountryToIsoIndex{153241, "cz"}, + CountryToIsoIndex{153259, "cz"}, + CountryToIsoIndex{153276, "cg"}, + CountryToIsoIndex{153296, "cd"}, + CountryToIsoIndex{153329, "do"}, + CountryToIsoIndex{153351, "cz"}, + CountryToIsoIndex{153368, "re"}, + CountryToIsoIndex{153375, "re"}, + CountryToIsoIndex{153383, "re"}, + CountryToIsoIndex{153392, "re"}, + CountryToIsoIndex{153401, "re"}, + CountryToIsoIndex{153413, "re"}, + CountryToIsoIndex{153423, "re"}, + CountryToIsoIndex{153432, "re"}, + CountryToIsoIndex{153441, "re"}, + CountryToIsoIndex{153453, "re"}, + CountryToIsoIndex{153463, "re"}, + CountryToIsoIndex{153472, "re"}, + CountryToIsoIndex{153483, "re"}, + CountryToIsoIndex{153493, "re"}, + CountryToIsoIndex{153504, "eh"}, + CountryToIsoIndex{153518, "ru"}, + CountryToIsoIndex{153525, "cv"}, + CountryToIsoIndex{153536, "do"}, + CountryToIsoIndex{153560, "cz"}, + CountryToIsoIndex{153581, "ru"}, + CountryToIsoIndex{153586, "ru"}, + CountryToIsoIndex{153592, "re"}, + CountryToIsoIndex{153601, "re"}, + CountryToIsoIndex{153611, "re"}, + CountryToIsoIndex{153622, "re"}, + CountryToIsoIndex{153631, "re"}, + CountryToIsoIndex{153641, "rw"}, + CountryToIsoIndex{153648, "ro"}, + CountryToIsoIndex{153658, "cv"}, + CountryToIsoIndex{153674, "qo"}, + CountryToIsoIndex{153709, "cx"}, + CountryToIsoIndex{153725, "ro"}, + CountryToIsoIndex{153732, "ro"}, + CountryToIsoIndex{153740, "ro"}, + CountryToIsoIndex{153755, "ro"}, + CountryToIsoIndex{153763, "ro"}, + CountryToIsoIndex{153772, "ro"}, + CountryToIsoIndex{153780, "ro"}, + CountryToIsoIndex{153789, "ro"}, + CountryToIsoIndex{153799, "ro"}, + CountryToIsoIndex{153807, "ro"}, + CountryToIsoIndex{153817, "ro"}, + CountryToIsoIndex{153826, "ro"}, + CountryToIsoIndex{153836, "ro"}, + CountryToIsoIndex{153845, "ro"}, + CountryToIsoIndex{153854, "ro"}, + CountryToIsoIndex{153866, "ro"}, + CountryToIsoIndex{153875, "ro"}, + CountryToIsoIndex{153884, "se"}, + CountryToIsoIndex{153891, "ru"}, + CountryToIsoIndex{153897, "ru"}, + CountryToIsoIndex{153903, "ru"}, + CountryToIsoIndex{153911, "gb"}, + CountryToIsoIndex{153930, "ro"}, + CountryToIsoIndex{153938, "ro"}, + CountryToIsoIndex{153947, "ro"}, + CountryToIsoIndex{153956, "gq"}, + CountryToIsoIndex{153975, "gb"}, + CountryToIsoIndex{153987, "cx"}, + CountryToIsoIndex{154004, "hk"}, + CountryToIsoIndex{154022, "mo"}, + CountryToIsoIndex{154035, "ru"}, + CountryToIsoIndex{154042, "ru"}, + CountryToIsoIndex{154047, "gb"}, + CountryToIsoIndex{154050, "rw"}, + CountryToIsoIndex{154057, "rw"}, + CountryToIsoIndex{154064, "rw"}, + CountryToIsoIndex{154071, "rw"}, + CountryToIsoIndex{154080, "rw"}, + CountryToIsoIndex{154088, "rw"}, + CountryToIsoIndex{154097, "ro"}, + CountryToIsoIndex{154105, "ro"}, + CountryToIsoIndex{154115, "ro"}, + CountryToIsoIndex{154122, "ro"}, + CountryToIsoIndex{154130, "ro"}, + CountryToIsoIndex{154138, "ro"}, + CountryToIsoIndex{154147, "ro"}, + CountryToIsoIndex{154156, "ro"}, + CountryToIsoIndex{154164, "ro"}, + CountryToIsoIndex{154172, "ro"}, + CountryToIsoIndex{154181, "ro"}, + CountryToIsoIndex{154190, "ro"}, + CountryToIsoIndex{154199, "ro"}, + CountryToIsoIndex{154207, "ro"}, + CountryToIsoIndex{154216, "ro"}, + CountryToIsoIndex{154224, "ro"}, + CountryToIsoIndex{154233, "ro"}, + CountryToIsoIndex{154243, "ro"}, + CountryToIsoIndex{154252, "ro"}, + CountryToIsoIndex{154261, "ro"}, + CountryToIsoIndex{154271, "ro"}, + CountryToIsoIndex{154281, "ro"}, + CountryToIsoIndex{154290, "ro"}, + CountryToIsoIndex{154300, "ro"}, + CountryToIsoIndex{154311, "ro"}, + CountryToIsoIndex{154320, "ro"}, + CountryToIsoIndex{154330, "ro"}, + CountryToIsoIndex{154339, "ro"}, + CountryToIsoIndex{154349, "ro"}, + CountryToIsoIndex{154359, "re"}, + CountryToIsoIndex{154367, "se"}, + CountryToIsoIndex{154374, "se"}, + CountryToIsoIndex{154381, "ru"}, + CountryToIsoIndex{154390, "ru"}, + CountryToIsoIndex{154400, "se"}, + CountryToIsoIndex{154409, "ru"}, + CountryToIsoIndex{154414, "ru"}, + CountryToIsoIndex{154420, "ru"}, + CountryToIsoIndex{154427, "ru"}, + CountryToIsoIndex{154434, "ru"}, + CountryToIsoIndex{154440, "ru"}, + CountryToIsoIndex{154446, "ru"}, + CountryToIsoIndex{154454, "ru"}, + CountryToIsoIndex{154463, "ru"}, + CountryToIsoIndex{154472, "ru"}, + CountryToIsoIndex{154480, "ru"}, + CountryToIsoIndex{154486, "ru"}, + CountryToIsoIndex{154493, "ru"}, + CountryToIsoIndex{154507, "ru"}, + CountryToIsoIndex{154514, "ru"}, + CountryToIsoIndex{154522, "ru"}, + CountryToIsoIndex{154531, "ru"}, + CountryToIsoIndex{154540, "ru"}, + CountryToIsoIndex{154547, "ru"}, + CountryToIsoIndex{154553, "ru"}, + CountryToIsoIndex{154560, "ru"}, + CountryToIsoIndex{154567, "ru"}, + CountryToIsoIndex{154573, "gb"}, + CountryToIsoIndex{154586, "rw"}, + CountryToIsoIndex{154594, "rw"}, + CountryToIsoIndex{154603, "rw"}, + CountryToIsoIndex{154613, "rw"}, + CountryToIsoIndex{154624, "rw"}, + CountryToIsoIndex{154633, "ru"}, + CountryToIsoIndex{154642, "rw"}, + CountryToIsoIndex{154649, "rw"}, + CountryToIsoIndex{154663, "rw"}, + CountryToIsoIndex{154671, "ro"}, + CountryToIsoIndex{154679, "ru"}, + CountryToIsoIndex{154685, "rw"}, + CountryToIsoIndex{154694, "gb"}, + CountryToIsoIndex{154697, "ru"}, + CountryToIsoIndex{154706, "tl"}, + CountryToIsoIndex{154720, "gb"}, + CountryToIsoIndex{154735, "re"}, + CountryToIsoIndex{154748, "cz"}, + CountryToIsoIndex{154760, "cg"}, + CountryToIsoIndex{154774, "qo"}, + CountryToIsoIndex{154811, "cf"}, + CountryToIsoIndex{154838, "ci"}, + CountryToIsoIndex{154870, "do"}, + CountryToIsoIndex{154894, "cg"}, + CountryToIsoIndex{154915, "cz"}, + CountryToIsoIndex{154936, "re"}, + CountryToIsoIndex{154945, "re"}, + CountryToIsoIndex{154961, "re"}, + CountryToIsoIndex{154971, "rw"}, + CountryToIsoIndex{154980, "ro"}, + CountryToIsoIndex{154991, "rw"}, + CountryToIsoIndex{154999, "ro"}, + CountryToIsoIndex{155009, "ru"}, + CountryToIsoIndex{155016, "ru"}, + CountryToIsoIndex{155024, "ru"}, + CountryToIsoIndex{155032, "ru"}, + CountryToIsoIndex{155042, "ps"}, + CountryToIsoIndex{155088, "ru"}, + CountryToIsoIndex{155096, "ro"}, + CountryToIsoIndex{155105, "ru"}, + CountryToIsoIndex{155114, "re"}, + CountryToIsoIndex{155125, "hk"}, + CountryToIsoIndex{155151, "mo"}, + CountryToIsoIndex{155173, "us"}, + CountryToIsoIndex{155178, "us"}, + CountryToIsoIndex{155185, "bl"}, + CountryToIsoIndex{155201, "sh"}, + CountryToIsoIndex{155212, "kn"}, + CountryToIsoIndex{155232, "lc"}, + CountryToIsoIndex{155242, "pm"}, + CountryToIsoIndex{155266, "vc"}, + CountryToIsoIndex{155295, "us"}, + CountryToIsoIndex{155298, "sb"}, + CountryToIsoIndex{155315, "zm"}, + CountryToIsoIndex{155324, "zm"}, + CountryToIsoIndex{155333, "eh"}, + CountryToIsoIndex{155349, "sa"}, + CountryToIsoIndex{155366, "us"}, + CountryToIsoIndex{155370, "cy"}, + CountryToIsoIndex{155381, "cy"}, + CountryToIsoIndex{155390, "eh"}, + CountryToIsoIndex{155408, "eh"}, + CountryToIsoIndex{155429, "eh"}, + CountryToIsoIndex{155442, "eh"}, + CountryToIsoIndex{155457, "eh"}, + CountryToIsoIndex{155474, "eh"}, + CountryToIsoIndex{155492, "eh"}, + CountryToIsoIndex{155511, "eh"}, + CountryToIsoIndex{155530, "eh"}, + CountryToIsoIndex{155550, "eh"}, + CountryToIsoIndex{155568, "eh"}, + CountryToIsoIndex{155585, "eh"}, + CountryToIsoIndex{155602, "eh"}, + CountryToIsoIndex{155624, "sc"}, + CountryToIsoIndex{155632, "bl"}, + CountryToIsoIndex{155649, "bl"}, + CountryToIsoIndex{155667, "bl"}, + CountryToIsoIndex{155692, "kn"}, + CountryToIsoIndex{155718, "sh"}, + CountryToIsoIndex{155731, "sh"}, + CountryToIsoIndex{155751, "kn"}, + CountryToIsoIndex{155781, "kn"}, + CountryToIsoIndex{155801, "kn"}, + CountryToIsoIndex{155825, "kn"}, + CountryToIsoIndex{155847, "kn"}, + CountryToIsoIndex{155869, "kn"}, + CountryToIsoIndex{155889, "kn"}, + CountryToIsoIndex{155910, "kn"}, + CountryToIsoIndex{155932, "kn"}, + CountryToIsoIndex{155953, "kn"}, + CountryToIsoIndex{155974, "kn"}, + CountryToIsoIndex{155994, "kn"}, + CountryToIsoIndex{156015, "kn"}, + CountryToIsoIndex{156036, "kn"}, + CountryToIsoIndex{156057, "kn"}, + CountryToIsoIndex{156079, "kn"}, + CountryToIsoIndex{156100, "kn"}, + CountryToIsoIndex{156120, "kn"}, + CountryToIsoIndex{156141, "kn"}, + CountryToIsoIndex{156161, "kn"}, + CountryToIsoIndex{156183, "kn"}, + CountryToIsoIndex{156205, "sh"}, + CountryToIsoIndex{156216, "lc"}, + CountryToIsoIndex{156228, "lc"}, + CountryToIsoIndex{156247, "mf"}, + CountryToIsoIndex{156260, "mf"}, + CountryToIsoIndex{156280, "pm"}, + CountryToIsoIndex{156304, "pm"}, + CountryToIsoIndex{156328, "pm"}, + CountryToIsoIndex{156352, "pm"}, + CountryToIsoIndex{156380, "pm"}, + CountryToIsoIndex{156407, "pm"}, + CountryToIsoIndex{156433, "pm"}, + CountryToIsoIndex{156459, "pm"}, + CountryToIsoIndex{156483, "pm"}, + CountryToIsoIndex{156508, "pm"}, + CountryToIsoIndex{156533, "pm"}, + CountryToIsoIndex{156558, "pm"}, + CountryToIsoIndex{156592, "pm"}, + CountryToIsoIndex{156617, "pm"}, + CountryToIsoIndex{156642, "pm"}, + CountryToIsoIndex{156666, "pm"}, + CountryToIsoIndex{156691, "pm"}, + CountryToIsoIndex{156717, "pm"}, + CountryToIsoIndex{156741, "vc"}, + CountryToIsoIndex{156774, "vc"}, + CountryToIsoIndex{156805, "vc"}, + CountryToIsoIndex{156833, "vc"}, + CountryToIsoIndex{156862, "vc"}, + CountryToIsoIndex{156888, "vc"}, + CountryToIsoIndex{156919, "vc"}, + CountryToIsoIndex{156950, "vc"}, + CountryToIsoIndex{156979, "vc"}, + CountryToIsoIndex{157007, "vc"}, + CountryToIsoIndex{157033, "vc"}, + CountryToIsoIndex{157064, "vc"}, + CountryToIsoIndex{157091, "vc"}, + CountryToIsoIndex{157120, "vc"}, + CountryToIsoIndex{157149, "vc"}, + CountryToIsoIndex{157176, "vc"}, + CountryToIsoIndex{157212, "vc"}, + CountryToIsoIndex{157240, "vc"}, + CountryToIsoIndex{157270, "vc"}, + CountryToIsoIndex{157298, "vc"}, + CountryToIsoIndex{157327, "vc"}, + CountryToIsoIndex{157366, "vc"}, + CountryToIsoIndex{157396, "bl"}, + CountryToIsoIndex{157414, "kn"}, + CountryToIsoIndex{157443, "kn"}, + CountryToIsoIndex{157472, "sh"}, + CountryToIsoIndex{157485, "sm"}, + CountryToIsoIndex{157497, "mf"}, + CountryToIsoIndex{157510, "mf"}, + CountryToIsoIndex{157532, "sx"}, + CountryToIsoIndex{157568, "sx"}, + CountryToIsoIndex{157592, "pm"}, + CountryToIsoIndex{157616, "pm"}, + CountryToIsoIndex{157640, "pm"}, + CountryToIsoIndex{157665, "pm"}, + CountryToIsoIndex{157691, "pm"}, + CountryToIsoIndex{157715, "pm"}, + CountryToIsoIndex{157740, "pm"}, + CountryToIsoIndex{157766, "pm"}, + CountryToIsoIndex{157792, "pm"}, + CountryToIsoIndex{157817, "pm"}, + CountryToIsoIndex{157842, "vc"}, + CountryToIsoIndex{157870, "vc"}, + CountryToIsoIndex{157902, "vc"}, + CountryToIsoIndex{157934, "sh"}, + CountryToIsoIndex{157950, "lc"}, + CountryToIsoIndex{157963, "cy"}, + CountryToIsoIndex{157973, "cy"}, + CountryToIsoIndex{157982, "cy"}, + CountryToIsoIndex{157997, "cy"}, + CountryToIsoIndex{158007, "sc"}, + CountryToIsoIndex{158015, "de"}, + CountryToIsoIndex{158021, "de"}, + CountryToIsoIndex{158030, "sb"}, + CountryToIsoIndex{158047, "sl"}, + CountryToIsoIndex{158054, "sv"}, + CountryToIsoIndex{158063, "sv"}, + CountryToIsoIndex{158077, "sb"}, + CountryToIsoIndex{158093, "sv"}, + CountryToIsoIndex{158104, "sb"}, + CountryToIsoIndex{158115, "sb"}, + CountryToIsoIndex{158132, "sb"}, + CountryToIsoIndex{158147, "sb"}, + CountryToIsoIndex{158162, "sb"}, + CountryToIsoIndex{158172, "sb"}, + CountryToIsoIndex{158181, "sb"}, + CountryToIsoIndex{158191, "sb"}, + CountryToIsoIndex{158201, "sb"}, + CountryToIsoIndex{158218, "sb"}, + CountryToIsoIndex{158233, "sb"}, + CountryToIsoIndex{158247, "sb"}, + CountryToIsoIndex{158263, "sb"}, + CountryToIsoIndex{158280, "sb"}, + CountryToIsoIndex{158297, "sb"}, + CountryToIsoIndex{158314, "sb"}, + CountryToIsoIndex{158323, "sb"}, + CountryToIsoIndex{158337, "sb"}, + CountryToIsoIndex{158351, "sb"}, + CountryToIsoIndex{158365, "sb"}, + CountryToIsoIndex{158379, "sb"}, + CountryToIsoIndex{158389, "sb"}, + CountryToIsoIndex{158404, "sv"}, + CountryToIsoIndex{158414, "sv"}, + CountryToIsoIndex{158423, "sv"}, + CountryToIsoIndex{158438, "sv"}, + CountryToIsoIndex{158448, "sv"}, + CountryToIsoIndex{158459, "sv"}, + CountryToIsoIndex{158469, "sv"}, + CountryToIsoIndex{158478, "sv"}, + CountryToIsoIndex{158489, "sv"}, + CountryToIsoIndex{158499, "sj"}, + CountryToIsoIndex{158519, "sv"}, + CountryToIsoIndex{158530, "sv"}, + CountryToIsoIndex{158540, "sv"}, + CountryToIsoIndex{158549, "sb"}, + CountryToIsoIndex{158564, "sv"}, + CountryToIsoIndex{158576, "us"}, + CountryToIsoIndex{158580, "jm"}, + CountryToIsoIndex{158587, "jm"}, + CountryToIsoIndex{158595, "sm"}, + CountryToIsoIndex{158604, "sm"}, + CountryToIsoIndex{158613, "sm"}, + CountryToIsoIndex{158624, "jm"}, + CountryToIsoIndex{158632, "jm"}, + CountryToIsoIndex{158642, "us"}, + CountryToIsoIndex{158664, "um"}, + CountryToIsoIndex{158706, "vi"}, + CountryToIsoIndex{158744, "zm"}, + CountryToIsoIndex{158751, "zm"}, + CountryToIsoIndex{158759, "zm"}, + CountryToIsoIndex{158767, "zm"}, + CountryToIsoIndex{158775, "ae"}, + CountryToIsoIndex{158796, "ae"}, + CountryToIsoIndex{158830, "zm"}, + CountryToIsoIndex{158837, "ws"}, + CountryToIsoIndex{158845, "ws"}, + CountryToIsoIndex{158851, "as"}, + CountryToIsoIndex{158865, "as"}, + CountryToIsoIndex{158881, "as"}, + CountryToIsoIndex{158897, "as"}, + CountryToIsoIndex{158914, "as"}, + CountryToIsoIndex{158928, "as"}, + CountryToIsoIndex{158943, "as"}, + CountryToIsoIndex{158959, "as"}, + CountryToIsoIndex{158977, "as"}, + CountryToIsoIndex{158992, "as"}, + CountryToIsoIndex{159012, "as"}, + CountryToIsoIndex{159031, "as"}, + CountryToIsoIndex{159052, "as"}, + CountryToIsoIndex{159071, "as"}, + CountryToIsoIndex{159091, "as"}, + CountryToIsoIndex{159107, "as"}, + CountryToIsoIndex{159121, "as"}, + CountryToIsoIndex{159142, "ws"}, + CountryToIsoIndex{159155, "as"}, + CountryToIsoIndex{159174, "as"}, + CountryToIsoIndex{159191, "as"}, + CountryToIsoIndex{159208, "as"}, + CountryToIsoIndex{159225, "as"}, + CountryToIsoIndex{159243, "as"}, + CountryToIsoIndex{159261, "as"}, + CountryToIsoIndex{159279, "as"}, + CountryToIsoIndex{159296, "as"}, + CountryToIsoIndex{159313, "ws"}, + CountryToIsoIndex{159319, "ws"}, + CountryToIsoIndex{159326, "ws"}, + CountryToIsoIndex{159334, "as"}, + CountryToIsoIndex{159358, "ws"}, + CountryToIsoIndex{159365, "as"}, + CountryToIsoIndex{159381, "as"}, + CountryToIsoIndex{159395, "as"}, + CountryToIsoIndex{159412, "as"}, + CountryToIsoIndex{159429, "as"}, + CountryToIsoIndex{159446, "as"}, + CountryToIsoIndex{159463, "as"}, + CountryToIsoIndex{159480, "as"}, + CountryToIsoIndex{159499, "ws"}, + CountryToIsoIndex{159507, "ws"}, + CountryToIsoIndex{159515, "ws"}, + CountryToIsoIndex{159522, "as"}, + CountryToIsoIndex{159541, "ws"}, + CountryToIsoIndex{159548, "ws"}, + CountryToIsoIndex{159556, "ws"}, + CountryToIsoIndex{159562, "as"}, + CountryToIsoIndex{159582, "as"}, + CountryToIsoIndex{159600, "as"}, + CountryToIsoIndex{159618, "ws"}, + CountryToIsoIndex{159624, "as"}, + CountryToIsoIndex{159641, "ws"}, + CountryToIsoIndex{159648, "ws"}, + CountryToIsoIndex{159656, "as"}, + CountryToIsoIndex{159678, "as"}, + CountryToIsoIndex{159698, "ws"}, + CountryToIsoIndex{159705, "as"}, + CountryToIsoIndex{159723, "bl"}, + CountryToIsoIndex{159738, "vc"}, + CountryToIsoIndex{159761, "kn"}, + CountryToIsoIndex{159785, "kn"}, + CountryToIsoIndex{159809, "sh"}, + CountryToIsoIndex{159820, "sh"}, + CountryToIsoIndex{159832, "kn"}, + CountryToIsoIndex{159850, "kn"}, + CountryToIsoIndex{159867, "kn"}, + CountryToIsoIndex{159885, "lc"}, + CountryToIsoIndex{159896, "lc"}, + CountryToIsoIndex{159907, "sm"}, + CountryToIsoIndex{159920, "sm"}, + CountryToIsoIndex{159932, "sm"}, + CountryToIsoIndex{159944, "sm"}, + CountryToIsoIndex{159954, "sm"}, + CountryToIsoIndex{159966, "sm"}, + CountryToIsoIndex{159977, "sm"}, + CountryToIsoIndex{159995, "sm"}, + CountryToIsoIndex{160006, "sm"}, + CountryToIsoIndex{160018, "mf"}, + CountryToIsoIndex{160029, "mf"}, + CountryToIsoIndex{160041, "sm"}, + CountryToIsoIndex{160052, "sm"}, + CountryToIsoIndex{160064, "sm"}, + CountryToIsoIndex{160077, "mf"}, + CountryToIsoIndex{160090, "sx"}, + CountryToIsoIndex{160125, "pm"}, + CountryToIsoIndex{160147, "pm"}, + CountryToIsoIndex{160167, "pm"}, + CountryToIsoIndex{160192, "pm"}, + CountryToIsoIndex{160214, "pm"}, + CountryToIsoIndex{160235, "pm"}, + CountryToIsoIndex{160253, "st"}, + CountryToIsoIndex{160275, "st"}, + CountryToIsoIndex{160298, "vc"}, + CountryToIsoIndex{160334, "vc"}, + CountryToIsoIndex{160355, "vc"}, + CountryToIsoIndex{160383, "vc"}, + CountryToIsoIndex{160408, "vc"}, + CountryToIsoIndex{160437, "vc"}, + CountryToIsoIndex{160466, "sm"}, + CountryToIsoIndex{160477, "st"}, + CountryToIsoIndex{160498, "st"}, + CountryToIsoIndex{160520, "st"}, + CountryToIsoIndex{160541, "pm"}, + CountryToIsoIndex{160558, "vc"}, + CountryToIsoIndex{160579, "sm"}, + CountryToIsoIndex{160590, "st"}, + CountryToIsoIndex{160612, "st"}, + CountryToIsoIndex{160634, "kn"}, + CountryToIsoIndex{160650, "bl"}, + CountryToIsoIndex{160678, "sh"}, + CountryToIsoIndex{160692, "kn"}, + CountryToIsoIndex{160714, "lc"}, + CountryToIsoIndex{160729, "sx"}, + CountryToIsoIndex{160743, "pm"}, + CountryToIsoIndex{160769, "vc"}, + CountryToIsoIndex{160802, "sm"}, + CountryToIsoIndex{160812, "sm"}, + CountryToIsoIndex{160823, "bl"}, + CountryToIsoIndex{160840, "bl"}, + CountryToIsoIndex{160857, "sh"}, + CountryToIsoIndex{160868, "mf"}, + CountryToIsoIndex{160880, "vc"}, + CountryToIsoIndex{160910, "pm"}, + CountryToIsoIndex{160931, "sh"}, + CountryToIsoIndex{160943, "sh"}, + CountryToIsoIndex{160956, "sh"}, + CountryToIsoIndex{160968, "lc"}, + CountryToIsoIndex{160982, "lc"}, + CountryToIsoIndex{160995, "lc"}, + CountryToIsoIndex{161007, "lc"}, + CountryToIsoIndex{161020, "lc"}, + CountryToIsoIndex{161033, "va"}, + CountryToIsoIndex{161066, "sh"}, + CountryToIsoIndex{161078, "kn"}, + CountryToIsoIndex{161100, "kn"}, + CountryToIsoIndex{161120, "cf"}, + CountryToIsoIndex{161135, "lc"}, + CountryToIsoIndex{161146, "lc"}, + CountryToIsoIndex{161158, "pm"}, + CountryToIsoIndex{161181, "pm"}, + CountryToIsoIndex{161204, "pm"}, + CountryToIsoIndex{161227, "pm"}, + CountryToIsoIndex{161251, "cf"}, + CountryToIsoIndex{161265, "vc"}, + CountryToIsoIndex{161292, "vc"}, + CountryToIsoIndex{161318, "vc"}, + CountryToIsoIndex{161344, "sh"}, + CountryToIsoIndex{161356, "lc"}, + CountryToIsoIndex{161368, "sh"}, + CountryToIsoIndex{161379, "kn"}, + CountryToIsoIndex{161397, "lc"}, + CountryToIsoIndex{161408, "pm"}, + CountryToIsoIndex{161428, "vc"}, + CountryToIsoIndex{161452, "sh"}, + CountryToIsoIndex{161461, "lc"}, + CountryToIsoIndex{161470, "st"}, + CountryToIsoIndex{161494, "st"}, + CountryToIsoIndex{161514, "cf"}, + CountryToIsoIndex{161526, "sh"}, + CountryToIsoIndex{161538, "kn"}, + CountryToIsoIndex{161563, "lc"}, + CountryToIsoIndex{161574, "sm"}, + CountryToIsoIndex{161587, "pm"}, + CountryToIsoIndex{161612, "st"}, + CountryToIsoIndex{161636, "vc"}, + CountryToIsoIndex{161662, "sh"}, + CountryToIsoIndex{161675, "sg"}, + CountryToIsoIndex{161686, "st"}, + CountryToIsoIndex{161706, "st"}, + CountryToIsoIndex{161728, "st"}, + CountryToIsoIndex{161750, "st"}, + CountryToIsoIndex{161770, "st"}, + CountryToIsoIndex{161791, "st"}, + CountryToIsoIndex{161812, "st"}, + CountryToIsoIndex{161833, "st"}, + CountryToIsoIndex{161854, "st"}, + CountryToIsoIndex{161876, "st"}, + CountryToIsoIndex{161897, "st"}, + CountryToIsoIndex{161918, "st"}, + CountryToIsoIndex{161941, "st"}, + CountryToIsoIndex{161963, "st"}, + CountryToIsoIndex{161984, "st"}, + CountryToIsoIndex{162006, "st"}, + CountryToIsoIndex{162028, "st"}, + CountryToIsoIndex{162052, "st"}, + CountryToIsoIndex{162074, "st"}, + CountryToIsoIndex{162098, "st"}, + CountryToIsoIndex{162122, "st"}, + CountryToIsoIndex{162142, "st"}, + CountryToIsoIndex{162166, "sa"}, + CountryToIsoIndex{162181, "st"}, + CountryToIsoIndex{162201, "st"}, + CountryToIsoIndex{162224, "jp"}, + CountryToIsoIndex{162230, "jp"}, + CountryToIsoIndex{162237, "jp"}, + CountryToIsoIndex{162249, "hk"}, + CountryToIsoIndex{162262, "hk"}, + CountryToIsoIndex{162282, "mo"}, + CountryToIsoIndex{162292, "mo"}, + CountryToIsoIndex{162302, "mo"}, + CountryToIsoIndex{162319, "eh"}, + CountryToIsoIndex{162334, "eh"}, + CountryToIsoIndex{162349, "eh"}, + CountryToIsoIndex{162364, "sa"}, + CountryToIsoIndex{162380, "sa"}, + CountryToIsoIndex{162386, "sa"}, + CountryToIsoIndex{162400, "sa"}, + CountryToIsoIndex{162413, "sa"}, + CountryToIsoIndex{162433, "sa"}, + CountryToIsoIndex{162447, "sa"}, + CountryToIsoIndex{162460, "sa"}, + CountryToIsoIndex{162475, "sa"}, + CountryToIsoIndex{162491, "sa"}, + CountryToIsoIndex{162505, "sa"}, + CountryToIsoIndex{162518, "sa"}, + CountryToIsoIndex{162532, "sa"}, + CountryToIsoIndex{162547, "sa"}, + CountryToIsoIndex{162561, "sa"}, + CountryToIsoIndex{162568, "sa"}, + CountryToIsoIndex{162580, "sa"}, + CountryToIsoIndex{162593, "sa"}, + CountryToIsoIndex{162611, "sa"}, + CountryToIsoIndex{162619, "sa"}, + CountryToIsoIndex{162638, "sa"}, + CountryToIsoIndex{162652, "sa"}, + CountryToIsoIndex{162668, "sa"}, + CountryToIsoIndex{162685, "sa"}, + CountryToIsoIndex{162703, "za"}, + CountryToIsoIndex{162717, "sa"}, + CountryToIsoIndex{162732, "sv"}, + CountryToIsoIndex{162741, "sv"}, + CountryToIsoIndex{162752, "fo"}, + CountryToIsoIndex{162764, "st"}, + CountryToIsoIndex{162783, "sa"}, + CountryToIsoIndex{162797, "st"}, + CountryToIsoIndex{162822, "st"}, + CountryToIsoIndex{162845, "st"}, + CountryToIsoIndex{162867, "st"}, + CountryToIsoIndex{162889, "st"}, + CountryToIsoIndex{162912, "st"}, + CountryToIsoIndex{162935, "st"}, + CountryToIsoIndex{162968, "st"}, + CountryToIsoIndex{162990, "sa"}, + CountryToIsoIndex{163002, "sa"}, + CountryToIsoIndex{163025, "sa"}, + CountryToIsoIndex{163032, "sa"}, + CountryToIsoIndex{163045, "za"}, + CountryToIsoIndex{163058, "st"}, + CountryToIsoIndex{163078, "st"}, + CountryToIsoIndex{163098, "st"}, + CountryToIsoIndex{163122, "st"}, + CountryToIsoIndex{163150, "st"}, + CountryToIsoIndex{163174, "sa"}, + CountryToIsoIndex{163192, "sa"}, + CountryToIsoIndex{163207, "bl"}, + CountryToIsoIndex{163222, "sh"}, + CountryToIsoIndex{163233, "kn"}, + CountryToIsoIndex{163252, "lc"}, + CountryToIsoIndex{163262, "lc"}, + CountryToIsoIndex{163273, "sm"}, + CountryToIsoIndex{163286, "mf"}, + CountryToIsoIndex{163299, "pm"}, + CountryToIsoIndex{163321, "vc"}, + CountryToIsoIndex{163346, "sa"}, + CountryToIsoIndex{163362, "sa"}, + CountryToIsoIndex{163378, "sa"}, + CountryToIsoIndex{163393, "cy"}, + CountryToIsoIndex{163403, "es"}, + CountryToIsoIndex{163409, "es"}, + CountryToIsoIndex{163416, "cl"}, + CountryToIsoIndex{163424, "cn"}, + CountryToIsoIndex{163432, "es"}, + CountryToIsoIndex{163443, "es"}, + CountryToIsoIndex{163452, "lk"}, + CountryToIsoIndex{163464, "se"}, + CountryToIsoIndex{163472, "se"}, + CountryToIsoIndex{163481, "se"}, + CountryToIsoIndex{163490, "ch"}, + CountryToIsoIndex{163498, "ch"}, + CountryToIsoIndex{163507, "ch"}, + CountryToIsoIndex{163515, "ch"}, + CountryToIsoIndex{163522, "ch"}, + CountryToIsoIndex{163531, "td"}, + CountryToIsoIndex{163536, "nz"}, + CountryToIsoIndex{163551, "sn"}, + CountryToIsoIndex{163560, "ea"}, + CountryToIsoIndex{163576, "sc"}, + CountryToIsoIndex{163585, "sm"}, + CountryToIsoIndex{163595, "pm"}, + CountryToIsoIndex{163616, "vc"}, + CountryToIsoIndex{163639, "sl"}, + CountryToIsoIndex{163650, "sc"}, + CountryToIsoIndex{163658, "sh"}, + CountryToIsoIndex{163667, "sc"}, + CountryToIsoIndex{163677, "sc"}, + CountryToIsoIndex{163689, "sc"}, + CountryToIsoIndex{163698, "sc"}, + CountryToIsoIndex{163709, "sc"}, + CountryToIsoIndex{163720, "sc"}, + CountryToIsoIndex{163735, "sc"}, + CountryToIsoIndex{163745, "sc"}, + CountryToIsoIndex{163755, "sc"}, + CountryToIsoIndex{163764, "kn"}, + CountryToIsoIndex{163782, "nz"}, + CountryToIsoIndex{163796, "nz"}, + CountryToIsoIndex{163810, "lc"}, + CountryToIsoIndex{163819, "je"}, + CountryToIsoIndex{163827, "zm"}, + CountryToIsoIndex{163835, "pm"}, + CountryToIsoIndex{163857, "bl"}, + CountryToIsoIndex{163871, "mf"}, + CountryToIsoIndex{163884, "pm"}, + CountryToIsoIndex{163903, "pm"}, + CountryToIsoIndex{163927, "bl"}, + CountryToIsoIndex{163941, "mf"}, + CountryToIsoIndex{163952, "pm"}, + CountryToIsoIndex{163972, "pm"}, + CountryToIsoIndex{163993, "bl"}, + CountryToIsoIndex{164006, "sn"}, + CountryToIsoIndex{164015, "sn"}, + CountryToIsoIndex{164025, "sn"}, + CountryToIsoIndex{164033, "sn"}, + CountryToIsoIndex{164048, "sn"}, + CountryToIsoIndex{164058, "sn"}, + CountryToIsoIndex{164067, "sn"}, + CountryToIsoIndex{164076, "sn"}, + CountryToIsoIndex{164085, "sn"}, + CountryToIsoIndex{164095, "sn"}, + CountryToIsoIndex{164102, "sn"}, + CountryToIsoIndex{164113, "sn"}, + CountryToIsoIndex{164122, "sn"}, + CountryToIsoIndex{164132, "sn"}, + CountryToIsoIndex{164142, "sn"}, + CountryToIsoIndex{164151, "sn"}, + CountryToIsoIndex{164161, "sn"}, + CountryToIsoIndex{164169, "mf"}, + CountryToIsoIndex{164181, "pm"}, + CountryToIsoIndex{164203, "sh"}, + CountryToIsoIndex{164214, "kn"}, + CountryToIsoIndex{164232, "kn"}, + CountryToIsoIndex{164250, "kn"}, + CountryToIsoIndex{164271, "lc"}, + CountryToIsoIndex{164283, "lc"}, + CountryToIsoIndex{164296, "mf"}, + CountryToIsoIndex{164308, "vc"}, + CountryToIsoIndex{164333, "bl"}, + CountryToIsoIndex{164348, "sh"}, + CountryToIsoIndex{164360, "kn"}, + CountryToIsoIndex{164379, "kn"}, + CountryToIsoIndex{164399, "kn"}, + CountryToIsoIndex{164418, "kn"}, + CountryToIsoIndex{164443, "lc"}, + CountryToIsoIndex{164454, "lc"}, + CountryToIsoIndex{164466, "lc"}, + CountryToIsoIndex{164479, "lc"}, + CountryToIsoIndex{164494, "mf"}, + CountryToIsoIndex{164506, "pm"}, + CountryToIsoIndex{164530, "vc"}, + CountryToIsoIndex{164562, "vc"}, + CountryToIsoIndex{164587, "vc"}, + CountryToIsoIndex{164617, "vc"}, + CountryToIsoIndex{164645, "sh"}, + CountryToIsoIndex{164658, "kn"}, + CountryToIsoIndex{164681, "kn"}, + CountryToIsoIndex{164704, "lc"}, + CountryToIsoIndex{164717, "pm"}, + CountryToIsoIndex{164742, "pm"}, + CountryToIsoIndex{164767, "pm"}, + CountryToIsoIndex{164793, "lc"}, + CountryToIsoIndex{164806, "vc"}, + CountryToIsoIndex{164834, "vc"}, + CountryToIsoIndex{164865, "vc"}, + CountryToIsoIndex{164896, "kn"}, + CountryToIsoIndex{164916, "lc"}, + CountryToIsoIndex{164928, "cf"}, + CountryToIsoIndex{164958, "cf"}, + CountryToIsoIndex{164971, "vc"}, + CountryToIsoIndex{164999, "ge"}, + CountryToIsoIndex{165006, "es"}, + CountryToIsoIndex{165015, "ea"}, + CountryToIsoIndex{165032, "vg"}, + CountryToIsoIndex{165055, "ci"}, + CountryToIsoIndex{165068, "sl"}, + CountryToIsoIndex{165078, "sl"}, + CountryToIsoIndex{165090, "sl"}, + CountryToIsoIndex{165102, "rs"}, + CountryToIsoIndex{165108, "rs"}, + CountryToIsoIndex{165115, "rs"}, + CountryToIsoIndex{165129, "rs"}, + CountryToIsoIndex{165136, "rs"}, + CountryToIsoIndex{165144, "rs"}, + CountryToIsoIndex{165152, "rs"}, + CountryToIsoIndex{165161, "rs"}, + CountryToIsoIndex{165169, "rs"}, + CountryToIsoIndex{165178, "rs"}, + CountryToIsoIndex{165186, "sl"}, + CountryToIsoIndex{165197, "sl"}, + CountryToIsoIndex{165208, "je"}, + CountryToIsoIndex{165214, "rs"}, + CountryToIsoIndex{165222, "rs"}, + CountryToIsoIndex{165230, "sc"}, + CountryToIsoIndex{165236, "sc"}, + CountryToIsoIndex{165243, "sc"}, + CountryToIsoIndex{165251, "sc"}, + CountryToIsoIndex{165267, "sc"}, + CountryToIsoIndex{165276, "sc"}, + CountryToIsoIndex{165284, "sc"}, + CountryToIsoIndex{165292, "sc"}, + CountryToIsoIndex{165303, "ea"}, + CountryToIsoIndex{165319, "ea"}, + CountryToIsoIndex{165335, "ea"}, + CountryToIsoIndex{165351, "ea"}, + CountryToIsoIndex{165368, "ea"}, + CountryToIsoIndex{165386, "ea"}, + CountryToIsoIndex{165404, "vc"}, + CountryToIsoIndex{165426, "kp"}, + CountryToIsoIndex{165441, "mp"}, + CountryToIsoIndex{165467, "mp"}, + CountryToIsoIndex{165491, "kp"}, + CountryToIsoIndex{165507, "mp"}, + CountryToIsoIndex{165525, "kp"}, + CountryToIsoIndex{165540, "mp"}, + CountryToIsoIndex{165557, "kp"}, + CountryToIsoIndex{165573, "mp"}, + CountryToIsoIndex{165590, "ge"}, + CountryToIsoIndex{165598, "gs"}, + CountryToIsoIndex{165638, "sc"}, + CountryToIsoIndex{165645, "sc"}, + CountryToIsoIndex{165657, "sc"}, + CountryToIsoIndex{165668, "sc"}, + CountryToIsoIndex{165678, "sc"}, + CountryToIsoIndex{165697, "sc"}, + CountryToIsoIndex{165709, "sc"}, + CountryToIsoIndex{165720, "sc"}, + CountryToIsoIndex{165731, "sc"}, + CountryToIsoIndex{165743, "sc"}, + CountryToIsoIndex{165756, "sc"}, + CountryToIsoIndex{165769, "sc"}, + CountryToIsoIndex{165780, "sc"}, + CountryToIsoIndex{165797, "sc"}, + CountryToIsoIndex{165808, "sc"}, + CountryToIsoIndex{165823, "sc"}, + CountryToIsoIndex{165832, "sc"}, + CountryToIsoIndex{165843, "sc"}, + CountryToIsoIndex{165852, "sc"}, + CountryToIsoIndex{165859, "sc"}, + CountryToIsoIndex{165876, "sc"}, + CountryToIsoIndex{165885, "sc"}, + CountryToIsoIndex{165901, "sc"}, + CountryToIsoIndex{165918, "sc"}, + CountryToIsoIndex{165929, "gs"}, + CountryToIsoIndex{165979, "sc"}, + CountryToIsoIndex{165996, "sc"}, + CountryToIsoIndex{166005, "sh"}, + CountryToIsoIndex{166017, "kn"}, + CountryToIsoIndex{166038, "lc"}, + CountryToIsoIndex{166050, "pm"}, + CountryToIsoIndex{166073, "vc"}, + CountryToIsoIndex{166099, "ge"}, + CountryToIsoIndex{166107, "ea"}, + CountryToIsoIndex{166125, "eh"}, + CountryToIsoIndex{166141, "sh"}, + CountryToIsoIndex{166155, "lc"}, + CountryToIsoIndex{166169, "mf"}, + CountryToIsoIndex{166185, "td"}, + CountryToIsoIndex{166191, "sy"}, + CountryToIsoIndex{166204, "tl"}, + CountryToIsoIndex{166218, "us"}, + CountryToIsoIndex{166223, "cz"}, + CountryToIsoIndex{166230, "sc"}, + CountryToIsoIndex{166241, "sc"}, + CountryToIsoIndex{166254, "sc"}, + CountryToIsoIndex{166265, "nf"}, + CountryToIsoIndex{166289, "cn"}, + CountryToIsoIndex{166298, "cl"}, + CountryToIsoIndex{166304, "cl"}, + CountryToIsoIndex{166310, "cl"}, + CountryToIsoIndex{166318, "kp"}, + CountryToIsoIndex{166334, "mp"}, + CountryToIsoIndex{166360, "cn"}, + CountryToIsoIndex{166366, "cn"}, + CountryToIsoIndex{166372, "cy"}, + CountryToIsoIndex{166380, "sj"}, + CountryToIsoIndex{166406, "al"}, + CountryToIsoIndex{166416, "lk"}, + CountryToIsoIndex{166427, "us"}, + CountryToIsoIndex{166461, "se"}, + CountryToIsoIndex{166471, "ch"}, + CountryToIsoIndex{166484, "bl"}, + CountryToIsoIndex{166500, "sh"}, + CountryToIsoIndex{166514, "kn"}, + CountryToIsoIndex{166535, "lc"}, + CountryToIsoIndex{166548, "mf"}, + CountryToIsoIndex{166561, "pm"}, + CountryToIsoIndex{166584, "vc"}, + CountryToIsoIndex{166612, "cn"}, + CountryToIsoIndex{166618, "cn"}, + CountryToIsoIndex{166625, "sz"}, + CountryToIsoIndex{166638, "cn"}, + CountryToIsoIndex{166645, "de"}, + CountryToIsoIndex{166653, "jp"}, + CountryToIsoIndex{166661, "sl"}, + CountryToIsoIndex{166673, "sl"}, + CountryToIsoIndex{166690, "gi"}, + CountryToIsoIndex{166701, "za"}, + CountryToIsoIndex{166711, "sl"}, + CountryToIsoIndex{166723, "sl"}, + CountryToIsoIndex{166735, "sl"}, + CountryToIsoIndex{166748, "sl"}, + CountryToIsoIndex{166765, "sl"}, + CountryToIsoIndex{166777, "sl"}, + CountryToIsoIndex{166789, "sl"}, + CountryToIsoIndex{166802, "sl"}, + CountryToIsoIndex{166815, "sl"}, + CountryToIsoIndex{166827, "sl"}, + CountryToIsoIndex{166839, "sl"}, + CountryToIsoIndex{166852, "sl"}, + CountryToIsoIndex{166865, "sl"}, + CountryToIsoIndex{166885, "sl"}, + CountryToIsoIndex{166899, "sl"}, + CountryToIsoIndex{166913, "sl"}, + CountryToIsoIndex{166926, "sl"}, + CountryToIsoIndex{166940, "sl"}, + CountryToIsoIndex{166955, "sl"}, + CountryToIsoIndex{166969, "cy"}, + CountryToIsoIndex{166977, "cn"}, + CountryToIsoIndex{166982, "cy"}, + CountryToIsoIndex{166989, "cy"}, + CountryToIsoIndex{166995, "sl"}, + CountryToIsoIndex{167008, "cl"}, + CountryToIsoIndex{167013, "sy"}, + CountryToIsoIndex{167019, "lk"}, + CountryToIsoIndex{167029, "sy"}, + CountryToIsoIndex{167036, "sk"}, + CountryToIsoIndex{167046, "si"}, + CountryToIsoIndex{167056, "sk"}, + CountryToIsoIndex{167065, "sk"}, + CountryToIsoIndex{167076, "si"}, + CountryToIsoIndex{167085, "si"}, + CountryToIsoIndex{167096, "sl"}, + CountryToIsoIndex{167109, "cl"}, + CountryToIsoIndex{167115, "lk"}, + CountryToIsoIndex{167128, "sy"}, + CountryToIsoIndex{167135, "sk"}, + CountryToIsoIndex{167146, "si"}, + CountryToIsoIndex{167157, "zw"}, + CountryToIsoIndex{167168, "zw"}, + CountryToIsoIndex{167178, "zw"}, + CountryToIsoIndex{167187, "zw"}, + CountryToIsoIndex{167196, "zw"}, + CountryToIsoIndex{167205, "zw"}, + CountryToIsoIndex{167216, "zw"}, + CountryToIsoIndex{167227, "zw"}, + CountryToIsoIndex{167238, "sx"}, + CountryToIsoIndex{167249, "cn"}, + CountryToIsoIndex{167254, "sg"}, + CountryToIsoIndex{167264, "sg"}, + CountryToIsoIndex{167273, "sg"}, + CountryToIsoIndex{167281, "sg"}, + CountryToIsoIndex{167290, "sg"}, + CountryToIsoIndex{167300, "sg"}, + CountryToIsoIndex{167309, "sg"}, + CountryToIsoIndex{167318, "sg"}, + CountryToIsoIndex{167328, "sg"}, + CountryToIsoIndex{167338, "sg"}, + CountryToIsoIndex{167348, "sg"}, + CountryToIsoIndex{167358, "sg"}, + CountryToIsoIndex{167367, "sg"}, + CountryToIsoIndex{167377, "sg"}, + CountryToIsoIndex{167387, "sg"}, + CountryToIsoIndex{167397, "sg"}, + CountryToIsoIndex{167407, "sg"}, + CountryToIsoIndex{167418, "sg"}, + CountryToIsoIndex{167428, "sg"}, + CountryToIsoIndex{167438, "sg"}, + CountryToIsoIndex{167449, "sg"}, + CountryToIsoIndex{167460, "sg"}, + CountryToIsoIndex{167472, "sg"}, + CountryToIsoIndex{167481, "sg"}, + CountryToIsoIndex{167498, "sg"}, + CountryToIsoIndex{167509, "sg"}, + CountryToIsoIndex{167520, "sg"}, + CountryToIsoIndex{167531, "sn"}, + CountryToIsoIndex{167540, "sn"}, + CountryToIsoIndex{167549, "sn"}, + CountryToIsoIndex{167557, "cn"}, + CountryToIsoIndex{167570, "sg"}, + CountryToIsoIndex{167581, "sg"}, + CountryToIsoIndex{167590, "bl"}, + CountryToIsoIndex{167607, "sh"}, + CountryToIsoIndex{167619, "kn"}, + CountryToIsoIndex{167639, "lc"}, + CountryToIsoIndex{167650, "sx"}, + CountryToIsoIndex{167663, "sx"}, + CountryToIsoIndex{167683, "sx"}, + CountryToIsoIndex{167695, "sx"}, + CountryToIsoIndex{167709, "mf"}, + CountryToIsoIndex{167721, "pm"}, + CountryToIsoIndex{167745, "vc"}, + CountryToIsoIndex{167775, "sh"}, + CountryToIsoIndex{167787, "sx"}, + CountryToIsoIndex{167800, "sx"}, + CountryToIsoIndex{167812, "sx"}, + CountryToIsoIndex{167825, "cf"}, + CountryToIsoIndex{167855, "cn"}, + CountryToIsoIndex{167861, "gi"}, + CountryToIsoIndex{167874, "es"}, + CountryToIsoIndex{167882, "es"}, + CountryToIsoIndex{167888, "es"}, + CountryToIsoIndex{167897, "gi"}, + CountryToIsoIndex{167908, "cy"}, + CountryToIsoIndex{167915, "cy"}, + CountryToIsoIndex{167922, "cy"}, + CountryToIsoIndex{167931, "dj"}, + CountryToIsoIndex{167938, "cy"}, + CountryToIsoIndex{167948, "sl"}, + CountryToIsoIndex{167958, "sl"}, + CountryToIsoIndex{167970, "sl"}, + CountryToIsoIndex{167979, "sy"}, + CountryToIsoIndex{167984, "lk"}, + CountryToIsoIndex{167995, "lk"}, + CountryToIsoIndex{168007, "sy"}, + CountryToIsoIndex{168013, "sy"}, + CountryToIsoIndex{168026, "sy"}, + CountryToIsoIndex{168035, "sy"}, + CountryToIsoIndex{168041, "sy"}, + CountryToIsoIndex{168047, "sy"}, + CountryToIsoIndex{168054, "lk"}, + CountryToIsoIndex{168065, "lk"}, + CountryToIsoIndex{168075, "lk"}, + CountryToIsoIndex{168087, "sr"}, + CountryToIsoIndex{168095, "sy"}, + CountryToIsoIndex{168101, "lk"}, + CountryToIsoIndex{168111, "sy"}, + CountryToIsoIndex{168118, "sy"}, + CountryToIsoIndex{168125, "sy"}, + CountryToIsoIndex{168133, "sk"}, + CountryToIsoIndex{168145, "si"}, + CountryToIsoIndex{168157, "sk"}, + CountryToIsoIndex{168167, "si"}, + CountryToIsoIndex{168177, "sl"}, + CountryToIsoIndex{168191, "sy"}, + CountryToIsoIndex{168199, "sy"}, + CountryToIsoIndex{168205, "lk"}, + CountryToIsoIndex{168217, "sy"}, + CountryToIsoIndex{168224, "sc"}, + CountryToIsoIndex{168233, "va"}, + CountryToIsoIndex{168249, "ea"}, + CountryToIsoIndex{168265, "sj"}, + CountryToIsoIndex{168292, "ch"}, + CountryToIsoIndex{168298, "sl"}, + CountryToIsoIndex{168311, "sl"}, + CountryToIsoIndex{168326, "sl"}, + CountryToIsoIndex{168339, "sl"}, + CountryToIsoIndex{168358, "sl"}, + CountryToIsoIndex{168374, "sh"}, + CountryToIsoIndex{168387, "kn"}, + CountryToIsoIndex{168411, "lc"}, + CountryToIsoIndex{168423, "pm"}, + CountryToIsoIndex{168452, "vc"}, + CountryToIsoIndex{168464, "sg"}, + CountryToIsoIndex{168473, "sg"}, + CountryToIsoIndex{168486, "us"}, + CountryToIsoIndex{168515, "us"}, + CountryToIsoIndex{168534, "sl"}, + CountryToIsoIndex{168546, "kp"}, + CountryToIsoIndex{168562, "mp"}, + CountryToIsoIndex{168589, "mp"}, + CountryToIsoIndex{168614, "cn"}, + CountryToIsoIndex{168620, "sl"}, + CountryToIsoIndex{168635, "sk"}, + CountryToIsoIndex{168644, "si"}, + CountryToIsoIndex{168653, "sk"}, + CountryToIsoIndex{168662, "si"}, + CountryToIsoIndex{168671, "ci"}, + CountryToIsoIndex{168692, "sk"}, + CountryToIsoIndex{168701, "sk"}, + CountryToIsoIndex{168712, "sk"}, + CountryToIsoIndex{168722, "sk"}, + CountryToIsoIndex{168732, "sk"}, + CountryToIsoIndex{168741, "sk"}, + CountryToIsoIndex{168749, "sk"}, + CountryToIsoIndex{168758, "sk"}, + CountryToIsoIndex{168774, "sk"}, + CountryToIsoIndex{168784, "sk"}, + CountryToIsoIndex{168794, "sk"}, + CountryToIsoIndex{168804, "sk"}, + CountryToIsoIndex{168814, "sk"}, + CountryToIsoIndex{168824, "sk"}, + CountryToIsoIndex{168834, "sk"}, + CountryToIsoIndex{168843, "sk"}, + CountryToIsoIndex{168852, "sk"}, + CountryToIsoIndex{168862, "sk"}, + CountryToIsoIndex{168872, "sk"}, + CountryToIsoIndex{168882, "si"}, + CountryToIsoIndex{168891, "si"}, + CountryToIsoIndex{168901, "si"}, + CountryToIsoIndex{168909, "si"}, + CountryToIsoIndex{168918, "si"}, + CountryToIsoIndex{168934, "si"}, + CountryToIsoIndex{168943, "si"}, + CountryToIsoIndex{168953, "si"}, + CountryToIsoIndex{168963, "si"}, + CountryToIsoIndex{168973, "si"}, + CountryToIsoIndex{168983, "sk"}, + CountryToIsoIndex{168993, "si"}, + CountryToIsoIndex{169003, "si"}, + CountryToIsoIndex{169012, "si"}, + CountryToIsoIndex{169021, "si"}, + CountryToIsoIndex{169031, "sk"}, + CountryToIsoIndex{169041, "si"}, + CountryToIsoIndex{169051, "si"}, + CountryToIsoIndex{169061, "sk"}, + CountryToIsoIndex{169072, "si"}, + CountryToIsoIndex{169083, "si"}, + CountryToIsoIndex{169094, "si"}, + CountryToIsoIndex{169104, "sk"}, + CountryToIsoIndex{169113, "sk"}, + CountryToIsoIndex{169121, "sk"}, + CountryToIsoIndex{169130, "sk"}, + CountryToIsoIndex{169140, "sk"}, + CountryToIsoIndex{169151, "sk"}, + CountryToIsoIndex{169160, "sk"}, + CountryToIsoIndex{169170, "si"}, + CountryToIsoIndex{169180, "si"}, + CountryToIsoIndex{169189, "si"}, + CountryToIsoIndex{169199, "si"}, + CountryToIsoIndex{169208, "si"}, + CountryToIsoIndex{169218, "si"}, + CountryToIsoIndex{169229, "sk"}, + CountryToIsoIndex{169238, "si"}, + CountryToIsoIndex{169247, "sk"}, + CountryToIsoIndex{169256, "si"}, + CountryToIsoIndex{169265, "sk"}, + CountryToIsoIndex{169277, "si"}, + CountryToIsoIndex{169289, "sk"}, + CountryToIsoIndex{169300, "si"}, + CountryToIsoIndex{169311, "sk"}, + CountryToIsoIndex{169321, "si"}, + CountryToIsoIndex{169332, "um"}, + CountryToIsoIndex{169357, "sg"}, + CountryToIsoIndex{169367, "jo"}, + CountryToIsoIndex{169375, "sz"}, + CountryToIsoIndex{169386, "sd"}, + CountryToIsoIndex{169392, "sd"}, + CountryToIsoIndex{169399, "se"}, + CountryToIsoIndex{169405, "ch"}, + CountryToIsoIndex{169411, "sb"}, + CountryToIsoIndex{169427, "sb"}, + CountryToIsoIndex{169444, "sb"}, + CountryToIsoIndex{169459, "sb"}, + CountryToIsoIndex{169475, "sb"}, + CountryToIsoIndex{169492, "sb"}, + CountryToIsoIndex{169520, "sb"}, + CountryToIsoIndex{169538, "sk"}, + CountryToIsoIndex{169549, "si"}, + CountryToIsoIndex{169560, "so"}, + CountryToIsoIndex{169568, "so"}, + CountryToIsoIndex{169577, "so"}, + CountryToIsoIndex{169586, "so"}, + CountryToIsoIndex{169596, "so"}, + CountryToIsoIndex{169606, "so"}, + CountryToIsoIndex{169613, "so"}, + CountryToIsoIndex{169621, "so"}, + CountryToIsoIndex{169636, "so"}, + CountryToIsoIndex{169645, "so"}, + CountryToIsoIndex{169653, "so"}, + CountryToIsoIndex{169661, "so"}, + CountryToIsoIndex{169670, "so"}, + CountryToIsoIndex{169678, "so"}, + CountryToIsoIndex{169687, "so"}, + CountryToIsoIndex{169696, "so"}, + CountryToIsoIndex{169705, "so"}, + CountryToIsoIndex{169713, "so"}, + CountryToIsoIndex{169722, "so"}, + CountryToIsoIndex{169730, "fi"}, + CountryToIsoIndex{169737, "so"}, + CountryToIsoIndex{169747, "so"}, + CountryToIsoIndex{169756, "so"}, + CountryToIsoIndex{169765, "so"}, + CountryToIsoIndex{169775, "so"}, + CountryToIsoIndex{169785, "bl"}, + CountryToIsoIndex{169801, "hk"}, + CountryToIsoIndex{169831, "mo"}, + CountryToIsoIndex{169858, "hk"}, + CountryToIsoIndex{169888, "mo"}, + CountryToIsoIndex{169915, "hk"}, + CountryToIsoIndex{169948, "mo"}, + CountryToIsoIndex{169978, "sh"}, + CountryToIsoIndex{169992, "so"}, + CountryToIsoIndex{170003, "fi"}, + CountryToIsoIndex{170009, "jo"}, + CountryToIsoIndex{170017, "sr"}, + CountryToIsoIndex{170025, "sd"}, + CountryToIsoIndex{170032, "ss"}, + CountryToIsoIndex{170046, "za"}, + CountryToIsoIndex{170059, "gs"}, + CountryToIsoIndex{170098, "gs"}, + CountryToIsoIndex{170139, "kr"}, + CountryToIsoIndex{170151, "ss"}, + CountryToIsoIndex{170163, "es"}, + CountryToIsoIndex{170169, "es"}, + CountryToIsoIndex{170176, "es"}, + CountryToIsoIndex{170183, "es"}, + CountryToIsoIndex{170189, "es"}, + CountryToIsoIndex{170202, "es"}, + CountryToIsoIndex{170209, "es"}, + CountryToIsoIndex{170216, "es"}, + CountryToIsoIndex{170224, "es"}, + CountryToIsoIndex{170232, "es"}, + CountryToIsoIndex{170239, "es"}, + CountryToIsoIndex{170246, "es"}, + CountryToIsoIndex{170254, "es"}, + CountryToIsoIndex{170261, "es"}, + CountryToIsoIndex{170269, "es"}, + CountryToIsoIndex{170284, "es"}, + CountryToIsoIndex{170293, "mx"}, + CountryToIsoIndex{170314, "es"}, + CountryToIsoIndex{170340, "hk"}, + CountryToIsoIndex{170372, "mo"}, + CountryToIsoIndex{170400, "sj"}, + CountryToIsoIndex{170425, "sj"}, + CountryToIsoIndex{170451, "ae"}, + CountryToIsoIndex{170478, "gb"}, + CountryToIsoIndex{170500, "gb"}, + CountryToIsoIndex{170522, "us"}, + CountryToIsoIndex{170538, "us"}, + CountryToIsoIndex{170555, "es"}, + CountryToIsoIndex{170563, "es"}, + CountryToIsoIndex{170570, "es"}, + CountryToIsoIndex{170579, "es"}, + CountryToIsoIndex{170586, "hk"}, + CountryToIsoIndex{170607, "mo"}, + CountryToIsoIndex{170625, "rs"}, + CountryToIsoIndex{170632, "rs"}, + CountryToIsoIndex{170639, "cf"}, + CountryToIsoIndex{170665, "lk"}, + CountryToIsoIndex{170675, "lk"}, + CountryToIsoIndex{170685, "lk"}, + CountryToIsoIndex{170702, "lk"}, + CountryToIsoIndex{170713, "lk"}, + CountryToIsoIndex{170723, "lk"}, + CountryToIsoIndex{170734, "lk"}, + CountryToIsoIndex{170743, "lk"}, + CountryToIsoIndex{170755, "lk"}, + CountryToIsoIndex{170766, "lk"}, + CountryToIsoIndex{170777, "lk"}, + CountryToIsoIndex{170788, "sa"}, + CountryToIsoIndex{170799, "sa"}, + CountryToIsoIndex{170820, "se"}, + CountryToIsoIndex{170828, "sc"}, + CountryToIsoIndex{170835, "sn"}, + CountryToIsoIndex{170844, "sn"}, + CountryToIsoIndex{170854, "sl"}, + CountryToIsoIndex{170864, "sd"}, + CountryToIsoIndex{170871, "se"}, + CountryToIsoIndex{170877, "bl"}, + CountryToIsoIndex{170892, "sh"}, + CountryToIsoIndex{170902, "kn"}, + CountryToIsoIndex{170919, "lc"}, + CountryToIsoIndex{170928, "mf"}, + CountryToIsoIndex{170938, "pm"}, + CountryToIsoIndex{170959, "vc"}, + CountryToIsoIndex{170983, "mf"}, + CountryToIsoIndex{170993, "bl"}, + CountryToIsoIndex{171008, "bl"}, + CountryToIsoIndex{171023, "bl"}, + CountryToIsoIndex{171047, "bl"}, + CountryToIsoIndex{171063, "sh"}, + CountryToIsoIndex{171074, "kn"}, + CountryToIsoIndex{171092, "kn"}, + CountryToIsoIndex{171110, "kn"}, + CountryToIsoIndex{171129, "kn"}, + CountryToIsoIndex{171149, "kn"}, + CountryToIsoIndex{171168, "kn"}, + CountryToIsoIndex{171187, "kn"}, + CountryToIsoIndex{171207, "kn"}, + CountryToIsoIndex{171228, "kn"}, + CountryToIsoIndex{171248, "lc"}, + CountryToIsoIndex{171258, "lc"}, + CountryToIsoIndex{171268, "lc"}, + CountryToIsoIndex{171282, "mf"}, + CountryToIsoIndex{171293, "pm"}, + CountryToIsoIndex{171315, "pm"}, + CountryToIsoIndex{171337, "pm"}, + CountryToIsoIndex{171359, "pm"}, + CountryToIsoIndex{171383, "pm"}, + CountryToIsoIndex{171406, "pm"}, + CountryToIsoIndex{171430, "vc"}, + CountryToIsoIndex{171455, "vc"}, + CountryToIsoIndex{171479, "vc"}, + CountryToIsoIndex{171510, "vc"}, + CountryToIsoIndex{171537, "vc"}, + CountryToIsoIndex{171563, "vc"}, + CountryToIsoIndex{171590, "vc"}, + CountryToIsoIndex{171617, "vc"}, + CountryToIsoIndex{171646, "vc"}, + CountryToIsoIndex{171677, "vc"}, + CountryToIsoIndex{171707, "vc"}, + CountryToIsoIndex{171739, "vc"}, + CountryToIsoIndex{171766, "vc"}, + CountryToIsoIndex{171796, "us"}, + CountryToIsoIndex{171824, "us"}, + CountryToIsoIndex{171839, "us"}, + CountryToIsoIndex{171862, "us"}, + CountryToIsoIndex{171880, "us"}, + CountryToIsoIndex{171907, "us"}, + CountryToIsoIndex{171919, "va"}, + CountryToIsoIndex{171948, "us"}, + CountryToIsoIndex{171960, "gb"}, + CountryToIsoIndex{171974, "gb"}, + CountryToIsoIndex{171989, "um"}, + CountryToIsoIndex{172030, "cf"}, + CountryToIsoIndex{172055, "ez"}, + CountryToIsoIndex{172067, "gb"}, + CountryToIsoIndex{172086, "us"}, + CountryToIsoIndex{172114, "us"}, + CountryToIsoIndex{172128, "ee"}, + CountryToIsoIndex{172136, "io"}, + CountryToIsoIndex{172169, "vg"}, + CountryToIsoIndex{172201, "gb"}, + CountryToIsoIndex{172216, "cf"}, + CountryToIsoIndex{172242, "us"}, + CountryToIsoIndex{172245, "za"}, + CountryToIsoIndex{172254, "sz"}, + CountryToIsoIndex{172264, "sz"}, + CountryToIsoIndex{172276, "sz"}, + CountryToIsoIndex{172282, "sz"}, + CountryToIsoIndex{172294, "sz"}, + CountryToIsoIndex{172307, "sz"}, + CountryToIsoIndex{172320, "za"}, + CountryToIsoIndex{172332, "ss"}, + CountryToIsoIndex{172342, "za"}, + CountryToIsoIndex{172353, "gs"}, + CountryToIsoIndex{172389, "kr"}, + CountryToIsoIndex{172399, "ss"}, + CountryToIsoIndex{172410, "sd"}, + CountryToIsoIndex{172415, "sd"}, + CountryToIsoIndex{172422, "sd"}, + CountryToIsoIndex{172430, "za"}, + CountryToIsoIndex{172440, "sd"}, + CountryToIsoIndex{172446, "ss"}, + CountryToIsoIndex{172460, "ss"}, + CountryToIsoIndex{172474, "ss"}, + CountryToIsoIndex{172487, "ss"}, + CountryToIsoIndex{172503, "sd"}, + CountryToIsoIndex{172516, "ss"}, + CountryToIsoIndex{172534, "ss"}, + CountryToIsoIndex{172548, "sd"}, + CountryToIsoIndex{172556, "sd"}, + CountryToIsoIndex{172563, "ss"}, + CountryToIsoIndex{172578, "ss"}, + CountryToIsoIndex{172593, "sd"}, + CountryToIsoIndex{172601, "sd"}, + CountryToIsoIndex{172608, "ss"}, + CountryToIsoIndex{172623, "sd"}, + CountryToIsoIndex{172630, "ss"}, + CountryToIsoIndex{172644, "sd"}, + CountryToIsoIndex{172651, "ss"}, + CountryToIsoIndex{172665, "sd"}, + CountryToIsoIndex{172671, "sd"}, + CountryToIsoIndex{172680, "za"}, + CountryToIsoIndex{172691, "sd"}, + CountryToIsoIndex{172698, "ss"}, + CountryToIsoIndex{172713, "ss"}, + CountryToIsoIndex{172727, "sd"}, + CountryToIsoIndex{172735, "sd"}, + CountryToIsoIndex{172742, "ss"}, + CountryToIsoIndex{172756, "sd"}, + CountryToIsoIndex{172763, "ss"}, + CountryToIsoIndex{172777, "sd"}, + CountryToIsoIndex{172785, "ss"}, + CountryToIsoIndex{172800, "sd"}, + CountryToIsoIndex{172808, "sd"}, + CountryToIsoIndex{172816, "se"}, + CountryToIsoIndex{172823, "se"}, + CountryToIsoIndex{172829, "se"}, + CountryToIsoIndex{172836, "se"}, + CountryToIsoIndex{172846, "ch"}, + CountryToIsoIndex{172857, "za"}, + CountryToIsoIndex{172870, "za"}, + CountryToIsoIndex{172882, "gs"}, + CountryToIsoIndex{172929, "kr"}, + CountryToIsoIndex{172940, "ss"}, + CountryToIsoIndex{172952, "ch"}, + CountryToIsoIndex{172957, "ch"}, + CountryToIsoIndex{172963, "ch"}, + CountryToIsoIndex{172973, "ch"}, + CountryToIsoIndex{172980, "ch"}, + CountryToIsoIndex{172987, "ch"}, + CountryToIsoIndex{172993, "sb"}, + CountryToIsoIndex{173014, "sr"}, + CountryToIsoIndex{173023, "sr"}, + CountryToIsoIndex{173032, "sr"}, + CountryToIsoIndex{173042, "sk"}, + CountryToIsoIndex{173053, "si"}, + CountryToIsoIndex{173064, "sk"}, + CountryToIsoIndex{173075, "si"}, + CountryToIsoIndex{173087, "sk"}, + CountryToIsoIndex{173099, "si"}, + CountryToIsoIndex{173110, "sr"}, + CountryToIsoIndex{173121, "so"}, + CountryToIsoIndex{173130, "sd"}, + CountryToIsoIndex{173138, "fi"}, + CountryToIsoIndex{173144, "fi"}, + CountryToIsoIndex{173152, "fi"}, + CountryToIsoIndex{173159, "fi"}, + CountryToIsoIndex{173166, "sr"}, + CountryToIsoIndex{173174, "lk"}, + CountryToIsoIndex{173186, "sy"}, + CountryToIsoIndex{173193, "sr"}, + CountryToIsoIndex{173202, "sr"}, + CountryToIsoIndex{173212, "sr"}, + CountryToIsoIndex{173220, "sr"}, + CountryToIsoIndex{173229, "sr"}, + CountryToIsoIndex{173239, "sr"}, + CountryToIsoIndex{173249, "sr"}, + CountryToIsoIndex{173258, "sr"}, + CountryToIsoIndex{173274, "sr"}, + CountryToIsoIndex{173283, "sr"}, + CountryToIsoIndex{173292, "sr"}, + CountryToIsoIndex{173303, "sr"}, + CountryToIsoIndex{173312, "sr"}, + CountryToIsoIndex{173322, "sr"}, + CountryToIsoIndex{173333, "sr"}, + CountryToIsoIndex{173342, "sr"}, + CountryToIsoIndex{173351, "sr"}, + CountryToIsoIndex{173361, "sy"}, + CountryToIsoIndex{173368, "sy"}, + CountryToIsoIndex{173375, "sy"}, + CountryToIsoIndex{173381, "za"}, + CountryToIsoIndex{173392, "ss"}, + CountryToIsoIndex{173401, "sd"}, + CountryToIsoIndex{173410, "sd"}, + CountryToIsoIndex{173418, "sd"}, + CountryToIsoIndex{173426, "sa"}, + CountryToIsoIndex{173442, "gb"}, + CountryToIsoIndex{173456, "sy"}, + CountryToIsoIndex{173463, "sy"}, + CountryToIsoIndex{173471, "sz"}, + CountryToIsoIndex{173483, "sz"}, + CountryToIsoIndex{173497, "sz"}, + CountryToIsoIndex{173507, "sz"}, + CountryToIsoIndex{173519, "se"}, + CountryToIsoIndex{173525, "se"}, + CountryToIsoIndex{173533, "se"}, + CountryToIsoIndex{173540, "se"}, + CountryToIsoIndex{173547, "ch"}, + CountryToIsoIndex{173561, "se"}, + CountryToIsoIndex{173571, "ch"}, + CountryToIsoIndex{173578, "ch"}, + CountryToIsoIndex{173585, "ch"}, + CountryToIsoIndex{173595, "ch"}, + CountryToIsoIndex{173603, "se"}, + CountryToIsoIndex{173611, "se"}, + CountryToIsoIndex{173620, "se"}, + CountryToIsoIndex{173628, "se"}, + CountryToIsoIndex{173635, "se"}, + CountryToIsoIndex{173643, "se"}, + CountryToIsoIndex{173651, "se"}, + CountryToIsoIndex{173658, "ch"}, + CountryToIsoIndex{173664, "ch"}, + CountryToIsoIndex{173671, "ch"}, + CountryToIsoIndex{173679, "ch"}, + CountryToIsoIndex{173687, "za"}, + CountryToIsoIndex{173702, "gs"}, + CountryToIsoIndex{173744, "kr"}, + CountryToIsoIndex{173758, "ss"}, + CountryToIsoIndex{173772, "za"}, + CountryToIsoIndex{173785, "gs"}, + CountryToIsoIndex{173824, "kr"}, + CountryToIsoIndex{173836, "aq"}, + CountryToIsoIndex{173856, "ss"}, + CountryToIsoIndex{173868, "se"}, + CountryToIsoIndex{173877, "se"}, + CountryToIsoIndex{173883, "sa"}, + CountryToIsoIndex{173902, "se"}, + CountryToIsoIndex{173910, "sh"}, + CountryToIsoIndex{173927, "sz"}, + CountryToIsoIndex{173937, "sj"}, + CountryToIsoIndex{173946, "sj"}, + CountryToIsoIndex{173967, "sj"}, + CountryToIsoIndex{173988, "sj"}, + CountryToIsoIndex{174013, "sj"}, + CountryToIsoIndex{174037, "sj"}, + CountryToIsoIndex{174060, "sj"}, + CountryToIsoIndex{174081, "sj"}, + CountryToIsoIndex{174102, "sj"}, + CountryToIsoIndex{174124, "sj"}, + CountryToIsoIndex{174146, "sj"}, + CountryToIsoIndex{174178, "sj"}, + CountryToIsoIndex{174199, "sj"}, + CountryToIsoIndex{174220, "sj"}, + CountryToIsoIndex{174241, "sj"}, + CountryToIsoIndex{174263, "sj"}, + CountryToIsoIndex{174285, "sj"}, + CountryToIsoIndex{174316, "sj"}, + CountryToIsoIndex{174340, "sj"}, + CountryToIsoIndex{174362, "sj"}, + CountryToIsoIndex{174385, "sj"}, + CountryToIsoIndex{174407, "sj"}, + CountryToIsoIndex{174428, "sj"}, + CountryToIsoIndex{174450, "sj"}, + CountryToIsoIndex{174476, "sj"}, + CountryToIsoIndex{174499, "sj"}, + CountryToIsoIndex{174521, "sj"}, + CountryToIsoIndex{174544, "sj"}, + CountryToIsoIndex{174567, "sj"}, + CountryToIsoIndex{174588, "sj"}, + CountryToIsoIndex{174616, "sj"}, + CountryToIsoIndex{174639, "sj"}, + CountryToIsoIndex{174662, "sj"}, + CountryToIsoIndex{174690, "sj"}, + CountryToIsoIndex{174721, "sj"}, + CountryToIsoIndex{174745, "sj"}, + CountryToIsoIndex{174769, "sj"}, + CountryToIsoIndex{174799, "me"}, + CountryToIsoIndex{174815, "sz"}, + CountryToIsoIndex{174825, "sz"}, + CountryToIsoIndex{174836, "sh"}, + CountryToIsoIndex{174850, "lc"}, + CountryToIsoIndex{174863, "bl"}, + CountryToIsoIndex{174882, "kn"}, + CountryToIsoIndex{174906, "mf"}, + CountryToIsoIndex{174930, "sx"}, + CountryToIsoIndex{174957, "st"}, + CountryToIsoIndex{174990, "vc"}, + CountryToIsoIndex{175017, "sz"}, + CountryToIsoIndex{175023, "sz"}, + CountryToIsoIndex{175033, "sz"}, + CountryToIsoIndex{175043, "sz"}, + CountryToIsoIndex{175053, "sz"}, + CountryToIsoIndex{175065, "sz"}, + CountryToIsoIndex{175076, "sz"}, + CountryToIsoIndex{175088, "sz"}, + CountryToIsoIndex{175098, "sz"}, + CountryToIsoIndex{175109, "se"}, + CountryToIsoIndex{175116, "se"}, + CountryToIsoIndex{175124, "ch"}, + CountryToIsoIndex{175130, "ch"}, + CountryToIsoIndex{175137, "ch"}, + CountryToIsoIndex{175145, "se"}, + CountryToIsoIndex{175153, "sh"}, + CountryToIsoIndex{175166, "sh"}, + CountryToIsoIndex{175179, "lc"}, + CountryToIsoIndex{175192, "bl"}, + CountryToIsoIndex{175209, "kn"}, + CountryToIsoIndex{175228, "kn"}, + CountryToIsoIndex{175252, "mf"}, + CountryToIsoIndex{175265, "mf"}, + CountryToIsoIndex{175290, "sx"}, + CountryToIsoIndex{175315, "pm"}, + CountryToIsoIndex{175337, "pm"}, + CountryToIsoIndex{175358, "st"}, + CountryToIsoIndex{175379, "vc"}, + CountryToIsoIndex{175405, "vc"}, + CountryToIsoIndex{175430, "vc"}, + CountryToIsoIndex{175456, "se"}, + CountryToIsoIndex{175463, "se"}, + CountryToIsoIndex{175470, "ch"}, + CountryToIsoIndex{175476, "ch"}, + CountryToIsoIndex{175484, "ch"}, + CountryToIsoIndex{175491, "ch"}, + CountryToIsoIndex{175500, "ch"}, + CountryToIsoIndex{175509, "ch"}, + CountryToIsoIndex{175516, "sh"}, + CountryToIsoIndex{175531, "lc"}, + CountryToIsoIndex{175545, "bl"}, + CountryToIsoIndex{175564, "kn"}, + CountryToIsoIndex{175589, "mf"}, + CountryToIsoIndex{175610, "sx"}, + CountryToIsoIndex{175632, "st"}, + CountryToIsoIndex{175665, "vc"}, + CountryToIsoIndex{175694, "se"}, + CountryToIsoIndex{175707, "se"}, + CountryToIsoIndex{175719, "se"}, + CountryToIsoIndex{175729, "sz"}, + CountryToIsoIndex{175742, "sj"}, + CountryToIsoIndex{175764, "sz"}, + CountryToIsoIndex{175774, "sz"}, + CountryToIsoIndex{175783, "sz"}, + CountryToIsoIndex{175796, "sz"}, + CountryToIsoIndex{175805, "sz"}, + CountryToIsoIndex{175815, "sz"}, + CountryToIsoIndex{175832, "sz"}, + CountryToIsoIndex{175843, "sz"}, + CountryToIsoIndex{175854, "sz"}, + CountryToIsoIndex{175866, "sz"}, + CountryToIsoIndex{175879, "sz"}, + CountryToIsoIndex{175889, "sz"}, + CountryToIsoIndex{175899, "sz"}, + CountryToIsoIndex{175912, "sz"}, + CountryToIsoIndex{175925, "sz"}, + CountryToIsoIndex{175935, "sz"}, + CountryToIsoIndex{175944, "sz"}, + CountryToIsoIndex{175955, "sz"}, + CountryToIsoIndex{175964, "sd"}, + CountryToIsoIndex{175970, "se"}, + CountryToIsoIndex{175976, "se"}, + CountryToIsoIndex{175983, "se"}, + CountryToIsoIndex{175990, "se"}, + CountryToIsoIndex{176004, "se"}, + CountryToIsoIndex{176011, "se"}, + CountryToIsoIndex{176021, "se"}, + CountryToIsoIndex{176028, "ch"}, + CountryToIsoIndex{176039, "se"}, + CountryToIsoIndex{176044, "se"}, + CountryToIsoIndex{176052, "ch"}, + CountryToIsoIndex{176058, "ch"}, + CountryToIsoIndex{176071, "ch"}, + CountryToIsoIndex{176076, "ch"}, + CountryToIsoIndex{176082, "ch"}, + CountryToIsoIndex{176088, "ch"}, + CountryToIsoIndex{176095, "ch"}, + CountryToIsoIndex{176101, "ch"}, + CountryToIsoIndex{176107, "ch"}, + CountryToIsoIndex{176114, "ch"}, + CountryToIsoIndex{176127, "ch"}, + CountryToIsoIndex{176139, "ch"}, + CountryToIsoIndex{176151, "ch"}, + CountryToIsoIndex{176163, "ch"}, + CountryToIsoIndex{176182, "ch"}, + CountryToIsoIndex{176195, "ch"}, + CountryToIsoIndex{176208, "ch"}, + CountryToIsoIndex{176219, "sz"}, + CountryToIsoIndex{176232, "sz"}, + CountryToIsoIndex{176246, "se"}, + CountryToIsoIndex{176254, "ch"}, + CountryToIsoIndex{176260, "se"}, + CountryToIsoIndex{176268, "td"}, + CountryToIsoIndex{176273, "za"}, + CountryToIsoIndex{176283, "gs"}, + CountryToIsoIndex{176317, "kr"}, + CountryToIsoIndex{176326, "ss"}, + CountryToIsoIndex{176335, "sl"}, + CountryToIsoIndex{176348, "cl"}, + CountryToIsoIndex{176354, "cy"}, + CountryToIsoIndex{176363, "cn"}, + CountryToIsoIndex{176369, "cy"}, + CountryToIsoIndex{176375, "cy"}, + CountryToIsoIndex{176382, "sy"}, + CountryToIsoIndex{176388, "sy"}, + CountryToIsoIndex{176395, "sy"}, + CountryToIsoIndex{176401, "sy"}, + CountryToIsoIndex{176408, "sy"}, + CountryToIsoIndex{176416, "sy"}, + CountryToIsoIndex{176423, "sy"}, + CountryToIsoIndex{176430, "sl"}, + CountryToIsoIndex{176441, "ws"}, + CountryToIsoIndex{176448, "sa"}, + CountryToIsoIndex{176463, "sn"}, + CountryToIsoIndex{176473, "sh"}, + CountryToIsoIndex{176485, "rs"}, + CountryToIsoIndex{176493, "sg"}, + CountryToIsoIndex{176504, "sk"}, + CountryToIsoIndex{176515, "si"}, + CountryToIsoIndex{176526, "so"}, + CountryToIsoIndex{176536, "sd"}, + CountryToIsoIndex{176544, "sz"}, + CountryToIsoIndex{176557, "ch"}, + CountryToIsoIndex{176568, "se"}, + CountryToIsoIndex{176576, "sy"}, + CountryToIsoIndex{176584, "eh"}, + CountryToIsoIndex{176603, "zm"}, + CountryToIsoIndex{176612, "sv"}, + CountryToIsoIndex{176626, "zm"}, + CountryToIsoIndex{176633, "ws"}, + CountryToIsoIndex{176642, "ws"}, + CountryToIsoIndex{176650, "sm"}, + CountryToIsoIndex{176664, "st"}, + CountryToIsoIndex{176694, "jp"}, + CountryToIsoIndex{176703, "sa"}, + CountryToIsoIndex{176720, "td"}, + CountryToIsoIndex{176726, "sa"}, + CountryToIsoIndex{176740, "eh"}, + CountryToIsoIndex{176759, "zm"}, + CountryToIsoIndex{176767, "as"}, + CountryToIsoIndex{176785, "as"}, + CountryToIsoIndex{176826, "as"}, + CountryToIsoIndex{176868, "bl"}, + CountryToIsoIndex{176887, "sh"}, + CountryToIsoIndex{176900, "kn"}, + CountryToIsoIndex{176931, "lc"}, + CountryToIsoIndex{176943, "sm"}, + CountryToIsoIndex{176958, "mf"}, + CountryToIsoIndex{176972, "pm"}, + CountryToIsoIndex{177001, "vc"}, + CountryToIsoIndex{177031, "st"}, + CountryToIsoIndex{177057, "st"}, + CountryToIsoIndex{177094, "eh"}, + CountryToIsoIndex{177115, "st"}, + CountryToIsoIndex{177141, "bl"}, + CountryToIsoIndex{177157, "kn"}, + CountryToIsoIndex{177181, "kn"}, + CountryToIsoIndex{177206, "kn"}, + CountryToIsoIndex{177232, "sm"}, + CountryToIsoIndex{177245, "mf"}, + CountryToIsoIndex{177259, "sx"}, + CountryToIsoIndex{177288, "pm"}, + CountryToIsoIndex{177311, "st"}, + CountryToIsoIndex{177333, "st"}, + CountryToIsoIndex{177356, "st"}, + CountryToIsoIndex{177379, "st"}, + CountryToIsoIndex{177406, "st"}, + CountryToIsoIndex{177432, "st"}, + CountryToIsoIndex{177457, "st"}, + CountryToIsoIndex{177479, "st"}, + CountryToIsoIndex{177502, "st"}, + CountryToIsoIndex{177526, "st"}, + CountryToIsoIndex{177550, "st"}, + CountryToIsoIndex{177574, "st"}, + CountryToIsoIndex{177597, "st"}, + CountryToIsoIndex{177621, "st"}, + CountryToIsoIndex{177646, "st"}, + CountryToIsoIndex{177679, "st"}, + CountryToIsoIndex{177703, "st"}, + CountryToIsoIndex{177728, "st"}, + CountryToIsoIndex{177752, "st"}, + CountryToIsoIndex{177775, "st"}, + CountryToIsoIndex{177799, "st"}, + CountryToIsoIndex{177824, "st"}, + CountryToIsoIndex{177848, "st"}, + CountryToIsoIndex{177873, "st"}, + CountryToIsoIndex{177898, "st"}, + CountryToIsoIndex{177922, "vc"}, + CountryToIsoIndex{177948, "bl"}, + CountryToIsoIndex{177964, "vc"}, + CountryToIsoIndex{177990, "kn"}, + CountryToIsoIndex{178014, "mf"}, + CountryToIsoIndex{178038, "sx"}, + CountryToIsoIndex{178062, "st"}, + CountryToIsoIndex{178084, "rs"}, + CountryToIsoIndex{178092, "rs"}, + CountryToIsoIndex{178101, "sn"}, + CountryToIsoIndex{178112, "rs"}, + CountryToIsoIndex{178120, "sc"}, + CountryToIsoIndex{178130, "cz"}, + CountryToIsoIndex{178135, "sn"}, + CountryToIsoIndex{178145, "hk"}, + CountryToIsoIndex{178178, "mo"}, + CountryToIsoIndex{178208, "rs"}, + CountryToIsoIndex{178216, "kn"}, + CountryToIsoIndex{178243, "sm"}, + CountryToIsoIndex{178256, "pm"}, + CountryToIsoIndex{178281, "vc"}, + CountryToIsoIndex{178311, "sh"}, + CountryToIsoIndex{178325, "lc"}, + CountryToIsoIndex{178338, "io"}, + CountryToIsoIndex{178381, "ps"}, + CountryToIsoIndex{178402, "sc"}, + CountryToIsoIndex{178413, "nz"}, + CountryToIsoIndex{178432, "sg"}, + CountryToIsoIndex{178445, "sl"}, + CountryToIsoIndex{178460, "cn"}, + CountryToIsoIndex{178467, "sg"}, + CountryToIsoIndex{178478, "cl"}, + CountryToIsoIndex{178484, "cl"}, + CountryToIsoIndex{178490, "gi"}, + CountryToIsoIndex{178504, "cy"}, + CountryToIsoIndex{178509, "cy"}, + CountryToIsoIndex{178517, "dj"}, + CountryToIsoIndex{178526, "cy"}, + CountryToIsoIndex{178536, "sy"}, + CountryToIsoIndex{178543, "sy"}, + CountryToIsoIndex{178551, "cy"}, + CountryToIsoIndex{178558, "sg"}, + CountryToIsoIndex{178571, "so"}, + CountryToIsoIndex{178581, "so"}, + CountryToIsoIndex{178592, "so"}, + CountryToIsoIndex{178602, "gs"}, + CountryToIsoIndex{178650, "kr"}, + CountryToIsoIndex{178662, "ss"}, + CountryToIsoIndex{178673, "za"}, + CountryToIsoIndex{178686, "kr"}, + CountryToIsoIndex{178698, "za"}, + CountryToIsoIndex{178710, "gs"}, + CountryToIsoIndex{178746, "kr"}, + CountryToIsoIndex{178757, "ss"}, + CountryToIsoIndex{178768, "sd"}, + CountryToIsoIndex{178776, "sd"}, + CountryToIsoIndex{178785, "sr"}, + CountryToIsoIndex{178795, "ch"}, + CountryToIsoIndex{178803, "sd"}, + CountryToIsoIndex{178810, "sd"}, + CountryToIsoIndex{178818, "sr"}, + CountryToIsoIndex{178828, "za"}, + CountryToIsoIndex{178840, "gs"}, + CountryToIsoIndex{178882, "kr"}, + CountryToIsoIndex{178893, "ss"}, + CountryToIsoIndex{178905, "ch"}, + CountryToIsoIndex{178913, "za"}, + CountryToIsoIndex{178924, "gs"}, + CountryToIsoIndex{178968, "gs"}, + CountryToIsoIndex{179014, "gs"}, + CountryToIsoIndex{179061, "kr"}, + CountryToIsoIndex{179071, "ss"}, + CountryToIsoIndex{179081, "mo"}, + CountryToIsoIndex{179111, "hk"}, + CountryToIsoIndex{179144, "sy"}, + CountryToIsoIndex{179151, "sy"}, + CountryToIsoIndex{179159, "sr"}, + CountryToIsoIndex{179169, "za"}, + CountryToIsoIndex{179182, "gs"}, + CountryToIsoIndex{179234, "gs"}, + CountryToIsoIndex{179284, "sy"}, + CountryToIsoIndex{179293, "sy"}, + CountryToIsoIndex{179302, "sl"}, + CountryToIsoIndex{179316, "sy"}, + CountryToIsoIndex{179323, "sy"}, + CountryToIsoIndex{179330, "sy"}, + CountryToIsoIndex{179339, "sh"}, + CountryToIsoIndex{179350, "kn"}, + CountryToIsoIndex{179371, "lc"}, + CountryToIsoIndex{179382, "sm"}, + CountryToIsoIndex{179393, "mf"}, + CountryToIsoIndex{179421, "sx"}, + CountryToIsoIndex{179447, "bl"}, + CountryToIsoIndex{179461, "pm"}, + CountryToIsoIndex{179482, "vc"}, + CountryToIsoIndex{179509, "td"}, + CountryToIsoIndex{179515, "cz"}, + CountryToIsoIndex{179522, "rs"}, + CountryToIsoIndex{179529, "lk"}, + CountryToIsoIndex{179541, "sy"}, + CountryToIsoIndex{179548, "sy"}, + CountryToIsoIndex{179556, "rs"}, + CountryToIsoIndex{179567, "ci"}, + CountryToIsoIndex{179589, "ci"}, + CountryToIsoIndex{179617, "sk"}, + CountryToIsoIndex{179627, "sk"}, + CountryToIsoIndex{179638, "si"}, + CountryToIsoIndex{179648, "si"}, + CountryToIsoIndex{179660, "si"}, + CountryToIsoIndex{179673, "so"}, + CountryToIsoIndex{179682, "fi"}, + CountryToIsoIndex{179690, "ss"}, + CountryToIsoIndex{179708, "sd"}, + CountryToIsoIndex{179716, "vi"}, + CountryToIsoIndex{179739, "gb"}, + CountryToIsoIndex{179754, "sa"}, + CountryToIsoIndex{179767, "ae"}, + CountryToIsoIndex{179789, "do"}, + CountryToIsoIndex{179809, "eg"}, + CountryToIsoIndex{179820, "er"}, + CountryToIsoIndex{179832, "fj"}, + CountryToIsoIndex{179842, "fi"}, + CountryToIsoIndex{179855, "gi"}, + CountryToIsoIndex{179870, "gr"}, + CountryToIsoIndex{179880, "gl"}, + CountryToIsoIndex{179895, "gq"}, + CountryToIsoIndex{179906, "gf"}, + CountryToIsoIndex{179930, "gp"}, + CountryToIsoIndex{179947, "ht"}, + CountryToIsoIndex{179958, "sh"}, + CountryToIsoIndex{179970, "hn"}, + CountryToIsoIndex{179984, "in"}, + CountryToIsoIndex{179995, "ie"}, + CountryToIsoIndex{180008, "is"}, + CountryToIsoIndex{180020, "il"}, + CountryToIsoIndex{180032, "ke"}, + CountryToIsoIndex{180043, "ki"}, + CountryToIsoIndex{180057, "cd"}, + CountryToIsoIndex{180083, "kp"}, + CountryToIsoIndex{180103, "kr"}, + CountryToIsoIndex{180124, "kw"}, + CountryToIsoIndex{180136, "kn"}, + CountryToIsoIndex{180159, "lk"}, + CountryToIsoIndex{180170, "la"}, + CountryToIsoIndex{180180, "ls"}, + CountryToIsoIndex{180193, "lc"}, + CountryToIsoIndex{180204, "lu"}, + CountryToIsoIndex{180219, "nl"}, + CountryToIsoIndex{180235, "mw"}, + CountryToIsoIndex{180247, "ml"}, + CountryToIsoIndex{180257, "fk"}, + CountryToIsoIndex{180282, "mt"}, + CountryToIsoIndex{180293, "mp"}, + CountryToIsoIndex{180314, "sm"}, + CountryToIsoIndex{180326, "mh"}, + CountryToIsoIndex{180350, "mu"}, + CountryToIsoIndex{180364, "ms"}, + CountryToIsoIndex{180380, "mm"}, + CountryToIsoIndex{180393, "nr"}, + CountryToIsoIndex{180404, "np"}, + CountryToIsoIndex{180415, "ne"}, + CountryToIsoIndex{180426, "pw"}, + CountryToIsoIndex{180437, "ps"}, + CountryToIsoIndex{180454, "pa"}, + CountryToIsoIndex{180466, "pf"}, + CountryToIsoIndex{180494, "pt"}, + CountryToIsoIndex{180508, "pm"}, + CountryToIsoIndex{180532, "re"}, + CountryToIsoIndex{180545, "sb"}, + CountryToIsoIndex{180568, "sv"}, + CountryToIsoIndex{180582, "ws"}, + CountryToIsoIndex{180593, "se"}, + CountryToIsoIndex{180603, "sr"}, + CountryToIsoIndex{180616, "sz"}, + CountryToIsoIndex{180631, "ch"}, + CountryToIsoIndex{180642, "cz"}, + CountryToIsoIndex{180652, "tg"}, + CountryToIsoIndex{180662, "tk"}, + CountryToIsoIndex{180675, "to"}, + CountryToIsoIndex{180686, "tv"}, + CountryToIsoIndex{180698, "vu"}, + CountryToIsoIndex{180711, "ve"}, + CountryToIsoIndex{180726, "vn"}, + CountryToIsoIndex{180739, "vc"}, + CountryToIsoIndex{180765, "ge"}, + CountryToIsoIndex{180774, "jo"}, + CountryToIsoIndex{180784, "so"}, + CountryToIsoIndex{180793, "sk"}, + CountryToIsoIndex{180804, "si"}, + CountryToIsoIndex{180816, "lk"}, + CountryToIsoIndex{180830, "sa"}, + CountryToIsoIndex{180855, "sc"}, + CountryToIsoIndex{180871, "sc"}, + CountryToIsoIndex{180879, "rs"}, + CountryToIsoIndex{180889, "sg"}, + CountryToIsoIndex{180900, "kn"}, + CountryToIsoIndex{180929, "sm"}, + CountryToIsoIndex{180940, "pm"}, + CountryToIsoIndex{180964, "cf"}, + CountryToIsoIndex{180994, "lc"}, + CountryToIsoIndex{181006, "sh"}, + CountryToIsoIndex{181019, "vc"}, + CountryToIsoIndex{181047, "sn"}, + CountryToIsoIndex{181057, "sn"}, + CountryToIsoIndex{181068, "sc"}, + CountryToIsoIndex{181079, "sc"}, + CountryToIsoIndex{181089, "pm"}, + CountryToIsoIndex{181118, "kn"}, + CountryToIsoIndex{181138, "lc"}, + CountryToIsoIndex{181153, "vc"}, + CountryToIsoIndex{181190, "sh"}, + CountryToIsoIndex{181205, "sn"}, + CountryToIsoIndex{181220, "vc"}, + CountryToIsoIndex{181254, "kn"}, + CountryToIsoIndex{181282, "pm"}, + CountryToIsoIndex{181311, "sh"}, + CountryToIsoIndex{181336, "lc"}, + CountryToIsoIndex{181354, "es"}, + CountryToIsoIndex{181367, "lk"}, + CountryToIsoIndex{181383, "sk"}, + CountryToIsoIndex{181401, "si"}, + CountryToIsoIndex{181418, "ch"}, + CountryToIsoIndex{181428, "dk"}, + CountryToIsoIndex{181434, "tz"}, + CountryToIsoIndex{181445, "th"}, + CountryToIsoIndex{181455, "tw"}, + CountryToIsoIndex{181464, "tj"}, + CountryToIsoIndex{181479, "tj"}, + CountryToIsoIndex{181492, "no"}, + CountryToIsoIndex{181500, "tj"}, + CountryToIsoIndex{181511, "tz"}, + CountryToIsoIndex{181520, "tj"}, + CountryToIsoIndex{181532, "tj"}, + CountryToIsoIndex{181544, "tj"}, + CountryToIsoIndex{181556, "tj"}, + CountryToIsoIndex{181569, "tj"}, + CountryToIsoIndex{181582, "tj"}, + CountryToIsoIndex{181596, "tj"}, + CountryToIsoIndex{181612, "tj"}, + CountryToIsoIndex{181627, "tj"}, + CountryToIsoIndex{181641, "tj"}, + CountryToIsoIndex{181654, "tj"}, + CountryToIsoIndex{181670, "tj"}, + CountryToIsoIndex{181683, "tj"}, + CountryToIsoIndex{181696, "tj"}, + CountryToIsoIndex{181709, "tj"}, + CountryToIsoIndex{181722, "tj"}, + CountryToIsoIndex{181733, "tj"}, + CountryToIsoIndex{181746, "tj"}, + CountryToIsoIndex{181761, "th"}, + CountryToIsoIndex{181769, "th"}, + CountryToIsoIndex{181777, "tw"}, + CountryToIsoIndex{181785, "za"}, + CountryToIsoIndex{181802, "za"}, + CountryToIsoIndex{181816, "gb"}, + CountryToIsoIndex{181824, "cf"}, + CountryToIsoIndex{181848, "cz"}, + CountryToIsoIndex{181863, "do"}, + CountryToIsoIndex{181885, "cd"}, + CountryToIsoIndex{181916, "cd"}, + CountryToIsoIndex{181942, "cd"}, + CountryToIsoIndex{181973, "do"}, + CountryToIsoIndex{181994, "cf"}, + CountryToIsoIndex{182024, "cz"}, + CountryToIsoIndex{182043, "gb"}, + CountryToIsoIndex{182061, "gb"}, + CountryToIsoIndex{182079, "tj"}, + CountryToIsoIndex{182090, "gb"}, + CountryToIsoIndex{182104, "th"}, + CountryToIsoIndex{182108, "th"}, + CountryToIsoIndex{182119, "tw"}, + CountryToIsoIndex{182131, "tj"}, + CountryToIsoIndex{182145, "th"}, + CountryToIsoIndex{182152, "th"}, + CountryToIsoIndex{182160, "th"}, + CountryToIsoIndex{182169, "th"}, + CountryToIsoIndex{182179, "th"}, + CountryToIsoIndex{182188, "th"}, + CountryToIsoIndex{182198, "th"}, + CountryToIsoIndex{182208, "th"}, + CountryToIsoIndex{182218, "th"}, + CountryToIsoIndex{182226, "th"}, + CountryToIsoIndex{182237, "th"}, + CountryToIsoIndex{182245, "th"}, + CountryToIsoIndex{182256, "th"}, + CountryToIsoIndex{182266, "th"}, + CountryToIsoIndex{182277, "tw"}, + CountryToIsoIndex{182285, "th"}, + CountryToIsoIndex{182294, "tw"}, + CountryToIsoIndex{182301, "tw"}, + CountryToIsoIndex{182309, "tw"}, + CountryToIsoIndex{182316, "tw"}, + CountryToIsoIndex{182325, "tw"}, + CountryToIsoIndex{182334, "tw"}, + CountryToIsoIndex{182341, "tw"}, + CountryToIsoIndex{182355, "tw"}, + CountryToIsoIndex{182363, "tw"}, + CountryToIsoIndex{182372, "tw"}, + CountryToIsoIndex{182380, "tw"}, + CountryToIsoIndex{182390, "tw"}, + CountryToIsoIndex{182398, "tw"}, + CountryToIsoIndex{182407, "th"}, + CountryToIsoIndex{182415, "tj"}, + CountryToIsoIndex{182429, "tj"}, + CountryToIsoIndex{182442, "tj"}, + CountryToIsoIndex{182455, "tj"}, + CountryToIsoIndex{182470, "tj"}, + CountryToIsoIndex{182482, "tj"}, + CountryToIsoIndex{182493, "tj"}, + CountryToIsoIndex{182511, "tj"}, + CountryToIsoIndex{182523, "tj"}, + CountryToIsoIndex{182535, "tj"}, + CountryToIsoIndex{182548, "tj"}, + CountryToIsoIndex{182561, "th"}, + CountryToIsoIndex{182569, "th"}, + CountryToIsoIndex{182579, "th"}, + CountryToIsoIndex{182588, "th"}, + CountryToIsoIndex{182598, "th"}, + CountryToIsoIndex{182605, "tw"}, + CountryToIsoIndex{182612, "tw"}, + CountryToIsoIndex{182620, "tw"}, + CountryToIsoIndex{182627, "ez"}, + CountryToIsoIndex{182641, "tk"}, + CountryToIsoIndex{182649, "tm"}, + CountryToIsoIndex{182665, "tr"}, + CountryToIsoIndex{182671, "it"}, + CountryToIsoIndex{182681, "it"}, + CountryToIsoIndex{182690, "io"}, + CountryToIsoIndex{182725, "ez"}, + CountryToIsoIndex{182743, "hk"}, + CountryToIsoIndex{182783, "mo"}, + CountryToIsoIndex{182825, "dk"}, + CountryToIsoIndex{182835, "to"}, + CountryToIsoIndex{182841, "cv"}, + CountryToIsoIndex{182855, "tz"}, + CountryToIsoIndex{182865, "tz"}, + CountryToIsoIndex{182876, "tz"}, + CountryToIsoIndex{182885, "tz"}, + CountryToIsoIndex{182894, "tz"}, + CountryToIsoIndex{182904, "tz"}, + CountryToIsoIndex{182914, "tz"}, + CountryToIsoIndex{182924, "tz"}, + CountryToIsoIndex{182934, "dk"}, + CountryToIsoIndex{182941, "tz"}, + CountryToIsoIndex{182950, "tz"}, + CountryToIsoIndex{182958, "tz"}, + CountryToIsoIndex{182967, "tz"}, + CountryToIsoIndex{182983, "tz"}, + CountryToIsoIndex{182993, "tz"}, + CountryToIsoIndex{183002, "tz"}, + CountryToIsoIndex{183012, "tz"}, + CountryToIsoIndex{183021, "tz"}, + CountryToIsoIndex{183031, "tz"}, + CountryToIsoIndex{183041, "tz"}, + CountryToIsoIndex{183052, "tz"}, + CountryToIsoIndex{183061, "tz"}, + CountryToIsoIndex{183070, "tz"}, + CountryToIsoIndex{183079, "tz"}, + CountryToIsoIndex{183089, "tz"}, + CountryToIsoIndex{183099, "tz"}, + CountryToIsoIndex{183109, "tz"}, + CountryToIsoIndex{183120, "tz"}, + CountryToIsoIndex{183130, "tz"}, + CountryToIsoIndex{183141, "qo"}, + CountryToIsoIndex{183157, "tj"}, + CountryToIsoIndex{183171, "tj"}, + CountryToIsoIndex{183182, "kp"}, + CountryToIsoIndex{183193, "mp"}, + CountryToIsoIndex{183207, "tj"}, + CountryToIsoIndex{183219, "tj"}, + CountryToIsoIndex{183232, "tj"}, + CountryToIsoIndex{183244, "th"}, + CountryToIsoIndex{183254, "th"}, + CountryToIsoIndex{183264, "th"}, + CountryToIsoIndex{183275, "th"}, + CountryToIsoIndex{183285, "tw"}, + CountryToIsoIndex{183295, "tw"}, + CountryToIsoIndex{183304, "tw"}, + CountryToIsoIndex{183314, "th"}, + CountryToIsoIndex{183323, "th"}, + CountryToIsoIndex{183331, "th"}, + CountryToIsoIndex{183341, "th"}, + CountryToIsoIndex{183350, "tw"}, + CountryToIsoIndex{183357, "tw"}, + CountryToIsoIndex{183365, "tw"}, + CountryToIsoIndex{183372, "tj"}, + CountryToIsoIndex{183383, "tj"}, + CountryToIsoIndex{183395, "tj"}, + CountryToIsoIndex{183406, "th"}, + CountryToIsoIndex{183415, "tw"}, + CountryToIsoIndex{183423, "th"}, + CountryToIsoIndex{183432, "tw"}, + CountryToIsoIndex{183440, "th"}, + CountryToIsoIndex{183449, "tw"}, + CountryToIsoIndex{183457, "tj"}, + CountryToIsoIndex{183467, "tz"}, + CountryToIsoIndex{183476, "tz"}, + CountryToIsoIndex{183486, "tz"}, + CountryToIsoIndex{183498, "tz"}, + CountryToIsoIndex{183510, "tj"}, + CountryToIsoIndex{183522, "ci"}, + CountryToIsoIndex{183539, "td"}, + CountryToIsoIndex{183544, "td"}, + CountryToIsoIndex{183550, "tw"}, + CountryToIsoIndex{183560, "cz"}, + CountryToIsoIndex{183568, "cz"}, + CountryToIsoIndex{183578, "cz"}, + CountryToIsoIndex{183588, "tr"}, + CountryToIsoIndex{183595, "tf"}, + CountryToIsoIndex{183617, "tm"}, + CountryToIsoIndex{183638, "tl"}, + CountryToIsoIndex{183660, "cd"}, + CountryToIsoIndex{183690, "dk"}, + CountryToIsoIndex{183702, "tz"}, + CountryToIsoIndex{183713, "io"}, + CountryToIsoIndex{183748, "tf"}, + CountryToIsoIndex{183793, "ps"}, + CountryToIsoIndex{183818, "tf"}, + CountryToIsoIndex{183849, "ps"}, + CountryToIsoIndex{183871, "io"}, + CountryToIsoIndex{183910, "io"}, + CountryToIsoIndex{183949, "io"}, + CountryToIsoIndex{183981, "ps"}, + CountryToIsoIndex{184000, "tc"}, + CountryToIsoIndex{184025, "tc"}, + CountryToIsoIndex{184049, "tf"}, + CountryToIsoIndex{184071, "tf"}, + CountryToIsoIndex{184095, "tf"}, + CountryToIsoIndex{184140, "tf"}, + CountryToIsoIndex{184169, "io"}, + CountryToIsoIndex{184213, "ps"}, + CountryToIsoIndex{184238, "tf"}, + CountryToIsoIndex{184265, "ps"}, + CountryToIsoIndex{184288, "io"}, + CountryToIsoIndex{184324, "io"}, + CountryToIsoIndex{184363, "io"}, + CountryToIsoIndex{184403, "ps"}, + CountryToIsoIndex{184425, "ps"}, + CountryToIsoIndex{184447, "io"}, + CountryToIsoIndex{184491, "io"}, + CountryToIsoIndex{184533, "io"}, + CountryToIsoIndex{184574, "ps"}, + CountryToIsoIndex{184595, "qo"}, + CountryToIsoIndex{184629, "qo"}, + CountryToIsoIndex{184662, "tf"}, + CountryToIsoIndex{184693, "tf"}, + CountryToIsoIndex{184725, "ps"}, + CountryToIsoIndex{184748, "qo"}, + CountryToIsoIndex{184781, "tf"}, + CountryToIsoIndex{184811, "tf"}, + CountryToIsoIndex{184842, "ps"}, + CountryToIsoIndex{184863, "io"}, + CountryToIsoIndex{184905, "io"}, + CountryToIsoIndex{184945, "io"}, + CountryToIsoIndex{184986, "ps"}, + CountryToIsoIndex{185011, "tf"}, + CountryToIsoIndex{185041, "ps"}, + CountryToIsoIndex{185068, "ps"}, + CountryToIsoIndex{185092, "ps"}, + CountryToIsoIndex{185116, "th"}, + CountryToIsoIndex{185125, "th"}, + CountryToIsoIndex{185137, "th"}, + CountryToIsoIndex{185147, "th"}, + CountryToIsoIndex{185156, "th"}, + CountryToIsoIndex{185172, "th"}, + CountryToIsoIndex{185182, "th"}, + CountryToIsoIndex{185192, "th"}, + CountryToIsoIndex{185203, "th"}, + CountryToIsoIndex{185215, "th"}, + CountryToIsoIndex{185225, "th"}, + CountryToIsoIndex{185234, "th"}, + CountryToIsoIndex{185242, "th"}, + CountryToIsoIndex{185250, "sm"}, + CountryToIsoIndex{185260, "ws"}, + CountryToIsoIndex{185267, "as"}, + CountryToIsoIndex{185286, "sh"}, + CountryToIsoIndex{185299, "kn"}, + CountryToIsoIndex{185322, "lc"}, + CountryToIsoIndex{185335, "pm"}, + CountryToIsoIndex{185359, "vc"}, + CountryToIsoIndex{185387, "st"}, + CountryToIsoIndex{185409, "sa"}, + CountryToIsoIndex{185416, "th"}, + CountryToIsoIndex{185427, "tw"}, + CountryToIsoIndex{185437, "th"}, + CountryToIsoIndex{185446, "th"}, + CountryToIsoIndex{185457, "th"}, + CountryToIsoIndex{185468, "tr"}, + CountryToIsoIndex{185475, "sn"}, + CountryToIsoIndex{185485, "ea"}, + CountryToIsoIndex{185501, "sl"}, + CountryToIsoIndex{185514, "sg"}, + CountryToIsoIndex{185524, "sy"}, + CountryToIsoIndex{185531, "lk"}, + CountryToIsoIndex{185542, "si"}, + CountryToIsoIndex{185552, "tg"}, + CountryToIsoIndex{185558, "tk"}, + CountryToIsoIndex{185568, "sk"}, + CountryToIsoIndex{185578, "so"}, + CountryToIsoIndex{185587, "to"}, + CountryToIsoIndex{185594, "sd"}, + CountryToIsoIndex{185602, "sr"}, + CountryToIsoIndex{185612, "tv"}, + CountryToIsoIndex{185620, "va"}, + CountryToIsoIndex{185635, "th"}, + CountryToIsoIndex{185645, "tr"}, + CountryToIsoIndex{185661, "ch"}, + CountryToIsoIndex{185672, "se"}, + CountryToIsoIndex{185687, "dg"}, + CountryToIsoIndex{185700, "tr"}, + CountryToIsoIndex{185708, "tf"}, + CountryToIsoIndex{185736, "cf"}, + CountryToIsoIndex{185764, "do"}, + CountryToIsoIndex{185784, "cd"}, + CountryToIsoIndex{185810, "ae"}, + CountryToIsoIndex{185841, "vg"}, + CountryToIsoIndex{185876, "hm"}, + CountryToIsoIndex{185906, "um"}, + CountryToIsoIndex{185934, "ax"}, + CountryToIsoIndex{185951, "bv"}, + CountryToIsoIndex{185968, "fk"}, + CountryToIsoIndex{185988, "fk"}, + CountryToIsoIndex{186025, "fo"}, + CountryToIsoIndex{186044, "cv"}, + CountryToIsoIndex{186068, "gs"}, + CountryToIsoIndex{186122, "cv"}, + CountryToIsoIndex{186142, "ky"}, + CountryToIsoIndex{186160, "ky"}, + CountryToIsoIndex{186178, "cx"}, + CountryToIsoIndex{186198, "ck"}, + CountryToIsoIndex{186213, "cc"}, + CountryToIsoIndex{186230, "fk"}, + CountryToIsoIndex{186248, "mh"}, + CountryToIsoIndex{186266, "mp"}, + CountryToIsoIndex{186299, "mp"}, + CountryToIsoIndex{186324, "mp"}, + CountryToIsoIndex{186351, "nf"}, + CountryToIsoIndex{186370, "sb"}, + CountryToIsoIndex{186389, "sb"}, + CountryToIsoIndex{186408, "sb"}, + CountryToIsoIndex{186427, "tc"}, + CountryToIsoIndex{186452, "vi"}, + CountryToIsoIndex{186489, "cv"}, + CountryToIsoIndex{186514, "ic"}, + CountryToIsoIndex{186537, "vi"}, + CountryToIsoIndex{186569, "vg"}, + CountryToIsoIndex{186594, "nf"}, + CountryToIsoIndex{186614, "vg"}, + CountryToIsoIndex{186647, "tc"}, + CountryToIsoIndex{186679, "ac"}, + CountryToIsoIndex{186700, "cp"}, + CountryToIsoIndex{186722, "im"}, + CountryToIsoIndex{186736, "nf"}, + CountryToIsoIndex{186752, "tm"}, + CountryToIsoIndex{186768, "tr"}, + CountryToIsoIndex{186775, "tt"}, + CountryToIsoIndex{186795, "tt"}, + CountryToIsoIndex{186816, "tt"}, + CountryToIsoIndex{186837, "tt"}, + CountryToIsoIndex{186861, "re"}, + CountryToIsoIndex{186870, "qo"}, + CountryToIsoIndex{186901, "tl"}, + CountryToIsoIndex{186914, "kr"}, + CountryToIsoIndex{186926, "ss"}, + CountryToIsoIndex{186938, "tl"}, + CountryToIsoIndex{186955, "tl"}, + CountryToIsoIndex{186975, "tl"}, + CountryToIsoIndex{186993, "tl"}, + CountryToIsoIndex{187006, "tl"}, + CountryToIsoIndex{187025, "tl"}, + CountryToIsoIndex{187040, "tl"}, + CountryToIsoIndex{187057, "tl"}, + CountryToIsoIndex{187074, "tl"}, + CountryToIsoIndex{187084, "tl"}, + CountryToIsoIndex{187095, "tl"}, + CountryToIsoIndex{187112, "tl"}, + CountryToIsoIndex{187124, "tl"}, + CountryToIsoIndex{187136, "tl"}, + CountryToIsoIndex{187151, "tl"}, + CountryToIsoIndex{187166, "tl"}, + CountryToIsoIndex{187182, "tl"}, + CountryToIsoIndex{187197, "tl"}, + CountryToIsoIndex{187213, "tl"}, + CountryToIsoIndex{187225, "tl"}, + CountryToIsoIndex{187240, "tl"}, + CountryToIsoIndex{187259, "tl"}, + CountryToIsoIndex{187278, "tl"}, + CountryToIsoIndex{187290, "tl"}, + CountryToIsoIndex{187315, "tl"}, + CountryToIsoIndex{187344, "tl"}, + CountryToIsoIndex{187363, "tl"}, + CountryToIsoIndex{187378, "tl"}, + CountryToIsoIndex{187392, "tl"}, + CountryToIsoIndex{187407, "tl"}, + CountryToIsoIndex{187427, "tl"}, + CountryToIsoIndex{187436, "tl"}, + CountryToIsoIndex{187449, "tl"}, + CountryToIsoIndex{187466, "tl"}, + CountryToIsoIndex{187491, "tl"}, + CountryToIsoIndex{187506, "tl"}, + CountryToIsoIndex{187527, "tl"}, + CountryToIsoIndex{187534, "tl"}, + CountryToIsoIndex{187548, "tl"}, + CountryToIsoIndex{187563, "tl"}, + CountryToIsoIndex{187579, "tf"}, + CountryToIsoIndex{187610, "nl"}, + CountryToIsoIndex{187629, "tl"}, + CountryToIsoIndex{187651, "tl"}, + CountryToIsoIndex{187658, "tl"}, + CountryToIsoIndex{187674, "tl"}, + CountryToIsoIndex{187685, "tl"}, + CountryToIsoIndex{187703, "tl"}, + CountryToIsoIndex{187728, "tt"}, + CountryToIsoIndex{187747, "tt"}, + CountryToIsoIndex{187769, "tn"}, + CountryToIsoIndex{187776, "tn"}, + CountryToIsoIndex{187783, "cn"}, + CountryToIsoIndex{187792, "tr"}, + CountryToIsoIndex{187800, "io"}, + CountryToIsoIndex{187834, "ps"}, + CountryToIsoIndex{187854, "tt"}, + CountryToIsoIndex{187874, "tt"}, + CountryToIsoIndex{187895, "tt"}, + CountryToIsoIndex{187914, "tt"}, + CountryToIsoIndex{187937, "io"}, + CountryToIsoIndex{187972, "ps"}, + CountryToIsoIndex{187999, "tr"}, + CountryToIsoIndex{188005, "tm"}, + CountryToIsoIndex{188019, "tm"}, + CountryToIsoIndex{188034, "tr"}, + CountryToIsoIndex{188041, "tt"}, + CountryToIsoIndex{188061, "tf"}, + CountryToIsoIndex{188098, "cf"}, + CountryToIsoIndex{188129, "de"}, + CountryToIsoIndex{188139, "cz"}, + CountryToIsoIndex{188148, "cz"}, + CountryToIsoIndex{188156, "cz"}, + CountryToIsoIndex{188165, "tl"}, + CountryToIsoIndex{188168, "tt"}, + CountryToIsoIndex{188187, "tr"}, + CountryToIsoIndex{188193, "tg"}, + CountryToIsoIndex{188199, "tg"}, + CountryToIsoIndex{188204, "tg"}, + CountryToIsoIndex{188216, "tg"}, + CountryToIsoIndex{188222, "tg"}, + CountryToIsoIndex{188229, "tg"}, + CountryToIsoIndex{188235, "tg"}, + CountryToIsoIndex{188240, "tg"}, + CountryToIsoIndex{188246, "tg"}, + CountryToIsoIndex{188252, "tj"}, + CountryToIsoIndex{188263, "tk"}, + CountryToIsoIndex{188272, "tk"}, + CountryToIsoIndex{188280, "tk"}, + CountryToIsoIndex{188288, "tk"}, + CountryToIsoIndex{188303, "tk"}, + CountryToIsoIndex{188312, "tk"}, + CountryToIsoIndex{188319, "tk"}, + CountryToIsoIndex{188329, "tk"}, + CountryToIsoIndex{188338, "tk"}, + CountryToIsoIndex{188346, "tk"}, + CountryToIsoIndex{188355, "tg"}, + CountryToIsoIndex{188360, "tk"}, + CountryToIsoIndex{188368, "tk"}, + CountryToIsoIndex{188378, "tg"}, + CountryToIsoIndex{188384, "tk"}, + CountryToIsoIndex{188393, "dm"}, + CountryToIsoIndex{188402, "dm"}, + CountryToIsoIndex{188411, "do"}, + CountryToIsoIndex{188436, "to"}, + CountryToIsoIndex{188442, "to"}, + CountryToIsoIndex{188455, "to"}, + CountryToIsoIndex{188462, "to"}, + CountryToIsoIndex{188468, "to"}, + CountryToIsoIndex{188475, "tn"}, + CountryToIsoIndex{188483, "to"}, + CountryToIsoIndex{188491, "to"}, + CountryToIsoIndex{188497, "tg"}, + CountryToIsoIndex{188503, "tg"}, + CountryToIsoIndex{188509, "tg"}, + CountryToIsoIndex{188514, "tk"}, + CountryToIsoIndex{188523, "tr"}, + CountryToIsoIndex{188530, "tm"}, + CountryToIsoIndex{188543, "tv"}, + CountryToIsoIndex{188551, "tt"}, + CountryToIsoIndex{188572, "tt"}, + CountryToIsoIndex{188590, "tt"}, + CountryToIsoIndex{188608, "tt"}, + CountryToIsoIndex{188626, "tt"}, + CountryToIsoIndex{188648, "tt"}, + CountryToIsoIndex{188667, "tt"}, + CountryToIsoIndex{188687, "tt"}, + CountryToIsoIndex{188708, "tt"}, + CountryToIsoIndex{188728, "tt"}, + CountryToIsoIndex{188748, "tt"}, + CountryToIsoIndex{188766, "tt"}, + CountryToIsoIndex{188785, "tt"}, + CountryToIsoIndex{188805, "tt"}, + CountryToIsoIndex{188824, "tt"}, + CountryToIsoIndex{188843, "tt"}, + CountryToIsoIndex{188861, "tt"}, + CountryToIsoIndex{188879, "tt"}, + CountryToIsoIndex{188898, "tt"}, + CountryToIsoIndex{188917, "tt"}, + CountryToIsoIndex{188937, "tt"}, + CountryToIsoIndex{188965, "tt"}, + CountryToIsoIndex{188984, "tt"}, + CountryToIsoIndex{189003, "tt"}, + CountryToIsoIndex{189024, "tt"}, + CountryToIsoIndex{189043, "tt"}, + CountryToIsoIndex{189063, "tt"}, + CountryToIsoIndex{189082, "tt"}, + CountryToIsoIndex{189102, "tt"}, + CountryToIsoIndex{189120, "tt"}, + CountryToIsoIndex{189139, "tt"}, + CountryToIsoIndex{189160, "tt"}, + CountryToIsoIndex{189181, "tt"}, + CountryToIsoIndex{189201, "tt"}, + CountryToIsoIndex{189220, "tt"}, + CountryToIsoIndex{189239, "tt"}, + CountryToIsoIndex{189259, "tt"}, + CountryToIsoIndex{189279, "tt"}, + CountryToIsoIndex{189298, "tt"}, + CountryToIsoIndex{189316, "tt"}, + CountryToIsoIndex{189336, "tt"}, + CountryToIsoIndex{189356, "tt"}, + CountryToIsoIndex{189378, "tt"}, + CountryToIsoIndex{189399, "tt"}, + CountryToIsoIndex{189417, "tt"}, + CountryToIsoIndex{189439, "tt"}, + CountryToIsoIndex{189461, "tt"}, + CountryToIsoIndex{189479, "tt"}, + CountryToIsoIndex{189497, "tt"}, + CountryToIsoIndex{189515, "tt"}, + CountryToIsoIndex{189533, "tt"}, + CountryToIsoIndex{189552, "tt"}, + CountryToIsoIndex{189574, "ta"}, + CountryToIsoIndex{189591, "ta"}, + CountryToIsoIndex{189608, "ta"}, + CountryToIsoIndex{189625, "ta"}, + CountryToIsoIndex{189649, "ta"}, + CountryToIsoIndex{189666, "ta"}, + CountryToIsoIndex{189683, "ta"}, + CountryToIsoIndex{189700, "ta"}, + CountryToIsoIndex{189716, "ta"}, + CountryToIsoIndex{189733, "ta"}, + CountryToIsoIndex{189751, "ta"}, + CountryToIsoIndex{189776, "ta"}, + CountryToIsoIndex{189795, "ta"}, + CountryToIsoIndex{189813, "ta"}, + CountryToIsoIndex{189832, "ta"}, + CountryToIsoIndex{189850, "kp"}, + CountryToIsoIndex{189864, "cn"}, + CountryToIsoIndex{189877, "tt"}, + CountryToIsoIndex{189895, "tt"}, + CountryToIsoIndex{189920, "tt"}, + CountryToIsoIndex{189942, "td"}, + CountryToIsoIndex{189954, "td"}, + CountryToIsoIndex{189960, "cn"}, + CountryToIsoIndex{189974, "td"}, + CountryToIsoIndex{189981, "cz"}, + CountryToIsoIndex{189992, "cz"}, + CountryToIsoIndex{190014, "cz"}, + CountryToIsoIndex{190036, "dj"}, + CountryToIsoIndex{190047, "cl"}, + CountryToIsoIndex{190055, "td"}, + CountryToIsoIndex{190061, "td"}, + CountryToIsoIndex{190068, "cl"}, + CountryToIsoIndex{190075, "vi"}, + CountryToIsoIndex{190101, "fk"}, + CountryToIsoIndex{190119, "ky"}, + CountryToIsoIndex{190135, "cv"}, + CountryToIsoIndex{190154, "ck"}, + CountryToIsoIndex{190168, "mp"}, + CountryToIsoIndex{190195, "mh"}, + CountryToIsoIndex{190212, "sb"}, + CountryToIsoIndex{190229, "vg"}, + CountryToIsoIndex{190258, "nf"}, + CountryToIsoIndex{190275, "cz"}, + CountryToIsoIndex{190283, "cn"}, + CountryToIsoIndex{190291, "cl"}, + CountryToIsoIndex{190304, "cl"}, + CountryToIsoIndex{190311, "td"}, + CountryToIsoIndex{190318, "td"}, + CountryToIsoIndex{190324, "cz"}, + CountryToIsoIndex{190346, "cz"}, + CountryToIsoIndex{190356, "cz"}, + CountryToIsoIndex{190365, "cz"}, + CountryToIsoIndex{190386, "cz"}, + CountryToIsoIndex{190396, "cz"}, + CountryToIsoIndex{190405, "cn"}, + CountryToIsoIndex{190414, "td"}, + CountryToIsoIndex{190420, "td"}, + CountryToIsoIndex{190427, "cn"}, + CountryToIsoIndex{190435, "cz"}, + CountryToIsoIndex{190458, "tr"}, + CountryToIsoIndex{190464, "tv"}, + CountryToIsoIndex{190471, "tv"}, + CountryToIsoIndex{190479, "tv"}, + CountryToIsoIndex{190486, "tv"}, + CountryToIsoIndex{190494, "tg"}, + CountryToIsoIndex{190500, "tn"}, + CountryToIsoIndex{190509, "tm"}, + CountryToIsoIndex{190522, "tm"}, + CountryToIsoIndex{190538, "tc"}, + CountryToIsoIndex{190571, "tk"}, + CountryToIsoIndex{190577, "tm"}, + CountryToIsoIndex{190591, "ta"}, + CountryToIsoIndex{190612, "tm"}, + CountryToIsoIndex{190629, "gb"}, + CountryToIsoIndex{190643, "tr"}, + CountryToIsoIndex{190650, "tm"}, + CountryToIsoIndex{190667, "tm"}, + CountryToIsoIndex{190683, "tm"}, + CountryToIsoIndex{190701, "tr"}, + CountryToIsoIndex{190710, "tl"}, + CountryToIsoIndex{190723, "tn"}, + CountryToIsoIndex{190732, "tn"}, + CountryToIsoIndex{190741, "tn"}, + CountryToIsoIndex{190751, "tn"}, + CountryToIsoIndex{190757, "tn"}, + CountryToIsoIndex{190765, "tn"}, + CountryToIsoIndex{190773, "tn"}, + CountryToIsoIndex{190782, "tn"}, + CountryToIsoIndex{190791, "tn"}, + CountryToIsoIndex{190801, "tn"}, + CountryToIsoIndex{190809, "tn"}, + CountryToIsoIndex{190817, "tn"}, + CountryToIsoIndex{190826, "tn"}, + CountryToIsoIndex{190836, "tn"}, + CountryToIsoIndex{190842, "tn"}, + CountryToIsoIndex{190850, "tn"}, + CountryToIsoIndex{190858, "tn"}, + CountryToIsoIndex{190873, "tn"}, + CountryToIsoIndex{190882, "tn"}, + CountryToIsoIndex{190890, "tn"}, + CountryToIsoIndex{190899, "tn"}, + CountryToIsoIndex{190907, "tn"}, + CountryToIsoIndex{190916, "tn"}, + CountryToIsoIndex{190925, "tn"}, + CountryToIsoIndex{190934, "tn"}, + CountryToIsoIndex{190943, "tn"}, + CountryToIsoIndex{190951, "tn"}, + CountryToIsoIndex{190959, "tn"}, + CountryToIsoIndex{190967, "tn"}, + CountryToIsoIndex{190976, "tn"}, + CountryToIsoIndex{190983, "tn"}, + CountryToIsoIndex{190991, "tn"}, + CountryToIsoIndex{191000, "tn"}, + CountryToIsoIndex{191008, "tn"}, + CountryToIsoIndex{191017, "tn"}, + CountryToIsoIndex{191025, "tn"}, + CountryToIsoIndex{191034, "tn"}, + CountryToIsoIndex{191039, "tn"}, + CountryToIsoIndex{191045, "tn"}, + CountryToIsoIndex{191053, "tn"}, + CountryToIsoIndex{191062, "tn"}, + CountryToIsoIndex{191071, "tn"}, + CountryToIsoIndex{191080, "tn"}, + CountryToIsoIndex{191089, "tn"}, + CountryToIsoIndex{191098, "tr"}, + CountryToIsoIndex{191106, "tr"}, + CountryToIsoIndex{191114, "tr"}, + CountryToIsoIndex{191121, "tr"}, + CountryToIsoIndex{191129, "tr"}, + CountryToIsoIndex{191136, "tm"}, + CountryToIsoIndex{191150, "tm"}, + CountryToIsoIndex{191165, "tm"}, + CountryToIsoIndex{191180, "tr"}, + CountryToIsoIndex{191188, "tr"}, + CountryToIsoIndex{191195, "tc"}, + CountryToIsoIndex{191216, "tm"}, + CountryToIsoIndex{191233, "tt"}, + CountryToIsoIndex{191254, "tt"}, + CountryToIsoIndex{191275, "tt"}, + CountryToIsoIndex{191300, "tt"}, + CountryToIsoIndex{191320, "tc"}, + CountryToIsoIndex{191344, "tc"}, + CountryToIsoIndex{191368, "tr"}, + CountryToIsoIndex{191378, "tr"}, + CountryToIsoIndex{191387, "tr"}, + CountryToIsoIndex{191394, "tr"}, + CountryToIsoIndex{191400, "tr"}, + CountryToIsoIndex{191407, "tr"}, + CountryToIsoIndex{191415, "tr"}, + CountryToIsoIndex{191422, "tr"}, + CountryToIsoIndex{191430, "tr"}, + CountryToIsoIndex{191438, "tm"}, + CountryToIsoIndex{191452, "tc"}, + CountryToIsoIndex{191479, "tr"}, + CountryToIsoIndex{191487, "tc"}, + CountryToIsoIndex{191515, "tr"}, + CountryToIsoIndex{191524, "tr"}, + CountryToIsoIndex{191531, "tm"}, + CountryToIsoIndex{191544, "tm"}, + CountryToIsoIndex{191557, "tm"}, + CountryToIsoIndex{191569, "tm"}, + CountryToIsoIndex{191585, "tm"}, + CountryToIsoIndex{191597, "tm"}, + CountryToIsoIndex{191611, "tm"}, + CountryToIsoIndex{191625, "tm"}, + CountryToIsoIndex{191638, "tm"}, + CountryToIsoIndex{191652, "tm"}, + CountryToIsoIndex{191666, "tm"}, + CountryToIsoIndex{191680, "tm"}, + CountryToIsoIndex{191695, "tm"}, + CountryToIsoIndex{191709, "tm"}, + CountryToIsoIndex{191720, "tm"}, + CountryToIsoIndex{191734, "tm"}, + CountryToIsoIndex{191746, "tm"}, + CountryToIsoIndex{191762, "tm"}, + CountryToIsoIndex{191777, "tr"}, + CountryToIsoIndex{191787, "tr"}, + CountryToIsoIndex{191797, "tc"}, + CountryToIsoIndex{191820, "tc"}, + CountryToIsoIndex{191835, "tc"}, + CountryToIsoIndex{191855, "tc"}, + CountryToIsoIndex{191880, "tc"}, + CountryToIsoIndex{191904, "tc"}, + CountryToIsoIndex{191919, "tc"}, + CountryToIsoIndex{191935, "tc"}, + CountryToIsoIndex{191958, "tc"}, + CountryToIsoIndex{191982, "tc"}, + CountryToIsoIndex{192007, "tc"}, + CountryToIsoIndex{192032, "tc"}, + CountryToIsoIndex{192055, "tc"}, + CountryToIsoIndex{192079, "tc"}, + CountryToIsoIndex{192104, "tc"}, + CountryToIsoIndex{192129, "tc"}, + CountryToIsoIndex{192152, "tc"}, + CountryToIsoIndex{192178, "tc"}, + CountryToIsoIndex{192202, "tc"}, + CountryToIsoIndex{192224, "tc"}, + CountryToIsoIndex{192248, "tc"}, + CountryToIsoIndex{192271, "tc"}, + CountryToIsoIndex{192294, "tc"}, + CountryToIsoIndex{192317, "tc"}, + CountryToIsoIndex{192340, "tc"}, + CountryToIsoIndex{192364, "tc"}, + CountryToIsoIndex{192388, "tc"}, + CountryToIsoIndex{192415, "tr"}, + CountryToIsoIndex{192423, "tm"}, + CountryToIsoIndex{192437, "tm"}, + CountryToIsoIndex{192452, "tm"}, + CountryToIsoIndex{192468, "tr"}, + CountryToIsoIndex{192475, "tr"}, + CountryToIsoIndex{192482, "tr"}, + CountryToIsoIndex{192491, "tr"}, + CountryToIsoIndex{192497, "tm"}, + CountryToIsoIndex{192513, "tr"}, + CountryToIsoIndex{192521, "tr"}, + CountryToIsoIndex{192529, "tr"}, + CountryToIsoIndex{192538, "tr"}, + CountryToIsoIndex{192545, "tm"}, + CountryToIsoIndex{192562, "tm"}, + CountryToIsoIndex{192578, "tm"}, + CountryToIsoIndex{192595, "tr"}, + CountryToIsoIndex{192604, "tm"}, + CountryToIsoIndex{192621, "tr"}, + CountryToIsoIndex{192630, "tr"}, + CountryToIsoIndex{192639, "tr"}, + CountryToIsoIndex{192648, "tm"}, + CountryToIsoIndex{192670, "tv"}, + CountryToIsoIndex{192677, "tv"}, + CountryToIsoIndex{192684, "tv"}, + CountryToIsoIndex{192698, "tv"}, + CountryToIsoIndex{192706, "tv"}, + CountryToIsoIndex{192713, "tv"}, + CountryToIsoIndex{192722, "tv"}, + CountryToIsoIndex{192730, "tv"}, + CountryToIsoIndex{192737, "tv"}, + CountryToIsoIndex{192744, "tv"}, + CountryToIsoIndex{192752, "tk"}, + CountryToIsoIndex{192763, "tv"}, + CountryToIsoIndex{192773, "to"}, + CountryToIsoIndex{192781, "tr"}, + CountryToIsoIndex{192787, "td"}, + CountryToIsoIndex{192792, "td"}, + CountryToIsoIndex{192798, "cz"}, + CountryToIsoIndex{192805, "cz"}, + CountryToIsoIndex{192825, "cl"}, + CountryToIsoIndex{192831, "cn"}, + CountryToIsoIndex{192837, "cz"}, + CountryToIsoIndex{192846, "cz"}, + CountryToIsoIndex{192854, "tr"}, + CountryToIsoIndex{192861, "tr"}, + CountryToIsoIndex{192869, "tr"}, + CountryToIsoIndex{192878, "de"}, + CountryToIsoIndex{192887, "de"}, + CountryToIsoIndex{192897, "td"}, + CountryToIsoIndex{192904, "tz"}, + CountryToIsoIndex{192917, "tj"}, + CountryToIsoIndex{192936, "tj"}, + CountryToIsoIndex{192951, "tz"}, + CountryToIsoIndex{192963, "tw"}, + CountryToIsoIndex{192972, "tj"}, + CountryToIsoIndex{192988, "tj"}, + CountryToIsoIndex{193003, "th"}, + CountryToIsoIndex{193013, "tw"}, + CountryToIsoIndex{193023, "es"}, + CountryToIsoIndex{193036, "eh"}, + CountryToIsoIndex{193048, "tj"}, + CountryToIsoIndex{193060, "dk"}, + CountryToIsoIndex{193070, "nc"}, + CountryToIsoIndex{193088, "nz"}, + CountryToIsoIndex{193105, "tt"}, + CountryToIsoIndex{193128, "cz"}, + CountryToIsoIndex{193138, "tl"}, + CountryToIsoIndex{193156, "tl"}, + CountryToIsoIndex{193171, "tl"}, + CountryToIsoIndex{193184, "tl"}, + CountryToIsoIndex{193199, "tg"}, + CountryToIsoIndex{193205, "tk"}, + CountryToIsoIndex{193216, "tk"}, + CountryToIsoIndex{193225, "tg"}, + CountryToIsoIndex{193231, "tg"}, + CountryToIsoIndex{193238, "tk"}, + CountryToIsoIndex{193247, "tg"}, + CountryToIsoIndex{193254, "to"}, + CountryToIsoIndex{193262, "tr"}, + CountryToIsoIndex{193270, "tc"}, + CountryToIsoIndex{193297, "tc"}, + CountryToIsoIndex{193323, "tr"}, + CountryToIsoIndex{193338, "tn"}, + CountryToIsoIndex{193349, "tn"}, + CountryToIsoIndex{193360, "tm"}, + CountryToIsoIndex{193377, "tr"}, + CountryToIsoIndex{193386, "tv"}, + CountryToIsoIndex{193396, "tc"}, + CountryToIsoIndex{193414, "dm"}, + CountryToIsoIndex{193426, "tn"}, + CountryToIsoIndex{193433, "tn"}, + CountryToIsoIndex{193440, "tm"}, + CountryToIsoIndex{193454, "tv"}, + CountryToIsoIndex{193463, "tr"}, + CountryToIsoIndex{193472, "tr"}, + CountryToIsoIndex{193479, "tr"}, + CountryToIsoIndex{193487, "tr"}, + CountryToIsoIndex{193496, "tr"}, + CountryToIsoIndex{193506, "tr"}, + CountryToIsoIndex{193516, "tm"}, + CountryToIsoIndex{193530, "tm"}, + CountryToIsoIndex{193546, "tm"}, + CountryToIsoIndex{193561, "tv"}, + CountryToIsoIndex{193570, "de"}, + CountryToIsoIndex{193584, "de"}, + CountryToIsoIndex{193594, "th"}, + CountryToIsoIndex{193605, "td"}, + CountryToIsoIndex{193611, "tc"}, + CountryToIsoIndex{193638, "td"}, + CountryToIsoIndex{193645, "td"}, + CountryToIsoIndex{193651, "cz"}, + CountryToIsoIndex{193659, "cz"}, + CountryToIsoIndex{193668, "cz"}, + CountryToIsoIndex{193686, "cz"}, + CountryToIsoIndex{193694, "cz"}, + CountryToIsoIndex{193703, "cl"}, + CountryToIsoIndex{193711, "cl"}, + CountryToIsoIndex{193718, "tm"}, + CountryToIsoIndex{193734, "tv"}, + CountryToIsoIndex{193742, "to"}, + CountryToIsoIndex{193749, "to"}, + CountryToIsoIndex{193757, "to"}, + CountryToIsoIndex{193764, "to"}, + CountryToIsoIndex{193773, "tg"}, + CountryToIsoIndex{193784, "to"}, + CountryToIsoIndex{193794, "tr"}, + CountryToIsoIndex{193806, "tt"}, + CountryToIsoIndex{193828, "tr"}, + CountryToIsoIndex{193841, "tm"}, + CountryToIsoIndex{193861, "tm"}, + CountryToIsoIndex{193875, "tc"}, + CountryToIsoIndex{193913, "th"}, + CountryToIsoIndex{193920, "tt"}, + CountryToIsoIndex{193941, "tw"}, + CountryToIsoIndex{193949, "tr"}, + CountryToIsoIndex{193957, "rw"}, + CountryToIsoIndex{193966, "vi"}, + CountryToIsoIndex{193994, "gb"}, + CountryToIsoIndex{193999, "us"}, + CountryToIsoIndex{194004, "um"}, + CountryToIsoIndex{194045, "um"}, + CountryToIsoIndex{194067, "vi"}, + CountryToIsoIndex{194087, "vi"}, + CountryToIsoIndex{194120, "um"}, + CountryToIsoIndex{194151, "vi"}, + CountryToIsoIndex{194198, "ir"}, + CountryToIsoIndex{194206, "ir"}, + CountryToIsoIndex{194213, "al"}, + CountryToIsoIndex{194222, "wf"}, + CountryToIsoIndex{194237, "wf"}, + CountryToIsoIndex{194256, "ad"}, + CountryToIsoIndex{194264, "ie"}, + CountryToIsoIndex{194274, "az"}, + CountryToIsoIndex{194285, "fr"}, + CountryToIsoIndex{194294, "be"}, + CountryToIsoIndex{194303, "be"}, + CountryToIsoIndex{194312, "be"}, + CountryToIsoIndex{194322, "bj"}, + CountryToIsoIndex{194329, "be"}, + CountryToIsoIndex{194339, "de"}, + CountryToIsoIndex{194347, "fr"}, + CountryToIsoIndex{194358, "ug"}, + CountryToIsoIndex{194367, "gr"}, + CountryToIsoIndex{194377, "in"}, + CountryToIsoIndex{194386, "nl"}, + CountryToIsoIndex{194397, "mg"}, + CountryToIsoIndex{194405, "bi"}, + CountryToIsoIndex{194414, "ru"}, + CountryToIsoIndex{194424, "cn"}, + CountryToIsoIndex{194434, "ch"}, + CountryToIsoIndex{194444, "it"}, + CountryToIsoIndex{194456, "jp"}, + CountryToIsoIndex{194466, "gb"}, + CountryToIsoIndex{194478, "td"}, + CountryToIsoIndex{194485, "cz"}, + CountryToIsoIndex{194492, "cl"}, + CountryToIsoIndex{194499, "cn"}, + CountryToIsoIndex{194506, "ua"}, + CountryToIsoIndex{194514, "ua"}, + CountryToIsoIndex{194522, "ua"}, + CountryToIsoIndex{194530, "ua"}, + CountryToIsoIndex{194539, "ua"}, + CountryToIsoIndex{194548, "ua"}, + CountryToIsoIndex{194557, "us"}, + CountryToIsoIndex{194561, "um"}, + CountryToIsoIndex{194581, "dk"}, + CountryToIsoIndex{194591, "uz"}, + CountryToIsoIndex{194606, "dm"}, + CountryToIsoIndex{194616, "de"}, + CountryToIsoIndex{194627, "fr"}, + CountryToIsoIndex{194636, "fr"}, + CountryToIsoIndex{194645, "gf"}, + CountryToIsoIndex{194663, "pf"}, + CountryToIsoIndex{194682, "fr"}, + CountryToIsoIndex{194692, "fj"}, + CountryToIsoIndex{194698, "ph"}, + CountryToIsoIndex{194708, "ph"}, + CountryToIsoIndex{194720, "fi"}, + CountryToIsoIndex{194726, "af"}, + CountryToIsoIndex{194737, "fi"}, + CountryToIsoIndex{194745, "ug"}, + CountryToIsoIndex{194753, "ga"}, + CountryToIsoIndex{194761, "gm"}, + CountryToIsoIndex{194769, "gh"}, + CountryToIsoIndex{194775, "ug"}, + CountryToIsoIndex{194782, "ug"}, + CountryToIsoIndex{194796, "ug"}, + CountryToIsoIndex{194804, "ug"}, + CountryToIsoIndex{194811, "ug"}, + CountryToIsoIndex{194819, "ug"}, + CountryToIsoIndex{194828, "ug"}, + CountryToIsoIndex{194836, "gr"}, + CountryToIsoIndex{194843, "gr"}, + CountryToIsoIndex{194852, "gn"}, + CountryToIsoIndex{194858, "gw"}, + CountryToIsoIndex{194869, "gr"}, + CountryToIsoIndex{194877, "gr"}, + CountryToIsoIndex{194886, "gd"}, + CountryToIsoIndex{194895, "gl"}, + CountryToIsoIndex{194906, "gy"}, + CountryToIsoIndex{194914, "gp"}, + CountryToIsoIndex{194925, "gu"}, + CountryToIsoIndex{194931, "gt"}, + CountryToIsoIndex{194942, "ug"}, + CountryToIsoIndex{194950, "et"}, + CountryToIsoIndex{194959, "ht"}, + CountryToIsoIndex{194966, "in"}, + CountryToIsoIndex{194975, "es"}, + CountryToIsoIndex{194985, "nl"}, + CountryToIsoIndex{194995, "nl"}, + CountryToIsoIndex{195004, "bq"}, + CountryToIsoIndex{195026, "hn"}, + CountryToIsoIndex{195037, "hu"}, + CountryToIsoIndex{195047, "gb"}, + CountryToIsoIndex{195056, "gb"}, + CountryToIsoIndex{195067, "gb"}, + CountryToIsoIndex{195077, "il"}, + CountryToIsoIndex{195086, "jm"}, + CountryToIsoIndex{195095, "ug"}, + CountryToIsoIndex{195102, "jp"}, + CountryToIsoIndex{195110, "ae"}, + CountryToIsoIndex{195137, "gb"}, + CountryToIsoIndex{195160, "de"}, + CountryToIsoIndex{195170, "de"}, + CountryToIsoIndex{195179, "gi"}, + CountryToIsoIndex{195189, "dj"}, + CountryToIsoIndex{195197, "tj"}, + CountryToIsoIndex{195208, "ge"}, + CountryToIsoIndex{195215, "gb"}, + CountryToIsoIndex{195218, "kh"}, + CountryToIsoIndex{195228, "ca"}, + CountryToIsoIndex{195236, "ug"}, + CountryToIsoIndex{195243, "qa"}, + CountryToIsoIndex{195251, "kz"}, + CountryToIsoIndex{195264, "ke"}, + CountryToIsoIndex{195271, "ua"}, + CountryToIsoIndex{195279, "ua"}, + CountryToIsoIndex{195291, "ps"}, + CountryToIsoIndex{195342, "ps"}, + CountryToIsoIndex{195393, "ua"}, + CountryToIsoIndex{195402, "ua"}, + CountryToIsoIndex{195410, "ci"}, + CountryToIsoIndex{195418, "co"}, + CountryToIsoIndex{195428, "km"}, + CountryToIsoIndex{195436, "cg"}, + CountryToIsoIndex{195443, "hr"}, + CountryToIsoIndex{195452, "kp"}, + CountryToIsoIndex{195469, "kr"}, + CountryToIsoIndex{195483, "ua"}, + CountryToIsoIndex{195492, "ua"}, + CountryToIsoIndex{195499, "ua"}, + CountryToIsoIndex{195507, "ua"}, + CountryToIsoIndex{195515, "ua"}, + CountryToIsoIndex{195530, "ua"}, + CountryToIsoIndex{195538, "ua"}, + CountryToIsoIndex{195547, "ua"}, + CountryToIsoIndex{195555, "ua"}, + CountryToIsoIndex{195564, "ua"}, + CountryToIsoIndex{195572, "ua"}, + CountryToIsoIndex{195580, "ua"}, + CountryToIsoIndex{195586, "ua"}, + CountryToIsoIndex{195594, "ua"}, + CountryToIsoIndex{195601, "ua"}, + CountryToIsoIndex{195609, "ua"}, + CountryToIsoIndex{195616, "ua"}, + CountryToIsoIndex{195622, "ua"}, + CountryToIsoIndex{195629, "ua"}, + CountryToIsoIndex{195638, "ua"}, + CountryToIsoIndex{195646, "ua"}, + CountryToIsoIndex{195655, "ua"}, + CountryToIsoIndex{195662, "cu"}, + CountryToIsoIndex{195668, "cy"}, + CountryToIsoIndex{195677, "ua"}, + CountryToIsoIndex{195686, "ug"}, + CountryToIsoIndex{195694, "ua"}, + CountryToIsoIndex{195705, "ua"}, + CountryToIsoIndex{195715, "lv"}, + CountryToIsoIndex{195724, "lb"}, + CountryToIsoIndex{195734, "pt"}, + CountryToIsoIndex{195740, "ls"}, + CountryToIsoIndex{195748, "lr"}, + CountryToIsoIndex{195757, "ly"}, + CountryToIsoIndex{195764, "qo"}, + CountryToIsoIndex{195773, "io"}, + CountryToIsoIndex{195818, "ps"}, + CountryToIsoIndex{195863, "uy"}, + CountryToIsoIndex{195871, "uy"}, + CountryToIsoIndex{195880, "uy"}, + CountryToIsoIndex{195889, "ro"}, + CountryToIsoIndex{195898, "ru"}, + CountryToIsoIndex{195904, "ru"}, + CountryToIsoIndex{195911, "io"}, + CountryToIsoIndex{195953, "rw"}, + CountryToIsoIndex{195963, "mw"}, + CountryToIsoIndex{195971, "me"}, + CountryToIsoIndex{195981, "us"}, + CountryToIsoIndex{195991, "mk"}, + CountryToIsoIndex{196002, "eg"}, + CountryToIsoIndex{196010, "om"}, + CountryToIsoIndex{196016, "om"}, + CountryToIsoIndex{196022, "mz"}, + CountryToIsoIndex{196033, "va"}, + CountryToIsoIndex{196052, "om"}, + CountryToIsoIndex{196058, "id"}, + CountryToIsoIndex{196068, "ad"}, + CountryToIsoIndex{196075, "ug"}, + CountryToIsoIndex{196085, "hu"}, + CountryToIsoIndex{196092, "hu"}, + CountryToIsoIndex{196099, "hu"}, + CountryToIsoIndex{196107, "hu"}, + CountryToIsoIndex{196114, "hu"}, + CountryToIsoIndex{196122, "hu"}, + CountryToIsoIndex{196129, "hu"}, + CountryToIsoIndex{196138, "ai"}, + CountryToIsoIndex{196145, "hu"}, + CountryToIsoIndex{196152, "hu"}, + CountryToIsoIndex{196159, "ao"}, + CountryToIsoIndex{196166, "hu"}, + CountryToIsoIndex{196179, "hu"}, + CountryToIsoIndex{196186, "hu"}, + CountryToIsoIndex{196196, "ae"}, + CountryToIsoIndex{196212, "ne"}, + CountryToIsoIndex{196220, "ng"}, + CountryToIsoIndex{196229, "ae"}, + CountryToIsoIndex{196250, "ae"}, + CountryToIsoIndex{196278, "gb"}, + CountryToIsoIndex{196293, "gb"}, + CountryToIsoIndex{196315, "us"}, + CountryToIsoIndex{196329, "hu"}, + CountryToIsoIndex{196336, "hu"}, + CountryToIsoIndex{196343, "no"}, + CountryToIsoIndex{196350, "ag"}, + CountryToIsoIndex{196367, "gb"}, + CountryToIsoIndex{196388, "ae"}, + CountryToIsoIndex{196418, "wf"}, + CountryToIsoIndex{196434, "wf"}, + CountryToIsoIndex{196451, "wf"}, + CountryToIsoIndex{196469, "wf"}, + CountryToIsoIndex{196486, "om"}, + CountryToIsoIndex{196493, "pk"}, + CountryToIsoIndex{196504, "pa"}, + CountryToIsoIndex{196512, "pg"}, + CountryToIsoIndex{196519, "pe"}, + CountryToIsoIndex{196526, "pn"}, + CountryToIsoIndex{196537, "pl"}, + CountryToIsoIndex{196546, "pr"}, + CountryToIsoIndex{196557, "ug"}, + CountryToIsoIndex{196564, "uy"}, + CountryToIsoIndex{196571, "jo"}, + CountryToIsoIndex{196577, "pt"}, + CountryToIsoIndex{196583, "er"}, + CountryToIsoIndex{196592, "re"}, + CountryToIsoIndex{196603, "ro"}, + CountryToIsoIndex{196612, "uy"}, + CountryToIsoIndex{196621, "uy"}, + CountryToIsoIndex{196629, "uy"}, + CountryToIsoIndex{196635, "uy"}, + CountryToIsoIndex{196643, "uy"}, + CountryToIsoIndex{196652, "uy"}, + CountryToIsoIndex{196662, "uy"}, + CountryToIsoIndex{196670, "uy"}, + CountryToIsoIndex{196678, "uy"}, + CountryToIsoIndex{196691, "uy"}, + CountryToIsoIndex{196701, "uy"}, + CountryToIsoIndex{196710, "uy"}, + CountryToIsoIndex{196720, "uy"}, + CountryToIsoIndex{196729, "uy"}, + CountryToIsoIndex{196737, "uy"}, + CountryToIsoIndex{196746, "uy"}, + CountryToIsoIndex{196754, "uy"}, + CountryToIsoIndex{196763, "uy"}, + CountryToIsoIndex{196772, "uy"}, + CountryToIsoIndex{196782, "uy"}, + CountryToIsoIndex{196790, "uy"}, + CountryToIsoIndex{196798, "uy"}, + CountryToIsoIndex{196806, "uy"}, + CountryToIsoIndex{196814, "uy"}, + CountryToIsoIndex{196823, "uy"}, + CountryToIsoIndex{196832, "uy"}, + CountryToIsoIndex{196842, "uy"}, + CountryToIsoIndex{196850, "uy"}, + CountryToIsoIndex{196860, "bi"}, + CountryToIsoIndex{196867, "uy"}, + CountryToIsoIndex{196875, "ru"}, + CountryToIsoIndex{196881, "ru"}, + CountryToIsoIndex{196888, "rw"}, + CountryToIsoIndex{196896, "ru"}, + CountryToIsoIndex{196904, "jo"}, + CountryToIsoIndex{196912, "us"}, + CountryToIsoIndex{196915, "um"}, + CountryToIsoIndex{196935, "vi"}, + CountryToIsoIndex{196953, "us"}, + CountryToIsoIndex{196957, "vi"}, + CountryToIsoIndex{196974, "us"}, + CountryToIsoIndex{196985, "um"}, + CountryToIsoIndex{197002, "sv"}, + CountryToIsoIndex{197012, "sm"}, + CountryToIsoIndex{197022, "ws"}, + CountryToIsoIndex{197029, "as"}, + CountryToIsoIndex{197048, "sh"}, + CountryToIsoIndex{197061, "kn"}, + CountryToIsoIndex{197082, "lc"}, + CountryToIsoIndex{197094, "pm"}, + CountryToIsoIndex{197118, "vc"}, + CountryToIsoIndex{197145, "st"}, + CountryToIsoIndex{197167, "um"}, + CountryToIsoIndex{197187, "um"}, + CountryToIsoIndex{197203, "sa"}, + CountryToIsoIndex{197210, "uz"}, + CountryToIsoIndex{197222, "uz"}, + CountryToIsoIndex{197234, "uz"}, + CountryToIsoIndex{197245, "uz"}, + CountryToIsoIndex{197257, "uz"}, + CountryToIsoIndex{197269, "uz"}, + CountryToIsoIndex{197282, "uz"}, + CountryToIsoIndex{197295, "uz"}, + CountryToIsoIndex{197308, "uz"}, + CountryToIsoIndex{197324, "lu"}, + CountryToIsoIndex{197333, "sn"}, + CountryToIsoIndex{197343, "sc"}, + CountryToIsoIndex{197355, "li"}, + CountryToIsoIndex{197365, "uz"}, + CountryToIsoIndex{197379, "uz"}, + CountryToIsoIndex{197395, "sg"}, + CountryToIsoIndex{197405, "sy"}, + CountryToIsoIndex{197412, "lk"}, + CountryToIsoIndex{197423, "sk"}, + CountryToIsoIndex{197433, "si"}, + CountryToIsoIndex{197443, "so"}, + CountryToIsoIndex{197452, "um"}, + CountryToIsoIndex{197478, "vi"}, + CountryToIsoIndex{197501, "us"}, + CountryToIsoIndex{197507, "au"}, + CountryToIsoIndex{197515, "au"}, + CountryToIsoIndex{197524, "at"}, + CountryToIsoIndex{197532, "at"}, + CountryToIsoIndex{197541, "sd"}, + CountryToIsoIndex{197549, "uz"}, + CountryToIsoIndex{197564, "sr"}, + CountryToIsoIndex{197574, "sz"}, + CountryToIsoIndex{197581, "sz"}, + CountryToIsoIndex{197588, "se"}, + CountryToIsoIndex{197595, "ch"}, + CountryToIsoIndex{197602, "se"}, + CountryToIsoIndex{197611, "ch"}, + CountryToIsoIndex{197620, "at"}, + CountryToIsoIndex{197633, "au"}, + CountryToIsoIndex{197644, "th"}, + CountryToIsoIndex{197654, "tz"}, + CountryToIsoIndex{197664, "sz"}, + CountryToIsoIndex{197673, "se"}, + CountryToIsoIndex{197681, "ch"}, + CountryToIsoIndex{197690, "tl"}, + CountryToIsoIndex{197706, "tg"}, + CountryToIsoIndex{197712, "tk"}, + CountryToIsoIndex{197721, "to"}, + CountryToIsoIndex{197728, "tt"}, + CountryToIsoIndex{197748, "tr"}, + CountryToIsoIndex{197754, "tr"}, + CountryToIsoIndex{197763, "tr"}, + CountryToIsoIndex{197771, "tn"}, + CountryToIsoIndex{197780, "tr"}, + CountryToIsoIndex{197788, "tm"}, + CountryToIsoIndex{197808, "tm"}, + CountryToIsoIndex{197825, "tr"}, + CountryToIsoIndex{197835, "tv"}, + CountryToIsoIndex{197843, "lt"}, + CountryToIsoIndex{197851, "et"}, + CountryToIsoIndex{197858, "nc"}, + CountryToIsoIndex{197873, "nz"}, + CountryToIsoIndex{197885, "uz"}, + CountryToIsoIndex{197898, "nc"}, + CountryToIsoIndex{197913, "nz"}, + CountryToIsoIndex{197927, "fr"}, + CountryToIsoIndex{197936, "vu"}, + CountryToIsoIndex{197945, "va"}, + CountryToIsoIndex{197955, "ve"}, + CountryToIsoIndex{197966, "vn"}, + CountryToIsoIndex{197977, "ir"}, + CountryToIsoIndex{197985, "wf"}, + CountryToIsoIndex{198002, "gb"}, + CountryToIsoIndex{198013, "ye"}, + CountryToIsoIndex{198021, "jo"}, + CountryToIsoIndex{198030, "qo"}, + CountryToIsoIndex{198045, "zm"}, + CountryToIsoIndex{198053, "qo"}, + CountryToIsoIndex{198067, "uz"}, + CountryToIsoIndex{198078, "uz"}, + CountryToIsoIndex{198089, "uz"}, + CountryToIsoIndex{198101, "uz"}, + CountryToIsoIndex{198113, "uz"}, + CountryToIsoIndex{198124, "uz"}, + CountryToIsoIndex{198142, "uz"}, + CountryToIsoIndex{198155, "uz"}, + CountryToIsoIndex{198167, "uz"}, + CountryToIsoIndex{198179, "uz"}, + CountryToIsoIndex{198191, "uz"}, + CountryToIsoIndex{198203, "uz"}, + CountryToIsoIndex{198216, "uz"}, + CountryToIsoIndex{198229, "uz"}, + CountryToIsoIndex{198238, "uz"}, + CountryToIsoIndex{198251, "uz"}, + CountryToIsoIndex{198264, "uz"}, + CountryToIsoIndex{198276, "uz"}, + CountryToIsoIndex{198290, "uz"}, + CountryToIsoIndex{198304, "uz"}, + CountryToIsoIndex{198316, "uz"}, + CountryToIsoIndex{198330, "uz"}, + CountryToIsoIndex{198343, "uz"}, + CountryToIsoIndex{198357, "zw"}, + CountryToIsoIndex{198367, "uz"}, + CountryToIsoIndex{198381, "uz"}, + CountryToIsoIndex{198393, "uz"}, + CountryToIsoIndex{198408, "uz"}, + CountryToIsoIndex{198422, "nc"}, + CountryToIsoIndex{198440, "nz"}, + CountryToIsoIndex{198456, "hu"}, + CountryToIsoIndex{198463, "ug"}, + CountryToIsoIndex{198473, "ca"}, + CountryToIsoIndex{198497, "ug"}, + CountryToIsoIndex{198505, "va"}, + CountryToIsoIndex{198520, "wf"}, + CountryToIsoIndex{198541, "eh"}, + CountryToIsoIndex{198557, "by"}, + CountryToIsoIndex{198567, "wf"}, + CountryToIsoIndex{198582, "wf"}, + CountryToIsoIndex{198600, "by"}, + CountryToIsoIndex{198615, "vu"}, + CountryToIsoIndex{198623, "vu"}, + CountryToIsoIndex{198634, "qo"}, + CountryToIsoIndex{198651, "qo"}, + CountryToIsoIndex{198678, "vu"}, + CountryToIsoIndex{198687, "vu"}, + CountryToIsoIndex{198695, "vu"}, + CountryToIsoIndex{198710, "vu"}, + CountryToIsoIndex{198719, "vu"}, + CountryToIsoIndex{198728, "vu"}, + CountryToIsoIndex{198737, "vu"}, + CountryToIsoIndex{198746, "vu"}, + CountryToIsoIndex{198756, "vu"}, + CountryToIsoIndex{198766, "vu"}, + CountryToIsoIndex{198775, "vu"}, + CountryToIsoIndex{198783, "vu"}, + CountryToIsoIndex{198793, "va"}, + CountryToIsoIndex{198806, "va"}, + CountryToIsoIndex{198820, "va"}, + CountryToIsoIndex{198828, "va"}, + CountryToIsoIndex{198841, "va"}, + CountryToIsoIndex{198853, "va"}, + CountryToIsoIndex{198867, "va"}, + CountryToIsoIndex{198876, "va"}, + CountryToIsoIndex{198885, "va"}, + CountryToIsoIndex{198895, "va"}, + CountryToIsoIndex{198908, "va"}, + CountryToIsoIndex{198916, "va"}, + CountryToIsoIndex{198929, "va"}, + CountryToIsoIndex{198946, "va"}, + CountryToIsoIndex{198955, "va"}, + CountryToIsoIndex{198964, "va"}, + CountryToIsoIndex{198979, "va"}, + CountryToIsoIndex{199005, "va"}, + CountryToIsoIndex{199023, "va"}, + CountryToIsoIndex{199039, "va"}, + CountryToIsoIndex{199051, "va"}, + CountryToIsoIndex{199064, "va"}, + CountryToIsoIndex{199078, "va"}, + CountryToIsoIndex{199087, "va"}, + CountryToIsoIndex{199106, "va"}, + CountryToIsoIndex{199115, "va"}, + CountryToIsoIndex{199131, "va"}, + CountryToIsoIndex{199151, "va"}, + CountryToIsoIndex{199159, "va"}, + CountryToIsoIndex{199170, "va"}, + CountryToIsoIndex{199179, "va"}, + CountryToIsoIndex{199189, "va"}, + CountryToIsoIndex{199199, "va"}, + CountryToIsoIndex{199211, "ve"}, + CountryToIsoIndex{199223, "gb"}, + CountryToIsoIndex{199240, "ve"}, + CountryToIsoIndex{199250, "ve"}, + CountryToIsoIndex{199261, "ve"}, + CountryToIsoIndex{199274, "ru"}, + CountryToIsoIndex{199282, "ve"}, + CountryToIsoIndex{199292, "ve"}, + CountryToIsoIndex{199303, "ve"}, + CountryToIsoIndex{199314, "ve"}, + CountryToIsoIndex{199325, "ve"}, + CountryToIsoIndex{199335, "ve"}, + CountryToIsoIndex{199352, "ve"}, + CountryToIsoIndex{199363, "ve"}, + CountryToIsoIndex{199373, "ve"}, + CountryToIsoIndex{199385, "ve"}, + CountryToIsoIndex{199396, "ve"}, + CountryToIsoIndex{199407, "ve"}, + CountryToIsoIndex{199418, "ve"}, + CountryToIsoIndex{199430, "ve"}, + CountryToIsoIndex{199441, "ve"}, + CountryToIsoIndex{199452, "ve"}, + CountryToIsoIndex{199463, "hu"}, + CountryToIsoIndex{199472, "hu"}, + CountryToIsoIndex{199481, "ve"}, + CountryToIsoIndex{199490, "ve"}, + CountryToIsoIndex{199499, "ru"}, + CountryToIsoIndex{199508, "ve"}, + CountryToIsoIndex{199519, "ae"}, + CountryToIsoIndex{199547, "us"}, + CountryToIsoIndex{199565, "ae"}, + CountryToIsoIndex{199595, "ae"}, + CountryToIsoIndex{199624, "us"}, + CountryToIsoIndex{199643, "gb"}, + CountryToIsoIndex{199667, "ae"}, + CountryToIsoIndex{199694, "ae"}, + CountryToIsoIndex{199726, "gb"}, + CountryToIsoIndex{199746, "ae"}, + CountryToIsoIndex{199773, "ae"}, + CountryToIsoIndex{199802, "ae"}, + CountryToIsoIndex{199830, "gb"}, + CountryToIsoIndex{199850, "us"}, + CountryToIsoIndex{199878, "us"}, + CountryToIsoIndex{199895, "ae"}, + CountryToIsoIndex{199925, "us"}, + CountryToIsoIndex{199946, "gb"}, + CountryToIsoIndex{199971, "eh"}, + CountryToIsoIndex{199983, "eh"}, + CountryToIsoIndex{199994, "eh"}, + CountryToIsoIndex{200008, "eh"}, + CountryToIsoIndex{200021, "vu"}, + CountryToIsoIndex{200030, "cx"}, + CountryToIsoIndex{200048, "by"}, + CountryToIsoIndex{200066, "vn"}, + CountryToIsoIndex{200076, "vn"}, + CountryToIsoIndex{200086, "vn"}, + CountryToIsoIndex{200098, "vn"}, + CountryToIsoIndex{200107, "vn"}, + CountryToIsoIndex{200115, "vn"}, + CountryToIsoIndex{200130, "vn"}, + CountryToIsoIndex{200140, "vn"}, + CountryToIsoIndex{200149, "vn"}, + CountryToIsoIndex{200159, "vn"}, + CountryToIsoIndex{200168, "vn"}, + CountryToIsoIndex{200176, "vn"}, + CountryToIsoIndex{200185, "vn"}, + CountryToIsoIndex{200194, "vn"}, + CountryToIsoIndex{200205, "by"}, + CountryToIsoIndex{200221, "vc"}, + CountryToIsoIndex{200248, "ve"}, + CountryToIsoIndex{200258, "ve"}, + CountryToIsoIndex{200268, "ee"}, + CountryToIsoIndex{200273, "um"}, + CountryToIsoIndex{200308, "ax"}, + CountryToIsoIndex{200325, "ky"}, + CountryToIsoIndex{200343, "cc"}, + CountryToIsoIndex{200370, "ck"}, + CountryToIsoIndex{200386, "fk"}, + CountryToIsoIndex{200406, "fk"}, + CountryToIsoIndex{200443, "fo"}, + CountryToIsoIndex{200460, "ky"}, + CountryToIsoIndex{200478, "ic"}, + CountryToIsoIndex{200496, "ky"}, + CountryToIsoIndex{200514, "mp"}, + CountryToIsoIndex{200547, "mp"}, + CountryToIsoIndex{200580, "mh"}, + CountryToIsoIndex{200599, "mh"}, + CountryToIsoIndex{200619, "mh"}, + CountryToIsoIndex{200637, "pn"}, + CountryToIsoIndex{200657, "sb"}, + CountryToIsoIndex{200676, "tc"}, + CountryToIsoIndex{200702, "tc"}, + CountryToIsoIndex{200728, "tc"}, + CountryToIsoIndex{200755, "vi"}, + CountryToIsoIndex{200786, "vg"}, + CountryToIsoIndex{200817, "vi"}, + CountryToIsoIndex{200848, "vg"}, + CountryToIsoIndex{200880, "vi"}, + CountryToIsoIndex{200908, "vg"}, + CountryToIsoIndex{200937, "fk"}, + CountryToIsoIndex{200960, "ky"}, + CountryToIsoIndex{200982, "ck"}, + CountryToIsoIndex{201002, "mh"}, + CountryToIsoIndex{201027, "sb"}, + CountryToIsoIndex{201051, "tc"}, + CountryToIsoIndex{201084, "vi"}, + CountryToIsoIndex{201121, "vg"}, + CountryToIsoIndex{201161, "ck"}, + CountryToIsoIndex{201178, "fk"}, + CountryToIsoIndex{201199, "ky"}, + CountryToIsoIndex{201218, "mp"}, + CountryToIsoIndex{201253, "mh"}, + CountryToIsoIndex{201273, "sb"}, + CountryToIsoIndex{201294, "tc"}, + CountryToIsoIndex{201321, "vi"}, + CountryToIsoIndex{201353, "vg"}, + CountryToIsoIndex{201387, "by"}, + CountryToIsoIndex{201399, "vn"}, + CountryToIsoIndex{201408, "vn"}, + CountryToIsoIndex{201420, "vn"}, + CountryToIsoIndex{201431, "vn"}, + CountryToIsoIndex{201442, "vn"}, + CountryToIsoIndex{201454, "vn"}, + CountryToIsoIndex{201464, "vn"}, + CountryToIsoIndex{201473, "vn"}, + CountryToIsoIndex{201485, "vn"}, + CountryToIsoIndex{201494, "vn"}, + CountryToIsoIndex{201503, "vn"}, + CountryToIsoIndex{201514, "vn"}, + CountryToIsoIndex{201522, "vn"}, + CountryToIsoIndex{201531, "vn"}, + CountryToIsoIndex{201540, "gb"}, + CountryToIsoIndex{201543, "qo"}, + CountryToIsoIndex{201562, "de"}, + CountryToIsoIndex{201572, "wf"}, + CountryToIsoIndex{201596, "wf"}, + CountryToIsoIndex{201615, "us"}, + CountryToIsoIndex{201618, "us"}, + CountryToIsoIndex{201622, "vi"}, + CountryToIsoIndex{201644, "nl"}, + CountryToIsoIndex{201659, "bq"}, + CountryToIsoIndex{201681, "sx"}, + CountryToIsoIndex{201709, "nl"}, + CountryToIsoIndex{201728, "ax"}, + CountryToIsoIndex{201743, "vn"}, + CountryToIsoIndex{201754, "vn"}, + CountryToIsoIndex{201762, "vn"}, + CountryToIsoIndex{201772, "tl"}, + CountryToIsoIndex{201786, "vu"}, + CountryToIsoIndex{201797, "vu"}, + CountryToIsoIndex{201809, "va"}, + CountryToIsoIndex{201821, "cx"}, + CountryToIsoIndex{201839, "eh"}, + CountryToIsoIndex{201851, "ve"}, + CountryToIsoIndex{201865, "vn"}, + CountryToIsoIndex{201876, "vn"}, + CountryToIsoIndex{201889, "vn"}, + CountryToIsoIndex{201898, "vn"}, + CountryToIsoIndex{201907, "qo"}, + CountryToIsoIndex{201950, "tl"}, + CountryToIsoIndex{201967, "tl"}, + CountryToIsoIndex{201984, "de"}, + CountryToIsoIndex{201992, "gb"}, + CountryToIsoIndex{202011, "ve"}, + CountryToIsoIndex{202023, "ve"}, + CountryToIsoIndex{202036, "ve"}, + CountryToIsoIndex{202051, "ve"}, + CountryToIsoIndex{202072, "vi"}, + CountryToIsoIndex{202097, "wf"}, + CountryToIsoIndex{202117, "wf"}, + CountryToIsoIndex{202133, "wf"}, + CountryToIsoIndex{202148, "wf"}, + CountryToIsoIndex{202164, "wf"}, + CountryToIsoIndex{202179, "wf"}, + CountryToIsoIndex{202195, "wf"}, + CountryToIsoIndex{202211, "wf"}, + CountryToIsoIndex{202228, "wf"}, + CountryToIsoIndex{202245, "wf"}, + CountryToIsoIndex{202262, "wf"}, + CountryToIsoIndex{202279, "wf"}, + CountryToIsoIndex{202296, "wf"}, + CountryToIsoIndex{202316, "wf"}, + CountryToIsoIndex{202333, "wf"}, + CountryToIsoIndex{202349, "wf"}, + CountryToIsoIndex{202365, "wf"}, + CountryToIsoIndex{202385, "wf"}, + CountryToIsoIndex{202403, "wf"}, + CountryToIsoIndex{202420, "wf"}, + CountryToIsoIndex{202436, "wf"}, + CountryToIsoIndex{202454, "wf"}, + CountryToIsoIndex{202470, "wf"}, + CountryToIsoIndex{202487, "wf"}, + CountryToIsoIndex{202505, "wf"}, + CountryToIsoIndex{202522, "wf"}, + CountryToIsoIndex{202539, "wf"}, + CountryToIsoIndex{202555, "wf"}, + CountryToIsoIndex{202572, "wf"}, + CountryToIsoIndex{202589, "wf"}, + CountryToIsoIndex{202607, "wf"}, + CountryToIsoIndex{202633, "wf"}, + CountryToIsoIndex{202650, "wf"}, + CountryToIsoIndex{202668, "wf"}, + CountryToIsoIndex{202685, "wf"}, + CountryToIsoIndex{202702, "wf"}, + CountryToIsoIndex{202719, "wf"}, + CountryToIsoIndex{202735, "wf"}, + CountryToIsoIndex{202752, "wf"}, + CountryToIsoIndex{202770, "wf"}, + CountryToIsoIndex{202789, "wf"}, + CountryToIsoIndex{202806, "wf"}, + CountryToIsoIndex{202824, "wf"}, + CountryToIsoIndex{202840, "wf"}, + CountryToIsoIndex{202858, "wf"}, + CountryToIsoIndex{202876, "wf"}, + CountryToIsoIndex{202901, "wf"}, + CountryToIsoIndex{202926, "wf"}, + CountryToIsoIndex{202951, "wf"}, + CountryToIsoIndex{202968, "wf"}, + CountryToIsoIndex{202985, "wf"}, + CountryToIsoIndex{203004, "wf"}, + CountryToIsoIndex{203025, "wf"}, + CountryToIsoIndex{203043, "wf"}, + CountryToIsoIndex{203051, "wf"}, + CountryToIsoIndex{203069, "vu"}, + CountryToIsoIndex{203077, "vu"}, + CountryToIsoIndex{203088, "vu"}, + CountryToIsoIndex{203096, "wf"}, + CountryToIsoIndex{203113, "va"}, + CountryToIsoIndex{203121, "va"}, + CountryToIsoIndex{203131, "va"}, + CountryToIsoIndex{203139, "ua"}, + CountryToIsoIndex{203147, "us"}, + CountryToIsoIndex{203151, "cx"}, + CountryToIsoIndex{203167, "by"}, + CountryToIsoIndex{203181, "ve"}, + CountryToIsoIndex{203192, "ve"}, + CountryToIsoIndex{203202, "ve"}, + CountryToIsoIndex{203214, "ve"}, + CountryToIsoIndex{203224, "hu"}, + CountryToIsoIndex{203234, "qo"}, + CountryToIsoIndex{203253, "eh"}, + CountryToIsoIndex{203264, "eh"}, + CountryToIsoIndex{203277, "eh"}, + CountryToIsoIndex{203295, "eh"}, + CountryToIsoIndex{203310, "eh"}, + CountryToIsoIndex{203321, "eh"}, + CountryToIsoIndex{203333, "tl"}, + CountryToIsoIndex{203344, "cx"}, + CountryToIsoIndex{203361, "gb"}, + CountryToIsoIndex{203377, "cx"}, + CountryToIsoIndex{203393, "cx"}, + CountryToIsoIndex{203410, "vn"}, + CountryToIsoIndex{203418, "by"}, + CountryToIsoIndex{203432, "by"}, + CountryToIsoIndex{203446, "io"}, + CountryToIsoIndex{203480, "tf"}, + CountryToIsoIndex{203510, "io"}, + CountryToIsoIndex{203539, "ps"}, + CountryToIsoIndex{203556, "ps"}, + CountryToIsoIndex{203574, "tf"}, + CountryToIsoIndex{203599, "iq"}, + CountryToIsoIndex{203606, "by"}, + CountryToIsoIndex{203618, "by"}, + CountryToIsoIndex{203631, "vn"}, + CountryToIsoIndex{203641, "vn"}, + CountryToIsoIndex{203650, "vn"}, + CountryToIsoIndex{203662, "gb"}, + CountryToIsoIndex{203673, "qo"}, + CountryToIsoIndex{203692, "za"}, + CountryToIsoIndex{203708, "kr"}, + CountryToIsoIndex{203722, "hk"}, + CountryToIsoIndex{203757, "mo"}, + CountryToIsoIndex{203789, "tl"}, + CountryToIsoIndex{203804, "fr"}, + CountryToIsoIndex{203814, "fi"}, + CountryToIsoIndex{203821, "gr"}, + CountryToIsoIndex{203830, "nl"}, + CountryToIsoIndex{203840, "de"}, + CountryToIsoIndex{203851, "pt"}, + CountryToIsoIndex{203858, "ru"}, + CountryToIsoIndex{203865, "uy"}, + CountryToIsoIndex{203875, "ae"}, + CountryToIsoIndex{203894, "uz"}, + CountryToIsoIndex{203910, "ci"}, + CountryToIsoIndex{203938, "bv"}, + CountryToIsoIndex{203952, "cx"}, + CountryToIsoIndex{203977, "im"}, + CountryToIsoIndex{203987, "ac"}, + CountryToIsoIndex{204011, "sh"}, + CountryToIsoIndex{204034, "ax"}, + CountryToIsoIndex{204050, "ck"}, + CountryToIsoIndex{204062, "vi"}, + CountryToIsoIndex{204100, "hm"}, + CountryToIsoIndex{204124, "ic"}, + CountryToIsoIndex{204142, "cc"}, + CountryToIsoIndex{204157, "mh"}, + CountryToIsoIndex{204173, "fo"}, + CountryToIsoIndex{204185, "sb"}, + CountryToIsoIndex{204200, "st"}, + CountryToIsoIndex{204239, "vn"}, + CountryToIsoIndex{204249, "wf"}, + CountryToIsoIndex{204270, "by"}, + CountryToIsoIndex{204285, "eh"}, + CountryToIsoIndex{204298, "by"}, + CountryToIsoIndex{204311, "hk"}, + CountryToIsoIndex{204348, "mo"}, + CountryToIsoIndex{204382, "vn"}, + CountryToIsoIndex{204391, "it"}, + CountryToIsoIndex{204400, "hu"}, + CountryToIsoIndex{204407, "it"}, + CountryToIsoIndex{204415, "ve"}, + CountryToIsoIndex{204428, "jm"}, + CountryToIsoIndex{204436, "jp"}, + CountryToIsoIndex{204443, "ge"}, + CountryToIsoIndex{204450, "ge"}, + CountryToIsoIndex{204458, "hm"}, + CountryToIsoIndex{204485, "jm"}, + CountryToIsoIndex{204495, "je"}, + CountryToIsoIndex{204503, "dj"}, + CountryToIsoIndex{204511, "gs"}, + CountryToIsoIndex{204558, "gi"}, + CountryToIsoIndex{204568, "dj"}, + CountryToIsoIndex{204575, "cl"}, + CountryToIsoIndex{204580, "cl"}, + CountryToIsoIndex{204585, "cn"}, + CountryToIsoIndex{204590, "cy"}, + CountryToIsoIndex{204596, "cy"}, + CountryToIsoIndex{204602, "cn"}, + CountryToIsoIndex{204608, "jo"}, + CountryToIsoIndex{204617, "hr"}, + CountryToIsoIndex{204627, "gr"}, + CountryToIsoIndex{204638, "bs"}, + CountryToIsoIndex{204648, "cd"}, + CountryToIsoIndex{204666, "cg"}, + CountryToIsoIndex{204688, "cg"}, + CountryToIsoIndex{204710, "cd"}, + CountryToIsoIndex{204729, "gb"}, + CountryToIsoIndex{204746, "va"}, + CountryToIsoIndex{204756, "fi"}, + CountryToIsoIndex{204766, "mv"}, + CountryToIsoIndex{204777, "ph"}, + CountryToIsoIndex{204790, "ch"}, + CountryToIsoIndex{204800, "ye"}, + CountryToIsoIndex{204806, "ye"}, + CountryToIsoIndex{204812, "jm"}, + CountryToIsoIndex{204820, "nc"}, + CountryToIsoIndex{204837, "nz"}, + CountryToIsoIndex{204853, "io"}, + CountryToIsoIndex{204886, "jp"}, + CountryToIsoIndex{204895, "jp"}, + CountryToIsoIndex{204902, "qo"}, + CountryToIsoIndex{204916, "ye"}, + CountryToIsoIndex{204922, "ye"}, + CountryToIsoIndex{204935, "ye"}, + CountryToIsoIndex{204942, "ye"}, + CountryToIsoIndex{204949, "ye"}, + CountryToIsoIndex{204956, "ye"}, + CountryToIsoIndex{204963, "ye"}, + CountryToIsoIndex{204971, "ye"}, + CountryToIsoIndex{204980, "ye"}, + CountryToIsoIndex{204989, "nc"}, + CountryToIsoIndex{205005, "nc"}, + CountryToIsoIndex{205020, "nz"}, + CountryToIsoIndex{205033, "nz"}, + CountryToIsoIndex{205048, "ez"}, + CountryToIsoIndex{205058, "us"}, + CountryToIsoIndex{205070, "um"}, + CountryToIsoIndex{205097, "vi"}, + CountryToIsoIndex{205124, "dj"}, + CountryToIsoIndex{205131, "gi"}, + CountryToIsoIndex{205145, "id"}, + CountryToIsoIndex{205156, "iq"}, + CountryToIsoIndex{205164, "ir"}, + CountryToIsoIndex{205172, "il"}, + CountryToIsoIndex{205183, "it"}, + CountryToIsoIndex{205190, "id"}, + CountryToIsoIndex{205201, "ac"}, + CountryToIsoIndex{205216, "bv"}, + CountryToIsoIndex{205228, "cp"}, + CountryToIsoIndex{205244, "hm"}, + CountryToIsoIndex{205276, "im"}, + CountryToIsoIndex{205287, "nf"}, + CountryToIsoIndex{205300, "gg"}, + CountryToIsoIndex{205312, "cx"}, + CountryToIsoIndex{205327, "ky"}, + CountryToIsoIndex{205343, "cc"}, + CountryToIsoIndex{205368, "ck"}, + CountryToIsoIndex{205382, "fo"}, + CountryToIsoIndex{205397, "mp"}, + CountryToIsoIndex{205422, "vg"}, + CountryToIsoIndex{205446, "vi"}, + CountryToIsoIndex{205481, "mh"}, + CountryToIsoIndex{205499, "um"}, + CountryToIsoIndex{205522, "pn"}, + CountryToIsoIndex{205540, "sb"}, + CountryToIsoIndex{205557, "tc"}, + CountryToIsoIndex{205581, "fk"}, + CountryToIsoIndex{205623, "fk"}, + CountryToIsoIndex{205652, "ax"}, + CountryToIsoIndex{205668, "jo"}, + CountryToIsoIndex{205676, "jo"}, + CountryToIsoIndex{205685, "jo"}, + CountryToIsoIndex{205699, "jo"}, + CountryToIsoIndex{205707, "jo"}, + CountryToIsoIndex{205716, "jo"}, + CountryToIsoIndex{205725, "jo"}, + CountryToIsoIndex{205735, "jo"}, + CountryToIsoIndex{205746, "hk"}, + CountryToIsoIndex{205801, "mo"}, + CountryToIsoIndex{205852, "eg"}, + CountryToIsoIndex{205861, "de"}, + CountryToIsoIndex{205871, "ar"}, + CountryToIsoIndex{205883, "it"}, + CountryToIsoIndex{205892, "nl"}, + CountryToIsoIndex{205907, "us"}, + CountryToIsoIndex{205926, "gl"}, + CountryToIsoIndex{205938, "ic"}, + CountryToIsoIndex{205958, "iq"}, + CountryToIsoIndex{205963, "is"}, + CountryToIsoIndex{205970, "is"}, + CountryToIsoIndex{205977, "il"}, + CountryToIsoIndex{205986, "qo"}, + CountryToIsoIndex{205999, "qo"}, + CountryToIsoIndex{206014, "qo"}, + CountryToIsoIndex{206036, "uz"}, + CountryToIsoIndex{206051, "ug"}, + CountryToIsoIndex{206059, "ua"}, + CountryToIsoIndex{206067, "ua"}, + CountryToIsoIndex{206077, "ua"}, + CountryToIsoIndex{206086, "ua"}, + CountryToIsoIndex{206097, "ua"}, + CountryToIsoIndex{206107, "uy"}, + CountryToIsoIndex{206119, "ae"}, + CountryToIsoIndex{206142, "gb"}, + CountryToIsoIndex{206162, "gr"}, + CountryToIsoIndex{206168, "gr"}, + CountryToIsoIndex{206175, "gr"}, + CountryToIsoIndex{206186, "gr"}, + CountryToIsoIndex{206198, "uy"}, + CountryToIsoIndex{206206, "uy"}, + CountryToIsoIndex{206215, "uy"}, + CountryToIsoIndex{206224, "uy"}, + CountryToIsoIndex{206234, "ye"}, + CountryToIsoIndex{206244, "ye"}, + CountryToIsoIndex{206251, "ye"}, + CountryToIsoIndex{206259, "ye"}, + CountryToIsoIndex{206267, "ye"}, + CountryToIsoIndex{206276, "ug"}, + CountryToIsoIndex{206286, "ua"}, + CountryToIsoIndex{206300, "ae"}, + CountryToIsoIndex{206325, "gb"}, + CountryToIsoIndex{206346, "uz"}, + CountryToIsoIndex{206370, "ye"}, + CountryToIsoIndex{206378, "jo"}, + CountryToIsoIndex{206391, "ye"}, + CountryToIsoIndex{206399, "ye"}, + CountryToIsoIndex{206406, "ye"}, + CountryToIsoIndex{206414, "ye"}, + CountryToIsoIndex{206424, "eh"}, + CountryToIsoIndex{206439, "jm"}, + CountryToIsoIndex{206446, "jm"}, + CountryToIsoIndex{206454, "jm"}, + CountryToIsoIndex{206463, "jm"}, + CountryToIsoIndex{206472, "zm"}, + CountryToIsoIndex{206478, "zm"}, + CountryToIsoIndex{206485, "zm"}, + CountryToIsoIndex{206499, "zm"}, + CountryToIsoIndex{206507, "zm"}, + CountryToIsoIndex{206514, "zm"}, + CountryToIsoIndex{206522, "zm"}, + CountryToIsoIndex{206529, "zm"}, + CountryToIsoIndex{206537, "zm"}, + CountryToIsoIndex{206545, "zm"}, + CountryToIsoIndex{206554, "zm"}, + CountryToIsoIndex{206561, "zm"}, + CountryToIsoIndex{206569, "zm"}, + CountryToIsoIndex{206576, "zm"}, + CountryToIsoIndex{206583, "zm"}, + CountryToIsoIndex{206591, "zm"}, + CountryToIsoIndex{206597, "eh"}, + CountryToIsoIndex{206612, "jp"}, + CountryToIsoIndex{206618, "jp"}, + CountryToIsoIndex{206626, "jp"}, + CountryToIsoIndex{206632, "jp"}, + CountryToIsoIndex{206639, "us"}, + CountryToIsoIndex{206643, "us"}, + CountryToIsoIndex{206669, "ae"}, + CountryToIsoIndex{206695, "gb"}, + CountryToIsoIndex{206716, "nz"}, + CountryToIsoIndex{206732, "nz"}, + CountryToIsoIndex{206747, "nz"}, + CountryToIsoIndex{206760, "nz"}, + CountryToIsoIndex{206774, "nz"}, + CountryToIsoIndex{206787, "nz"}, + CountryToIsoIndex{206803, "nz"}, + CountryToIsoIndex{206817, "nz"}, + CountryToIsoIndex{206831, "nz"}, + CountryToIsoIndex{206848, "cv"}, + CountryToIsoIndex{206867, "cv"}, + CountryToIsoIndex{206889, "cv"}, + CountryToIsoIndex{206907, "zw"}, + CountryToIsoIndex{206916, "cf"}, + CountryToIsoIndex{206947, "cf"}, + CountryToIsoIndex{206976, "cf"}, + CountryToIsoIndex{207004, "cf"}, + CountryToIsoIndex{207033, "cf"}, + CountryToIsoIndex{207061, "ge"}, + CountryToIsoIndex{207068, "ge"}, + CountryToIsoIndex{207076, "az"}, + CountryToIsoIndex{207106, "ea"}, + CountryToIsoIndex{207126, "ge"}, + CountryToIsoIndex{207135, "ea"}, + CountryToIsoIndex{207155, "gi"}, + CountryToIsoIndex{207165, "gi"}, + CountryToIsoIndex{207177, "gi"}, + CountryToIsoIndex{207187, "gi"}, + CountryToIsoIndex{207198, "gi"}, + CountryToIsoIndex{207223, "kp"}, + CountryToIsoIndex{207237, "mp"}, + CountryToIsoIndex{207261, "cx"}, + CountryToIsoIndex{207278, "ck"}, + CountryToIsoIndex{207287, "ky"}, + CountryToIsoIndex{207298, "fk"}, + CountryToIsoIndex{207310, "mh"}, + CountryToIsoIndex{207323, "mp"}, + CountryToIsoIndex{207341, "sb"}, + CountryToIsoIndex{207353, "tc"}, + CountryToIsoIndex{207373, "vg"}, + CountryToIsoIndex{207392, "vi"}, + CountryToIsoIndex{207410, "nz"}, + CountryToIsoIndex{207424, "nz"}, + CountryToIsoIndex{207440, "nz"}, + CountryToIsoIndex{207459, "ci"}, + CountryToIsoIndex{207478, "nz"}, + CountryToIsoIndex{207494, "zw"}, + CountryToIsoIndex{207505, "zw"}, + CountryToIsoIndex{207514, "zw"}, + CountryToIsoIndex{207523, "zw"}, + CountryToIsoIndex{207533, "zw"}, + CountryToIsoIndex{207543, "zw"}, + CountryToIsoIndex{207552, "zw"}, + CountryToIsoIndex{207561, "zw"}, + CountryToIsoIndex{207571, "zw"}, + CountryToIsoIndex{207580, "zw"}, + CountryToIsoIndex{207596, "zw"}, + CountryToIsoIndex{207606, "zw"}, + CountryToIsoIndex{207615, "zw"}, + CountryToIsoIndex{207625, "zw"}, + CountryToIsoIndex{207635, "zw"}, + CountryToIsoIndex{207647, "zw"}, + CountryToIsoIndex{207657, "zw"}, + CountryToIsoIndex{207667, "zw"}, + CountryToIsoIndex{207677, "zw"}, + CountryToIsoIndex{207689, "zw"}, + CountryToIsoIndex{207699, "kn"}, + CountryToIsoIndex{207719, "sx"}, + CountryToIsoIndex{207732, "pm"}, + CountryToIsoIndex{207757, "st"}, + CountryToIsoIndex{207784, "vc"}, + CountryToIsoIndex{207823, "cy"}, + CountryToIsoIndex{207829, "ae"}, + CountryToIsoIndex{207858, "gb"}, + CountryToIsoIndex{207881, "us"}, + CountryToIsoIndex{207907, "ae"}, + CountryToIsoIndex{207936, "ae"}, + CountryToIsoIndex{207964, "gb"}, + CountryToIsoIndex{207986, "us"}, + CountryToIsoIndex{208012, "gb"}, + CountryToIsoIndex{208015, "ez"}, + CountryToIsoIndex{208024, "ez"}, + CountryToIsoIndex{208037, "ez"}, + CountryToIsoIndex{208047, "ez"}, + CountryToIsoIndex{208057, "jo"}, + CountryToIsoIndex{208065, "jo"}, + CountryToIsoIndex{208075, "ge"}, + CountryToIsoIndex{208081, "ge"}, + CountryToIsoIndex{208089, "za"}, + CountryToIsoIndex{208101, "gs"}, + CountryToIsoIndex{208145, "kr"}, + CountryToIsoIndex{208156, "ss"}, + CountryToIsoIndex{208168, "ch"}, + CountryToIsoIndex{208176, "se"}, + CountryToIsoIndex{208186, "sb"}, + CountryToIsoIndex{208206, "vi"}, + CountryToIsoIndex{208226, "cv"}, + CountryToIsoIndex{208249, "ky"}, + CountryToIsoIndex{208268, "ck"}, + CountryToIsoIndex{208285, "fk"}, + CountryToIsoIndex{208307, "vg"}, + CountryToIsoIndex{208330, "mp"}, + CountryToIsoIndex{208366, "mh"}, + CountryToIsoIndex{208387, "tc"}, + CountryToIsoIndex{208412, "se"}, + CountryToIsoIndex{208419, "ch"}, + CountryToIsoIndex{208431, "cy"}, + CountryToIsoIndex{208438, "cy"}, + CountryToIsoIndex{208445, "cy"}, + CountryToIsoIndex{208451, "zm"}, + CountryToIsoIndex{208459, "zm"}, + CountryToIsoIndex{208468, "zm"}, + CountryToIsoIndex{208476, "eh"}, + CountryToIsoIndex{208493, "eh"}, + CountryToIsoIndex{208510, "de"}, + CountryToIsoIndex{208518, "zm"}, + CountryToIsoIndex{208526, "nz"}, + CountryToIsoIndex{208545, "zw"}, + CountryToIsoIndex{208558, "zw"}, + CountryToIsoIndex{208570, "cv"}, + CountryToIsoIndex{208596, "nf"}, + CountryToIsoIndex{208613, "sb"}, + CountryToIsoIndex{208629, "cy"}, + CountryToIsoIndex{208638, "sb"}, + CountryToIsoIndex{208654, "vg"}, + CountryToIsoIndex{208684, "vi"}, + CountryToIsoIndex{208714, "ky"}, + CountryToIsoIndex{208724, "is"}, + CountryToIsoIndex{208736, "mh"}, + CountryToIsoIndex{208750, "io"}, + CountryToIsoIndex{208780, "fk"}, + CountryToIsoIndex{208793, "mp"}, + CountryToIsoIndex{208811, "ps"}, + CountryToIsoIndex{208828, "sb"}, + CountryToIsoIndex{208843, "tc"}, + CountryToIsoIndex{208862, "jo"}, + CountryToIsoIndex{208870, "jo"}, + CountryToIsoIndex{208879, "ck"}, + CountryToIsoIndex{208890, "nf"}, + CountryToIsoIndex{208905, "nz"}, + CountryToIsoIndex{208921, "sk"}, + CountryToIsoIndex{208931, "si"}, + CountryToIsoIndex{208943, "sz"}, + CountryToIsoIndex{208955, "al"}, + CountryToIsoIndex{208966, "dz"}, + CountryToIsoIndex{208978, "us"}, + CountryToIsoIndex{209008, "ae"}, + CountryToIsoIndex{209040, "gb"}, + CountryToIsoIndex{209057, "ar"}, + CountryToIsoIndex{209072, "af"}, + CountryToIsoIndex{209088, "za"}, + CountryToIsoIndex{209104, "af"}, + CountryToIsoIndex{209126, "ht"}, + CountryToIsoIndex{209133, "al"}, + CountryToIsoIndex{209144, "dz"}, + CountryToIsoIndex{209155, "aw"}, + CountryToIsoIndex{209163, "as"}, + CountryToIsoIndex{209181, "am"}, + CountryToIsoIndex{209192, "ad"}, + CountryToIsoIndex{209201, "ao"}, + CountryToIsoIndex{209210, "ag"}, + CountryToIsoIndex{209232, "ar"}, + CountryToIsoIndex{209246, "am"}, + CountryToIsoIndex{209257, "aw"}, + CountryToIsoIndex{209265, "at"}, + CountryToIsoIndex{209274, "az"}, + CountryToIsoIndex{209290, "az"}, + CountryToIsoIndex{209306, "ad"}, + CountryToIsoIndex{209317, "ai"}, + CountryToIsoIndex{209327, "ao"}, + CountryToIsoIndex{209337, "ai"}, + CountryToIsoIndex{209348, "ag"}, + CountryToIsoIndex{209373, "za"}, + CountryToIsoIndex{209388, "za"}, + CountryToIsoIndex{209403, "cf"}, + CountryToIsoIndex{209431, "is"}, + CountryToIsoIndex{209444, "ax"}, + CountryToIsoIndex{209451, "ax"}, + CountryToIsoIndex{209464, "in"}, + CountryToIsoIndex{209471, "at"}, + CountryToIsoIndex{209475, "ie"}, + CountryToIsoIndex{209487, "aw"}, + CountryToIsoIndex{209495, "au"}, + CountryToIsoIndex{209506, "at"}, + CountryToIsoIndex{209517, "at"}, + CountryToIsoIndex{209526, "az"}, + CountryToIsoIndex{209542, "us"}, + CountryToIsoIndex{209566, "vg"}, + CountryToIsoIndex{209597, "ck"}, + CountryToIsoIndex{209611, "mh"}, + CountryToIsoIndex{209629, "mp"}, + CountryToIsoIndex{209658, "ky"}, + CountryToIsoIndex{209684, "tc"}, + CountryToIsoIndex{209708, "fk"}, + CountryToIsoIndex{209731, "vi"}, + CountryToIsoIndex{209760, "eg"}, + CountryToIsoIndex{209769, "eg"}, + CountryToIsoIndex{209779, "eg"}, + CountryToIsoIndex{209788, "eg"}, + CountryToIsoIndex{209797, "ec"}, + CountryToIsoIndex{209806, "sv"}, + CountryToIsoIndex{209820, "ci"}, + CountryToIsoIndex{209837, "gq"}, + CountryToIsoIndex{209856, "gq"}, + CountryToIsoIndex{209876, "gq"}, + CountryToIsoIndex{209894, "er"}, + CountryToIsoIndex{209904, "er"}, + CountryToIsoIndex{209914, "il"}, + CountryToIsoIndex{209922, "et"}, + CountryToIsoIndex{209932, "et"}, + CountryToIsoIndex{209943, "et"}, + CountryToIsoIndex{209956, "qo"}, + CountryToIsoIndex{209975, "qo"}, + CountryToIsoIndex{209994, "ee"}, + CountryToIsoIndex{210003, "ax"}, + CountryToIsoIndex{210010, "ax"}, + CountryToIsoIndex{210026, "ax"}, + CountryToIsoIndex{210041, "ax"}, + CountryToIsoIndex{210066, "ax"}, + CountryToIsoIndex{210082, "ax"}, + CountryToIsoIndex{210096, "ax"}, + CountryToIsoIndex{210111, "ax"}, + CountryToIsoIndex{210119, "ax"}, + CountryToIsoIndex{210133, "ax"}, + CountryToIsoIndex{210146, "ax"}, + CountryToIsoIndex{210162, "ax"}, + CountryToIsoIndex{210178, "ax"}, + CountryToIsoIndex{210186, "ax"}, + CountryToIsoIndex{210195, "ax"}, + CountryToIsoIndex{210202, "gq"}, + CountryToIsoIndex{210220, "td"}, + CountryToIsoIndex{210225, "cz"}, + CountryToIsoIndex{210243, "cz"}, + CountryToIsoIndex{210252, "cz"}, + CountryToIsoIndex{210269, "cz"}, + CountryToIsoIndex{210275, "cz"}, + CountryToIsoIndex{210282, "cz"}, + CountryToIsoIndex{210301, "cz"}, + CountryToIsoIndex{210309, "cl"}, + CountryToIsoIndex{210315, "cn"}, + CountryToIsoIndex{210320, "hk"}, + CountryToIsoIndex{210341, "mo"}, + CountryToIsoIndex{210358, "eg"}, + CountryToIsoIndex{210368, "ie"}, + CountryToIsoIndex{210376, "ec"}, + CountryToIsoIndex{210390, "gq"}, + CountryToIsoIndex{210410, "er"}, + CountryToIsoIndex{210423, "iq"}, + CountryToIsoIndex{210434, "ir"}, + CountryToIsoIndex{210441, "id"}, + CountryToIsoIndex{210455, "er"}, + CountryToIsoIndex{210467, "ee"}, + CountryToIsoIndex{210478, "ee"}, + CountryToIsoIndex{210493, "et"}, + CountryToIsoIndex{210504, "et"}, + CountryToIsoIndex{210516, "us"}, + CountryToIsoIndex{210523, "eg"}, + CountryToIsoIndex{210531, "ye"}, + CountryToIsoIndex{210538, "ie"}, + CountryToIsoIndex{210544, "at"}, + CountryToIsoIndex{210556, "ae"}, + CountryToIsoIndex{210577, "ec"}, + CountryToIsoIndex{210587, "er"}, + CountryToIsoIndex{210598, "kp"}, + CountryToIsoIndex{210611, "mp"}, + CountryToIsoIndex{210636, "ee"}, + CountryToIsoIndex{210649, "va"}, + CountryToIsoIndex{210678, "fm"}, + CountryToIsoIndex{210711, "us"}, + CountryToIsoIndex{210723, "et"}, + CountryToIsoIndex{210733, "in"}, + CountryToIsoIndex{210740, "id"}, + CountryToIsoIndex{210753, "tl"}, + CountryToIsoIndex{210764, "va"}, + CountryToIsoIndex{210778, "ie"}, + CountryToIsoIndex{210787, "iq"}, + CountryToIsoIndex{210794, "ir"}, + CountryToIsoIndex{210802, "is"}, + CountryToIsoIndex{210814, "it"}, + CountryToIsoIndex{210824, "ec"}, + CountryToIsoIndex{210832, "mh"}, + CountryToIsoIndex{210845, "in"}, + CountryToIsoIndex{210852, "in"}, + CountryToIsoIndex{210860, "id"}, + CountryToIsoIndex{210872, "in"}, + CountryToIsoIndex{210879, "iq"}, + CountryToIsoIndex{210885, "ir"}, + CountryToIsoIndex{210891, "ie"}, + CountryToIsoIndex{210899, "ie"}, + CountryToIsoIndex{210910, "ie"}, + CountryToIsoIndex{210917, "ir"}, + CountryToIsoIndex{210924, "il"}, + CountryToIsoIndex{210937, "is"}, + CountryToIsoIndex{210945, "il"}, + CountryToIsoIndex{210953, "it"}, + CountryToIsoIndex{210960, "it"}, + CountryToIsoIndex{210969, "et"}, + CountryToIsoIndex{210981, "bv"}, + CountryToIsoIndex{210993, "cx"}, + CountryToIsoIndex{211008, "cp"}, + CountryToIsoIndex{211024, "ac"}, + CountryToIsoIndex{211046, "im"}, + CountryToIsoIndex{211058, "nf"}, + CountryToIsoIndex{211071, "ic"}, + CountryToIsoIndex{211086, "ky"}, + CountryToIsoIndex{211101, "cc"}, + CountryToIsoIndex{211113, "cc"}, + CountryToIsoIndex{211135, "ck"}, + CountryToIsoIndex{211146, "gs"}, + CountryToIsoIndex{211190, "ax"}, + CountryToIsoIndex{211207, "fk"}, + CountryToIsoIndex{211222, "fk"}, + CountryToIsoIndex{211249, "fo"}, + CountryToIsoIndex{211263, "gs"}, + CountryToIsoIndex{211304, "hm"}, + CountryToIsoIndex{211328, "fk"}, + CountryToIsoIndex{211344, "mp"}, + CountryToIsoIndex{211368, "mh"}, + CountryToIsoIndex{211383, "um"}, + CountryToIsoIndex{211426, "pn"}, + CountryToIsoIndex{211441, "sb"}, + CountryToIsoIndex{211455, "tc"}, + CountryToIsoIndex{211481, "vi"}, + CountryToIsoIndex{211508, "vg"}, + CountryToIsoIndex{211535, "vi"}, + CountryToIsoIndex{211565, "ax"}, + CountryToIsoIndex{211578, "om"}, + CountryToIsoIndex{211585, "nf"}, + CountryToIsoIndex{211602, "au"}, + CountryToIsoIndex{211614, "at"}, + CountryToIsoIndex{211623, "om"}, + CountryToIsoIndex{211629, "om"}, + CountryToIsoIndex{211636, "at"}, + CountryToIsoIndex{211645, "am"}, + CountryToIsoIndex{211661, "at"}, + CountryToIsoIndex{211673, "at"}, + CountryToIsoIndex{211684, "au"}, + CountryToIsoIndex{211695, "tl"}, + CountryToIsoIndex{211705, "at"}, + CountryToIsoIndex{211713, "uz"}, + CountryToIsoIndex{211725, "uz"}, + CountryToIsoIndex{211737, "uz"}, + CountryToIsoIndex{211750, "at"}, + CountryToIsoIndex{211764, "at"}, + CountryToIsoIndex{211777, "at"}, + CountryToIsoIndex{211790, "at"}, + CountryToIsoIndex{211800, "tl"}, + CountryToIsoIndex{211811, "at"}, + CountryToIsoIndex{211822, "at"}, + CountryToIsoIndex{211830, "at"}, + CountryToIsoIndex{211839, "tl"}, + CountryToIsoIndex{211849, "ug"}, + CountryToIsoIndex{211858, "ua"}, + CountryToIsoIndex{211868, "uy"}, + CountryToIsoIndex{211879, "au"}, + CountryToIsoIndex{211899, "uz"}, + CountryToIsoIndex{211914, "ug"}, + CountryToIsoIndex{211922, "nc"}, + CountryToIsoIndex{211937, "nz"}, + CountryToIsoIndex{211949, "ua"}, + CountryToIsoIndex{211959, "uy"}, + CountryToIsoIndex{211969, "uz"}, + CountryToIsoIndex{211981, "um"}, + CountryToIsoIndex{212006, "gb"}, + CountryToIsoIndex{212010, "jo"}, + CountryToIsoIndex{212018, "qo"}, + CountryToIsoIndex{212035, "qo"}, + CountryToIsoIndex{212051, "uz"}, + CountryToIsoIndex{212065, "jm"}, + CountryToIsoIndex{212075, "jp"}, + CountryToIsoIndex{212086, "ye"}, + CountryToIsoIndex{212093, "ez"}, + CountryToIsoIndex{212106, "de"}, + CountryToIsoIndex{212118, "at"}, + CountryToIsoIndex{212131, "td"}, + CountryToIsoIndex{212137, "cz"}, + CountryToIsoIndex{212146, "cl"}, + CountryToIsoIndex{212153, "cn"}, + CountryToIsoIndex{212161, "cy"}, + CountryToIsoIndex{212168, "td"}, + CountryToIsoIndex{212173, "td"}, + CountryToIsoIndex{212179, "td"}, + CountryToIsoIndex{212186, "cz"}, + CountryToIsoIndex{212195, "cz"}, + CountryToIsoIndex{212203, "cz"}, + CountryToIsoIndex{212222, "cz"}, + CountryToIsoIndex{212230, "cz"}, + CountryToIsoIndex{212250, "cz"}, + CountryToIsoIndex{212259, "me"}, + CountryToIsoIndex{212272, "cz"}, + CountryToIsoIndex{212289, "cz"}, + CountryToIsoIndex{212296, "cz"}, + CountryToIsoIndex{212314, "cz"}, + CountryToIsoIndex{212322, "cz"}, + CountryToIsoIndex{212340, "me"}, + CountryToIsoIndex{212353, "cl"}, + CountryToIsoIndex{212360, "cl"}, + CountryToIsoIndex{212366, "cl"}, + CountryToIsoIndex{212373, "sj"}, + CountryToIsoIndex{212402, "me"}, + CountryToIsoIndex{212413, "cn"}, + CountryToIsoIndex{212420, "cz"}, + CountryToIsoIndex{212427, "cz"}, + CountryToIsoIndex{212445, "cl"}, + CountryToIsoIndex{212452, "cl"}, + CountryToIsoIndex{212459, "dk"}, + CountryToIsoIndex{212471, "tw"}, + CountryToIsoIndex{212482, "tl"}, + CountryToIsoIndex{212495, "ac"}, + CountryToIsoIndex{212512, "bv"}, + CountryToIsoIndex{212526, "cp"}, + CountryToIsoIndex{212544, "cx"}, + CountryToIsoIndex{212563, "im"}, + CountryToIsoIndex{212574, "nf"}, + CountryToIsoIndex{212589, "de"}, + CountryToIsoIndex{212596, "eg"}, + CountryToIsoIndex{212605, "gi"}, + CountryToIsoIndex{212617, "dj"}, + CountryToIsoIndex{212626, "gi"}, + CountryToIsoIndex{212636, "mp"}, + CountryToIsoIndex{212669, "in"}, + CountryToIsoIndex{212677, "ie"}, + CountryToIsoIndex{212684, "is"}, + CountryToIsoIndex{212694, "id"}, + CountryToIsoIndex{212706, "jo"}, + CountryToIsoIndex{212717, "ir"}, + CountryToIsoIndex{212723, "iq"}, + CountryToIsoIndex{212729, "ie"}, + CountryToIsoIndex{212738, "ie"}, + CountryToIsoIndex{212749, "is"}, + CountryToIsoIndex{212760, "es"}, + CountryToIsoIndex{212770, "es"}, + CountryToIsoIndex{212779, "il"}, + CountryToIsoIndex{212787, "se"}, + CountryToIsoIndex{212795, "ch"}, + CountryToIsoIndex{212806, "ch"}, + CountryToIsoIndex{212816, "it"}, + CountryToIsoIndex{212825, "it"}, + CountryToIsoIndex{212833, "is"}, + CountryToIsoIndex{212842, "cn"}, + CountryToIsoIndex{212849, "hk"}, + CountryToIsoIndex{212896, "mo"}, + CountryToIsoIndex{212940, "lv"}, + CountryToIsoIndex{212947, "vg"}, + CountryToIsoIndex{212974, "ga"}, + CountryToIsoIndex{212986, "gm"}, + CountryToIsoIndex{212995, "gn"}, + CountryToIsoIndex{213005, "gw"}, + CountryToIsoIndex{213024, "gq"}, + CountryToIsoIndex{213049, "gh"}, + CountryToIsoIndex{213057, "gr"}, + CountryToIsoIndex{213069, "cf"}, + CountryToIsoIndex{213086, "gr"}, + CountryToIsoIndex{213093, "cl"}, + CountryToIsoIndex{213099, "kp"}, + CountryToIsoIndex{213114, "mp"}, + CountryToIsoIndex{213138, "ci"}, + CountryToIsoIndex{213154, "sj"}, + CountryToIsoIndex{213181, "lk"}, + CountryToIsoIndex{213192, "se"}, + CountryToIsoIndex{213202, "ch"}, + CountryToIsoIndex{213216, "tl"}, + CountryToIsoIndex{213230, "sb"}, + CountryToIsoIndex{213251, "sb"}, + CountryToIsoIndex{213272, "kp"}, + CountryToIsoIndex{213290, "cl"}, + CountryToIsoIndex{213297, "cn"}, + CountryToIsoIndex{213303, "cy"}, + CountryToIsoIndex{213311, "es"}, + CountryToIsoIndex{213323, "es"}, + CountryToIsoIndex{213332, "es"}, + CountryToIsoIndex{213342, "es"}, + CountryToIsoIndex{213354, "es"}, + CountryToIsoIndex{213366, "es"}, + CountryToIsoIndex{213376, "sj"}, + CountryToIsoIndex{213399, "es"}, + CountryToIsoIndex{213409, "lk"}, + CountryToIsoIndex{213420, "lk"}, + CountryToIsoIndex{213430, "sh"}, + CountryToIsoIndex{213447, "ch"}, + CountryToIsoIndex{213459, "ch"}, + CountryToIsoIndex{213473, "se"}, + CountryToIsoIndex{213482, "se"}, + CountryToIsoIndex{213491, "ch"}, + CountryToIsoIndex{213499, "ch"}, + CountryToIsoIndex{213511, "ch"}, + CountryToIsoIndex{213519, "ch"}, + CountryToIsoIndex{213527, "vc"}, + CountryToIsoIndex{213562, "ch"}, + CountryToIsoIndex{213569, "ch"}, + CountryToIsoIndex{213580, "se"}, + CountryToIsoIndex{213590, "ch"}, + CountryToIsoIndex{213602, "se"}, + CountryToIsoIndex{213611, "ch"}, + CountryToIsoIndex{213622, "se"}, + CountryToIsoIndex{213632, "ch"}, + CountryToIsoIndex{213641, "ch"}, + CountryToIsoIndex{213651, "cv"}, + CountryToIsoIndex{213670, "sa"}, + CountryToIsoIndex{213683, "dj"}, + CountryToIsoIndex{213691, "sm"}, + CountryToIsoIndex{213709, "kn"}, + CountryToIsoIndex{213740, "lc"}, + CountryToIsoIndex{213757, "pm"}, + CountryToIsoIndex{213790, "vc"}, + CountryToIsoIndex{213833, "sh"}, + CountryToIsoIndex{213853, "nc"}, + CountryToIsoIndex{213875, "nz"}, + CountryToIsoIndex{213894, "nl"}, + CountryToIsoIndex{213903, "us"}, + CountryToIsoIndex{213920, "gb"}, + CountryToIsoIndex{213935, "cd"}, + CountryToIsoIndex{213962, "ps"}, + CountryToIsoIndex{213981, "cz"}, + CountryToIsoIndex{213995, "va"}, + CountryToIsoIndex{214010, "cf"}, + CountryToIsoIndex{214031, "io"}, + CountryToIsoIndex{214073, "nl"}, + CountryToIsoIndex{214089, "dz"}, + CountryToIsoIndex{214099, "hn"}, + CountryToIsoIndex{214108, "hn"}, + CountryToIsoIndex{214118, "hn"}, + CountryToIsoIndex{214128, "hu"}, + CountryToIsoIndex{214137, "hu"}, + CountryToIsoIndex{214145, "hu"}, + CountryToIsoIndex{214154, "au"}, + CountryToIsoIndex{214169, "au"}, + CountryToIsoIndex{214179, "au"}, + CountryToIsoIndex{214189, "at"}, + CountryToIsoIndex{214197, "hn"}, + CountryToIsoIndex{214210, "hu"}, + CountryToIsoIndex{214222, "at"}, + CountryToIsoIndex{214233, "af"}, + CountryToIsoIndex{214246, "dz"}, + CountryToIsoIndex{214257, "iq"}, + CountryToIsoIndex{214264, "eg"}, + CountryToIsoIndex{214272, "eg"}, + CountryToIsoIndex{214282, "ec"}, + CountryToIsoIndex{214294, "ec"}, + CountryToIsoIndex{214307, "sv"}, + CountryToIsoIndex{214320, "er"}, + CountryToIsoIndex{214335, "sv"}, + CountryToIsoIndex{214351, "sh"}, + CountryToIsoIndex{214364, "id"}, + CountryToIsoIndex{214375, "id"}, + CountryToIsoIndex{214385, "id"}, + CountryToIsoIndex{214397, "in"}, + CountryToIsoIndex{214409, "er"}, + CountryToIsoIndex{214418, "er"}, + CountryToIsoIndex{214427, "er"}, + CountryToIsoIndex{214438, "ee"}, + CountryToIsoIndex{214451, "es"}, + CountryToIsoIndex{214462, "ee"}, + CountryToIsoIndex{214470, "ee"}, + CountryToIsoIndex{214479, "ee"}, + CountryToIsoIndex{214488, "et"}, + CountryToIsoIndex{214499, "et"}, + CountryToIsoIndex{214509, "om"}, + CountryToIsoIndex{214516, "om"}, + CountryToIsoIndex{214524, "ec"}, + CountryToIsoIndex{214538, "in"}, + CountryToIsoIndex{214547, "in"}, + CountryToIsoIndex{214556, "gh"}, + CountryToIsoIndex{214562, "gf"}, + CountryToIsoIndex{214579, "tl"}, + CountryToIsoIndex{214602, "eh"}, + CountryToIsoIndex{214628, "gn"}, + CountryToIsoIndex{214635, "gw"}, + CountryToIsoIndex{214648, "gq"}, + CountryToIsoIndex{214665, "pg"}, + CountryToIsoIndex{214689, "gq"}, + CountryToIsoIndex{214706, "gq"}, + CountryToIsoIndex{214727, "gw"}, + CountryToIsoIndex{214740, "gw"}, + CountryToIsoIndex{214754, "gd"}, + CountryToIsoIndex{214764, "io"}, + CountryToIsoIndex{214806, "ir"}, + CountryToIsoIndex{214816, "be"}, + CountryToIsoIndex{214829, "fr"}, + CountryToIsoIndex{214841, "ug"}, + CountryToIsoIndex{214851, "et"}, + CountryToIsoIndex{214863, "nl"}, + CountryToIsoIndex{214875, "de"}, + CountryToIsoIndex{214888, "ua"}, + CountryToIsoIndex{214900, "pt"}, + CountryToIsoIndex{214909, "sz"}, + CountryToIsoIndex{214919, "ae"}, + CountryToIsoIndex{214940, "gb"}, + CountryToIsoIndex{214954, "ie"}, + CountryToIsoIndex{214964, "af"}, + CountryToIsoIndex{214981, "za"}, + CountryToIsoIndex{214997, "is"}, + CountryToIsoIndex{215008, "ae"}, + CountryToIsoIndex{215030, "al"}, + CountryToIsoIndex{215041, "dz"}, + CountryToIsoIndex{215052, "aw"}, + CountryToIsoIndex{215060, "us"}, + CountryToIsoIndex{215070, "us"}, + CountryToIsoIndex{215093, "ao"}, + CountryToIsoIndex{215104, "ad"}, + CountryToIsoIndex{215114, "aq"}, + CountryToIsoIndex{215127, "au"}, + CountryToIsoIndex{215142, "at"}, + CountryToIsoIndex{215154, "az"}, + CountryToIsoIndex{215167, "ar"}, + CountryToIsoIndex{215179, "gq"}, + CountryToIsoIndex{215193, "ec"}, + CountryToIsoIndex{215203, "sv"}, + CountryToIsoIndex{215219, "er"}, + CountryToIsoIndex{215230, "ee"}, + CountryToIsoIndex{215242, "ez"}, + CountryToIsoIndex{215271, "iq"}, + CountryToIsoIndex{215280, "ir"}, + CountryToIsoIndex{215289, "ie"}, + CountryToIsoIndex{215299, "in"}, + CountryToIsoIndex{215308, "id"}, + CountryToIsoIndex{215322, "il"}, + CountryToIsoIndex{215335, "il"}, + CountryToIsoIndex{215345, "eg"}, + CountryToIsoIndex{215355, "ug"}, + CountryToIsoIndex{215367, "om"}, + CountryToIsoIndex{215375, "qo"}, + CountryToIsoIndex{215393, "fo"}, + CountryToIsoIndex{215409, "fk"}, + CountryToIsoIndex{215428, "hm"}, + CountryToIsoIndex{215458, "ic"}, + CountryToIsoIndex{215475, "ky"}, + CountryToIsoIndex{215493, "cc"}, + CountryToIsoIndex{215508, "ck"}, + CountryToIsoIndex{215523, "mp"}, + CountryToIsoIndex{215549, "mh"}, + CountryToIsoIndex{215567, "pn"}, + CountryToIsoIndex{215586, "sc"}, + CountryToIsoIndex{215604, "gs"}, + CountryToIsoIndex{215646, "um"}, + CountryToIsoIndex{215676, "sb"}, + CountryToIsoIndex{215695, "tc"}, + CountryToIsoIndex{215721, "vg"}, + CountryToIsoIndex{215755, "vi"}, + CountryToIsoIndex{215788, "ax"}, + CountryToIsoIndex{215806, "uy"}, + CountryToIsoIndex{215816, "uz"}, + CountryToIsoIndex{215830, "wf"}, + CountryToIsoIndex{215847, "ph"}, + CountryToIsoIndex{215864, "am"}, + CountryToIsoIndex{215874, "it"}, + CountryToIsoIndex{215885, "in"}, + CountryToIsoIndex{215893, "it"}, + CountryToIsoIndex{215902, "et"}, + CountryToIsoIndex{215914, "ua"}, + CountryToIsoIndex{215928, "ag"}, + CountryToIsoIndex{215958, "bl"}, + CountryToIsoIndex{215994, "vc"}, + CountryToIsoIndex{216052, "sm"}, + CountryToIsoIndex{216078, "mf"}, + CountryToIsoIndex{216134, "sx"}, + CountryToIsoIndex{216194, "eg"}, + CountryToIsoIndex{216211, "sh"}, + CountryToIsoIndex{216231, "lc"}, + CountryToIsoIndex{216253, "ao"}, + CountryToIsoIndex{216266, "az"}, + CountryToIsoIndex{216291, "et"}, + CountryToIsoIndex{216308, "ci"}, + CountryToIsoIndex{216342, "al"}, + CountryToIsoIndex{216357, "dz"}, + CountryToIsoIndex{216372, "vi"}, + CountryToIsoIndex{216425, "as"}, + CountryToIsoIndex{216459, "tl"}, + CountryToIsoIndex{216489, "ai"}, + CountryToIsoIndex{216508, "ad"}, + CountryToIsoIndex{216521, "ag"}, + CountryToIsoIndex{216570, "aq"}, + CountryToIsoIndex{216591, "um"}, + CountryToIsoIndex{216642, "ar"}, + CountryToIsoIndex{216661, "am"}, + CountryToIsoIndex{216676, "aw"}, + CountryToIsoIndex{216691, "at"}, + CountryToIsoIndex{216706, "au"}, + CountryToIsoIndex{216725, "af"}, + CountryToIsoIndex{216746, "ht"}, + CountryToIsoIndex{216755, "be"}, + CountryToIsoIndex{216768, "vu"}, + CountryToIsoIndex{216787, "va"}, + CountryToIsoIndex{216804, "ve"}, + CountryToIsoIndex{216825, "bm"}, + CountryToIsoIndex{216844, "vn"}, + CountryToIsoIndex{216859, "bo"}, + CountryToIsoIndex{216874, "ba"}, + CountryToIsoIndex{216910, "bg"}, + CountryToIsoIndex{216929, "br"}, + CountryToIsoIndex{216946, "io"}, + CountryToIsoIndex{217006, "vg"}, + CountryToIsoIndex{217055, "kp"}, + CountryToIsoIndex{217079, "fr"}, + CountryToIsoIndex{217092, "tf"}, + CountryToIsoIndex{217169, "gf"}, + CountryToIsoIndex{217199, "pf"}, + CountryToIsoIndex{217233, "de"}, + CountryToIsoIndex{217250, "ge"}, + CountryToIsoIndex{217265, "gi"}, + CountryToIsoIndex{217284, "gm"}, + CountryToIsoIndex{217299, "gh"}, + CountryToIsoIndex{217310, "gg"}, + CountryToIsoIndex{217325, "ga"}, + CountryToIsoIndex{217340, "gu"}, + CountryToIsoIndex{217353, "gp"}, + CountryToIsoIndex{217376, "gt"}, + CountryToIsoIndex{217397, "gy"}, + CountryToIsoIndex{217412, "gn"}, + CountryToIsoIndex{217427, "gw"}, + CountryToIsoIndex{217457, "gd"}, + CountryToIsoIndex{217472, "gl"}, + CountryToIsoIndex{217493, "dk"}, + CountryToIsoIndex{217504, "do"}, + CountryToIsoIndex{217546, "eh"}, + CountryToIsoIndex{217572, "sv"}, + CountryToIsoIndex{217594, "ch"}, + CountryToIsoIndex{217609, "gr"}, + CountryToIsoIndex{217622, "er"}, + CountryToIsoIndex{217639, "ee"}, + CountryToIsoIndex{217654, "ez"}, + CountryToIsoIndex{217671, "zm"}, + CountryToIsoIndex{217684, "zw"}, + CountryToIsoIndex{217705, "gb"}, + CountryToIsoIndex{217710, "ae"}, + CountryToIsoIndex{217755, "us"}, + CountryToIsoIndex{217791, "gb"}, + CountryToIsoIndex{217823, "us"}, + CountryToIsoIndex{217830, "ea"}, + CountryToIsoIndex{217865, "jp"}, + CountryToIsoIndex{217880, "in"}, + CountryToIsoIndex{217891, "id"}, + CountryToIsoIndex{217910, "jo"}, + CountryToIsoIndex{217927, "iq"}, + CountryToIsoIndex{217936, "ir"}, + CountryToIsoIndex{217945, "ie"}, + CountryToIsoIndex{217962, "gq"}, + CountryToIsoIndex{217996, "ec"}, + CountryToIsoIndex{218017, "is"}, + CountryToIsoIndex{218034, "es"}, + CountryToIsoIndex{218049, "il"}, + CountryToIsoIndex{218062, "it"}, + CountryToIsoIndex{218075, "ke"}, + CountryToIsoIndex{218086, "cn"}, + CountryToIsoIndex{218095, "kz"}, + CountryToIsoIndex{218114, "cm"}, + CountryToIsoIndex{218131, "kh"}, + CountryToIsoIndex{218148, "ic"}, + CountryToIsoIndex{218176, "ca"}, + CountryToIsoIndex{218191, "qa"}, + CountryToIsoIndex{218202, "cf"}, + CountryToIsoIndex{218256, "kg"}, + CountryToIsoIndex{218275, "ki"}, + CountryToIsoIndex{218294, "co"}, + CountryToIsoIndex{218311, "km"}, + CountryToIsoIndex{218326, "cd"}, + CountryToIsoIndex{218345, "cg"}, + CountryToIsoIndex{218381, "cd"}, + CountryToIsoIndex{218411, "cg"}, + CountryToIsoIndex{218445, "xk"}, + CountryToIsoIndex{218470, "kw"}, + CountryToIsoIndex{218485, "cw"}, + CountryToIsoIndex{218502, "cu"}, + CountryToIsoIndex{218513, "hr"}, + CountryToIsoIndex{218528, "cr"}, + CountryToIsoIndex{218548, "cy"}, + CountryToIsoIndex{218561, "la"}, + CountryToIsoIndex{218570, "lb"}, + CountryToIsoIndex{218585, "ls"}, + CountryToIsoIndex{218598, "lv"}, + CountryToIsoIndex{218613, "by"}, + CountryToIsoIndex{218634, "lr"}, + CountryToIsoIndex{218649, "ly"}, + CountryToIsoIndex{218660, "lt"}, + CountryToIsoIndex{218679, "li"}, + CountryToIsoIndex{218702, "lu"}, + CountryToIsoIndex{218727, "ml"}, + CountryToIsoIndex{218736, "mt"}, + CountryToIsoIndex{218747, "yt"}, + CountryToIsoIndex{218760, "mg"}, + CountryToIsoIndex{218783, "mo"}, + CountryToIsoIndex{218794, "mo"}, + CountryToIsoIndex{218823, "mw"}, + CountryToIsoIndex{218838, "my"}, + CountryToIsoIndex{218855, "mv"}, + CountryToIsoIndex{218872, "mq"}, + CountryToIsoIndex{218891, "ma"}, + CountryToIsoIndex{218904, "mu"}, + CountryToIsoIndex{218923, "mr"}, + CountryToIsoIndex{218944, "me"}, + CountryToIsoIndex{218967, "mx"}, + CountryToIsoIndex{218980, "mm"}, + CountryToIsoIndex{219014, "fm"}, + CountryToIsoIndex{219035, "mn"}, + CountryToIsoIndex{219052, "mz"}, + CountryToIsoIndex{219071, "md"}, + CountryToIsoIndex{219088, "mc"}, + CountryToIsoIndex{219101, "ms"}, + CountryToIsoIndex{219118, "bd"}, + CountryToIsoIndex{219143, "bb"}, + CountryToIsoIndex{219168, "bs"}, + CountryToIsoIndex{219185, "bh"}, + CountryToIsoIndex{219202, "bz"}, + CountryToIsoIndex{219215, "bj"}, + CountryToIsoIndex{219228, "bw"}, + CountryToIsoIndex{219249, "bf"}, + CountryToIsoIndex{219277, "bi"}, + CountryToIsoIndex{219298, "bt"}, + CountryToIsoIndex{219313, "bn"}, + CountryToIsoIndex{219330, "nz"}, + CountryToIsoIndex{219354, "nc"}, + CountryToIsoIndex{219380, "mp"}, + CountryToIsoIndex{219423, "ky"}, + CountryToIsoIndex{219447, "ck"}, + CountryToIsoIndex{219467, "cc"}, + CountryToIsoIndex{219506, "mh"}, + CountryToIsoIndex{219530, "gs"}, + CountryToIsoIndex{219606, "pn"}, + CountryToIsoIndex{219632, "sb"}, + CountryToIsoIndex{219664, "tc"}, + CountryToIsoIndex{219706, "fo"}, + CountryToIsoIndex{219730, "fk"}, + CountryToIsoIndex{219756, "fk"}, + CountryToIsoIndex{219812, "hm"}, + CountryToIsoIndex{219864, "ax"}, + CountryToIsoIndex{219886, "ac"}, + CountryToIsoIndex{219914, "cp"}, + CountryToIsoIndex{219944, "bv"}, + CountryToIsoIndex{219968, "nf"}, + CountryToIsoIndex{219994, "im"}, + CountryToIsoIndex{220019, "cx"}, + CountryToIsoIndex{220064, "ne"}, + CountryToIsoIndex{220079, "na"}, + CountryToIsoIndex{220096, "nr"}, + CountryToIsoIndex{220111, "np"}, + CountryToIsoIndex{220122, "ng"}, + CountryToIsoIndex{220137, "ni"}, + CountryToIsoIndex{220158, "nu"}, + CountryToIsoIndex{220169, "no"}, + CountryToIsoIndex{220186, "dg"}, + CountryToIsoIndex{220216, "dm"}, + CountryToIsoIndex{220235, "za"}, + CountryToIsoIndex{220259, "kr"}, + CountryToIsoIndex{220281, "ss"}, + CountryToIsoIndex{220305, "nl"}, + CountryToIsoIndex{220322, "bq"}, + CountryToIsoIndex{220360, "om"}, + CountryToIsoIndex{220369, "hn"}, + CountryToIsoIndex{220384, "wf"}, + CountryToIsoIndex{220421, "hu"}, + CountryToIsoIndex{220438, "ug"}, + CountryToIsoIndex{220455, "uz"}, + CountryToIsoIndex{220480, "ua"}, + CountryToIsoIndex{220497, "uy"}, + CountryToIsoIndex{220518, "pk"}, + CountryToIsoIndex{220535, "pw"}, + CountryToIsoIndex{220548, "ps"}, + CountryToIsoIndex{220569, "ps"}, + CountryToIsoIndex{220607, "pa"}, + CountryToIsoIndex{220622, "pg"}, + CountryToIsoIndex{220657, "py"}, + CountryToIsoIndex{220676, "qo"}, + CountryToIsoIndex{220716, "pe"}, + CountryToIsoIndex{220727, "pl"}, + CountryToIsoIndex{220742, "pt"}, + CountryToIsoIndex{220763, "pr"}, + CountryToIsoIndex{220787, "cv"}, + CountryToIsoIndex{220821, "mk"}, + CountryToIsoIndex{220910, "mk"}, + CountryToIsoIndex{221010, "re"}, + CountryToIsoIndex{221025, "rw"}, + CountryToIsoIndex{221040, "ro"}, + CountryToIsoIndex{221057, "ru"}, + CountryToIsoIndex{221068, "st"}, + CountryToIsoIndex{221108, "ws"}, + CountryToIsoIndex{221119, "sa"}, + CountryToIsoIndex{221149, "sj"}, + CountryToIsoIndex{221199, "kn"}, + CountryToIsoIndex{221233, "pm"}, + CountryToIsoIndex{221271, "sn"}, + CountryToIsoIndex{221288, "rs"}, + CountryToIsoIndex{221301, "sc"}, + CountryToIsoIndex{221320, "sl"}, + CountryToIsoIndex{221342, "sg"}, + CountryToIsoIndex{221363, "sk"}, + CountryToIsoIndex{221380, "si"}, + CountryToIsoIndex{221397, "so"}, + CountryToIsoIndex{221412, "sz"}, + CountryToIsoIndex{221435, "sd"}, + CountryToIsoIndex{221448, "se"}, + CountryToIsoIndex{221463, "sr"}, + CountryToIsoIndex{221480, "lk"}, + CountryToIsoIndex{221498, "sy"}, + CountryToIsoIndex{221509, "tz"}, + CountryToIsoIndex{221526, "tj"}, + CountryToIsoIndex{221549, "tw"}, + CountryToIsoIndex{221562, "th"}, + CountryToIsoIndex{221579, "je"}, + CountryToIsoIndex{221592, "jm"}, + CountryToIsoIndex{221609, "dj"}, + CountryToIsoIndex{221628, "tl"}, + CountryToIsoIndex{221650, "tk"}, + CountryToIsoIndex{221667, "tv"}, + CountryToIsoIndex{221684, "tr"}, + CountryToIsoIndex{221699, "tm"}, + CountryToIsoIndex{221726, "tt"}, + CountryToIsoIndex{221771, "ta"}, + CountryToIsoIndex{221806, "td"}, + CountryToIsoIndex{221817, "cz"}, + CountryToIsoIndex{221830, "cz"}, + CountryToIsoIndex{221866, "tn"}, + CountryToIsoIndex{221881, "tg"}, + CountryToIsoIndex{221892, "to"}, + CountryToIsoIndex{221905, "ye"}, + CountryToIsoIndex{221918, "fj"}, + CountryToIsoIndex{221929, "ph"}, + CountryToIsoIndex{221950, "fi"}, + CountryToIsoIndex{221969, "cl"}, + CountryToIsoIndex{221978, "hk"}, + CountryToIsoIndex{222000, "hk"}, + CountryToIsoIndex{222040, "us"}, + CountryToIsoIndex{222047, "vi"}, + CountryToIsoIndex{222082, "um"}, + CountryToIsoIndex{222133, "ae"}, + CountryToIsoIndex{222187, "af"}, + CountryToIsoIndex{222208, "au"}, + CountryToIsoIndex{222225, "au"}, + CountryToIsoIndex{222244, "au"}, + CountryToIsoIndex{222265, "au"}, + CountryToIsoIndex{222284, "at"}, + CountryToIsoIndex{222297, "at"}, + CountryToIsoIndex{222312, "at"}, + CountryToIsoIndex{222329, "at"}, + CountryToIsoIndex{222344, "az"}, + CountryToIsoIndex{222367, "az"}, + CountryToIsoIndex{222388, "az"}, + CountryToIsoIndex{222409, "az"}, + CountryToIsoIndex{222430, "us"}, + CountryToIsoIndex{222437, "ac"}, + CountryToIsoIndex{222473, "us"}, + CountryToIsoIndex{222480, "vi"}, + CountryToIsoIndex{222519, "um"}, + CountryToIsoIndex{222569, "um"}, + CountryToIsoIndex{222612, "ax"}, + CountryToIsoIndex{222638, "ax"}, + CountryToIsoIndex{222666, "ax"}, + CountryToIsoIndex{222694, "ax"}, + CountryToIsoIndex{222724, "ax"}, + CountryToIsoIndex{222758, "ax"}, + CountryToIsoIndex{222785, "ax"}, + CountryToIsoIndex{222819, "ax"}, + CountryToIsoIndex{222853, "ax"}, + CountryToIsoIndex{222881, "al"}, + CountryToIsoIndex{222894, "al"}, + CountryToIsoIndex{222909, "al"}, + CountryToIsoIndex{222926, "al"}, + CountryToIsoIndex{222941, "dz"}, + CountryToIsoIndex{222952, "dz"}, + CountryToIsoIndex{222963, "de"}, + CountryToIsoIndex{222980, "qo"}, + CountryToIsoIndex{223004, "qo"}, + CountryToIsoIndex{223032, "dz"}, + CountryToIsoIndex{223049, "om"}, + CountryToIsoIndex{223058, "us"}, + CountryToIsoIndex{223109, "us"}, + CountryToIsoIndex{223152, "as"}, + CountryToIsoIndex{223182, "as"}, + CountryToIsoIndex{223212, "us"}, + CountryToIsoIndex{223271, "us"}, + CountryToIsoIndex{223314, "us"}, + CountryToIsoIndex{223359, "as"}, + CountryToIsoIndex{223391, "as"}, + CountryToIsoIndex{223423, "as"}, + CountryToIsoIndex{223451, "as"}, + CountryToIsoIndex{223485, "vi"}, + CountryToIsoIndex{223544, "vi"}, + CountryToIsoIndex{223601, "um"}, + CountryToIsoIndex{223667, "as"}, + CountryToIsoIndex{223703, "as"}, + CountryToIsoIndex{223739, "us"}, + CountryToIsoIndex{223780, "um"}, + CountryToIsoIndex{223847, "as"}, + CountryToIsoIndex{223877, "vi"}, + CountryToIsoIndex{223928, "vi"}, + CountryToIsoIndex{223981, "as"}, + CountryToIsoIndex{224009, "as"}, + CountryToIsoIndex{224045, "vi"}, + CountryToIsoIndex{224106, "ae"}, + CountryToIsoIndex{224155, "ai"}, + CountryToIsoIndex{224170, "ai"}, + CountryToIsoIndex{224185, "ai"}, + CountryToIsoIndex{224200, "ao"}, + CountryToIsoIndex{224211, "ao"}, + CountryToIsoIndex{224224, "ai"}, + CountryToIsoIndex{224239, "ai"}, + CountryToIsoIndex{224254, "ad"}, + CountryToIsoIndex{224267, "ad"}, + CountryToIsoIndex{224282, "aq"}, + CountryToIsoIndex{224301, "aq"}, + CountryToIsoIndex{224322, "aq"}, + CountryToIsoIndex{224341, "aq"}, + CountryToIsoIndex{224362, "aq"}, + CountryToIsoIndex{224383, "ag"}, + CountryToIsoIndex{224414, "ag"}, + CountryToIsoIndex{224447, "ag"}, + CountryToIsoIndex{224484, "ag"}, + CountryToIsoIndex{224519, "ag"}, + CountryToIsoIndex{224554, "ag"}, + CountryToIsoIndex{224589, "ag"}, + CountryToIsoIndex{224628, "ag"}, + CountryToIsoIndex{224667, "ag"}, + CountryToIsoIndex{224700, "ag"}, + CountryToIsoIndex{224737, "ag"}, + CountryToIsoIndex{224770, "ag"}, + CountryToIsoIndex{224803, "us"}, + CountryToIsoIndex{224810, "vi"}, + CountryToIsoIndex{224852, "ai"}, + CountryToIsoIndex{224867, "ai"}, + CountryToIsoIndex{224882, "sa"}, + CountryToIsoIndex{224914, "ae"}, + CountryToIsoIndex{224962, "ru"}, + CountryToIsoIndex{224981, "qo"}, + CountryToIsoIndex{225011, "ar"}, + CountryToIsoIndex{225028, "ar"}, + CountryToIsoIndex{225047, "ar"}, + CountryToIsoIndex{225066, "ar"}, + CountryToIsoIndex{225085, "am"}, + CountryToIsoIndex{225106, "am"}, + CountryToIsoIndex{225119, "am"}, + CountryToIsoIndex{225134, "am"}, + CountryToIsoIndex{225149, "aw"}, + CountryToIsoIndex{225160, "ar"}, + CountryToIsoIndex{225179, "ac"}, + CountryToIsoIndex{225205, "ac"}, + CountryToIsoIndex{225233, "ck"}, + CountryToIsoIndex{225257, "pn"}, + CountryToIsoIndex{225287, "hm"}, + CountryToIsoIndex{225335, "tc"}, + CountryToIsoIndex{225377, "ac"}, + CountryToIsoIndex{225392, "au"}, + CountryToIsoIndex{225413, "at"}, + CountryToIsoIndex{225430, "af"}, + CountryToIsoIndex{225449, "af"}, + CountryToIsoIndex{225470, "af"}, + CountryToIsoIndex{225491, "za"}, + CountryToIsoIndex{225519, "af"}, + CountryToIsoIndex{225540, "us"}, + CountryToIsoIndex{225547, "us"}, + CountryToIsoIndex{225554, "um"}, + CountryToIsoIndex{225612, "au"}, + CountryToIsoIndex{225631, "at"}, + CountryToIsoIndex{225646, "us"}, + CountryToIsoIndex{225717, "au"}, + CountryToIsoIndex{225740, "us"}, + CountryToIsoIndex{225747, "vi"}, + CountryToIsoIndex{225784, "um"}, + CountryToIsoIndex{225819, "vi"}, + CountryToIsoIndex{225863, "um"}, + CountryToIsoIndex{225916, "bs"}, + CountryToIsoIndex{225927, "bs"}, + CountryToIsoIndex{225955, "bs"}, + CountryToIsoIndex{225985, "bs"}, + CountryToIsoIndex{226015, "bs"}, + CountryToIsoIndex{226045, "bs"}, + CountryToIsoIndex{226079, "bs"}, + CountryToIsoIndex{226113, "bs"}, + CountryToIsoIndex{226147, "bs"}, + CountryToIsoIndex{226160, "bs"}, + CountryToIsoIndex{226188, "np"}, + CountryToIsoIndex{226199, "bg"}, + CountryToIsoIndex{226216, "bo"}, + CountryToIsoIndex{226231, "bd"}, + CountryToIsoIndex{226250, "bd"}, + CountryToIsoIndex{226269, "bb"}, + CountryToIsoIndex{226286, "bb"}, + CountryToIsoIndex{226303, "eh"}, + CountryToIsoIndex{226327, "bw"}, + CountryToIsoIndex{226344, "eh"}, + CountryToIsoIndex{226368, "eh"}, + CountryToIsoIndex{226392, "bs"}, + CountryToIsoIndex{226405, "bh"}, + CountryToIsoIndex{226420, "bh"}, + CountryToIsoIndex{226435, "bh"}, + CountryToIsoIndex{226450, "bh"}, + CountryToIsoIndex{226465, "bs"}, + CountryToIsoIndex{226491, "by"}, + CountryToIsoIndex{226506, "by"}, + CountryToIsoIndex{226523, "be"}, + CountryToIsoIndex{226536, "be"}, + CountryToIsoIndex{226551, "bz"}, + CountryToIsoIndex{226562, "bz"}, + CountryToIsoIndex{226575, "by"}, + CountryToIsoIndex{226590, "by"}, + CountryToIsoIndex{226611, "by"}, + CountryToIsoIndex{226630, "be"}, + CountryToIsoIndex{226645, "be"}, + CountryToIsoIndex{226658, "be"}, + CountryToIsoIndex{226673, "be"}, + CountryToIsoIndex{226688, "be"}, + CountryToIsoIndex{226703, "bz"}, + CountryToIsoIndex{226714, "bj"}, + CountryToIsoIndex{226725, "bj"}, + CountryToIsoIndex{226736, "ci"}, + CountryToIsoIndex{226775, "ci"}, + CountryToIsoIndex{226816, "ae"}, + CountryToIsoIndex{226869, "bm"}, + CountryToIsoIndex{226897, "bm"}, + CountryToIsoIndex{226927, "bm"}, + CountryToIsoIndex{226959, "bm"}, + CountryToIsoIndex{226974, "bm"}, + CountryToIsoIndex{227010, "bm"}, + CountryToIsoIndex{227025, "bm"}, + CountryToIsoIndex{227059, "bm"}, + CountryToIsoIndex{227088, "bm"}, + CountryToIsoIndex{227124, "bm"}, + CountryToIsoIndex{227160, "mk"}, + CountryToIsoIndex{227230, "ae"}, + CountryToIsoIndex{227277, "ae"}, + CountryToIsoIndex{227328, "gb"}, + CountryToIsoIndex{227362, "ae"}, + CountryToIsoIndex{227413, "gb"}, + CountryToIsoIndex{227418, "mo"}, + CountryToIsoIndex{227486, "hk"}, + CountryToIsoIndex{227561, "cx"}, + CountryToIsoIndex{227589, "cx"}, + CountryToIsoIndex{227617, "bg"}, + CountryToIsoIndex{227630, "bg"}, + CountryToIsoIndex{227645, "bg"}, + CountryToIsoIndex{227662, "bg"}, + CountryToIsoIndex{227685, "bg"}, + CountryToIsoIndex{227702, "bo"}, + CountryToIsoIndex{227715, "bo"}, + CountryToIsoIndex{227730, "bo"}, + CountryToIsoIndex{227747, "bo"}, + CountryToIsoIndex{227762, "bq"}, + CountryToIsoIndex{227816, "bq"}, + CountryToIsoIndex{227872, "bq"}, + CountryToIsoIndex{227930, "bq"}, + CountryToIsoIndex{227982, "cf"}, + CountryToIsoIndex{228039, "ba"}, + CountryToIsoIndex{228076, "ba"}, + CountryToIsoIndex{228117, "ba"}, + CountryToIsoIndex{228149, "ba"}, + CountryToIsoIndex{228190, "ba"}, + CountryToIsoIndex{228231, "ba"}, + CountryToIsoIndex{228276, "ba"}, + CountryToIsoIndex{228321, "ba"}, + CountryToIsoIndex{228360, "ba"}, + CountryToIsoIndex{228403, "ba"}, + CountryToIsoIndex{228446, "ba"}, + CountryToIsoIndex{228485, "ba"}, + CountryToIsoIndex{228524, "bw"}, + CountryToIsoIndex{228541, "bw"}, + CountryToIsoIndex{228560, "bw"}, + CountryToIsoIndex{228575, "br"}, + CountryToIsoIndex{228588, "br"}, + CountryToIsoIndex{228603, "br"}, + CountryToIsoIndex{228620, "br"}, + CountryToIsoIndex{228639, "br"}, + CountryToIsoIndex{228658, "br"}, + CountryToIsoIndex{228675, "ci"}, + CountryToIsoIndex{228719, "ci"}, + CountryToIsoIndex{228767, "vg"}, + CountryToIsoIndex{228816, "vg"}, + CountryToIsoIndex{228865, "io"}, + CountryToIsoIndex{228964, "io"}, + CountryToIsoIndex{229020, "gb"}, + CountryToIsoIndex{229037, "vg"}, + CountryToIsoIndex{229084, "vg"}, + CountryToIsoIndex{229133, "io"}, + CountryToIsoIndex{229213, "io"}, + CountryToIsoIndex{229281, "vg"}, + CountryToIsoIndex{229334, "vg"}, + CountryToIsoIndex{229387, "vg"}, + CountryToIsoIndex{229442, "io"}, + CountryToIsoIndex{229507, "io"}, + CountryToIsoIndex{229578, "io"}, + CountryToIsoIndex{229650, "io"}, + CountryToIsoIndex{229725, "io"}, + CountryToIsoIndex{229802, "vg"}, + CountryToIsoIndex{229857, "vg"}, + CountryToIsoIndex{229910, "io"}, + CountryToIsoIndex{229989, "vg"}, + CountryToIsoIndex{230046, "io"}, + CountryToIsoIndex{230108, "bn"}, + CountryToIsoIndex{230121, "bn"}, + CountryToIsoIndex{230155, "bn"}, + CountryToIsoIndex{230189, "bn"}, + CountryToIsoIndex{230202, "io"}, + CountryToIsoIndex{230277, "vg"}, + CountryToIsoIndex{230334, "ci"}, + CountryToIsoIndex{230376, "bv"}, + CountryToIsoIndex{230396, "bv"}, + CountryToIsoIndex{230414, "bv"}, + CountryToIsoIndex{230434, "bv"}, + CountryToIsoIndex{230454, "bv"}, + CountryToIsoIndex{230476, "bv"}, + CountryToIsoIndex{230500, "bg"}, + CountryToIsoIndex{230517, "bg"}, + CountryToIsoIndex{230534, "bg"}, + CountryToIsoIndex{230551, "bf"}, + CountryToIsoIndex{230575, "bf"}, + CountryToIsoIndex{230600, "bf"}, + CountryToIsoIndex{230624, "bf"}, + CountryToIsoIndex{230648, "bi"}, + CountryToIsoIndex{230665, "bi"}, + CountryToIsoIndex{230680, "bi"}, + CountryToIsoIndex{230695, "bt"}, + CountryToIsoIndex{230706, "bt"}, + CountryToIsoIndex{230717, "gb"}, + CountryToIsoIndex{230743, "bg"}, + CountryToIsoIndex{230760, "by"}, + CountryToIsoIndex{230777, "ae"}, + CountryToIsoIndex{230826, "by"}, + CountryToIsoIndex{230849, "mk"}, + CountryToIsoIndex{230877, "by"}, + CountryToIsoIndex{230902, "cd"}, + CountryToIsoIndex{230967, "do"}, + CountryToIsoIndex{231021, "cz"}, + CountryToIsoIndex{231063, "bh"}, + CountryToIsoIndex{231078, "bh"}, + CountryToIsoIndex{231093, "gb"}, + CountryToIsoIndex{231118, "vn"}, + CountryToIsoIndex{231133, "wf"}, + CountryToIsoIndex{231160, "vu"}, + CountryToIsoIndex{231175, "va"}, + CountryToIsoIndex{231190, "va"}, + CountryToIsoIndex{231219, "va"}, + CountryToIsoIndex{231234, "gb"}, + CountryToIsoIndex{231270, "gb"}, + CountryToIsoIndex{231300, "gb"}, + CountryToIsoIndex{231329, "hu"}, + CountryToIsoIndex{231342, "hu"}, + CountryToIsoIndex{231357, "hu"}, + CountryToIsoIndex{231372, "ve"}, + CountryToIsoIndex{231391, "ve"}, + CountryToIsoIndex{231408, "ve"}, + CountryToIsoIndex{231427, "ve"}, + CountryToIsoIndex{231446, "vn"}, + CountryToIsoIndex{231459, "vn"}, + CountryToIsoIndex{231474, "vi"}, + CountryToIsoIndex{231513, "vg"}, + CountryToIsoIndex{231562, "vi"}, + CountryToIsoIndex{231609, "vg"}, + CountryToIsoIndex{231664, "vg"}, + CountryToIsoIndex{231716, "vi"}, + CountryToIsoIndex{231754, "vn"}, + CountryToIsoIndex{231771, "um"}, + CountryToIsoIndex{231814, "qo"}, + CountryToIsoIndex{231844, "ac"}, + CountryToIsoIndex{231876, "tl"}, + CountryToIsoIndex{231906, "bv"}, + CountryToIsoIndex{231930, "dg"}, + CountryToIsoIndex{231969, "cx"}, + CountryToIsoIndex{231995, "cp"}, + CountryToIsoIndex{232029, "im"}, + CountryToIsoIndex{232051, "nf"}, + CountryToIsoIndex{232081, "sh"}, + CountryToIsoIndex{232120, "ac"}, + CountryToIsoIndex{232154, "vn"}, + CountryToIsoIndex{232169, "gb"}, + CountryToIsoIndex{232198, "qo"}, + CountryToIsoIndex{232232, "um"}, + CountryToIsoIndex{232273, "vi"}, + CountryToIsoIndex{232317, "am"}, + CountryToIsoIndex{232334, "vn"}, + CountryToIsoIndex{232349, "vn"}, + CountryToIsoIndex{232365, "fr"}, + CountryToIsoIndex{232380, "ga"}, + CountryToIsoIndex{232391, "kz"}, + CountryToIsoIndex{232412, "ht"}, + CountryToIsoIndex{232423, "gy"}, + CountryToIsoIndex{232436, "gm"}, + CountryToIsoIndex{232447, "gm"}, + CountryToIsoIndex{232460, "gm"}, + CountryToIsoIndex{232475, "gm"}, + CountryToIsoIndex{232488, "gh"}, + CountryToIsoIndex{232497, "hn"}, + CountryToIsoIndex{232514, "hk"}, + CountryToIsoIndex{232529, "hk"}, + CountryToIsoIndex{232565, "gy"}, + CountryToIsoIndex{232576, "ht"}, + CountryToIsoIndex{232587, "ht"}, + CountryToIsoIndex{232598, "gy"}, + CountryToIsoIndex{232611, "gp"}, + CountryToIsoIndex{232630, "gp"}, + CountryToIsoIndex{232647, "gp"}, + CountryToIsoIndex{232666, "gp"}, + CountryToIsoIndex{232685, "gp"}, + CountryToIsoIndex{232704, "gt"}, + CountryToIsoIndex{232721, "gt"}, + CountryToIsoIndex{232740, "gt"}, + CountryToIsoIndex{232759, "gy"}, + CountryToIsoIndex{232774, "gf"}, + CountryToIsoIndex{232804, "gn"}, + CountryToIsoIndex{232817, "gw"}, + CountryToIsoIndex{232841, "gn"}, + CountryToIsoIndex{232854, "gw"}, + CountryToIsoIndex{232878, "gq"}, + CountryToIsoIndex{232910, "gn"}, + CountryToIsoIndex{232925, "gw"}, + CountryToIsoIndex{232951, "gw"}, + CountryToIsoIndex{232977, "gn"}, + CountryToIsoIndex{232990, "gw"}, + CountryToIsoIndex{233014, "de"}, + CountryToIsoIndex{233033, "de"}, + CountryToIsoIndex{233046, "de"}, + CountryToIsoIndex{233061, "de"}, + CountryToIsoIndex{233078, "de"}, + CountryToIsoIndex{233097, "de"}, + CountryToIsoIndex{233114, "gg"}, + CountryToIsoIndex{233127, "gg"}, + CountryToIsoIndex{233140, "gg"}, + CountryToIsoIndex{233153, "gi"}, + CountryToIsoIndex{233172, "hn"}, + CountryToIsoIndex{233189, "hk"}, + CountryToIsoIndex{233204, "hk"}, + CountryToIsoIndex{233228, "hk"}, + CountryToIsoIndex{233263, "hk"}, + CountryToIsoIndex{233315, "hk"}, + CountryToIsoIndex{233348, "hk"}, + CountryToIsoIndex{233404, "hk"}, + CountryToIsoIndex{233441, "gr"}, + CountryToIsoIndex{233450, "gr"}, + CountryToIsoIndex{233463, "gd"}, + CountryToIsoIndex{233478, "gl"}, + CountryToIsoIndex{233495, "gl"}, + CountryToIsoIndex{233514, "gl"}, + CountryToIsoIndex{233535, "gl"}, + CountryToIsoIndex{233558, "gr"}, + CountryToIsoIndex{233569, "gr"}, + CountryToIsoIndex{233582, "gr"}, + CountryToIsoIndex{233595, "ge"}, + CountryToIsoIndex{233608, "ge"}, + CountryToIsoIndex{233623, "ge"}, + CountryToIsoIndex{233636, "gr"}, + CountryToIsoIndex{233649, "gr"}, + CountryToIsoIndex{233660, "gd"}, + CountryToIsoIndex{233675, "gl"}, + CountryToIsoIndex{233696, "gr"}, + CountryToIsoIndex{233709, "gu"}, + CountryToIsoIndex{233718, "ge"}, + CountryToIsoIndex{233737, "ge"}, + CountryToIsoIndex{233760, "ge"}, + CountryToIsoIndex{233781, "gg"}, + CountryToIsoIndex{233794, "gr"}, + CountryToIsoIndex{233807, "iq"}, + CountryToIsoIndex{233820, "kg"}, + CountryToIsoIndex{233843, "gi"}, + CountryToIsoIndex{233862, "ge"}, + CountryToIsoIndex{233871, "ir"}, + CountryToIsoIndex{233894, "cx"}, + CountryToIsoIndex{233949, "qa"}, + CountryToIsoIndex{233960, "dm"}, + CountryToIsoIndex{233977, "do"}, + CountryToIsoIndex{234025, "dk"}, + CountryToIsoIndex{234034, "dk"}, + CountryToIsoIndex{234053, "dk"}, + CountryToIsoIndex{234064, "dk"}, + CountryToIsoIndex{234077, "dk"}, + CountryToIsoIndex{234090, "dk"}, + CountryToIsoIndex{234101, "cd"}, + CountryToIsoIndex{234154, "cd"}, + CountryToIsoIndex{234207, "je"}, + CountryToIsoIndex{234220, "je"}, + CountryToIsoIndex{234233, "dj"}, + CountryToIsoIndex{234248, "dj"}, + CountryToIsoIndex{234263, "je"}, + CountryToIsoIndex{234276, "dj"}, + CountryToIsoIndex{234291, "je"}, + CountryToIsoIndex{234304, "dg"}, + CountryToIsoIndex{234328, "dg"}, + CountryToIsoIndex{234352, "dg"}, + CountryToIsoIndex{234378, "dg"}, + CountryToIsoIndex{234400, "dg"}, + CountryToIsoIndex{234424, "dg"}, + CountryToIsoIndex{234452, "dm"}, + CountryToIsoIndex{234469, "do"}, + CountryToIsoIndex{234511, "do"}, + CountryToIsoIndex{234551, "do"}, + CountryToIsoIndex{234595, "do"}, + CountryToIsoIndex{234639, "do"}, + CountryToIsoIndex{234685, "do"}, + CountryToIsoIndex{234729, "do"}, + CountryToIsoIndex{234777, "dm"}, + CountryToIsoIndex{234794, "do"}, + CountryToIsoIndex{234842, "cd"}, + CountryToIsoIndex{234858, "jm"}, + CountryToIsoIndex{234877, "dg"}, + CountryToIsoIndex{234901, "ez"}, + CountryToIsoIndex{234917, "ez"}, + CountryToIsoIndex{234934, "eg"}, + CountryToIsoIndex{234947, "eg"}, + CountryToIsoIndex{234960, "eg"}, + CountryToIsoIndex{234973, "ec"}, + CountryToIsoIndex{234988, "gq"}, + CountryToIsoIndex{235024, "gq"}, + CountryToIsoIndex{235062, "gq"}, + CountryToIsoIndex{235104, "gq"}, + CountryToIsoIndex{235140, "gq"}, + CountryToIsoIndex{235180, "sv"}, + CountryToIsoIndex{235202, "ye"}, + CountryToIsoIndex{235211, "er"}, + CountryToIsoIndex{235226, "er"}, + CountryToIsoIndex{235243, "am"}, + CountryToIsoIndex{235260, "am"}, + CountryToIsoIndex{235281, "ee"}, + CountryToIsoIndex{235296, "ee"}, + CountryToIsoIndex{235313, "ee"}, + CountryToIsoIndex{235328, "et"}, + CountryToIsoIndex{235343, "et"}, + CountryToIsoIndex{235360, "ez"}, + CountryToIsoIndex{235379, "ez"}, + CountryToIsoIndex{235396, "et"}, + CountryToIsoIndex{235413, "et"}, + CountryToIsoIndex{235428, "ez"}, + CountryToIsoIndex{235445, "dz"}, + CountryToIsoIndex{235458, "za"}, + CountryToIsoIndex{235511, "gs"}, + CountryToIsoIndex{235593, "kr"}, + CountryToIsoIndex{235619, "ss"}, + CountryToIsoIndex{235645, "jp"}, + CountryToIsoIndex{235660, "nz"}, + CountryToIsoIndex{235686, "nc"}, + CountryToIsoIndex{235714, "nz"}, + CountryToIsoIndex{235740, "nc"}, + CountryToIsoIndex{235768, "je"}, + CountryToIsoIndex{235779, "dj"}, + CountryToIsoIndex{235792, "ci"}, + CountryToIsoIndex{235821, "qo"}, + CountryToIsoIndex{235869, "zm"}, + CountryToIsoIndex{235880, "zm"}, + CountryToIsoIndex{235893, "zm"}, + CountryToIsoIndex{235908, "zm"}, + CountryToIsoIndex{235921, "eh"}, + CountryToIsoIndex{235949, "eh"}, + CountryToIsoIndex{235979, "eh"}, + CountryToIsoIndex{236009, "eh"}, + CountryToIsoIndex{236037, "nz"}, + CountryToIsoIndex{236063, "cv"}, + CountryToIsoIndex{236082, "cv"}, + CountryToIsoIndex{236118, "zw"}, + CountryToIsoIndex{236135, "us"}, + CountryToIsoIndex{236178, "qo"}, + CountryToIsoIndex{236208, "cx"}, + CountryToIsoIndex{236235, "us"}, + CountryToIsoIndex{236242, "zw"}, + CountryToIsoIndex{236259, "zw"}, + CountryToIsoIndex{236276, "tl"}, + CountryToIsoIndex{236296, "gb"}, + CountryToIsoIndex{236301, "il"}, + CountryToIsoIndex{236314, "il"}, + CountryToIsoIndex{236329, "tl"}, + CountryToIsoIndex{236355, "us"}, + CountryToIsoIndex{236360, "in"}, + CountryToIsoIndex{236369, "io"}, + CountryToIsoIndex{236439, "in"}, + CountryToIsoIndex{236450, "in"}, + CountryToIsoIndex{236463, "id"}, + CountryToIsoIndex{236478, "id"}, + CountryToIsoIndex{236495, "id"}, + CountryToIsoIndex{236514, "id"}, + CountryToIsoIndex{236535, "jo"}, + CountryToIsoIndex{236552, "jo"}, + CountryToIsoIndex{236571, "iq"}, + CountryToIsoIndex{236580, "iq"}, + CountryToIsoIndex{236589, "ir"}, + CountryToIsoIndex{236598, "ie"}, + CountryToIsoIndex{236611, "ie"}, + CountryToIsoIndex{236626, "ie"}, + CountryToIsoIndex{236643, "ie"}, + CountryToIsoIndex{236662, "iq"}, + CountryToIsoIndex{236671, "ie"}, + CountryToIsoIndex{236682, "se"}, + CountryToIsoIndex{236693, "ch"}, + CountryToIsoIndex{236708, "is"}, + CountryToIsoIndex{236721, "is"}, + CountryToIsoIndex{236736, "is"}, + CountryToIsoIndex{236753, "is"}, + CountryToIsoIndex{236772, "es"}, + CountryToIsoIndex{236785, "es"}, + CountryToIsoIndex{236800, "es"}, + CountryToIsoIndex{236817, "il"}, + CountryToIsoIndex{236830, "il"}, + CountryToIsoIndex{236843, "tl"}, + CountryToIsoIndex{236869, "tl"}, + CountryToIsoIndex{236919, "tl"}, + CountryToIsoIndex{236945, "it"}, + CountryToIsoIndex{236956, "it"}, + CountryToIsoIndex{236969, "it"}, + CountryToIsoIndex{236984, "gb"}, + CountryToIsoIndex{237004, "us"}, + CountryToIsoIndex{237036, "ye"}, + CountryToIsoIndex{237047, "gb"}, + CountryToIsoIndex{237075, "jo"}, + CountryToIsoIndex{237088, "jo"}, + CountryToIsoIndex{237105, "jo"}, + CountryToIsoIndex{237122, "ye"}, + CountryToIsoIndex{237133, "cv"}, + CountryToIsoIndex{237153, "cv"}, + CountryToIsoIndex{237173, "cv"}, + CountryToIsoIndex{237193, "kz"}, + CountryToIsoIndex{237212, "kz"}, + CountryToIsoIndex{237235, "kz"}, + CountryToIsoIndex{237254, "ky"}, + CountryToIsoIndex{237284, "ky"}, + CountryToIsoIndex{237316, "ky"}, + CountryToIsoIndex{237346, "ky"}, + CountryToIsoIndex{237378, "ky"}, + CountryToIsoIndex{237412, "ky"}, + CountryToIsoIndex{237446, "ky"}, + CountryToIsoIndex{237473, "ky"}, + CountryToIsoIndex{237507, "ky"}, + CountryToIsoIndex{237535, "cc"}, + CountryToIsoIndex{237584, "nc"}, + CountryToIsoIndex{237612, "co"}, + CountryToIsoIndex{237629, "kh"}, + CountryToIsoIndex{237646, "kh"}, + CountryToIsoIndex{237659, "kh"}, + CountryToIsoIndex{237674, "kh"}, + CountryToIsoIndex{237689, "kh"}, + CountryToIsoIndex{237704, "cm"}, + CountryToIsoIndex{237719, "km"}, + CountryToIsoIndex{237753, "ca"}, + CountryToIsoIndex{237768, "ca"}, + CountryToIsoIndex{237783, "ca"}, + CountryToIsoIndex{237794, "ca"}, + CountryToIsoIndex{237807, "ic"}, + CountryToIsoIndex{237833, "ic"}, + CountryToIsoIndex{237861, "ic"}, + CountryToIsoIndex{237889, "ic"}, + CountryToIsoIndex{237923, "ic"}, + CountryToIsoIndex{237953, "ic"}, + CountryToIsoIndex{237985, "ic"}, + CountryToIsoIndex{238012, "ic"}, + CountryToIsoIndex{238046, "ic"}, + CountryToIsoIndex{238080, "ic"}, + CountryToIsoIndex{238108, "cv"}, + CountryToIsoIndex{238128, "bq"}, + CountryToIsoIndex{238166, "bq"}, + CountryToIsoIndex{238206, "bq"}, + CountryToIsoIndex{238240, "bq"}, + CountryToIsoIndex{238276, "bq"}, + CountryToIsoIndex{238316, "qa"}, + CountryToIsoIndex{238327, "ky"}, + CountryToIsoIndex{238355, "ky"}, + CountryToIsoIndex{238387, "ky"}, + CountryToIsoIndex{238421, "ke"}, + CountryToIsoIndex{238430, "ke"}, + CountryToIsoIndex{238441, "ke"}, + CountryToIsoIndex{238454, "ke"}, + CountryToIsoIndex{238465, "nz"}, + CountryToIsoIndex{238491, "nc"}, + CountryToIsoIndex{238519, "cn"}, + CountryToIsoIndex{238528, "cy"}, + CountryToIsoIndex{238539, "cy"}, + CountryToIsoIndex{238548, "cy"}, + CountryToIsoIndex{238559, "kg"}, + CountryToIsoIndex{238578, "kg"}, + CountryToIsoIndex{238593, "kg"}, + CountryToIsoIndex{238610, "kg"}, + CountryToIsoIndex{238631, "kg"}, + CountryToIsoIndex{238650, "ki"}, + CountryToIsoIndex{238667, "cn"}, + CountryToIsoIndex{238678, "cp"}, + CountryToIsoIndex{238699, "cp"}, + CountryToIsoIndex{238731, "cp"}, + CountryToIsoIndex{238761, "cp"}, + CountryToIsoIndex{238793, "cp"}, + CountryToIsoIndex{238825, "kp"}, + CountryToIsoIndex{238834, "cc"}, + CountryToIsoIndex{238873, "cc"}, + CountryToIsoIndex{238914, "cc"}, + CountryToIsoIndex{238955, "cc"}, + CountryToIsoIndex{238998, "cc"}, + CountryToIsoIndex{239041, "cc"}, + CountryToIsoIndex{239086, "cc"}, + CountryToIsoIndex{239122, "cc"}, + CountryToIsoIndex{239173, "cc"}, + CountryToIsoIndex{239224, "cc"}, + CountryToIsoIndex{239288, "cc"}, + CountryToIsoIndex{239315, "cc"}, + CountryToIsoIndex{239368, "co"}, + CountryToIsoIndex{239383, "co"}, + CountryToIsoIndex{239400, "co"}, + CountryToIsoIndex{239419, "co"}, + CountryToIsoIndex{239436, "km"}, + CountryToIsoIndex{239447, "km"}, + CountryToIsoIndex{239473, "km"}, + CountryToIsoIndex{239501, "km"}, + CountryToIsoIndex{239529, "km"}, + CountryToIsoIndex{239559, "km"}, + CountryToIsoIndex{239574, "km"}, + CountryToIsoIndex{239587, "km"}, + CountryToIsoIndex{239602, "km"}, + CountryToIsoIndex{239632, "km"}, + CountryToIsoIndex{239664, "km"}, + CountryToIsoIndex{239698, "km"}, + CountryToIsoIndex{239711, "km"}, + CountryToIsoIndex{239739, "cd"}, + CountryToIsoIndex{239759, "cd"}, + CountryToIsoIndex{239787, "cg"}, + CountryToIsoIndex{239819, "cg"}, + CountryToIsoIndex{239849, "cg"}, + CountryToIsoIndex{239897, "cd"}, + CountryToIsoIndex{239963, "cd"}, + CountryToIsoIndex{239983, "cd"}, + CountryToIsoIndex{240003, "cd"}, + CountryToIsoIndex{240031, "cg"}, + CountryToIsoIndex{240063, "cg"}, + CountryToIsoIndex{240097, "cg"}, + CountryToIsoIndex{240135, "cg"}, + CountryToIsoIndex{240169, "cd"}, + CountryToIsoIndex{240189, "cg"}, + CountryToIsoIndex{240219, "cg"}, + CountryToIsoIndex{240253, "cd"}, + CountryToIsoIndex{240281, "cg"}, + CountryToIsoIndex{240313, "cd"}, + CountryToIsoIndex{240376, "cg"}, + CountryToIsoIndex{240412, "cg"}, + CountryToIsoIndex{240448, "cd"}, + CountryToIsoIndex{240478, "cg"}, + CountryToIsoIndex{240508, "cg"}, + CountryToIsoIndex{240565, "cd"}, + CountryToIsoIndex{240591, "kp"}, + CountryToIsoIndex{240617, "xk"}, + CountryToIsoIndex{240630, "xk"}, + CountryToIsoIndex{240643, "cr"}, + CountryToIsoIndex{240663, "cr"}, + CountryToIsoIndex{240683, "cr"}, + CountryToIsoIndex{240703, "cr"}, + CountryToIsoIndex{240723, "cr"}, + CountryToIsoIndex{240742, "ci"}, + CountryToIsoIndex{240765, "ci"}, + CountryToIsoIndex{240788, "ci"}, + CountryToIsoIndex{240811, "cu"}, + CountryToIsoIndex{240820, "kw"}, + CountryToIsoIndex{240833, "kw"}, + CountryToIsoIndex{240846, "ck"}, + CountryToIsoIndex{240868, "ck"}, + CountryToIsoIndex{240892, "ck"}, + CountryToIsoIndex{240916, "ck"}, + CountryToIsoIndex{240942, "ck"}, + CountryToIsoIndex{240972, "ck"}, + CountryToIsoIndex{240998, "ck"}, + CountryToIsoIndex{241026, "cw"}, + CountryToIsoIndex{241041, "cu"}, + CountryToIsoIndex{241052, "kz"}, + CountryToIsoIndex{241075, "gs"}, + CountryToIsoIndex{241155, "kr"}, + CountryToIsoIndex{241179, "ss"}, + CountryToIsoIndex{241203, "za"}, + CountryToIsoIndex{241252, "kp"}, + CountryToIsoIndex{241284, "mp"}, + CountryToIsoIndex{241341, "kg"}, + CountryToIsoIndex{241362, "cn"}, + CountryToIsoIndex{241373, "cw"}, + CountryToIsoIndex{241388, "cw"}, + CountryToIsoIndex{241403, "cy"}, + CountryToIsoIndex{241412, "ki"}, + CountryToIsoIndex{241429, "ki"}, + CountryToIsoIndex{241446, "cn"}, + CountryToIsoIndex{241457, "kw"}, + CountryToIsoIndex{241470, "kw"}, + CountryToIsoIndex{241483, "ck"}, + CountryToIsoIndex{241511, "za"}, + CountryToIsoIndex{241537, "gs"}, + CountryToIsoIndex{241619, "ss"}, + CountryToIsoIndex{241643, "la"}, + CountryToIsoIndex{241652, "lv"}, + CountryToIsoIndex{241663, "lv"}, + CountryToIsoIndex{241676, "lv"}, + CountryToIsoIndex{241691, "lv"}, + CountryToIsoIndex{241704, "pl"}, + CountryToIsoIndex{241721, "ls"}, + CountryToIsoIndex{241734, "ls"}, + CountryToIsoIndex{241747, "lv"}, + CountryToIsoIndex{241764, "lb"}, + CountryToIsoIndex{241775, "lr"}, + CountryToIsoIndex{241788, "lr"}, + CountryToIsoIndex{241803, "lr"}, + CountryToIsoIndex{241820, "ly"}, + CountryToIsoIndex{241831, "ly"}, + CountryToIsoIndex{241844, "lb"}, + CountryToIsoIndex{241855, "ly"}, + CountryToIsoIndex{241864, "ly"}, + CountryToIsoIndex{241875, "ly"}, + CountryToIsoIndex{241888, "ly"}, + CountryToIsoIndex{241903, "lt"}, + CountryToIsoIndex{241914, "lt"}, + CountryToIsoIndex{241933, "li"}, + CountryToIsoIndex{241956, "li"}, + CountryToIsoIndex{241979, "li"}, + CountryToIsoIndex{242002, "li"}, + CountryToIsoIndex{242023, "lb"}, + CountryToIsoIndex{242036, "lu"}, + CountryToIsoIndex{242057, "lu"}, + CountryToIsoIndex{242078, "lu"}, + CountryToIsoIndex{242099, "lr"}, + CountryToIsoIndex{242114, "lr"}, + CountryToIsoIndex{242129, "lb"}, + CountryToIsoIndex{242140, "ly"}, + CountryToIsoIndex{242151, "lt"}, + CountryToIsoIndex{242162, "li"}, + CountryToIsoIndex{242185, "li"}, + CountryToIsoIndex{242208, "lu"}, + CountryToIsoIndex{242229, "mm"}, + CountryToIsoIndex{242255, "mu"}, + CountryToIsoIndex{242270, "mu"}, + CountryToIsoIndex{242287, "mr"}, + CountryToIsoIndex{242306, "mr"}, + CountryToIsoIndex{242327, "mr"}, + CountryToIsoIndex{242350, "mr"}, + CountryToIsoIndex{242371, "mu"}, + CountryToIsoIndex{242388, "mu"}, + CountryToIsoIndex{242407, "mu"}, + CountryToIsoIndex{242424, "mg"}, + CountryToIsoIndex{242445, "mz"}, + CountryToIsoIndex{242462, "yt"}, + CountryToIsoIndex{242473, "yt"}, + CountryToIsoIndex{242488, "mo"}, + CountryToIsoIndex{242499, "mo"}, + CountryToIsoIndex{242531, "mo"}, + CountryToIsoIndex{242542, "mo"}, + CountryToIsoIndex{242562, "mo"}, + CountryToIsoIndex{242591, "mo"}, + CountryToIsoIndex{242611, "mo"}, + CountryToIsoIndex{242642, "mo"}, + CountryToIsoIndex{242690, "mo"}, + CountryToIsoIndex{242708, "mo"}, + CountryToIsoIndex{242760, "mo"}, + CountryToIsoIndex{242778, "mo"}, + CountryToIsoIndex{242837, "mo"}, + CountryToIsoIndex{242869, "mo"}, + CountryToIsoIndex{242904, "mo"}, + CountryToIsoIndex{242915, "mo"}, + CountryToIsoIndex{242944, "mk"}, + CountryToIsoIndex{242959, "mk"}, + CountryToIsoIndex{243050, "mk"}, + CountryToIsoIndex{243067, "mk"}, + CountryToIsoIndex{243086, "mk"}, + CountryToIsoIndex{243116, "mk"}, + CountryToIsoIndex{243213, "mk"}, + CountryToIsoIndex{243243, "mk"}, + CountryToIsoIndex{243284, "mk"}, + CountryToIsoIndex{243328, "mk"}, + CountryToIsoIndex{243349, "mk"}, + CountryToIsoIndex{243379, "mk"}, + CountryToIsoIndex{243411, "mk"}, + CountryToIsoIndex{243443, "mk"}, + CountryToIsoIndex{243462, "mk"}, + CountryToIsoIndex{243492, "mk"}, + CountryToIsoIndex{243522, "mw"}, + CountryToIsoIndex{243535, "mw"}, + CountryToIsoIndex{243548, "my"}, + CountryToIsoIndex{243561, "my"}, + CountryToIsoIndex{243576, "my"}, + CountryToIsoIndex{243593, "my"}, + CountryToIsoIndex{243610, "my"}, + CountryToIsoIndex{243629, "mv"}, + CountryToIsoIndex{243642, "mv"}, + CountryToIsoIndex{243670, "mv"}, + CountryToIsoIndex{243685, "md"}, + CountryToIsoIndex{243700, "my"}, + CountryToIsoIndex{243717, "ml"}, + CountryToIsoIndex{243726, "mt"}, + CountryToIsoIndex{243737, "tl"}, + CountryToIsoIndex{243767, "eh"}, + CountryToIsoIndex{243803, "um"}, + CountryToIsoIndex{243884, "um"}, + CountryToIsoIndex{243936, "mv"}, + CountryToIsoIndex{243951, "mv"}, + CountryToIsoIndex{243983, "mv"}, + CountryToIsoIndex{244015, "mv"}, + CountryToIsoIndex{244049, "mv"}, + CountryToIsoIndex{244068, "mv"}, + CountryToIsoIndex{244085, "mv"}, + CountryToIsoIndex{244102, "mv"}, + CountryToIsoIndex{244119, "mt"}, + CountryToIsoIndex{244132, "ml"}, + CountryToIsoIndex{244141, "mc"}, + CountryToIsoIndex{244154, "mn"}, + CountryToIsoIndex{244171, "ms"}, + CountryToIsoIndex{244190, "cf"}, + CountryToIsoIndex{244245, "ma"}, + CountryToIsoIndex{244258, "ma"}, + CountryToIsoIndex{244273, "ma"}, + CountryToIsoIndex{244288, "ma"}, + CountryToIsoIndex{244301, "mq"}, + CountryToIsoIndex{244318, "mq"}, + CountryToIsoIndex{244337, "mq"}, + CountryToIsoIndex{244356, "mq"}, + CountryToIsoIndex{244375, "mh"}, + CountryToIsoIndex{244403, "mh"}, + CountryToIsoIndex{244433, "mh"}, + CountryToIsoIndex{244467, "mh"}, + CountryToIsoIndex{244499, "mh"}, + CountryToIsoIndex{244533, "mh"}, + CountryToIsoIndex{244571, "mh"}, + CountryToIsoIndex{244607, "mh"}, + CountryToIsoIndex{244643, "mh"}, + CountryToIsoIndex{244675, "mh"}, + CountryToIsoIndex{244709, "mh"}, + CountryToIsoIndex{244741, "mh"}, + CountryToIsoIndex{244775, "mr"}, + CountryToIsoIndex{244798, "mu"}, + CountryToIsoIndex{244819, "yt"}, + CountryToIsoIndex{244830, "hu"}, + CountryToIsoIndex{244847, "yt"}, + CountryToIsoIndex{244858, "yt"}, + CountryToIsoIndex{244871, "um"}, + CountryToIsoIndex{244915, "mu"}, + CountryToIsoIndex{244932, "mr"}, + CountryToIsoIndex{244953, "mk"}, + CountryToIsoIndex{244966, "mk"}, + CountryToIsoIndex{244990, "hu"}, + CountryToIsoIndex{245011, "hu"}, + CountryToIsoIndex{245032, "mx"}, + CountryToIsoIndex{245047, "mx"}, + CountryToIsoIndex{245060, "mx"}, + CountryToIsoIndex{245075, "mx"}, + CountryToIsoIndex{245090, "mx"}, + CountryToIsoIndex{245105, "im"}, + CountryToIsoIndex{245123, "ac"}, + CountryToIsoIndex{245147, "mm"}, + CountryToIsoIndex{245175, "fm"}, + CountryToIsoIndex{245194, "fm"}, + CountryToIsoIndex{245251, "fm"}, + CountryToIsoIndex{245272, "fm"}, + CountryToIsoIndex{245295, "cx"}, + CountryToIsoIndex{245317, "tf"}, + CountryToIsoIndex{245368, "eg"}, + CountryToIsoIndex{245379, "eg"}, + CountryToIsoIndex{245390, "eg"}, + CountryToIsoIndex{245399, "eg"}, + CountryToIsoIndex{245410, "mx"}, + CountryToIsoIndex{245427, "mm"}, + CountryToIsoIndex{245457, "mz"}, + CountryToIsoIndex{245474, "mz"}, + CountryToIsoIndex{245491, "md"}, + CountryToIsoIndex{245504, "md"}, + CountryToIsoIndex{245519, "md"}, + CountryToIsoIndex{245538, "md"}, + CountryToIsoIndex{245553, "mc"}, + CountryToIsoIndex{245566, "mn"}, + CountryToIsoIndex{245579, "mn"}, + CountryToIsoIndex{245594, "mn"}, + CountryToIsoIndex{245611, "mn"}, + CountryToIsoIndex{245630, "mn"}, + CountryToIsoIndex{245653, "mn"}, + CountryToIsoIndex{245670, "ms"}, + CountryToIsoIndex{245687, "me"}, + CountryToIsoIndex{245708, "ms"}, + CountryToIsoIndex{245727, "ms"}, + CountryToIsoIndex{245748, "ma"}, + CountryToIsoIndex{245763, "mn"}, + CountryToIsoIndex{245780, "mn"}, + CountryToIsoIndex{245801, "sh"}, + CountryToIsoIndex{245840, "eg"}, + CountryToIsoIndex{245851, "mm"}, + CountryToIsoIndex{245877, "mm"}, + CountryToIsoIndex{245892, "im"}, + CountryToIsoIndex{245908, "im"}, + CountryToIsoIndex{245926, "im"}, + CountryToIsoIndex{245942, "im"}, + CountryToIsoIndex{245962, "im"}, + CountryToIsoIndex{245980, "im"}, + CountryToIsoIndex{246000, "mm"}, + CountryToIsoIndex{246011, "fm"}, + CountryToIsoIndex{246032, "fm"}, + CountryToIsoIndex{246053, "mm"}, + CountryToIsoIndex{246066, "mm"}, + CountryToIsoIndex{246081, "mm"}, + CountryToIsoIndex{246109, "pm"}, + CountryToIsoIndex{246155, "sh"}, + CountryToIsoIndex{246185, "ma"}, + CountryToIsoIndex{246200, "cf"}, + CountryToIsoIndex{246253, "mm"}, + CountryToIsoIndex{246280, "na"}, + CountryToIsoIndex{246293, "na"}, + CountryToIsoIndex{246308, "na"}, + CountryToIsoIndex{246325, "na"}, + CountryToIsoIndex{246340, "no"}, + CountryToIsoIndex{246357, "nr"}, + CountryToIsoIndex{246368, "de"}, + CountryToIsoIndex{246383, "np"}, + CountryToIsoIndex{246394, "ne"}, + CountryToIsoIndex{246405, "ng"}, + CountryToIsoIndex{246418, "ng"}, + CountryToIsoIndex{246433, "ng"}, + CountryToIsoIndex{246450, "nl"}, + CountryToIsoIndex{246469, "nl"}, + CountryToIsoIndex{246492, "nl"}, + CountryToIsoIndex{246515, "nl"}, + CountryToIsoIndex{246536, "ni"}, + CountryToIsoIndex{246555, "ni"}, + CountryToIsoIndex{246574, "nu"}, + CountryToIsoIndex{246583, "nu"}, + CountryToIsoIndex{246592, "nu"}, + CountryToIsoIndex{246603, "ne"}, + CountryToIsoIndex{246614, "ng"}, + CountryToIsoIndex{246631, "nz"}, + CountryToIsoIndex{246651, "nz"}, + CountryToIsoIndex{246677, "nz"}, + CountryToIsoIndex{246703, "nc"}, + CountryToIsoIndex{246731, "nc"}, + CountryToIsoIndex{246761, "nc"}, + CountryToIsoIndex{246789, "nz"}, + CountryToIsoIndex{246817, "nz"}, + CountryToIsoIndex{246845, "nc"}, + CountryToIsoIndex{246875, "nc"}, + CountryToIsoIndex{246905, "nz"}, + CountryToIsoIndex{246927, "qo"}, + CountryToIsoIndex{246988, "no"}, + CountryToIsoIndex{247003, "no"}, + CountryToIsoIndex{247020, "no"}, + CountryToIsoIndex{247033, "no"}, + CountryToIsoIndex{247050, "no"}, + CountryToIsoIndex{247067, "nf"}, + CountryToIsoIndex{247093, "nf"}, + CountryToIsoIndex{247117, "nf"}, + CountryToIsoIndex{247143, "nf"}, + CountryToIsoIndex{247171, "nf"}, + CountryToIsoIndex{247203, "nf"}, + CountryToIsoIndex{247231, "nf"}, + CountryToIsoIndex{247263, "ne"}, + CountryToIsoIndex{247274, "ng"}, + CountryToIsoIndex{247289, "ng"}, + CountryToIsoIndex{247304, "nl"}, + CountryToIsoIndex{247325, "bq"}, + CountryToIsoIndex{247386, "nl"}, + CountryToIsoIndex{247407, "ni"}, + CountryToIsoIndex{247426, "ni"}, + CountryToIsoIndex{247445, "de"}, + CountryToIsoIndex{247464, "nu"}, + CountryToIsoIndex{247473, "nu"}, + CountryToIsoIndex{247482, "bv"}, + CountryToIsoIndex{247497, "ac"}, + CountryToIsoIndex{247524, "cp"}, + CountryToIsoIndex{247551, "im"}, + CountryToIsoIndex{247564, "nf"}, + CountryToIsoIndex{247585, "cx"}, + CountryToIsoIndex{247610, "sh"}, + CountryToIsoIndex{247633, "ck"}, + CountryToIsoIndex{247650, "pn"}, + CountryToIsoIndex{247673, "tc"}, + CountryToIsoIndex{247708, "hm"}, + CountryToIsoIndex{247749, "ae"}, + CountryToIsoIndex{247756, "ae"}, + CountryToIsoIndex{247807, "ci"}, + CountryToIsoIndex{247839, "ci"}, + CountryToIsoIndex{247869, "ci"}, + CountryToIsoIndex{247924, "ae"}, + CountryToIsoIndex{247975, "gb"}, + CountryToIsoIndex{248015, "ae"}, + CountryToIsoIndex{248064, "gb"}, + CountryToIsoIndex{248100, "ae"}, + CountryToIsoIndex{248157, "af"}, + CountryToIsoIndex{248179, "az"}, + CountryToIsoIndex{248200, "az"}, + CountryToIsoIndex{248221, "gb"}, + CountryToIsoIndex{248226, "qo"}, + CountryToIsoIndex{248273, "ax"}, + CountryToIsoIndex{248303, "ax"}, + CountryToIsoIndex{248335, "om"}, + CountryToIsoIndex{248344, "ru"}, + CountryToIsoIndex{248353, "cf"}, + CountryToIsoIndex{248406, "qo"}, + CountryToIsoIndex{248436, "tc"}, + CountryToIsoIndex{248476, "ac"}, + CountryToIsoIndex{248506, "bv"}, + CountryToIsoIndex{248528, "cp"}, + CountryToIsoIndex{248560, "im"}, + CountryToIsoIndex{248580, "im"}, + CountryToIsoIndex{248600, "nf"}, + CountryToIsoIndex{248626, "nf"}, + CountryToIsoIndex{248654, "hm"}, + CountryToIsoIndex{248717, "ac"}, + CountryToIsoIndex{248747, "bv"}, + CountryToIsoIndex{248769, "ac"}, + CountryToIsoIndex{248803, "cp"}, + CountryToIsoIndex{248835, "im"}, + CountryToIsoIndex{248855, "nf"}, + CountryToIsoIndex{248883, "cx"}, + CountryToIsoIndex{248915, "hm"}, + CountryToIsoIndex{248974, "ck"}, + CountryToIsoIndex{248998, "ck"}, + CountryToIsoIndex{249020, "ck"}, + CountryToIsoIndex{249044, "pn"}, + CountryToIsoIndex{249074, "pn"}, + CountryToIsoIndex{249104, "tc"}, + CountryToIsoIndex{249146, "tc"}, + CountryToIsoIndex{249188, "tc"}, + CountryToIsoIndex{249230, "hm"}, + CountryToIsoIndex{249276, "bv"}, + CountryToIsoIndex{249298, "ac"}, + CountryToIsoIndex{249332, "hm"}, + CountryToIsoIndex{249391, "cp"}, + CountryToIsoIndex{249425, "im"}, + CountryToIsoIndex{249445, "nf"}, + CountryToIsoIndex{249473, "cx"}, + CountryToIsoIndex{249499, "sh"}, + CountryToIsoIndex{249536, "qo"}, + CountryToIsoIndex{249592, "um"}, + CountryToIsoIndex{249640, "ua"}, + CountryToIsoIndex{249661, "za"}, + CountryToIsoIndex{249716, "gs"}, + CountryToIsoIndex{249806, "kr"}, + CountryToIsoIndex{249834, "ss"}, + CountryToIsoIndex{249862, "pk"}, + CountryToIsoIndex{249879, "pk"}, + CountryToIsoIndex{249896, "pw"}, + CountryToIsoIndex{249907, "ps"}, + CountryToIsoIndex{249924, "ps"}, + CountryToIsoIndex{249943, "ps"}, + CountryToIsoIndex{249981, "ps"}, + CountryToIsoIndex{250019, "ps"}, + CountryToIsoIndex{250063, "ps"}, + CountryToIsoIndex{250105, "ps"}, + CountryToIsoIndex{250151, "ps"}, + CountryToIsoIndex{250195, "ps"}, + CountryToIsoIndex{250246, "ps"}, + CountryToIsoIndex{250267, "ps"}, + CountryToIsoIndex{250307, "ps"}, + CountryToIsoIndex{250326, "ps"}, + CountryToIsoIndex{250370, "pa"}, + CountryToIsoIndex{250381, "pa"}, + CountryToIsoIndex{250394, "pg"}, + CountryToIsoIndex{250429, "pg"}, + CountryToIsoIndex{250462, "pg"}, + CountryToIsoIndex{250495, "pg"}, + CountryToIsoIndex{250530, "pg"}, + CountryToIsoIndex{250563, "pg"}, + CountryToIsoIndex{250600, "pg"}, + CountryToIsoIndex{250639, "pg"}, + CountryToIsoIndex{250678, "pg"}, + CountryToIsoIndex{250711, "pg"}, + CountryToIsoIndex{250744, "pg"}, + CountryToIsoIndex{250777, "pg"}, + CountryToIsoIndex{250812, "pg"}, + CountryToIsoIndex{250847, "py"}, + CountryToIsoIndex{250864, "py"}, + CountryToIsoIndex{250881, "py"}, + CountryToIsoIndex{250898, "pt"}, + CountryToIsoIndex{250919, "za"}, + CountryToIsoIndex{250980, "gs"}, + CountryToIsoIndex{251074, "kr"}, + CountryToIsoIndex{251104, "ss"}, + CountryToIsoIndex{251132, "kp"}, + CountryToIsoIndex{251162, "mp"}, + CountryToIsoIndex{251217, "pe"}, + CountryToIsoIndex{251226, "ci"}, + CountryToIsoIndex{251257, "pn"}, + CountryToIsoIndex{251272, "pn"}, + CountryToIsoIndex{251302, "pn"}, + CountryToIsoIndex{251338, "pn"}, + CountryToIsoIndex{251370, "pn"}, + CountryToIsoIndex{251398, "pn"}, + CountryToIsoIndex{251432, "pn"}, + CountryToIsoIndex{251464, "pn"}, + CountryToIsoIndex{251498, "pk"}, + CountryToIsoIndex{251515, "pf"}, + CountryToIsoIndex{251557, "pf"}, + CountryToIsoIndex{251593, "pl"}, + CountryToIsoIndex{251606, "pl"}, + CountryToIsoIndex{251617, "pl"}, + CountryToIsoIndex{251628, "pl"}, + CountryToIsoIndex{251641, "pl"}, + CountryToIsoIndex{251656, "pl"}, + CountryToIsoIndex{251669, "pr"}, + CountryToIsoIndex{251688, "pt"}, + CountryToIsoIndex{251705, "pt"}, + CountryToIsoIndex{251724, "pt"}, + CountryToIsoIndex{251745, "pt"}, + CountryToIsoIndex{251768, "pt"}, + CountryToIsoIndex{251789, "pl"}, + CountryToIsoIndex{251802, "pr"}, + CountryToIsoIndex{251824, "pr"}, + CountryToIsoIndex{251846, "pr"}, + CountryToIsoIndex{251868, "pr"}, + CountryToIsoIndex{251890, "gs"}, + CountryToIsoIndex{251982, "kr"}, + CountryToIsoIndex{252010, "ss"}, + CountryToIsoIndex{252040, "za"}, + CountryToIsoIndex{252101, "kp"}, + CountryToIsoIndex{252129, "mp"}, + CountryToIsoIndex{252182, "ci"}, + CountryToIsoIndex{252219, "pk"}, + CountryToIsoIndex{252236, "ru"}, + CountryToIsoIndex{252247, "cx"}, + CountryToIsoIndex{252273, "re"}, + CountryToIsoIndex{252288, "cg"}, + CountryToIsoIndex{252318, "mk"}, + CountryToIsoIndex{252358, "cz"}, + CountryToIsoIndex{252388, "ru"}, + CountryToIsoIndex{252399, "cg"}, + CountryToIsoIndex{252431, "kr"}, + CountryToIsoIndex{252463, "re"}, + CountryToIsoIndex{252478, "re"}, + CountryToIsoIndex{252493, "re"}, + CountryToIsoIndex{252510, "re"}, + CountryToIsoIndex{252525, "re"}, + CountryToIsoIndex{252542, "cx"}, + CountryToIsoIndex{252572, "cx"}, + CountryToIsoIndex{252602, "ro"}, + CountryToIsoIndex{252619, "ru"}, + CountryToIsoIndex{252630, "ru"}, + CountryToIsoIndex{252643, "ru"}, + CountryToIsoIndex{252654, "rw"}, + CountryToIsoIndex{252667, "ro"}, + CountryToIsoIndex{252682, "ro"}, + CountryToIsoIndex{252699, "ro"}, + CountryToIsoIndex{252714, "ro"}, + CountryToIsoIndex{252729, "ro"}, + CountryToIsoIndex{252740, "ro"}, + CountryToIsoIndex{252753, "ro"}, + CountryToIsoIndex{252768, "ro"}, + CountryToIsoIndex{252785, "ro"}, + CountryToIsoIndex{252800, "ru"}, + CountryToIsoIndex{252811, "ru"}, + CountryToIsoIndex{252824, "cg"}, + CountryToIsoIndex{252856, "re"}, + CountryToIsoIndex{252871, "ru"}, + CountryToIsoIndex{252886, "us"}, + CountryToIsoIndex{252893, "sb"}, + CountryToIsoIndex{252929, "sv"}, + CountryToIsoIndex{252946, "sv"}, + CountryToIsoIndex{252965, "so"}, + CountryToIsoIndex{252978, "ws"}, + CountryToIsoIndex{252989, "as"}, + CountryToIsoIndex{253017, "sm"}, + CountryToIsoIndex{253037, "st"}, + CountryToIsoIndex{253075, "sm"}, + CountryToIsoIndex{253095, "sm"}, + CountryToIsoIndex{253115, "sm"}, + CountryToIsoIndex{253135, "st"}, + CountryToIsoIndex{253171, "st"}, + CountryToIsoIndex{253211, "st"}, + CountryToIsoIndex{253249, "st"}, + CountryToIsoIndex{253287, "st"}, + CountryToIsoIndex{253329, "st"}, + CountryToIsoIndex{253371, "st"}, + CountryToIsoIndex{253407, "st"}, + CountryToIsoIndex{253440, "st"}, + CountryToIsoIndex{253476, "st"}, + CountryToIsoIndex{253516, "st"}, + CountryToIsoIndex{253552, "st"}, + CountryToIsoIndex{253588, "st"}, + CountryToIsoIndex{253624, "mo"}, + CountryToIsoIndex{253642, "mo"}, + CountryToIsoIndex{253671, "hk"}, + CountryToIsoIndex{253695, "hk"}, + CountryToIsoIndex{253730, "sa"}, + CountryToIsoIndex{253756, "sa"}, + CountryToIsoIndex{253790, "sa"}, + CountryToIsoIndex{253822, "sa"}, + CountryToIsoIndex{253854, "sa"}, + CountryToIsoIndex{253888, "sa"}, + CountryToIsoIndex{253922, "sa"}, + CountryToIsoIndex{253956, "sa"}, + CountryToIsoIndex{253978, "sa"}, + CountryToIsoIndex{254012, "us"}, + CountryToIsoIndex{254019, "sa"}, + CountryToIsoIndex{254057, "sz"}, + CountryToIsoIndex{254068, "sz"}, + CountryToIsoIndex{254087, "sz"}, + CountryToIsoIndex{254106, "sz"}, + CountryToIsoIndex{254125, "sj"}, + CountryToIsoIndex{254163, "sj"}, + CountryToIsoIndex{254201, "sj"}, + CountryToIsoIndex{254241, "sj"}, + CountryToIsoIndex{254279, "sj"}, + CountryToIsoIndex{254315, "sj"}, + CountryToIsoIndex{254353, "sh"}, + CountryToIsoIndex{254375, "lc"}, + CountryToIsoIndex{254399, "sh"}, + CountryToIsoIndex{254423, "sh"}, + CountryToIsoIndex{254447, "bl"}, + CountryToIsoIndex{254479, "bl"}, + CountryToIsoIndex{254511, "vc"}, + CountryToIsoIndex{254559, "kn"}, + CountryToIsoIndex{254593, "kn"}, + CountryToIsoIndex{254637, "mf"}, + CountryToIsoIndex{254682, "sx"}, + CountryToIsoIndex{254727, "pm"}, + CountryToIsoIndex{254765, "st"}, + CountryToIsoIndex{254803, "kp"}, + CountryToIsoIndex{254829, "kp"}, + CountryToIsoIndex{254857, "mp"}, + CountryToIsoIndex{254906, "mp"}, + CountryToIsoIndex{254955, "mp"}, + CountryToIsoIndex{255006, "mp"}, + CountryToIsoIndex{255052, "vc"}, + CountryToIsoIndex{255100, "kn"}, + CountryToIsoIndex{255134, "lc"}, + CountryToIsoIndex{255156, "sc"}, + CountryToIsoIndex{255169, "sc"}, + CountryToIsoIndex{255199, "sc"}, + CountryToIsoIndex{255229, "sc"}, + CountryToIsoIndex{255261, "sc"}, + CountryToIsoIndex{255297, "sc"}, + CountryToIsoIndex{255312, "sc"}, + CountryToIsoIndex{255344, "sc"}, + CountryToIsoIndex{255376, "sc"}, + CountryToIsoIndex{255414, "sc"}, + CountryToIsoIndex{255452, "sc"}, + CountryToIsoIndex{255490, "bl"}, + CountryToIsoIndex{255516, "mf"}, + CountryToIsoIndex{255536, "pm"}, + CountryToIsoIndex{255570, "pm"}, + CountryToIsoIndex{255604, "bl"}, + CountryToIsoIndex{255630, "bl"}, + CountryToIsoIndex{255656, "bl"}, + CountryToIsoIndex{255682, "bl"}, + CountryToIsoIndex{255708, "mf"}, + CountryToIsoIndex{255728, "mf"}, + CountryToIsoIndex{255748, "pm"}, + CountryToIsoIndex{255782, "pm"}, + CountryToIsoIndex{255820, "pm"}, + CountryToIsoIndex{255860, "pm"}, + CountryToIsoIndex{255900, "pm"}, + CountryToIsoIndex{255934, "pm"}, + CountryToIsoIndex{255972, "pm"}, + CountryToIsoIndex{256007, "sn"}, + CountryToIsoIndex{256022, "bl"}, + CountryToIsoIndex{256050, "vc"}, + CountryToIsoIndex{256096, "sh"}, + CountryToIsoIndex{256116, "kn"}, + CountryToIsoIndex{256148, "lc"}, + CountryToIsoIndex{256170, "lc"}, + CountryToIsoIndex{256190, "mf"}, + CountryToIsoIndex{256212, "pm"}, + CountryToIsoIndex{256248, "sh"}, + CountryToIsoIndex{256270, "bl"}, + CountryToIsoIndex{256298, "bl"}, + CountryToIsoIndex{256324, "bl"}, + CountryToIsoIndex{256352, "vc"}, + CountryToIsoIndex{256404, "vc"}, + CountryToIsoIndex{256450, "vc"}, + CountryToIsoIndex{256496, "vc"}, + CountryToIsoIndex{256544, "vc"}, + CountryToIsoIndex{256596, "vc"}, + CountryToIsoIndex{256652, "vc"}, + CountryToIsoIndex{256719, "vc"}, + CountryToIsoIndex{256765, "vc"}, + CountryToIsoIndex{256813, "vc"}, + CountryToIsoIndex{256861, "vc"}, + CountryToIsoIndex{256907, "kn"}, + CountryToIsoIndex{256943, "kn"}, + CountryToIsoIndex{256977, "kn"}, + CountryToIsoIndex{257011, "kn"}, + CountryToIsoIndex{257049, "kn"}, + CountryToIsoIndex{257087, "kn"}, + CountryToIsoIndex{257119, "kn"}, + CountryToIsoIndex{257155, "kn"}, + CountryToIsoIndex{257191, "kn"}, + CountryToIsoIndex{257223, "lc"}, + CountryToIsoIndex{257245, "lc"}, + CountryToIsoIndex{257263, "lc"}, + CountryToIsoIndex{257283, "lc"}, + CountryToIsoIndex{257303, "mf"}, + CountryToIsoIndex{257325, "pm"}, + CountryToIsoIndex{257361, "pm"}, + CountryToIsoIndex{257397, "pm"}, + CountryToIsoIndex{257435, "rs"}, + CountryToIsoIndex{257446, "rs"}, + CountryToIsoIndex{257459, "rs"}, + CountryToIsoIndex{257474, "rs"}, + CountryToIsoIndex{257487, "ea"}, + CountryToIsoIndex{257520, "ea"}, + CountryToIsoIndex{257551, "ea"}, + CountryToIsoIndex{257582, "ea"}, + CountryToIsoIndex{257617, "ea"}, + CountryToIsoIndex{257652, "ea"}, + CountryToIsoIndex{257681, "ea"}, + CountryToIsoIndex{257706, "ea"}, + CountryToIsoIndex{257733, "ea"}, + CountryToIsoIndex{257762, "sc"}, + CountryToIsoIndex{257790, "sc"}, + CountryToIsoIndex{257805, "ea"}, + CountryToIsoIndex{257834, "sl"}, + CountryToIsoIndex{257856, "sl"}, + CountryToIsoIndex{257880, "sh"}, + CountryToIsoIndex{257925, "sg"}, + CountryToIsoIndex{257942, "sx"}, + CountryToIsoIndex{257964, "sx"}, + CountryToIsoIndex{257988, "sx"}, + CountryToIsoIndex{258010, "sy"}, + CountryToIsoIndex{258019, "sy"}, + CountryToIsoIndex{258030, "sy"}, + CountryToIsoIndex{258043, "sy"}, + CountryToIsoIndex{258054, "sl"}, + CountryToIsoIndex{258078, "sk"}, + CountryToIsoIndex{258095, "si"}, + CountryToIsoIndex{258112, "sk"}, + CountryToIsoIndex{258125, "sk"}, + CountryToIsoIndex{258140, "sk"}, + CountryToIsoIndex{258157, "sk"}, + CountryToIsoIndex{258176, "sk"}, + CountryToIsoIndex{258193, "sk"}, + CountryToIsoIndex{258214, "si"}, + CountryToIsoIndex{258229, "si"}, + CountryToIsoIndex{258246, "si"}, + CountryToIsoIndex{258265, "si"}, + CountryToIsoIndex{258282, "sa"}, + CountryToIsoIndex{258314, "us"}, + CountryToIsoIndex{258348, "us"}, + CountryToIsoIndex{258403, "sb"}, + CountryToIsoIndex{258433, "sb"}, + CountryToIsoIndex{258465, "sb"}, + CountryToIsoIndex{258497, "sb"}, + CountryToIsoIndex{258535, "sb"}, + CountryToIsoIndex{258571, "sb"}, + CountryToIsoIndex{258607, "sb"}, + CountryToIsoIndex{258643, "sb"}, + CountryToIsoIndex{258677, "sb"}, + CountryToIsoIndex{258713, "sb"}, + CountryToIsoIndex{258743, "kp"}, + CountryToIsoIndex{258773, "mp"}, + CountryToIsoIndex{258824, "so"}, + CountryToIsoIndex{258837, "so"}, + CountryToIsoIndex{258852, "so"}, + CountryToIsoIndex{258869, "so"}, + CountryToIsoIndex{258882, "so"}, + CountryToIsoIndex{258895, "us"}, + CountryToIsoIndex{258925, "rs"}, + CountryToIsoIndex{258938, "cf"}, + CountryToIsoIndex{258984, "gb"}, + CountryToIsoIndex{259008, "sd"}, + CountryToIsoIndex{259021, "sd"}, + CountryToIsoIndex{259032, "sd"}, + CountryToIsoIndex{259043, "ss"}, + CountryToIsoIndex{259069, "sr"}, + CountryToIsoIndex{259084, "sy"}, + CountryToIsoIndex{259095, "sy"}, + CountryToIsoIndex{259108, "sr"}, + CountryToIsoIndex{259123, "sr"}, + CountryToIsoIndex{259138, "tl"}, + CountryToIsoIndex{259164, "us"}, + CountryToIsoIndex{259171, "us"}, + CountryToIsoIndex{259199, "rs"}, + CountryToIsoIndex{259212, "sl"}, + CountryToIsoIndex{259234, "sl"}, + CountryToIsoIndex{259259, "sl"}, + CountryToIsoIndex{259283, "sl"}, + CountryToIsoIndex{259307, "ea"}, + CountryToIsoIndex{259338, "hk"}, + CountryToIsoIndex{259351, "hk"}, + CountryToIsoIndex{259371, "sg"}, + CountryToIsoIndex{259388, "sx"}, + CountryToIsoIndex{259410, "sx"}, + CountryToIsoIndex{259432, "sy"}, + CountryToIsoIndex{259443, "kp"}, + CountryToIsoIndex{259473, "mp"}, + CountryToIsoIndex{259524, "us"}, + CountryToIsoIndex{259573, "us"}, + CountryToIsoIndex{259605, "sl"}, + CountryToIsoIndex{259629, "sy"}, + CountryToIsoIndex{259640, "sa"}, + CountryToIsoIndex{259678, "sb"}, + CountryToIsoIndex{259714, "tj"}, + CountryToIsoIndex{259737, "tj"}, + CountryToIsoIndex{259760, "tj"}, + CountryToIsoIndex{259781, "tj"}, + CountryToIsoIndex{259800, "th"}, + CountryToIsoIndex{259815, "tw"}, + CountryToIsoIndex{259828, "tw"}, + CountryToIsoIndex{259843, "th"}, + CountryToIsoIndex{259858, "tk"}, + CountryToIsoIndex{259873, "tz"}, + CountryToIsoIndex{259888, "tz"}, + CountryToIsoIndex{259905, "tz"}, + CountryToIsoIndex{259924, "tz"}, + CountryToIsoIndex{259941, "th"}, + CountryToIsoIndex{259956, "tw"}, + CountryToIsoIndex{259969, "th"}, + CountryToIsoIndex{259984, "tj"}, + CountryToIsoIndex{260005, "tj"}, + CountryToIsoIndex{260024, "tj"}, + CountryToIsoIndex{260045, "tc"}, + CountryToIsoIndex{260095, "tc"}, + CountryToIsoIndex{260145, "tl"}, + CountryToIsoIndex{260167, "tl"}, + CountryToIsoIndex{260217, "tg"}, + CountryToIsoIndex{260226, "tg"}, + CountryToIsoIndex{260235, "tj"}, + CountryToIsoIndex{260256, "tk"}, + CountryToIsoIndex{260271, "to"}, + CountryToIsoIndex{260282, "to"}, + CountryToIsoIndex{260293, "tj"}, + CountryToIsoIndex{260314, "tt"}, + CountryToIsoIndex{260351, "tt"}, + CountryToIsoIndex{260386, "tt"}, + CountryToIsoIndex{260421, "tt"}, + CountryToIsoIndex{260456, "tt"}, + CountryToIsoIndex{260495, "tt"}, + CountryToIsoIndex{260534, "tt"}, + CountryToIsoIndex{260567, "tt"}, + CountryToIsoIndex{260604, "ta"}, + CountryToIsoIndex{260635, "ta"}, + CountryToIsoIndex{260664, "ta"}, + CountryToIsoIndex{260695, "ta"}, + CountryToIsoIndex{260724, "ta"}, + CountryToIsoIndex{260756, "ta"}, + CountryToIsoIndex{260787, "ta"}, + CountryToIsoIndex{260816, "tt"}, + CountryToIsoIndex{260849, "ta"}, + CountryToIsoIndex{260880, "tt"}, + CountryToIsoIndex{260913, "ta"}, + CountryToIsoIndex{260944, "tv"}, + CountryToIsoIndex{260957, "tn"}, + CountryToIsoIndex{260968, "tn"}, + CountryToIsoIndex{260979, "tr"}, + CountryToIsoIndex{260998, "tr"}, + CountryToIsoIndex{261007, "tc"}, + CountryToIsoIndex{261051, "tr"}, + CountryToIsoIndex{261064, "tm"}, + CountryToIsoIndex{261089, "tm"}, + CountryToIsoIndex{261106, "tm"}, + CountryToIsoIndex{261131, "tm"}, + CountryToIsoIndex{261156, "tr"}, + CountryToIsoIndex{261175, "tc"}, + CountryToIsoIndex{261221, "tc"}, + CountryToIsoIndex{261261, "tr"}, + CountryToIsoIndex{261274, "tr"}, + CountryToIsoIndex{261287, "tr"}, + CountryToIsoIndex{261302, "tr"}, + CountryToIsoIndex{261315, "tl"}, + CountryToIsoIndex{261337, "tc"}, + CountryToIsoIndex{261387, "tl"}, + CountryToIsoIndex{261409, "kp"}, + CountryToIsoIndex{261433, "mp"}, + CountryToIsoIndex{261478, "tr"}, + CountryToIsoIndex{261491, "tr"}, + CountryToIsoIndex{261506, "tm"}, + CountryToIsoIndex{261531, "tm"}, + CountryToIsoIndex{261554, "tc"}, + CountryToIsoIndex{261604, "tm"}, + CountryToIsoIndex{261629, "gs"}, + CountryToIsoIndex{261709, "kr"}, + CountryToIsoIndex{261733, "ss"}, + CountryToIsoIndex{261757, "za"}, + CountryToIsoIndex{261808, "tj"}, + CountryToIsoIndex{261827, "cf"}, + CountryToIsoIndex{261886, "kp"}, + CountryToIsoIndex{261910, "mp"}, + CountryToIsoIndex{261957, "tr"}, + CountryToIsoIndex{261970, "tm"}, + CountryToIsoIndex{261993, "tc"}, + CountryToIsoIndex{262037, "gb"}, + CountryToIsoIndex{262042, "ug"}, + CountryToIsoIndex{262055, "hu"}, + CountryToIsoIndex{262072, "um"}, + CountryToIsoIndex{262107, "qo"}, + CountryToIsoIndex{262133, "uz"}, + CountryToIsoIndex{262154, "uz"}, + CountryToIsoIndex{262175, "gb"}, + CountryToIsoIndex{262180, "ua"}, + CountryToIsoIndex{262193, "ua"}, + CountryToIsoIndex{262208, "ua"}, + CountryToIsoIndex{262223, "ua"}, + CountryToIsoIndex{262238, "ua"}, + CountryToIsoIndex{262253, "ua"}, + CountryToIsoIndex{262270, "ua"}, + CountryToIsoIndex{262285, "gb"}, + CountryToIsoIndex{262311, "om"}, + CountryToIsoIndex{262322, "om"}, + CountryToIsoIndex{262331, "hu"}, + CountryToIsoIndex{262342, "hu"}, + CountryToIsoIndex{262357, "hu"}, + CountryToIsoIndex{262374, "wf"}, + CountryToIsoIndex{262401, "wf"}, + CountryToIsoIndex{262434, "wf"}, + CountryToIsoIndex{262465, "wf"}, + CountryToIsoIndex{262496, "wf"}, + CountryToIsoIndex{262527, "wf"}, + CountryToIsoIndex{262562, "wf"}, + CountryToIsoIndex{262597, "wf"}, + CountryToIsoIndex{262626, "wf"}, + CountryToIsoIndex{262659, "wf"}, + CountryToIsoIndex{262688, "wf"}, + CountryToIsoIndex{262715, "jo"}, + CountryToIsoIndex{262726, "jo"}, + CountryToIsoIndex{262737, "uy"}, + CountryToIsoIndex{262752, "uy"}, + CountryToIsoIndex{262767, "uy"}, + CountryToIsoIndex{262782, "tl"}, + CountryToIsoIndex{262808, "ae"}, + CountryToIsoIndex{262857, "gb"}, + CountryToIsoIndex{262897, "ru"}, + CountryToIsoIndex{262910, "ps"}, + CountryToIsoIndex{262927, "ps"}, + CountryToIsoIndex{262957, "fk"}, + CountryToIsoIndex{263022, "fk"}, + CountryToIsoIndex{263062, "fo"}, + CountryToIsoIndex{263088, "fo"}, + CountryToIsoIndex{263116, "fo"}, + CountryToIsoIndex{263144, "fo"}, + CountryToIsoIndex{263174, "fo"}, + CountryToIsoIndex{263210, "fo"}, + CountryToIsoIndex{263237, "fo"}, + CountryToIsoIndex{263271, "fo"}, + CountryToIsoIndex{263299, "fo"}, + CountryToIsoIndex{263325, "fo"}, + CountryToIsoIndex{263353, "fo"}, + CountryToIsoIndex{263387, "fo"}, + CountryToIsoIndex{263421, "fm"}, + CountryToIsoIndex{263478, "fm"}, + CountryToIsoIndex{263533, "fj"}, + CountryToIsoIndex{263544, "fj"}, + CountryToIsoIndex{263553, "ci"}, + CountryToIsoIndex{263586, "ph"}, + CountryToIsoIndex{263603, "ph"}, + CountryToIsoIndex{263620, "ph"}, + CountryToIsoIndex{263654, "ph"}, + CountryToIsoIndex{263675, "ph"}, + CountryToIsoIndex{263694, "ph"}, + CountryToIsoIndex{263711, "fi"}, + CountryToIsoIndex{263726, "fi"}, + CountryToIsoIndex{263745, "fi"}, + CountryToIsoIndex{263766, "fi"}, + CountryToIsoIndex{263783, "fi"}, + CountryToIsoIndex{263802, "fi"}, + CountryToIsoIndex{263815, "fj"}, + CountryToIsoIndex{263824, "fj"}, + CountryToIsoIndex{263833, "fj"}, + CountryToIsoIndex{263842, "fk"}, + CountryToIsoIndex{263897, "fk"}, + CountryToIsoIndex{263931, "fk"}, + CountryToIsoIndex{263969, "fk"}, + CountryToIsoIndex{264043, "fk"}, + CountryToIsoIndex{264092, "fk"}, + CountryToIsoIndex{264145, "fk"}, + CountryToIsoIndex{264177, "fk"}, + CountryToIsoIndex{264239, "fk"}, + CountryToIsoIndex{264273, "fk"}, + CountryToIsoIndex{264341, "fk"}, + CountryToIsoIndex{264375, "fk"}, + CountryToIsoIndex{264411, "fk"}, + CountryToIsoIndex{264451, "fk"}, + CountryToIsoIndex{264512, "fk"}, + CountryToIsoIndex{264548, "fk"}, + CountryToIsoIndex{264616, "fk"}, + CountryToIsoIndex{264654, "fk"}, + CountryToIsoIndex{264728, "fk"}, + CountryToIsoIndex{264786, "fk"}, + CountryToIsoIndex{264819, "fk"}, + CountryToIsoIndex{264884, "fk"}, + CountryToIsoIndex{264924, "fr"}, + CountryToIsoIndex{264937, "gf"}, + CountryToIsoIndex{264967, "pf"}, + CountryToIsoIndex{265005, "tf"}, + CountryToIsoIndex{265054, "fr"}, + CountryToIsoIndex{265069, "fr"}, + CountryToIsoIndex{265080, "fr"}, + CountryToIsoIndex{265093, "fr"}, + CountryToIsoIndex{265108, "tf"}, + CountryToIsoIndex{265171, "tf"}, + CountryToIsoIndex{265232, "tf"}, + CountryToIsoIndex{265289, "fr"}, + CountryToIsoIndex{265306, "gf"}, + CountryToIsoIndex{265338, "gf"}, + CountryToIsoIndex{265370, "tf"}, + CountryToIsoIndex{265419, "pf"}, + CountryToIsoIndex{265457, "pf"}, + CountryToIsoIndex{265495, "pf"}, + CountryToIsoIndex{265533, "gf"}, + CountryToIsoIndex{265567, "gf"}, + CountryToIsoIndex{265601, "tf"}, + CountryToIsoIndex{265652, "pf"}, + CountryToIsoIndex{265690, "gf"}, + CountryToIsoIndex{265726, "gf"}, + CountryToIsoIndex{265762, "pf"}, + CountryToIsoIndex{265804, "pf"}, + CountryToIsoIndex{265846, "tf"}, + CountryToIsoIndex{265901, "tf"}, + CountryToIsoIndex{265962, "pf"}, + CountryToIsoIndex{266002, "gf"}, + CountryToIsoIndex{266036, "tf"}, + CountryToIsoIndex{266093, "fr"}, + CountryToIsoIndex{266112, "gf"}, + CountryToIsoIndex{266146, "pf"}, + CountryToIsoIndex{266186, "tf"}, + CountryToIsoIndex{266237, "tf"}, + CountryToIsoIndex{266286, "gf"}, + CountryToIsoIndex{266314, "pf"}, + CountryToIsoIndex{266344, "tf"}, + CountryToIsoIndex{266392, "fr"}, + CountryToIsoIndex{266407, "fr"}, + CountryToIsoIndex{266422, "gf"}, + CountryToIsoIndex{266450, "pf"}, + CountryToIsoIndex{266484, "tf"}, + CountryToIsoIndex{266527, "fj"}, + CountryToIsoIndex{266538, "fj"}, + CountryToIsoIndex{266549, "ph"}, + CountryToIsoIndex{266568, "ph"}, + CountryToIsoIndex{266585, "fi"}, + CountryToIsoIndex{266604, "fi"}, + CountryToIsoIndex{266623, "ht"}, + CountryToIsoIndex{266634, "hr"}, + CountryToIsoIndex{266651, "hm"}, + CountryToIsoIndex{266718, "hm"}, + CountryToIsoIndex{266772, "hm"}, + CountryToIsoIndex{266822, "hm"}, + CountryToIsoIndex{266891, "hm"}, + CountryToIsoIndex{266947, "hm"}, + CountryToIsoIndex{266991, "hm"}, + CountryToIsoIndex{267060, "cn"}, + CountryToIsoIndex{267092, "cn"}, + CountryToIsoIndex{267103, "mp"}, + CountryToIsoIndex{267140, "kp"}, + CountryToIsoIndex{267166, "nl"}, + CountryToIsoIndex{267185, "hk"}, + CountryToIsoIndex{267203, "hk"}, + CountryToIsoIndex{267239, "hk"}, + CountryToIsoIndex{267275, "hk"}, + CountryToIsoIndex{267292, "hn"}, + CountryToIsoIndex{267309, "hk"}, + CountryToIsoIndex{267324, "hk"}, + CountryToIsoIndex{267363, "hr"}, + CountryToIsoIndex{267376, "hr"}, + CountryToIsoIndex{267391, "hr"}, + CountryToIsoIndex{267408, "hr"}, + CountryToIsoIndex{267427, "hr"}, + CountryToIsoIndex{267444, "hr"}, + CountryToIsoIndex{267461, "hr"}, + CountryToIsoIndex{267478, "cn"}, + CountryToIsoIndex{267489, "in"}, + CountryToIsoIndex{267502, "cf"}, + CountryToIsoIndex{267560, "cf"}, + CountryToIsoIndex{267612, "cf"}, + CountryToIsoIndex{267677, "cf"}, + CountryToIsoIndex{267741, "cn"}, + CountryToIsoIndex{267754, "me"}, + CountryToIsoIndex{267772, "us"}, + CountryToIsoIndex{267810, "cf"}, + CountryToIsoIndex{267875, "td"}, + CountryToIsoIndex{267882, "me"}, + CountryToIsoIndex{267903, "me"}, + CountryToIsoIndex{267923, "me"}, + CountryToIsoIndex{267944, "cz"}, + CountryToIsoIndex{267978, "cz"}, + CountryToIsoIndex{267985, "cz"}, + CountryToIsoIndex{268017, "cz"}, + CountryToIsoIndex{268026, "cz"}, + CountryToIsoIndex{268037, "cz"}, + CountryToIsoIndex{268073, "cz"}, + CountryToIsoIndex{268109, "cz"}, + CountryToIsoIndex{268122, "cz"}, + CountryToIsoIndex{268133, "cz"}, + CountryToIsoIndex{268144, "cz"}, + CountryToIsoIndex{268174, "cl"}, + CountryToIsoIndex{268185, "cl"}, + CountryToIsoIndex{268194, "cl"}, + CountryToIsoIndex{268203, "cn"}, + CountryToIsoIndex{268210, "me"}, + CountryToIsoIndex{268231, "tl"}, + CountryToIsoIndex{268253, "cl"}, + CountryToIsoIndex{268262, "cz"}, + CountryToIsoIndex{268273, "cz"}, + CountryToIsoIndex{268309, "cl"}, + CountryToIsoIndex{268318, "tl"}, + CountryToIsoIndex{268342, "va"}, + CountryToIsoIndex{268368, "ch"}, + CountryToIsoIndex{268389, "ch"}, + CountryToIsoIndex{268410, "se"}, + CountryToIsoIndex{268419, "se"}, + CountryToIsoIndex{268434, "ch"}, + CountryToIsoIndex{268455, "ch"}, + CountryToIsoIndex{268472, "ch"}, + CountryToIsoIndex{268491, "ch"}, + CountryToIsoIndex{268510, "ch"}, + CountryToIsoIndex{268527, "ch"}, + CountryToIsoIndex{268546, "se"}, + CountryToIsoIndex{268561, "se"}, + CountryToIsoIndex{268572, "se"}, + CountryToIsoIndex{268585, "se"}, + CountryToIsoIndex{268598, "se"}, + CountryToIsoIndex{268611, "ch"}, + CountryToIsoIndex{268630, "sy"}, + CountryToIsoIndex{268639, "kp"}, + CountryToIsoIndex{268665, "mp"}, + CountryToIsoIndex{268706, "kp"}, + CountryToIsoIndex{268732, "mp"}, + CountryToIsoIndex{268781, "nz"}, + CountryToIsoIndex{268803, "nc"}, + CountryToIsoIndex{268829, "gb"}, + CountryToIsoIndex{268867, "es"}, + CountryToIsoIndex{268882, "sj"}, + CountryToIsoIndex{268926, "sj"}, + CountryToIsoIndex{268970, "sj"}, + CountryToIsoIndex{269016, "sj"}, + CountryToIsoIndex{269062, "sj"}, + CountryToIsoIndex{269102, "sj"}, + CountryToIsoIndex{269146, "sj"}, + CountryToIsoIndex{269184, "sj"}, + CountryToIsoIndex{269224, "lk"}, + CountryToIsoIndex{269242, "lk"}, + CountryToIsoIndex{269260, "lk"}, + CountryToIsoIndex{269278, "lk"}, + CountryToIsoIndex{269296, "fm"}, + CountryToIsoIndex{269355, "tl"}, + CountryToIsoIndex{269377, "tl"}, + CountryToIsoIndex{269399, "sh"}, + CountryToIsoIndex{269419, "ec"}, + CountryToIsoIndex{269434, "gq"}, + CountryToIsoIndex{269476, "gq"}, + CountryToIsoIndex{269508, "gq"}, + CountryToIsoIndex{269542, "gq"}, + CountryToIsoIndex{269576, "gq"}, + CountryToIsoIndex{269612, "gq"}, + CountryToIsoIndex{269654, "gq"}, + CountryToIsoIndex{269688, "gq"}, + CountryToIsoIndex{269720, "sv"}, + CountryToIsoIndex{269742, "sv"}, + CountryToIsoIndex{269768, "sv"}, + CountryToIsoIndex{269794, "in"}, + CountryToIsoIndex{269809, "er"}, + CountryToIsoIndex{269824, "er"}, + CountryToIsoIndex{269839, "am"}, + CountryToIsoIndex{269860, "ir"}, + CountryToIsoIndex{269869, "er"}, + CountryToIsoIndex{269884, "ee"}, + CountryToIsoIndex{269897, "ee"}, + CountryToIsoIndex{269912, "ee"}, + CountryToIsoIndex{269927, "et"}, + CountryToIsoIndex{269938, "et"}, + CountryToIsoIndex{269951, "et"}, + CountryToIsoIndex{269966, "et"}, + CountryToIsoIndex{269981, "ss"}, + CountryToIsoIndex{270001, "za"}, + CountryToIsoIndex{270023, "gs"}, + CountryToIsoIndex{270097, "kr"}, + CountryToIsoIndex{270117, "gs"}, + CountryToIsoIndex{270186, "za"}, + CountryToIsoIndex{270239, "ss"}, + CountryToIsoIndex{270261, "cf"}, + CountryToIsoIndex{270314, "gr"}, + CountryToIsoIndex{270323, "jm"}, + CountryToIsoIndex{270336, "ye"}, + CountryToIsoIndex{270345, "nz"}, + CountryToIsoIndex{270371, "nc"}, + CountryToIsoIndex{270399, "jp"}, + CountryToIsoIndex{270408, "jp"}, + CountryToIsoIndex{270419, "jp"}, + CountryToIsoIndex{270432, "jp"}, + CountryToIsoIndex{270445, "nz"}, + CountryToIsoIndex{270469, "nc"}, + CountryToIsoIndex{270495, "qo"}, + CountryToIsoIndex{270521, "ez"}, + CountryToIsoIndex{270538, "eg"}, + CountryToIsoIndex{270551, "ye"}, + CountryToIsoIndex{270560, "jo"}, + CountryToIsoIndex{270577, "il"}, + CountryToIsoIndex{270592, "il"}, + CountryToIsoIndex{270607, "id"}, + CountryToIsoIndex{270626, "id"}, + CountryToIsoIndex{270645, "in"}, + CountryToIsoIndex{270656, "in"}, + CountryToIsoIndex{270667, "iq"}, + CountryToIsoIndex{270676, "ir"}, + CountryToIsoIndex{270685, "ie"}, + CountryToIsoIndex{270702, "ie"}, + CountryToIsoIndex{270719, "is"}, + CountryToIsoIndex{270736, "is"}, + CountryToIsoIndex{270753, "es"}, + CountryToIsoIndex{270768, "it"}, + CountryToIsoIndex{270781, "in"}, + CountryToIsoIndex{270796, "it"}, + CountryToIsoIndex{270813, "jm"}, + CountryToIsoIndex{270828, "jp"}, + CountryToIsoIndex{270839, "jp"}, + CountryToIsoIndex{270856, "ye"}, + CountryToIsoIndex{270867, "nz"}, + CountryToIsoIndex{270895, "nc"}, + CountryToIsoIndex{270925, "am"}, + CountryToIsoIndex{270944, "jo"}, + CountryToIsoIndex{270957, "ss"}, + CountryToIsoIndex{270979, "kr"}, + CountryToIsoIndex{271003, "gs"}, + CountryToIsoIndex{271071, "gs"}, + CountryToIsoIndex{271143, "gs"}, + CountryToIsoIndex{271217, "ss"}, + CountryToIsoIndex{271239, "za"}, + CountryToIsoIndex{271289, "za"}, + CountryToIsoIndex{271333, "gr"}, + CountryToIsoIndex{271354, "ye"}, + CountryToIsoIndex{271365, "de"}, + CountryToIsoIndex{271380, "uz"}, + CountryToIsoIndex{271401, "je"}, + CountryToIsoIndex{271412, "je"}, + CountryToIsoIndex{271423, "dj"}, + CountryToIsoIndex{271436, "gy"}, + CountryToIsoIndex{271449, "gp"}, + CountryToIsoIndex{271468, "gt"}, + CountryToIsoIndex{271487, "gg"}, + CountryToIsoIndex{271500, "gd"}, + CountryToIsoIndex{271515, "gl"}, + CountryToIsoIndex{271536, "gu"}, + CountryToIsoIndex{271545, "gi"}, + CountryToIsoIndex{271564, "eh"}, + CountryToIsoIndex{271601, "dj"}, + CountryToIsoIndex{271614, "kz"}, + CountryToIsoIndex{271633, "kz"}, + CountryToIsoIndex{271654, "io"}, + CountryToIsoIndex{271721, "qa"}, + CountryToIsoIndex{271732, "kg"}, + CountryToIsoIndex{271755, "kz"}, + CountryToIsoIndex{271776, "kw"}, + CountryToIsoIndex{271789, "kg"}, + CountryToIsoIndex{271810, "cn"}, + CountryToIsoIndex{271821, "gg"}, + CountryToIsoIndex{271834, "ge"}, + CountryToIsoIndex{271853, "uz"}, + CountryToIsoIndex{271872, "cf"}, + CountryToIsoIndex{271919, "io"}, + CountryToIsoIndex{271977, "in"}, + CountryToIsoIndex{271994, "gb"}, + CountryToIsoIndex{272017, "in"}, + CountryToIsoIndex{272036, "in"}, + CountryToIsoIndex{272055, "hk"}, + CountryToIsoIndex{272070, "hk"}, + CountryToIsoIndex{272094, "bv"}, + CountryToIsoIndex{272118, "cx"}, + CountryToIsoIndex{272148, "im"}, + CountryToIsoIndex{272170, "nf"}, + CountryToIsoIndex{272200, "mf"}, + CountryToIsoIndex{272237, "hm"}, + CountryToIsoIndex{272304, "ax"}, + CountryToIsoIndex{272334, "vg"}, + CountryToIsoIndex{272385, "vi"}, + CountryToIsoIndex{272426, "ky"}, + CountryToIsoIndex{272458, "cc"}, + CountryToIsoIndex{272503, "ck"}, + CountryToIsoIndex{272529, "mp"}, + CountryToIsoIndex{272578, "mh"}, + CountryToIsoIndex{272612, "pn"}, + CountryToIsoIndex{272648, "sb"}, + CountryToIsoIndex{272682, "tc"}, + CountryToIsoIndex{272730, "fo"}, + CountryToIsoIndex{272760, "fk"}, + CountryToIsoIndex{272796, "um"}, + CountryToIsoIndex{272850, "je"}, + CountryToIsoIndex{272861, "dj"}, + CountryToIsoIndex{272874, "gs"}, + CountryToIsoIndex{272941, "cf"}, + CountryToIsoIndex{272988, "do"}, + CountryToIsoIndex{273024, "cz"}, + CountryToIsoIndex{273048, "je"}, + CountryToIsoIndex{273059, "dj"}, + CountryToIsoIndex{273072, "gi"}, + CountryToIsoIndex{273097, "za"}, + CountryToIsoIndex{273121, "kr"}, + CountryToIsoIndex{273147, "ss"}, + CountryToIsoIndex{273171, "gs"}, + CountryToIsoIndex{273247, "ht"}, + CountryToIsoIndex{273258, "hm"}, + CountryToIsoIndex{273306, "in"}, + CountryToIsoIndex{273325, "hk"}, + CountryToIsoIndex{273343, "hn"}, + CountryToIsoIndex{273360, "hk"}, + CountryToIsoIndex{273426, "ae"}, + CountryToIsoIndex{273483, "me"}, + CountryToIsoIndex{273512, "iq"}, + CountryToIsoIndex{273525, "om"}, + CountryToIsoIndex{273536, "az"}, + CountryToIsoIndex{273557, "az"}, + CountryToIsoIndex{273578, "dz"}, + CountryToIsoIndex{273595, "am"}, + CountryToIsoIndex{273614, "ac"}, + CountryToIsoIndex{273642, "sh"}, + CountryToIsoIndex{273675, "af"}, + CountryToIsoIndex{273694, "af"}, + CountryToIsoIndex{273715, "uz"}, + CountryToIsoIndex{273734, "uz"}, + CountryToIsoIndex{273755, "za"}, + CountryToIsoIndex{273777, "gs"}, + CountryToIsoIndex{273851, "kr"}, + CountryToIsoIndex{273879, "ss"}, + CountryToIsoIndex{273901, "uz"}, + CountryToIsoIndex{273922, "az"}, + CountryToIsoIndex{273939, "ax"}, + CountryToIsoIndex{273971, "al"}, + CountryToIsoIndex{273986, "dz"}, + CountryToIsoIndex{273997, "as"}, + CountryToIsoIndex{274027, "us"}, + CountryToIsoIndex{274034, "vi"}, + CountryToIsoIndex{274075, "ao"}, + CountryToIsoIndex{274088, "ai"}, + CountryToIsoIndex{274105, "ad"}, + CountryToIsoIndex{274120, "aq"}, + CountryToIsoIndex{274141, "ag"}, + CountryToIsoIndex{274178, "au"}, + CountryToIsoIndex{274197, "at"}, + CountryToIsoIndex{274212, "ae"}, + CountryToIsoIndex{274273, "ar"}, + CountryToIsoIndex{274292, "aw"}, + CountryToIsoIndex{274305, "um"}, + CountryToIsoIndex{274344, "qo"}, + CountryToIsoIndex{274376, "tl"}, + CountryToIsoIndex{274404, "eh"}, + CountryToIsoIndex{274434, "af"}, + CountryToIsoIndex{274453, "bs"}, + CountryToIsoIndex{274472, "bh"}, + CountryToIsoIndex{274487, "bd"}, + CountryToIsoIndex{274506, "bb"}, + CountryToIsoIndex{274523, "by"}, + CountryToIsoIndex{274540, "be"}, + CountryToIsoIndex{274553, "bz"}, + CountryToIsoIndex{274564, "bj"}, + CountryToIsoIndex{274575, "bm"}, + CountryToIsoIndex{274596, "bw"}, + CountryToIsoIndex{274613, "bo"}, + CountryToIsoIndex{274628, "ba"}, + CountryToIsoIndex{274667, "bt"}, + CountryToIsoIndex{274680, "bg"}, + CountryToIsoIndex{274699, "bv"}, + CountryToIsoIndex{274719, "bf"}, + CountryToIsoIndex{274745, "bi"}, + CountryToIsoIndex{274764, "br"}, + CountryToIsoIndex{274781, "vg"}, + CountryToIsoIndex{274836, "io"}, + CountryToIsoIndex{274910, "bn"}, + CountryToIsoIndex{274925, "ga"}, + CountryToIsoIndex{274936, "gm"}, + CountryToIsoIndex{274949, "gy"}, + CountryToIsoIndex{274962, "gh"}, + CountryToIsoIndex{274971, "de"}, + CountryToIsoIndex{274988, "gg"}, + CountryToIsoIndex{275001, "gu"}, + CountryToIsoIndex{275012, "gp"}, + CountryToIsoIndex{275033, "gt"}, + CountryToIsoIndex{275052, "gn"}, + CountryToIsoIndex{275065, "gw"}, + CountryToIsoIndex{275091, "gd"}, + CountryToIsoIndex{275106, "gl"}, + CountryToIsoIndex{275127, "dk"}, + CountryToIsoIndex{275138, "dg"}, + CountryToIsoIndex{275162, "dm"}, + CountryToIsoIndex{275179, "do"}, + CountryToIsoIndex{275231, "eg"}, + CountryToIsoIndex{275246, "et"}, + CountryToIsoIndex{275261, "ye"}, + CountryToIsoIndex{275270, "ez"}, + CountryToIsoIndex{275287, "zm"}, + CountryToIsoIndex{275300, "zw"}, + CountryToIsoIndex{275317, "ec"}, + CountryToIsoIndex{275332, "ee"}, + CountryToIsoIndex{275347, "er"}, + CountryToIsoIndex{275362, "th"}, + CountryToIsoIndex{275377, "tw"}, + CountryToIsoIndex{275390, "tc"}, + CountryToIsoIndex{275432, "tl"}, + CountryToIsoIndex{275454, "tn"}, + CountryToIsoIndex{275467, "tr"}, + CountryToIsoIndex{275482, "tm"}, + CountryToIsoIndex{275507, "id"}, + CountryToIsoIndex{275526, "ie"}, + CountryToIsoIndex{275543, "is"}, + CountryToIsoIndex{275560, "es"}, + CountryToIsoIndex{275575, "il"}, + CountryToIsoIndex{275590, "it"}, + CountryToIsoIndex{275603, "ir"}, + CountryToIsoIndex{275612, "iq"}, + CountryToIsoIndex{275621, "la"}, + CountryToIsoIndex{275630, "lv"}, + CountryToIsoIndex{275643, "pl"}, + CountryToIsoIndex{275660, "ls"}, + CountryToIsoIndex{275673, "lb"}, + CountryToIsoIndex{275688, "lr"}, + CountryToIsoIndex{275703, "ly"}, + CountryToIsoIndex{275714, "li"}, + CountryToIsoIndex{275737, "lt"}, + CountryToIsoIndex{275748, "lu"}, + CountryToIsoIndex{275775, "hr"}, + CountryToIsoIndex{275792, "cv"}, + CountryToIsoIndex{275812, "kh"}, + CountryToIsoIndex{275827, "cm"}, + CountryToIsoIndex{275844, "ky"}, + CountryToIsoIndex{275872, "ca"}, + CountryToIsoIndex{275885, "ic"}, + CountryToIsoIndex{275917, "qa"}, + CountryToIsoIndex{275928, "bq"}, + CountryToIsoIndex{275970, "cf"}, + CountryToIsoIndex{276041, "cy"}, + CountryToIsoIndex{276054, "ki"}, + CountryToIsoIndex{276071, "cw"}, + CountryToIsoIndex{276090, "co"}, + CountryToIsoIndex{276109, "cc"}, + CountryToIsoIndex{276156, "km"}, + CountryToIsoIndex{276188, "cd"}, + CountryToIsoIndex{276208, "cg"}, + CountryToIsoIndex{276267, "cg"}, + CountryToIsoIndex{276297, "cd"}, + CountryToIsoIndex{276325, "xk"}, + CountryToIsoIndex{276338, "cr"}, + CountryToIsoIndex{276358, "ci"}, + CountryToIsoIndex{276383, "cu"}, + CountryToIsoIndex{276394, "ck"}, + CountryToIsoIndex{276420, "ac"}, + CountryToIsoIndex{276450, "am"}, + CountryToIsoIndex{276467, "ht"}, + CountryToIsoIndex{276480, "gq"}, + CountryToIsoIndex{276520, "kr"}, + CountryToIsoIndex{276550, "gs"}, + CountryToIsoIndex{276640, "ss"}, + CountryToIsoIndex{276672, "za"}, + CountryToIsoIndex{276730, "hm"}, + CountryToIsoIndex{276787, "kp"}, + CountryToIsoIndex{276821, "mp"}, + CountryToIsoIndex{276878, "in"}, + CountryToIsoIndex{276897, "hn"}, + CountryToIsoIndex{276916, "hk"}, + CountryToIsoIndex{276931, "hk"}, + CountryToIsoIndex{276955, "jo"}, + CountryToIsoIndex{276972, "gr"}, + CountryToIsoIndex{276991, "hu"}, + CountryToIsoIndex{277010, "kz"}, + CountryToIsoIndex{277029, "kg"}, + CountryToIsoIndex{277046, "jm"}, + CountryToIsoIndex{277061, "jp"}, + CountryToIsoIndex{277076, "mg"}, + CountryToIsoIndex{277097, "my"}, + CountryToIsoIndex{277114, "mw"}, + CountryToIsoIndex{277127, "mv"}, + CountryToIsoIndex{277146, "mt"}, + CountryToIsoIndex{277157, "ml"}, + CountryToIsoIndex{277166, "mo"}, + CountryToIsoIndex{277177, "mk"}, + CountryToIsoIndex{277196, "mk"}, + CountryToIsoIndex{277226, "yt"}, + CountryToIsoIndex{277237, "mu"}, + CountryToIsoIndex{277256, "mr"}, + CountryToIsoIndex{277277, "mh"}, + CountryToIsoIndex{277311, "ma"}, + CountryToIsoIndex{277326, "mq"}, + CountryToIsoIndex{277345, "im"}, + CountryToIsoIndex{277361, "mx"}, + CountryToIsoIndex{277376, "gb"}, + CountryToIsoIndex{277381, "gb"}, + CountryToIsoIndex{277425, "us"}, + CountryToIsoIndex{277459, "fm"}, + CountryToIsoIndex{277480, "mm"}, + CountryToIsoIndex{277506, "mz"}, + CountryToIsoIndex{277523, "md"}, + CountryToIsoIndex{277538, "mc"}, + CountryToIsoIndex{277551, "mn"}, + CountryToIsoIndex{277568, "ms"}, + CountryToIsoIndex{277585, "na"}, + CountryToIsoIndex{277600, "nr"}, + CountryToIsoIndex{277615, "np"}, + CountryToIsoIndex{277626, "ne"}, + CountryToIsoIndex{277637, "ng"}, + CountryToIsoIndex{277652, "nl"}, + CountryToIsoIndex{277677, "ni"}, + CountryToIsoIndex{277698, "nu"}, + CountryToIsoIndex{277709, "nz"}, + CountryToIsoIndex{277733, "nc"}, + CountryToIsoIndex{277759, "no"}, + CountryToIsoIndex{277776, "nf"}, + CountryToIsoIndex{277800, "se"}, + CountryToIsoIndex{277813, "ch"}, + CountryToIsoIndex{277832, "lk"}, + CountryToIsoIndex{277850, "ug"}, + CountryToIsoIndex{277865, "uz"}, + CountryToIsoIndex{277886, "ua"}, + CountryToIsoIndex{277903, "wf"}, + CountryToIsoIndex{277936, "uy"}, + CountryToIsoIndex{277955, "td"}, + CountryToIsoIndex{277962, "cz"}, + CountryToIsoIndex{277973, "cz"}, + CountryToIsoIndex{278019, "me"}, + CountryToIsoIndex{278040, "cl"}, + CountryToIsoIndex{278049, "cn"}, + CountryToIsoIndex{278066, "mo"}, + CountryToIsoIndex{278103, "pw"}, + CountryToIsoIndex{278116, "pk"}, + CountryToIsoIndex{278133, "ps"}, + CountryToIsoIndex{278150, "ps"}, + CountryToIsoIndex{278192, "pa"}, + CountryToIsoIndex{278205, "pg"}, + CountryToIsoIndex{278238, "py"}, + CountryToIsoIndex{278255, "pe"}, + CountryToIsoIndex{278266, "pn"}, + CountryToIsoIndex{278296, "pt"}, + CountryToIsoIndex{278319, "pr"}, + CountryToIsoIndex{278343, "je"}, + CountryToIsoIndex{278354, "dj"}, + CountryToIsoIndex{278369, "gi"}, + CountryToIsoIndex{278388, "re"}, + CountryToIsoIndex{278407, "rw"}, + CountryToIsoIndex{278422, "ro"}, + CountryToIsoIndex{278439, "ru"}, + CountryToIsoIndex{278458, "sv"}, + CountryToIsoIndex{278475, "ws"}, + CountryToIsoIndex{278486, "sm"}, + CountryToIsoIndex{278506, "st"}, + CountryToIsoIndex{278542, "sa"}, + CountryToIsoIndex{278572, "sc"}, + CountryToIsoIndex{278591, "mf"}, + CountryToIsoIndex{278611, "pm"}, + CountryToIsoIndex{278645, "sn"}, + CountryToIsoIndex{278660, "lc"}, + CountryToIsoIndex{278684, "vc"}, + CountryToIsoIndex{278734, "kn"}, + CountryToIsoIndex{278764, "ea"}, + CountryToIsoIndex{278795, "rs"}, + CountryToIsoIndex{278808, "sl"}, + CountryToIsoIndex{278830, "sg"}, + CountryToIsoIndex{278849, "sx"}, + CountryToIsoIndex{278871, "sy"}, + CountryToIsoIndex{278882, "sk"}, + CountryToIsoIndex{278899, "si"}, + CountryToIsoIndex{278916, "sb"}, + CountryToIsoIndex{278952, "so"}, + CountryToIsoIndex{278965, "sd"}, + CountryToIsoIndex{278978, "bl"}, + CountryToIsoIndex{279014, "cx"}, + CountryToIsoIndex{279049, "sh"}, + CountryToIsoIndex{279084, "sr"}, + CountryToIsoIndex{279101, "sz"}, + CountryToIsoIndex{279120, "sj"}, + CountryToIsoIndex{279158, "vu"}, + CountryToIsoIndex{279177, "va"}, + CountryToIsoIndex{279192, "ve"}, + CountryToIsoIndex{279213, "vn"}, + CountryToIsoIndex{279228, "ge"}, + CountryToIsoIndex{279243, "tz"}, + CountryToIsoIndex{279260, "tj"}, + CountryToIsoIndex{279279, "tg"}, + CountryToIsoIndex{279288, "tk"}, + CountryToIsoIndex{279305, "to"}, + CountryToIsoIndex{279316, "tv"}, + CountryToIsoIndex{279333, "tt"}, + CountryToIsoIndex{279366, "ta"}, + CountryToIsoIndex{279399, "ci"}, + CountryToIsoIndex{279419, "ke"}, + CountryToIsoIndex{279430, "cp"}, + CountryToIsoIndex{279458, "kw"}, + CountryToIsoIndex{279473, "om"}, + CountryToIsoIndex{279482, "fo"}, + CountryToIsoIndex{279514, "ph"}, + CountryToIsoIndex{279535, "fi"}, + CountryToIsoIndex{279554, "fj"}, + CountryToIsoIndex{279563, "fk"}, + CountryToIsoIndex{279622, "fk"}, + CountryToIsoIndex{279660, "fr"}, + CountryToIsoIndex{279675, "gf"}, + CountryToIsoIndex{279709, "tf"}, + CountryToIsoIndex{279768, "pf"}, + CountryToIsoIndex{279808, "al"}, + CountryToIsoIndex{279827, "ao"}, + CountryToIsoIndex{279842, "ad"}, + CountryToIsoIndex{279857, "aq"}, + CountryToIsoIndex{279882, "ag"}, + CountryToIsoIndex{279923, "af"}, + CountryToIsoIndex{279954, "ar"}, + CountryToIsoIndex{279975, "aw"}, + CountryToIsoIndex{279990, "am"}, + CountryToIsoIndex{280007, "ug"}, + CountryToIsoIndex{280024, "ug"}, + CountryToIsoIndex{280037, "uz"}, + CountryToIsoIndex{280056, "au"}, + CountryToIsoIndex{280079, "hu"}, + CountryToIsoIndex{280094, "at"}, + CountryToIsoIndex{280109, "au"}, + CountryToIsoIndex{280126, "ua"}, + CountryToIsoIndex{280145, "ua"}, + CountryToIsoIndex{280162, "uy"}, + CountryToIsoIndex{280181, "uy"}, + CountryToIsoIndex{280200, "az"}, + CountryToIsoIndex{280219, "cx"}, + CountryToIsoIndex{280240, "ae"}, + CountryToIsoIndex{280285, "it"}, + CountryToIsoIndex{280302, "it"}, + CountryToIsoIndex{280315, "ax"}, + CountryToIsoIndex{280333, "bs"}, + CountryToIsoIndex{280351, "vg"}, + CountryToIsoIndex{280388, "vi"}, + CountryToIsoIndex{280435, "hm"}, + CountryToIsoIndex{280466, "wf"}, + CountryToIsoIndex{280499, "tc"}, + CountryToIsoIndex{280530, "mp"}, + CountryToIsoIndex{280567, "mh"}, + CountryToIsoIndex{280583, "nf"}, + CountryToIsoIndex{280603, "sc"}, + CountryToIsoIndex{280621, "fo"}, + CountryToIsoIndex{280637, "fk"}, + CountryToIsoIndex{280657, "fk"}, + CountryToIsoIndex{280701, "pn"}, + CountryToIsoIndex{280721, "ck"}, + CountryToIsoIndex{280735, "cc"}, + CountryToIsoIndex{280768, "ky"}, + CountryToIsoIndex{280786, "sb"}, + CountryToIsoIndex{280802, "id"}, + CountryToIsoIndex{280823, "id"}, + CountryToIsoIndex{280842, "in"}, + CountryToIsoIndex{280855, "is"}, + CountryToIsoIndex{280872, "is"}, + CountryToIsoIndex{280885, "ir"}, + CountryToIsoIndex{280898, "ir"}, + CountryToIsoIndex{280909, "ie"}, + CountryToIsoIndex{280926, "ie"}, + CountryToIsoIndex{280939, "sv"}, + CountryToIsoIndex{280957, "al"}, + CountryToIsoIndex{280970, "dz"}, + CountryToIsoIndex{280987, "ai"}, + CountryToIsoIndex{281004, "ao"}, + CountryToIsoIndex{281017, "ad"}, + CountryToIsoIndex{281030, "aq"}, + CountryToIsoIndex{281051, "ag"}, + CountryToIsoIndex{281083, "ee"}, + CountryToIsoIndex{281098, "af"}, + CountryToIsoIndex{281115, "ec"}, + CountryToIsoIndex{281130, "ar"}, + CountryToIsoIndex{281147, "us"}, + CountryToIsoIndex{281158, "aw"}, + CountryToIsoIndex{281169, "er"}, + CountryToIsoIndex{281186, "am"}, + CountryToIsoIndex{281199, "us"}, + CountryToIsoIndex{281221, "et"}, + CountryToIsoIndex{281236, "bs"}, + CountryToIsoIndex{281257, "bd"}, + CountryToIsoIndex{281280, "bb"}, + CountryToIsoIndex{281301, "bo"}, + CountryToIsoIndex{281318, "ba"}, + CountryToIsoIndex{281356, "bw"}, + CountryToIsoIndex{281375, "bt"}, + CountryToIsoIndex{281390, "bt"}, + CountryToIsoIndex{281401, "bg"}, + CountryToIsoIndex{281420, "bg"}, + CountryToIsoIndex{281435, "bo"}, + CountryToIsoIndex{281450, "ba"}, + CountryToIsoIndex{281484, "bw"}, + CountryToIsoIndex{281501, "bi"}, + CountryToIsoIndex{281516, "bf"}, + CountryToIsoIndex{281540, "bf"}, + CountryToIsoIndex{281568, "bh"}, + CountryToIsoIndex{281581, "by"}, + CountryToIsoIndex{281594, "be"}, + CountryToIsoIndex{281605, "bz"}, + CountryToIsoIndex{281614, "bd"}, + CountryToIsoIndex{281627, "bj"}, + CountryToIsoIndex{281636, "by"}, + CountryToIsoIndex{281653, "be"}, + CountryToIsoIndex{281666, "bz"}, + CountryToIsoIndex{281677, "bj"}, + CountryToIsoIndex{281688, "bm"}, + CountryToIsoIndex{281703, "br"}, + CountryToIsoIndex{281718, "bb"}, + CountryToIsoIndex{281731, "bn"}, + CountryToIsoIndex{281744, "br"}, + CountryToIsoIndex{281755, "gb"}, + CountryToIsoIndex{281770, "bm"}, + CountryToIsoIndex{281783, "ga"}, + CountryToIsoIndex{281796, "gm"}, + CountryToIsoIndex{281811, "ge"}, + CountryToIsoIndex{281826, "gh"}, + CountryToIsoIndex{281835, "ga"}, + CountryToIsoIndex{281844, "gh"}, + CountryToIsoIndex{281857, "gt"}, + CountryToIsoIndex{281872, "gu"}, + CountryToIsoIndex{281881, "gp"}, + CountryToIsoIndex{281902, "gt"}, + CountryToIsoIndex{281927, "gu"}, + CountryToIsoIndex{281940, "gp"}, + CountryToIsoIndex{281957, "gy"}, + CountryToIsoIndex{281972, "ez"}, + CountryToIsoIndex{281990, "gy"}, + CountryToIsoIndex{282001, "gf"}, + CountryToIsoIndex{282027, "gi"}, + CountryToIsoIndex{282050, "gi"}, + CountryToIsoIndex{282065, "gn"}, + CountryToIsoIndex{282076, "gq"}, + CountryToIsoIndex{282104, "gw"}, + CountryToIsoIndex{282126, "gn"}, + CountryToIsoIndex{282135, "gw"}, + CountryToIsoIndex{282158, "gm"}, + CountryToIsoIndex{282169, "gg"}, + CountryToIsoIndex{282182, "ge"}, + CountryToIsoIndex{282195, "gr"}, + CountryToIsoIndex{282216, "gl"}, + CountryToIsoIndex{282235, "gl"}, + CountryToIsoIndex{282250, "de"}, + CountryToIsoIndex{282263, "gd"}, + CountryToIsoIndex{282274, "gg"}, + CountryToIsoIndex{282285, "gd"}, + CountryToIsoIndex{282304, "gs"}, + CountryToIsoIndex{282379, "dj"}, + CountryToIsoIndex{282394, "jm"}, + CountryToIsoIndex{282409, "je"}, + CountryToIsoIndex{282420, "do"}, + CountryToIsoIndex{282466, "dm"}, + CountryToIsoIndex{282483, "dm"}, + CountryToIsoIndex{282500, "jm"}, + CountryToIsoIndex{282521, "dj"}, + CountryToIsoIndex{282538, "je"}, + CountryToIsoIndex{282553, "dg"}, + CountryToIsoIndex{282575, "de"}, + CountryToIsoIndex{282596, "dk"}, + CountryToIsoIndex{282607, "dk"}, + CountryToIsoIndex{282624, "za"}, + CountryToIsoIndex{282646, "ss"}, + CountryToIsoIndex{282664, "za"}, + CountryToIsoIndex{282691, "ss"}, + CountryToIsoIndex{282714, "ht"}, + CountryToIsoIndex{282727, "ac"}, + CountryToIsoIndex{282745, "bv"}, + CountryToIsoIndex{282761, "im"}, + CountryToIsoIndex{282775, "cp"}, + CountryToIsoIndex{282799, "ht"}, + CountryToIsoIndex{282810, "mv"}, + CountryToIsoIndex{282840, "um"}, + CountryToIsoIndex{282897, "ic"}, + CountryToIsoIndex{282923, "bq"}, + CountryToIsoIndex{282970, "nl"}, + CountryToIsoIndex{282985, "hn"}, + CountryToIsoIndex{283004, "in"}, + CountryToIsoIndex{283013, "va"}, + CountryToIsoIndex{283028, "nl"}, + CountryToIsoIndex{283039, "hk"}, + CountryToIsoIndex{283057, "hk"}, + CountryToIsoIndex{283120, "hu"}, + CountryToIsoIndex{283135, "hn"}, + CountryToIsoIndex{283150, "io"}, + CountryToIsoIndex{283214, "tf"}, + CountryToIsoIndex{283266, "gb"}, + CountryToIsoIndex{283294, "ci"}, + CountryToIsoIndex{283333, "ph"}, + CountryToIsoIndex{283354, "do"}, + CountryToIsoIndex{283396, "cf"}, + CountryToIsoIndex{283443, "cz"}, + CountryToIsoIndex{283475, "ps"}, + CountryToIsoIndex{283509, "va"}, + CountryToIsoIndex{283541, "vu"}, + CountryToIsoIndex{283562, "vn"}, + CountryToIsoIndex{283581, "ve"}, + CountryToIsoIndex{283602, "vn"}, + CountryToIsoIndex{283617, "vu"}, + CountryToIsoIndex{283630, "ve"}, + CountryToIsoIndex{283645, "zm"}, + CountryToIsoIndex{283660, "zw"}, + CountryToIsoIndex{283681, "zw"}, + CountryToIsoIndex{283698, "zm"}, + CountryToIsoIndex{283709, "ci"}, + CountryToIsoIndex{283727, "tz"}, + CountryToIsoIndex{283748, "tg"}, + CountryToIsoIndex{283757, "to"}, + CountryToIsoIndex{283770, "tj"}, + CountryToIsoIndex{283789, "tv"}, + CountryToIsoIndex{283808, "tv"}, + CountryToIsoIndex{283821, "tg"}, + CountryToIsoIndex{283830, "to"}, + CountryToIsoIndex{283841, "tn"}, + CountryToIsoIndex{283856, "tk"}, + CountryToIsoIndex{283869, "tr"}, + CountryToIsoIndex{283882, "tm"}, + CountryToIsoIndex{283903, "tm"}, + CountryToIsoIndex{283930, "tw"}, + CountryToIsoIndex{283945, "th"}, + CountryToIsoIndex{283962, "tl"}, + CountryToIsoIndex{283982, "tz"}, + CountryToIsoIndex{283995, "tr"}, + CountryToIsoIndex{284008, "qo"}, + CountryToIsoIndex{284046, "tt"}, + CountryToIsoIndex{284087, "tt"}, + CountryToIsoIndex{284115, "ta"}, + CountryToIsoIndex{284142, "td"}, + CountryToIsoIndex{284153, "cl"}, + CountryToIsoIndex{284164, "cz"}, + CountryToIsoIndex{284177, "jp"}, + CountryToIsoIndex{284194, "gr"}, + CountryToIsoIndex{284203, "jp"}, + CountryToIsoIndex{284210, "jo"}, + CountryToIsoIndex{284219, "il"}, + CountryToIsoIndex{284230, "kw"}, + CountryToIsoIndex{284241, "cn"}, + CountryToIsoIndex{284250, "cv"}, + CountryToIsoIndex{284264, "la"}, + CountryToIsoIndex{284275, "la"}, + CountryToIsoIndex{284284, "lb"}, + CountryToIsoIndex{284295, "ly"}, + CountryToIsoIndex{284302, "lu"}, + CountryToIsoIndex{284321, "lu"}, + CountryToIsoIndex{284342, "lv"}, + CountryToIsoIndex{284353, "ly"}, + CountryToIsoIndex{284364, "lr"}, + CountryToIsoIndex{284379, "lr"}, + CountryToIsoIndex{284392, "lt"}, + CountryToIsoIndex{284401, "lt"}, + CountryToIsoIndex{284410, "li"}, + CountryToIsoIndex{284431, "ls"}, + CountryToIsoIndex{284442, "lv"}, + CountryToIsoIndex{284459, "ls"}, + CountryToIsoIndex{284472, "mg"}, + CountryToIsoIndex{284501, "yt"}, + CountryToIsoIndex{284514, "mw"}, + CountryToIsoIndex{284533, "mv"}, + CountryToIsoIndex{284552, "mt"}, + CountryToIsoIndex{284567, "ml"}, + CountryToIsoIndex{284578, "my"}, + CountryToIsoIndex{284597, "mk"}, + CountryToIsoIndex{284618, "ma"}, + CountryToIsoIndex{284633, "mq"}, + CountryToIsoIndex{284652, "mr"}, + CountryToIsoIndex{284675, "mh"}, + CountryToIsoIndex{284707, "mr"}, + CountryToIsoIndex{284726, "mu"}, + CountryToIsoIndex{284745, "mz"}, + CountryToIsoIndex{284764, "yt"}, + CountryToIsoIndex{284775, "md"}, + CountryToIsoIndex{284792, "ml"}, + CountryToIsoIndex{284801, "mc"}, + CountryToIsoIndex{284816, "mn"}, + CountryToIsoIndex{284833, "ms"}, + CountryToIsoIndex{284854, "me"}, + CountryToIsoIndex{284875, "mu"}, + CountryToIsoIndex{284892, "mg"}, + CountryToIsoIndex{284905, "mz"}, + CountryToIsoIndex{284920, "md"}, + CountryToIsoIndex{284935, "mn"}, + CountryToIsoIndex{284952, "me"}, + CountryToIsoIndex{284969, "ms"}, + CountryToIsoIndex{284984, "mc"}, + CountryToIsoIndex{284995, "tl"}, + CountryToIsoIndex{285015, "tl"}, + CountryToIsoIndex{285035, "mm"}, + CountryToIsoIndex{285054, "mm"}, + CountryToIsoIndex{285080, "fm"}, + CountryToIsoIndex{285101, "fm"}, + CountryToIsoIndex{285120, "mw"}, + CountryToIsoIndex{285133, "my"}, + CountryToIsoIndex{285144, "mt"}, + CountryToIsoIndex{285153, "mx"}, + CountryToIsoIndex{285168, "eg"}, + CountryToIsoIndex{285179, "mo"}, + CountryToIsoIndex{285188, "mo"}, + CountryToIsoIndex{285242, "mk"}, + CountryToIsoIndex{285257, "mk"}, + CountryToIsoIndex{285345, "mx"}, + CountryToIsoIndex{285358, "ma"}, + CountryToIsoIndex{285369, "mq"}, + CountryToIsoIndex{285384, "na"}, + CountryToIsoIndex{285401, "nr"}, + CountryToIsoIndex{285412, "no"}, + CountryToIsoIndex{285431, "nf"}, + CountryToIsoIndex{285459, "no"}, + CountryToIsoIndex{285476, "ng"}, + CountryToIsoIndex{285491, "ng"}, + CountryToIsoIndex{285504, "nz"}, + CountryToIsoIndex{285526, "nz"}, + CountryToIsoIndex{285544, "nu"}, + CountryToIsoIndex{285555, "ne"}, + CountryToIsoIndex{285568, "ne"}, + CountryToIsoIndex{285579, "ni"}, + CountryToIsoIndex{285602, "ni"}, + CountryToIsoIndex{285619, "na"}, + CountryToIsoIndex{285632, "np"}, + CountryToIsoIndex{285647, "np"}, + CountryToIsoIndex{285656, "nc"}, + CountryToIsoIndex{285684, "st"}, + CountryToIsoIndex{285730, "ws"}, + CountryToIsoIndex{285745, "sm"}, + CountryToIsoIndex{285769, "st"}, + CountryToIsoIndex{285804, "ea"}, + CountryToIsoIndex{285828, "sb"}, + CountryToIsoIndex{285858, "so"}, + CountryToIsoIndex{285875, "sj"}, + CountryToIsoIndex{285910, "eh"}, + CountryToIsoIndex{285934, "sd"}, + CountryToIsoIndex{285947, "sd"}, + CountryToIsoIndex{285956, "sz"}, + CountryToIsoIndex{285981, "sz"}, + CountryToIsoIndex{285998, "so"}, + CountryToIsoIndex{286011, "sy"}, + CountryToIsoIndex{286022, "sr"}, + CountryToIsoIndex{286039, "sr"}, + CountryToIsoIndex{286054, "sh"}, + CountryToIsoIndex{286072, "sl"}, + CountryToIsoIndex{286094, "sc"}, + CountryToIsoIndex{286107, "cn"}, + CountryToIsoIndex{286114, "sg"}, + CountryToIsoIndex{286135, "sg"}, + CountryToIsoIndex{286150, "sl"}, + CountryToIsoIndex{286172, "sy"}, + CountryToIsoIndex{286183, "sk"}, + CountryToIsoIndex{286204, "si"}, + CountryToIsoIndex{286223, "si"}, + CountryToIsoIndex{286238, "sk"}, + CountryToIsoIndex{286253, "ws"}, + CountryToIsoIndex{286264, "as"}, + CountryToIsoIndex{286294, "mf"}, + CountryToIsoIndex{286308, "sm"}, + CountryToIsoIndex{286324, "sn"}, + CountryToIsoIndex{286333, "bl"}, + CountryToIsoIndex{286361, "sh"}, + CountryToIsoIndex{286377, "vc"}, + CountryToIsoIndex{286418, "lc"}, + CountryToIsoIndex{286436, "sx"}, + CountryToIsoIndex{286454, "pm"}, + CountryToIsoIndex{286485, "kn"}, + CountryToIsoIndex{286514, "sn"}, + CountryToIsoIndex{286531, "rs"}, + CountryToIsoIndex{286544, "es"}, + CountryToIsoIndex{286553, "rs"}, + CountryToIsoIndex{286564, "lk"}, + CountryToIsoIndex{286580, "lk"}, + CountryToIsoIndex{286603, "eg"}, + CountryToIsoIndex{286618, "om"}, + CountryToIsoIndex{286629, "et"}, + CountryToIsoIndex{286646, "iq"}, + CountryToIsoIndex{286657, "sv"}, + CountryToIsoIndex{286685, "ee"}, + CountryToIsoIndex{286702, "at"}, + CountryToIsoIndex{286717, "ec"}, + CountryToIsoIndex{286736, "gq"}, + CountryToIsoIndex{286770, "sa"}, + CountryToIsoIndex{286792, "er"}, + CountryToIsoIndex{286807, "pa"}, + CountryToIsoIndex{286828, "pg"}, + CountryToIsoIndex{286863, "pk"}, + CountryToIsoIndex{286886, "py"}, + CountryToIsoIndex{286911, "pr"}, + CountryToIsoIndex{286934, "pt"}, + CountryToIsoIndex{286955, "pl"}, + CountryToIsoIndex{286968, "pn"}, + CountryToIsoIndex{287000, "pe"}, + CountryToIsoIndex{287011, "us"}, + CountryToIsoIndex{287019, "fk"}, + CountryToIsoIndex{287057, "fo"}, + CountryToIsoIndex{287085, "gb"}, + CountryToIsoIndex{287131, "us"}, + CountryToIsoIndex{287171, "fj"}, + CountryToIsoIndex{287186, "ph"}, + CountryToIsoIndex{287209, "fi"}, + CountryToIsoIndex{287228, "gf"}, + CountryToIsoIndex{287270, "pf"}, + CountryToIsoIndex{287318, "fr"}, + CountryToIsoIndex{287341, "pr"}, + CountryToIsoIndex{287363, "pl"}, + CountryToIsoIndex{287374, "pf"}, + CountryToIsoIndex{287406, "pt"}, + CountryToIsoIndex{287421, "fj"}, + CountryToIsoIndex{287432, "fi"}, + CountryToIsoIndex{287445, "pw"}, + CountryToIsoIndex{287454, "ps"}, + CountryToIsoIndex{287467, "pa"}, + CountryToIsoIndex{287476, "pg"}, + CountryToIsoIndex{287509, "pk"}, + CountryToIsoIndex{287522, "py"}, + CountryToIsoIndex{287537, "pe"}, + CountryToIsoIndex{287544, "cf"}, + CountryToIsoIndex{287608, "fr"}, + CountryToIsoIndex{287617, "td"}, + CountryToIsoIndex{287626, "cl"}, + CountryToIsoIndex{287637, "cz"}, + CountryToIsoIndex{287648, "qa"}, + CountryToIsoIndex{287663, "kh"}, + CountryToIsoIndex{287682, "cm"}, + CountryToIsoIndex{287699, "ca"}, + CountryToIsoIndex{287716, "ic"}, + CountryToIsoIndex{287752, "cv"}, + CountryToIsoIndex{287794, "co"}, + CountryToIsoIndex{287811, "km"}, + CountryToIsoIndex{287826, "cd"}, + CountryToIsoIndex{287855, "xk"}, + CountryToIsoIndex{287870, "cr"}, + CountryToIsoIndex{287894, "cu"}, + CountryToIsoIndex{287905, "cu"}, + CountryToIsoIndex{287914, "co"}, + CountryToIsoIndex{287931, "km"}, + CountryToIsoIndex{287944, "cd"}, + CountryToIsoIndex{288011, "cg"}, + CountryToIsoIndex{288041, "cg"}, + CountryToIsoIndex{288069, "cd"}, + CountryToIsoIndex{288097, "xk"}, + CountryToIsoIndex{288110, "cr"}, + CountryToIsoIndex{288130, "ck"}, + CountryToIsoIndex{288152, "cw"}, + CountryToIsoIndex{288171, "cw"}, + CountryToIsoIndex{288186, "kr"}, + CountryToIsoIndex{288214, "kp"}, + CountryToIsoIndex{288242, "kz"}, + CountryToIsoIndex{288255, "qa"}, + CountryToIsoIndex{288264, "ky"}, + CountryToIsoIndex{288294, "kg"}, + CountryToIsoIndex{288313, "ki"}, + CountryToIsoIndex{288332, "ki"}, + CountryToIsoIndex{288349, "nc"}, + CountryToIsoIndex{288375, "kh"}, + CountryToIsoIndex{288390, "cm"}, + CountryToIsoIndex{288401, "ca"}, + CountryToIsoIndex{288410, "ke"}, + CountryToIsoIndex{288419, "ke"}, + CountryToIsoIndex{288430, "cy"}, + CountryToIsoIndex{288445, "hr"}, + CountryToIsoIndex{288462, "hr"}, + CountryToIsoIndex{288477, "re"}, + CountryToIsoIndex{288492, "rw"}, + CountryToIsoIndex{288505, "rw"}, + CountryToIsoIndex{288522, "ro"}, + CountryToIsoIndex{288535, "ro"}, + CountryToIsoIndex{288550, "ru"}, + CountryToIsoIndex{288561, "ru"}, + CountryToIsoIndex{288578, "re"}, + CountryToIsoIndex{288595, "se"}, + CountryToIsoIndex{288608, "ch"}, + CountryToIsoIndex{288621, "se"}, + CountryToIsoIndex{288634, "es"}, + CountryToIsoIndex{288651, "th"}, + CountryToIsoIndex{288664, "tn"}, + CountryToIsoIndex{288679, "ye"}, + CountryToIsoIndex{288688, "ie"}, + CountryToIsoIndex{288703, "ie"}, + CountryToIsoIndex{288718, "is"}, + CountryToIsoIndex{288734, "is"}, + CountryToIsoIndex{288750, "im"}, + CountryToIsoIndex{288769, "ci"}, + CountryToIsoIndex{288793, "ci"}, + CountryToIsoIndex{288815, "ci"}, + CountryToIsoIndex{288837, "az"}, + CountryToIsoIndex{288858, "az"}, + CountryToIsoIndex{288879, "az"}, + CountryToIsoIndex{288898, "am"}, + CountryToIsoIndex{288913, "aw"}, + CountryToIsoIndex{288924, "ar"}, + CountryToIsoIndex{288941, "az"}, + CountryToIsoIndex{288960, "au"}, + CountryToIsoIndex{288977, "ac"}, + CountryToIsoIndex{289003, "at"}, + CountryToIsoIndex{289016, "au"}, + CountryToIsoIndex{289035, "au"}, + CountryToIsoIndex{289052, "at"}, + CountryToIsoIndex{289065, "au"}, + CountryToIsoIndex{289082, "be"}, + CountryToIsoIndex{289095, "au"}, + CountryToIsoIndex{289112, "at"}, + CountryToIsoIndex{289125, "al"}, + CountryToIsoIndex{289138, "de"}, + CountryToIsoIndex{289149, "ax"}, + CountryToIsoIndex{289169, "ax"}, + CountryToIsoIndex{289195, "us"}, + CountryToIsoIndex{289239, "as"}, + CountryToIsoIndex{289263, "vi"}, + CountryToIsoIndex{289292, "um"}, + CountryToIsoIndex{289327, "us"}, + CountryToIsoIndex{289364, "vi"}, + CountryToIsoIndex{289392, "as"}, + CountryToIsoIndex{289420, "um"}, + CountryToIsoIndex{289477, "ag"}, + CountryToIsoIndex{289510, "ad"}, + CountryToIsoIndex{289523, "ao"}, + CountryToIsoIndex{289536, "ai"}, + CountryToIsoIndex{289551, "qo"}, + CountryToIsoIndex{289589, "is"}, + CountryToIsoIndex{289604, "ie"}, + CountryToIsoIndex{289617, "is"}, + CountryToIsoIndex{289630, "is"}, + CountryToIsoIndex{289645, "im"}, + CountryToIsoIndex{289668, "az"}, + CountryToIsoIndex{289685, "ar"}, + CountryToIsoIndex{289704, "am"}, + CountryToIsoIndex{289719, "aw"}, + CountryToIsoIndex{289730, "au"}, + CountryToIsoIndex{289747, "af"}, + CountryToIsoIndex{289766, "al"}, + CountryToIsoIndex{289781, "de"}, + CountryToIsoIndex{289796, "aq"}, + CountryToIsoIndex{289817, "ag"}, + CountryToIsoIndex{289847, "ad"}, + CountryToIsoIndex{289860, "ao"}, + CountryToIsoIndex{289873, "ai"}, + CountryToIsoIndex{289888, "uy"}, + CountryToIsoIndex{289903, "uy"}, + CountryToIsoIndex{289920, "uz"}, + CountryToIsoIndex{289939, "ug"}, + CountryToIsoIndex{289952, "qo"}, + CountryToIsoIndex{289988, "ua"}, + CountryToIsoIndex{290005, "ie"}, + CountryToIsoIndex{290020, "et"}, + CountryToIsoIndex{290035, "er"}, + CountryToIsoIndex{290050, "es"}, + CountryToIsoIndex{290065, "ee"}, + CountryToIsoIndex{290080, "il"}, + CountryToIsoIndex{290095, "id"}, + CountryToIsoIndex{290114, "ir"}, + CountryToIsoIndex{290125, "it"}, + CountryToIsoIndex{290140, "us"}, + CountryToIsoIndex{290151, "um"}, + CountryToIsoIndex{290192, "vi"}, + CountryToIsoIndex{290235, "aw"}, + CountryToIsoIndex{290250, "ar"}, + CountryToIsoIndex{290271, "aw"}, + CountryToIsoIndex{290284, "az"}, + CountryToIsoIndex{290307, "ac"}, + CountryToIsoIndex{290343, "af"}, + CountryToIsoIndex{290366, "ax"}, + CountryToIsoIndex{290398, "al"}, + CountryToIsoIndex{290417, "dz"}, + CountryToIsoIndex{290436, "as"}, + CountryToIsoIndex{290466, "us"}, + CountryToIsoIndex{290515, "aq"}, + CountryToIsoIndex{290538, "aq"}, + CountryToIsoIndex{290561, "ag"}, + CountryToIsoIndex{290600, "ag"}, + CountryToIsoIndex{290635, "ad"}, + CountryToIsoIndex{290652, "ad"}, + CountryToIsoIndex{290667, "ao"}, + CountryToIsoIndex{290682, "ai"}, + CountryToIsoIndex{290701, "au"}, + CountryToIsoIndex{290724, "mo"}, + CountryToIsoIndex{290737, "mo"}, + CountryToIsoIndex{290795, "at"}, + CountryToIsoIndex{290818, "is"}, + CountryToIsoIndex{290835, "cf"}, + CountryToIsoIndex{290888, "jo"}, + CountryToIsoIndex{290899, "uy"}, + CountryToIsoIndex{290916, "uz"}, + CountryToIsoIndex{290937, "au"}, + CountryToIsoIndex{290956, "qo"}, + CountryToIsoIndex{291015, "om"}, + CountryToIsoIndex{291026, "ug"}, + CountryToIsoIndex{291041, "it"}, + CountryToIsoIndex{291058, "iq"}, + CountryToIsoIndex{291069, "ir"}, + CountryToIsoIndex{291080, "ie"}, + CountryToIsoIndex{291103, "il"}, + CountryToIsoIndex{291126, "is"}, + CountryToIsoIndex{291147, "es"}, + CountryToIsoIndex{291166, "jo"}, + CountryToIsoIndex{291189, "uz"}, + CountryToIsoIndex{291212, "ua"}, + CountryToIsoIndex{291229, "uy"}, + CountryToIsoIndex{291246, "ua"}, + CountryToIsoIndex{291265, "ug"}, + CountryToIsoIndex{291280, "it"}, + CountryToIsoIndex{291295, "it"}, + CountryToIsoIndex{291308, "ie"}, + CountryToIsoIndex{291323, "il"}, + CountryToIsoIndex{291340, "es"}, + CountryToIsoIndex{291357, "id"}, + CountryToIsoIndex{291378, "ec"}, + CountryToIsoIndex{291395, "ir"}, + CountryToIsoIndex{291406, "sv"}, + CountryToIsoIndex{291429, "er"}, + CountryToIsoIndex{291448, "ee"}, + CountryToIsoIndex{291467, "et"}, + CountryToIsoIndex{291488, "ec"}, + CountryToIsoIndex{291505, "gq"}, + CountryToIsoIndex{291543, "et"}, + CountryToIsoIndex{291560, "am"}, + CountryToIsoIndex{291579, "am"}, + CountryToIsoIndex{291600, "ar"}, + CountryToIsoIndex{291619, "er"}, + CountryToIsoIndex{291636, "ae"}, + CountryToIsoIndex{291685, "az"}, + CountryToIsoIndex{291708, "za"}, + CountryToIsoIndex{291738, "af"}, + CountryToIsoIndex{291759, "gb"}, + CountryToIsoIndex{291776, "vg"}, + CountryToIsoIndex{291825, "io"}, + CountryToIsoIndex{291914, "ao"}, + CountryToIsoIndex{291929, "al"}, + CountryToIsoIndex{291946, "de"}, + CountryToIsoIndex{291963, "mp"}, + CountryToIsoIndex{291988, "kp"}, + CountryToIsoIndex{292006, "at"}, + CountryToIsoIndex{292017, "et"}, + CountryToIsoIndex{292030, "az"}, + CountryToIsoIndex{292049, "ar"}, + CountryToIsoIndex{292066, "ar"}, + CountryToIsoIndex{292083, "ar"}, + CountryToIsoIndex{292100, "jo"}, + CountryToIsoIndex{292109, "am"}, + CountryToIsoIndex{292126, "am"}, + CountryToIsoIndex{292143, "am"}, + CountryToIsoIndex{292158, "aw"}, + CountryToIsoIndex{292169, "ez"}, + CountryToIsoIndex{292188, "uy"}, + CountryToIsoIndex{292203, "ar"}, + CountryToIsoIndex{292220, "er"}, + CountryToIsoIndex{292233, "er"}, + CountryToIsoIndex{292248, "er"}, + CountryToIsoIndex{292265, "uz"}, + CountryToIsoIndex{292282, "uz"}, + CountryToIsoIndex{292299, "uz"}, + CountryToIsoIndex{292316, "au"}, + CountryToIsoIndex{292333, "gq"}, + CountryToIsoIndex{292359, "gq"}, + CountryToIsoIndex{292383, "gq"}, + CountryToIsoIndex{292407, "ee"}, + CountryToIsoIndex{292420, "ee"}, + CountryToIsoIndex{292435, "il"}, + CountryToIsoIndex{292450, "il"}, + CountryToIsoIndex{292465, "il"}, + CountryToIsoIndex{292480, "sk"}, + CountryToIsoIndex{292495, "si"}, + CountryToIsoIndex{292510, "sj"}, + CountryToIsoIndex{292550, "ee"}, + CountryToIsoIndex{292565, "es"}, + CountryToIsoIndex{292580, "es"}, + CountryToIsoIndex{292591, "ac"}, + CountryToIsoIndex{292617, "za"}, + CountryToIsoIndex{292643, "af"}, + CountryToIsoIndex{292662, "af"}, + CountryToIsoIndex{292681, "sv"}, + CountryToIsoIndex{292701, "sv"}, + CountryToIsoIndex{292721, "ps"}, + CountryToIsoIndex{292757, "ar"}, + CountryToIsoIndex{292776, "jo"}, + CountryToIsoIndex{292789, "tf"}, + CountryToIsoIndex{292840, "io"}, + CountryToIsoIndex{292905, "ec"}, + CountryToIsoIndex{292924, "ae"}, + CountryToIsoIndex{292971, "ax"}, + CountryToIsoIndex{292995, "al"}, + CountryToIsoIndex{293010, "al"}, + CountryToIsoIndex{293025, "al"}, + CountryToIsoIndex{293040, "al"}, + CountryToIsoIndex{293055, "bh"}, + CountryToIsoIndex{293070, "br"}, + CountryToIsoIndex{293087, "pt"}, + CountryToIsoIndex{293104, "bs"}, + CountryToIsoIndex{293119, "ba"}, + CountryToIsoIndex{293149, "cz"}, + CountryToIsoIndex{293162, "tl"}, + CountryToIsoIndex{293192, "me"}, + CountryToIsoIndex{293216, "dz"}, + CountryToIsoIndex{293231, "dz"}, + CountryToIsoIndex{293246, "dz"}, + CountryToIsoIndex{293261, "dz"}, + CountryToIsoIndex{293276, "dz"}, + CountryToIsoIndex{293291, "dk"}, + CountryToIsoIndex{293308, "cv"}, + CountryToIsoIndex{293332, "sv"}, + CountryToIsoIndex{293353, "sv"}, + CountryToIsoIndex{293372, "sv"}, + CountryToIsoIndex{293391, "sn"}, + CountryToIsoIndex{293406, "sd"}, + CountryToIsoIndex{293421, "se"}, + CountryToIsoIndex{293434, "eh"}, + CountryToIsoIndex{293464, "so"}, + CountryToIsoIndex{293479, "cn"}, + CountryToIsoIndex{293490, "iq"}, + CountryToIsoIndex{293503, "ga"}, + CountryToIsoIndex{293518, "va"}, + CountryToIsoIndex{293537, "ph"}, + CountryToIsoIndex{293552, "cm"}, + CountryToIsoIndex{293571, "cg"}, + CountryToIsoIndex{293605, "cd"}, + CountryToIsoIndex{293637, "kw"}, + CountryToIsoIndex{293650, "de"}, + CountryToIsoIndex{293661, "ma"}, + CountryToIsoIndex{293674, "mx"}, + CountryToIsoIndex{293689, "sa"}, + CountryToIsoIndex{293736, "gb"}, + CountryToIsoIndex{293766, "ax"}, + CountryToIsoIndex{293782, "no"}, + CountryToIsoIndex{293797, "at"}, + CountryToIsoIndex{293810, "ne"}, + CountryToIsoIndex{293823, "in"}, + CountryToIsoIndex{293834, "us"}, + CountryToIsoIndex{293866, "jp"}, + CountryToIsoIndex{293881, "ye"}, + CountryToIsoIndex{293892, "gr"}, + CountryToIsoIndex{293907, "ae"}, + CountryToIsoIndex{293942, "us"}, + CountryToIsoIndex{293955, "as"}, + CountryToIsoIndex{293979, "um"}, + CountryToIsoIndex{294033, "um"}, + CountryToIsoIndex{294070, "vi"}, + CountryToIsoIndex{294103, "as"}, + CountryToIsoIndex{294127, "vi"}, + CountryToIsoIndex{294164, "aq"}, + CountryToIsoIndex{294185, "aq"}, + CountryToIsoIndex{294204, "ag"}, + CountryToIsoIndex{294237, "ad"}, + CountryToIsoIndex{294250, "id"}, + CountryToIsoIndex{294265, "id"}, + CountryToIsoIndex{294284, "im"}, + CountryToIsoIndex{294309, "aq"}, + CountryToIsoIndex{294330, "ag"}, + CountryToIsoIndex{294367, "ag"}, + CountryToIsoIndex{294402, "aq"}, + CountryToIsoIndex{294423, "ag"}, + CountryToIsoIndex{294454, "ad"}, + CountryToIsoIndex{294467, "id"}, + CountryToIsoIndex{294486, "id"}, + CountryToIsoIndex{294505, "in"}, + CountryToIsoIndex{294516, "gb"}, + CountryToIsoIndex{294533, "ao"}, + CountryToIsoIndex{294546, "ai"}, + CountryToIsoIndex{294559, "ai"}, + CountryToIsoIndex{294576, "ao"}, + CountryToIsoIndex{294589, "ai"}, + CountryToIsoIndex{294604, "uz"}, + CountryToIsoIndex{294623, "qo"}, + CountryToIsoIndex{294671, "eh"}, + CountryToIsoIndex{294693, "om"}, + CountryToIsoIndex{294704, "tl"}, + CountryToIsoIndex{294724, "ua"}, + CountryToIsoIndex{294739, "ug"}, + CountryToIsoIndex{294754, "ir"}, + CountryToIsoIndex{294765, "er"}, + CountryToIsoIndex{294784, "ee"}, + CountryToIsoIndex{294801, "et"}, + CountryToIsoIndex{294816, "ec"}, + CountryToIsoIndex{294833, "gq"}, + CountryToIsoIndex{294865, "am"}, + CountryToIsoIndex{294884, "aw"}, + CountryToIsoIndex{294899, "af"}, + CountryToIsoIndex{294922, "as"}, + CountryToIsoIndex{294952, "ci"}, + CountryToIsoIndex{294976, "ie"}, + CountryToIsoIndex{294997, "is"}, + CountryToIsoIndex{295018, "uz"}, + CountryToIsoIndex{295041, "et"}, + CountryToIsoIndex{295060, "er"}, + CountryToIsoIndex{295077, "il"}, + CountryToIsoIndex{295094, "id"}, + CountryToIsoIndex{295117, "it"}, + CountryToIsoIndex{295128, "ec"}, + CountryToIsoIndex{295145, "gq"}, + CountryToIsoIndex{295179, "sv"}, + CountryToIsoIndex{295205, "al"}, + CountryToIsoIndex{295226, "dz"}, + CountryToIsoIndex{295247, "ag"}, + CountryToIsoIndex{295290, "ad"}, + CountryToIsoIndex{295307, "it"}, + CountryToIsoIndex{295316, "it"}, + CountryToIsoIndex{295325, "ua"}, + CountryToIsoIndex{295338, "ec"}, + CountryToIsoIndex{295351, "ec"}, + CountryToIsoIndex{295366, "us"}, + CountryToIsoIndex{295390, "it"}, + CountryToIsoIndex{295405, "et"}, + CountryToIsoIndex{295420, "et"}, + CountryToIsoIndex{295437, "ir"}, + CountryToIsoIndex{295448, "ie"}, + CountryToIsoIndex{295461, "ie"}, + CountryToIsoIndex{295476, "il"}, + CountryToIsoIndex{295493, "is"}, + CountryToIsoIndex{295506, "ee"}, + CountryToIsoIndex{295525, "es"}, + CountryToIsoIndex{295542, "ax"}, + CountryToIsoIndex{295572, "aq"}, + CountryToIsoIndex{295593, "ci"}, + CountryToIsoIndex{295613, "iq"}, + CountryToIsoIndex{295626, "ir"}, + CountryToIsoIndex{295639, "it"}, + CountryToIsoIndex{295654, "ec"}, + CountryToIsoIndex{295671, "bv"}, + CountryToIsoIndex{295695, "br"}, + CountryToIsoIndex{295710, "pg"}, + CountryToIsoIndex{295747, "py"}, + CountryToIsoIndex{295764, "bb"}, + CountryToIsoIndex{295781, "bb"}, + CountryToIsoIndex{295798, "bb"}, + CountryToIsoIndex{295815, "bb"}, + CountryToIsoIndex{295830, "bb"}, + CountryToIsoIndex{295847, "pk"}, + CountryToIsoIndex{295862, "pw"}, + CountryToIsoIndex{295873, "bs"}, + CountryToIsoIndex{295886, "bs"}, + CountryToIsoIndex{295899, "bh"}, + CountryToIsoIndex{295910, "bh"}, + CountryToIsoIndex{295921, "bh"}, + CountryToIsoIndex{295934, "qo"}, + CountryToIsoIndex{295990, "br"}, + CountryToIsoIndex{296003, "br"}, + CountryToIsoIndex{296016, "bb"}, + CountryToIsoIndex{296031, "gb"}, + CountryToIsoIndex{296046, "br"}, + CountryToIsoIndex{296057, "io"}, + CountryToIsoIndex{296097, "vg"}, + CountryToIsoIndex{296128, "io"}, + CountryToIsoIndex{296173, "io"}, + CountryToIsoIndex{296223, "io"}, + CountryToIsoIndex{296258, "vg"}, + CountryToIsoIndex{296293, "bq"}, + CountryToIsoIndex{296349, "gb"}, + CountryToIsoIndex{296364, "bm"}, + CountryToIsoIndex{296377, "bn"}, + CountryToIsoIndex{296390, "bn"}, + CountryToIsoIndex{296405, "bn"}, + CountryToIsoIndex{296420, "bn"}, + CountryToIsoIndex{296433, "bi"}, + CountryToIsoIndex{296446, "bn"}, + CountryToIsoIndex{296457, "bi"}, + CountryToIsoIndex{296470, "bi"}, + CountryToIsoIndex{296483, "bn"}, + CountryToIsoIndex{296494, "bn"}, + CountryToIsoIndex{296509, "br"}, + CountryToIsoIndex{296524, "vg"}, + CountryToIsoIndex{296557, "bf"}, + CountryToIsoIndex{296579, "bf"}, + CountryToIsoIndex{296601, "vg"}, + CountryToIsoIndex{296638, "gb"}, + CountryToIsoIndex{296655, "io"}, + CountryToIsoIndex{296713, "vg"}, + CountryToIsoIndex{296745, "by"}, + CountryToIsoIndex{296758, "be"}, + CountryToIsoIndex{296771, "be"}, + CountryToIsoIndex{296782, "bg"}, + CountryToIsoIndex{296801, "bg"}, + CountryToIsoIndex{296820, "bg"}, + CountryToIsoIndex{296835, "bg"}, + CountryToIsoIndex{296850, "bg"}, + CountryToIsoIndex{296865, "bg"}, + CountryToIsoIndex{296880, "bz"}, + CountryToIsoIndex{296889, "be"}, + CountryToIsoIndex{296900, "bz"}, + CountryToIsoIndex{296909, "bd"}, + CountryToIsoIndex{296926, "pa"}, + CountryToIsoIndex{296935, "bj"}, + CountryToIsoIndex{296944, "bd"}, + CountryToIsoIndex{296959, "bd"}, + CountryToIsoIndex{296976, "bd"}, + CountryToIsoIndex{296994, "bd"}, + CountryToIsoIndex{297014, "bd"}, + CountryToIsoIndex{297032, "bj"}, + CountryToIsoIndex{297041, "bs"}, + CountryToIsoIndex{297054, "qo"}, + CountryToIsoIndex{297074, "bt"}, + CountryToIsoIndex{297087, "bt"}, + CountryToIsoIndex{297098, "bw"}, + CountryToIsoIndex{297117, "bw"}, + CountryToIsoIndex{297134, "bw"}, + CountryToIsoIndex{297151, "bw"}, + CountryToIsoIndex{297168, "bw"}, + CountryToIsoIndex{297187, "pr"}, + CountryToIsoIndex{297206, "bf"}, + CountryToIsoIndex{297230, "bi"}, + CountryToIsoIndex{297245, "bi"}, + CountryToIsoIndex{297260, "bi"}, + CountryToIsoIndex{297275, "bf"}, + CountryToIsoIndex{297299, "bf"}, + CountryToIsoIndex{297322, "bf"}, + CountryToIsoIndex{297345, "ba"}, + CountryToIsoIndex{297382, "ba"}, + CountryToIsoIndex{297427, "ba"}, + CountryToIsoIndex{297456, "ba"}, + CountryToIsoIndex{297495, "ba"}, + CountryToIsoIndex{297536, "ba"}, + CountryToIsoIndex{297574, "ba"}, + CountryToIsoIndex{297621, "pl"}, + CountryToIsoIndex{297634, "bo"}, + CountryToIsoIndex{297651, "bo"}, + CountryToIsoIndex{297666, "pf"}, + CountryToIsoIndex{297702, "bo"}, + CountryToIsoIndex{297717, "bo"}, + CountryToIsoIndex{297734, "bg"}, + CountryToIsoIndex{297751, "bo"}, + CountryToIsoIndex{297764, "bo"}, + CountryToIsoIndex{297779, "bv"}, + CountryToIsoIndex{297799, "bt"}, + CountryToIsoIndex{297812, "bv"}, + CountryToIsoIndex{297838, "bv"}, + CountryToIsoIndex{297854, "bv"}, + CountryToIsoIndex{297874, "bt"}, + CountryToIsoIndex{297887, "bw"}, + CountryToIsoIndex{297904, "bv"}, + CountryToIsoIndex{297928, "br"}, + CountryToIsoIndex{297949, "gb"}, + CountryToIsoIndex{297987, "mm"}, + CountryToIsoIndex{297998, "bn"}, + CountryToIsoIndex{298013, "pe"}, + CountryToIsoIndex{298022, "qo"}, + CountryToIsoIndex{298050, "by"}, + CountryToIsoIndex{298065, "bz"}, + CountryToIsoIndex{298076, "bj"}, + CountryToIsoIndex{298085, "vg"}, + CountryToIsoIndex{298128, "bg"}, + CountryToIsoIndex{298147, "bd"}, + CountryToIsoIndex{298168, "bs"}, + CountryToIsoIndex{298183, "bn"}, + CountryToIsoIndex{298196, "bf"}, + CountryToIsoIndex{298220, "bj"}, + CountryToIsoIndex{298231, "bm"}, + CountryToIsoIndex{298248, "in"}, + CountryToIsoIndex{298259, "bt"}, + CountryToIsoIndex{298272, "bs"}, + CountryToIsoIndex{298285, "bw"}, + CountryToIsoIndex{298302, "ba"}, + CountryToIsoIndex{298341, "bo"}, + CountryToIsoIndex{298356, "bt"}, + CountryToIsoIndex{298367, "bf"}, + CountryToIsoIndex{298391, "bi"}, + CountryToIsoIndex{298406, "bg"}, + CountryToIsoIndex{298425, "qo"}, + CountryToIsoIndex{298455, "gb"}, + CountryToIsoIndex{298481, "bz"}, + CountryToIsoIndex{298494, "by"}, + CountryToIsoIndex{298507, "by"}, + CountryToIsoIndex{298522, "by"}, + CountryToIsoIndex{298539, "by"}, + CountryToIsoIndex{298556, "be"}, + CountryToIsoIndex{298569, "bz"}, + CountryToIsoIndex{298580, "bj"}, + CountryToIsoIndex{298589, "be"}, + CountryToIsoIndex{298608, "bj"}, + CountryToIsoIndex{298619, "bm"}, + CountryToIsoIndex{298634, "by"}, + CountryToIsoIndex{298655, "bz"}, + CountryToIsoIndex{298666, "be"}, + CountryToIsoIndex{298681, "bj"}, + CountryToIsoIndex{298692, "bd"}, + CountryToIsoIndex{298705, "bh"}, + CountryToIsoIndex{298720, "be"}, + CountryToIsoIndex{298733, "bz"}, + CountryToIsoIndex{298744, "bd"}, + CountryToIsoIndex{298763, "bs"}, + CountryToIsoIndex{298776, "bh"}, + CountryToIsoIndex{298791, "tw"}, + CountryToIsoIndex{298806, "tj"}, + CountryToIsoIndex{298827, "tj"}, + CountryToIsoIndex{298846, "tj"}, + CountryToIsoIndex{298863, "tj"}, + CountryToIsoIndex{298882, "tj"}, + CountryToIsoIndex{298899, "tj"}, + CountryToIsoIndex{298918, "tj"}, + CountryToIsoIndex{298937, "tz"}, + CountryToIsoIndex{298956, "tz"}, + CountryToIsoIndex{298973, "th"}, + CountryToIsoIndex{298988, "tw"}, + CountryToIsoIndex{299001, "th"}, + CountryToIsoIndex{299014, "th"}, + CountryToIsoIndex{299029, "tw"}, + CountryToIsoIndex{299042, "ta"}, + CountryToIsoIndex{299071, "tm"}, + CountryToIsoIndex{299092, "tr"}, + CountryToIsoIndex{299103, "ta"}, + CountryToIsoIndex{299133, "ta"}, + CountryToIsoIndex{299162, "tt"}, + CountryToIsoIndex{299194, "tc"}, + CountryToIsoIndex{299234, "tm"}, + CountryToIsoIndex{299255, "tm"}, + CountryToIsoIndex{299274, "tm"}, + CountryToIsoIndex{299295, "tr"}, + CountryToIsoIndex{299304, "tr"}, + CountryToIsoIndex{299315, "tc"}, + CountryToIsoIndex{299343, "tm"}, + CountryToIsoIndex{299364, "tr"}, + CountryToIsoIndex{299373, "ta"}, + CountryToIsoIndex{299404, "ta"}, + CountryToIsoIndex{299433, "ta"}, + CountryToIsoIndex{299462, "tt"}, + CountryToIsoIndex{299499, "tt"}, + CountryToIsoIndex{299532, "tt"}, + CountryToIsoIndex{299565, "td"}, + CountryToIsoIndex{299574, "cl"}, + CountryToIsoIndex{299585, "tg"}, + CountryToIsoIndex{299592, "tz"}, + CountryToIsoIndex{299607, "tz"}, + CountryToIsoIndex{299622, "tz"}, + CountryToIsoIndex{299637, "th"}, + CountryToIsoIndex{299652, "tv"}, + CountryToIsoIndex{299663, "tv"}, + CountryToIsoIndex{299676, "tc"}, + CountryToIsoIndex{299714, "tm"}, + CountryToIsoIndex{299737, "tm"}, + CountryToIsoIndex{299758, "tr"}, + CountryToIsoIndex{299771, "tr"}, + CountryToIsoIndex{299784, "tg"}, + CountryToIsoIndex{299793, "tv"}, + CountryToIsoIndex{299806, "tk"}, + CountryToIsoIndex{299819, "tk"}, + CountryToIsoIndex{299834, "tn"}, + CountryToIsoIndex{299843, "to"}, + CountryToIsoIndex{299854, "to"}, + CountryToIsoIndex{299865, "to"}, + CountryToIsoIndex{299876, "tv"}, + CountryToIsoIndex{299889, "tn"}, + CountryToIsoIndex{299900, "tv"}, + CountryToIsoIndex{299917, "tv"}, + CountryToIsoIndex{299934, "tk"}, + CountryToIsoIndex{299949, "tk"}, + CountryToIsoIndex{299964, "tk"}, + CountryToIsoIndex{299977, "tg"}, + CountryToIsoIndex{299986, "tt"}, + CountryToIsoIndex{300023, "tl"}, + CountryToIsoIndex{300049, "tl"}, + CountryToIsoIndex{300071, "tl"}, + CountryToIsoIndex{300094, "tl"}, + CountryToIsoIndex{300114, "tn"}, + CountryToIsoIndex{300131, "tz"}, + CountryToIsoIndex{300150, "tm"}, + CountryToIsoIndex{300173, "tc"}, + CountryToIsoIndex{300217, "tr"}, + CountryToIsoIndex{300228, "th"}, + CountryToIsoIndex{300248, "th"}, + CountryToIsoIndex{300267, "to"}, + CountryToIsoIndex{300278, "tg"}, + CountryToIsoIndex{300287, "tc"}, + CountryToIsoIndex{300335, "tn"}, + CountryToIsoIndex{300346, "tv"}, + CountryToIsoIndex{300359, "tm"}, + CountryToIsoIndex{300384, "tr"}, + CountryToIsoIndex{300399, "tl"}, + CountryToIsoIndex{300419, "tl"}, + CountryToIsoIndex{300439, "tl"}, + CountryToIsoIndex{300459, "tl"}, + CountryToIsoIndex{300489, "tw"}, + CountryToIsoIndex{300500, "tw"}, + CountryToIsoIndex{300513, "ge"}, + CountryToIsoIndex{300526, "ge"}, + CountryToIsoIndex{300541, "ge"}, + CountryToIsoIndex{300554, "jm"}, + CountryToIsoIndex{300571, "jm"}, + CountryToIsoIndex{300586, "jm"}, + CountryToIsoIndex{300601, "jm"}, + CountryToIsoIndex{300618, "zm"}, + CountryToIsoIndex{300633, "jp"}, + CountryToIsoIndex{300644, "jp"}, + CountryToIsoIndex{300655, "jp"}, + CountryToIsoIndex{300668, "gi"}, + CountryToIsoIndex{300683, "gi"}, + CountryToIsoIndex{300703, "gi"}, + CountryToIsoIndex{300719, "gi"}, + CountryToIsoIndex{300741, "dj"}, + CountryToIsoIndex{300752, "je"}, + CountryToIsoIndex{300761, "je"}, + CountryToIsoIndex{300770, "je"}, + CountryToIsoIndex{300779, "de"}, + CountryToIsoIndex{300790, "de"}, + CountryToIsoIndex{300801, "de"}, + CountryToIsoIndex{300814, "cc"}, + CountryToIsoIndex{300849, "ax"}, + CountryToIsoIndex{300871, "sb"}, + CountryToIsoIndex{300895, "mp"}, + CountryToIsoIndex{300932, "fo"}, + CountryToIsoIndex{300952, "fk"}, + CountryToIsoIndex{300978, "fk"}, + CountryToIsoIndex{301034, "fo"}, + CountryToIsoIndex{301054, "mh"}, + CountryToIsoIndex{301076, "pn"}, + CountryToIsoIndex{301100, "ic"}, + CountryToIsoIndex{301122, "ck"}, + CountryToIsoIndex{301138, "tc"}, + CountryToIsoIndex{301172, "hm"}, + CountryToIsoIndex{301208, "ac"}, + CountryToIsoIndex{301234, "ax"}, + CountryToIsoIndex{301256, "tc"}, + CountryToIsoIndex{301294, "gs"}, + CountryToIsoIndex{301360, "um"}, + CountryToIsoIndex{301416, "sb"}, + CountryToIsoIndex{301440, "fo"}, + CountryToIsoIndex{301460, "fk"}, + CountryToIsoIndex{301486, "fk"}, + CountryToIsoIndex{301544, "ic"}, + CountryToIsoIndex{301566, "mh"}, + CountryToIsoIndex{301590, "mp"}, + CountryToIsoIndex{301629, "vi"}, + CountryToIsoIndex{301677, "vg"}, + CountryToIsoIndex{301718, "pn"}, + CountryToIsoIndex{301745, "bq"}, + CountryToIsoIndex{301780, "cp"}, + CountryToIsoIndex{301808, "ck"}, + CountryToIsoIndex{301826, "cc"}, + CountryToIsoIndex{301848, "ky"}, + CountryToIsoIndex{301870, "ax"}, + CountryToIsoIndex{301888, "bs"}, + CountryToIsoIndex{301910, "km"}, + CountryToIsoIndex{301928, "ic"}, + CountryToIsoIndex{301950, "mq"}, + CountryToIsoIndex{301978, "mv"}, + CountryToIsoIndex{302002, "um"}, + CountryToIsoIndex{302056, "pn"}, + CountryToIsoIndex{302078, "tc"}, + CountryToIsoIndex{302111, "sb"}, + CountryToIsoIndex{302131, "fo"}, + CountryToIsoIndex{302147, "fk"}, + CountryToIsoIndex{302169, "fk"}, + CountryToIsoIndex{302217, "vg"}, + CountryToIsoIndex{302256, "vi"}, + CountryToIsoIndex{302321, "ky"}, + CountryToIsoIndex{302341, "ck"}, + CountryToIsoIndex{302355, "cc"}, + CountryToIsoIndex{302388, "mh"}, + CountryToIsoIndex{302408, "mp"}, + CountryToIsoIndex{302447, "wf"}, + CountryToIsoIndex{302478, "ac"}, + CountryToIsoIndex{302504, "ac"}, + CountryToIsoIndex{302532, "bv"}, + CountryToIsoIndex{302554, "cx"}, + CountryToIsoIndex{302580, "cp"}, + CountryToIsoIndex{302610, "im"}, + CountryToIsoIndex{302628, "nf"}, + CountryToIsoIndex{302654, "hm"}, + CountryToIsoIndex{302702, "bv"}, + CountryToIsoIndex{302724, "im"}, + CountryToIsoIndex{302742, "nf"}, + CountryToIsoIndex{302770, "hm"}, + CountryToIsoIndex{302824, "cx"}, + CountryToIsoIndex{302850, "ac"}, + CountryToIsoIndex{302874, "bv"}, + CountryToIsoIndex{302896, "nf"}, + CountryToIsoIndex{302920, "cx"}, + CountryToIsoIndex{302942, "cp"}, + CountryToIsoIndex{302966, "jm"}, + CountryToIsoIndex{302981, "cf"}, + CountryToIsoIndex{303024, "cz"}, + CountryToIsoIndex{303052, "do"}, + CountryToIsoIndex{303090, "cg"}, + CountryToIsoIndex{303120, "cd"}, + CountryToIsoIndex{303173, "az"}, + CountryToIsoIndex{303205, "cf"}, + CountryToIsoIndex{303244, "do"}, + CountryToIsoIndex{303274, "cz"}, + CountryToIsoIndex{303292, "jm"}, + CountryToIsoIndex{303303, "do"}, + CountryToIsoIndex{303335, "jm"}, + CountryToIsoIndex{303346, "za"}, + CountryToIsoIndex{303370, "ss"}, + CountryToIsoIndex{303394, "ss"}, + CountryToIsoIndex{303416, "aq"}, + CountryToIsoIndex{303431, "za"}, + CountryToIsoIndex{303455, "za"}, + CountryToIsoIndex{303479, "gs"}, + CountryToIsoIndex{303545, "gs"}, + CountryToIsoIndex{303609, "ss"}, + CountryToIsoIndex{303631, "ss"}, + CountryToIsoIndex{303653, "kr"}, + CountryToIsoIndex{303675, "kr"}, + CountryToIsoIndex{303695, "aq"}, + CountryToIsoIndex{303727, "gs"}, + CountryToIsoIndex{303807, "kr"}, + CountryToIsoIndex{303833, "ge"}, + CountryToIsoIndex{303846, "gs"}, + CountryToIsoIndex{303919, "dj"}, + CountryToIsoIndex{303932, "dj"}, + CountryToIsoIndex{303945, "je"}, + CountryToIsoIndex{303956, "jm"}, + CountryToIsoIndex{303971, "za"}, + CountryToIsoIndex{304003, "gi"}, + CountryToIsoIndex{304022, "dj"}, + CountryToIsoIndex{304037, "je"}, + CountryToIsoIndex{304048, "cn"}, + CountryToIsoIndex{304059, "dj"}, + CountryToIsoIndex{304073, "dj"}, + CountryToIsoIndex{304086, "dj"}, + CountryToIsoIndex{304101, "je"}, + CountryToIsoIndex{304114, "gi"}, + CountryToIsoIndex{304135, "dz"}, + CountryToIsoIndex{304148, "za"}, + CountryToIsoIndex{304178, "gs"}, + CountryToIsoIndex{304262, "ss"}, + CountryToIsoIndex{304288, "et"}, + CountryToIsoIndex{304297, "tl"}, + CountryToIsoIndex{304317, "im"}, + CountryToIsoIndex{304339, "tc"}, + CountryToIsoIndex{304380, "ac"}, + CountryToIsoIndex{304407, "ci"}, + CountryToIsoIndex{304426, "tf"}, + CountryToIsoIndex{304462, "vi"}, + CountryToIsoIndex{304511, "um"}, + CountryToIsoIndex{304566, "cf"}, + CountryToIsoIndex{304608, "io"}, + CountryToIsoIndex{304649, "ic"}, + CountryToIsoIndex{304672, "cx"}, + CountryToIsoIndex{304697, "cp"}, + CountryToIsoIndex{304724, "dk"}, + CountryToIsoIndex{304739, "dk"}, + CountryToIsoIndex{304752, "dk"}, + CountryToIsoIndex{304765, "dm"}, + CountryToIsoIndex{304780, "do"}, + CountryToIsoIndex{304808, "dm"}, + CountryToIsoIndex{304825, "do"}, + CountryToIsoIndex{304865, "dm"}, + CountryToIsoIndex{304882, "dm"}, + CountryToIsoIndex{304899, "do"}, + CountryToIsoIndex{304931, "sb"}, + CountryToIsoIndex{304965, "mh"}, + CountryToIsoIndex{304999, "km"}, + CountryToIsoIndex{305031, "dg"}, + CountryToIsoIndex{305055, "dm"}, + CountryToIsoIndex{305072, "dg"}, + CountryToIsoIndex{305099, "dg"}, + CountryToIsoIndex{305121, "dg"}, + CountryToIsoIndex{305145, "re"}, + CountryToIsoIndex{305160, "rw"}, + CountryToIsoIndex{305173, "rw"}, + CountryToIsoIndex{305186, "rw"}, + CountryToIsoIndex{305199, "rw"}, + CountryToIsoIndex{305212, "ru"}, + CountryToIsoIndex{305219, "ru"}, + CountryToIsoIndex{305230, "ru"}, + CountryToIsoIndex{305241, "ro"}, + CountryToIsoIndex{305256, "ro"}, + CountryToIsoIndex{305273, "ro"}, + CountryToIsoIndex{305286, "ro"}, + CountryToIsoIndex{305301, "ro"}, + CountryToIsoIndex{305316, "ro"}, + CountryToIsoIndex{305333, "rw"}, + CountryToIsoIndex{305344, "re"}, + CountryToIsoIndex{305359, "ru"}, + CountryToIsoIndex{305368, "rw"}, + CountryToIsoIndex{305387, "ru"}, + CountryToIsoIndex{305400, "rw"}, + CountryToIsoIndex{305415, "re"}, + CountryToIsoIndex{305431, "re"}, + CountryToIsoIndex{305452, "ru"}, + CountryToIsoIndex{305465, "re"}, + CountryToIsoIndex{305481, "us"}, + CountryToIsoIndex{305511, "re"}, + CountryToIsoIndex{305524, "re"}, + CountryToIsoIndex{305543, "zm"}, + CountryToIsoIndex{305558, "zm"}, + CountryToIsoIndex{305571, "zm"}, + CountryToIsoIndex{305584, "zw"}, + CountryToIsoIndex{305599, "zw"}, + CountryToIsoIndex{305614, "zw"}, + CountryToIsoIndex{305631, "zw"}, + CountryToIsoIndex{305648, "zm"}, + CountryToIsoIndex{305661, "zw"}, + CountryToIsoIndex{305676, "nz"}, + CountryToIsoIndex{305698, "zw"}, + CountryToIsoIndex{305715, "zw"}, + CountryToIsoIndex{305732, "zm"}, + CountryToIsoIndex{305745, "ea"}, + CountryToIsoIndex{305774, "ch"}, + CountryToIsoIndex{305795, "st"}, + CountryToIsoIndex{305829, "st"}, + CountryToIsoIndex{305863, "st"}, + CountryToIsoIndex{305898, "cy"}, + CountryToIsoIndex{305911, "ci"}, + CountryToIsoIndex{305931, "ci"}, + CountryToIsoIndex{305947, "sv"}, + CountryToIsoIndex{305964, "sv"}, + CountryToIsoIndex{305981, "ws"}, + CountryToIsoIndex{305992, "as"}, + CountryToIsoIndex{306018, "ws"}, + CountryToIsoIndex{306031, "ws"}, + CountryToIsoIndex{306042, "as"}, + CountryToIsoIndex{306072, "as"}, + CountryToIsoIndex{306106, "bl"}, + CountryToIsoIndex{306130, "pm"}, + CountryToIsoIndex{306163, "pm"}, + CountryToIsoIndex{306196, "st"}, + CountryToIsoIndex{306234, "mf"}, + CountryToIsoIndex{306252, "sm"}, + CountryToIsoIndex{306272, "sm"}, + CountryToIsoIndex{306292, "sm"}, + CountryToIsoIndex{306312, "sm"}, + CountryToIsoIndex{306332, "vc"}, + CountryToIsoIndex{306378, "kn"}, + CountryToIsoIndex{306409, "lc"}, + CountryToIsoIndex{306429, "sx"}, + CountryToIsoIndex{306449, "sh"}, + CountryToIsoIndex{306471, "sm"}, + CountryToIsoIndex{306493, "st"}, + CountryToIsoIndex{306531, "st"}, + CountryToIsoIndex{306566, "st"}, + CountryToIsoIndex{306598, "st"}, + CountryToIsoIndex{306633, "bl"}, + CountryToIsoIndex{306663, "kn"}, + CountryToIsoIndex{306701, "lc"}, + CountryToIsoIndex{306725, "mf"}, + CountryToIsoIndex{306749, "pm"}, + CountryToIsoIndex{306810, "vc"}, + CountryToIsoIndex{306864, "sh"}, + CountryToIsoIndex{306890, "cy"}, + CountryToIsoIndex{306905, "ea"}, + CountryToIsoIndex{306929, "ea"}, + CountryToIsoIndex{306952, "rs"}, + CountryToIsoIndex{306963, "rs"}, + CountryToIsoIndex{306974, "ps"}, + CountryToIsoIndex{307011, "lk"}, + CountryToIsoIndex{307027, "lk"}, + CountryToIsoIndex{307044, "lk"}, + CountryToIsoIndex{307061, "lk"}, + CountryToIsoIndex{307077, "lk"}, + CountryToIsoIndex{307094, "lk"}, + CountryToIsoIndex{307114, "sc"}, + CountryToIsoIndex{307125, "sa"}, + CountryToIsoIndex{307151, "sa"}, + CountryToIsoIndex{307169, "sj"}, + CountryToIsoIndex{307204, "gb"}, + CountryToIsoIndex{307226, "si"}, + CountryToIsoIndex{307241, "sj"}, + CountryToIsoIndex{307275, "sk"}, + CountryToIsoIndex{307290, "sk"}, + CountryToIsoIndex{307307, "si"}, + CountryToIsoIndex{307324, "si"}, + CountryToIsoIndex{307337, "sk"}, + CountryToIsoIndex{307354, "sk"}, + CountryToIsoIndex{307371, "si"}, + CountryToIsoIndex{307388, "si"}, + CountryToIsoIndex{307403, "sk"}, + CountryToIsoIndex{307420, "si"}, + CountryToIsoIndex{307437, "sb"}, + CountryToIsoIndex{307459, "sb"}, + CountryToIsoIndex{307483, "ws"}, + CountryToIsoIndex{307494, "bl"}, + CountryToIsoIndex{307514, "sm"}, + CountryToIsoIndex{307532, "pm"}, + CountryToIsoIndex{307558, "pm"}, + CountryToIsoIndex{307586, "bl"}, + CountryToIsoIndex{307608, "lc"}, + CountryToIsoIndex{307626, "sx"}, + CountryToIsoIndex{307644, "mf"}, + CountryToIsoIndex{307664, "sh"}, + CountryToIsoIndex{307678, "sh"}, + CountryToIsoIndex{307694, "vc"}, + CountryToIsoIndex{307732, "vc"}, + CountryToIsoIndex{307777, "kn"}, + CountryToIsoIndex{307805, "sg"}, + CountryToIsoIndex{307822, "sx"}, + CountryToIsoIndex{307840, "sx"}, + CountryToIsoIndex{307858, "sn"}, + CountryToIsoIndex{307869, "sn"}, + CountryToIsoIndex{307880, "sg"}, + CountryToIsoIndex{307895, "se"}, + CountryToIsoIndex{307904, "se"}, + CountryToIsoIndex{307917, "ch"}, + CountryToIsoIndex{307939, "ch"}, + CountryToIsoIndex{307950, "sz"}, + CountryToIsoIndex{307969, "sz"}, + CountryToIsoIndex{307988, "sz"}, + CountryToIsoIndex{308008, "sz"}, + CountryToIsoIndex{308027, "sz"}, + CountryToIsoIndex{308044, "sz"}, + CountryToIsoIndex{308063, "sj"}, + CountryToIsoIndex{308099, "sj"}, + CountryToIsoIndex{308135, "sj"}, + CountryToIsoIndex{308173, "ea"}, + CountryToIsoIndex{308196, "sd"}, + CountryToIsoIndex{308207, "ss"}, + CountryToIsoIndex{308229, "sy"}, + CountryToIsoIndex{308240, "sr"}, + CountryToIsoIndex{308255, "sr"}, + CountryToIsoIndex{308270, "sy"}, + CountryToIsoIndex{308281, "sb"}, + CountryToIsoIndex{308311, "sb"}, + CountryToIsoIndex{308339, "sb"}, + CountryToIsoIndex{308373, "sb"}, + CountryToIsoIndex{308397, "so"}, + CountryToIsoIndex{308410, "so"}, + CountryToIsoIndex{308425, "so"}, + CountryToIsoIndex{308442, "so"}, + CountryToIsoIndex{308455, "so"}, + CountryToIsoIndex{308470, "so"}, + CountryToIsoIndex{308485, "sd"}, + CountryToIsoIndex{308498, "sy"}, + CountryToIsoIndex{308511, "ch"}, + CountryToIsoIndex{308524, "sa"}, + CountryToIsoIndex{308548, "sd"}, + CountryToIsoIndex{308561, "sd"}, + CountryToIsoIndex{308572, "sd"}, + CountryToIsoIndex{308583, "sd"}, + CountryToIsoIndex{308594, "se"}, + CountryToIsoIndex{308603, "se"}, + CountryToIsoIndex{308614, "ch"}, + CountryToIsoIndex{308623, "ch"}, + CountryToIsoIndex{308636, "gs"}, + CountryToIsoIndex{308696, "za"}, + CountryToIsoIndex{308720, "kr"}, + CountryToIsoIndex{308742, "se"}, + CountryToIsoIndex{308753, "se"}, + CountryToIsoIndex{308764, "ch"}, + CountryToIsoIndex{308775, "lk"}, + CountryToIsoIndex{308794, "sk"}, + CountryToIsoIndex{308815, "si"}, + CountryToIsoIndex{308836, "sx"}, + CountryToIsoIndex{308858, "sg"}, + CountryToIsoIndex{308875, "cy"}, + CountryToIsoIndex{308888, "sj"}, + CountryToIsoIndex{308930, "sz"}, + CountryToIsoIndex{308951, "sl"}, + CountryToIsoIndex{308969, "sl"}, + CountryToIsoIndex{308986, "sc"}, + CountryToIsoIndex{308995, "sn"}, + CountryToIsoIndex{309010, "lc"}, + CountryToIsoIndex{309030, "mf"}, + CountryToIsoIndex{309050, "kn"}, + CountryToIsoIndex{309078, "sh"}, + CountryToIsoIndex{309100, "sg"}, + CountryToIsoIndex{309117, "ea"}, + CountryToIsoIndex{309143, "rs"}, + CountryToIsoIndex{309158, "sk"}, + CountryToIsoIndex{309179, "si"}, + CountryToIsoIndex{309200, "sj"}, + CountryToIsoIndex{309244, "sr"}, + CountryToIsoIndex{309259, "sz"}, + CountryToIsoIndex{309280, "ch"}, + CountryToIsoIndex{309305, "se"}, + CountryToIsoIndex{309320, "lk"}, + CountryToIsoIndex{309343, "es"}, + CountryToIsoIndex{309354, "so"}, + CountryToIsoIndex{309369, "sd"}, + CountryToIsoIndex{309380, "sr"}, + CountryToIsoIndex{309395, "sy"}, + CountryToIsoIndex{309408, "ea"}, + CountryToIsoIndex{309441, "sl"}, + CountryToIsoIndex{309458, "sl"}, + CountryToIsoIndex{309475, "sc"}, + CountryToIsoIndex{309484, "sc"}, + CountryToIsoIndex{309499, "sc"}, + CountryToIsoIndex{309510, "ws"}, + CountryToIsoIndex{309523, "sm"}, + CountryToIsoIndex{309541, "sm"}, + CountryToIsoIndex{309561, "bl"}, + CountryToIsoIndex{309593, "lc"}, + CountryToIsoIndex{309619, "mf"}, + CountryToIsoIndex{309643, "vc"}, + CountryToIsoIndex{309701, "pm"}, + CountryToIsoIndex{309749, "kn"}, + CountryToIsoIndex{309789, "sh"}, + CountryToIsoIndex{309815, "bl"}, + CountryToIsoIndex{309841, "lc"}, + CountryToIsoIndex{309861, "mf"}, + CountryToIsoIndex{309881, "vc"}, + CountryToIsoIndex{309929, "pm"}, + CountryToIsoIndex{309971, "kn"}, + CountryToIsoIndex{310005, "sh"}, + CountryToIsoIndex{310027, "bl"}, + CountryToIsoIndex{310055, "lc"}, + CountryToIsoIndex{310075, "mf"}, + CountryToIsoIndex{310095, "sx"}, + CountryToIsoIndex{310117, "sh"}, + CountryToIsoIndex{310139, "vc"}, + CountryToIsoIndex{310187, "pm"}, + CountryToIsoIndex{310225, "kn"}, + CountryToIsoIndex{310257, "bl"}, + CountryToIsoIndex{310281, "vc"}, + CountryToIsoIndex{310323, "pm"}, + CountryToIsoIndex{310363, "sg"}, + CountryToIsoIndex{310380, "sn"}, + CountryToIsoIndex{310395, "sn"}, + CountryToIsoIndex{310408, "sn"}, + CountryToIsoIndex{310423, "ea"}, + CountryToIsoIndex{310450, "sl"}, + CountryToIsoIndex{310471, "sc"}, + CountryToIsoIndex{310486, "sl"}, + CountryToIsoIndex{310506, "sl"}, + CountryToIsoIndex{310525, "rs"}, + CountryToIsoIndex{310540, "sl"}, + CountryToIsoIndex{310561, "sn"}, + CountryToIsoIndex{310576, "ea"}, + CountryToIsoIndex{310605, "sc"}, + CountryToIsoIndex{310618, "sa"}, + CountryToIsoIndex{310654, "lc"}, + CountryToIsoIndex{310678, "vc"}, + CountryToIsoIndex{310726, "kn"}, + CountryToIsoIndex{310760, "sy"}, + CountryToIsoIndex{310767, "gb"}, + CountryToIsoIndex{310799, "tl"}, + CountryToIsoIndex{310819, "mp"}, + CountryToIsoIndex{310854, "mp"}, + CountryToIsoIndex{310895, "mp"}, + CountryToIsoIndex{310932, "kp"}, + CountryToIsoIndex{310954, "kp"}, + CountryToIsoIndex{310974, "mp"}, + CountryToIsoIndex{311025, "ch"}, + CountryToIsoIndex{311048, "se"}, + CountryToIsoIndex{311067, "sc"}, + CountryToIsoIndex{311079, "hk"}, + CountryToIsoIndex{311094, "hk"}, + CountryToIsoIndex{311167, "mp"}, + CountryToIsoIndex{311212, "kp"}, + CountryToIsoIndex{311238, "cl"}, + CountryToIsoIndex{311247, "tl"}, + CountryToIsoIndex{311271, "eh"}, + CountryToIsoIndex{311291, "rs"}, + CountryToIsoIndex{311306, "rs"}, + CountryToIsoIndex{311321, "rs"}, + CountryToIsoIndex{311332, "rs"}, + CountryToIsoIndex{311343, "so"}, + CountryToIsoIndex{311358, "tj"}, + CountryToIsoIndex{311377, "ac"}, + CountryToIsoIndex{311393, "ci"}, + CountryToIsoIndex{311409, "ci"}, + CountryToIsoIndex{311427, "iq"}, + CountryToIsoIndex{311436, "sa"}, + CountryToIsoIndex{311451, "sa"}, + CountryToIsoIndex{311477, "sa"}, + CountryToIsoIndex{311492, "aw"}, + CountryToIsoIndex{311503, "om"}, + CountryToIsoIndex{311512, "om"}, + CountryToIsoIndex{311523, "om"}, + CountryToIsoIndex{311534, "iq"}, + CountryToIsoIndex{311545, "sa"}, + CountryToIsoIndex{311581, "gm"}, + CountryToIsoIndex{311594, "gh"}, + CountryToIsoIndex{311603, "eh"}, + CountryToIsoIndex{311621, "gd"}, + CountryToIsoIndex{311636, "gl"}, + CountryToIsoIndex{311653, "gh"}, + CountryToIsoIndex{311660, "gt"}, + CountryToIsoIndex{311679, "gp"}, + CountryToIsoIndex{311694, "gu"}, + CountryToIsoIndex{311703, "gf"}, + CountryToIsoIndex{311733, "gy"}, + CountryToIsoIndex{311744, "gg"}, + CountryToIsoIndex{311757, "gn"}, + CountryToIsoIndex{311768, "gq"}, + CountryToIsoIndex{311800, "gw"}, + CountryToIsoIndex{311822, "eh"}, + CountryToIsoIndex{311848, "gh"}, + CountryToIsoIndex{311857, "fr"}, + CountryToIsoIndex{311872, "fo"}, + CountryToIsoIndex{311900, "fo"}, + CountryToIsoIndex{311920, "fo"}, + CountryToIsoIndex{311936, "fo"}, + CountryToIsoIndex{311954, "fk"}, + CountryToIsoIndex{311990, "fk"}, + CountryToIsoIndex{312058, "fk"}, + CountryToIsoIndex{312092, "fk"}, + CountryToIsoIndex{312127, "vu"}, + CountryToIsoIndex{312142, "fk"}, + CountryToIsoIndex{312168, "fk"}, + CountryToIsoIndex{312213, "fk"}, + CountryToIsoIndex{312263, "fk"}, + CountryToIsoIndex{312286, "fj"}, + CountryToIsoIndex{312293, "fj"}, + CountryToIsoIndex{312300, "fr"}, + CountryToIsoIndex{312311, "fr"}, + CountryToIsoIndex{312324, "tf"}, + CountryToIsoIndex{312364, "gf"}, + CountryToIsoIndex{312395, "pf"}, + CountryToIsoIndex{312431, "pf"}, + CountryToIsoIndex{312461, "gf"}, + CountryToIsoIndex{312485, "pf"}, + CountryToIsoIndex{312521, "tf"}, + CountryToIsoIndex{312562, "gf"}, + CountryToIsoIndex{312590, "tf"}, + CountryToIsoIndex{312625, "pf"}, + CountryToIsoIndex{312661, "gf"}, + CountryToIsoIndex{312689, "fr"}, + CountryToIsoIndex{312700, "fr"}, + CountryToIsoIndex{312713, "tf"}, + CountryToIsoIndex{312762, "gf"}, + CountryToIsoIndex{312792, "pf"}, + CountryToIsoIndex{312828, "gf"}, + CountryToIsoIndex{312850, "ps"}, + CountryToIsoIndex{312863, "ps"}, + CountryToIsoIndex{312885, "ps"}, + CountryToIsoIndex{312898, "ps"}, + CountryToIsoIndex{312926, "ps"}, + CountryToIsoIndex{312941, "ps"}, + CountryToIsoIndex{312963, "ph"}, + CountryToIsoIndex{312976, "ph"}, + CountryToIsoIndex{312987, "ph"}, + CountryToIsoIndex{313000, "fi"}, + CountryToIsoIndex{313014, "fi"}, + CountryToIsoIndex{313028, "ve"}, + CountryToIsoIndex{313043, "fi"}, + CountryToIsoIndex{313056, "fi"}, + CountryToIsoIndex{313067, "fi"}, + CountryToIsoIndex{313080, "fi"}, + CountryToIsoIndex{313093, "fk"}, + CountryToIsoIndex{313115, "fj"}, + CountryToIsoIndex{313124, "fr"}, + CountryToIsoIndex{313143, "tf"}, + CountryToIsoIndex{313196, "pf"}, + CountryToIsoIndex{313257, "gf"}, + CountryToIsoIndex{313314, "ph"}, + CountryToIsoIndex{313331, "fi"}, + CountryToIsoIndex{313352, "fj"}, + CountryToIsoIndex{313362, "vn"}, + CountryToIsoIndex{313375, "fj"}, + CountryToIsoIndex{313384, "ps"}, + CountryToIsoIndex{313403, "fj"}, + CountryToIsoIndex{313412, "ph"}, + CountryToIsoIndex{313431, "fi"}, + CountryToIsoIndex{313448, "fk"}, + CountryToIsoIndex{313484, "fj"}, + CountryToIsoIndex{313493, "ph"}, + CountryToIsoIndex{313508, "fi"}, + CountryToIsoIndex{313523, "ps"}, + CountryToIsoIndex{313540, "fr"}, + CountryToIsoIndex{313555, "qa"}, + CountryToIsoIndex{313566, "me"}, + CountryToIsoIndex{313582, "kz"}, + CountryToIsoIndex{313603, "kz"}, + CountryToIsoIndex{313620, "cy"}, + CountryToIsoIndex{313629, "cy"}, + CountryToIsoIndex{313638, "kg"}, + CountryToIsoIndex{313655, "kg"}, + CountryToIsoIndex{313674, "kg"}, + CountryToIsoIndex{313693, "kg"}, + CountryToIsoIndex{313712, "kz"}, + CountryToIsoIndex{313729, "kz"}, + CountryToIsoIndex{313746, "kz"}, + CountryToIsoIndex{313763, "qa"}, + CountryToIsoIndex{313770, "io"}, + CountryToIsoIndex{313825, "tf"}, + CountryToIsoIndex{313866, "ic"}, + CountryToIsoIndex{313888, "kg"}, + CountryToIsoIndex{313911, "kg"}, + CountryToIsoIndex{313932, "qa"}, + CountryToIsoIndex{313943, "cy"}, + CountryToIsoIndex{313954, "qa"}, + CountryToIsoIndex{313965, "bq"}, + CountryToIsoIndex{314010, "kz"}, + CountryToIsoIndex{314029, "nc"}, + CountryToIsoIndex{314063, "kh"}, + CountryToIsoIndex{314080, "cm"}, + CountryToIsoIndex{314095, "ca"}, + CountryToIsoIndex{314108, "ic"}, + CountryToIsoIndex{314140, "ky"}, + CountryToIsoIndex{314172, "hr"}, + CountryToIsoIndex{314187, "kh"}, + CountryToIsoIndex{314202, "ca"}, + CountryToIsoIndex{314211, "cu"}, + CountryToIsoIndex{314220, "ci"}, + CountryToIsoIndex{314240, "ci"}, + CountryToIsoIndex{314269, "cw"}, + CountryToIsoIndex{314284, "kr"}, + CountryToIsoIndex{314312, "kp"}, + CountryToIsoIndex{314340, "kr"}, + CountryToIsoIndex{314353, "cr"}, + CountryToIsoIndex{314372, "cr"}, + CountryToIsoIndex{314391, "xk"}, + CountryToIsoIndex{314404, "xk"}, + CountryToIsoIndex{314417, "cc"}, + CountryToIsoIndex{314460, "co"}, + CountryToIsoIndex{314479, "co"}, + CountryToIsoIndex{314496, "km"}, + CountryToIsoIndex{314509, "cg"}, + CountryToIsoIndex{314545, "cd"}, + CountryToIsoIndex{314567, "cg"}, + CountryToIsoIndex{314601, "cd"}, + CountryToIsoIndex{314629, "hr"}, + CountryToIsoIndex{314646, "ki"}, + CountryToIsoIndex{314663, "cp"}, + CountryToIsoIndex{314705, "ki"}, + CountryToIsoIndex{314722, "ke"}, + CountryToIsoIndex{314733, "cu"}, + CountryToIsoIndex{314742, "cw"}, + CountryToIsoIndex{314757, "ck"}, + CountryToIsoIndex{314783, "kw"}, + CountryToIsoIndex{314796, "ke"}, + CountryToIsoIndex{314809, "la"}, + CountryToIsoIndex{314818, "lr"}, + CountryToIsoIndex{314835, "la"}, + CountryToIsoIndex{314846, "lv"}, + CountryToIsoIndex{314859, "lv"}, + CountryToIsoIndex{314872, "lv"}, + CountryToIsoIndex{314885, "lv"}, + CountryToIsoIndex{314898, "lv"}, + CountryToIsoIndex{314913, "la"}, + CountryToIsoIndex{314920, "la"}, + CountryToIsoIndex{314929, "la"}, + CountryToIsoIndex{314940, "lr"}, + CountryToIsoIndex{314955, "lr"}, + CountryToIsoIndex{314974, "lb"}, + CountryToIsoIndex{314985, "ly"}, + CountryToIsoIndex{314994, "lt"}, + CountryToIsoIndex{315009, "lv"}, + CountryToIsoIndex{315020, "ls"}, + CountryToIsoIndex{315031, "pl"}, + CountryToIsoIndex{315044, "pl"}, + CountryToIsoIndex{315057, "lb"}, + CountryToIsoIndex{315070, "lu"}, + CountryToIsoIndex{315089, "lu"}, + CountryToIsoIndex{315110, "lu"}, + CountryToIsoIndex{315131, "lu"}, + CountryToIsoIndex{315152, "eh"}, + CountryToIsoIndex{315174, "lr"}, + CountryToIsoIndex{315191, "lt"}, + CountryToIsoIndex{315210, "li"}, + CountryToIsoIndex{315233, "lu"}, + CountryToIsoIndex{315258, "lb"}, + CountryToIsoIndex{315269, "ly"}, + CountryToIsoIndex{315282, "ly"}, + CountryToIsoIndex{315293, "lr"}, + CountryToIsoIndex{315308, "lt"}, + CountryToIsoIndex{315325, "li"}, + CountryToIsoIndex{315346, "ls"}, + CountryToIsoIndex{315359, "ls"}, + CountryToIsoIndex{315372, "lu"}, + CountryToIsoIndex{315395, "ly"}, + CountryToIsoIndex{315406, "lt"}, + CountryToIsoIndex{315429, "li"}, + CountryToIsoIndex{315452, "lb"}, + CountryToIsoIndex{315467, "lv"}, + CountryToIsoIndex{315478, "lt"}, + CountryToIsoIndex{315491, "li"}, + CountryToIsoIndex{315513, "lu"}, + CountryToIsoIndex{315528, "lr"}, + CountryToIsoIndex{315541, "ly"}, + CountryToIsoIndex{315550, "ly"}, + CountryToIsoIndex{315561, "lr"}, + CountryToIsoIndex{315576, "lt"}, + CountryToIsoIndex{315595, "lt"}, + CountryToIsoIndex{315610, "lt"}, + CountryToIsoIndex{315627, "lt"}, + CountryToIsoIndex{315644, "li"}, + CountryToIsoIndex{315668, "li"}, + CountryToIsoIndex{315689, "li"}, + CountryToIsoIndex{315715, "ls"}, + CountryToIsoIndex{315728, "ls"}, + CountryToIsoIndex{315743, "li"}, + CountryToIsoIndex{315764, "lv"}, + CountryToIsoIndex{315781, "lu"}, + CountryToIsoIndex{315798, "lb"}, + CountryToIsoIndex{315811, "ls"}, + CountryToIsoIndex{315824, "ls"}, + CountryToIsoIndex{315837, "fm"}, + CountryToIsoIndex{315860, "fm"}, + CountryToIsoIndex{315883, "mg"}, + CountryToIsoIndex{315904, "mg"}, + CountryToIsoIndex{315925, "mg"}, + CountryToIsoIndex{315942, "ma"}, + CountryToIsoIndex{315957, "mq"}, + CountryToIsoIndex{315976, "mq"}, + CountryToIsoIndex{315991, "mq"}, + CountryToIsoIndex{316008, "mq"}, + CountryToIsoIndex{316045, "mh"}, + CountryToIsoIndex{316077, "mh"}, + CountryToIsoIndex{316101, "mh"}, + CountryToIsoIndex{316123, "mh"}, + CountryToIsoIndex{316149, "mh"}, + CountryToIsoIndex{316167, "mh"}, + CountryToIsoIndex{316195, "mr"}, + CountryToIsoIndex{316216, "mq"}, + CountryToIsoIndex{316233, "mq"}, + CountryToIsoIndex{316248, "mq"}, + CountryToIsoIndex{316265, "mu"}, + CountryToIsoIndex{316278, "mo"}, + CountryToIsoIndex{316289, "mo"}, + CountryToIsoIndex{316350, "mk"}, + CountryToIsoIndex{316371, "mk"}, + CountryToIsoIndex{316472, "mw"}, + CountryToIsoIndex{316485, "mw"}, + CountryToIsoIndex{316498, "my"}, + CountryToIsoIndex{316517, "mw"}, + CountryToIsoIndex{316530, "mt"}, + CountryToIsoIndex{316539, "mt"}, + CountryToIsoIndex{316550, "md"}, + CountryToIsoIndex{316565, "mv"}, + CountryToIsoIndex{316580, "mv"}, + CountryToIsoIndex{316593, "mv"}, + CountryToIsoIndex{316606, "mv"}, + CountryToIsoIndex{316621, "mv"}, + CountryToIsoIndex{316634, "mv"}, + CountryToIsoIndex{316647, "my"}, + CountryToIsoIndex{316658, "mt"}, + CountryToIsoIndex{316669, "ml"}, + CountryToIsoIndex{316678, "ml"}, + CountryToIsoIndex{316687, "my"}, + CountryToIsoIndex{316702, "mt"}, + CountryToIsoIndex{316713, "mt"}, + CountryToIsoIndex{316724, "ml"}, + CountryToIsoIndex{316733, "my"}, + CountryToIsoIndex{316748, "im"}, + CountryToIsoIndex{316768, "ms"}, + CountryToIsoIndex{316789, "ms"}, + CountryToIsoIndex{316808, "yt"}, + CountryToIsoIndex{316819, "yt"}, + CountryToIsoIndex{316832, "mo"}, + CountryToIsoIndex{316845, "mo"}, + CountryToIsoIndex{316874, "mo"}, + CountryToIsoIndex{316933, "mo"}, + CountryToIsoIndex{316944, "mo"}, + CountryToIsoIndex{316953, "mt"}, + CountryToIsoIndex{316964, "mr"}, + CountryToIsoIndex{316987, "mu"}, + CountryToIsoIndex{317008, "yt"}, + CountryToIsoIndex{317019, "yt"}, + CountryToIsoIndex{317030, "fm"}, + CountryToIsoIndex{317053, "us"}, + CountryToIsoIndex{317077, "ae"}, + CountryToIsoIndex{317108, "ae"}, + CountryToIsoIndex{317141, "ae"}, + CountryToIsoIndex{317172, "hu"}, + CountryToIsoIndex{317189, "hu"}, + CountryToIsoIndex{317206, "mg"}, + CountryToIsoIndex{317223, "mg"}, + CountryToIsoIndex{317236, "mg"}, + CountryToIsoIndex{317253, "ma"}, + CountryToIsoIndex{317264, "cf"}, + CountryToIsoIndex{317303, "cf"}, + CountryToIsoIndex{317350, "tl"}, + CountryToIsoIndex{317372, "eh"}, + CountryToIsoIndex{317398, "eg"}, + CountryToIsoIndex{317405, "eh"}, + CountryToIsoIndex{317427, "mn"}, + CountryToIsoIndex{317444, "mn"}, + CountryToIsoIndex{317461, "mk"}, + CountryToIsoIndex{317476, "mk"}, + CountryToIsoIndex{317560, "mk"}, + CountryToIsoIndex{317575, "mk"}, + CountryToIsoIndex{317598, "mk"}, + CountryToIsoIndex{317656, "mk"}, + CountryToIsoIndex{317684, "mk"}, + CountryToIsoIndex{317699, "mk"}, + CountryToIsoIndex{317722, "mo"}, + CountryToIsoIndex{317731, "mo"}, + CountryToIsoIndex{317790, "my"}, + CountryToIsoIndex{317805, "my"}, + CountryToIsoIndex{317822, "mw"}, + CountryToIsoIndex{317833, "mw"}, + CountryToIsoIndex{317844, "im"}, + CountryToIsoIndex{317862, "ez"}, + CountryToIsoIndex{317886, "ez"}, + CountryToIsoIndex{317906, "mn"}, + CountryToIsoIndex{317921, "mn"}, + CountryToIsoIndex{317936, "mn"}, + CountryToIsoIndex{317951, "ma"}, + CountryToIsoIndex{317964, "ma"}, + CountryToIsoIndex{317977, "mu"}, + CountryToIsoIndex{317995, "mr"}, + CountryToIsoIndex{318014, "mu"}, + CountryToIsoIndex{318027, "mu"}, + CountryToIsoIndex{318044, "mu"}, + CountryToIsoIndex{318059, "mr"}, + CountryToIsoIndex{318076, "mr"}, + CountryToIsoIndex{318095, "mu"}, + CountryToIsoIndex{318106, "mu"}, + CountryToIsoIndex{318121, "mr"}, + CountryToIsoIndex{318140, "mz"}, + CountryToIsoIndex{318157, "mz"}, + CountryToIsoIndex{318174, "mz"}, + CountryToIsoIndex{318189, "mz"}, + CountryToIsoIndex{318204, "mz"}, + CountryToIsoIndex{318219, "mz"}, + CountryToIsoIndex{318236, "md"}, + CountryToIsoIndex{318251, "md"}, + CountryToIsoIndex{318264, "md"}, + CountryToIsoIndex{318279, "md"}, + CountryToIsoIndex{318294, "md"}, + CountryToIsoIndex{318313, "mc"}, + CountryToIsoIndex{318326, "mc"}, + CountryToIsoIndex{318339, "mc"}, + CountryToIsoIndex{318352, "ms"}, + CountryToIsoIndex{318369, "ms"}, + CountryToIsoIndex{318390, "me"}, + CountryToIsoIndex{318412, "ms"}, + CountryToIsoIndex{318433, "ms"}, + CountryToIsoIndex{318453, "ms"}, + CountryToIsoIndex{318472, "me"}, + CountryToIsoIndex{318494, "me"}, + CountryToIsoIndex{318515, "ms"}, + CountryToIsoIndex{318532, "me"}, + CountryToIsoIndex{318554, "mc"}, + CountryToIsoIndex{318569, "me"}, + CountryToIsoIndex{318594, "mn"}, + CountryToIsoIndex{318613, "eg"}, + CountryToIsoIndex{318624, "fm"}, + CountryToIsoIndex{318647, "cx"}, + CountryToIsoIndex{318671, "yt"}, + CountryToIsoIndex{318682, "mm"}, + CountryToIsoIndex{318710, "mm"}, + CountryToIsoIndex{318736, "mm"}, + CountryToIsoIndex{318764, "mk"}, + CountryToIsoIndex{318784, "fm"}, + CountryToIsoIndex{318805, "mx"}, + CountryToIsoIndex{318820, "tl"}, + CountryToIsoIndex{318848, "my"}, + CountryToIsoIndex{318865, "mn"}, + CountryToIsoIndex{318886, "mo"}, + CountryToIsoIndex{318925, "mm"}, + CountryToIsoIndex{318951, "yt"}, + CountryToIsoIndex{318962, "ae"}, + CountryToIsoIndex{318997, "eg"}, + CountryToIsoIndex{319008, "mk"}, + CountryToIsoIndex{319031, "mx"}, + CountryToIsoIndex{319048, "mg"}, + CountryToIsoIndex{319063, "mo"}, + CountryToIsoIndex{319084, "mo"}, + CountryToIsoIndex{319093, "mo"}, + CountryToIsoIndex{319113, "mx"}, + CountryToIsoIndex{319124, "mx"}, + CountryToIsoIndex{319137, "mo"}, + CountryToIsoIndex{319148, "mr"}, + CountryToIsoIndex{319167, "mz"}, + CountryToIsoIndex{319184, "md"}, + CountryToIsoIndex{319199, "mc"}, + CountryToIsoIndex{319212, "me"}, + CountryToIsoIndex{319233, "mm"}, + CountryToIsoIndex{319248, "mm"}, + CountryToIsoIndex{319274, "mm"}, + CountryToIsoIndex{319300, "ae"}, + CountryToIsoIndex{319359, "eg"}, + CountryToIsoIndex{319368, "yt"}, + CountryToIsoIndex{319379, "mg"}, + CountryToIsoIndex{319400, "fm"}, + CountryToIsoIndex{319417, "fm"}, + CountryToIsoIndex{319436, "fm"}, + CountryToIsoIndex{319457, "mx"}, + CountryToIsoIndex{319472, "mx"}, + CountryToIsoIndex{319487, "hu"}, + CountryToIsoIndex{319506, "ma"}, + CountryToIsoIndex{319519, "mn"}, + CountryToIsoIndex{319536, "mx"}, + CountryToIsoIndex{319549, "nr"}, + CountryToIsoIndex{319558, "ne"}, + CountryToIsoIndex{319569, "ng"}, + CountryToIsoIndex{319586, "nr"}, + CountryToIsoIndex{319599, "nr"}, + CountryToIsoIndex{319614, "ne"}, + CountryToIsoIndex{319627, "ng"}, + CountryToIsoIndex{319646, "nf"}, + CountryToIsoIndex{319674, "nf"}, + CountryToIsoIndex{319704, "nf"}, + CountryToIsoIndex{319730, "nr"}, + CountryToIsoIndex{319743, "no"}, + CountryToIsoIndex{319754, "no"}, + CountryToIsoIndex{319765, "no"}, + CountryToIsoIndex{319776, "no"}, + CountryToIsoIndex{319787, "na"}, + CountryToIsoIndex{319800, "na"}, + CountryToIsoIndex{319817, "na"}, + CountryToIsoIndex{319832, "na"}, + CountryToIsoIndex{319849, "na"}, + CountryToIsoIndex{319864, "nr"}, + CountryToIsoIndex{319875, "ni"}, + CountryToIsoIndex{319896, "nr"}, + CountryToIsoIndex{319907, "ne"}, + CountryToIsoIndex{319918, "ne"}, + CountryToIsoIndex{319931, "ng"}, + CountryToIsoIndex{319950, "ng"}, + CountryToIsoIndex{319967, "nr"}, + CountryToIsoIndex{319978, "no"}, + CountryToIsoIndex{319987, "nf"}, + CountryToIsoIndex{320015, "nf"}, + CountryToIsoIndex{320041, "nf"}, + CountryToIsoIndex{320061, "no"}, + CountryToIsoIndex{320080, "nu"}, + CountryToIsoIndex{320089, "nc"}, + CountryToIsoIndex{320115, "ni"}, + CountryToIsoIndex{320136, "ne"}, + CountryToIsoIndex{320147, "ng"}, + CountryToIsoIndex{320164, "np"}, + CountryToIsoIndex{320175, "ng"}, + CountryToIsoIndex{320190, "nl"}, + CountryToIsoIndex{320207, "ni"}, + CountryToIsoIndex{320226, "na"}, + CountryToIsoIndex{320241, "nz"}, + CountryToIsoIndex{320261, "nz"}, + CountryToIsoIndex{320280, "nu"}, + CountryToIsoIndex{320289, "np"}, + CountryToIsoIndex{320300, "nu"}, + CountryToIsoIndex{320311, "nc"}, + CountryToIsoIndex{320339, "np"}, + CountryToIsoIndex{320348, "ni"}, + CountryToIsoIndex{320365, "ni"}, + CountryToIsoIndex{320384, "ni"}, + CountryToIsoIndex{320399, "no"}, + CountryToIsoIndex{320412, "nu"}, + CountryToIsoIndex{320421, "ne"}, + CountryToIsoIndex{320430, "ng"}, + CountryToIsoIndex{320443, "ng"}, + CountryToIsoIndex{320456, "ne"}, + CountryToIsoIndex{320467, "nl"}, + CountryToIsoIndex{320487, "na"}, + CountryToIsoIndex{320500, "nc"}, + CountryToIsoIndex{320526, "nc"}, + CountryToIsoIndex{320550, "nc"}, + CountryToIsoIndex{320576, "nu"}, + CountryToIsoIndex{320587, "nz"}, + CountryToIsoIndex{320602, "nz"}, + CountryToIsoIndex{320622, "nz"}, + CountryToIsoIndex{320641, "nz"}, + CountryToIsoIndex{320658, "nz"}, + CountryToIsoIndex{320675, "nu"}, + CountryToIsoIndex{320684, "nu"}, + CountryToIsoIndex{320693, "nz"}, + CountryToIsoIndex{320716, "nl"}, + CountryToIsoIndex{320739, "np"}, + CountryToIsoIndex{320750, "ni"}, + CountryToIsoIndex{320771, "ni"}, + CountryToIsoIndex{320790, "np"}, + CountryToIsoIndex{320801, "at"}, + CountryToIsoIndex{320812, "ht"}, + CountryToIsoIndex{320825, "hm"}, + CountryToIsoIndex{320868, "nl"}, + CountryToIsoIndex{320879, "nl"}, + CountryToIsoIndex{320892, "hn"}, + CountryToIsoIndex{320909, "hn"}, + CountryToIsoIndex{320926, "hk"}, + CountryToIsoIndex{320944, "hk"}, + CountryToIsoIndex{320973, "hk"}, + CountryToIsoIndex{320991, "ht"}, + CountryToIsoIndex{321002, "ht"}, + CountryToIsoIndex{321013, "ht"}, + CountryToIsoIndex{321024, "ht"}, + CountryToIsoIndex{321037, "hm"}, + CountryToIsoIndex{321069, "es"}, + CountryToIsoIndex{321084, "nl"}, + CountryToIsoIndex{321093, "bq"}, + CountryToIsoIndex{321132, "in"}, + CountryToIsoIndex{321139, "hn"}, + CountryToIsoIndex{321154, "hu"}, + CountryToIsoIndex{321169, "hn"}, + CountryToIsoIndex{321182, "hk"}, + CountryToIsoIndex{321196, "hk"}, + CountryToIsoIndex{321212, "hk"}, + CountryToIsoIndex{321274, "nl"}, + CountryToIsoIndex{321287, "bq"}, + CountryToIsoIndex{321319, "hk"}, + CountryToIsoIndex{321337, "hk"}, + CountryToIsoIndex{321405, "hk"}, + CountryToIsoIndex{321423, "ht"}, + CountryToIsoIndex{321432, "va"}, + CountryToIsoIndex{321447, "va"}, + CountryToIsoIndex{321469, "wf"}, + CountryToIsoIndex{321492, "wf"}, + CountryToIsoIndex{321529, "wf"}, + CountryToIsoIndex{321558, "wf"}, + CountryToIsoIndex{321585, "vu"}, + CountryToIsoIndex{321598, "vu"}, + CountryToIsoIndex{321613, "vu"}, + CountryToIsoIndex{321630, "cf"}, + CountryToIsoIndex{321665, "ve"}, + CountryToIsoIndex{321680, "ve"}, + CountryToIsoIndex{321695, "vn"}, + CountryToIsoIndex{321708, "ve"}, + CountryToIsoIndex{321723, "vu"}, + CountryToIsoIndex{321738, "va"}, + CountryToIsoIndex{321758, "cf"}, + CountryToIsoIndex{321791, "vn"}, + CountryToIsoIndex{321804, "us"}, + CountryToIsoIndex{321846, "wf"}, + CountryToIsoIndex{321881, "ve"}, + CountryToIsoIndex{321900, "ve"}, + CountryToIsoIndex{321919, "ve"}, + CountryToIsoIndex{321936, "vu"}, + CountryToIsoIndex{321951, "vn"}, + CountryToIsoIndex{321966, "va"}, + CountryToIsoIndex{321990, "va"}, + CountryToIsoIndex{322010, "vn"}, + CountryToIsoIndex{322023, "jm"}, + CountryToIsoIndex{322038, "jp"}, + CountryToIsoIndex{322055, "ye"}, + CountryToIsoIndex{322062, "us"}, + CountryToIsoIndex{322073, "ez"}, + CountryToIsoIndex{322089, "uy"}, + CountryToIsoIndex{322106, "gr"}, + CountryToIsoIndex{322117, "ua"}, + CountryToIsoIndex{322130, "ug"}, + CountryToIsoIndex{322143, "cv"}, + CountryToIsoIndex{322167, "nz"}, + CountryToIsoIndex{322195, "nc"}, + CountryToIsoIndex{322225, "ye"}, + CountryToIsoIndex{322236, "sg"}, + CountryToIsoIndex{322259, "ta"}, + CountryToIsoIndex{322288, "tt"}, + CountryToIsoIndex{322327, "to"}, + CountryToIsoIndex{322340, "to"}, + CountryToIsoIndex{322351, "tn"}, + CountryToIsoIndex{322368, "tv"}, + CountryToIsoIndex{322381, "tk"}, + CountryToIsoIndex{322396, "tg"}, + CountryToIsoIndex{322405, "tt"}, + CountryToIsoIndex{322438, "ta"}, + CountryToIsoIndex{322463, "tt"}, + CountryToIsoIndex{322504, "to"}, + CountryToIsoIndex{322515, "tk"}, + CountryToIsoIndex{322530, "py"}, + CountryToIsoIndex{322545, "py"}, + CountryToIsoIndex{322562, "py"}, + CountryToIsoIndex{322579, "py"}, + CountryToIsoIndex{322596, "pk"}, + CountryToIsoIndex{322613, "pw"}, + CountryToIsoIndex{322626, "pw"}, + CountryToIsoIndex{322639, "pw"}, + CountryToIsoIndex{322650, "pa"}, + CountryToIsoIndex{322663, "pa"}, + CountryToIsoIndex{322676, "pa"}, + CountryToIsoIndex{322689, "pg"}, + CountryToIsoIndex{322745, "pg"}, + CountryToIsoIndex{322770, "pg"}, + CountryToIsoIndex{322795, "pg"}, + CountryToIsoIndex{322820, "pg"}, + CountryToIsoIndex{322849, "pg"}, + CountryToIsoIndex{322876, "pg"}, + CountryToIsoIndex{322905, "pg"}, + CountryToIsoIndex{322938, "pg"}, + CountryToIsoIndex{322981, "pk"}, + CountryToIsoIndex{322996, "pk"}, + CountryToIsoIndex{323011, "pk"}, + CountryToIsoIndex{323028, "pk"}, + CountryToIsoIndex{323043, "pt"}, + CountryToIsoIndex{323056, "pt"}, + CountryToIsoIndex{323069, "pe"}, + CountryToIsoIndex{323076, "pw"}, + CountryToIsoIndex{323085, "pw"}, + CountryToIsoIndex{323096, "pw"}, + CountryToIsoIndex{323103, "pf"}, + CountryToIsoIndex{323132, "pa"}, + CountryToIsoIndex{323143, "pr"}, + CountryToIsoIndex{323163, "pr"}, + CountryToIsoIndex{323182, "pt"}, + CountryToIsoIndex{323199, "pt"}, + CountryToIsoIndex{323214, "pt"}, + CountryToIsoIndex{323237, "pl"}, + CountryToIsoIndex{323248, "pl"}, + CountryToIsoIndex{323259, "pl"}, + CountryToIsoIndex{323270, "pl"}, + CountryToIsoIndex{323283, "pl"}, + CountryToIsoIndex{323298, "pl"}, + CountryToIsoIndex{323311, "pn"}, + CountryToIsoIndex{323347, "ci"}, + CountryToIsoIndex{323378, "py"}, + CountryToIsoIndex{323395, "pe"}, + CountryToIsoIndex{323404, "pr"}, + CountryToIsoIndex{323428, "py"}, + CountryToIsoIndex{323443, "pw"}, + CountryToIsoIndex{323454, "pa"}, + CountryToIsoIndex{323467, "pt"}, + CountryToIsoIndex{323484, "pn"}, + CountryToIsoIndex{323518, "pr"}, + CountryToIsoIndex{323538, "pn"}, + CountryToIsoIndex{323564, "pn"}, + CountryToIsoIndex{323584, "pl"}, + CountryToIsoIndex{323599, "pr"}, + CountryToIsoIndex{323623, "pn"}, + CountryToIsoIndex{323651, "py"}, + CountryToIsoIndex{323668, "pe"}, + CountryToIsoIndex{323677, "pe"}, + CountryToIsoIndex{323688, "pr"}, + CountryToIsoIndex{323710, "pe"}, + CountryToIsoIndex{323723, "pn"}, + CountryToIsoIndex{323747, "pe"}, + CountryToIsoIndex{323756, "ps"}, + CountryToIsoIndex{323773, "ps"}, + CountryToIsoIndex{323803, "th"}, + CountryToIsoIndex{323820, "bt"}, + CountryToIsoIndex{323831, "td"}, + CountryToIsoIndex{323838, "td"}, + CountryToIsoIndex{323845, "td"}, + CountryToIsoIndex{323852, "td"}, + CountryToIsoIndex{323859, "td"}, + CountryToIsoIndex{323866, "kp"}, + CountryToIsoIndex{323881, "cl"}, + CountryToIsoIndex{323888, "cl"}, + CountryToIsoIndex{323895, "cl"}, + CountryToIsoIndex{323904, "cn"}, + CountryToIsoIndex{323911, "hu"}, + CountryToIsoIndex{323933, "cz"}, + CountryToIsoIndex{323955, "cz"}, + CountryToIsoIndex{323966, "cl"}, + CountryToIsoIndex{323975, "cz"}, + CountryToIsoIndex{323995, "cz"}, + CountryToIsoIndex{324013, "cz"}, + CountryToIsoIndex{324022, "cl"}, + CountryToIsoIndex{324031, "cl"}, + CountryToIsoIndex{324040, "cn"}, + CountryToIsoIndex{324047, "cn"}, + CountryToIsoIndex{324056, "cz"}, + CountryToIsoIndex{324078, "cz"}, + CountryToIsoIndex{324106, "cz"}, + CountryToIsoIndex{324117, "cz"}, + CountryToIsoIndex{324147, "dg"}, + CountryToIsoIndex{324171, "dk"}, + CountryToIsoIndex{324184, "dm"}, + CountryToIsoIndex{324199, "dm"}, + CountryToIsoIndex{324216, "do"}, + CountryToIsoIndex{324254, "dk"}, + CountryToIsoIndex{324273, "dg"}, + CountryToIsoIndex{324295, "dg"}, + CountryToIsoIndex{324319, "dk"}, + CountryToIsoIndex{324332, "dg"}, + CountryToIsoIndex{324356, "dj"}, + CountryToIsoIndex{324371, "dm"}, + CountryToIsoIndex{324388, "do"}, + CountryToIsoIndex{324420, "dk"}, + CountryToIsoIndex{324435, "za"}, + CountryToIsoIndex{324455, "gs"}, + CountryToIsoIndex{324505, "ss"}, + CountryToIsoIndex{324523, "kr"}, + CountryToIsoIndex{324541, "rw"}, + CountryToIsoIndex{324554, "ru"}, + CountryToIsoIndex{324567, "ro"}, + CountryToIsoIndex{324582, "eh"}, + CountryToIsoIndex{324608, "jp"}, + CountryToIsoIndex{324617, "jp"}, + CountryToIsoIndex{324628, "va"}, + CountryToIsoIndex{324643, "vu"}, + CountryToIsoIndex{324662, "us"}, + CountryToIsoIndex{324696, "vn"}, + CountryToIsoIndex{324711, "kz"}, + CountryToIsoIndex{324730, "cr"}, + CountryToIsoIndex{324749, "cr"}, + CountryToIsoIndex{324766, "nc"}, + CountryToIsoIndex{324794, "kh"}, + CountryToIsoIndex{324807, "cm"}, + CountryToIsoIndex{324820, "cm"}, + CountryToIsoIndex{324835, "ca"}, + CountryToIsoIndex{324848, "ca"}, + CountryToIsoIndex{324861, "cd"}, + CountryToIsoIndex{324878, "cg"}, + CountryToIsoIndex{324906, "cg"}, + CountryToIsoIndex{324936, "cd"}, + CountryToIsoIndex{324964, "cd"}, + CountryToIsoIndex{324981, "cg"}, + CountryToIsoIndex{325009, "cg"}, + CountryToIsoIndex{325041, "cg"}, + CountryToIsoIndex{325069, "cd"}, + CountryToIsoIndex{325095, "cd"}, + CountryToIsoIndex{325123, "ca"}, + CountryToIsoIndex{325136, "kg"}, + CountryToIsoIndex{325153, "kr"}, + CountryToIsoIndex{325173, "kp"}, + CountryToIsoIndex{325193, "hr"}, + CountryToIsoIndex{325208, "hr"}, + CountryToIsoIndex{325221, "hr"}, + CountryToIsoIndex{325234, "cx"}, + CountryToIsoIndex{325264, "hr"}, + CountryToIsoIndex{325281, "hr"}, + CountryToIsoIndex{325298, "ki"}, + CountryToIsoIndex{325313, "bq"}, + CountryToIsoIndex{325349, "cx"}, + CountryToIsoIndex{325373, "co"}, + CountryToIsoIndex{325386, "cp"}, + CountryToIsoIndex{325412, "cp"}, + CountryToIsoIndex{325440, "kh"}, + CountryToIsoIndex{325455, "kh"}, + CountryToIsoIndex{325470, "kh"}, + CountryToIsoIndex{325485, "cd"}, + CountryToIsoIndex{325528, "cg"}, + CountryToIsoIndex{325552, "cd"}, + CountryToIsoIndex{325595, "cg"}, + CountryToIsoIndex{325621, "cd"}, + CountryToIsoIndex{325647, "cg"}, + CountryToIsoIndex{325673, "cd"}, + CountryToIsoIndex{325697, "ke"}, + CountryToIsoIndex{325706, "cu"}, + CountryToIsoIndex{325715, "cw"}, + CountryToIsoIndex{325732, "kr"}, + CountryToIsoIndex{325756, "kp"}, + CountryToIsoIndex{325780, "xk"}, + CountryToIsoIndex{325791, "cr"}, + CountryToIsoIndex{325810, "xk"}, + CountryToIsoIndex{325821, "xk"}, + CountryToIsoIndex{325832, "xk"}, + CountryToIsoIndex{325845, "cr"}, + CountryToIsoIndex{325865, "cr"}, + CountryToIsoIndex{325885, "co"}, + CountryToIsoIndex{325900, "co"}, + CountryToIsoIndex{325919, "km"}, + CountryToIsoIndex{325930, "km"}, + CountryToIsoIndex{325943, "km"}, + CountryToIsoIndex{325958, "cg"}, + CountryToIsoIndex{325992, "cd"}, + CountryToIsoIndex{326020, "cu"}, + CountryToIsoIndex{326031, "ci"}, + CountryToIsoIndex{326056, "cc"}, + CountryToIsoIndex{326089, "ck"}, + CountryToIsoIndex{326107, "ck"}, + CountryToIsoIndex{326129, "cc"}, + CountryToIsoIndex{326168, "cc"}, + CountryToIsoIndex{326203, "cw"}, + CountryToIsoIndex{326216, "cc"}, + CountryToIsoIndex{326259, "kw"}, + CountryToIsoIndex{326268, "kw"}, + CountryToIsoIndex{326277, "kw"}, + CountryToIsoIndex{326288, "kz"}, + CountryToIsoIndex{326309, "kh"}, + CountryToIsoIndex{326328, "km"}, + CountryToIsoIndex{326343, "kw"}, + CountryToIsoIndex{326354, "ck"}, + CountryToIsoIndex{326376, "ki"}, + CountryToIsoIndex{326393, "kg"}, + CountryToIsoIndex{326412, "ke"}, + CountryToIsoIndex{326425, "ck"}, + CountryToIsoIndex{326445, "ci"}, + CountryToIsoIndex{326464, "kr"}, + CountryToIsoIndex{326490, "kp"}, + CountryToIsoIndex{326516, "cr"}, + CountryToIsoIndex{326535, "co"}, + CountryToIsoIndex{326552, "cf"}, + CountryToIsoIndex{326599, "cd"}, + CountryToIsoIndex{326646, "cz"}, + CountryToIsoIndex{326666, "cg"}, + CountryToIsoIndex{326690, "cg"}, + CountryToIsoIndex{326718, "cd"}, + CountryToIsoIndex{326744, "ki"}, + CountryToIsoIndex{326762, "ki"}, + CountryToIsoIndex{326779, "ki"}, + CountryToIsoIndex{326794, "bq"}, + CountryToIsoIndex{326822, "ky"}, + CountryToIsoIndex{326848, "cm"}, + CountryToIsoIndex{326861, "ky"}, + CountryToIsoIndex{326890, "ky"}, + CountryToIsoIndex{326916, "ky"}, + CountryToIsoIndex{326942, "ic"}, + CountryToIsoIndex{326968, "ca"}, + CountryToIsoIndex{326981, "ke"}, + CountryToIsoIndex{326992, "ca"}, + CountryToIsoIndex{327005, "cu"}, + CountryToIsoIndex{327016, "cw"}, + CountryToIsoIndex{327033, "cu"}, + CountryToIsoIndex{327046, "cm"}, + CountryToIsoIndex{327065, "cv"}, + CountryToIsoIndex{327081, "cv"}, + CountryToIsoIndex{327095, "cv"}, + CountryToIsoIndex{327111, "cv"}, + CountryToIsoIndex{327127, "kh"}, + CountryToIsoIndex{327144, "cv"}, + CountryToIsoIndex{327161, "ca"}, + CountryToIsoIndex{327174, "cd"}, + CountryToIsoIndex{327185, "cg"}, + CountryToIsoIndex{327211, "cg"}, + CountryToIsoIndex{327241, "cd"}, + CountryToIsoIndex{327266, "ki"}, + CountryToIsoIndex{327279, "cx"}, + CountryToIsoIndex{327297, "kg"}, + CountryToIsoIndex{327312, "hr"}, + CountryToIsoIndex{327329, "cp"}, + CountryToIsoIndex{327349, "kh"}, + CountryToIsoIndex{327364, "xk"}, + CountryToIsoIndex{327377, "cr"}, + CountryToIsoIndex{327395, "co"}, + CountryToIsoIndex{327410, "km"}, + CountryToIsoIndex{327425, "kw"}, + CountryToIsoIndex{327434, "ck"}, + CountryToIsoIndex{327448, "cc"}, + CountryToIsoIndex{327466, "ky"}, + CountryToIsoIndex{327485, "bq"}, + CountryToIsoIndex{327517, "cm"}, + CountryToIsoIndex{327530, "ic"}, + CountryToIsoIndex{327548, "ke"}, + CountryToIsoIndex{327559, "cu"}, + CountryToIsoIndex{327570, "cw"}, + CountryToIsoIndex{327589, "cv"}, + CountryToIsoIndex{327605, "ga"}, + CountryToIsoIndex{327614, "gp"}, + CountryToIsoIndex{327627, "gm"}, + CountryToIsoIndex{327640, "gh"}, + CountryToIsoIndex{327649, "gd"}, + CountryToIsoIndex{327662, "gg"}, + CountryToIsoIndex{327673, "gl"}, + CountryToIsoIndex{327690, "gt"}, + CountryToIsoIndex{327709, "gu"}, + CountryToIsoIndex{327718, "gy"}, + CountryToIsoIndex{327729, "gn"}, + CountryToIsoIndex{327738, "gw"}, + CountryToIsoIndex{327756, "ga"}, + CountryToIsoIndex{327765, "ga"}, + CountryToIsoIndex{327776, "ga"}, + CountryToIsoIndex{327787, "gm"}, + CountryToIsoIndex{327802, "gm"}, + CountryToIsoIndex{327815, "gh"}, + CountryToIsoIndex{327824, "ga"}, + CountryToIsoIndex{327833, "gd"}, + CountryToIsoIndex{327848, "ge"}, + CountryToIsoIndex{327863, "ge"}, + CountryToIsoIndex{327878, "gd"}, + CountryToIsoIndex{327891, "gg"}, + CountryToIsoIndex{327902, "gl"}, + CountryToIsoIndex{327920, "gd"}, + CountryToIsoIndex{327933, "gd"}, + CountryToIsoIndex{327948, "gl"}, + CountryToIsoIndex{327966, "gd"}, + CountryToIsoIndex{327981, "gd"}, + CountryToIsoIndex{327996, "gl"}, + CountryToIsoIndex{328013, "gl"}, + CountryToIsoIndex{328028, "gr"}, + CountryToIsoIndex{328039, "gl"}, + CountryToIsoIndex{328060, "gn"}, + CountryToIsoIndex{328067, "gw"}, + CountryToIsoIndex{328085, "gn"}, + CountryToIsoIndex{328092, "gw"}, + CountryToIsoIndex{328108, "gh"}, + CountryToIsoIndex{328119, "gu"}, + CountryToIsoIndex{328130, "gg"}, + CountryToIsoIndex{328145, "gt"}, + CountryToIsoIndex{328165, "gt"}, + CountryToIsoIndex{328182, "gt"}, + CountryToIsoIndex{328201, "gp"}, + CountryToIsoIndex{328216, "gu"}, + CountryToIsoIndex{328225, "gt"}, + CountryToIsoIndex{328245, "gp"}, + CountryToIsoIndex{328262, "gp"}, + CountryToIsoIndex{328279, "gt"}, + CountryToIsoIndex{328296, "ge"}, + CountryToIsoIndex{328313, "gg"}, + CountryToIsoIndex{328326, "nl"}, + CountryToIsoIndex{328347, "gy"}, + CountryToIsoIndex{328358, "gf"}, + CountryToIsoIndex{328382, "gy"}, + CountryToIsoIndex{328395, "ge"}, + CountryToIsoIndex{328412, "gr"}, + CountryToIsoIndex{328431, "gd"}, + CountryToIsoIndex{328448, "gl"}, + CountryToIsoIndex{328473, "gt"}, + CountryToIsoIndex{328494, "gp"}, + CountryToIsoIndex{328513, "gn"}, + CountryToIsoIndex{328530, "gw"}, + CountryToIsoIndex{328562, "gy"}, + CountryToIsoIndex{328579, "gy"}, + CountryToIsoIndex{328590, "gm"}, + CountryToIsoIndex{328603, "gm"}, + CountryToIsoIndex{328618, "gp"}, + CountryToIsoIndex{328637, "gu"}, + CountryToIsoIndex{328648, "gy"}, + CountryToIsoIndex{328661, "gn"}, + CountryToIsoIndex{328670, "gh"}, + CountryToIsoIndex{328681, "gu"}, + CountryToIsoIndex{328692, "gg"}, + CountryToIsoIndex{328707, "gy"}, + CountryToIsoIndex{328718, "ga"}, + CountryToIsoIndex{328729, "ga"}, + CountryToIsoIndex{328740, "gm"}, + CountryToIsoIndex{328753, "gn"}, + CountryToIsoIndex{328762, "gw"}, + CountryToIsoIndex{328784, "gq"}, + CountryToIsoIndex{328810, "gw"}, + CountryToIsoIndex{328834, "gn"}, + CountryToIsoIndex{328845, "gq"}, + CountryToIsoIndex{328871, "gw"}, + CountryToIsoIndex{328895, "gn"}, + CountryToIsoIndex{328904, "gw"}, + CountryToIsoIndex{328924, "gg"}, + CountryToIsoIndex{328943, "gw"}, + CountryToIsoIndex{328965, "de"}, + CountryToIsoIndex{328984, "in"}, + CountryToIsoIndex{328991, "ht"}, + CountryToIsoIndex{329002, "ht"}, + CountryToIsoIndex{329013, "hn"}, + CountryToIsoIndex{329030, "id"}, + CountryToIsoIndex{329053, "in"}, + CountryToIsoIndex{329072, "hn"}, + CountryToIsoIndex{329091, "nl"}, + CountryToIsoIndex{329106, "in"}, + CountryToIsoIndex{329123, "hm"}, + CountryToIsoIndex{329188, "hn"}, + CountryToIsoIndex{329209, "hk"}, + CountryToIsoIndex{329257, "hk"}, + CountryToIsoIndex{329275, "hk"}, + CountryToIsoIndex{329304, "ht"}, + CountryToIsoIndex{329315, "es"}, + CountryToIsoIndex{329330, "hu"}, + CountryToIsoIndex{329341, "hn"}, + CountryToIsoIndex{329358, "hm"}, + CountryToIsoIndex{329429, "hu"}, + CountryToIsoIndex{329444, "in"}, + CountryToIsoIndex{329465, "hm"}, + CountryToIsoIndex{329518, "ht"}, + CountryToIsoIndex{329527, "va"}, + CountryToIsoIndex{329542, "wf"}, + CountryToIsoIndex{329573, "vu"}, + CountryToIsoIndex{329590, "vn"}, + CountryToIsoIndex{329607, "hu"}, + CountryToIsoIndex{329626, "ve"}, + CountryToIsoIndex{329647, "ye"}, + CountryToIsoIndex{329654, "gb"}, + CountryToIsoIndex{329664, "ez"}, + CountryToIsoIndex{329679, "uy"}, + CountryToIsoIndex{329694, "uy"}, + CountryToIsoIndex{329711, "uy"}, + CountryToIsoIndex{329728, "gr"}, + CountryToIsoIndex{329739, "vi"}, + CountryToIsoIndex{329779, "uy"}, + CountryToIsoIndex{329794, "ua"}, + CountryToIsoIndex{329811, "us"}, + CountryToIsoIndex{329845, "um"}, + CountryToIsoIndex{329930, "ug"}, + CountryToIsoIndex{329949, "ua"}, + CountryToIsoIndex{329962, "ug"}, + CountryToIsoIndex{329977, "ug"}, + CountryToIsoIndex{329992, "ug"}, + CountryToIsoIndex{330005, "ye"}, + CountryToIsoIndex{330016, "gb"}, + CountryToIsoIndex{330050, "gr"}, + CountryToIsoIndex{330061, "ye"}, + CountryToIsoIndex{330072, "ai"}, + CountryToIsoIndex{330097, "ag"}, + CountryToIsoIndex{330154, "ad"}, + CountryToIsoIndex{330173, "ai"}, + CountryToIsoIndex{330192, "ao"}, + CountryToIsoIndex{330211, "aq"}, + CountryToIsoIndex{330245, "aq"}, + CountryToIsoIndex{330282, "ad"}, + CountryToIsoIndex{330301, "ao"}, + CountryToIsoIndex{330323, "az"}, + CountryToIsoIndex{330348, "az"}, + CountryToIsoIndex{330376, "az"}, + CountryToIsoIndex{330401, "aq"}, + CountryToIsoIndex{330432, "ad"}, + CountryToIsoIndex{330460, "af"}, + CountryToIsoIndex{330494, "af"}, + CountryToIsoIndex{330528, "af"}, + CountryToIsoIndex{330568, "af"}, + CountryToIsoIndex{330605, "as"}, + CountryToIsoIndex{330637, "as"}, + CountryToIsoIndex{330675, "us"}, + CountryToIsoIndex{330697, "as"}, + CountryToIsoIndex{330732, "as"}, + CountryToIsoIndex{330770, "aw"}, + CountryToIsoIndex{330786, "aw"}, + CountryToIsoIndex{330802, "ar"}, + CountryToIsoIndex{330833, "ar"}, + CountryToIsoIndex{330864, "ar"}, + CountryToIsoIndex{330898, "ar"}, + CountryToIsoIndex{330932, "am"}, + CountryToIsoIndex{330960, "sv"}, + CountryToIsoIndex{330992, "sv"}, + CountryToIsoIndex{331027, "ax"}, + CountryToIsoIndex{331056, "ax"}, + CountryToIsoIndex{331097, "dz"}, + CountryToIsoIndex{331125, "dz"}, + CountryToIsoIndex{331153, "al"}, + CountryToIsoIndex{331181, "al"}, + CountryToIsoIndex{331209, "al"}, + CountryToIsoIndex{331237, "at"}, + CountryToIsoIndex{331265, "au"}, + CountryToIsoIndex{331299, "ac"}, + CountryToIsoIndex{331334, "ac"}, + CountryToIsoIndex{331366, "eh"}, + CountryToIsoIndex{331401, "ax"}, + CountryToIsoIndex{331433, "ac"}, + CountryToIsoIndex{331477, "ci"}, + CountryToIsoIndex{331512, "im"}, + CountryToIsoIndex{331545, "im"}, + CountryToIsoIndex{331575, "ci"}, + CountryToIsoIndex{331607, "is"}, + CountryToIsoIndex{331626, "is"}, + CountryToIsoIndex{331648, "is"}, + CountryToIsoIndex{331682, "im"}, + CountryToIsoIndex{331712, "ci"}, + CountryToIsoIndex{331744, "qo"}, + CountryToIsoIndex{331791, "qo"}, + CountryToIsoIndex{331835, "ai"}, + CountryToIsoIndex{331860, "ie"}, + CountryToIsoIndex{331879, "ie"}, + CountryToIsoIndex{331901, "ie"}, + CountryToIsoIndex{331932, "ie"}, + CountryToIsoIndex{331954, "im"}, + CountryToIsoIndex{331981, "ci"}, + CountryToIsoIndex{332016, "ci"}, + CountryToIsoIndex{332054, "am"}, + CountryToIsoIndex{332082, "am"}, + CountryToIsoIndex{332110, "ax"}, + CountryToIsoIndex{332142, "qo"}, + CountryToIsoIndex{332192, "id"}, + CountryToIsoIndex{332223, "id"}, + CountryToIsoIndex{332254, "ec"}, + CountryToIsoIndex{332279, "gq"}, + CountryToIsoIndex{332326, "gq"}, + CountryToIsoIndex{332382, "ec"}, + CountryToIsoIndex{332407, "il"}, + CountryToIsoIndex{332426, "il"}, + CountryToIsoIndex{332448, "eg"}, + CountryToIsoIndex{332467, "eg"}, + CountryToIsoIndex{332486, "it"}, + CountryToIsoIndex{332499, "it"}, + CountryToIsoIndex{332515, "et"}, + CountryToIsoIndex{332540, "et"}, + CountryToIsoIndex{332568, "id"}, + CountryToIsoIndex{332602, "iq"}, + CountryToIsoIndex{332615, "ir"}, + CountryToIsoIndex{332628, "ir"}, + CountryToIsoIndex{332641, "er"}, + CountryToIsoIndex{332669, "im"}, + CountryToIsoIndex{332699, "ee"}, + CountryToIsoIndex{332727, "il"}, + CountryToIsoIndex{332755, "il"}, + CountryToIsoIndex{332777, "eg"}, + CountryToIsoIndex{332796, "iq"}, + CountryToIsoIndex{332812, "ir"}, + CountryToIsoIndex{332825, "tl"}, + CountryToIsoIndex{332854, "uz"}, + CountryToIsoIndex{332891, "uz"}, + CountryToIsoIndex{332931, "uz"}, + CountryToIsoIndex{332968, "uz"}, + CountryToIsoIndex{333002, "kp"}, + CountryToIsoIndex{333037, "mp"}, + CountryToIsoIndex{333097, "mp"}, + CountryToIsoIndex{333151, "mp"}, + CountryToIsoIndex{333211, "mp"}, + CountryToIsoIndex{333283, "mp"}, + CountryToIsoIndex{333340, "uy"}, + CountryToIsoIndex{333362, "uy"}, + CountryToIsoIndex{333384, "ad"}, + CountryToIsoIndex{333406, "sv"}, + CountryToIsoIndex{333441, "ag"}, + CountryToIsoIndex{333495, "ai"}, + CountryToIsoIndex{333514, "ai"}, + CountryToIsoIndex{333539, "ag"}, + CountryToIsoIndex{333587, "ad"}, + CountryToIsoIndex{333606, "ec"}, + CountryToIsoIndex{333631, "ag"}, + CountryToIsoIndex{333688, "ag"}, + CountryToIsoIndex{333739, "er"}, + CountryToIsoIndex{333767, "er"}, + CountryToIsoIndex{333795, "sv"}, + CountryToIsoIndex{333830, "ax"}, + CountryToIsoIndex{333874, "sv"}, + CountryToIsoIndex{333912, "ac"}, + CountryToIsoIndex{333953, "ee"}, + CountryToIsoIndex{333981, "at"}, + CountryToIsoIndex{334009, "au"}, + CountryToIsoIndex{334043, "au"}, + CountryToIsoIndex{334077, "om"}, + CountryToIsoIndex{334087, "om"}, + CountryToIsoIndex{334100, "kh"}, + CountryToIsoIndex{334125, "cg"}, + CountryToIsoIndex{334168, "cd"}, + CountryToIsoIndex{334211, "cd"}, + CountryToIsoIndex{334254, "cg"}, + CountryToIsoIndex{334298, "kz"}, + CountryToIsoIndex{334329, "kz"}, + CountryToIsoIndex{334357, "qa"}, + CountryToIsoIndex{334370, "ca"}, + CountryToIsoIndex{334386, "kh"}, + CountryToIsoIndex{334414, "qa"}, + CountryToIsoIndex{334427, "qa"}, + CountryToIsoIndex{334443, "cd"}, + CountryToIsoIndex{334480, "cg"}, + CountryToIsoIndex{334532, "cd"}, + CountryToIsoIndex{334572, "cg"}, + CountryToIsoIndex{334621, "cg"}, + CountryToIsoIndex{334661, "cd"}, + CountryToIsoIndex{334698, "cd"}, + CountryToIsoIndex{334738, "cg"}, + CountryToIsoIndex{334789, "kz"}, + CountryToIsoIndex{334820, "kg"}, + CountryToIsoIndex{334854, "ki"}, + CountryToIsoIndex{334879, "ki"}, + CountryToIsoIndex{334904, "ki"}, + CountryToIsoIndex{334929, "kg"}, + CountryToIsoIndex{334954, "kg"}, + CountryToIsoIndex{334994, "kg"}, + CountryToIsoIndex{335028, "ck"}, + CountryToIsoIndex{335060, "ck"}, + CountryToIsoIndex{335092, "ck"}, + CountryToIsoIndex{335118, "ck"}, + CountryToIsoIndex{335156, "ck"}, + CountryToIsoIndex{335179, "cw"}, + CountryToIsoIndex{335201, "cw"}, + CountryToIsoIndex{335223, "kw"}, + CountryToIsoIndex{335239, "kw"}, + CountryToIsoIndex{335255, "ca"}, + CountryToIsoIndex{335271, "ic"}, + CountryToIsoIndex{335312, "ic"}, + CountryToIsoIndex{335341, "cm"}, + CountryToIsoIndex{335363, "bq"}, + CountryToIsoIndex{335410, "bq"}, + CountryToIsoIndex{335463, "cf"}, + CountryToIsoIndex{335544, "ke"}, + CountryToIsoIndex{335560, "ke"}, + CountryToIsoIndex{335579, "cf"}, + CountryToIsoIndex{335654, "ke"}, + CountryToIsoIndex{335673, "cv"}, + CountryToIsoIndex{335699, "cv"}, + CountryToIsoIndex{335722, "cv"}, + CountryToIsoIndex{335748, "cv"}, + CountryToIsoIndex{335780, "ky"}, + CountryToIsoIndex{335806, "ky"}, + CountryToIsoIndex{335838, "ky"}, + CountryToIsoIndex{335870, "ca"}, + CountryToIsoIndex{335889, "ic"}, + CountryToIsoIndex{335936, "cv"}, + CountryToIsoIndex{335965, "cm"}, + CountryToIsoIndex{335984, "ky"}, + CountryToIsoIndex{336025, "ky"}, + CountryToIsoIndex{336069, "bq"}, + CountryToIsoIndex{336119, "cd"}, + CountryToIsoIndex{336157, "cg"}, + CountryToIsoIndex{336213, "cd"}, + CountryToIsoIndex{336250, "cg"}, + CountryToIsoIndex{336302, "cd"}, + CountryToIsoIndex{336342, "cg"}, + CountryToIsoIndex{336391, "cc"}, + CountryToIsoIndex{336450, "cc"}, + CountryToIsoIndex{336503, "cc"}, + CountryToIsoIndex{336568, "cc"}, + CountryToIsoIndex{336618, "cc"}, + CountryToIsoIndex{336650, "ci"}, + CountryToIsoIndex{336680, "ci"}, + CountryToIsoIndex{336712, "cm"}, + CountryToIsoIndex{336734, "km"}, + CountryToIsoIndex{336756, "km"}, + CountryToIsoIndex{336781, "km"}, + CountryToIsoIndex{336803, "co"}, + CountryToIsoIndex{336828, "co"}, + CountryToIsoIndex{336856, "co"}, + CountryToIsoIndex{336887, "cr"}, + CountryToIsoIndex{336918, "xk"}, + CountryToIsoIndex{336937, "xk"}, + CountryToIsoIndex{336956, "xk"}, + CountryToIsoIndex{336981, "cr"}, + CountryToIsoIndex{337013, "cr"}, + CountryToIsoIndex{337044, "cr"}, + CountryToIsoIndex{337075, "cr"}, + CountryToIsoIndex{337107, "ca"}, + CountryToIsoIndex{337132, "ic"}, + CountryToIsoIndex{337179, "cm"}, + CountryToIsoIndex{337204, "bq"}, + CountryToIsoIndex{337275, "cu"}, + CountryToIsoIndex{337294, "cw"}, + CountryToIsoIndex{337322, "cu"}, + CountryToIsoIndex{337341, "cw"}, + CountryToIsoIndex{337369, "cx"}, + CountryToIsoIndex{337410, "cx"}, + CountryToIsoIndex{337448, "cx"}, + CountryToIsoIndex{337486, "cx"}, + CountryToIsoIndex{337527, "hr"}, + CountryToIsoIndex{337555, "hr"}, + CountryToIsoIndex{337586, "cp"}, + CountryToIsoIndex{337630, "cp"}, + CountryToIsoIndex{337668, "cp"}, + CountryToIsoIndex{337712, "cp"}, + CountryToIsoIndex{337762, "cx"}, + CountryToIsoIndex{337794, "gy"}, + CountryToIsoIndex{337810, "gg"}, + CountryToIsoIndex{337829, "gm"}, + CountryToIsoIndex{337854, "gm"}, + CountryToIsoIndex{337879, "ga"}, + CountryToIsoIndex{337895, "gn"}, + CountryToIsoIndex{337908, "gw"}, + CountryToIsoIndex{337937, "gw"}, + CountryToIsoIndex{337966, "gw"}, + CountryToIsoIndex{338004, "gu"}, + CountryToIsoIndex{338017, "gn"}, + CountryToIsoIndex{338039, "gg"}, + CountryToIsoIndex{338064, "gy"}, + CountryToIsoIndex{338083, "gu"}, + CountryToIsoIndex{338099, "ga"}, + CountryToIsoIndex{338115, "ga"}, + CountryToIsoIndex{338131, "gm"}, + CountryToIsoIndex{338156, "gg"}, + CountryToIsoIndex{338178, "ga"}, + CountryToIsoIndex{338194, "gt"}, + CountryToIsoIndex{338219, "gl"}, + CountryToIsoIndex{338256, "gr"}, + CountryToIsoIndex{338272, "gl"}, + CountryToIsoIndex{338297, "gl"}, + CountryToIsoIndex{338322, "gl"}, + CountryToIsoIndex{338350, "gl"}, + CountryToIsoIndex{338381, "gr"}, + CountryToIsoIndex{338397, "gd"}, + CountryToIsoIndex{338419, "gd"}, + CountryToIsoIndex{338444, "gd"}, + CountryToIsoIndex{338469, "gd"}, + CountryToIsoIndex{338494, "gt"}, + CountryToIsoIndex{338525, "gp"}, + CountryToIsoIndex{338553, "gp"}, + CountryToIsoIndex{338581, "gp"}, + CountryToIsoIndex{338615, "gp"}, + CountryToIsoIndex{338643, "gp"}, + CountryToIsoIndex{338668, "gg"}, + CountryToIsoIndex{338696, "gh"}, + CountryToIsoIndex{338709, "td"}, + CountryToIsoIndex{338719, "cl"}, + CountryToIsoIndex{338732, "cn"}, + CountryToIsoIndex{338742, "cz"}, + CountryToIsoIndex{338777, "cz"}, + CountryToIsoIndex{338809, "cz"}, + CountryToIsoIndex{338847, "cz"}, + CountryToIsoIndex{338866, "jp"}, + CountryToIsoIndex{338879, "jm"}, + CountryToIsoIndex{338898, "jm"}, + CountryToIsoIndex{338914, "ge"}, + CountryToIsoIndex{338936, "de"}, + CountryToIsoIndex{338955, "je"}, + CountryToIsoIndex{338971, "zm"}, + CountryToIsoIndex{338999, "zw"}, + CountryToIsoIndex{339033, "zw"}, + CountryToIsoIndex{339067, "jp"}, + CountryToIsoIndex{339083, "zm"}, + CountryToIsoIndex{339108, "dj"}, + CountryToIsoIndex{339127, "dj"}, + CountryToIsoIndex{339146, "gi"}, + CountryToIsoIndex{339177, "gi"}, + CountryToIsoIndex{339211, "zw"}, + CountryToIsoIndex{339236, "zw"}, + CountryToIsoIndex{339267, "ge"}, + CountryToIsoIndex{339292, "jo"}, + CountryToIsoIndex{339311, "jo"}, + CountryToIsoIndex{339330, "zm"}, + CountryToIsoIndex{339352, "zm"}, + CountryToIsoIndex{339377, "zw"}, + CountryToIsoIndex{339408, "cz"}, + CountryToIsoIndex{339452, "cz"}, + CountryToIsoIndex{339471, "tr"}, + CountryToIsoIndex{339487, "tc"}, + CountryToIsoIndex{339545, "tz"}, + CountryToIsoIndex{339573, "tl"}, + CountryToIsoIndex{339608, "tv"}, + CountryToIsoIndex{339627, "tv"}, + CountryToIsoIndex{339646, "to"}, + CountryToIsoIndex{339662, "to"}, + CountryToIsoIndex{339678, "tk"}, + CountryToIsoIndex{339697, "tk"}, + CountryToIsoIndex{339716, "tg"}, + CountryToIsoIndex{339729, "tn"}, + CountryToIsoIndex{339760, "tn"}, + CountryToIsoIndex{339791, "tn"}, + CountryToIsoIndex{339822, "tt"}, + CountryToIsoIndex{339879, "tt"}, + CountryToIsoIndex{339936, "ta"}, + CountryToIsoIndex{339987, "ta"}, + CountryToIsoIndex{340041, "dg"}, + CountryToIsoIndex{340082, "dj"}, + CountryToIsoIndex{340107, "dg"}, + CountryToIsoIndex{340148, "dk"}, + CountryToIsoIndex{340173, "dk"}, + CountryToIsoIndex{340201, "do"}, + CountryToIsoIndex{340251, "do"}, + CountryToIsoIndex{340298, "do"}, + CountryToIsoIndex{340357, "dm"}, + CountryToIsoIndex{340382, "dm"}, + CountryToIsoIndex{340407, "tz"}, + CountryToIsoIndex{340435, "tj"}, + CountryToIsoIndex{340466, "tz"}, + CountryToIsoIndex{340494, "tw"}, + CountryToIsoIndex{340513, "tj"}, + CountryToIsoIndex{340550, "tj"}, + CountryToIsoIndex{340584, "tz"}, + CountryToIsoIndex{340615, "tw"}, + CountryToIsoIndex{340634, "tl"}, + CountryToIsoIndex{340666, "tl"}, + CountryToIsoIndex{340701, "tv"}, + CountryToIsoIndex{340720, "tc"}, + CountryToIsoIndex{340790, "tc"}, + CountryToIsoIndex{340842, "tm"}, + CountryToIsoIndex{340885, "tm"}, + CountryToIsoIndex{340928, "tr"}, + CountryToIsoIndex{340947, "tc"}, + CountryToIsoIndex{341011, "tc"}, + CountryToIsoIndex{341081, "tv"}, + CountryToIsoIndex{341100, "tv"}, + CountryToIsoIndex{341119, "tw"}, + CountryToIsoIndex{341135, "tk"}, + CountryToIsoIndex{341157, "tn"}, + CountryToIsoIndex{341188, "tt"}, + CountryToIsoIndex{341248, "tt"}, + CountryToIsoIndex{341305, "tt"}, + CountryToIsoIndex{341359, "ta"}, + CountryToIsoIndex{341407, "ta"}, + CountryToIsoIndex{341461, "th"}, + CountryToIsoIndex{341486, "th"}, + CountryToIsoIndex{341517, "th"}, + CountryToIsoIndex{341539, "th"}, + CountryToIsoIndex{341558, "th"}, + CountryToIsoIndex{341577, "za"}, + CountryToIsoIndex{341621, "za"}, + CountryToIsoIndex{341662, "za"}, + CountryToIsoIndex{341703, "za"}, + CountryToIsoIndex{341744, "za"}, + CountryToIsoIndex{341785, "kr"}, + CountryToIsoIndex{341823, "gs"}, + CountryToIsoIndex{341940, "gs"}, + CountryToIsoIndex{342045, "gs"}, + CountryToIsoIndex{342165, "gs"}, + CountryToIsoIndex{342285, "gs"}, + CountryToIsoIndex{342396, "ss"}, + CountryToIsoIndex{342431, "ss"}, + CountryToIsoIndex{342466, "ss"}, + CountryToIsoIndex{342501, "ss"}, + CountryToIsoIndex{342539, "dg"}, + CountryToIsoIndex{342580, "dg"}, + CountryToIsoIndex{342618, "dj"}, + CountryToIsoIndex{342643, "no"}, + CountryToIsoIndex{342659, "ne"}, + CountryToIsoIndex{342675, "ng"}, + CountryToIsoIndex{342703, "ne"}, + CountryToIsoIndex{342722, "ng"}, + CountryToIsoIndex{342750, "nr"}, + CountryToIsoIndex{342766, "nr"}, + CountryToIsoIndex{342782, "na"}, + CountryToIsoIndex{342807, "na"}, + CountryToIsoIndex{342832, "ne"}, + CountryToIsoIndex{342848, "ng"}, + CountryToIsoIndex{342876, "nr"}, + CountryToIsoIndex{342892, "ni"}, + CountryToIsoIndex{342920, "ni"}, + CountryToIsoIndex{342948, "ni"}, + CountryToIsoIndex{342979, "ni"}, + CountryToIsoIndex{343010, "nu"}, + CountryToIsoIndex{343026, "nl"}, + CountryToIsoIndex{343051, "nu"}, + CountryToIsoIndex{343064, "nu"}, + CountryToIsoIndex{343080, "nl"}, + CountryToIsoIndex{343102, "nl"}, + CountryToIsoIndex{343124, "nl"}, + CountryToIsoIndex{343152, "nl"}, + CountryToIsoIndex{343186, "np"}, + CountryToIsoIndex{343202, "np"}, + CountryToIsoIndex{343218, "nf"}, + CountryToIsoIndex{343256, "nf"}, + CountryToIsoIndex{343291, "nf"}, + CountryToIsoIndex{343320, "no"}, + CountryToIsoIndex{343339, "nf"}, + CountryToIsoIndex{343377, "nc"}, + CountryToIsoIndex{343427, "nz"}, + CountryToIsoIndex{343467, "nz"}, + CountryToIsoIndex{343501, "nc"}, + CountryToIsoIndex{343545, "nc"}, + CountryToIsoIndex{343589, "nc"}, + CountryToIsoIndex{343633, "nz"}, + CountryToIsoIndex{343667, "nz"}, + CountryToIsoIndex{343695, "pa"}, + CountryToIsoIndex{343711, "pg"}, + CountryToIsoIndex{343759, "py"}, + CountryToIsoIndex{343781, "pw"}, + CountryToIsoIndex{343794, "pw"}, + CountryToIsoIndex{343807, "eh"}, + CountryToIsoIndex{343842, "eh"}, + CountryToIsoIndex{343880, "eh"}, + CountryToIsoIndex{343921, "pk"}, + CountryToIsoIndex{343949, "pg"}, + CountryToIsoIndex{343991, "pg"}, + CountryToIsoIndex{344033, "py"}, + CountryToIsoIndex{344055, "pn"}, + CountryToIsoIndex{344105, "pn"}, + CountryToIsoIndex{344149, "pn"}, + CountryToIsoIndex{344174, "pn"}, + CountryToIsoIndex{344227, "pn"}, + CountryToIsoIndex{344265, "pr"}, + CountryToIsoIndex{344297, "pr"}, + CountryToIsoIndex{344332, "pr"}, + CountryToIsoIndex{344367, "pt"}, + CountryToIsoIndex{344392, "tl"}, + CountryToIsoIndex{344424, "tl"}, + CountryToIsoIndex{344459, "tl"}, + CountryToIsoIndex{344494, "ps"}, + CountryToIsoIndex{344525, "ps"}, + CountryToIsoIndex{344581, "pe"}, + CountryToIsoIndex{344594, "ps"}, + CountryToIsoIndex{344625, "ps"}, + CountryToIsoIndex{344681, "py"}, + CountryToIsoIndex{344706, "pt"}, + CountryToIsoIndex{344731, "pr"}, + CountryToIsoIndex{344763, "pt"}, + CountryToIsoIndex{344791, "pl"}, + CountryToIsoIndex{344807, "pl"}, + CountryToIsoIndex{344826, "pl"}, + CountryToIsoIndex{344848, "pl"}, + CountryToIsoIndex{344876, "pa"}, + CountryToIsoIndex{344901, "py"}, + CountryToIsoIndex{344932, "ps"}, + CountryToIsoIndex{344966, "ps"}, + CountryToIsoIndex{345026, "pr"}, + CountryToIsoIndex{345067, "fk"}, + CountryToIsoIndex{345117, "fk"}, + CountryToIsoIndex{345219, "fo"}, + CountryToIsoIndex{345245, "fj"}, + CountryToIsoIndex{345261, "fi"}, + CountryToIsoIndex{345286, "ph"}, + CountryToIsoIndex{345314, "ps"}, + CountryToIsoIndex{345345, "ps"}, + CountryToIsoIndex{345401, "fo"}, + CountryToIsoIndex{345445, "fk"}, + CountryToIsoIndex{345495, "fk"}, + CountryToIsoIndex{345585, "fk"}, + CountryToIsoIndex{345638, "fk"}, + CountryToIsoIndex{345743, "fk"}, + CountryToIsoIndex{345790, "fr"}, + CountryToIsoIndex{345812, "tf"}, + CountryToIsoIndex{345887, "gf"}, + CountryToIsoIndex{345928, "pf"}, + CountryToIsoIndex{345981, "fo"}, + CountryToIsoIndex{346016, "fj"}, + CountryToIsoIndex{346029, "fi"}, + CountryToIsoIndex{346048, "fi"}, + CountryToIsoIndex{346067, "fi"}, + CountryToIsoIndex{346089, "fi"}, + CountryToIsoIndex{346123, "ph"}, + CountryToIsoIndex{346151, "ph"}, + CountryToIsoIndex{346179, "ph"}, + CountryToIsoIndex{346207, "fo"}, + CountryToIsoIndex{346233, "fo"}, + CountryToIsoIndex{346268, "fk"}, + CountryToIsoIndex{346300, "fk"}, + CountryToIsoIndex{346378, "fr"}, + CountryToIsoIndex{346397, "tf"}, + CountryToIsoIndex{346472, "gf"}, + CountryToIsoIndex{346516, "pf"}, + CountryToIsoIndex{346575, "fr"}, + CountryToIsoIndex{346597, "gf"}, + CountryToIsoIndex{346644, "tf"}, + CountryToIsoIndex{346728, "pf"}, + CountryToIsoIndex{346790, "gf"}, + CountryToIsoIndex{346825, "tf"}, + CountryToIsoIndex{346885, "tf"}, + CountryToIsoIndex{346957, "pf"}, + CountryToIsoIndex{347007, "gf"}, + CountryToIsoIndex{347045, "pf"}, + CountryToIsoIndex{347098, "bd"}, + CountryToIsoIndex{347123, "bd"}, + CountryToIsoIndex{347151, "bm"}, + CountryToIsoIndex{347170, "bf"}, + CountryToIsoIndex{347205, "bm"}, + CountryToIsoIndex{347227, "bg"}, + CountryToIsoIndex{347255, "bg"}, + CountryToIsoIndex{347283, "bg"}, + CountryToIsoIndex{347311, "bh"}, + CountryToIsoIndex{347330, "bh"}, + CountryToIsoIndex{347346, "bh"}, + CountryToIsoIndex{347362, "bs"}, + CountryToIsoIndex{347378, "bs"}, + CountryToIsoIndex{347397, "bs"}, + CountryToIsoIndex{347416, "bh"}, + CountryToIsoIndex{347435, "bd"}, + CountryToIsoIndex{347463, "bd"}, + CountryToIsoIndex{347494, "bb"}, + CountryToIsoIndex{347519, "bb"}, + CountryToIsoIndex{347547, "qo"}, + CountryToIsoIndex{347591, "qo"}, + CountryToIsoIndex{347626, "bv"}, + CountryToIsoIndex{347655, "bi"}, + CountryToIsoIndex{347677, "bi"}, + CountryToIsoIndex{347702, "bf"}, + CountryToIsoIndex{347743, "bf"}, + CountryToIsoIndex{347781, "bf"}, + CountryToIsoIndex{347819, "bg"}, + CountryToIsoIndex{347850, "bg"}, + CountryToIsoIndex{347881, "bv"}, + CountryToIsoIndex{347910, "bj"}, + CountryToIsoIndex{347926, "bj"}, + CountryToIsoIndex{347942, "bj"}, + CountryToIsoIndex{347958, "gb"}, + CountryToIsoIndex{347977, "vg"}, + CountryToIsoIndex{348040, "io"}, + CountryToIsoIndex{348122, "by"}, + CountryToIsoIndex{348144, "bz"}, + CountryToIsoIndex{348160, "bz"}, + CountryToIsoIndex{348179, "bz"}, + CountryToIsoIndex{348195, "bz"}, + CountryToIsoIndex{348214, "bz"}, + CountryToIsoIndex{348233, "be"}, + CountryToIsoIndex{348258, "bh"}, + CountryToIsoIndex{348277, "bv"}, + CountryToIsoIndex{348306, "bw"}, + CountryToIsoIndex{348334, "bw"}, + CountryToIsoIndex{348365, "bw"}, + CountryToIsoIndex{348393, "bw"}, + CountryToIsoIndex{348424, "bo"}, + CountryToIsoIndex{348449, "bo"}, + CountryToIsoIndex{348480, "bo"}, + CountryToIsoIndex{348505, "bv"}, + CountryToIsoIndex{348534, "bv"}, + CountryToIsoIndex{348566, "ba"}, + CountryToIsoIndex{348625, "ba"}, + CountryToIsoIndex{348694, "ba"}, + CountryToIsoIndex{348766, "ba"}, + CountryToIsoIndex{348841, "ba"}, + CountryToIsoIndex{348910, "br"}, + CountryToIsoIndex{348935, "br"}, + CountryToIsoIndex{348957, "br"}, + CountryToIsoIndex{348979, "br"}, + CountryToIsoIndex{349001, "vg"}, + CountryToIsoIndex{349064, "vg"}, + CountryToIsoIndex{349133, "vg"}, + CountryToIsoIndex{349196, "vg"}, + CountryToIsoIndex{349256, "io"}, + CountryToIsoIndex{349341, "io"}, + CountryToIsoIndex{349426, "io"}, + CountryToIsoIndex{349508, "gb"}, + CountryToIsoIndex{349527, "bn"}, + CountryToIsoIndex{349549, "bn"}, + CountryToIsoIndex{349571, "bn"}, + CountryToIsoIndex{349590, "bn"}, + CountryToIsoIndex{349612, "vu"}, + CountryToIsoIndex{349634, "in"}, + CountryToIsoIndex{349647, "vn"}, + CountryToIsoIndex{349669, "bt"}, + CountryToIsoIndex{349685, "gq"}, + CountryToIsoIndex{349724, "bt"}, + CountryToIsoIndex{349740, "bt"}, + CountryToIsoIndex{349756, "va"}, + CountryToIsoIndex{349788, "ve"}, + CountryToIsoIndex{349816, "mn"}, + CountryToIsoIndex{349841, "mk"}, + CountryToIsoIndex{349866, "mk"}, + CountryToIsoIndex{349899, "mo"}, + CountryToIsoIndex{349912, "mo"}, + CountryToIsoIndex{349994, "mo"}, + CountryToIsoIndex{350007, "mo"}, + CountryToIsoIndex{350098, "mo"}, + CountryToIsoIndex{350111, "mo"}, + CountryToIsoIndex{350150, "mo"}, + CountryToIsoIndex{350241, "mo"}, + CountryToIsoIndex{350254, "mo"}, + CountryToIsoIndex{350281, "mn"}, + CountryToIsoIndex{350309, "mg"}, + CountryToIsoIndex{350337, "cf"}, + CountryToIsoIndex{350397, "cf"}, + CountryToIsoIndex{350472, "mw"}, + CountryToIsoIndex{350488, "my"}, + CountryToIsoIndex{350510, "my"}, + CountryToIsoIndex{350532, "fm"}, + CountryToIsoIndex{350572, "fm"}, + CountryToIsoIndex{350612, "mu"}, + CountryToIsoIndex{350634, "mr"}, + CountryToIsoIndex{350668, "mg"}, + CountryToIsoIndex{350699, "mg"}, + CountryToIsoIndex{350730, "fm"}, + CountryToIsoIndex{350770, "yt"}, + CountryToIsoIndex{350792, "yt"}, + CountryToIsoIndex{350817, "yt"}, + CountryToIsoIndex{350836, "mq"}, + CountryToIsoIndex{350864, "mq"}, + CountryToIsoIndex{350892, "mh"}, + CountryToIsoIndex{350933, "mh"}, + CountryToIsoIndex{350974, "mh"}, + CountryToIsoIndex{351009, "mh"}, + CountryToIsoIndex{351056, "mh"}, + CountryToIsoIndex{351088, "mv"}, + CountryToIsoIndex{351107, "mw"}, + CountryToIsoIndex{351126, "ml"}, + CountryToIsoIndex{351139, "mt"}, + CountryToIsoIndex{351158, "md"}, + CountryToIsoIndex{351183, "md"}, + CountryToIsoIndex{351208, "mv"}, + CountryToIsoIndex{351236, "eg"}, + CountryToIsoIndex{351252, "mk"}, + CountryToIsoIndex{351283, "mk"}, + CountryToIsoIndex{351322, "mk"}, + CountryToIsoIndex{351353, "mk"}, + CountryToIsoIndex{351392, "mx"}, + CountryToIsoIndex{351417, "mg"}, + CountryToIsoIndex{351448, "yt"}, + CountryToIsoIndex{351464, "mx"}, + CountryToIsoIndex{351489, "yt"}, + CountryToIsoIndex{351505, "mk"}, + CountryToIsoIndex{351536, "ms"}, + CountryToIsoIndex{351558, "mz"}, + CountryToIsoIndex{351583, "ms"}, + CountryToIsoIndex{351614, "me"}, + CountryToIsoIndex{351648, "ms"}, + CountryToIsoIndex{351682, "mr"}, + CountryToIsoIndex{351713, "mr"}, + CountryToIsoIndex{351744, "mu"}, + CountryToIsoIndex{351763, "mu"}, + CountryToIsoIndex{351779, "mu"}, + CountryToIsoIndex{351798, "md"}, + CountryToIsoIndex{351823, "ms"}, + CountryToIsoIndex{351851, "me"}, + CountryToIsoIndex{351885, "mz"}, + CountryToIsoIndex{351913, "mz"}, + CountryToIsoIndex{351944, "mz"}, + CountryToIsoIndex{351972, "mz"}, + CountryToIsoIndex{352000, "mc"}, + CountryToIsoIndex{352019, "mc"}, + CountryToIsoIndex{352038, "ms"}, + CountryToIsoIndex{352075, "me"}, + CountryToIsoIndex{352112, "ma"}, + CountryToIsoIndex{352134, "ma"}, + CountryToIsoIndex{352159, "md"}, + CountryToIsoIndex{352190, "md"}, + CountryToIsoIndex{352221, "mm"}, + CountryToIsoIndex{352264, "mm"}, + CountryToIsoIndex{352289, "mm"}, + CountryToIsoIndex{352332, "mm"}, + CountryToIsoIndex{352378, "mk"}, + CountryToIsoIndex{352415, "mk"}, + CountryToIsoIndex{352470, "ye"}, + CountryToIsoIndex{352480, "um"}, + CountryToIsoIndex{352565, "vi"}, + CountryToIsoIndex{352625, "vi"}, + CountryToIsoIndex{352681, "us"}, + CountryToIsoIndex{352694, "gb"}, + CountryToIsoIndex{352707, "ua"}, + CountryToIsoIndex{352729, "ug"}, + CountryToIsoIndex{352751, "ug"}, + CountryToIsoIndex{352773, "ug"}, + CountryToIsoIndex{352798, "ae"}, + CountryToIsoIndex{352858, "um"}, + CountryToIsoIndex{352960, "gb"}, + CountryToIsoIndex{353004, "us"}, + CountryToIsoIndex{353051, "uy"}, + CountryToIsoIndex{353073, "ez"}, + CountryToIsoIndex{353095, "ez"}, + CountryToIsoIndex{353117, "us"}, + CountryToIsoIndex{353132, "um"}, + CountryToIsoIndex{353185, "vi"}, + CountryToIsoIndex{353238, "gb"}, + CountryToIsoIndex{353253, "ua"}, + CountryToIsoIndex{353275, "gb"}, + CountryToIsoIndex{353319, "gr"}, + CountryToIsoIndex{353335, "ez"}, + CountryToIsoIndex{353360, "um"}, + CountryToIsoIndex{353432, "vi"}, + CountryToIsoIndex{353498, "gb"}, + CountryToIsoIndex{353517, "ye"}, + CountryToIsoIndex{353533, "rw"}, + CountryToIsoIndex{353552, "rw"}, + CountryToIsoIndex{353574, "ru"}, + CountryToIsoIndex{353590, "re"}, + CountryToIsoIndex{353615, "re"}, + CountryToIsoIndex{353640, "re"}, + CountryToIsoIndex{353665, "rw"}, + CountryToIsoIndex{353687, "ru"}, + CountryToIsoIndex{353697, "re"}, + CountryToIsoIndex{353725, "ro"}, + CountryToIsoIndex{353750, "ro"}, + CountryToIsoIndex{353775, "ro"}, + CountryToIsoIndex{353800, "lu"}, + CountryToIsoIndex{353831, "lu"}, + CountryToIsoIndex{353862, "lu"}, + CountryToIsoIndex{353890, "lu"}, + CountryToIsoIndex{353921, "lu"}, + CountryToIsoIndex{353952, "ls"}, + CountryToIsoIndex{353968, "lr"}, + CountryToIsoIndex{353996, "la"}, + CountryToIsoIndex{354009, "lv"}, + CountryToIsoIndex{354034, "lv"}, + CountryToIsoIndex{354059, "lv"}, + CountryToIsoIndex{354081, "lv"}, + CountryToIsoIndex{354106, "lr"}, + CountryToIsoIndex{354134, "lr"}, + CountryToIsoIndex{354162, "li"}, + CountryToIsoIndex{354205, "li"}, + CountryToIsoIndex{354245, "li"}, + CountryToIsoIndex{354285, "li"}, + CountryToIsoIndex{354316, "lt"}, + CountryToIsoIndex{354344, "lt"}, + CountryToIsoIndex{354372, "ly"}, + CountryToIsoIndex{354391, "ls"}, + CountryToIsoIndex{354410, "ly"}, + CountryToIsoIndex{354429, "lv"}, + CountryToIsoIndex{354451, "lb"}, + CountryToIsoIndex{354467, "lb"}, + CountryToIsoIndex{354486, "lb"}, + CountryToIsoIndex{354505, "lb"}, + CountryToIsoIndex{354524, "ls"}, + CountryToIsoIndex{354543, "vu"}, + CountryToIsoIndex{354559, "vu"}, + CountryToIsoIndex{354578, "vu"}, + CountryToIsoIndex{354600, "vu"}, + CountryToIsoIndex{354622, "wf"}, + CountryToIsoIndex{354673, "wf"}, + CountryToIsoIndex{354724, "wf"}, + CountryToIsoIndex{354775, "wf"}, + CountryToIsoIndex{354814, "ve"}, + CountryToIsoIndex{354842, "vn"}, + CountryToIsoIndex{354864, "va"}, + CountryToIsoIndex{354896, "va"}, + CountryToIsoIndex{354928, "ve"}, + CountryToIsoIndex{354959, "va"}, + CountryToIsoIndex{354978, "wf"}, + CountryToIsoIndex{355032, "vn"}, + CountryToIsoIndex{355060, "va"}, + CountryToIsoIndex{355098, "ve"}, + CountryToIsoIndex{355132, "lk"}, + CountryToIsoIndex{355158, "lk"}, + CountryToIsoIndex{355184, "lk"}, + CountryToIsoIndex{355209, "lk"}, + CountryToIsoIndex{355237, "pm"}, + CountryToIsoIndex{355290, "lc"}, + CountryToIsoIndex{355319, "ae"}, + CountryToIsoIndex{355370, "ae"}, + CountryToIsoIndex{355427, "us"}, + CountryToIsoIndex{355465, "us"}, + CountryToIsoIndex{355522, "vi"}, + CountryToIsoIndex{355601, "um"}, + CountryToIsoIndex{355683, "sa"}, + CountryToIsoIndex{355706, "sa"}, + CountryToIsoIndex{355741, "sj"}, + CountryToIsoIndex{355802, "ws"}, + CountryToIsoIndex{355815, "rs"}, + CountryToIsoIndex{355837, "cy"}, + CountryToIsoIndex{355859, "st"}, + CountryToIsoIndex{355920, "sa"}, + CountryToIsoIndex{355946, "st"}, + CountryToIsoIndex{356004, "st"}, + CountryToIsoIndex{356059, "st"}, + CountryToIsoIndex{356114, "sm"}, + CountryToIsoIndex{356146, "ws"}, + CountryToIsoIndex{356162, "cy"}, + CountryToIsoIndex{356184, "st"}, + CountryToIsoIndex{356248, "sg"}, + CountryToIsoIndex{356273, "sg"}, + CountryToIsoIndex{356298, "sx"}, + CountryToIsoIndex{356333, "sx"}, + CountryToIsoIndex{356368, "ea"}, + CountryToIsoIndex{356407, "sl"}, + CountryToIsoIndex{356436, "sl"}, + CountryToIsoIndex{356468, "sl"}, + CountryToIsoIndex{356500, "sl"}, + CountryToIsoIndex{356535, "sg"}, + CountryToIsoIndex{356563, "ea"}, + CountryToIsoIndex{356611, "sn"}, + CountryToIsoIndex{356630, "sx"}, + CountryToIsoIndex{356668, "sl"}, + CountryToIsoIndex{356700, "sy"}, + CountryToIsoIndex{356719, "sy"}, + CountryToIsoIndex{356738, "sd"}, + CountryToIsoIndex{356754, "sd"}, + CountryToIsoIndex{356770, "sr"}, + CountryToIsoIndex{356792, "sr"}, + CountryToIsoIndex{356814, "sr"}, + CountryToIsoIndex{356836, "sd"}, + CountryToIsoIndex{356852, "sd"}, + CountryToIsoIndex{356868, "sr"}, + CountryToIsoIndex{356890, "bl"}, + CountryToIsoIndex{356934, "mf"}, + CountryToIsoIndex{356969, "sm"}, + CountryToIsoIndex{356995, "sm"}, + CountryToIsoIndex{357024, "pm"}, + CountryToIsoIndex{357082, "bl"}, + CountryToIsoIndex{357123, "mf"}, + CountryToIsoIndex{357155, "kn"}, + CountryToIsoIndex{357216, "kn"}, + CountryToIsoIndex{357271, "kn"}, + CountryToIsoIndex{357326, "kn"}, + CountryToIsoIndex{357378, "pm"}, + CountryToIsoIndex{357442, "pm"}, + CountryToIsoIndex{357509, "bl"}, + CountryToIsoIndex{357553, "mf"}, + CountryToIsoIndex{357588, "lc"}, + CountryToIsoIndex{357620, "lc"}, + CountryToIsoIndex{357658, "vc"}, + CountryToIsoIndex{357741, "vc"}, + CountryToIsoIndex{357824, "vc"}, + CountryToIsoIndex{357900, "vc"}, + CountryToIsoIndex{357988, "sh"}, + CountryToIsoIndex{358020, "sh"}, + CountryToIsoIndex{358052, "cf"}, + CountryToIsoIndex{358121, "ea"}, + CountryToIsoIndex{358163, "sc"}, + CountryToIsoIndex{358185, "sh"}, + CountryToIsoIndex{358223, "sn"}, + CountryToIsoIndex{358242, "sn"}, + CountryToIsoIndex{358264, "kn"}, + CountryToIsoIndex{358316, "pm"}, + CountryToIsoIndex{358383, "bl"}, + CountryToIsoIndex{358430, "vc"}, + CountryToIsoIndex{358512, "mf"}, + CountryToIsoIndex{358550, "lc"}, + CountryToIsoIndex{358585, "sh"}, + CountryToIsoIndex{358620, "sc"}, + CountryToIsoIndex{358642, "sm"}, + CountryToIsoIndex{358668, "sm"}, + CountryToIsoIndex{358697, "sb"}, + CountryToIsoIndex{358732, "so"}, + CountryToIsoIndex{358757, "sb"}, + CountryToIsoIndex{358798, "sb"}, + CountryToIsoIndex{358845, "sb"}, + CountryToIsoIndex{358877, "sb"}, + CountryToIsoIndex{358921, "sa"}, + CountryToIsoIndex{358944, "es"}, + CountryToIsoIndex{358960, "ea"}, + CountryToIsoIndex{359008, "sk"}, + CountryToIsoIndex{359039, "si"}, + CountryToIsoIndex{359070, "sk"}, + CountryToIsoIndex{359101, "si"}, + CountryToIsoIndex{359132, "sk"}, + CountryToIsoIndex{359169, "si"}, + CountryToIsoIndex{359206, "sz"}, + CountryToIsoIndex{359240, "sz"}, + CountryToIsoIndex{359280, "sz"}, + CountryToIsoIndex{359308, "sz"}, + CountryToIsoIndex{359336, "sj"}, + CountryToIsoIndex{359400, "sj"}, + CountryToIsoIndex{359464, "sj"}, + CountryToIsoIndex{359528, "sj"}, + CountryToIsoIndex{359598, "ch"}, + CountryToIsoIndex{359638, "ch"}, + CountryToIsoIndex{359678, "se"}, + CountryToIsoIndex{359700, "ch"}, + CountryToIsoIndex{359740, "ch"}, + CountryToIsoIndex{359777, "se"}, + CountryToIsoIndex{359796, "hu"}, + CountryToIsoIndex{359812, "hu"}, + CountryToIsoIndex{359831, "hk"}, + CountryToIsoIndex{359844, "hk"}, + CountryToIsoIndex{359951, "hu"}, + CountryToIsoIndex{359973, "hn"}, + CountryToIsoIndex{359998, "hm"}, + CountryToIsoIndex{360068, "hm"}, + CountryToIsoIndex{360169, "hm"}, + CountryToIsoIndex{360258, "hm"}, + CountryToIsoIndex{360344, "hm"}, + CountryToIsoIndex{360439, "hk"}, + CountryToIsoIndex{360465, "hk"}, + CountryToIsoIndex{360569, "hk"}, + CountryToIsoIndex{360609, "hk"}, + CountryToIsoIndex{360634, "hk"}, + CountryToIsoIndex{360685, "hk"}, + CountryToIsoIndex{360786, "ht"}, + CountryToIsoIndex{360802, "ht"}, + CountryToIsoIndex{360815, "ht"}, + CountryToIsoIndex{360828, "hn"}, + CountryToIsoIndex{360850, "hn"}, + CountryToIsoIndex{360875, "hn"}, + CountryToIsoIndex{360900, "hn"}, + CountryToIsoIndex{360928, "at"}, + CountryToIsoIndex{360959, "au"}, + CountryToIsoIndex{360996, "at"}, + CountryToIsoIndex{361027, "au"}, + CountryToIsoIndex{361064, "ao"}, + CountryToIsoIndex{361095, "aq"}, + CountryToIsoIndex{361141, "ag"}, + CountryToIsoIndex{361207, "ac"}, + CountryToIsoIndex{361266, "is"}, + CountryToIsoIndex{361291, "ci"}, + CountryToIsoIndex{361323, "ci"}, + CountryToIsoIndex{361355, "im"}, + CountryToIsoIndex{361382, "im"}, + CountryToIsoIndex{361415, "is"}, + CountryToIsoIndex{361446, "qo"}, + CountryToIsoIndex{361499, "qo"}, + CountryToIsoIndex{361564, "az"}, + CountryToIsoIndex{361595, "az"}, + CountryToIsoIndex{361626, "ad"}, + CountryToIsoIndex{361648, "ad"}, + CountryToIsoIndex{361670, "af"}, + CountryToIsoIndex{361704, "as"}, + CountryToIsoIndex{361751, "as"}, + CountryToIsoIndex{361795, "ie"}, + CountryToIsoIndex{361832, "ie"}, + CountryToIsoIndex{361863, "aw"}, + CountryToIsoIndex{361879, "ar"}, + CountryToIsoIndex{361913, "am"}, + CountryToIsoIndex{361944, "dz"}, + CountryToIsoIndex{361972, "dz"}, + CountryToIsoIndex{362000, "ax"}, + CountryToIsoIndex{362047, "al"}, + CountryToIsoIndex{362075, "ax"}, + CountryToIsoIndex{362125, "aw"}, + CountryToIsoIndex{362141, "ar"}, + CountryToIsoIndex{362175, "am"}, + CountryToIsoIndex{362206, "us"}, + CountryToIsoIndex{362220, "gb"}, + CountryToIsoIndex{362234, "um"}, + CountryToIsoIndex{362309, "vi"}, + CountryToIsoIndex{362378, "gb"}, + CountryToIsoIndex{362394, "ua"}, + CountryToIsoIndex{362416, "ua"}, + CountryToIsoIndex{362441, "ez"}, + CountryToIsoIndex{362463, "ez"}, + CountryToIsoIndex{362485, "ec"}, + CountryToIsoIndex{362510, "gq"}, + CountryToIsoIndex{362560, "ec"}, + CountryToIsoIndex{362582, "il"}, + CountryToIsoIndex{362607, "eg"}, + CountryToIsoIndex{362626, "il"}, + CountryToIsoIndex{362645, "it"}, + CountryToIsoIndex{362661, "id"}, + CountryToIsoIndex{362698, "it"}, + CountryToIsoIndex{362714, "et"}, + CountryToIsoIndex{362745, "et"}, + CountryToIsoIndex{362773, "id"}, + CountryToIsoIndex{362810, "ye"}, + CountryToIsoIndex{362832, "iq"}, + CountryToIsoIndex{362845, "ir"}, + CountryToIsoIndex{362858, "er"}, + CountryToIsoIndex{362889, "ee"}, + CountryToIsoIndex{362920, "iq"}, + CountryToIsoIndex{362933, "ir"}, + CountryToIsoIndex{362946, "ug"}, + CountryToIsoIndex{362968, "ug"}, + CountryToIsoIndex{362990, "uz"}, + CountryToIsoIndex{363024, "kp"}, + CountryToIsoIndex{363062, "mp"}, + CountryToIsoIndex{363161, "kp"}, + CountryToIsoIndex{363199, "mp"}, + CountryToIsoIndex{363274, "uy"}, + CountryToIsoIndex{363299, "uy"}, + CountryToIsoIndex{363321, "ao"}, + CountryToIsoIndex{363340, "ac"}, + CountryToIsoIndex{363384, "aq"}, + CountryToIsoIndex{363421, "ag"}, + CountryToIsoIndex{363484, "ai"}, + CountryToIsoIndex{363506, "sv"}, + CountryToIsoIndex{363538, "sv"}, + CountryToIsoIndex{363567, "ee"}, + CountryToIsoIndex{363598, "ai"}, + CountryToIsoIndex{363632, "er"}, + CountryToIsoIndex{363663, "om"}, + CountryToIsoIndex{363676, "wf"}, + CountryToIsoIndex{363721, "cd"}, + CountryToIsoIndex{363743, "cg"}, + CountryToIsoIndex{363795, "cd"}, + CountryToIsoIndex{363835, "cg"}, + CountryToIsoIndex{363881, "cd"}, + CountryToIsoIndex{363902, "cd"}, + CountryToIsoIndex{363940, "xk"}, + CountryToIsoIndex{363956, "km"}, + CountryToIsoIndex{363975, "kh"}, + CountryToIsoIndex{364006, "co"}, + CountryToIsoIndex{364034, "xk"}, + CountryToIsoIndex{364050, "kz"}, + CountryToIsoIndex{364081, "kz"}, + CountryToIsoIndex{364115, "qa"}, + CountryToIsoIndex{364131, "qa"}, + CountryToIsoIndex{364147, "ca"}, + CountryToIsoIndex{364166, "cu"}, + CountryToIsoIndex{364182, "kg"}, + CountryToIsoIndex{364219, "ki"}, + CountryToIsoIndex{364244, "ki"}, + CountryToIsoIndex{364269, "kg"}, + CountryToIsoIndex{364306, "ea"}, + CountryToIsoIndex{364351, "ck"}, + CountryToIsoIndex{364392, "kw"}, + CountryToIsoIndex{364411, "cw"}, + CountryToIsoIndex{364433, "cw"}, + CountryToIsoIndex{364455, "kw"}, + CountryToIsoIndex{364474, "ky"}, + CountryToIsoIndex{364524, "ke"}, + CountryToIsoIndex{364546, "ic"}, + CountryToIsoIndex{364596, "cv"}, + CountryToIsoIndex{364625, "cv"}, + CountryToIsoIndex{364653, "cm"}, + CountryToIsoIndex{364675, "ky"}, + CountryToIsoIndex{364728, "bq"}, + CountryToIsoIndex{364793, "cc"}, + CountryToIsoIndex{364858, "cc"}, + CountryToIsoIndex{364923, "ci"}, + CountryToIsoIndex{364956, "ci"}, + CountryToIsoIndex{364991, "km"}, + CountryToIsoIndex{365013, "cr"}, + CountryToIsoIndex{365045, "cr"}, + CountryToIsoIndex{365076, "ic"}, + CountryToIsoIndex{365132, "cm"}, + CountryToIsoIndex{365160, "bq"}, + CountryToIsoIndex{365237, "cx"}, + CountryToIsoIndex{365278, "hr"}, + CountryToIsoIndex{365315, "cp"}, + CountryToIsoIndex{365371, "cp"}, + CountryToIsoIndex{365418, "hr"}, + CountryToIsoIndex{365452, "cx"}, + CountryToIsoIndex{365499, "gm"}, + CountryToIsoIndex{365527, "gy"}, + CountryToIsoIndex{365549, "gn"}, + CountryToIsoIndex{365562, "gw"}, + CountryToIsoIndex{365591, "gw"}, + CountryToIsoIndex{365620, "gy"}, + CountryToIsoIndex{365642, "gt"}, + CountryToIsoIndex{365676, "gp"}, + CountryToIsoIndex{365707, "gu"}, + CountryToIsoIndex{365726, "gg"}, + CountryToIsoIndex{365757, "gt"}, + CountryToIsoIndex{365788, "gp"}, + CountryToIsoIndex{365816, "gu"}, + CountryToIsoIndex{365832, "ga"}, + CountryToIsoIndex{365845, "gg"}, + CountryToIsoIndex{365867, "ga"}, + CountryToIsoIndex{365886, "gl"}, + CountryToIsoIndex{365923, "gr"}, + CountryToIsoIndex{365939, "gd"}, + CountryToIsoIndex{365964, "gr"}, + CountryToIsoIndex{365980, "gl"}, + CountryToIsoIndex{366011, "gd"}, + CountryToIsoIndex{366036, "gh"}, + CountryToIsoIndex{366049, "cy"}, + CountryToIsoIndex{366074, "st"}, + CountryToIsoIndex{366135, "td"}, + CountryToIsoIndex{366145, "td"}, + CountryToIsoIndex{366155, "sm"}, + CountryToIsoIndex{366184, "sj"}, + CountryToIsoIndex{366248, "ws"}, + CountryToIsoIndex{366267, "cz"}, + CountryToIsoIndex{366295, "sx"}, + CountryToIsoIndex{366333, "sl"}, + CountryToIsoIndex{366371, "cl"}, + CountryToIsoIndex{366384, "sy"}, + CountryToIsoIndex{366406, "cn"}, + CountryToIsoIndex{366416, "ch"}, + CountryToIsoIndex{366450, "se"}, + CountryToIsoIndex{366469, "sd"}, + CountryToIsoIndex{366485, "ea"}, + CountryToIsoIndex{366530, "cz"}, + CountryToIsoIndex{366574, "cz"}, + CountryToIsoIndex{366596, "sn"}, + CountryToIsoIndex{366618, "so"}, + CountryToIsoIndex{366646, "sb"}, + CountryToIsoIndex{366699, "sa"}, + CountryToIsoIndex{366734, "rs"}, + CountryToIsoIndex{366762, "sg"}, + CountryToIsoIndex{366787, "sc"}, + CountryToIsoIndex{366809, "sr"}, + CountryToIsoIndex{366831, "kn"}, + CountryToIsoIndex{366889, "pm"}, + CountryToIsoIndex{366968, "bl"}, + CountryToIsoIndex{367015, "vc"}, + CountryToIsoIndex{367103, "mf"}, + CountryToIsoIndex{367144, "lc"}, + CountryToIsoIndex{367185, "sh"}, + CountryToIsoIndex{367223, "ge"}, + CountryToIsoIndex{367248, "jo"}, + CountryToIsoIndex{367264, "jp"}, + CountryToIsoIndex{367280, "jm"}, + CountryToIsoIndex{367302, "zm"}, + CountryToIsoIndex{367330, "de"}, + CountryToIsoIndex{367355, "je"}, + CountryToIsoIndex{367374, "je"}, + CountryToIsoIndex{367393, "de"}, + CountryToIsoIndex{367418, "dj"}, + CountryToIsoIndex{367437, "dj"}, + CountryToIsoIndex{367456, "gi"}, + CountryToIsoIndex{367490, "gi"}, + CountryToIsoIndex{367521, "zw"}, + CountryToIsoIndex{367555, "zw"}, + CountryToIsoIndex{367583, "ge"}, + CountryToIsoIndex{367608, "jo"}, + CountryToIsoIndex{367627, "to"}, + CountryToIsoIndex{367640, "tw"}, + CountryToIsoIndex{367659, "tc"}, + CountryToIsoIndex{367738, "tl"}, + CountryToIsoIndex{367770, "tn"}, + CountryToIsoIndex{367798, "tv"}, + CountryToIsoIndex{367817, "tk"}, + CountryToIsoIndex{367839, "tg"}, + CountryToIsoIndex{367852, "to"}, + CountryToIsoIndex{367871, "ta"}, + CountryToIsoIndex{367922, "tt"}, + CountryToIsoIndex{367979, "dg"}, + CountryToIsoIndex{368029, "dk"}, + CountryToIsoIndex{368054, "dk"}, + CountryToIsoIndex{368079, "dm"}, + CountryToIsoIndex{368104, "do"}, + CountryToIsoIndex{368166, "dm"}, + CountryToIsoIndex{368191, "do"}, + CountryToIsoIndex{368247, "tw"}, + CountryToIsoIndex{368272, "tj"}, + CountryToIsoIndex{368306, "tz"}, + CountryToIsoIndex{368340, "tn"}, + CountryToIsoIndex{368371, "tl"}, + CountryToIsoIndex{368406, "tr"}, + CountryToIsoIndex{368425, "tm"}, + CountryToIsoIndex{368468, "tc"}, + CountryToIsoIndex{368541, "tm"}, + CountryToIsoIndex{368584, "tr"}, + CountryToIsoIndex{368603, "tt"}, + CountryToIsoIndex{368660, "ta"}, + CountryToIsoIndex{368717, "th"}, + CountryToIsoIndex{368742, "th"}, + CountryToIsoIndex{368773, "za"}, + CountryToIsoIndex{368814, "kr"}, + CountryToIsoIndex{368855, "kr"}, + CountryToIsoIndex{368896, "ss"}, + CountryToIsoIndex{368931, "gs"}, + CountryToIsoIndex{369060, "gs"}, + CountryToIsoIndex{369189, "tf"}, + CountryToIsoIndex{369249, "ss"}, + CountryToIsoIndex{369284, "dg"}, + CountryToIsoIndex{369334, "no"}, + CountryToIsoIndex{369353, "nf"}, + CountryToIsoIndex{369385, "ne"}, + CountryToIsoIndex{369404, "ne"}, + CountryToIsoIndex{369423, "ng"}, + CountryToIsoIndex{369454, "ng"}, + CountryToIsoIndex{369485, "nr"}, + CountryToIsoIndex{369501, "nr"}, + CountryToIsoIndex{369517, "na"}, + CountryToIsoIndex{369545, "nu"}, + CountryToIsoIndex{369555, "nc"}, + CountryToIsoIndex{369599, "nc"}, + CountryToIsoIndex{369649, "nz"}, + CountryToIsoIndex{369680, "nz"}, + CountryToIsoIndex{369717, "nu"}, + CountryToIsoIndex{369736, "ni"}, + CountryToIsoIndex{369770, "ni"}, + CountryToIsoIndex{369801, "gq"}, + CountryToIsoIndex{369842, "nl"}, + CountryToIsoIndex{369873, "nl"}, + CountryToIsoIndex{369913, "np"}, + CountryToIsoIndex{369929, "no"}, + CountryToIsoIndex{369942, "nf"}, + CountryToIsoIndex{369977, "pt"}, + CountryToIsoIndex{370002, "eh"}, + CountryToIsoIndex{370040, "eh"}, + CountryToIsoIndex{370087, "pk"}, + CountryToIsoIndex{370115, "pa"}, + CountryToIsoIndex{370134, "pg"}, + CountryToIsoIndex{370179, "pg"}, + CountryToIsoIndex{370221, "pw"}, + CountryToIsoIndex{370237, "py"}, + CountryToIsoIndex{370262, "pn"}, + CountryToIsoIndex{370321, "pn"}, + CountryToIsoIndex{370386, "pr"}, + CountryToIsoIndex{370427, "pr"}, + CountryToIsoIndex{370465, "tl"}, + CountryToIsoIndex{370497, "tl"}, + CountryToIsoIndex{370523, "pe"}, + CountryToIsoIndex{370536, "pe"}, + CountryToIsoIndex{370549, "pl"}, + CountryToIsoIndex{370571, "pl"}, + CountryToIsoIndex{370599, "py"}, + CountryToIsoIndex{370633, "ps"}, + CountryToIsoIndex{370704, "pt"}, + CountryToIsoIndex{370729, "fk"}, + CountryToIsoIndex{370782, "fk"}, + CountryToIsoIndex{370888, "fk"}, + CountryToIsoIndex{370947, "gf"}, + CountryToIsoIndex{370985, "tf"}, + CountryToIsoIndex{371035, "pf"}, + CountryToIsoIndex{371082, "fo"}, + CountryToIsoIndex{371126, "fj"}, + CountryToIsoIndex{371139, "fi"}, + CountryToIsoIndex{371164, "fi"}, + CountryToIsoIndex{371195, "ph"}, + CountryToIsoIndex{371220, "ph"}, + CountryToIsoIndex{371248, "ps"}, + CountryToIsoIndex{371276, "ps"}, + CountryToIsoIndex{371320, "fo"}, + CountryToIsoIndex{371370, "fr"}, + CountryToIsoIndex{371392, "fr"}, + CountryToIsoIndex{371414, "gf"}, + CountryToIsoIndex{371455, "pf"}, + CountryToIsoIndex{371508, "bw"}, + CountryToIsoIndex{371536, "bo"}, + CountryToIsoIndex{371561, "ba"}, + CountryToIsoIndex{371624, "bd"}, + CountryToIsoIndex{371649, "bb"}, + CountryToIsoIndex{371674, "bm"}, + CountryToIsoIndex{371696, "bh"}, + CountryToIsoIndex{371718, "bs"}, + CountryToIsoIndex{371768, "bs"}, + CountryToIsoIndex{371790, "bh"}, + CountryToIsoIndex{371812, "bb"}, + CountryToIsoIndex{371840, "bm"}, + CountryToIsoIndex{371865, "bv"}, + CountryToIsoIndex{371894, "bf"}, + CountryToIsoIndex{371929, "bi"}, + CountryToIsoIndex{371954, "bg"}, + CountryToIsoIndex{371985, "bg"}, + CountryToIsoIndex{372016, "bf"}, + CountryToIsoIndex{372051, "bi"}, + CountryToIsoIndex{372076, "bj"}, + CountryToIsoIndex{372092, "be"}, + CountryToIsoIndex{372120, "by"}, + CountryToIsoIndex{372142, "by"}, + CountryToIsoIndex{372164, "bz"}, + CountryToIsoIndex{372180, "bv"}, + CountryToIsoIndex{372212, "br"}, + CountryToIsoIndex{372234, "io"}, + CountryToIsoIndex{372316, "vg"}, + CountryToIsoIndex{372391, "bn"}, + CountryToIsoIndex{372413, "br"}, + CountryToIsoIndex{372435, "io"}, + CountryToIsoIndex{372523, "vg"}, + CountryToIsoIndex{372598, "bn"}, + CountryToIsoIndex{372620, "ba"}, + CountryToIsoIndex{372692, "bw"}, + CountryToIsoIndex{372720, "vu"}, + CountryToIsoIndex{372739, "vu"}, + CountryToIsoIndex{372767, "in"}, + CountryToIsoIndex{372780, "in"}, + CountryToIsoIndex{372793, "vn"}, + CountryToIsoIndex{372821, "vn"}, + CountryToIsoIndex{372849, "bt"}, + CountryToIsoIndex{372865, "va"}, + CountryToIsoIndex{372900, "ve"}, + CountryToIsoIndex{372931, "ve"}, + CountryToIsoIndex{372965, "va"}, + CountryToIsoIndex{373006, "mn"}, + CountryToIsoIndex{373037, "me"}, + CountryToIsoIndex{373071, "cf"}, + CountryToIsoIndex{373143, "cf"}, + CountryToIsoIndex{373215, "ms"}, + CountryToIsoIndex{373243, "me"}, + CountryToIsoIndex{373277, "mr"}, + CountryToIsoIndex{373308, "mu"}, + CountryToIsoIndex{373327, "md"}, + CountryToIsoIndex{373346, "us"}, + CountryToIsoIndex{373362, "fm"}, + CountryToIsoIndex{373405, "fm"}, + CountryToIsoIndex{373448, "mr"}, + CountryToIsoIndex{373485, "mo"}, + CountryToIsoIndex{373501, "mo"}, + CountryToIsoIndex{373548, "mg"}, + CountryToIsoIndex{373582, "mg"}, + CountryToIsoIndex{373616, "mm"}, + CountryToIsoIndex{373665, "yt"}, + CountryToIsoIndex{373693, "yt"}, + CountryToIsoIndex{373721, "us"}, + CountryToIsoIndex{373780, "um"}, + CountryToIsoIndex{373913, "vi"}, + CountryToIsoIndex{374031, "mq"}, + CountryToIsoIndex{374059, "mh"}, + CountryToIsoIndex{374112, "mv"}, + CountryToIsoIndex{374137, "my"}, + CountryToIsoIndex{374171, "my"}, + CountryToIsoIndex{374205, "mw"}, + CountryToIsoIndex{374224, "mw"}, + CountryToIsoIndex{374243, "ml"}, + CountryToIsoIndex{374256, "mt"}, + CountryToIsoIndex{374275, "us"}, + CountryToIsoIndex{374334, "mq"}, + CountryToIsoIndex{374362, "mh"}, + CountryToIsoIndex{374421, "eg"}, + CountryToIsoIndex{374434, "mx"}, + CountryToIsoIndex{374459, "mk"}, + CountryToIsoIndex{374493, "mk"}, + CountryToIsoIndex{374535, "mz"}, + CountryToIsoIndex{374563, "mc"}, + CountryToIsoIndex{374582, "ma"}, + CountryToIsoIndex{374604, "md"}, + CountryToIsoIndex{374626, "md"}, + CountryToIsoIndex{374660, "mo"}, + CountryToIsoIndex{374682, "mo"}, + CountryToIsoIndex{374733, "mm"}, + CountryToIsoIndex{374779, "mk"}, + CountryToIsoIndex{374819, "mk"}, + CountryToIsoIndex{374867, "ma"}, + CountryToIsoIndex{374886, "mu"}, + CountryToIsoIndex{374905, "mz"}, + CountryToIsoIndex{374930, "ms"}, + CountryToIsoIndex{374961, "ye"}, + CountryToIsoIndex{374980, "gb"}, + CountryToIsoIndex{375011, "um"}, + CountryToIsoIndex{375122, "ru"}, + CountryToIsoIndex{375144, "re"}, + CountryToIsoIndex{375172, "rw"}, + CountryToIsoIndex{375200, "ro"}, + CountryToIsoIndex{375228, "lr"}, + CountryToIsoIndex{375259, "la"}, + CountryToIsoIndex{375272, "la"}, + CountryToIsoIndex{375285, "lu"}, + CountryToIsoIndex{375322, "lu"}, + CountryToIsoIndex{375359, "lv"}, + CountryToIsoIndex{375384, "lv"}, + CountryToIsoIndex{375412, "li"}, + CountryToIsoIndex{375449, "li"}, + CountryToIsoIndex{375483, "lt"}, + CountryToIsoIndex{375520, "lt"}, + CountryToIsoIndex{375554, "ly"}, + CountryToIsoIndex{375576, "lr"}, + CountryToIsoIndex{375604, "ls"}, + CountryToIsoIndex{375623, "lb"}, + CountryToIsoIndex{375642, "ls"}, + CountryToIsoIndex{375661, "lk"}, + CountryToIsoIndex{375686, "lk"}, + CountryToIsoIndex{375714, "sk"}, + CountryToIsoIndex{375748, "si"}, + CountryToIsoIndex{375782, "ae"}, + CountryToIsoIndex{375833, "ae"}, + CountryToIsoIndex{375884, "gb"}, + CountryToIsoIndex{375922, "sb"}, + CountryToIsoIndex{375969, "cy"}, + CountryToIsoIndex{375994, "st"}, + CountryToIsoIndex{376051, "sm"}, + CountryToIsoIndex{376080, "ws"}, + CountryToIsoIndex{376102, "rs"}, + CountryToIsoIndex{376130, "sg"}, + CountryToIsoIndex{376158, "sx"}, + CountryToIsoIndex{376196, "sl"}, + CountryToIsoIndex{376231, "sy"}, + CountryToIsoIndex{376253, "sc"}, + CountryToIsoIndex{376272, "ch"}, + CountryToIsoIndex{376312, "se"}, + CountryToIsoIndex{376331, "sd"}, + CountryToIsoIndex{376347, "sr"}, + CountryToIsoIndex{376369, "sn"}, + CountryToIsoIndex{376391, "kn"}, + CountryToIsoIndex{376440, "pm"}, + CountryToIsoIndex{376507, "bl"}, + CountryToIsoIndex{376551, "vc"}, + CountryToIsoIndex{376627, "mf"}, + CountryToIsoIndex{376665, "lc"}, + CountryToIsoIndex{376703, "sh"}, + CountryToIsoIndex{376738, "so"}, + CountryToIsoIndex{376766, "sz"}, + CountryToIsoIndex{376809, "sa"}, + CountryToIsoIndex{376832, "es"}, + CountryToIsoIndex{376851, "es"}, + CountryToIsoIndex{376867, "sz"}, + CountryToIsoIndex{376901, "sj"}, + CountryToIsoIndex{376965, "sk"}, + CountryToIsoIndex{376999, "si"}, + CountryToIsoIndex{377033, "hk"}, + CountryToIsoIndex{377047, "hk"}, + CountryToIsoIndex{377092, "hk"}, + CountryToIsoIndex{377105, "hk"}, + CountryToIsoIndex{377147, "hn"}, + CountryToIsoIndex{377172, "hn"}, + CountryToIsoIndex{377197, "hu"}, + CountryToIsoIndex{377219, "ht"}, + CountryToIsoIndex{377235, "ht"}, + CountryToIsoIndex{377251, "hu"}, + CountryToIsoIndex{377276, "hm"}, + CountryToIsoIndex{377370, "hm"}, + CountryToIsoIndex{377474, "ru"}, + CountryToIsoIndex{377496, "re"}, + CountryToIsoIndex{377524, "ro"}, + CountryToIsoIndex{377552, "rw"}, + CountryToIsoIndex{377577, "wf"}, + CountryToIsoIndex{377622, "az"}, + CountryToIsoIndex{377653, "af"}, + CountryToIsoIndex{377687, "as"}, + CountryToIsoIndex{377722, "ar"}, + CountryToIsoIndex{377747, "am"}, + CountryToIsoIndex{377769, "aw"}, + CountryToIsoIndex{377785, "sv"}, + CountryToIsoIndex{377814, "dz"}, + CountryToIsoIndex{377836, "al"}, + CountryToIsoIndex{377858, "ax"}, + CountryToIsoIndex{377887, "ac"}, + CountryToIsoIndex{377922, "ai"}, + CountryToIsoIndex{377944, "ao"}, + CountryToIsoIndex{377963, "aq"}, + CountryToIsoIndex{377994, "ad"}, + CountryToIsoIndex{378013, "ie"}, + CountryToIsoIndex{378035, "im"}, + CountryToIsoIndex{378062, "ci"}, + CountryToIsoIndex{378091, "is"}, + CountryToIsoIndex{378113, "qo"}, + CountryToIsoIndex{378160, "at"}, + CountryToIsoIndex{378179, "au"}, + CountryToIsoIndex{378207, "ec"}, + CountryToIsoIndex{378229, "il"}, + CountryToIsoIndex{378251, "it"}, + CountryToIsoIndex{378264, "et"}, + CountryToIsoIndex{378283, "iq"}, + CountryToIsoIndex{378296, "er"}, + CountryToIsoIndex{378321, "ee"}, + CountryToIsoIndex{378343, "id"}, + CountryToIsoIndex{378374, "ir"}, + CountryToIsoIndex{378387, "uz"}, + CountryToIsoIndex{378421, "uy"}, + CountryToIsoIndex{378440, "kp"}, + CountryToIsoIndex{378469, "mp"}, + CountryToIsoIndex{378520, "ag"}, + CountryToIsoIndex{378574, "om"}, + CountryToIsoIndex{378587, "kz"}, + CountryToIsoIndex{378615, "qa"}, + CountryToIsoIndex{378625, "hr"}, + CountryToIsoIndex{378650, "cp"}, + CountryToIsoIndex{378688, "cd"}, + CountryToIsoIndex{378731, "cg"}, + CountryToIsoIndex{378783, "cg"}, + CountryToIsoIndex{378815, "cd"}, + CountryToIsoIndex{378872, "cu"}, + CountryToIsoIndex{378888, "kg"}, + CountryToIsoIndex{378922, "ki"}, + CountryToIsoIndex{378944, "ke"}, + CountryToIsoIndex{378960, "cw"}, + CountryToIsoIndex{378982, "kw"}, + CountryToIsoIndex{378998, "ck"}, + CountryToIsoIndex{379024, "cf"}, + CountryToIsoIndex{379081, "ic"}, + CountryToIsoIndex{379113, "cv"}, + CountryToIsoIndex{379136, "ky"}, + CountryToIsoIndex{379165, "ca"}, + CountryToIsoIndex{379184, "cm"}, + CountryToIsoIndex{379203, "bq"}, + CountryToIsoIndex{379253, "cc"}, + CountryToIsoIndex{379303, "ci"}, + CountryToIsoIndex{379332, "km"}, + CountryToIsoIndex{379354, "co"}, + CountryToIsoIndex{379376, "cr"}, + CountryToIsoIndex{379405, "xk"}, + CountryToIsoIndex{379424, "cx"}, + CountryToIsoIndex{379462, "kh"}, + CountryToIsoIndex{379484, "ga"}, + CountryToIsoIndex{379497, "gg"}, + CountryToIsoIndex{379513, "gn"}, + CountryToIsoIndex{379526, "gw"}, + CountryToIsoIndex{379555, "gt"}, + CountryToIsoIndex{379583, "gp"}, + CountryToIsoIndex{379608, "gu"}, + CountryToIsoIndex{379621, "gy"}, + CountryToIsoIndex{379640, "gm"}, + CountryToIsoIndex{379659, "gl"}, + CountryToIsoIndex{379687, "gr"}, + CountryToIsoIndex{379703, "gd"}, + CountryToIsoIndex{379728, "gh"}, + CountryToIsoIndex{379741, "td"}, + CountryToIsoIndex{379751, "cl"}, + CountryToIsoIndex{379764, "cn"}, + CountryToIsoIndex{379774, "cz"}, + CountryToIsoIndex{379790, "cz"}, + CountryToIsoIndex{379819, "jp"}, + CountryToIsoIndex{379832, "jm"}, + CountryToIsoIndex{379851, "de"}, + CountryToIsoIndex{379867, "je"}, + CountryToIsoIndex{379880, "zm"}, + CountryToIsoIndex{379902, "zw"}, + CountryToIsoIndex{379930, "dj"}, + CountryToIsoIndex{379952, "ge"}, + CountryToIsoIndex{379971, "jo"}, + CountryToIsoIndex{379987, "gi"}, + CountryToIsoIndex{380012, "tn"}, + CountryToIsoIndex{380040, "tc"}, + CountryToIsoIndex{380095, "tv"}, + CountryToIsoIndex{380114, "tk"}, + CountryToIsoIndex{380136, "tg"}, + CountryToIsoIndex{380149, "to"}, + CountryToIsoIndex{380165, "tt"}, + CountryToIsoIndex{380222, "ta"}, + CountryToIsoIndex{380270, "dg"}, + CountryToIsoIndex{380305, "dk"}, + CountryToIsoIndex{380327, "dm"}, + CountryToIsoIndex{380352, "do"}, + CountryToIsoIndex{380396, "tz"}, + CountryToIsoIndex{380421, "tw"}, + CountryToIsoIndex{380440, "tj"}, + CountryToIsoIndex{380471, "tl"}, + CountryToIsoIndex{380503, "tm"}, + CountryToIsoIndex{380540, "tr"}, + CountryToIsoIndex{380556, "th"}, + CountryToIsoIndex{380578, "kr"}, + CountryToIsoIndex{380607, "ss"}, + CountryToIsoIndex{380636, "za"}, + CountryToIsoIndex{380671, "gs"}, + CountryToIsoIndex{380767, "ne"}, + CountryToIsoIndex{380783, "ng"}, + CountryToIsoIndex{380808, "nr"}, + CountryToIsoIndex{380824, "na"}, + CountryToIsoIndex{380846, "no"}, + CountryToIsoIndex{380862, "nc"}, + CountryToIsoIndex{380900, "nz"}, + CountryToIsoIndex{380931, "ni"}, + CountryToIsoIndex{380959, "nu"}, + CountryToIsoIndex{380972, "nl"}, + CountryToIsoIndex{380997, "np"}, + CountryToIsoIndex{381013, "nf"}, + CountryToIsoIndex{381045, "pa"}, + CountryToIsoIndex{381061, "pw"}, + CountryToIsoIndex{381074, "pk"}, + CountryToIsoIndex{381099, "pg"}, + CountryToIsoIndex{381138, "pr"}, + CountryToIsoIndex{381170, "pn"}, + CountryToIsoIndex{381205, "pt"}, + CountryToIsoIndex{381227, "tl"}, + CountryToIsoIndex{381256, "pe"}, + CountryToIsoIndex{381269, "py"}, + CountryToIsoIndex{381291, "pl"}, + CountryToIsoIndex{381310, "eh"}, + CountryToIsoIndex{381342, "gf"}, + CountryToIsoIndex{381377, "tf"}, + CountryToIsoIndex{381431, "pf"}, + CountryToIsoIndex{381478, "fr"}, + CountryToIsoIndex{381497, "fk"}, + CountryToIsoIndex{381535, "fk"}, + CountryToIsoIndex{381616, "fj"}, + CountryToIsoIndex{381632, "fi"}, + CountryToIsoIndex{381654, "ph"}, + CountryToIsoIndex{381679, "ps"}, + CountryToIsoIndex{381704, "ps"}, + CountryToIsoIndex{381748, "fo"}, + CountryToIsoIndex{381774, "io"}, + CountryToIsoIndex{381850, "bm"}, + CountryToIsoIndex{381869, "bn"}, + CountryToIsoIndex{381888, "bs"}, + CountryToIsoIndex{381907, "bh"}, + CountryToIsoIndex{381926, "bb"}, + CountryToIsoIndex{381951, "bf"}, + CountryToIsoIndex{381989, "bi"}, + CountryToIsoIndex{382011, "bg"}, + CountryToIsoIndex{382036, "bj"}, + CountryToIsoIndex{382052, "by"}, + CountryToIsoIndex{382074, "bz"}, + CountryToIsoIndex{382093, "be"}, + CountryToIsoIndex{382115, "bw"}, + CountryToIsoIndex{382140, "bo"}, + CountryToIsoIndex{382162, "ba"}, + CountryToIsoIndex{382225, "bv"}, + CountryToIsoIndex{382254, "br"}, + CountryToIsoIndex{382279, "vg"}, + CountryToIsoIndex{382333, "bd"}, + CountryToIsoIndex{382361, "in"}, + CountryToIsoIndex{382374, "gq"}, + CountryToIsoIndex{382407, "bt"}, + CountryToIsoIndex{382423, "mo"}, + CountryToIsoIndex{382436, "mo"}, + CountryToIsoIndex{382475, "mw"}, + CountryToIsoIndex{382491, "my"}, + CountryToIsoIndex{382513, "fm"}, + CountryToIsoIndex{382553, "yt"}, + CountryToIsoIndex{382572, "mq"}, + CountryToIsoIndex{382597, "mh"}, + CountryToIsoIndex{382629, "mt"}, + CountryToIsoIndex{382645, "mv"}, + CountryToIsoIndex{382664, "ml"}, + CountryToIsoIndex{382677, "mm"}, + CountryToIsoIndex{382714, "eg"}, + CountryToIsoIndex{382727, "mk"}, + CountryToIsoIndex{382752, "mk"}, + CountryToIsoIndex{382861, "mx"}, + CountryToIsoIndex{382883, "mg"}, + CountryToIsoIndex{382911, "ms"}, + CountryToIsoIndex{382939, "me"}, + CountryToIsoIndex{382970, "mz"}, + CountryToIsoIndex{382998, "mc"}, + CountryToIsoIndex{383017, "mr"}, + CountryToIsoIndex{383045, "ma"}, + CountryToIsoIndex{383064, "md"}, + CountryToIsoIndex{383086, "mu"}, + CountryToIsoIndex{383108, "mn"}, + CountryToIsoIndex{383130, "ye"}, + CountryToIsoIndex{383140, "vi"}, + CountryToIsoIndex{383186, "us"}, + CountryToIsoIndex{383204, "um"}, + CountryToIsoIndex{383264, "gb"}, + CountryToIsoIndex{383279, "ua"}, + CountryToIsoIndex{383298, "ug"}, + CountryToIsoIndex{383320, "gb"}, + CountryToIsoIndex{383361, "rw"}, + CountryToIsoIndex{383380, "re"}, + CountryToIsoIndex{383405, "ru"}, + CountryToIsoIndex{383415, "ro"}, + CountryToIsoIndex{383437, "lu"}, + CountryToIsoIndex{383462, "lr"}, + CountryToIsoIndex{383487, "la"}, + CountryToIsoIndex{383500, "lv"}, + CountryToIsoIndex{383519, "li"}, + CountryToIsoIndex{383550, "lt"}, + CountryToIsoIndex{383575, "ly"}, + CountryToIsoIndex{383591, "ls"}, + CountryToIsoIndex{383610, "lb"}, + CountryToIsoIndex{383629, "vu"}, + CountryToIsoIndex{383651, "wf"}, + CountryToIsoIndex{383696, "vn"}, + CountryToIsoIndex{383718, "ve"}, + CountryToIsoIndex{383749, "va"}, + CountryToIsoIndex{383781, "es"}, + CountryToIsoIndex{383794, "rs"}, + CountryToIsoIndex{383810, "sk"}, + CountryToIsoIndex{383835, "si"}, + CountryToIsoIndex{383860, "sz"}, + CountryToIsoIndex{383891, "sj"}, + CountryToIsoIndex{383949, "ch"}, + CountryToIsoIndex{383983, "se"}, + CountryToIsoIndex{383999, "cy"}, + CountryToIsoIndex{384021, "sa"}, + CountryToIsoIndex{384047, "st"}, + CountryToIsoIndex{384105, "ws"}, + CountryToIsoIndex{384121, "sl"}, + CountryToIsoIndex{384150, "ea"}, + CountryToIsoIndex{384198, "sg"}, + CountryToIsoIndex{384223, "sx"}, + CountryToIsoIndex{384255, "sy"}, + CountryToIsoIndex{384271, "sd"}, + CountryToIsoIndex{384287, "sr"}, + CountryToIsoIndex{384309, "kn"}, + CountryToIsoIndex{384361, "pm"}, + CountryToIsoIndex{384419, "bl"}, + CountryToIsoIndex{384460, "mf"}, + CountryToIsoIndex{384492, "lc"}, + CountryToIsoIndex{384521, "vc"}, + CountryToIsoIndex{384597, "sh"}, + CountryToIsoIndex{384629, "sn"}, + CountryToIsoIndex{384648, "sc"}, + CountryToIsoIndex{384667, "sm"}, + CountryToIsoIndex{384693, "so"}, + CountryToIsoIndex{384715, "sb"}, + CountryToIsoIndex{384747, "lk"}, + CountryToIsoIndex{384773, "ae"}, + CountryToIsoIndex{384821, "us"}, + CountryToIsoIndex{384850, "hm"}, + CountryToIsoIndex{384908, "hk"}, + CountryToIsoIndex{384934, "hk"}, + CountryToIsoIndex{384986, "ht"}, + CountryToIsoIndex{384999, "hn"}, + CountryToIsoIndex{385021, "hu"}, + CountryToIsoIndex{385037, "ao"}, + CountryToIsoIndex{385056, "az"}, + CountryToIsoIndex{385081, "af"}, + CountryToIsoIndex{385115, "as"}, + CountryToIsoIndex{385150, "aw"}, + CountryToIsoIndex{385166, "dz"}, + CountryToIsoIndex{385194, "al"}, + CountryToIsoIndex{385222, "im"}, + CountryToIsoIndex{385249, "ci"}, + CountryToIsoIndex{385281, "is"}, + CountryToIsoIndex{385306, "qo"}, + CountryToIsoIndex{385353, "ie"}, + CountryToIsoIndex{385381, "ar"}, + CountryToIsoIndex{385415, "am"}, + CountryToIsoIndex{385443, "gq"}, + CountryToIsoIndex{385490, "eg"}, + CountryToIsoIndex{385509, "il"}, + CountryToIsoIndex{385528, "it"}, + CountryToIsoIndex{385544, "et"}, + CountryToIsoIndex{385569, "id"}, + CountryToIsoIndex{385603, "iq"}, + CountryToIsoIndex{385616, "ir"}, + CountryToIsoIndex{385629, "uz"}, + CountryToIsoIndex{385666, "kp"}, + CountryToIsoIndex{385701, "mp"}, + CountryToIsoIndex{385773, "uy"}, + CountryToIsoIndex{385795, "ai"}, + CountryToIsoIndex{385820, "ad"}, + CountryToIsoIndex{385839, "ag"}, + CountryToIsoIndex{385896, "ec"}, + CountryToIsoIndex{385921, "aq"}, + CountryToIsoIndex{385958, "er"}, + CountryToIsoIndex{385986, "sv"}, + CountryToIsoIndex{386021, "ac"}, + CountryToIsoIndex{386065, "ee"}, + CountryToIsoIndex{386093, "ax"}, + CountryToIsoIndex{386140, "at"}, + CountryToIsoIndex{386168, "au"}, + CountryToIsoIndex{386202, "om"}, + CountryToIsoIndex{386215, "kh"}, + CountryToIsoIndex{386240, "kz"}, + CountryToIsoIndex{386271, "qa"}, + CountryToIsoIndex{386284, "ki"}, + CountryToIsoIndex{386309, "kg"}, + CountryToIsoIndex{386349, "ck"}, + CountryToIsoIndex{386387, "kw"}, + CountryToIsoIndex{386403, "ic"}, + CountryToIsoIndex{386450, "cv"}, + CountryToIsoIndex{386476, "cm"}, + CountryToIsoIndex{386495, "ca"}, + CountryToIsoIndex{386514, "ke"}, + CountryToIsoIndex{386533, "ky"}, + CountryToIsoIndex{386577, "bq"}, + CountryToIsoIndex{386636, "cd"}, + CountryToIsoIndex{386673, "cg"}, + CountryToIsoIndex{386716, "cd"}, + CountryToIsoIndex{386756, "cg"}, + CountryToIsoIndex{386805, "cc"}, + CountryToIsoIndex{386870, "ci"}, + CountryToIsoIndex{386902, "km"}, + CountryToIsoIndex{386921, "co"}, + CountryToIsoIndex{386949, "xk"}, + CountryToIsoIndex{386968, "cr"}, + CountryToIsoIndex{387000, "cu"}, + CountryToIsoIndex{387019, "cw"}, + CountryToIsoIndex{387047, "cx"}, + CountryToIsoIndex{387091, "hr"}, + CountryToIsoIndex{387119, "cp"}, + CountryToIsoIndex{387166, "gy"}, + CountryToIsoIndex{387182, "gn"}, + CountryToIsoIndex{387195, "gw"}, + CountryToIsoIndex{387224, "ga"}, + CountryToIsoIndex{387237, "gm"}, + CountryToIsoIndex{387262, "gl"}, + CountryToIsoIndex{387293, "gr"}, + CountryToIsoIndex{387309, "gd"}, + CountryToIsoIndex{387334, "gt"}, + CountryToIsoIndex{387365, "gp"}, + CountryToIsoIndex{387393, "gu"}, + CountryToIsoIndex{387409, "gg"}, + CountryToIsoIndex{387437, "gh"}, + CountryToIsoIndex{387450, "td"}, + CountryToIsoIndex{387460, "cl"}, + CountryToIsoIndex{387473, "cn"}, + CountryToIsoIndex{387483, "cz"}, + CountryToIsoIndex{387518, "cz"}, + CountryToIsoIndex{387537, "jm"}, + CountryToIsoIndex{387553, "de"}, + CountryToIsoIndex{387572, "je"}, + CountryToIsoIndex{387588, "jp"}, + CountryToIsoIndex{387604, "dj"}, + CountryToIsoIndex{387623, "gi"}, + CountryToIsoIndex{387654, "jo"}, + CountryToIsoIndex{387673, "ge"}, + CountryToIsoIndex{387704, "zm"}, + CountryToIsoIndex{387729, "zw"}, + CountryToIsoIndex{387760, "to"}, + CountryToIsoIndex{387776, "tk"}, + CountryToIsoIndex{387798, "tg"}, + CountryToIsoIndex{387811, "tn"}, + CountryToIsoIndex{387842, "tt"}, + CountryToIsoIndex{387899, "dg"}, + CountryToIsoIndex{387934, "dk"}, + CountryToIsoIndex{387959, "do"}, + CountryToIsoIndex{388009, "dm"}, + CountryToIsoIndex{388034, "tz"}, + CountryToIsoIndex{388062, "tw"}, + CountryToIsoIndex{388081, "tj"}, + CountryToIsoIndex{388115, "tl"}, + CountryToIsoIndex{388150, "tm"}, + CountryToIsoIndex{388193, "tr"}, + CountryToIsoIndex{388212, "tc"}, + CountryToIsoIndex{388288, "tv"}, + CountryToIsoIndex{388307, "ta"}, + CountryToIsoIndex{388361, "th"}, + CountryToIsoIndex{388383, "za"}, + CountryToIsoIndex{388424, "kr"}, + CountryToIsoIndex{388462, "gs"}, + CountryToIsoIndex{388594, "ss"}, + CountryToIsoIndex{388629, "ne"}, + CountryToIsoIndex{388645, "ng"}, + CountryToIsoIndex{388673, "na"}, + CountryToIsoIndex{388698, "ni"}, + CountryToIsoIndex{388726, "nu"}, + CountryToIsoIndex{388739, "nl"}, + CountryToIsoIndex{388773, "np"}, + CountryToIsoIndex{388789, "no"}, + CountryToIsoIndex{388808, "nf"}, + CountryToIsoIndex{388855, "nr"}, + CountryToIsoIndex{388868, "nc"}, + CountryToIsoIndex{388912, "nz"}, + CountryToIsoIndex{388946, "pa"}, + CountryToIsoIndex{388962, "pw"}, + CountryToIsoIndex{388975, "eh"}, + CountryToIsoIndex{389013, "pk"}, + CountryToIsoIndex{389041, "pg"}, + CountryToIsoIndex{389083, "pn"}, + CountryToIsoIndex{389136, "tl"}, + CountryToIsoIndex{389168, "py"}, + CountryToIsoIndex{389193, "pe"}, + CountryToIsoIndex{389206, "ps"}, + CountryToIsoIndex{389237, "ps"}, + CountryToIsoIndex{389296, "pt"}, + CountryToIsoIndex{389321, "pl"}, + CountryToIsoIndex{389340, "pr"}, + CountryToIsoIndex{389381, "fi"}, + CountryToIsoIndex{389406, "ph"}, + CountryToIsoIndex{389434, "fj"}, + CountryToIsoIndex{389447, "fo"}, + CountryToIsoIndex{389488, "fk"}, + CountryToIsoIndex{389541, "fk"}, + CountryToIsoIndex{389637, "fr"}, + CountryToIsoIndex{389656, "gf"}, + CountryToIsoIndex{389691, "pf"}, + CountryToIsoIndex{389741, "tf"}, + CountryToIsoIndex{389801, "bm"}, + CountryToIsoIndex{389823, "bg"}, + CountryToIsoIndex{389851, "bs"}, + CountryToIsoIndex{389870, "bd"}, + CountryToIsoIndex{389901, "bb"}, + CountryToIsoIndex{389926, "bi"}, + CountryToIsoIndex{389948, "bf"}, + CountryToIsoIndex{389986, "bj"}, + CountryToIsoIndex{390002, "by"}, + CountryToIsoIndex{390024, "bz"}, + CountryToIsoIndex{390040, "be"}, + CountryToIsoIndex{390065, "bh"}, + CountryToIsoIndex{390084, "bw"}, + CountryToIsoIndex{390115, "bo"}, + CountryToIsoIndex{390140, "ba"}, + CountryToIsoIndex{390209, "bv"}, + CountryToIsoIndex{390247, "br"}, + CountryToIsoIndex{390269, "io"}, + CountryToIsoIndex{390345, "vg"}, + CountryToIsoIndex{390414, "bn"}, + CountryToIsoIndex{390436, "in"}, + CountryToIsoIndex{390449, "bt"}, + CountryToIsoIndex{390465, "mn"}, + CountryToIsoIndex{390490, "mo"}, + CountryToIsoIndex{390503, "mo"}, + CountryToIsoIndex{390530, "my"}, + CountryToIsoIndex{390552, "fm"}, + CountryToIsoIndex{390592, "mq"}, + CountryToIsoIndex{390620, "mh"}, + CountryToIsoIndex{390667, "mv"}, + CountryToIsoIndex{390692, "mw"}, + CountryToIsoIndex{390711, "ml"}, + CountryToIsoIndex{390724, "mt"}, + CountryToIsoIndex{390743, "mx"}, + CountryToIsoIndex{390768, "mg"}, + CountryToIsoIndex{390799, "yt"}, + CountryToIsoIndex{390815, "mk"}, + CountryToIsoIndex{390846, "mk"}, + CountryToIsoIndex{390885, "me"}, + CountryToIsoIndex{390922, "ms"}, + CountryToIsoIndex{390950, "mz"}, + CountryToIsoIndex{390978, "mc"}, + CountryToIsoIndex{390997, "mu"}, + CountryToIsoIndex{391022, "ma"}, + CountryToIsoIndex{391047, "md"}, + CountryToIsoIndex{391069, "mr"}, + CountryToIsoIndex{391100, "mm"}, + CountryToIsoIndex{391143, "ye"}, + CountryToIsoIndex{391153, "us"}, + CountryToIsoIndex{391168, "um"}, + CountryToIsoIndex{391242, "gb"}, + CountryToIsoIndex{391257, "vi"}, + CountryToIsoIndex{391317, "ua"}, + CountryToIsoIndex{391339, "ug"}, + CountryToIsoIndex{391361, "ae"}, + CountryToIsoIndex{391415, "gb"}, + CountryToIsoIndex{391459, "us"}, + CountryToIsoIndex{391506, "ez"}, + CountryToIsoIndex{391528, "rw"}, + CountryToIsoIndex{391547, "ru"}, + CountryToIsoIndex{391563, "re"}, + CountryToIsoIndex{391588, "ro"}, + CountryToIsoIndex{391613, "lu"}, + CountryToIsoIndex{391641, "lr"}, + CountryToIsoIndex{391669, "la"}, + CountryToIsoIndex{391682, "lv"}, + CountryToIsoIndex{391707, "lt"}, + CountryToIsoIndex{391735, "ly"}, + CountryToIsoIndex{391754, "lb"}, + CountryToIsoIndex{391773, "ls"}, + CountryToIsoIndex{391792, "li"}, + CountryToIsoIndex{391829, "vu"}, + CountryToIsoIndex{391851, "vn"}, + CountryToIsoIndex{391876, "va"}, + CountryToIsoIndex{391908, "ve"}, + CountryToIsoIndex{391936, "wf"}, + CountryToIsoIndex{391987, "lk"}, + CountryToIsoIndex{392012, "ws"}, + CountryToIsoIndex{392025, "rs"}, + CountryToIsoIndex{392047, "sa"}, + CountryToIsoIndex{392085, "st"}, + CountryToIsoIndex{392143, "cy"}, + CountryToIsoIndex{392165, "sg"}, + CountryToIsoIndex{392190, "sx"}, + CountryToIsoIndex{392225, "sl"}, + CountryToIsoIndex{392254, "sy"}, + CountryToIsoIndex{392273, "sd"}, + CountryToIsoIndex{392289, "sr"}, + CountryToIsoIndex{392311, "sm"}, + CountryToIsoIndex{392340, "kn"}, + CountryToIsoIndex{392395, "pm"}, + CountryToIsoIndex{392462, "bl"}, + CountryToIsoIndex{392506, "mf"}, + CountryToIsoIndex{392541, "lc"}, + CountryToIsoIndex{392573, "vc"}, + CountryToIsoIndex{392655, "sh"}, + CountryToIsoIndex{392687, "sn"}, + CountryToIsoIndex{392706, "cf"}, + CountryToIsoIndex{392778, "sc"}, + CountryToIsoIndex{392800, "so"}, + CountryToIsoIndex{392825, "sb"}, + CountryToIsoIndex{392872, "es"}, + CountryToIsoIndex{392888, "ea"}, + CountryToIsoIndex{392936, "sk"}, + CountryToIsoIndex{392967, "si"}, + CountryToIsoIndex{392998, "sz"}, + CountryToIsoIndex{393032, "sj"}, + CountryToIsoIndex{393093, "ch"}, + CountryToIsoIndex{393136, "se"}, + CountryToIsoIndex{393155, "hu"}, + CountryToIsoIndex{393174, "hm"}, + CountryToIsoIndex{393256, "ht"}, + CountryToIsoIndex{393269, "hk"}, + CountryToIsoIndex{393295, "hk"}, + CountryToIsoIndex{393334, "hn"}, + CountryToIsoIndex{393359, "ax"}, + CountryToIsoIndex{393409, "at"}, + CountryToIsoIndex{393434, "au"}, + CountryToIsoIndex{393465, "ci"}, + CountryToIsoIndex{393497, "im"}, + CountryToIsoIndex{393548, "is"}, + CountryToIsoIndex{393579, "ai"}, + CountryToIsoIndex{393610, "ao"}, + CountryToIsoIndex{393632, "az"}, + CountryToIsoIndex{393666, "aq"}, + CountryToIsoIndex{393706, "ag"}, + CountryToIsoIndex{393763, "ad"}, + CountryToIsoIndex{393785, "af"}, + CountryToIsoIndex{393822, "as"}, + CountryToIsoIndex{393866, "aw"}, + CountryToIsoIndex{393882, "ar"}, + CountryToIsoIndex{393916, "am"}, + CountryToIsoIndex{393941, "dz"}, + CountryToIsoIndex{393963, "al"}, + CountryToIsoIndex{393985, "ac"}, + CountryToIsoIndex{394032, "ie"}, + CountryToIsoIndex{394063, "gq"}, + CountryToIsoIndex{394119, "ec"}, + CountryToIsoIndex{394147, "eg"}, + CountryToIsoIndex{394166, "it"}, + CountryToIsoIndex{394182, "id"}, + CountryToIsoIndex{394213, "et"}, + CountryToIsoIndex{394235, "iq"}, + CountryToIsoIndex{394251, "ir"}, + CountryToIsoIndex{394264, "er"}, + CountryToIsoIndex{394292, "il"}, + CountryToIsoIndex{394317, "ug"}, + CountryToIsoIndex{394339, "uz"}, + CountryToIsoIndex{394373, "kp"}, + CountryToIsoIndex{394405, "mp"}, + CountryToIsoIndex{394474, "uy"}, + CountryToIsoIndex{394493, "sv"}, + CountryToIsoIndex{394531, "ee"}, + CountryToIsoIndex{394556, "om"}, + CountryToIsoIndex{394572, "cd"}, + CountryToIsoIndex{394594, "cg"}, + CountryToIsoIndex{394649, "cd"}, + CountryToIsoIndex{394687, "cg"}, + CountryToIsoIndex{394740, "qa"}, + CountryToIsoIndex{394756, "kz"}, + CountryToIsoIndex{394790, "ca"}, + CountryToIsoIndex{394809, "cm"}, + CountryToIsoIndex{394834, "kh"}, + CountryToIsoIndex{394862, "bq"}, + CountryToIsoIndex{394924, "ki"}, + CountryToIsoIndex{394949, "kg"}, + CountryToIsoIndex{394989, "kw"}, + CountryToIsoIndex{395005, "ck"}, + CountryToIsoIndex{395052, "cw"}, + CountryToIsoIndex{395074, "ke"}, + CountryToIsoIndex{395093, "ic"}, + CountryToIsoIndex{395143, "cv"}, + CountryToIsoIndex{395172, "ky"}, + CountryToIsoIndex{395231, "cc"}, + CountryToIsoIndex{395299, "ci"}, + CountryToIsoIndex{395338, "km"}, + CountryToIsoIndex{395363, "co"}, + CountryToIsoIndex{395388, "cr"}, + CountryToIsoIndex{395420, "xk"}, + CountryToIsoIndex{395439, "hr"}, + CountryToIsoIndex{395464, "cp"}, + CountryToIsoIndex{395511, "cu"}, + CountryToIsoIndex{395530, "cx"}, + CountryToIsoIndex{395577, "ga"}, + CountryToIsoIndex{395596, "gm"}, + CountryToIsoIndex{395618, "gp"}, + CountryToIsoIndex{395649, "gu"}, + CountryToIsoIndex{395665, "gy"}, + CountryToIsoIndex{395681, "gn"}, + CountryToIsoIndex{395700, "gw"}, + CountryToIsoIndex{395735, "gt"}, + CountryToIsoIndex{395760, "gg"}, + CountryToIsoIndex{395785, "gl"}, + CountryToIsoIndex{395822, "gr"}, + CountryToIsoIndex{395841, "gd"}, + CountryToIsoIndex{395866, "gh"}, + CountryToIsoIndex{395879, "td"}, + CountryToIsoIndex{395892, "cn"}, + CountryToIsoIndex{395905, "cl"}, + CountryToIsoIndex{395924, "cz"}, + CountryToIsoIndex{395977, "cz"}, + CountryToIsoIndex{395993, "ge"}, + CountryToIsoIndex{396012, "de"}, + CountryToIsoIndex{396034, "je"}, + CountryToIsoIndex{396050, "jp"}, + CountryToIsoIndex{396066, "jm"}, + CountryToIsoIndex{396088, "zm"}, + CountryToIsoIndex{396110, "dj"}, + CountryToIsoIndex{396129, "gi"}, + CountryToIsoIndex{396163, "zw"}, + CountryToIsoIndex{396188, "jo"}, + CountryToIsoIndex{396213, "tk"}, + CountryToIsoIndex{396235, "tg"}, + CountryToIsoIndex{396248, "to"}, + CountryToIsoIndex{396267, "ta"}, + CountryToIsoIndex{396330, "tn"}, + CountryToIsoIndex{396358, "dg"}, + CountryToIsoIndex{396396, "dk"}, + CountryToIsoIndex{396421, "dm"}, + CountryToIsoIndex{396446, "do"}, + CountryToIsoIndex{396517, "tw"}, + CountryToIsoIndex{396536, "tj"}, + CountryToIsoIndex{396573, "tz"}, + CountryToIsoIndex{396601, "tl"}, + CountryToIsoIndex{396639, "tv"}, + CountryToIsoIndex{396658, "tm"}, + CountryToIsoIndex{396701, "tc"}, + CountryToIsoIndex{396792, "tr"}, + CountryToIsoIndex{396811, "tt"}, + CountryToIsoIndex{396871, "th"}, + CountryToIsoIndex{396902, "za"}, + CountryToIsoIndex{396943, "kr"}, + CountryToIsoIndex{396978, "gs"}, + CountryToIsoIndex{397104, "ss"}, + CountryToIsoIndex{397139, "nf"}, + CountryToIsoIndex{397177, "no"}, + CountryToIsoIndex{397190, "ne"}, + CountryToIsoIndex{397206, "ng"}, + CountryToIsoIndex{397231, "nr"}, + CountryToIsoIndex{397247, "na"}, + CountryToIsoIndex{397269, "nu"}, + CountryToIsoIndex{397279, "ni"}, + CountryToIsoIndex{397307, "nc"}, + CountryToIsoIndex{397348, "nl"}, + CountryToIsoIndex{397382, "np"}, + CountryToIsoIndex{397398, "nz"}, + CountryToIsoIndex{397432, "pg"}, + CountryToIsoIndex{397477, "pt"}, + CountryToIsoIndex{397511, "eh"}, + CountryToIsoIndex{397549, "pk"}, + CountryToIsoIndex{397577, "pa"}, + CountryToIsoIndex{397596, "py"}, + CountryToIsoIndex{397618, "pw"}, + CountryToIsoIndex{397634, "ps"}, + CountryToIsoIndex{397671, "ps"}, + CountryToIsoIndex{397721, "pn"}, + CountryToIsoIndex{397786, "pr"}, + CountryToIsoIndex{397827, "tl"}, + CountryToIsoIndex{397865, "pe"}, + CountryToIsoIndex{397878, "pl"}, + CountryToIsoIndex{397900, "fk"}, + CountryToIsoIndex{398014, "fk"}, + CountryToIsoIndex{398079, "tf"}, + CountryToIsoIndex{398136, "fo"}, + CountryToIsoIndex{398183, "fj"}, + CountryToIsoIndex{398196, "fi"}, + CountryToIsoIndex{398227, "ph"}, + CountryToIsoIndex{398258, "fr"}, + CountryToIsoIndex{398280, "gf"}, + CountryToIsoIndex{398318, "pf"}, + CountryToIsoIndex{398365, "bm"}, + CountryToIsoIndex{398387, "bd"}, + CountryToIsoIndex{398412, "bb"}, + CountryToIsoIndex{398440, "bs"}, + CountryToIsoIndex{398465, "bh"}, + CountryToIsoIndex{398490, "bi"}, + CountryToIsoIndex{398515, "bf"}, + CountryToIsoIndex{398553, "bg"}, + CountryToIsoIndex{398578, "bj"}, + CountryToIsoIndex{398597, "be"}, + CountryToIsoIndex{398622, "by"}, + CountryToIsoIndex{398647, "bz"}, + CountryToIsoIndex{398666, "bw"}, + CountryToIsoIndex{398694, "bo"}, + CountryToIsoIndex{398713, "ba"}, + CountryToIsoIndex{398773, "bv"}, + CountryToIsoIndex{398811, "br"}, + CountryToIsoIndex{398836, "vg"}, + CountryToIsoIndex{398917, "io"}, + CountryToIsoIndex{399005, "bn"}, + CountryToIsoIndex{399027, "va"}, + CountryToIsoIndex{399068, "vu"}, + CountryToIsoIndex{399090, "in"}, + CountryToIsoIndex{399103, "vn"}, + CountryToIsoIndex{399128, "bt"}, + CountryToIsoIndex{399144, "ve"}, + CountryToIsoIndex{399172, "mn"}, + CountryToIsoIndex{399197, "me"}, + CountryToIsoIndex{399231, "ms"}, + CountryToIsoIndex{399265, "cf"}, + CountryToIsoIndex{399340, "mu"}, + CountryToIsoIndex{399356, "fm"}, + CountryToIsoIndex{399393, "mo"}, + CountryToIsoIndex{399409, "mo"}, + CountryToIsoIndex{399463, "mg"}, + CountryToIsoIndex{399497, "mq"}, + CountryToIsoIndex{399534, "mh"}, + CountryToIsoIndex{399593, "md"}, + CountryToIsoIndex{399615, "mv"}, + CountryToIsoIndex{399643, "ml"}, + CountryToIsoIndex{399656, "my"}, + CountryToIsoIndex{399678, "mt"}, + CountryToIsoIndex{399697, "mw"}, + CountryToIsoIndex{399713, "mk"}, + CountryToIsoIndex{399741, "mk"}, + CountryToIsoIndex{399793, "yt"}, + CountryToIsoIndex{399812, "mm"}, + CountryToIsoIndex{399834, "mx"}, + CountryToIsoIndex{399859, "mz"}, + CountryToIsoIndex{399893, "mc"}, + CountryToIsoIndex{399912, "ma"}, + CountryToIsoIndex{399937, "mr"}, + CountryToIsoIndex{399965, "us"}, + CountryToIsoIndex{400003, "gb"}, + CountryToIsoIndex{400034, "us"}, + CountryToIsoIndex{400071, "um"}, + CountryToIsoIndex{400173, "vi"}, + CountryToIsoIndex{400266, "rw"}, + CountryToIsoIndex{400291, "re"}, + CountryToIsoIndex{400319, "ru"}, + CountryToIsoIndex{400335, "ro"}, + CountryToIsoIndex{400357, "lu"}, + CountryToIsoIndex{400388, "lr"}, + CountryToIsoIndex{400413, "la"}, + CountryToIsoIndex{400429, "lv"}, + CountryToIsoIndex{400448, "li"}, + CountryToIsoIndex{400488, "lt"}, + CountryToIsoIndex{400513, "ly"}, + CountryToIsoIndex{400532, "lb"}, + CountryToIsoIndex{400554, "ls"}, + CountryToIsoIndex{400573, "lk"}, + CountryToIsoIndex{400601, "ae"}, + CountryToIsoIndex{400658, "rs"}, + CountryToIsoIndex{400677, "cy"}, + CountryToIsoIndex{400702, "sa"}, + CountryToIsoIndex{400734, "st"}, + CountryToIsoIndex{400795, "sm"}, + CountryToIsoIndex{400827, "ws"}, + CountryToIsoIndex{400843, "sj"}, + CountryToIsoIndex{400916, "ea"}, + CountryToIsoIndex{400961, "sl"}, + CountryToIsoIndex{400990, "sg"}, + CountryToIsoIndex{401021, "sx"}, + CountryToIsoIndex{401065, "sy"}, + CountryToIsoIndex{401081, "qo"}, + CountryToIsoIndex{401143, "sd"}, + CountryToIsoIndex{401159, "sr"}, + CountryToIsoIndex{401181, "sc"}, + CountryToIsoIndex{401203, "kn"}, + CountryToIsoIndex{401270, "pm"}, + CountryToIsoIndex{401343, "bl"}, + CountryToIsoIndex{401390, "vc"}, + CountryToIsoIndex{401479, "mf"}, + CountryToIsoIndex{401520, "lc"}, + CountryToIsoIndex{401552, "sh"}, + CountryToIsoIndex{401587, "sn"}, + CountryToIsoIndex{401612, "so"}, + CountryToIsoIndex{401634, "sb"}, + CountryToIsoIndex{401690, "es"}, + CountryToIsoIndex{401709, "sk"}, + CountryToIsoIndex{401737, "si"}, + CountryToIsoIndex{401765, "sz"}, + CountryToIsoIndex{401805, "ch"}, + CountryToIsoIndex{401845, "se"}, + CountryToIsoIndex{401870, "hk"}, + CountryToIsoIndex{401884, "hk"}, + CountryToIsoIndex{401936, "hu"}, + CountryToIsoIndex{401958, "ht"}, + CountryToIsoIndex{401974, "hm"}, + CountryToIsoIndex{402074, "hn"}, + CountryToIsoIndex{402108, "gb"}, + CountryToIsoIndex{402121, "ua"}, + CountryToIsoIndex{402149, "ez"}, + CountryToIsoIndex{402183, "ye"}, + CountryToIsoIndex{402202, "wf"}, + CountryToIsoIndex{402250, "fk"}, + CountryToIsoIndex{402306, "fk"}, + CountryToIsoIndex{402414, "fo"}, + CountryToIsoIndex{402452, "fj"}, + CountryToIsoIndex{402468, "ai"}, + CountryToIsoIndex{402496, "ao"}, + CountryToIsoIndex{402518, "az"}, + CountryToIsoIndex{402549, "aq"}, + CountryToIsoIndex{402583, "ad"}, + CountryToIsoIndex{402605, "as"}, + CountryToIsoIndex{402646, "us"}, + CountryToIsoIndex{402674, "ie"}, + CountryToIsoIndex{402705, "aw"}, + CountryToIsoIndex{402721, "ar"}, + CountryToIsoIndex{402755, "am"}, + CountryToIsoIndex{402783, "dz"}, + CountryToIsoIndex{402811, "al"}, + CountryToIsoIndex{402839, "ac"}, + CountryToIsoIndex{402880, "ag"}, + CountryToIsoIndex{402955, "af"}, + CountryToIsoIndex{402995, "ax"}, + CountryToIsoIndex{403036, "at"}, + CountryToIsoIndex{403064, "au"}, + CountryToIsoIndex{403098, "it"}, + CountryToIsoIndex{403120, "in"}, + CountryToIsoIndex{403142, "id"}, + CountryToIsoIndex{403176, "lk"}, + CountryToIsoIndex{403195, "il"}, + CountryToIsoIndex{403217, "ec"}, + CountryToIsoIndex{403242, "gq"}, + CountryToIsoIndex{403295, "iq"}, + CountryToIsoIndex{403311, "ir"}, + CountryToIsoIndex{403327, "ug"}, + CountryToIsoIndex{403349, "ua"}, + CountryToIsoIndex{403371, "uy"}, + CountryToIsoIndex{403393, "uz"}, + CountryToIsoIndex{403433, "eg"}, + CountryToIsoIndex{403455, "et"}, + CountryToIsoIndex{403495, "er"}, + CountryToIsoIndex{403523, "sv"}, + CountryToIsoIndex{403561, "ee"}, + CountryToIsoIndex{403589, "ye"}, + CountryToIsoIndex{403602, "ae"}, + CountryToIsoIndex{403662, "im"}, + CountryToIsoIndex{403698, "ci"}, + CountryToIsoIndex{403730, "is"}, + CountryToIsoIndex{403758, "om"}, + CountryToIsoIndex{403771, "qa"}, + CountryToIsoIndex{403793, "ca"}, + CountryToIsoIndex{403806, "kh"}, + CountryToIsoIndex{403834, "gy"}, + CountryToIsoIndex{403850, "bq"}, + CountryToIsoIndex{403909, "gt"}, + CountryToIsoIndex{403934, "kz"}, + CountryToIsoIndex{403962, "cg"}, + CountryToIsoIndex{404008, "cd"}, + CountryToIsoIndex{404051, "cd"}, + CountryToIsoIndex{404097, "cg"}, + CountryToIsoIndex{404155, "gh"}, + CountryToIsoIndex{404168, "gm"}, + CountryToIsoIndex{404193, "gn"}, + CountryToIsoIndex{404212, "gw"}, + CountryToIsoIndex{404256, "cu"}, + CountryToIsoIndex{404275, "gd"}, + CountryToIsoIndex{404297, "ki"}, + CountryToIsoIndex{404328, "gl"}, + CountryToIsoIndex{404365, "gr"}, + CountryToIsoIndex{404384, "kg"}, + CountryToIsoIndex{404421, "cx"}, + CountryToIsoIndex{404468, "cp"}, + CountryToIsoIndex{404518, "tl"}, + CountryToIsoIndex{404559, "ck"}, + CountryToIsoIndex{404594, "cw"}, + CountryToIsoIndex{404616, "hr"}, + CountryToIsoIndex{404641, "gu"}, + CountryToIsoIndex{404660, "kw"}, + CountryToIsoIndex{404679, "ke"}, + CountryToIsoIndex{404698, "ky"}, + CountryToIsoIndex{404745, "gg"}, + CountryToIsoIndex{404770, "ic"}, + CountryToIsoIndex{404808, "ga"}, + CountryToIsoIndex{404827, "cv"}, + CountryToIsoIndex{404859, "cm"}, + CountryToIsoIndex{404881, "xk"}, + CountryToIsoIndex{404900, "co"}, + CountryToIsoIndex{404928, "cc"}, + CountryToIsoIndex{404990, "ci"}, + CountryToIsoIndex{405028, "km"}, + CountryToIsoIndex{405050, "cr"}, + CountryToIsoIndex{405081, "gp"}, + CountryToIsoIndex{405112, "ws"}, + CountryToIsoIndex{405128, "sa"}, + CountryToIsoIndex{405166, "td"}, + CountryToIsoIndex{405179, "sm"}, + CountryToIsoIndex{405208, "sb"}, + CountryToIsoIndex{405249, "st"}, + CountryToIsoIndex{405308, "sg"}, + CountryToIsoIndex{405342, "sx"}, + CountryToIsoIndex{405386, "sl"}, + CountryToIsoIndex{405424, "ea"}, + CountryToIsoIndex{405470, "sy"}, + CountryToIsoIndex{405489, "cl"}, + CountryToIsoIndex{405502, "cn"}, + CountryToIsoIndex{405515, "sc"}, + CountryToIsoIndex{405540, "sr"}, + CountryToIsoIndex{405565, "sd"}, + CountryToIsoIndex{405584, "cz"}, + CountryToIsoIndex{405622, "cz"}, + CountryToIsoIndex{405641, "sn"}, + CountryToIsoIndex{405663, "kn"}, + CountryToIsoIndex{405728, "bl"}, + CountryToIsoIndex{405784, "pm"}, + CountryToIsoIndex{405858, "mf"}, + CountryToIsoIndex{405914, "lc"}, + CountryToIsoIndex{405958, "vc"}, + CountryToIsoIndex{406050, "sh"}, + CountryToIsoIndex{406094, "rs"}, + CountryToIsoIndex{406119, "cy"}, + CountryToIsoIndex{406141, "so"}, + CountryToIsoIndex{406166, "jp"}, + CountryToIsoIndex{406188, "jm"}, + CountryToIsoIndex{406204, "zm"}, + CountryToIsoIndex{406229, "ge"}, + CountryToIsoIndex{406254, "dj"}, + CountryToIsoIndex{406279, "gi"}, + CountryToIsoIndex{406313, "zw"}, + CountryToIsoIndex{406344, "je"}, + CountryToIsoIndex{406363, "de"}, + CountryToIsoIndex{406385, "jo"}, + CountryToIsoIndex{406410, "tc"}, + CountryToIsoIndex{406475, "dg"}, + CountryToIsoIndex{406516, "tt"}, + CountryToIsoIndex{406568, "ta"}, + CountryToIsoIndex{406622, "tn"}, + CountryToIsoIndex{406647, "dk"}, + CountryToIsoIndex{406678, "do"}, + CountryToIsoIndex{406731, "dm"}, + CountryToIsoIndex{406756, "tk"}, + CountryToIsoIndex{406775, "tg"}, + CountryToIsoIndex{406788, "to"}, + CountryToIsoIndex{406807, "tj"}, + CountryToIsoIndex{406841, "tz"}, + CountryToIsoIndex{406872, "th"}, + CountryToIsoIndex{406903, "tr"}, + CountryToIsoIndex{406928, "tm"}, + CountryToIsoIndex{406977, "tv"}, + CountryToIsoIndex{406996, "za"}, + CountryToIsoIndex{407043, "kr"}, + CountryToIsoIndex{407075, "ss"}, + CountryToIsoIndex{407113, "gs"}, + CountryToIsoIndex{407251, "tl"}, + CountryToIsoIndex{407289, "tw"}, + CountryToIsoIndex{407308, "na"}, + CountryToIsoIndex{407330, "nf"}, + CountryToIsoIndex{407380, "no"}, + CountryToIsoIndex{407399, "ni"}, + CountryToIsoIndex{407424, "nu"}, + CountryToIsoIndex{407437, "nc"}, + CountryToIsoIndex{407481, "nz"}, + CountryToIsoIndex{407518, "nl"}, + CountryToIsoIndex{407552, "np"}, + CountryToIsoIndex{407574, "ne"}, + CountryToIsoIndex{407590, "ng"}, + CountryToIsoIndex{407615, "nr"}, + CountryToIsoIndex{407628, "bd"}, + CountryToIsoIndex{407659, "pa"}, + CountryToIsoIndex{407675, "pg"}, + CountryToIsoIndex{407729, "py"}, + CountryToIsoIndex{407751, "bg"}, + CountryToIsoIndex{407779, "bs"}, + CountryToIsoIndex{407801, "bh"}, + CountryToIsoIndex{407823, "pk"}, + CountryToIsoIndex{407854, "bb"}, + CountryToIsoIndex{407882, "ps"}, + CountryToIsoIndex{407913, "ps"}, + CountryToIsoIndex{407978, "pw"}, + CountryToIsoIndex{407991, "pn"}, + CountryToIsoIndex{408050, "fi"}, + CountryToIsoIndex{408081, "pr"}, + CountryToIsoIndex{408119, "fr"}, + CountryToIsoIndex{408144, "io"}, + CountryToIsoIndex{408256, "vg"}, + CountryToIsoIndex{408331, "gf"}, + CountryToIsoIndex{408372, "tf"}, + CountryToIsoIndex{408450, "pf"}, + CountryToIsoIndex{408506, "br"}, + CountryToIsoIndex{408531, "ph"}, + CountryToIsoIndex{408568, "bi"}, + CountryToIsoIndex{408593, "bn"}, + CountryToIsoIndex{408612, "bf"}, + CountryToIsoIndex{408653, "bt"}, + CountryToIsoIndex{408672, "bj"}, + CountryToIsoIndex{408691, "pe"}, + CountryToIsoIndex{408704, "bm"}, + CountryToIsoIndex{408729, "by"}, + CountryToIsoIndex{408754, "bz"}, + CountryToIsoIndex{408773, "be"}, + CountryToIsoIndex{408801, "bo"}, + CountryToIsoIndex{408826, "bv"}, + CountryToIsoIndex{408867, "bw"}, + CountryToIsoIndex{408898, "pt"}, + CountryToIsoIndex{408938, "pl"}, + CountryToIsoIndex{408960, "ba"}, + CountryToIsoIndex{409021, "mo"}, + CountryToIsoIndex{409037, "mo"}, + CountryToIsoIndex{409088, "mn"}, + CountryToIsoIndex{409116, "mg"}, + CountryToIsoIndex{409144, "cf"}, + CountryToIsoIndex{409219, "yt"}, + CountryToIsoIndex{409235, "mw"}, + CountryToIsoIndex{409251, "my"}, + CountryToIsoIndex{409273, "mk"}, + CountryToIsoIndex{409304, "mk"}, + CountryToIsoIndex{409359, "ms"}, + CountryToIsoIndex{409396, "me"}, + CountryToIsoIndex{409433, "mq"}, + CountryToIsoIndex{409464, "mh"}, + CountryToIsoIndex{409508, "mv"}, + CountryToIsoIndex{409536, "ml"}, + CountryToIsoIndex{409549, "mt"}, + CountryToIsoIndex{409568, "md"}, + CountryToIsoIndex{409593, "mm"}, + CountryToIsoIndex{409642, "mx"}, + CountryToIsoIndex{409667, "eh"}, + CountryToIsoIndex{409702, "fm"}, + CountryToIsoIndex{409739, "mz"}, + CountryToIsoIndex{409770, "mc"}, + CountryToIsoIndex{409795, "ma"}, + CountryToIsoIndex{409820, "mu"}, + CountryToIsoIndex{409848, "mr"}, + CountryToIsoIndex{409879, "gb"}, + CountryToIsoIndex{409926, "vi"}, + CountryToIsoIndex{409988, "um"}, + CountryToIsoIndex{410062, "us"}, + CountryToIsoIndex{410078, "gb"}, + CountryToIsoIndex{410091, "ez"}, + CountryToIsoIndex{410116, "ru"}, + CountryToIsoIndex{410132, "re"}, + CountryToIsoIndex{410160, "ro"}, + CountryToIsoIndex{410185, "rw"}, + CountryToIsoIndex{410210, "lu"}, + CountryToIsoIndex{410250, "lv"}, + CountryToIsoIndex{410275, "la"}, + CountryToIsoIndex{410294, "li"}, + CountryToIsoIndex{410343, "lt"}, + CountryToIsoIndex{410374, "ly"}, + CountryToIsoIndex{410393, "ls"}, + CountryToIsoIndex{410412, "lb"}, + CountryToIsoIndex{410434, "lr"}, + CountryToIsoIndex{410459, "kp"}, + CountryToIsoIndex{410485, "mp"}, + CountryToIsoIndex{410548, "vu"}, + CountryToIsoIndex{410576, "va"}, + CountryToIsoIndex{410614, "wf"}, + CountryToIsoIndex{410677, "vn"}, + CountryToIsoIndex{410705, "ve"}, + CountryToIsoIndex{410730, "qo"}, + CountryToIsoIndex{410786, "es"}, + CountryToIsoIndex{410811, "sk"}, + CountryToIsoIndex{410842, "si"}, + CountryToIsoIndex{410873, "sj"}, + CountryToIsoIndex{410938, "sz"}, + CountryToIsoIndex{410975, "ch"}, + CountryToIsoIndex{411021, "se"}, + CountryToIsoIndex{411043, "hu"}, + CountryToIsoIndex{411065, "hk"}, + CountryToIsoIndex{411090, "hk"}, + CountryToIsoIndex{411150, "hm"}, + CountryToIsoIndex{411250, "ht"}, + CountryToIsoIndex{411269, "hn"}, + CountryToIsoIndex{411300, "ao"}, + CountryToIsoIndex{411319, "aq"}, + CountryToIsoIndex{411356, "az"}, + CountryToIsoIndex{411387, "as"}, + CountryToIsoIndex{411428, "aw"}, + CountryToIsoIndex{411444, "ar"}, + CountryToIsoIndex{411475, "dz"}, + CountryToIsoIndex{411503, "al"}, + CountryToIsoIndex{411531, "ac"}, + CountryToIsoIndex{411569, "ai"}, + CountryToIsoIndex{411600, "ag"}, + CountryToIsoIndex{411666, "ad"}, + CountryToIsoIndex{411685, "af"}, + CountryToIsoIndex{411722, "am"}, + CountryToIsoIndex{411750, "ax"}, + CountryToIsoIndex{411788, "at"}, + CountryToIsoIndex{411816, "au"}, + CountryToIsoIndex{411850, "id"}, + CountryToIsoIndex{411881, "il"}, + CountryToIsoIndex{411909, "it"}, + CountryToIsoIndex{411922, "et"}, + CountryToIsoIndex{411950, "iq"}, + CountryToIsoIndex{411966, "ir"}, + CountryToIsoIndex{411982, "gq"}, + CountryToIsoIndex{412035, "ec"}, + CountryToIsoIndex{412060, "eg"}, + CountryToIsoIndex{412082, "ua"}, + CountryToIsoIndex{412110, "ug"}, + CountryToIsoIndex{412129, "uz"}, + CountryToIsoIndex{412169, "kp"}, + CountryToIsoIndex{412204, "mp"}, + CountryToIsoIndex{412261, "uy"}, + CountryToIsoIndex{412283, "er"}, + CountryToIsoIndex{412311, "sv"}, + CountryToIsoIndex{412349, "ee"}, + CountryToIsoIndex{412377, "ie"}, + CountryToIsoIndex{412402, "im"}, + CountryToIsoIndex{412435, "ci"}, + CountryToIsoIndex{412467, "is"}, + CountryToIsoIndex{412492, "om"}, + CountryToIsoIndex{412505, "qo"}, + CountryToIsoIndex{412555, "kh"}, + CountryToIsoIndex{412580, "kz"}, + CountryToIsoIndex{412611, "bq"}, + CountryToIsoIndex{412673, "cd"}, + CountryToIsoIndex{412695, "cg"}, + CountryToIsoIndex{412741, "cd"}, + CountryToIsoIndex{412783, "cg"}, + CountryToIsoIndex{412837, "cm"}, + CountryToIsoIndex{412862, "ki"}, + CountryToIsoIndex{412887, "kg"}, + CountryToIsoIndex{412930, "ck"}, + CountryToIsoIndex{412962, "cw"}, + CountryToIsoIndex{412984, "kw"}, + CountryToIsoIndex{413003, "ca"}, + CountryToIsoIndex{413019, "ke"}, + CountryToIsoIndex{413038, "ic"}, + CountryToIsoIndex{413073, "cv"}, + CountryToIsoIndex{413105, "ky"}, + CountryToIsoIndex{413143, "km"}, + CountryToIsoIndex{413168, "co"}, + CountryToIsoIndex{413193, "xk"}, + CountryToIsoIndex{413212, "cc"}, + CountryToIsoIndex{413274, "ci"}, + CountryToIsoIndex{413310, "cr"}, + CountryToIsoIndex{413342, "cu"}, + CountryToIsoIndex{413361, "cx"}, + CountryToIsoIndex{413402, "nc"}, + CountryToIsoIndex{413455, "hr"}, + CountryToIsoIndex{413486, "cp"}, + CountryToIsoIndex{413536, "qa"}, + CountryToIsoIndex{413552, "gy"}, + CountryToIsoIndex{413568, "gg"}, + CountryToIsoIndex{413593, "gm"}, + CountryToIsoIndex{413615, "ga"}, + CountryToIsoIndex{413631, "gn"}, + CountryToIsoIndex{413650, "gw"}, + CountryToIsoIndex{413694, "gl"}, + CountryToIsoIndex{413737, "gr"}, + CountryToIsoIndex{413756, "gd"}, + CountryToIsoIndex{413778, "gt"}, + CountryToIsoIndex{413809, "gp"}, + CountryToIsoIndex{413840, "gu"}, + CountryToIsoIndex{413859, "gh"}, + CountryToIsoIndex{413869, "td"}, + CountryToIsoIndex{413882, "cl"}, + CountryToIsoIndex{413895, "cz"}, + CountryToIsoIndex{413914, "cz"}, + CountryToIsoIndex{413955, "cn"}, + CountryToIsoIndex{413968, "jp"}, + CountryToIsoIndex{413984, "jm"}, + CountryToIsoIndex{414000, "de"}, + CountryToIsoIndex{414019, "zm"}, + CountryToIsoIndex{414041, "ge"}, + CountryToIsoIndex{414066, "zw"}, + CountryToIsoIndex{414094, "dj"}, + CountryToIsoIndex{414113, "gi"}, + CountryToIsoIndex{414147, "je"}, + CountryToIsoIndex{414166, "jo"}, + CountryToIsoIndex{414191, "tr"}, + CountryToIsoIndex{414207, "tc"}, + CountryToIsoIndex{414269, "tm"}, + CountryToIsoIndex{414318, "to"}, + CountryToIsoIndex{414334, "tz"}, + CountryToIsoIndex{414362, "tl"}, + CountryToIsoIndex{414400, "tv"}, + CountryToIsoIndex{414419, "tk"}, + CountryToIsoIndex{414444, "tg"}, + CountryToIsoIndex{414457, "tn"}, + CountryToIsoIndex{414488, "tt"}, + CountryToIsoIndex{414554, "ta"}, + CountryToIsoIndex{414602, "dg"}, + CountryToIsoIndex{414646, "dk"}, + CountryToIsoIndex{414677, "do"}, + CountryToIsoIndex{414733, "dm"}, + CountryToIsoIndex{414758, "tj"}, + CountryToIsoIndex{414792, "tl"}, + CountryToIsoIndex{414830, "tw"}, + CountryToIsoIndex{414849, "th"}, + CountryToIsoIndex{414877, "za"}, + CountryToIsoIndex{414918, "kr"}, + CountryToIsoIndex{414956, "gs"}, + CountryToIsoIndex{415068, "ss"}, + CountryToIsoIndex{415106, "na"}, + CountryToIsoIndex{415128, "nf"}, + CountryToIsoIndex{415166, "no"}, + CountryToIsoIndex{415185, "ni"}, + CountryToIsoIndex{415213, "nu"}, + CountryToIsoIndex{415226, "nl"}, + CountryToIsoIndex{415263, "np"}, + CountryToIsoIndex{415282, "ne"}, + CountryToIsoIndex{415298, "ng"}, + CountryToIsoIndex{415323, "nr"}, + CountryToIsoIndex{415336, "nz"}, + CountryToIsoIndex{415370, "eh"}, + CountryToIsoIndex{415402, "pa"}, + CountryToIsoIndex{415418, "py"}, + CountryToIsoIndex{415440, "pk"}, + CountryToIsoIndex{415471, "pg"}, + CountryToIsoIndex{415522, "ps"}, + CountryToIsoIndex{415550, "ps"}, + CountryToIsoIndex{415615, "pw"}, + CountryToIsoIndex{415634, "pn"}, + CountryToIsoIndex{415693, "pe"}, + CountryToIsoIndex{415706, "pt"}, + CountryToIsoIndex{415734, "pl"}, + CountryToIsoIndex{415756, "pr"}, + CountryToIsoIndex{415794, "fk"}, + CountryToIsoIndex{415850, "fk"}, + CountryToIsoIndex{415961, "fo"}, + CountryToIsoIndex{415993, "fj"}, + CountryToIsoIndex{416006, "fi"}, + CountryToIsoIndex{416034, "ph"}, + CountryToIsoIndex{416071, "fr"}, + CountryToIsoIndex{416099, "gf"}, + CountryToIsoIndex{416140, "tf"}, + CountryToIsoIndex{416209, "pf"}, + CountryToIsoIndex{416262, "bd"}, + CountryToIsoIndex{416293, "bg"}, + CountryToIsoIndex{416321, "bs"}, + CountryToIsoIndex{416343, "bh"}, + CountryToIsoIndex{416371, "bb"}, + CountryToIsoIndex{416399, "bi"}, + CountryToIsoIndex{416421, "bf"}, + CountryToIsoIndex{416459, "bj"}, + CountryToIsoIndex{416478, "bm"}, + CountryToIsoIndex{416503, "by"}, + CountryToIsoIndex{416525, "bz"}, + CountryToIsoIndex{416544, "be"}, + CountryToIsoIndex{416569, "bo"}, + CountryToIsoIndex{416594, "bv"}, + CountryToIsoIndex{416626, "bw"}, + CountryToIsoIndex{416657, "ba"}, + CountryToIsoIndex{416735, "vg"}, + CountryToIsoIndex{416801, "io"}, + CountryToIsoIndex{416892, "bn"}, + CountryToIsoIndex{416911, "br"}, + CountryToIsoIndex{416936, "in"}, + CountryToIsoIndex{416961, "bt"}, + CountryToIsoIndex{416980, "mn"}, + CountryToIsoIndex{417005, "mo"}, + CountryToIsoIndex{417021, "mo"}, + CountryToIsoIndex{417072, "mg"}, + CountryToIsoIndex{417100, "mm"}, + CountryToIsoIndex{417143, "my"}, + CountryToIsoIndex{417165, "ms"}, + CountryToIsoIndex{417199, "yt"}, + CountryToIsoIndex{417218, "mu"}, + CountryToIsoIndex{417240, "mq"}, + CountryToIsoIndex{417271, "mh"}, + CountryToIsoIndex{417312, "mw"}, + CountryToIsoIndex{417331, "ml"}, + CountryToIsoIndex{417344, "mt"}, + CountryToIsoIndex{417363, "mv"}, + CountryToIsoIndex{417394, "mx"}, + CountryToIsoIndex{417419, "mk"}, + CountryToIsoIndex{417450, "mk"}, + CountryToIsoIndex{417489, "fm"}, + CountryToIsoIndex{417526, "mz"}, + CountryToIsoIndex{417554, "mc"}, + CountryToIsoIndex{417573, "ma"}, + CountryToIsoIndex{417592, "me"}, + CountryToIsoIndex{417626, "md"}, + CountryToIsoIndex{417651, "mr"}, + CountryToIsoIndex{417682, "us"}, + CountryToIsoIndex{417700, "vi"}, + CountryToIsoIndex{417759, "gb"}, + CountryToIsoIndex{417774, "ae"}, + CountryToIsoIndex{417840, "gb"}, + CountryToIsoIndex{417893, "us"}, + CountryToIsoIndex{417943, "ez"}, + CountryToIsoIndex{417968, "ye"}, + CountryToIsoIndex{417987, "ru"}, + CountryToIsoIndex{418003, "re"}, + CountryToIsoIndex{418031, "rw"}, + CountryToIsoIndex{418053, "ro"}, + CountryToIsoIndex{418078, "lu"}, + CountryToIsoIndex{418109, "lv"}, + CountryToIsoIndex{418134, "la"}, + CountryToIsoIndex{418153, "li"}, + CountryToIsoIndex{418205, "lt"}, + CountryToIsoIndex{418236, "ly"}, + CountryToIsoIndex{418255, "lb"}, + CountryToIsoIndex{418277, "ls"}, + CountryToIsoIndex{418296, "lr"}, + CountryToIsoIndex{418321, "vu"}, + CountryToIsoIndex{418337, "va"}, + CountryToIsoIndex{418372, "wf"}, + CountryToIsoIndex{418424, "vn"}, + CountryToIsoIndex{418449, "ve"}, + CountryToIsoIndex{418474, "sm"}, + CountryToIsoIndex{418506, "lk"}, + CountryToIsoIndex{418528, "um"}, + CountryToIsoIndex{418630, "ws"}, + CountryToIsoIndex{418646, "st"}, + CountryToIsoIndex{418704, "sg"}, + CountryToIsoIndex{418729, "sx"}, + CountryToIsoIndex{418770, "sl"}, + CountryToIsoIndex{418814, "sy"}, + CountryToIsoIndex{418833, "sc"}, + CountryToIsoIndex{418858, "sd"}, + CountryToIsoIndex{418877, "sr"}, + CountryToIsoIndex{418902, "cf"}, + CountryToIsoIndex{418980, "sn"}, + CountryToIsoIndex{419002, "kn"}, + CountryToIsoIndex{419078, "pm"}, + CountryToIsoIndex{419160, "bl"}, + CountryToIsoIndex{419210, "mf"}, + CountryToIsoIndex{419257, "lc"}, + CountryToIsoIndex{419298, "vc"}, + CountryToIsoIndex{419384, "sh"}, + CountryToIsoIndex{419425, "rs"}, + CountryToIsoIndex{419450, "cy"}, + CountryToIsoIndex{419472, "so"}, + CountryToIsoIndex{419497, "sb"}, + CountryToIsoIndex{419535, "sa"}, + CountryToIsoIndex{419570, "es"}, + CountryToIsoIndex{419595, "ea"}, + CountryToIsoIndex{419641, "sk"}, + CountryToIsoIndex{419672, "si"}, + CountryToIsoIndex{419703, "sz"}, + CountryToIsoIndex{419743, "sj"}, + CountryToIsoIndex{419817, "ch"}, + CountryToIsoIndex{419860, "se"}, + CountryToIsoIndex{419882, "hu"}, + CountryToIsoIndex{419901, "hk"}, + CountryToIsoIndex{419926, "hk"}, + CountryToIsoIndex{419986, "hm"}, + CountryToIsoIndex{420064, "ht"}, + CountryToIsoIndex{420077, "hn"}, + CountryToIsoIndex{420105, "ao"}, + CountryToIsoIndex{420124, "aq"}, + CountryToIsoIndex{420155, "ad"}, + CountryToIsoIndex{420174, "az"}, + CountryToIsoIndex{420205, "af"}, + CountryToIsoIndex{420239, "as"}, + CountryToIsoIndex{420280, "us"}, + CountryToIsoIndex{420346, "aw"}, + CountryToIsoIndex{420362, "ar"}, + CountryToIsoIndex{420393, "dz"}, + CountryToIsoIndex{420418, "al"}, + CountryToIsoIndex{420446, "ac"}, + CountryToIsoIndex{420487, "ai"}, + CountryToIsoIndex{420518, "ag"}, + CountryToIsoIndex{420581, "am"}, + CountryToIsoIndex{420606, "ax"}, + CountryToIsoIndex{420656, "at"}, + CountryToIsoIndex{420684, "au"}, + CountryToIsoIndex{420718, "id"}, + CountryToIsoIndex{420749, "it"}, + CountryToIsoIndex{420762, "et"}, + CountryToIsoIndex{420790, "iq"}, + CountryToIsoIndex{420806, "ir"}, + CountryToIsoIndex{420822, "il"}, + CountryToIsoIndex{420844, "gq"}, + CountryToIsoIndex{420894, "ec"}, + CountryToIsoIndex{420922, "eg"}, + CountryToIsoIndex{420944, "ua"}, + CountryToIsoIndex{420966, "ug"}, + CountryToIsoIndex{420985, "uz"}, + CountryToIsoIndex{421025, "kp"}, + CountryToIsoIndex{421060, "mp"}, + CountryToIsoIndex{421123, "uy"}, + CountryToIsoIndex{421145, "er"}, + CountryToIsoIndex{421173, "sv"}, + CountryToIsoIndex{421214, "ee"}, + CountryToIsoIndex{421242, "ie"}, + CountryToIsoIndex{421267, "im"}, + CountryToIsoIndex{421306, "ci"}, + CountryToIsoIndex{421338, "is"}, + CountryToIsoIndex{421372, "om"}, + CountryToIsoIndex{421385, "qo"}, + CountryToIsoIndex{421445, "kz"}, + CountryToIsoIndex{421479, "cd"}, + CountryToIsoIndex{421501, "cg"}, + CountryToIsoIndex{421541, "cd"}, + CountryToIsoIndex{421584, "cg"}, + CountryToIsoIndex{421639, "kh"}, + CountryToIsoIndex{421667, "ki"}, + CountryToIsoIndex{421692, "kg"}, + CountryToIsoIndex{421729, "ke"}, + CountryToIsoIndex{421748, "ck"}, + CountryToIsoIndex{421786, "cw"}, + CountryToIsoIndex{421811, "kw"}, + CountryToIsoIndex{421830, "ca"}, + CountryToIsoIndex{421846, "bq"}, + CountryToIsoIndex{421920, "cv"}, + CountryToIsoIndex{421949, "ky"}, + CountryToIsoIndex{421990, "cc"}, + CountryToIsoIndex{422058, "km"}, + CountryToIsoIndex{422083, "co"}, + CountryToIsoIndex{422108, "xk"}, + CountryToIsoIndex{422127, "cr"}, + CountryToIsoIndex{422159, "ci"}, + CountryToIsoIndex{422197, "ic"}, + CountryToIsoIndex{422244, "cm"}, + CountryToIsoIndex{422272, "cu"}, + CountryToIsoIndex{422291, "cx"}, + CountryToIsoIndex{422335, "hr"}, + CountryToIsoIndex{422366, "cp"}, + CountryToIsoIndex{422425, "qa"}, + CountryToIsoIndex{422441, "gy"}, + CountryToIsoIndex{422457, "gn"}, + CountryToIsoIndex{422470, "gw"}, + CountryToIsoIndex{422508, "gi"}, + CountryToIsoIndex{422542, "gp"}, + CountryToIsoIndex{422567, "gg"}, + CountryToIsoIndex{422595, "gu"}, + CountryToIsoIndex{422614, "ga"}, + CountryToIsoIndex{422633, "gm"}, + CountryToIsoIndex{422661, "gl"}, + CountryToIsoIndex{422704, "gr"}, + CountryToIsoIndex{422723, "gd"}, + CountryToIsoIndex{422748, "gt"}, + CountryToIsoIndex{422779, "gh"}, + CountryToIsoIndex{422792, "td"}, + CountryToIsoIndex{422805, "cl"}, + CountryToIsoIndex{422818, "cn"}, + CountryToIsoIndex{422831, "jp"}, + CountryToIsoIndex{422847, "jm"}, + CountryToIsoIndex{422863, "de"}, + CountryToIsoIndex{422882, "zm"}, + CountryToIsoIndex{422901, "ge"}, + CountryToIsoIndex{422926, "zw"}, + CountryToIsoIndex{422954, "dj"}, + CountryToIsoIndex{422973, "cz"}, + CountryToIsoIndex{423008, "je"}, + CountryToIsoIndex{423027, "jo"}, + CountryToIsoIndex{423052, "cz"}, + CountryToIsoIndex{423071, "tr"}, + CountryToIsoIndex{423087, "tc"}, + CountryToIsoIndex{423169, "tn"}, + CountryToIsoIndex{423191, "tv"}, + CountryToIsoIndex{423210, "to"}, + CountryToIsoIndex{423226, "tk"}, + CountryToIsoIndex{423251, "tg"}, + CountryToIsoIndex{423264, "tt"}, + CountryToIsoIndex{423330, "ta"}, + CountryToIsoIndex{423384, "dk"}, + CountryToIsoIndex{423415, "dg"}, + CountryToIsoIndex{423450, "dm"}, + CountryToIsoIndex{423475, "do"}, + CountryToIsoIndex{423531, "tj"}, + CountryToIsoIndex{423565, "tz"}, + CountryToIsoIndex{423593, "tm"}, + CountryToIsoIndex{423639, "tw"}, + CountryToIsoIndex{423658, "th"}, + CountryToIsoIndex{423686, "za"}, + CountryToIsoIndex{423727, "kr"}, + CountryToIsoIndex{423765, "gs"}, + CountryToIsoIndex{423906, "ss"}, + CountryToIsoIndex{423944, "na"}, + CountryToIsoIndex{423966, "nf"}, + CountryToIsoIndex{424007, "no"}, + CountryToIsoIndex{424026, "ni"}, + CountryToIsoIndex{424057, "nu"}, + CountryToIsoIndex{424070, "nl"}, + CountryToIsoIndex{424116, "np"}, + CountryToIsoIndex{424132, "ne"}, + CountryToIsoIndex{424148, "ng"}, + CountryToIsoIndex{424173, "nr"}, + CountryToIsoIndex{424186, "nc"}, + CountryToIsoIndex{424236, "nz"}, + CountryToIsoIndex{424270, "pa"}, + CountryToIsoIndex{424286, "pg"}, + CountryToIsoIndex{424333, "py"}, + CountryToIsoIndex{424355, "pw"}, + CountryToIsoIndex{424371, "eh"}, + CountryToIsoIndex{424406, "pk"}, + CountryToIsoIndex{424434, "pn"}, + CountryToIsoIndex{424493, "tl"}, + CountryToIsoIndex{424528, "tl"}, + CountryToIsoIndex{424563, "pe"}, + CountryToIsoIndex{424576, "pt"}, + CountryToIsoIndex{424604, "pl"}, + CountryToIsoIndex{424632, "ps"}, + CountryToIsoIndex{424669, "ps"}, + CountryToIsoIndex{424743, "pr"}, + CountryToIsoIndex{424781, "fo"}, + CountryToIsoIndex{424816, "fk"}, + CountryToIsoIndex{424878, "fj"}, + CountryToIsoIndex{424891, "fi"}, + CountryToIsoIndex{424928, "ph"}, + CountryToIsoIndex{424959, "fr"}, + CountryToIsoIndex{424984, "gf"}, + CountryToIsoIndex{425022, "tf"}, + CountryToIsoIndex{425091, "pf"}, + CountryToIsoIndex{425144, "bm"}, + CountryToIsoIndex{425166, "bg"}, + CountryToIsoIndex{425194, "bs"}, + CountryToIsoIndex{425216, "bh"}, + CountryToIsoIndex{425238, "bd"}, + CountryToIsoIndex{425269, "bb"}, + CountryToIsoIndex{425297, "bi"}, + CountryToIsoIndex{425319, "bf"}, + CountryToIsoIndex{425357, "bj"}, + CountryToIsoIndex{425376, "by"}, + CountryToIsoIndex{425398, "bz"}, + CountryToIsoIndex{425417, "be"}, + CountryToIsoIndex{425445, "bo"}, + CountryToIsoIndex{425470, "bw"}, + CountryToIsoIndex{425504, "bv"}, + CountryToIsoIndex{425539, "ba"}, + CountryToIsoIndex{425614, "gb"}, + CountryToIsoIndex{425664, "vg"}, + CountryToIsoIndex{425736, "io"}, + CountryToIsoIndex{425821, "bn"}, + CountryToIsoIndex{425840, "br"}, + CountryToIsoIndex{425865, "in"}, + CountryToIsoIndex{425878, "bt"}, + CountryToIsoIndex{425897, "mn"}, + CountryToIsoIndex{425922, "mo"}, + CountryToIsoIndex{425938, "mo"}, + CountryToIsoIndex{425971, "mg"}, + CountryToIsoIndex{425999, "cf"}, + CountryToIsoIndex{426056, "mm"}, + CountryToIsoIndex{426099, "yt"}, + CountryToIsoIndex{426121, "mw"}, + CountryToIsoIndex{426137, "my"}, + CountryToIsoIndex{426159, "ms"}, + CountryToIsoIndex{426193, "mr"}, + CountryToIsoIndex{426224, "mu"}, + CountryToIsoIndex{426246, "mq"}, + CountryToIsoIndex{426277, "mh"}, + CountryToIsoIndex{426324, "ml"}, + CountryToIsoIndex{426337, "mt"}, + CountryToIsoIndex{426356, "mv"}, + CountryToIsoIndex{426387, "mx"}, + CountryToIsoIndex{426412, "fm"}, + CountryToIsoIndex{426449, "me"}, + CountryToIsoIndex{426483, "mz"}, + CountryToIsoIndex{426511, "mc"}, + CountryToIsoIndex{426530, "ma"}, + CountryToIsoIndex{426555, "md"}, + CountryToIsoIndex{426580, "mk"}, + CountryToIsoIndex{426617, "mk"}, + CountryToIsoIndex{426662, "us"}, + CountryToIsoIndex{426679, "vi"}, + CountryToIsoIndex{426744, "gb"}, + CountryToIsoIndex{426759, "um"}, + CountryToIsoIndex{426837, "ae"}, + CountryToIsoIndex{426903, "ez"}, + CountryToIsoIndex{426931, "ye"}, + CountryToIsoIndex{426947, "ru"}, + CountryToIsoIndex{426963, "re"}, + CountryToIsoIndex{426991, "rw"}, + CountryToIsoIndex{427013, "ro"}, + CountryToIsoIndex{427038, "lu"}, + CountryToIsoIndex{427072, "lv"}, + CountryToIsoIndex{427097, "la"}, + CountryToIsoIndex{427116, "li"}, + CountryToIsoIndex{427156, "lt"}, + CountryToIsoIndex{427187, "ly"}, + CountryToIsoIndex{427206, "lr"}, + CountryToIsoIndex{427231, "lb"}, + CountryToIsoIndex{427253, "ls"}, + CountryToIsoIndex{427272, "vu"}, + CountryToIsoIndex{427288, "wf"}, + CountryToIsoIndex{427342, "vn"}, + CountryToIsoIndex{427373, "ve"}, + CountryToIsoIndex{427404, "va"}, + CountryToIsoIndex{427445, "lk"}, + CountryToIsoIndex{427470, "ws"}, + CountryToIsoIndex{427486, "sb"}, + CountryToIsoIndex{427533, "st"}, + CountryToIsoIndex{427606, "sg"}, + CountryToIsoIndex{427634, "sx"}, + CountryToIsoIndex{427675, "sl"}, + CountryToIsoIndex{427719, "sy"}, + CountryToIsoIndex{427738, "sc"}, + CountryToIsoIndex{427769, "sd"}, + CountryToIsoIndex{427788, "sr"}, + CountryToIsoIndex{427813, "sn"}, + CountryToIsoIndex{427835, "ea"}, + CountryToIsoIndex{427892, "rs"}, + CountryToIsoIndex{427917, "kn"}, + CountryToIsoIndex{427987, "pm"}, + CountryToIsoIndex{428063, "bl"}, + CountryToIsoIndex{428110, "mf"}, + CountryToIsoIndex{428151, "lc"}, + CountryToIsoIndex{428186, "sh"}, + CountryToIsoIndex{428221, "vc"}, + CountryToIsoIndex{428319, "cy"}, + CountryToIsoIndex{428341, "so"}, + CountryToIsoIndex{428366, "sa"}, + CountryToIsoIndex{428401, "es"}, + CountryToIsoIndex{428420, "sm"}, + CountryToIsoIndex{428458, "sk"}, + CountryToIsoIndex{428489, "si"}, + CountryToIsoIndex{428520, "sz"}, + CountryToIsoIndex{428560, "sj"}, + CountryToIsoIndex{428642, "ch"}, + CountryToIsoIndex{428691, "se"}, + CountryToIsoIndex{428713, "hu"}, + CountryToIsoIndex{428732, "hm"}, + CountryToIsoIndex{428835, "hk"}, + CountryToIsoIndex{428867, "hk"}, + CountryToIsoIndex{428916, "ht"}, + CountryToIsoIndex{428929, "hn"}, + CountryToIsoIndex{428957, "ao"}, + CountryToIsoIndex{428973, "aq"}, + CountryToIsoIndex{429013, "af"}, + CountryToIsoIndex{429053, "us"}, + CountryToIsoIndex{429112, "as"}, + CountryToIsoIndex{429153, "ie"}, + CountryToIsoIndex{429175, "aw"}, + CountryToIsoIndex{429188, "ax"}, + CountryToIsoIndex{429229, "ac"}, + CountryToIsoIndex{429264, "az"}, + CountryToIsoIndex{429289, "ad"}, + CountryToIsoIndex{429305, "ar"}, + CountryToIsoIndex{429330, "am"}, + CountryToIsoIndex{429352, "al"}, + CountryToIsoIndex{429374, "dz"}, + CountryToIsoIndex{429396, "ai"}, + CountryToIsoIndex{429424, "ag"}, + CountryToIsoIndex{429480, "ec"}, + CountryToIsoIndex{429502, "gq"}, + CountryToIsoIndex{429555, "id"}, + CountryToIsoIndex{429586, "in"}, + CountryToIsoIndex{429605, "iq"}, + CountryToIsoIndex{429621, "ir"}, + CountryToIsoIndex{429634, "it"}, + CountryToIsoIndex{429653, "il"}, + CountryToIsoIndex{429678, "eg"}, + CountryToIsoIndex{429700, "ua"}, + CountryToIsoIndex{429728, "ug"}, + CountryToIsoIndex{429747, "mp"}, + CountryToIsoIndex{429810, "kp"}, + CountryToIsoIndex{429841, "uy"}, + CountryToIsoIndex{429863, "uz"}, + CountryToIsoIndex{429909, "et"}, + CountryToIsoIndex{429934, "er"}, + CountryToIsoIndex{429959, "ee"}, + CountryToIsoIndex{429993, "sv"}, + CountryToIsoIndex{430022, "ci"}, + CountryToIsoIndex{430060, "is"}, + CountryToIsoIndex{430091, "im"}, + CountryToIsoIndex{430118, "om"}, + CountryToIsoIndex{430131, "at"}, + CountryToIsoIndex{430156, "au"}, + CountryToIsoIndex{430190, "kh"}, + CountryToIsoIndex{430212, "bq"}, + CountryToIsoIndex{430268, "kz"}, + CountryToIsoIndex{430299, "ca"}, + CountryToIsoIndex{430312, "ic"}, + CountryToIsoIndex{430353, "cm"}, + CountryToIsoIndex{430372, "ki"}, + CountryToIsoIndex{430403, "tl"}, + CountryToIsoIndex{430441, "kg"}, + CountryToIsoIndex{430472, "ck"}, + CountryToIsoIndex{430516, "cw"}, + CountryToIsoIndex{430541, "kw"}, + CountryToIsoIndex{430566, "ke"}, + CountryToIsoIndex{430582, "cv"}, + CountryToIsoIndex{430617, "ky"}, + CountryToIsoIndex{430664, "co"}, + CountryToIsoIndex{430686, "xk"}, + CountryToIsoIndex{430705, "cd"}, + CountryToIsoIndex{430727, "cg"}, + CountryToIsoIndex{430785, "cd"}, + CountryToIsoIndex{430822, "cg"}, + CountryToIsoIndex{430874, "cc"}, + CountryToIsoIndex{430945, "ci"}, + CountryToIsoIndex{430981, "km"}, + CountryToIsoIndex{431006, "cr"}, + CountryToIsoIndex{431043, "cu"}, + CountryToIsoIndex{431059, "cx"}, + CountryToIsoIndex{431106, "hr"}, + CountryToIsoIndex{431134, "cp"}, + CountryToIsoIndex{431193, "qa"}, + CountryToIsoIndex{431209, "gy"}, + CountryToIsoIndex{431222, "gm"}, + CountryToIsoIndex{431241, "ga"}, + CountryToIsoIndex{431254, "gn"}, + CountryToIsoIndex{431270, "gw"}, + CountryToIsoIndex{431299, "gg"}, + CountryToIsoIndex{431315, "gd"}, + CountryToIsoIndex{431334, "gr"}, + CountryToIsoIndex{431353, "gl"}, + CountryToIsoIndex{431384, "gu"}, + CountryToIsoIndex{431400, "gt"}, + CountryToIsoIndex{431434, "gp"}, + CountryToIsoIndex{431468, "gh"}, + CountryToIsoIndex{431478, "cl"}, + CountryToIsoIndex{431491, "cz"}, + CountryToIsoIndex{431513, "cz"}, + CountryToIsoIndex{431572, "cn"}, + CountryToIsoIndex{431582, "td"}, + CountryToIsoIndex{431595, "jp"}, + CountryToIsoIndex{431614, "jm"}, + CountryToIsoIndex{431633, "gi"}, + CountryToIsoIndex{431667, "je"}, + CountryToIsoIndex{431686, "ge"}, + CountryToIsoIndex{431711, "jo"}, + CountryToIsoIndex{431736, "de"}, + CountryToIsoIndex{431758, "tz"}, + CountryToIsoIndex{431783, "tn"}, + CountryToIsoIndex{431805, "tv"}, + CountryToIsoIndex{431824, "to"}, + CountryToIsoIndex{431837, "tk"}, + CountryToIsoIndex{431862, "tg"}, + CountryToIsoIndex{431875, "ta"}, + CountryToIsoIndex{431917, "tt"}, + CountryToIsoIndex{431979, "tc"}, + CountryToIsoIndex{432069, "dg"}, + CountryToIsoIndex{432104, "dk"}, + CountryToIsoIndex{432135, "dm"}, + CountryToIsoIndex{432163, "do"}, + CountryToIsoIndex{432234, "tj"}, + CountryToIsoIndex{432274, "th"}, + CountryToIsoIndex{432305, "tw"}, + CountryToIsoIndex{432330, "tl"}, + CountryToIsoIndex{432371, "tr"}, + CountryToIsoIndex{432393, "tm"}, + CountryToIsoIndex{432442, "gs"}, + CountryToIsoIndex{432582, "ss"}, + CountryToIsoIndex{432617, "kr"}, + CountryToIsoIndex{432651, "za"}, + CountryToIsoIndex{432694, "dj"}, + CountryToIsoIndex{432725, "qo"}, + CountryToIsoIndex{432756, "na"}, + CountryToIsoIndex{432775, "ni"}, + CountryToIsoIndex{432806, "nl"}, + CountryToIsoIndex{432843, "np"}, + CountryToIsoIndex{432865, "ng"}, + CountryToIsoIndex{432887, "ne"}, + CountryToIsoIndex{432900, "nf"}, + CountryToIsoIndex{432941, "no"}, + CountryToIsoIndex{432957, "nc"}, + CountryToIsoIndex{432998, "nu"}, + CountryToIsoIndex{433017, "nz"}, + CountryToIsoIndex{433051, "nr"}, + CountryToIsoIndex{433064, "pa"}, + CountryToIsoIndex{433077, "py"}, + CountryToIsoIndex{433099, "ps"}, + CountryToIsoIndex{433124, "pw"}, + CountryToIsoIndex{433140, "eh"}, + CountryToIsoIndex{433172, "pk"}, + CountryToIsoIndex{433206, "pg"}, + CountryToIsoIndex{433257, "ps"}, + CountryToIsoIndex{433316, "pn"}, + CountryToIsoIndex{433381, "pe"}, + CountryToIsoIndex{433394, "pl"}, + CountryToIsoIndex{433416, "pt"}, + CountryToIsoIndex{433444, "pr"}, + CountryToIsoIndex{433485, "fo"}, + CountryToIsoIndex{433520, "fk"}, + CountryToIsoIndex{433585, "fj"}, + CountryToIsoIndex{433598, "ph"}, + CountryToIsoIndex{433632, "fi"}, + CountryToIsoIndex{433657, "fk"}, + CountryToIsoIndex{433765, "gf"}, + CountryToIsoIndex{433800, "tf"}, + CountryToIsoIndex{433869, "pf"}, + CountryToIsoIndex{433919, "fr"}, + CountryToIsoIndex{433941, "bd"}, + CountryToIsoIndex{433972, "bi"}, + CountryToIsoIndex{433994, "bs"}, + CountryToIsoIndex{434016, "bh"}, + CountryToIsoIndex{434035, "bb"}, + CountryToIsoIndex{434060, "bj"}, + CountryToIsoIndex{434076, "by"}, + CountryToIsoIndex{434098, "bz"}, + CountryToIsoIndex{434117, "be"}, + CountryToIsoIndex{434139, "bo"}, + CountryToIsoIndex{434161, "bw"}, + CountryToIsoIndex{434189, "ba"}, + CountryToIsoIndex{434257, "br"}, + CountryToIsoIndex{434276, "io"}, + CountryToIsoIndex{434379, "vg"}, + CountryToIsoIndex{434454, "bn"}, + CountryToIsoIndex{434473, "bv"}, + CountryToIsoIndex{434517, "bf"}, + CountryToIsoIndex{434552, "bm"}, + CountryToIsoIndex{434568, "bg"}, + CountryToIsoIndex{434590, "bt"}, + CountryToIsoIndex{434612, "mn"}, + CountryToIsoIndex{434634, "mo"}, + CountryToIsoIndex{434656, "mo"}, + CountryToIsoIndex{434694, "mg"}, + CountryToIsoIndex{434719, "yt"}, + CountryToIsoIndex{434741, "mw"}, + CountryToIsoIndex{434757, "my"}, + CountryToIsoIndex{434776, "ml"}, + CountryToIsoIndex{434789, "mv"}, + CountryToIsoIndex{434820, "mk"}, + CountryToIsoIndex{434848, "mk"}, + CountryToIsoIndex{434884, "mq"}, + CountryToIsoIndex{434924, "mh"}, + CountryToIsoIndex{434965, "mt"}, + CountryToIsoIndex{434984, "mx"}, + CountryToIsoIndex{435015, "fm"}, + CountryToIsoIndex{435049, "mc"}, + CountryToIsoIndex{435074, "ms"}, + CountryToIsoIndex{435111, "ma"}, + CountryToIsoIndex{435136, "mz"}, + CountryToIsoIndex{435170, "me"}, + CountryToIsoIndex{435207, "mm"}, + CountryToIsoIndex{435250, "mr"}, + CountryToIsoIndex{435284, "mu"}, + CountryToIsoIndex{435312, "md"}, + CountryToIsoIndex{435328, "us"}, + CountryToIsoIndex{435345, "um"}, + CountryToIsoIndex{435403, "vi"}, + CountryToIsoIndex{435465, "gb"}, + CountryToIsoIndex{435480, "ae"}, + CountryToIsoIndex{435558, "gb"}, + CountryToIsoIndex{435608, "ez"}, + CountryToIsoIndex{435630, "ye"}, + CountryToIsoIndex{435643, "ru"}, + CountryToIsoIndex{435656, "re"}, + CountryToIsoIndex{435681, "rw"}, + CountryToIsoIndex{435703, "ro"}, + CountryToIsoIndex{435725, "lu"}, + CountryToIsoIndex{435753, "lv"}, + CountryToIsoIndex{435781, "la"}, + CountryToIsoIndex{435800, "li"}, + CountryToIsoIndex{435840, "lt"}, + CountryToIsoIndex{435868, "ly"}, + CountryToIsoIndex{435884, "lb"}, + CountryToIsoIndex{435900, "ls"}, + CountryToIsoIndex{435919, "lr"}, + CountryToIsoIndex{435941, "va"}, + CountryToIsoIndex{435972, "vu"}, + CountryToIsoIndex{435994, "wf"}, + CountryToIsoIndex{436057, "vn"}, + CountryToIsoIndex{436088, "ve"}, + CountryToIsoIndex{436116, "lk"}, + CountryToIsoIndex{436141, "ws"}, + CountryToIsoIndex{436154, "zm"}, + CountryToIsoIndex{436173, "st"}, + CountryToIsoIndex{436239, "sm"}, + CountryToIsoIndex{436265, "sg"}, + CountryToIsoIndex{436293, "zw"}, + CountryToIsoIndex{436324, "sx"}, + CountryToIsoIndex{436368, "sl"}, + CountryToIsoIndex{436400, "sy"}, + CountryToIsoIndex{436416, "sc"}, + CountryToIsoIndex{436438, "sd"}, + CountryToIsoIndex{436454, "sr"}, + CountryToIsoIndex{436476, "sn"}, + CountryToIsoIndex{436492, "kn"}, + CountryToIsoIndex{436564, "pm"}, + CountryToIsoIndex{436636, "bl"}, + CountryToIsoIndex{436683, "mf"}, + CountryToIsoIndex{436727, "lc"}, + CountryToIsoIndex{436762, "vc"}, + CountryToIsoIndex{436846, "sh"}, + CountryToIsoIndex{436881, "ea"}, + CountryToIsoIndex{436932, "cf"}, + CountryToIsoIndex{437022, "rs"}, + CountryToIsoIndex{437041, "cy"}, + CountryToIsoIndex{437063, "so"}, + CountryToIsoIndex{437085, "sb"}, + CountryToIsoIndex{437126, "sk"}, + CountryToIsoIndex{437154, "si"}, + CountryToIsoIndex{437182, "sz"}, + CountryToIsoIndex{437219, "sj"}, + CountryToIsoIndex{437282, "ch"}, + CountryToIsoIndex{437328, "se"}, + CountryToIsoIndex{437347, "es"}, + CountryToIsoIndex{437372, "sa"}, + CountryToIsoIndex{437404, "hu"}, + CountryToIsoIndex{437420, "hm"}, + CountryToIsoIndex{437510, "ht"}, + CountryToIsoIndex{437529, "hk"}, + CountryToIsoIndex{437554, "hk"}, + CountryToIsoIndex{437595, "hn"}, + CountryToIsoIndex{437626, "ie"}, + CountryToIsoIndex{437654, "im"}, + CountryToIsoIndex{437693, "ci"}, + CountryToIsoIndex{437731, "is"}, + CountryToIsoIndex{437762, "aw"}, + CountryToIsoIndex{437778, "az"}, + CountryToIsoIndex{437812, "ar"}, + CountryToIsoIndex{437849, "am"}, + CountryToIsoIndex{437880, "ai"}, + CountryToIsoIndex{437911, "ao"}, + CountryToIsoIndex{437936, "aq"}, + CountryToIsoIndex{437973, "ag"}, + CountryToIsoIndex{438036, "ad"}, + CountryToIsoIndex{438061, "vi"}, + CountryToIsoIndex{438124, "as"}, + CountryToIsoIndex{438171, "dz"}, + CountryToIsoIndex{438202, "al"}, + CountryToIsoIndex{438233, "ac"}, + CountryToIsoIndex{438277, "af"}, + CountryToIsoIndex{438314, "qo"}, + CountryToIsoIndex{438343, "ec"}, + CountryToIsoIndex{438368, "it"}, + CountryToIsoIndex{438387, "et"}, + CountryToIsoIndex{438418, "in"}, + CountryToIsoIndex{438443, "id"}, + CountryToIsoIndex{438480, "iq"}, + CountryToIsoIndex{438496, "ir"}, + CountryToIsoIndex{438512, "eg"}, + CountryToIsoIndex{438537, "il"}, + CountryToIsoIndex{438565, "ug"}, + CountryToIsoIndex{438587, "kp"}, + CountryToIsoIndex{438625, "mp"}, + CountryToIsoIndex{438679, "uy"}, + CountryToIsoIndex{438701, "uz"}, + CountryToIsoIndex{438741, "us"}, + CountryToIsoIndex{438749, "gb"}, + CountryToIsoIndex{438760, "ae"}, + CountryToIsoIndex{438833, "um"}, + CountryToIsoIndex{438888, "us"}, + CountryToIsoIndex{438923, "gb"}, + CountryToIsoIndex{438967, "er"}, + CountryToIsoIndex{439001, "sv"}, + CountryToIsoIndex{439039, "ee"}, + CountryToIsoIndex{439070, "at"}, + CountryToIsoIndex{439104, "om"}, + CountryToIsoIndex{439120, "ax"}, + CountryToIsoIndex{439155, "au"}, + CountryToIsoIndex{439195, "qa"}, + CountryToIsoIndex{439211, "kz"}, + CountryToIsoIndex{439239, "cp"}, + CountryToIsoIndex{439283, "cx"}, + CountryToIsoIndex{439327, "hr"}, + CountryToIsoIndex{439361, "kh"}, + CountryToIsoIndex{439386, "ca"}, + CountryToIsoIndex{439405, "ic"}, + CountryToIsoIndex{439437, "cm"}, + CountryToIsoIndex{439459, "bq"}, + CountryToIsoIndex{439521, "cu"}, + CountryToIsoIndex{439543, "kg"}, + CountryToIsoIndex{439580, "ki"}, + CountryToIsoIndex{439602, "ck"}, + CountryToIsoIndex{439631, "cw"}, + CountryToIsoIndex{439653, "kw"}, + CountryToIsoIndex{439672, "ke"}, + CountryToIsoIndex{439694, "cv"}, + CountryToIsoIndex{439723, "ky"}, + CountryToIsoIndex{439755, "cd"}, + CountryToIsoIndex{439798, "cg"}, + CountryToIsoIndex{439847, "cg"}, + CountryToIsoIndex{439881, "cd"}, + CountryToIsoIndex{439900, "cc"}, + CountryToIsoIndex{439935, "km"}, + CountryToIsoIndex{439960, "cr"}, + CountryToIsoIndex{439991, "xk"}, + CountryToIsoIndex{440010, "co"}, + CountryToIsoIndex{440044, "ci"}, + CountryToIsoIndex{440083, "gy"}, + CountryToIsoIndex{440099, "gg"}, + CountryToIsoIndex{440124, "gp"}, + CountryToIsoIndex{440152, "gd"}, + CountryToIsoIndex{440180, "gl"}, + CountryToIsoIndex{440217, "gr"}, + CountryToIsoIndex{440242, "ga"}, + CountryToIsoIndex{440261, "gm"}, + CountryToIsoIndex{440289, "gn"}, + CountryToIsoIndex{440311, "gw"}, + CountryToIsoIndex{440340, "gu"}, + CountryToIsoIndex{440359, "gt"}, + CountryToIsoIndex{440384, "gh"}, + CountryToIsoIndex{440400, "td"}, + CountryToIsoIndex{440413, "cl"}, + CountryToIsoIndex{440426, "cn"}, + CountryToIsoIndex{440439, "cz"}, + CountryToIsoIndex{440468, "jp"}, + CountryToIsoIndex{440484, "de"}, + CountryToIsoIndex{440506, "je"}, + CountryToIsoIndex{440522, "jm"}, + CountryToIsoIndex{440550, "gi"}, + CountryToIsoIndex{440587, "dj"}, + CountryToIsoIndex{440606, "ge"}, + CountryToIsoIndex{440634, "jo"}, + CountryToIsoIndex{440659, "tj"}, + CountryToIsoIndex{440693, "tm"}, + CountryToIsoIndex{440739, "tc"}, + CountryToIsoIndex{440806, "tt"}, + CountryToIsoIndex{440866, "ta"}, + CountryToIsoIndex{440920, "tz"}, + CountryToIsoIndex{440954, "tl"}, + CountryToIsoIndex{440994, "tn"}, + CountryToIsoIndex{441028, "tv"}, + CountryToIsoIndex{441047, "to"}, + CountryToIsoIndex{441063, "tk"}, + CountryToIsoIndex{441085, "tg"}, + CountryToIsoIndex{441098, "dk"}, + CountryToIsoIndex{441129, "do"}, + CountryToIsoIndex{441170, "dm"}, + CountryToIsoIndex{441198, "th"}, + CountryToIsoIndex{441226, "tw"}, + CountryToIsoIndex{441251, "tr"}, + CountryToIsoIndex{441273, "za"}, + CountryToIsoIndex{441317, "kr"}, + CountryToIsoIndex{441355, "gs"}, + CountryToIsoIndex{441469, "tf"}, + CountryToIsoIndex{441536, "ss"}, + CountryToIsoIndex{441571, "dg"}, + CountryToIsoIndex{441615, "ne"}, + CountryToIsoIndex{441634, "ng"}, + CountryToIsoIndex{441665, "nc"}, + CountryToIsoIndex{441706, "nz"}, + CountryToIsoIndex{441734, "nr"}, + CountryToIsoIndex{441753, "tl"}, + CountryToIsoIndex{441797, "na"}, + CountryToIsoIndex{441825, "ni"}, + CountryToIsoIndex{441853, "nu"}, + CountryToIsoIndex{441866, "nl"}, + CountryToIsoIndex{441897, "np"}, + CountryToIsoIndex{441916, "no"}, + CountryToIsoIndex{441935, "nf"}, + CountryToIsoIndex{441967, "ps"}, + CountryToIsoIndex{442011, "ps"}, + CountryToIsoIndex{442036, "pw"}, + CountryToIsoIndex{442052, "gf"}, + CountryToIsoIndex{442087, "pf"}, + CountryToIsoIndex{442140, "fr"}, + CountryToIsoIndex{442162, "pk"}, + CountryToIsoIndex{442193, "pa"}, + CountryToIsoIndex{442212, "pg"}, + CountryToIsoIndex{442266, "py"}, + CountryToIsoIndex{442288, "pn"}, + CountryToIsoIndex{442335, "ph"}, + CountryToIsoIndex{442360, "pr"}, + CountryToIsoIndex{442395, "pt"}, + CountryToIsoIndex{442420, "pe"}, + CountryToIsoIndex{442433, "pl"}, + CountryToIsoIndex{442455, "bd"}, + CountryToIsoIndex{442486, "eh"}, + CountryToIsoIndex{442518, "bf"}, + CountryToIsoIndex{442553, "bm"}, + CountryToIsoIndex{442581, "bg"}, + CountryToIsoIndex{442612, "bs"}, + CountryToIsoIndex{442631, "bh"}, + CountryToIsoIndex{442650, "br"}, + CountryToIsoIndex{442675, "io"}, + CountryToIsoIndex{442773, "vg"}, + CountryToIsoIndex{442845, "bb"}, + CountryToIsoIndex{442867, "bi"}, + CountryToIsoIndex{442892, "bv"}, + CountryToIsoIndex{442924, "bj"}, + CountryToIsoIndex{442943, "by"}, + CountryToIsoIndex{442965, "be"}, + CountryToIsoIndex{442990, "bz"}, + CountryToIsoIndex{443009, "bw"}, + CountryToIsoIndex{443040, "bo"}, + CountryToIsoIndex{443068, "ba"}, + CountryToIsoIndex{443137, "bn"}, + CountryToIsoIndex{443156, "bt"}, + CountryToIsoIndex{443175, "mo"}, + CountryToIsoIndex{443191, "mo"}, + CountryToIsoIndex{443271, "cf"}, + CountryToIsoIndex{443337, "fm"}, + CountryToIsoIndex{443383, "yt"}, + CountryToIsoIndex{443399, "mq"}, + CountryToIsoIndex{443427, "mw"}, + CountryToIsoIndex{443443, "mv"}, + CountryToIsoIndex{443472, "ml"}, + CountryToIsoIndex{443485, "mh"}, + CountryToIsoIndex{443517, "mg"}, + CountryToIsoIndex{443545, "my"}, + CountryToIsoIndex{443573, "mk"}, + CountryToIsoIndex{443607, "mk"}, + CountryToIsoIndex{443649, "mm"}, + CountryToIsoIndex{443698, "mu"}, + CountryToIsoIndex{443720, "mx"}, + CountryToIsoIndex{443748, "mn"}, + CountryToIsoIndex{443782, "me"}, + CountryToIsoIndex{443822, "ms"}, + CountryToIsoIndex{443853, "mc"}, + CountryToIsoIndex{443875, "mr"}, + CountryToIsoIndex{443909, "ma"}, + CountryToIsoIndex{443937, "md"}, + CountryToIsoIndex{443965, "mz"}, + CountryToIsoIndex{443996, "mt"}, + CountryToIsoIndex{444018, "ua"}, + CountryToIsoIndex{444043, "ez"}, + CountryToIsoIndex{444072, "ye"}, + CountryToIsoIndex{444088, "re"}, + CountryToIsoIndex{444116, "ro"}, + CountryToIsoIndex{444144, "rw"}, + CountryToIsoIndex{444169, "ru"}, + CountryToIsoIndex{444191, "lu"}, + CountryToIsoIndex{444225, "lr"}, + CountryToIsoIndex{444256, "la"}, + CountryToIsoIndex{444272, "lv"}, + CountryToIsoIndex{444300, "li"}, + CountryToIsoIndex{444343, "lt"}, + CountryToIsoIndex{444377, "ly"}, + CountryToIsoIndex{444399, "lb"}, + CountryToIsoIndex{444418, "ls"}, + CountryToIsoIndex{444434, "va"}, + CountryToIsoIndex{444469, "vu"}, + CountryToIsoIndex{444491, "wf"}, + CountryToIsoIndex{444536, "vn"}, + CountryToIsoIndex{444564, "ve"}, + CountryToIsoIndex{444598, "lk"}, + CountryToIsoIndex{444630, "kn"}, + CountryToIsoIndex{444691, "pm"}, + CountryToIsoIndex{444752, "bl"}, + CountryToIsoIndex{444793, "mf"}, + CountryToIsoIndex{444834, "sx"}, + CountryToIsoIndex{444875, "lc"}, + CountryToIsoIndex{444910, "vc"}, + CountryToIsoIndex{444998, "sh"}, + CountryToIsoIndex{445033, "gq"}, + CountryToIsoIndex{445065, "cy"}, + CountryToIsoIndex{445093, "rs"}, + CountryToIsoIndex{445118, "es"}, + CountryToIsoIndex{445143, "sk"}, + CountryToIsoIndex{445177, "si"}, + CountryToIsoIndex{445211, "sz"}, + CountryToIsoIndex{445245, "ch"}, + CountryToIsoIndex{445288, "se"}, + CountryToIsoIndex{445310, "sj"}, + CountryToIsoIndex{445380, "st"}, + CountryToIsoIndex{445444, "sm"}, + CountryToIsoIndex{445476, "zm"}, + CountryToIsoIndex{445504, "ws"}, + CountryToIsoIndex{445523, "sg"}, + CountryToIsoIndex{445557, "zw"}, + CountryToIsoIndex{445588, "sl"}, + CountryToIsoIndex{445622, "sy"}, + CountryToIsoIndex{445644, "sc"}, + CountryToIsoIndex{445669, "sr"}, + CountryToIsoIndex{445694, "sd"}, + CountryToIsoIndex{445713, "sn"}, + CountryToIsoIndex{445735, "ea"}, + CountryToIsoIndex{445786, "sb"}, + CountryToIsoIndex{445821, "so"}, + CountryToIsoIndex{445849, "sa"}, + CountryToIsoIndex{445881, "hu"}, + CountryToIsoIndex{445912, "ht"}, + CountryToIsoIndex{445928, "hm"}, + CountryToIsoIndex{446014, "hk"}, + CountryToIsoIndex{446033, "hk"}, + CountryToIsoIndex{446116, "hn"}, + CountryToIsoIndex{446147, "fo"}, + CountryToIsoIndex{446176, "fi"}, + CountryToIsoIndex{446204, "fj"}, + CountryToIsoIndex{446217, "fk"}, + CountryToIsoIndex{446258, "fk"}, + CountryToIsoIndex{446351, "gr"}, + CountryToIsoIndex{446364, "gl"}, + CountryToIsoIndex{446392, "gu"}, + CountryToIsoIndex{446402, "gp"}, + CountryToIsoIndex{446430, "kh"}, + CountryToIsoIndex{446452, "gt"}, + CountryToIsoIndex{446480, "qa"}, + CountryToIsoIndex{446499, "gh"}, + CountryToIsoIndex{446512, "ga"}, + CountryToIsoIndex{446528, "gy"}, + CountryToIsoIndex{446550, "gn"}, + CountryToIsoIndex{446563, "gw"}, + CountryToIsoIndex{446595, "cg"}, + CountryToIsoIndex{446641, "cd"}, + CountryToIsoIndex{446720, "cd"}, + CountryToIsoIndex{446760, "cg"}, + CountryToIsoIndex{446806, "cr"}, + CountryToIsoIndex{446834, "km"}, + CountryToIsoIndex{446856, "kz"}, + CountryToIsoIndex{446884, "ki"}, + CountryToIsoIndex{446906, "cu"}, + CountryToIsoIndex{446922, "kg"}, + CountryToIsoIndex{446956, "cw"}, + CountryToIsoIndex{446978, "kw"}, + CountryToIsoIndex{446994, "ge"}, + CountryToIsoIndex{447019, "jo"}, + CountryToIsoIndex{447041, "jm"}, + CountryToIsoIndex{447060, "dj"}, + CountryToIsoIndex{447079, "cn"}, + CountryToIsoIndex{447089, "td"}, + CountryToIsoIndex{447099, "cl"}, + CountryToIsoIndex{447112, "sm"}, + CountryToIsoIndex{447140, "ws"}, + CountryToIsoIndex{447156, "sa"}, + CountryToIsoIndex{447199, "eh"}, + CountryToIsoIndex{447239, "sx"}, + CountryToIsoIndex{447276, "zw"}, + CountryToIsoIndex{447301, "sy"}, + CountryToIsoIndex{447320, "sd"}, + CountryToIsoIndex{447336, "ss"}, + CountryToIsoIndex{447361, "sr"}, + CountryToIsoIndex{447386, "jp"}, + CountryToIsoIndex{447408, "ps"}, + CountryToIsoIndex{447454, "dg"}, + CountryToIsoIndex{447497, "tt"}, + CountryToIsoIndex{447549, "to"}, + CountryToIsoIndex{447565, "tl"}, + CountryToIsoIndex{447600, "tl"}, + CountryToIsoIndex{447643, "tr"}, + CountryToIsoIndex{447659, "tn"}, + CountryToIsoIndex{447684, "tv"}, + CountryToIsoIndex{447703, "ta"}, + CountryToIsoIndex{447743, "tj"}, + CountryToIsoIndex{447774, "va"}, + CountryToIsoIndex{447805, "no"}, + CountryToIsoIndex{447830, "na"}, + CountryToIsoIndex{447855, "nr"}, + CountryToIsoIndex{447874, "ni"}, + CountryToIsoIndex{447902, "nz"}, + CountryToIsoIndex{447933, "nc"}, + CountryToIsoIndex{447973, "nu"}, + CountryToIsoIndex{447992, "br"}, + CountryToIsoIndex{448011, "io"}, + CountryToIsoIndex{448105, "bn"}, + CountryToIsoIndex{448121, "bw"}, + CountryToIsoIndex{448146, "ba"}, + CountryToIsoIndex{448216, "bd"}, + CountryToIsoIndex{448244, "bg"}, + CountryToIsoIndex{448272, "bb"}, + CountryToIsoIndex{448300, "bh"}, + CountryToIsoIndex{448322, "bs"}, + CountryToIsoIndex{448344, "bi"}, + CountryToIsoIndex{448366, "bf"}, + CountryToIsoIndex{448403, "pk"}, + CountryToIsoIndex{448428, "pa"}, + CountryToIsoIndex{448447, "pg"}, + CountryToIsoIndex{448484, "py"}, + CountryToIsoIndex{448509, "ps"}, + CountryToIsoIndex{448537, "pw"}, + CountryToIsoIndex{448553, "fr"}, + CountryToIsoIndex{448578, "fj"}, + CountryToIsoIndex{448591, "fi"}, + CountryToIsoIndex{448616, "ph"}, + CountryToIsoIndex{448647, "bt"}, + CountryToIsoIndex{448663, "mn"}, + CountryToIsoIndex{448691, "ms"}, + CountryToIsoIndex{448731, "me"}, + CountryToIsoIndex{448762, "mu"}, + CountryToIsoIndex{448790, "mr"}, + CountryToIsoIndex{448821, "mt"}, + CountryToIsoIndex{448837, "md"}, + CountryToIsoIndex{448859, "mv"}, + CountryToIsoIndex{448884, "mk"}, + CountryToIsoIndex{448915, "mk"}, + CountryToIsoIndex{448954, "mg"}, + CountryToIsoIndex{448988, "yt"}, + CountryToIsoIndex{449004, "mq"}, + CountryToIsoIndex{449032, "mw"}, + CountryToIsoIndex{449051, "ml"}, + CountryToIsoIndex{449064, "mo"}, + CountryToIsoIndex{449083, "my"}, + CountryToIsoIndex{449108, "gi"}, + CountryToIsoIndex{449139, "ug"}, + CountryToIsoIndex{449161, "ua"}, + CountryToIsoIndex{449180, "ez"}, + CountryToIsoIndex{449202, "rw"}, + CountryToIsoIndex{449221, "ru"}, + CountryToIsoIndex{449243, "lu"}, + CountryToIsoIndex{449280, "lv"}, + CountryToIsoIndex{449302, "la"}, + CountryToIsoIndex{449312, "li"}, + CountryToIsoIndex{449346, "lt"}, + CountryToIsoIndex{449374, "ly"}, + CountryToIsoIndex{449393, "vu"}, + CountryToIsoIndex{449418, "wf"}, + CountryToIsoIndex{449464, "lk"}, + CountryToIsoIndex{449489, "sj"}, + CountryToIsoIndex{449547, "sz"}, + CountryToIsoIndex{449578, "ch"}, + CountryToIsoIndex{449621, "se"}, + CountryToIsoIndex{449640, "ae"}, + CountryToIsoIndex{449701, "us"}, + CountryToIsoIndex{449738, "us"}, + CountryToIsoIndex{449757, "gb"}, + CountryToIsoIndex{449797, "cz"}, + CountryToIsoIndex{449837, "cf"}, + CountryToIsoIndex{449898, "do"}, + CountryToIsoIndex{449953, "sg"}, + CountryToIsoIndex{449978, "es"}, + CountryToIsoIndex{449991, "sk"}, + CountryToIsoIndex{450019, "si"}, + CountryToIsoIndex{450047, "ic"}, + CountryToIsoIndex{450090, "ck"}, + CountryToIsoIndex{450124, "mp"}, + CountryToIsoIndex{450203, "vg"}, + CountryToIsoIndex{450270, "pn"}, + CountryToIsoIndex{450319, "fk"}, + CountryToIsoIndex{450374, "fk"}, + CountryToIsoIndex{450475, "mh"}, + CountryToIsoIndex{450527, "vi"}, + CountryToIsoIndex{450591, "um"}, + CountryToIsoIndex{450679, "ky"}, + CountryToIsoIndex{450725, "tc"}, + CountryToIsoIndex{450816, "fo"}, + CountryToIsoIndex{450853, "cc"}, + CountryToIsoIndex{450911, "sb"}, + CountryToIsoIndex{450957, "ax"}, + CountryToIsoIndex{451003, "at"}, + CountryToIsoIndex{451028, "au"}, + CountryToIsoIndex{451059, "gb"}, + CountryToIsoIndex{451078, "ad"}, + CountryToIsoIndex{451106, "af"}, + CountryToIsoIndex{451140, "aw"}, + CountryToIsoIndex{451159, "ar"}, + CountryToIsoIndex{451193, "am"}, + CountryToIsoIndex{451224, "az"}, + CountryToIsoIndex{451261, "it"}, + CountryToIsoIndex{451280, "in"}, + CountryToIsoIndex{451302, "id"}, + CountryToIsoIndex{451336, "iq"}, + CountryToIsoIndex{451352, "il"}, + CountryToIsoIndex{451377, "ir"}, + CountryToIsoIndex{451399, "gq"}, + CountryToIsoIndex{451448, "eg"}, + CountryToIsoIndex{451470, "uz"}, + CountryToIsoIndex{451504, "uy"}, + CountryToIsoIndex{451529, "as"}, + CountryToIsoIndex{451569, "hn"}, + CountryToIsoIndex{451594, "hu"}, + CountryToIsoIndex{451616, "hk"}, + CountryToIsoIndex{451635, "gd"}, + CountryToIsoIndex{451657, "kp"}, + CountryToIsoIndex{451691, "kr"}, + CountryToIsoIndex{451719, "cx"}, + CountryToIsoIndex{451759, "cp"}, + CountryToIsoIndex{451808, "nf"}, + CountryToIsoIndex{451848, "bv"}, + CountryToIsoIndex{451876, "gs"}, + CountryToIsoIndex{452000, "hm"}, + CountryToIsoIndex{452094, "im"}, + CountryToIsoIndex{452116, "ac"}, + CountryToIsoIndex{452156, "gg"}, + CountryToIsoIndex{452187, "mo"}, + CountryToIsoIndex{452317, "hk"}, + CountryToIsoIndex{452447, "ke"}, + CountryToIsoIndex{452463, "cv"}, + CountryToIsoIndex{452491, "je"}, + CountryToIsoIndex{452519, "cz"}, + CountryToIsoIndex{452532, "kn"}, + CountryToIsoIndex{452587, "bl"}, + CountryToIsoIndex{452633, "mf"}, + CountryToIsoIndex{452670, "lc"}, + CountryToIsoIndex{452704, "vc"}, + CountryToIsoIndex{452783, "sh"}, + CountryToIsoIndex{452817, "ea"}, + CountryToIsoIndex{452860, "rs"}, + CountryToIsoIndex{452888, "st"}, + CountryToIsoIndex{452943, "sl"}, + CountryToIsoIndex{452983, "sc"}, + CountryToIsoIndex{453005, "sn"}, + CountryToIsoIndex{453027, "dk"}, + CountryToIsoIndex{453052, "tm"}, + CountryToIsoIndex{453095, "np"}, + CountryToIsoIndex{453111, "nl"}, + CountryToIsoIndex{453148, "bq"}, + CountryToIsoIndex{453215, "bj"}, + CountryToIsoIndex{453231, "by"}, + CountryToIsoIndex{453253, "bz"}, + CountryToIsoIndex{453269, "be"}, + CountryToIsoIndex{453294, "bm"}, + CountryToIsoIndex{453325, "pe"}, + CountryToIsoIndex{453338, "pr"}, + CountryToIsoIndex{453372, "gf"}, + CountryToIsoIndex{453409, "tf"}, + CountryToIsoIndex{453491, "pf"}, + CountryToIsoIndex{453540, "mm"}, + CountryToIsoIndex{453583, "mx"}, + CountryToIsoIndex{453608, "de"}, + CountryToIsoIndex{453630, "ye"}, + CountryToIsoIndex{453646, "re"}, + CountryToIsoIndex{453671, "lb"}, + CountryToIsoIndex{453693, "ls"}, + CountryToIsoIndex{453712, "vn"}, + CountryToIsoIndex{453737, "ve"}, + CountryToIsoIndex{453768, "ec"}, + CountryToIsoIndex{453796, "et"}, + CountryToIsoIndex{453827, "er"}, + CountryToIsoIndex{453855, "sv"}, + CountryToIsoIndex{453892, "ee"}, + CountryToIsoIndex{453920, "qo"}, + CountryToIsoIndex{453981, "ht"}, + CountryToIsoIndex{453994, "gm"}, + CountryToIsoIndex{454016, "ca"}, + CountryToIsoIndex{454035, "cm"}, + CountryToIsoIndex{454060, "pm"}, + CountryToIsoIndex{454118, "zm"}, + CountryToIsoIndex{454140, "tz"}, + CountryToIsoIndex{454168, "ai"}, + CountryToIsoIndex{454196, "ao"}, + CountryToIsoIndex{454218, "aq"}, + CountryToIsoIndex{454255, "ag"}, + CountryToIsoIndex{454310, "za"}, + CountryToIsoIndex{454341, "dz"}, + CountryToIsoIndex{454369, "al"}, + CountryToIsoIndex{454397, "ci"}, + CountryToIsoIndex{454428, "hr"}, + CountryToIsoIndex{454456, "co"}, + CountryToIsoIndex{454484, "xk"}, + CountryToIsoIndex{454503, "so"}, + CountryToIsoIndex{454528, "dm"}, + CountryToIsoIndex{454553, "tk"}, + CountryToIsoIndex{454575, "tg"}, + CountryToIsoIndex{454588, "bo"}, + CountryToIsoIndex{454613, "pt"}, + CountryToIsoIndex{454638, "pl"}, + CountryToIsoIndex{454660, "mz"}, + CountryToIsoIndex{454685, "mc"}, + CountryToIsoIndex{454704, "ma"}, + CountryToIsoIndex{454729, "ro"}, + CountryToIsoIndex{454754, "om"}, + CountryToIsoIndex{454770, "cy"}, + CountryToIsoIndex{454789, "tw"}, + CountryToIsoIndex{454811, "th"}, + CountryToIsoIndex{454821, "ng"}, + CountryToIsoIndex{454846, "ne"}, + CountryToIsoIndex{454868, "fm"}, + CountryToIsoIndex{454902, "lr"}, + CountryToIsoIndex{454927, "is"}, + CountryToIsoIndex{454955, "ie"}, + CountryToIsoIndex{454983, "ci"}, + CountryToIsoIndex{455020, "gr"}, + CountryToIsoIndex{455033, "gl"}, + CountryToIsoIndex{455055, "gu"}, + CountryToIsoIndex{455068, "gy"}, + CountryToIsoIndex{455090, "qa"}, + CountryToIsoIndex{455103, "gh"}, + CountryToIsoIndex{455116, "ga"}, + CountryToIsoIndex{455132, "kh"}, + CountryToIsoIndex{455154, "gn"}, + CountryToIsoIndex{455167, "gw"}, + CountryToIsoIndex{455202, "kw"}, + CountryToIsoIndex{455218, "gp"}, + CountryToIsoIndex{455243, "gt"}, + CountryToIsoIndex{455271, "cd"}, + CountryToIsoIndex{455353, "cd"}, + CountryToIsoIndex{455393, "cg"}, + CountryToIsoIndex{455436, "kz"}, + CountryToIsoIndex{455467, "bq"}, + CountryToIsoIndex{455517, "cm"}, + CountryToIsoIndex{455539, "ki"}, + CountryToIsoIndex{455564, "cu"}, + CountryToIsoIndex{455580, "cw"}, + CountryToIsoIndex{455602, "kg"}, + CountryToIsoIndex{455636, "jm"}, + CountryToIsoIndex{455655, "gi"}, + CountryToIsoIndex{455683, "dj"}, + CountryToIsoIndex{455702, "cn"}, + CountryToIsoIndex{455712, "ge"}, + CountryToIsoIndex{455728, "jo"}, + CountryToIsoIndex{455744, "td"}, + CountryToIsoIndex{455754, "ws"}, + CountryToIsoIndex{455770, "sa"}, + CountryToIsoIndex{455811, "eh"}, + CountryToIsoIndex{455857, "sx"}, + CountryToIsoIndex{455886, "zw"}, + CountryToIsoIndex{455911, "cl"}, + CountryToIsoIndex{455924, "sy"}, + CountryToIsoIndex{455940, "sd"}, + CountryToIsoIndex{455956, "ss"}, + CountryToIsoIndex{455981, "sr"}, + CountryToIsoIndex{456003, "jp"}, + CountryToIsoIndex{456025, "ps"}, + CountryToIsoIndex{456075, "dg"}, + CountryToIsoIndex{456110, "tn"}, + CountryToIsoIndex{456132, "tv"}, + CountryToIsoIndex{456151, "tt"}, + CountryToIsoIndex{456205, "ta"}, + CountryToIsoIndex{456250, "to"}, + CountryToIsoIndex{456266, "tj"}, + CountryToIsoIndex{456303, "tz"}, + CountryToIsoIndex{456328, "tl"}, + CountryToIsoIndex{456369, "tl"}, + CountryToIsoIndex{456398, "va"}, + CountryToIsoIndex{456436, "na"}, + CountryToIsoIndex{456458, "nr"}, + CountryToIsoIndex{456477, "ni"}, + CountryToIsoIndex{456508, "nc"}, + CountryToIsoIndex{456546, "nz"}, + CountryToIsoIndex{456571, "ne"}, + CountryToIsoIndex{456587, "nu"}, + CountryToIsoIndex{456606, "no"}, + CountryToIsoIndex{456619, "br"}, + CountryToIsoIndex{456638, "bn"}, + CountryToIsoIndex{456654, "bw"}, + CountryToIsoIndex{456682, "ba"}, + CountryToIsoIndex{456745, "bd"}, + CountryToIsoIndex{456776, "bg"}, + CountryToIsoIndex{456801, "bb"}, + CountryToIsoIndex{456823, "bs"}, + CountryToIsoIndex{456845, "bh"}, + CountryToIsoIndex{456861, "bi"}, + CountryToIsoIndex{456883, "pk"}, + CountryToIsoIndex{456914, "pg"}, + CountryToIsoIndex{456951, "pw"}, + CountryToIsoIndex{456967, "ps"}, + CountryToIsoIndex{456992, "fr"}, + CountryToIsoIndex{457008, "pt"}, + CountryToIsoIndex{457030, "pa"}, + CountryToIsoIndex{457049, "py"}, + CountryToIsoIndex{457071, "bt"}, + CountryToIsoIndex{457087, "fj"}, + CountryToIsoIndex{457100, "fi"}, + CountryToIsoIndex{457119, "ph"}, + CountryToIsoIndex{457144, "mn"}, + CountryToIsoIndex{457169, "mt"}, + CountryToIsoIndex{457185, "ms"}, + CountryToIsoIndex{457213, "me"}, + CountryToIsoIndex{457244, "mv"}, + CountryToIsoIndex{457263, "mo"}, + CountryToIsoIndex{457279, "mo"}, + CountryToIsoIndex{457348, "mg"}, + CountryToIsoIndex{457379, "mq"}, + CountryToIsoIndex{457401, "yt"}, + CountryToIsoIndex{457420, "mw"}, + CountryToIsoIndex{457439, "ml"}, + CountryToIsoIndex{457452, "my"}, + CountryToIsoIndex{457474, "mu"}, + CountryToIsoIndex{457499, "mr"}, + CountryToIsoIndex{457530, "mm"}, + CountryToIsoIndex{457564, "ua"}, + CountryToIsoIndex{457583, "rw"}, + CountryToIsoIndex{457602, "ru"}, + CountryToIsoIndex{457621, "lv"}, + CountryToIsoIndex{457640, "la"}, + CountryToIsoIndex{457650, "li"}, + CountryToIsoIndex{457684, "lt"}, + CountryToIsoIndex{457709, "ly"}, + CountryToIsoIndex{457725, "lr"}, + CountryToIsoIndex{457750, "lu"}, + CountryToIsoIndex{457781, "vu"}, + CountryToIsoIndex{457803, "wf"}, + CountryToIsoIndex{457851, "sz"}, + CountryToIsoIndex{457879, "sj"}, + CountryToIsoIndex{457934, "ch"}, + CountryToIsoIndex{457968, "se"}, + CountryToIsoIndex{457993, "us"}, + CountryToIsoIndex{458015, "ae"}, + CountryToIsoIndex{458073, "us"}, + CountryToIsoIndex{458098, "gb"}, + CountryToIsoIndex{458147, "gb"}, + CountryToIsoIndex{458199, "es"}, + CountryToIsoIndex{458215, "sk"}, + CountryToIsoIndex{458243, "si"}, + CountryToIsoIndex{458271, "do"}, + CountryToIsoIndex{458333, "cg"}, + CountryToIsoIndex{458382, "cf"}, + CountryToIsoIndex{458446, "cz"}, + CountryToIsoIndex{458492, "gm"}, + CountryToIsoIndex{458544, "sg"}, + CountryToIsoIndex{458566, "lk"}, + CountryToIsoIndex{458588, "fk"}, + CountryToIsoIndex{458631, "mh"}, + CountryToIsoIndex{458671, "mp"}, + CountryToIsoIndex{458735, "fo"}, + CountryToIsoIndex{458772, "cc"}, + CountryToIsoIndex{458812, "sb"}, + CountryToIsoIndex{458858, "ax"}, + CountryToIsoIndex{458898, "vn"}, + CountryToIsoIndex{458920, "au"}, + CountryToIsoIndex{458948, "at"}, + CountryToIsoIndex{458970, "ad"}, + CountryToIsoIndex{458992, "dz"}, + CountryToIsoIndex{459017, "af"}, + CountryToIsoIndex{459057, "za"}, + CountryToIsoIndex{459088, "aw"}, + CountryToIsoIndex{459107, "ar"}, + CountryToIsoIndex{459135, "az"}, + CountryToIsoIndex{459166, "as"}, + CountryToIsoIndex{459207, "am"}, + CountryToIsoIndex{459229, "it"}, + CountryToIsoIndex{459248, "in"}, + CountryToIsoIndex{459267, "id"}, + CountryToIsoIndex{459298, "il"}, + CountryToIsoIndex{459323, "et"}, + CountryToIsoIndex{459351, "eg"}, + CountryToIsoIndex{459367, "iq"}, + CountryToIsoIndex{459383, "ir"}, + CountryToIsoIndex{459399, "uz"}, + CountryToIsoIndex{459436, "ug"}, + CountryToIsoIndex{459458, "uy"}, + CountryToIsoIndex{459480, "hn"}, + CountryToIsoIndex{459505, "hu"}, + CountryToIsoIndex{459527, "hk"}, + CountryToIsoIndex{459546, "hk"}, + CountryToIsoIndex{459618, "gd"}, + CountryToIsoIndex{459640, "cx"}, + CountryToIsoIndex{459674, "cp"}, + CountryToIsoIndex{459717, "nf"}, + CountryToIsoIndex{459745, "bv"}, + CountryToIsoIndex{459773, "ac"}, + CountryToIsoIndex{459810, "gg"}, + CountryToIsoIndex{459829, "kp"}, + CountryToIsoIndex{459863, "kr"}, + CountryToIsoIndex{459894, "ez"}, + CountryToIsoIndex{459919, "qo"}, + CountryToIsoIndex{459968, "tf"}, + CountryToIsoIndex{460026, "io"}, + CountryToIsoIndex{460114, "ke"}, + CountryToIsoIndex{460130, "cv"}, + CountryToIsoIndex{460153, "je"}, + CountryToIsoIndex{460169, "sl"}, + CountryToIsoIndex{460201, "kn"}, + CountryToIsoIndex{460247, "bl"}, + CountryToIsoIndex{460282, "pm"}, + CountryToIsoIndex{460330, "mf"}, + CountryToIsoIndex{460356, "lc"}, + CountryToIsoIndex{460382, "vc"}, + CountryToIsoIndex{460446, "sh"}, + CountryToIsoIndex{460475, "sn"}, + CountryToIsoIndex{460497, "ea"}, + CountryToIsoIndex{460544, "cz"}, + CountryToIsoIndex{460566, "rs"}, + CountryToIsoIndex{460585, "st"}, + CountryToIsoIndex{460642, "sc"}, + CountryToIsoIndex{460667, "dk"}, + CountryToIsoIndex{460686, "tm"}, + CountryToIsoIndex{460726, "tr"}, + CountryToIsoIndex{460742, "np"}, + CountryToIsoIndex{460758, "nl"}, + CountryToIsoIndex{460783, "bj"}, + CountryToIsoIndex{460799, "bz"}, + CountryToIsoIndex{460815, "by"}, + CountryToIsoIndex{460840, "be"}, + CountryToIsoIndex{460859, "bf"}, + CountryToIsoIndex{460894, "bm"}, + CountryToIsoIndex{460919, "pe"}, + CountryToIsoIndex{460932, "pr"}, + CountryToIsoIndex{460964, "gf"}, + CountryToIsoIndex{461005, "pf"}, + CountryToIsoIndex{461052, "mx"}, + CountryToIsoIndex{461077, "de"}, + CountryToIsoIndex{461102, "ye"}, + CountryToIsoIndex{461118, "re"}, + CountryToIsoIndex{461146, "lb"}, + CountryToIsoIndex{461168, "ls"}, + CountryToIsoIndex{461187, "ve"}, + CountryToIsoIndex{461218, "ec"}, + CountryToIsoIndex{461240, "gq"}, + CountryToIsoIndex{461284, "er"}, + CountryToIsoIndex{461309, "sv"}, + CountryToIsoIndex{461338, "im"}, + CountryToIsoIndex{461368, "ee"}, + CountryToIsoIndex{461393, "ca"}, + CountryToIsoIndex{461412, "sm"}, + CountryToIsoIndex{461441, "zm"}, + CountryToIsoIndex{461460, "mk"}, + CountryToIsoIndex{461488, "mk"}, + CountryToIsoIndex{461524, "ao"}, + CountryToIsoIndex{461546, "ai"}, + CountryToIsoIndex{461571, "aq"}, + CountryToIsoIndex{461602, "ag"}, + CountryToIsoIndex{461656, "al"}, + CountryToIsoIndex{461681, "ci"}, + CountryToIsoIndex{461704, "hr"}, + CountryToIsoIndex{461729, "co"}, + CountryToIsoIndex{461754, "cr"}, + CountryToIsoIndex{461783, "xk"}, + CountryToIsoIndex{461802, "km"}, + CountryToIsoIndex{461824, "so"}, + CountryToIsoIndex{461846, "dm"}, + CountryToIsoIndex{461871, "tk"}, + CountryToIsoIndex{461896, "tg"}, + CountryToIsoIndex{461909, "bo"}, + CountryToIsoIndex{461931, "pl"}, + CountryToIsoIndex{461947, "mc"}, + CountryToIsoIndex{461966, "md"}, + CountryToIsoIndex{461988, "ma"}, + CountryToIsoIndex{462013, "mz"}, + CountryToIsoIndex{462038, "ro"}, + CountryToIsoIndex{462060, "om"}, + CountryToIsoIndex{462076, "cy"}, + CountryToIsoIndex{462095, "tw"}, + CountryToIsoIndex{462117, "th"}, + CountryToIsoIndex{462124, "ng"}, + CountryToIsoIndex{462146, "fm"}, + CountryToIsoIndex{462177, "is"}, + CountryToIsoIndex{462196, "ie"}, + CountryToIsoIndex{462212, "ci"}, + CountryToIsoIndex{462241, "ht"}, + CountryToIsoIndex{462254, "gs"}, + CountryToIsoIndex{462357, "ky"}, + CountryToIsoIndex{462395, "tc"}, + CountryToIsoIndex{462456, "vi"}, + CountryToIsoIndex{462528, "vg"}, + CountryToIsoIndex{462596, "ic"}, + CountryToIsoIndex{462636, "ck"}, + CountryToIsoIndex{462667, "pn"}, + CountryToIsoIndex{462707, "fk"}, + CountryToIsoIndex{462793, "um"}, + CountryToIsoIndex{462866, "hm"}, + CountryToIsoIndex{462930, "qa"}, + CountryToIsoIndex{462943, "qa"}, + CountryToIsoIndex{462962, "ic"}, + CountryToIsoIndex{463011, "cm"}, + CountryToIsoIndex{463039, "kz"}, + CountryToIsoIndex{463070, "kh"}, + CountryToIsoIndex{463104, "kh"}, + CountryToIsoIndex{463138, "ck"}, + CountryToIsoIndex{463206, "ki"}, + CountryToIsoIndex{463264, "ki"}, + CountryToIsoIndex{463301, "cp"}, + CountryToIsoIndex{463371, "cu"}, + CountryToIsoIndex{463393, "kg"}, + CountryToIsoIndex{463430, "kw"}, + CountryToIsoIndex{463449, "kw"}, + CountryToIsoIndex{463495, "ck"}, + CountryToIsoIndex{463532, "hr"}, + CountryToIsoIndex{463563, "ca"}, + CountryToIsoIndex{463582, "cm"}, + CountryToIsoIndex{463607, "bq"}, + CountryToIsoIndex{463680, "ke"}, + CountryToIsoIndex{463696, "cv"}, + CountryToIsoIndex{463718, "cc"}, + CountryToIsoIndex{463764, "ci"}, + CountryToIsoIndex{463817, "ci"}, + CountryToIsoIndex{463873, "km"}, + CountryToIsoIndex{463901, "co"}, + CountryToIsoIndex{463938, "co"}, + CountryToIsoIndex{463975, "cr"}, + CountryToIsoIndex{464012, "cd"}, + CountryToIsoIndex{464056, "cg"}, + CountryToIsoIndex{464106, "cr"}, + CountryToIsoIndex{464137, "cw"}, + CountryToIsoIndex{464168, "hr"}, + CountryToIsoIndex{464193, "kz"}, + CountryToIsoIndex{464227, "cx"}, + CountryToIsoIndex{464288, "kg"}, + CountryToIsoIndex{464328, "ca"}, + CountryToIsoIndex{464350, "ky"}, + CountryToIsoIndex{464399, "ky"}, + CountryToIsoIndex{464445, "ke"}, + CountryToIsoIndex{464473, "cu"}, + CountryToIsoIndex{464498, "gl"}, + CountryToIsoIndex{464532, "gr"}, + CountryToIsoIndex{464551, "gu"}, + CountryToIsoIndex{464595, "gg"}, + CountryToIsoIndex{464626, "gf"}, + CountryToIsoIndex{464697, "ga"}, + CountryToIsoIndex{464719, "gp"}, + CountryToIsoIndex{464753, "gd"}, + CountryToIsoIndex{464775, "gh"}, + CountryToIsoIndex{464788, "gh"}, + CountryToIsoIndex{464804, "ga"}, + CountryToIsoIndex{464826, "gy"}, + CountryToIsoIndex{464845, "gd"}, + CountryToIsoIndex{464876, "gm"}, + CountryToIsoIndex{464904, "gn"}, + CountryToIsoIndex{464923, "gw"}, + CountryToIsoIndex{464970, "gw"}, + CountryToIsoIndex{465022, "gn"}, + CountryToIsoIndex{465050, "gr"}, + CountryToIsoIndex{465084, "gy"}, + CountryToIsoIndex{465112, "gm"}, + CountryToIsoIndex{465140, "gt"}, + CountryToIsoIndex{465168, "gt"}, + CountryToIsoIndex{465202, "td"}, + CountryToIsoIndex{465212, "cl"}, + CountryToIsoIndex{465228, "cl"}, + CountryToIsoIndex{465247, "cz"}, + CountryToIsoIndex{465288, "cz"}, + CountryToIsoIndex{465355, "td"}, + CountryToIsoIndex{465368, "jp"}, + CountryToIsoIndex{465384, "jm"}, + CountryToIsoIndex{465406, "de"}, + CountryToIsoIndex{465431, "dj"}, + CountryToIsoIndex{465459, "gi"}, + CountryToIsoIndex{465490, "gi"}, + CountryToIsoIndex{465524, "je"}, + CountryToIsoIndex{465543, "ge"}, + CountryToIsoIndex{465571, "jo"}, + CountryToIsoIndex{465590, "jo"}, + CountryToIsoIndex{465612, "ge"}, + CountryToIsoIndex{465631, "jp"}, + CountryToIsoIndex{465653, "tz"}, + CountryToIsoIndex{465687, "tw"}, + CountryToIsoIndex{465712, "tr"}, + CountryToIsoIndex{465731, "tm"}, + CountryToIsoIndex{465777, "tt"}, + CountryToIsoIndex{465855, "tn"}, + CountryToIsoIndex{465886, "tg"}, + CountryToIsoIndex{465905, "to"}, + CountryToIsoIndex{465924, "dg"}, + CountryToIsoIndex{465973, "cd"}, + CountryToIsoIndex{466085, "dk"}, + CountryToIsoIndex{466107, "dk"}, + CountryToIsoIndex{466135, "dm"}, + CountryToIsoIndex{466166, "do"}, + CountryToIsoIndex{466234, "dm"}, + CountryToIsoIndex{466271, "do"}, + CountryToIsoIndex{466362, "tj"}, + CountryToIsoIndex{466402, "tl"}, + CountryToIsoIndex{466448, "tv"}, + CountryToIsoIndex{466470, "tr"}, + CountryToIsoIndex{466489, "tc"}, + CountryToIsoIndex{466570, "tk"}, + CountryToIsoIndex{466626, "ta"}, + CountryToIsoIndex{466672, "th"}, + CountryToIsoIndex{466700, "tv"}, + CountryToIsoIndex{466725, "gb"}, + CountryToIsoIndex{466753, "na"}, + CountryToIsoIndex{466781, "na"}, + CountryToIsoIndex{466812, "ne"}, + CountryToIsoIndex{466834, "nr"}, + CountryToIsoIndex{466856, "ne"}, + CountryToIsoIndex{466878, "ng"}, + CountryToIsoIndex{466915, "ng"}, + CountryToIsoIndex{466955, "ni"}, + CountryToIsoIndex{466992, "ni"}, + CountryToIsoIndex{467020, "nu"}, + CountryToIsoIndex{467045, "nc"}, + CountryToIsoIndex{467097, "nz"}, + CountryToIsoIndex{467137, "nz"}, + CountryToIsoIndex{467174, "nu"}, + CountryToIsoIndex{467196, "ws"}, + CountryToIsoIndex{467233, "eh"}, + CountryToIsoIndex{467283, "nl"}, + CountryToIsoIndex{467317, "nf"}, + CountryToIsoIndex{467372, "no"}, + CountryToIsoIndex{467391, "no"}, + CountryToIsoIndex{467413, "nr"}, + CountryToIsoIndex{467432, "pk"}, + CountryToIsoIndex{467460, "pa"}, + CountryToIsoIndex{467476, "pa"}, + CountryToIsoIndex{467498, "pg"}, + CountryToIsoIndex{467545, "pg"}, + CountryToIsoIndex{467605, "py"}, + CountryToIsoIndex{467636, "pw"}, + CountryToIsoIndex{467652, "pw"}, + CountryToIsoIndex{467668, "pk"}, + CountryToIsoIndex{467696, "py"}, + CountryToIsoIndex{467721, "pn"}, + CountryToIsoIndex{467782, "pr"}, + CountryToIsoIndex{467828, "pe"}, + CountryToIsoIndex{467844, "pe"}, + CountryToIsoIndex{467863, "ps"}, + CountryToIsoIndex{467948, "pl"}, + CountryToIsoIndex{467970, "pl"}, + CountryToIsoIndex{467992, "pt"}, + CountryToIsoIndex{468023, "pt"}, + CountryToIsoIndex{468057, "fr"}, + CountryToIsoIndex{468085, "fk"}, + CountryToIsoIndex{468137, "fk"}, + CountryToIsoIndex{468186, "fk"}, + CountryToIsoIndex{468289, "fo"}, + CountryToIsoIndex{468338, "fj"}, + CountryToIsoIndex{468354, "fj"}, + CountryToIsoIndex{468373, "ph"}, + CountryToIsoIndex{468404, "ph"}, + CountryToIsoIndex{468441, "fi"}, + CountryToIsoIndex{468469, "fi"}, + CountryToIsoIndex{468494, "tf"}, + CountryToIsoIndex{468573, "fr"}, + CountryToIsoIndex{468589, "pf"}, + CountryToIsoIndex{468662, "va"}, + CountryToIsoIndex{468706, "br"}, + CountryToIsoIndex{468734, "bd"}, + CountryToIsoIndex{468762, "bd"}, + CountryToIsoIndex{468793, "bm"}, + CountryToIsoIndex{468815, "bm"}, + CountryToIsoIndex{468840, "bf"}, + CountryToIsoIndex{468875, "np"}, + CountryToIsoIndex{468894, "np"}, + CountryToIsoIndex{468916, "bb"}, + CountryToIsoIndex{468947, "bj"}, + CountryToIsoIndex{468972, "vn"}, + CountryToIsoIndex{469000, "bn"}, + CountryToIsoIndex{469028, "bi"}, + CountryToIsoIndex{469059, "bg"}, + CountryToIsoIndex{469090, "bg"}, + CountryToIsoIndex{469124, "ve"}, + CountryToIsoIndex{469164, "bz"}, + CountryToIsoIndex{469186, "by"}, + CountryToIsoIndex{469223, "vn"}, + CountryToIsoIndex{469245, "be"}, + CountryToIsoIndex{469276, "by"}, + CountryToIsoIndex{469310, "bo"}, + CountryToIsoIndex{469341, "bw"}, + CountryToIsoIndex{469366, "bv"}, + CountryToIsoIndex{469418, "ba"}, + CountryToIsoIndex{469491, "kp"}, + CountryToIsoIndex{469526, "mp"}, + CountryToIsoIndex{469617, "br"}, + CountryToIsoIndex{469636, "io"}, + CountryToIsoIndex{469736, "bh"}, + CountryToIsoIndex{469755, "bs"}, + CountryToIsoIndex{469780, "bf"}, + CountryToIsoIndex{469824, "bb"}, + CountryToIsoIndex{469855, "bs"}, + CountryToIsoIndex{469880, "bh"}, + CountryToIsoIndex{469905, "bi"}, + CountryToIsoIndex{469936, "bj"}, + CountryToIsoIndex{469958, "bo"}, + CountryToIsoIndex{469992, "bz"}, + CountryToIsoIndex{470014, "be"}, + CountryToIsoIndex{470036, "bw"}, + CountryToIsoIndex{470061, "ba"}, + CountryToIsoIndex{470151, "bn"}, + CountryToIsoIndex{470176, "mg"}, + CountryToIsoIndex{470210, "mg"}, + CountryToIsoIndex{470247, "mw"}, + CountryToIsoIndex{470266, "ml"}, + CountryToIsoIndex{470282, "my"}, + CountryToIsoIndex{470310, "my"}, + CountryToIsoIndex{470341, "mk"}, + CountryToIsoIndex{470378, "mk"}, + CountryToIsoIndex{470463, "mo"}, + CountryToIsoIndex{470482, "mo"}, + CountryToIsoIndex{470522, "fm"}, + CountryToIsoIndex{470568, "mh"}, + CountryToIsoIndex{470614, "mt"}, + CountryToIsoIndex{470630, "mv"}, + CountryToIsoIndex{470655, "mw"}, + CountryToIsoIndex{470683, "ml"}, + CountryToIsoIndex{470699, "mq"}, + CountryToIsoIndex{470730, "mh"}, + CountryToIsoIndex{470782, "mt"}, + CountryToIsoIndex{470798, "mv"}, + CountryToIsoIndex{470823, "mm"}, + CountryToIsoIndex{470872, "mo"}, + CountryToIsoIndex{470894, "yt"}, + CountryToIsoIndex{470913, "mx"}, + CountryToIsoIndex{470941, "mx"}, + CountryToIsoIndex{470972, "mc"}, + CountryToIsoIndex{470994, "mc"}, + CountryToIsoIndex{471019, "mz"}, + CountryToIsoIndex{471050, "mz"}, + CountryToIsoIndex{471081, "mr"}, + CountryToIsoIndex{471121, "mu"}, + CountryToIsoIndex{471149, "ma"}, + CountryToIsoIndex{471174, "ma"}, + CountryToIsoIndex{471205, "me"}, + CountryToIsoIndex{471245, "ms"}, + CountryToIsoIndex{471270, "md"}, + CountryToIsoIndex{471298, "mr"}, + CountryToIsoIndex{471338, "mu"}, + CountryToIsoIndex{471366, "jm"}, + CountryToIsoIndex{471388, "zm"}, + CountryToIsoIndex{471413, "zm"}, + CountryToIsoIndex{471438, "dj"}, + CountryToIsoIndex{471466, "zw"}, + CountryToIsoIndex{471497, "zw"}, + CountryToIsoIndex{471531, "vu"}, + CountryToIsoIndex{471559, "vu"}, + CountryToIsoIndex{471590, "vg"}, + CountryToIsoIndex{471688, "vi"}, + CountryToIsoIndex{471789, "wf"}, + CountryToIsoIndex{471855, "va"}, + CountryToIsoIndex{471883, "ve"}, + CountryToIsoIndex{471923, "de"}, + CountryToIsoIndex{471945, "mm"}, + CountryToIsoIndex{471964, "bt"}, + CountryToIsoIndex{471980, "bt"}, + CountryToIsoIndex{472011, "aq"}, + CountryToIsoIndex{472093, "ua"}, + CountryToIsoIndex{472115, "ua"}, + CountryToIsoIndex{472137, "ug"}, + CountryToIsoIndex{472162, "ug"}, + CountryToIsoIndex{472187, "gb"}, + CountryToIsoIndex{472243, "ae"}, + CountryToIsoIndex{472327, "uy"}, + CountryToIsoIndex{472364, "um"}, + CountryToIsoIndex{472452, "us"}, + CountryToIsoIndex{472480, "ye"}, + CountryToIsoIndex{472499, "ye"}, + CountryToIsoIndex{472521, "cg"}, + CountryToIsoIndex{472587, "rw"}, + CountryToIsoIndex{472609, "rw"}, + CountryToIsoIndex{472634, "re"}, + CountryToIsoIndex{472671, "ro"}, + CountryToIsoIndex{472702, "ro"}, + CountryToIsoIndex{472733, "in"}, + CountryToIsoIndex{472752, "in"}, + CountryToIsoIndex{472774, "cn"}, + CountryToIsoIndex{472793, "lu"}, + CountryToIsoIndex{472827, "lu"}, + CountryToIsoIndex{472858, "lv"}, + CountryToIsoIndex{472880, "lv"}, + CountryToIsoIndex{472905, "la"}, + CountryToIsoIndex{472924, "la"}, + CountryToIsoIndex{472946, "lr"}, + CountryToIsoIndex{472983, "lt"}, + CountryToIsoIndex{473023, "lt"}, + CountryToIsoIndex{473066, "ly"}, + CountryToIsoIndex{473088, "ly"}, + CountryToIsoIndex{473113, "lr"}, + CountryToIsoIndex{473147, "li"}, + CountryToIsoIndex{473187, "lb"}, + CountryToIsoIndex{473212, "ls"}, + CountryToIsoIndex{473240, "li"}, + CountryToIsoIndex{473277, "lb"}, + CountryToIsoIndex{473302, "ls"}, + CountryToIsoIndex{473327, "kr"}, + CountryToIsoIndex{473362, "za"}, + CountryToIsoIndex{473397, "kr"}, + CountryToIsoIndex{473434, "aq"}, + CountryToIsoIndex{473495, "tl"}, + CountryToIsoIndex{473544, "lk"}, + CountryToIsoIndex{473572, "lk"}, + CountryToIsoIndex{473603, "ws"}, + CountryToIsoIndex{473622, "as"}, + CountryToIsoIndex{473698, "st"}, + CountryToIsoIndex{473785, "sk"}, + CountryToIsoIndex{473813, "si"}, + CountryToIsoIndex{473853, "sm"}, + CountryToIsoIndex{473890, "st"}, + CountryToIsoIndex{473966, "sc"}, + CountryToIsoIndex{473988, "sm"}, + CountryToIsoIndex{474022, "sa"}, + CountryToIsoIndex{474075, "cy"}, + CountryToIsoIndex{474100, "ss"}, + CountryToIsoIndex{474138, "za"}, + CountryToIsoIndex{474179, "gs"}, + CountryToIsoIndex{474302, "cy"}, + CountryToIsoIndex{474336, "rs"}, + CountryToIsoIndex{474364, "es"}, + CountryToIsoIndex{474383, "sl"}, + CountryToIsoIndex{474418, "sy"}, + CountryToIsoIndex{474440, "sg"}, + CountryToIsoIndex{474468, "sg"}, + CountryToIsoIndex{474496, "sx"}, + CountryToIsoIndex{474534, "pm"}, + CountryToIsoIndex{474612, "sd"}, + CountryToIsoIndex{474631, "sd"}, + CountryToIsoIndex{474653, "sz"}, + CountryToIsoIndex{474690, "ch"}, + CountryToIsoIndex{474733, "sr"}, + CountryToIsoIndex{474761, "sr"}, + CountryToIsoIndex{474792, "sk"}, + CountryToIsoIndex{474832, "si"}, + CountryToIsoIndex{474872, "se"}, + CountryToIsoIndex{474897, "sn"}, + CountryToIsoIndex{474925, "sn"}, + CountryToIsoIndex{474956, "sl"}, + CountryToIsoIndex{475000, "sc"}, + CountryToIsoIndex{475022, "ea"}, + CountryToIsoIndex{475088, "cf"}, + CountryToIsoIndex{475169, "kn"}, + CountryToIsoIndex{475230, "bl"}, + CountryToIsoIndex{475289, "mf"}, + CountryToIsoIndex{475327, "lc"}, + CountryToIsoIndex{475365, "sh"}, + CountryToIsoIndex{475403, "vc"}, + CountryToIsoIndex{475502, "kn"}, + CountryToIsoIndex{475578, "vc"}, + CountryToIsoIndex{475663, "lc"}, + CountryToIsoIndex{475704, "sh"}, + CountryToIsoIndex{475745, "rs"}, + CountryToIsoIndex{475773, "so"}, + CountryToIsoIndex{475801, "so"}, + CountryToIsoIndex{475832, "sb"}, + CountryToIsoIndex{475888, "sb"}, + CountryToIsoIndex{475965, "mn"}, + CountryToIsoIndex{475996, "mn"}, + CountryToIsoIndex{476021, "sa"}, + CountryToIsoIndex{476073, "sj"}, + CountryToIsoIndex{476148, "hu"}, + CountryToIsoIndex{476170, "nl"}, + CountryToIsoIndex{476192, "hu"}, + CountryToIsoIndex{476220, "hn"}, + CountryToIsoIndex{476254, "hm"}, + CountryToIsoIndex{476368, "ht"}, + CountryToIsoIndex{476384, "ht"}, + CountryToIsoIndex{476403, "hk"}, + CountryToIsoIndex{476425, "hk"}, + CountryToIsoIndex{476468, "hk"}, + CountryToIsoIndex{476496, "hn"}, + CountryToIsoIndex{476530, "ch"}, + CountryToIsoIndex{476558, "se"}, + CountryToIsoIndex{476586, "us"}, + CountryToIsoIndex{476617, "az"}, + CountryToIsoIndex{476657, "ie"}, + CountryToIsoIndex{476685, "im"}, + CountryToIsoIndex{476727, "ae"}, + CountryToIsoIndex{476829, "aw"}, + CountryToIsoIndex{476851, "aw"}, + CountryToIsoIndex{476873, "ax"}, + CountryToIsoIndex{476916, "is"}, + CountryToIsoIndex{476953, "ai"}, + CountryToIsoIndex{476975, "ai"}, + CountryToIsoIndex{477006, "ao"}, + CountryToIsoIndex{477031, "ao"}, + CountryToIsoIndex{477056, "ag"}, + CountryToIsoIndex{477134, "af"}, + CountryToIsoIndex{477174, "af"}, + CountryToIsoIndex{477214, "az"}, + CountryToIsoIndex{477248, "ar"}, + CountryToIsoIndex{477282, "ar"}, + CountryToIsoIndex{477319, "am"}, + CountryToIsoIndex{477350, "am"}, + CountryToIsoIndex{477384, "dz"}, + CountryToIsoIndex{477418, "al"}, + CountryToIsoIndex{477452, "at"}, + CountryToIsoIndex{477477, "au"}, + CountryToIsoIndex{477511, "ie"}, + CountryToIsoIndex{477539, "ad"}, + CountryToIsoIndex{477564, "is"}, + CountryToIsoIndex{477595, "dz"}, + CountryToIsoIndex{477629, "al"}, + CountryToIsoIndex{477663, "at"}, + CountryToIsoIndex{477694, "au"}, + CountryToIsoIndex{477737, "it"}, + CountryToIsoIndex{477768, "ec"}, + CountryToIsoIndex{477799, "eg"}, + CountryToIsoIndex{477821, "eg"}, + CountryToIsoIndex{477846, "it"}, + CountryToIsoIndex{477868, "et"}, + CountryToIsoIndex{477908, "et"}, + CountryToIsoIndex{477948, "il"}, + CountryToIsoIndex{477979, "ci"}, + CountryToIsoIndex{478019, "iq"}, + CountryToIsoIndex{478038, "iq"}, + CountryToIsoIndex{478057, "ir"}, + CountryToIsoIndex{478076, "ir"}, + CountryToIsoIndex{478098, "id"}, + CountryToIsoIndex{478141, "id"}, + CountryToIsoIndex{478187, "es"}, + CountryToIsoIndex{478209, "il"}, + CountryToIsoIndex{478237, "ee"}, + CountryToIsoIndex{478271, "uy"}, + CountryToIsoIndex{478302, "ru"}, + CountryToIsoIndex{478327, "ru"}, + CountryToIsoIndex{478355, "uz"}, + CountryToIsoIndex{478398, "uz"}, + CountryToIsoIndex{478444, "gq"}, + CountryToIsoIndex{478500, "ec"}, + CountryToIsoIndex{478528, "er"}, + CountryToIsoIndex{478562, "er"}, + CountryToIsoIndex{478599, "ac"}, + CountryToIsoIndex{478657, "ag"}, + CountryToIsoIndex{478728, "ad"}, + CountryToIsoIndex{478756, "sv"}, + CountryToIsoIndex{478793, "sv"}, + CountryToIsoIndex{478837, "ee"}, + CountryToIsoIndex{478871, "om"}, + CountryToIsoIndex{478890, "om"}, + CountryToIsoIndex{478909, "qo"}, + CountryToIsoIndex{478979, "ke"}, + CountryToIsoIndex{478995, "cm"}, + CountryToIsoIndex{479023, "ca"}, + CountryToIsoIndex{479039, "ic"}, + CountryToIsoIndex{479080, "kh"}, + CountryToIsoIndex{479117, "cp"}, + CountryToIsoIndex{479163, "kg"}, + CountryToIsoIndex{479194, "kz"}, + CountryToIsoIndex{479222, "qa"}, + CountryToIsoIndex{479235, "bq"}, + CountryToIsoIndex{479288, "cv"}, + CountryToIsoIndex{479313, "cc"}, + CountryToIsoIndex{479353, "xk"}, + CountryToIsoIndex{479381, "km"}, + CountryToIsoIndex{479415, "co"}, + CountryToIsoIndex{479443, "cr"}, + CountryToIsoIndex{479480, "ci"}, + CountryToIsoIndex{479515, "kw"}, + CountryToIsoIndex{479534, "ky"}, + CountryToIsoIndex{479575, "cw"}, + CountryToIsoIndex{479612, "cu"}, + CountryToIsoIndex{479634, "ck"}, + CountryToIsoIndex{479672, "cd"}, + CountryToIsoIndex{479694, "cd"}, + CountryToIsoIndex{479790, "cg"}, + CountryToIsoIndex{479849, "cg"}, + CountryToIsoIndex{479902, "cx"}, + CountryToIsoIndex{479946, "hr"}, + CountryToIsoIndex{479980, "ki"}, + CountryToIsoIndex{480005, "cz"}, + CountryToIsoIndex{480052, "cz"}, + CountryToIsoIndex{480080, "td"}, + CountryToIsoIndex{480093, "cl"}, + CountryToIsoIndex{480109, "gm"}, + CountryToIsoIndex{480131, "gl"}, + CountryToIsoIndex{480159, "gr"}, + CountryToIsoIndex{480169, "gd"}, + CountryToIsoIndex{480191, "gh"}, + CountryToIsoIndex{480204, "ga"}, + CountryToIsoIndex{480223, "gy"}, + CountryToIsoIndex{480251, "gn"}, + CountryToIsoIndex{480264, "gw"}, + CountryToIsoIndex{480293, "gu"}, + CountryToIsoIndex{480309, "jp"}, + CountryToIsoIndex{480325, "jm"}, + CountryToIsoIndex{480344, "je"}, + CountryToIsoIndex{480360, "de"}, + CountryToIsoIndex{480379, "gi"}, + CountryToIsoIndex{480416, "dj"}, + CountryToIsoIndex{480438, "ge"}, + CountryToIsoIndex{480469, "jo"}, + CountryToIsoIndex{480494, "gg"}, + CountryToIsoIndex{480516, "gt"}, + CountryToIsoIndex{480544, "gp"}, + CountryToIsoIndex{480566, "sx"}, + CountryToIsoIndex{480594, "sg"}, + CountryToIsoIndex{480619, "es"}, + CountryToIsoIndex{480635, "sj"}, + CountryToIsoIndex{480705, "kn"}, + CountryToIsoIndex{480763, "pm"}, + CountryToIsoIndex{480840, "vc"}, + CountryToIsoIndex{480926, "bl"}, + CountryToIsoIndex{480969, "mf"}, + CountryToIsoIndex{481000, "lc"}, + CountryToIsoIndex{481034, "sh"}, + CountryToIsoIndex{481074, "sm"}, + CountryToIsoIndex{481105, "ws"}, + CountryToIsoIndex{481130, "ea"}, + CountryToIsoIndex{481191, "sk"}, + CountryToIsoIndex{481231, "si"}, + CountryToIsoIndex{481271, "rs"}, + CountryToIsoIndex{481299, "cy"}, + CountryToIsoIndex{481333, "so"}, + CountryToIsoIndex{481361, "sn"}, + CountryToIsoIndex{481383, "sl"}, + CountryToIsoIndex{481424, "sy"}, + CountryToIsoIndex{481452, "sd"}, + CountryToIsoIndex{481468, "sr"}, + CountryToIsoIndex{481490, "st"}, + CountryToIsoIndex{481561, "sa"}, + CountryToIsoIndex{481613, "sb"}, + CountryToIsoIndex{481665, "sc"}, + CountryToIsoIndex{481684, "ch"}, + CountryToIsoIndex{481712, "sz"}, + CountryToIsoIndex{481737, "se"}, + CountryToIsoIndex{481756, "zw"}, + CountryToIsoIndex{481781, "zm"}, + CountryToIsoIndex{481803, "tc"}, + CountryToIsoIndex{481885, "tz"}, + CountryToIsoIndex{481925, "cn"}, + CountryToIsoIndex{481941, "tj"}, + CountryToIsoIndex{481978, "tm"}, + CountryToIsoIndex{482024, "tk"}, + CountryToIsoIndex{482052, "tg"}, + CountryToIsoIndex{482071, "tn"}, + CountryToIsoIndex{482099, "tv"}, + CountryToIsoIndex{482121, "tr"}, + CountryToIsoIndex{482137, "gs"}, + CountryToIsoIndex{482287, "ss"}, + CountryToIsoIndex{482319, "kr"}, + CountryToIsoIndex{482362, "mp"}, + CountryToIsoIndex{482444, "za"}, + CountryToIsoIndex{482478, "to"}, + CountryToIsoIndex{482497, "ta"}, + CountryToIsoIndex{482548, "tt"}, + CountryToIsoIndex{482616, "tw"}, + CountryToIsoIndex{482641, "th"}, + CountryToIsoIndex{482660, "dk"}, + CountryToIsoIndex{482685, "do"}, + CountryToIsoIndex{482716, "dm"}, + CountryToIsoIndex{482744, "dg"}, + CountryToIsoIndex{482784, "na"}, + CountryToIsoIndex{482815, "nc"}, + CountryToIsoIndex{482871, "nz"}, + CountryToIsoIndex{482899, "nl"}, + CountryToIsoIndex{482924, "ne"}, + CountryToIsoIndex{482949, "ng"}, + CountryToIsoIndex{482995, "ni"}, + CountryToIsoIndex{483023, "np"}, + CountryToIsoIndex{483039, "nu"}, + CountryToIsoIndex{483058, "nf"}, + CountryToIsoIndex{483098, "nr"}, + CountryToIsoIndex{483120, "no"}, + CountryToIsoIndex{483139, "pn"}, + CountryToIsoIndex{483194, "pa"}, + CountryToIsoIndex{483216, "pw"}, + CountryToIsoIndex{483235, "pk"}, + CountryToIsoIndex{483263, "pg"}, + CountryToIsoIndex{483307, "py"}, + CountryToIsoIndex{483332, "ps"}, + CountryToIsoIndex{483369, "ps"}, + CountryToIsoIndex{483431, "pl"}, + CountryToIsoIndex{483450, "pe"}, + CountryToIsoIndex{483466, "pr"}, + CountryToIsoIndex{483503, "pt"}, + CountryToIsoIndex{483528, "fr"}, + CountryToIsoIndex{483550, "gf"}, + CountryToIsoIndex{483591, "tf"}, + CountryToIsoIndex{483684, "pf"}, + CountryToIsoIndex{483746, "fi"}, + CountryToIsoIndex{483765, "fo"}, + CountryToIsoIndex{483821, "ph"}, + CountryToIsoIndex{483852, "fj"}, + CountryToIsoIndex{483868, "fk"}, + CountryToIsoIndex{483918, "fk"}, + CountryToIsoIndex{484026, "ve"}, + CountryToIsoIndex{484060, "vu"}, + CountryToIsoIndex{484082, "cf"}, + CountryToIsoIndex{484148, "va"}, + CountryToIsoIndex{484188, "vn"}, + CountryToIsoIndex{484213, "vg"}, + CountryToIsoIndex{484285, "io"}, + CountryToIsoIndex{484401, "bd"}, + CountryToIsoIndex{484444, "be"}, + CountryToIsoIndex{484478, "br"}, + CountryToIsoIndex{484497, "bn"}, + CountryToIsoIndex{484525, "bz"}, + CountryToIsoIndex{484541, "bs"}, + CountryToIsoIndex{484563, "bf"}, + CountryToIsoIndex{484607, "bb"}, + CountryToIsoIndex{484641, "bm"}, + CountryToIsoIndex{484663, "bh"}, + CountryToIsoIndex{484685, "bo"}, + CountryToIsoIndex{484722, "bj"}, + CountryToIsoIndex{484738, "by"}, + CountryToIsoIndex{484763, "bt"}, + CountryToIsoIndex{484779, "bv"}, + CountryToIsoIndex{484813, "bi"}, + CountryToIsoIndex{484838, "bg"}, + CountryToIsoIndex{484878, "ba"}, + CountryToIsoIndex{484964, "bw"}, + CountryToIsoIndex{484992, "mo"}, + CountryToIsoIndex{485011, "mo"}, + CountryToIsoIndex{485060, "mx"}, + CountryToIsoIndex{485088, "mk"}, + CountryToIsoIndex{485134, "mk"}, + CountryToIsoIndex{485320, "mg"}, + CountryToIsoIndex{485351, "im"}, + CountryToIsoIndex{485379, "my"}, + CountryToIsoIndex{485404, "mq"}, + CountryToIsoIndex{485429, "mh"}, + CountryToIsoIndex{485473, "mw"}, + CountryToIsoIndex{485492, "ml"}, + CountryToIsoIndex{485505, "fm"}, + CountryToIsoIndex{485551, "mz"}, + CountryToIsoIndex{485579, "mc"}, + CountryToIsoIndex{485604, "yt"}, + CountryToIsoIndex{485623, "ms"}, + CountryToIsoIndex{485657, "mu"}, + CountryToIsoIndex{485682, "mt"}, + CountryToIsoIndex{485704, "md"}, + CountryToIsoIndex{485735, "ma"}, + CountryToIsoIndex{485766, "mr"}, + CountryToIsoIndex{485812, "mv"}, + CountryToIsoIndex{485846, "mm"}, + CountryToIsoIndex{485865, "kp"}, + CountryToIsoIndex{485911, "mn"}, + CountryToIsoIndex{485954, "me"}, + CountryToIsoIndex{485994, "ye"}, + CountryToIsoIndex{486010, "ua"}, + CountryToIsoIndex{486035, "gb"}, + CountryToIsoIndex{486048, "ug"}, + CountryToIsoIndex{486076, "gb"}, + CountryToIsoIndex{486131, "um"}, + CountryToIsoIndex{486229, "us"}, + CountryToIsoIndex{486251, "vi"}, + CountryToIsoIndex{486320, "ae"}, + CountryToIsoIndex{486342, "rw"}, + CountryToIsoIndex{486361, "ro"}, + CountryToIsoIndex{486398, "re"}, + CountryToIsoIndex{486426, "ru"}, + CountryToIsoIndex{486445, "lb"}, + CountryToIsoIndex{486470, "li"}, + CountryToIsoIndex{486507, "ly"}, + CountryToIsoIndex{486529, "lt"}, + CountryToIsoIndex{486572, "lv"}, + CountryToIsoIndex{486600, "la"}, + CountryToIsoIndex{486616, "lr"}, + CountryToIsoIndex{486659, "ls"}, + CountryToIsoIndex{486684, "lu"}, + CountryToIsoIndex{486709, "wf"}, + CountryToIsoIndex{486771, "qo"}, + CountryToIsoIndex{486882, "lk"}, + CountryToIsoIndex{486913, "hm"}, + CountryToIsoIndex{487007, "hu"}, + CountryToIsoIndex{487029, "ht"}, + CountryToIsoIndex{487042, "hk"}, + CountryToIsoIndex{487073, "hk"}, + CountryToIsoIndex{487134, "hn"}, + CountryToIsoIndex{487171, "ee"}, + CountryToIsoIndex{487214, "id"}, + CountryToIsoIndex{487254, "il"}, + CountryToIsoIndex{487276, "ac"}, + CountryToIsoIndex{487325, "az"}, + CountryToIsoIndex{487362, "eh"}, + CountryToIsoIndex{487397, "aq"}, + CountryToIsoIndex{487422, "ao"}, + CountryToIsoIndex{487447, "ai"}, + CountryToIsoIndex{487469, "ag"}, + CountryToIsoIndex{487528, "ad"}, + CountryToIsoIndex{487553, "as"}, + CountryToIsoIndex{487603, "us"}, + CountryToIsoIndex{487662, "dz"}, + CountryToIsoIndex{487708, "sv"}, + CountryToIsoIndex{487751, "al"}, + CountryToIsoIndex{487794, "tl"}, + CountryToIsoIndex{487825, "ar"}, + CountryToIsoIndex{487862, "af"}, + CountryToIsoIndex{487902, "am"}, + CountryToIsoIndex{487936, "aw"}, + CountryToIsoIndex{487961, "ax"}, + CountryToIsoIndex{487995, "in"}, + CountryToIsoIndex{488017, "is"}, + CountryToIsoIndex{488045, "ci"}, + CountryToIsoIndex{488088, "ie"}, + CountryToIsoIndex{488119, "om"}, + CountryToIsoIndex{488138, "gq"}, + CountryToIsoIndex{488173, "ec"}, + CountryToIsoIndex{488198, "eg"}, + CountryToIsoIndex{488217, "it"}, + CountryToIsoIndex{488233, "iq"}, + CountryToIsoIndex{488249, "ir"}, + CountryToIsoIndex{488265, "er"}, + CountryToIsoIndex{488299, "et"}, + CountryToIsoIndex{488342, "uz"}, + CountryToIsoIndex{488379, "uy"}, + CountryToIsoIndex{488401, "ez"}, + CountryToIsoIndex{488426, "at"}, + CountryToIsoIndex{488454, "au"}, + CountryToIsoIndex{488479, "au"}, + CountryToIsoIndex{488507, "at"}, + CountryToIsoIndex{488529, "af"}, + CountryToIsoIndex{488554, "az"}, + CountryToIsoIndex{488588, "ax"}, + CountryToIsoIndex{488638, "al"}, + CountryToIsoIndex{488663, "dz"}, + CountryToIsoIndex{488682, "ac"}, + CountryToIsoIndex{488732, "as"}, + CountryToIsoIndex{488773, "us"}, + CountryToIsoIndex{488851, "ai"}, + CountryToIsoIndex{488873, "ao"}, + CountryToIsoIndex{488892, "ad"}, + CountryToIsoIndex{488911, "aq"}, + CountryToIsoIndex{488942, "ag"}, + CountryToIsoIndex{488993, "ae"}, + CountryToIsoIndex{489083, "ar"}, + CountryToIsoIndex{489111, "aw"}, + CountryToIsoIndex{489127, "tl"}, + CountryToIsoIndex{489177, "us"}, + CountryToIsoIndex{489187, "vi"}, + CountryToIsoIndex{489257, "um"}, + CountryToIsoIndex{489324, "nz"}, + CountryToIsoIndex{489365, "nc"}, + CountryToIsoIndex{489409, "bd"}, + CountryToIsoIndex{489440, "bb"}, + CountryToIsoIndex{489468, "bs"}, + CountryToIsoIndex{489518, "bh"}, + CountryToIsoIndex{489543, "by"}, + CountryToIsoIndex{489568, "be"}, + CountryToIsoIndex{489587, "bz"}, + CountryToIsoIndex{489606, "bj"}, + CountryToIsoIndex{489625, "bm"}, + CountryToIsoIndex{489647, "bo"}, + CountryToIsoIndex{489669, "ba"}, + CountryToIsoIndex{489729, "bw"}, + CountryToIsoIndex{489754, "br"}, + CountryToIsoIndex{489779, "vg"}, + CountryToIsoIndex{489863, "io"}, + CountryToIsoIndex{489972, "bn"}, + CountryToIsoIndex{489991, "bv"}, + CountryToIsoIndex{490004, "bg"}, + CountryToIsoIndex{490032, "bf"}, + CountryToIsoIndex{490067, "bi"}, + CountryToIsoIndex{490089, "bt"}, + CountryToIsoIndex{490108, "ga"}, + CountryToIsoIndex{490127, "gb"}, + CountryToIsoIndex{490154, "gb"}, + CountryToIsoIndex{490213, "gy"}, + CountryToIsoIndex{490232, "gm"}, + CountryToIsoIndex{490251, "gh"}, + CountryToIsoIndex{490264, "de"}, + CountryToIsoIndex{490289, "gg"}, + CountryToIsoIndex{490308, "gp"}, + CountryToIsoIndex{490336, "gt"}, + CountryToIsoIndex{490364, "gn"}, + CountryToIsoIndex{490383, "gw"}, + CountryToIsoIndex{490418, "gi"}, + CountryToIsoIndex{490449, "gd"}, + CountryToIsoIndex{490471, "gl"}, + CountryToIsoIndex{490502, "gu"}, + CountryToIsoIndex{490518, "dk"}, + CountryToIsoIndex{490534, "eh"}, + CountryToIsoIndex{490578, "dg"}, + CountryToIsoIndex{490613, "dm"}, + CountryToIsoIndex{490638, "do"}, + CountryToIsoIndex{490703, "eg"}, + CountryToIsoIndex{490725, "ez"}, + CountryToIsoIndex{490750, "et"}, + CountryToIsoIndex{490772, "ec"}, + CountryToIsoIndex{490797, "gq"}, + CountryToIsoIndex{490847, "iq"}, + CountryToIsoIndex{490863, "er"}, + CountryToIsoIndex{490885, "es"}, + CountryToIsoIndex{490910, "ee"}, + CountryToIsoIndex{490935, "vu"}, + CountryToIsoIndex{490957, "ve"}, + CountryToIsoIndex{490985, "vn"}, + CountryToIsoIndex{491010, "zm"}, + CountryToIsoIndex{491029, "zw"}, + CountryToIsoIndex{491054, "tc"}, + CountryToIsoIndex{491123, "tr"}, + CountryToIsoIndex{491145, "tm"}, + CountryToIsoIndex{491176, "jm"}, + CountryToIsoIndex{491198, "jp"}, + CountryToIsoIndex{491220, "ye"}, + CountryToIsoIndex{491239, "in"}, + CountryToIsoIndex{491261, "id"}, + CountryToIsoIndex{491289, "jo"}, + CountryToIsoIndex{491314, "ir"}, + CountryToIsoIndex{491330, "ie"}, + CountryToIsoIndex{491355, "is"}, + CountryToIsoIndex{491380, "il"}, + CountryToIsoIndex{491402, "it"}, + CountryToIsoIndex{491421, "cv"}, + CountryToIsoIndex{491450, "ky"}, + CountryToIsoIndex{491503, "kh"}, + CountryToIsoIndex{491525, "cm"}, + CountryToIsoIndex{491550, "ca"}, + CountryToIsoIndex{491569, "ic"}, + CountryToIsoIndex{491619, "bq"}, + CountryToIsoIndex{491678, "qa"}, + CountryToIsoIndex{491697, "ke"}, + CountryToIsoIndex{491713, "cy"}, + CountryToIsoIndex{491738, "ki"}, + CountryToIsoIndex{491763, "cw"}, + CountryToIsoIndex{491788, "cp"}, + CountryToIsoIndex{491844, "co"}, + CountryToIsoIndex{491869, "km"}, + CountryToIsoIndex{491919, "cd"}, + CountryToIsoIndex{492024, "cg"}, + CountryToIsoIndex{492073, "cg"}, + CountryToIsoIndex{492119, "cd"}, + CountryToIsoIndex{492159, "xk"}, + CountryToIsoIndex{492178, "cr"}, + CountryToIsoIndex{492207, "ci"}, + CountryToIsoIndex{492239, "cu"}, + CountryToIsoIndex{492252, "ck"}, + CountryToIsoIndex{492296, "la"}, + CountryToIsoIndex{492312, "lv"}, + CountryToIsoIndex{492331, "ls"}, + CountryToIsoIndex{492350, "lb"}, + CountryToIsoIndex{492369, "lr"}, + CountryToIsoIndex{492391, "ly"}, + CountryToIsoIndex{492407, "lt"}, + CountryToIsoIndex{492423, "li"}, + CountryToIsoIndex{492460, "lu"}, + CountryToIsoIndex{492494, "mg"}, + CountryToIsoIndex{492528, "mu"}, + CountryToIsoIndex{492550, "mr"}, + CountryToIsoIndex{492581, "yt"}, + CountryToIsoIndex{492600, "mo"}, + CountryToIsoIndex{492616, "mo"}, + CountryToIsoIndex{492753, "mk"}, + CountryToIsoIndex{492781, "mk"}, + CountryToIsoIndex{492923, "mw"}, + CountryToIsoIndex{492942, "my"}, + CountryToIsoIndex{492967, "mv"}, + CountryToIsoIndex{492995, "ml"}, + CountryToIsoIndex{493008, "mt"}, + CountryToIsoIndex{493024, "ma"}, + CountryToIsoIndex{493043, "mq"}, + CountryToIsoIndex{493071, "mh"}, + CountryToIsoIndex{493124, "im"}, + CountryToIsoIndex{493162, "mx"}, + CountryToIsoIndex{493184, "mm"}, + CountryToIsoIndex{493227, "fm"}, + CountryToIsoIndex{493258, "mz"}, + CountryToIsoIndex{493286, "md"}, + CountryToIsoIndex{493308, "mc"}, + CountryToIsoIndex{493327, "ms"}, + CountryToIsoIndex{493355, "me"}, + CountryToIsoIndex{493386, "mn"}, + CountryToIsoIndex{493414, "na"}, + CountryToIsoIndex{493436, "nr"}, + CountryToIsoIndex{493452, "np"}, + CountryToIsoIndex{493471, "ne"}, + CountryToIsoIndex{493490, "ng"}, + CountryToIsoIndex{493512, "nl"}, + CountryToIsoIndex{493549, "ni"}, + CountryToIsoIndex{493577, "nu"}, + CountryToIsoIndex{493590, "no"}, + CountryToIsoIndex{493615, "nf"}, + CountryToIsoIndex{493665, "om"}, + CountryToIsoIndex{493681, "pk"}, + CountryToIsoIndex{493709, "pw"}, + CountryToIsoIndex{493725, "ps"}, + CountryToIsoIndex{493753, "ps"}, + CountryToIsoIndex{493818, "pa"}, + CountryToIsoIndex{493837, "pg"}, + CountryToIsoIndex{493888, "py"}, + CountryToIsoIndex{493913, "pe"}, + CountryToIsoIndex{493926, "pn"}, + CountryToIsoIndex{493982, "pl"}, + CountryToIsoIndex{494007, "pt"}, + CountryToIsoIndex{494038, "pr"}, + CountryToIsoIndex{494070, "re"}, + CountryToIsoIndex{494095, "rw"}, + CountryToIsoIndex{494114, "ro"}, + CountryToIsoIndex{494139, "ru"}, + CountryToIsoIndex{494158, "gr"}, + CountryToIsoIndex{494189, "sv"}, + CountryToIsoIndex{494217, "ws"}, + CountryToIsoIndex{494233, "za"}, + CountryToIsoIndex{494308, "kr"}, + CountryToIsoIndex{494346, "ss"}, + CountryToIsoIndex{494387, "gs"}, + CountryToIsoIndex{494513, "sm"}, + CountryToIsoIndex{494542, "st"}, + CountryToIsoIndex{494597, "sa"}, + CountryToIsoIndex{494638, "fr"}, + CountryToIsoIndex{494669, "gf"}, + CountryToIsoIndex{494722, "pf"}, + CountryToIsoIndex{494784, "ge"}, + CountryToIsoIndex{494815, "sc"}, + CountryToIsoIndex{494868, "bl"}, + CountryToIsoIndex{494903, "mf"}, + CountryToIsoIndex{494935, "pm"}, + CountryToIsoIndex{494993, "sn"}, + CountryToIsoIndex{495018, "vc"}, + CountryToIsoIndex{495097, "kn"}, + CountryToIsoIndex{495152, "lc"}, + CountryToIsoIndex{495181, "rs"}, + CountryToIsoIndex{495203, "ea"}, + CountryToIsoIndex{495245, "sz"}, + CountryToIsoIndex{495276, "sl"}, + CountryToIsoIndex{495308, "sg"}, + CountryToIsoIndex{495336, "sx"}, + CountryToIsoIndex{495371, "sy"}, + CountryToIsoIndex{495387, "sk"}, + CountryToIsoIndex{495415, "si"}, + CountryToIsoIndex{495440, "sb"}, + CountryToIsoIndex{495496, "so"}, + CountryToIsoIndex{495515, "am"}, + CountryToIsoIndex{495537, "ci"}, + CountryToIsoIndex{495597, "sd"}, + CountryToIsoIndex{495616, "sr"}, + CountryToIsoIndex{495641, "tw"}, + CountryToIsoIndex{495663, "th"}, + CountryToIsoIndex{495688, "tz"}, + CountryToIsoIndex{495713, "tj"}, + CountryToIsoIndex{495738, "tl"}, + CountryToIsoIndex{495770, "tg"}, + CountryToIsoIndex{495783, "tk"}, + CountryToIsoIndex{495805, "to"}, + CountryToIsoIndex{495821, "tt"}, + CountryToIsoIndex{495875, "ta"}, + CountryToIsoIndex{495920, "tv"}, + CountryToIsoIndex{495939, "tn"}, + CountryToIsoIndex{495958, "ug"}, + CountryToIsoIndex{495977, "uz"}, + CountryToIsoIndex{496002, "ua"}, + CountryToIsoIndex{496024, "hu"}, + CountryToIsoIndex{496046, "wf"}, + CountryToIsoIndex{496091, "uy"}, + CountryToIsoIndex{496113, "fo"}, + CountryToIsoIndex{496163, "ph"}, + CountryToIsoIndex{496194, "fi"}, + CountryToIsoIndex{496213, "fj"}, + CountryToIsoIndex{496226, "fk"}, + CountryToIsoIndex{496285, "fk"}, + CountryToIsoIndex{496399, "tf"}, + CountryToIsoIndex{496486, "va"}, + CountryToIsoIndex{496530, "cc"}, + CountryToIsoIndex{496607, "kw"}, + CountryToIsoIndex{496629, "kz"}, + CountryToIsoIndex{496654, "kg"}, + CountryToIsoIndex{496682, "se"}, + CountryToIsoIndex{496704, "ch"}, + CountryToIsoIndex{496732, "cx"}, + CountryToIsoIndex{496770, "qo"}, + CountryToIsoIndex{496817, "sj"}, + CountryToIsoIndex{496887, "lk"}, + CountryToIsoIndex{496913, "td"}, + CountryToIsoIndex{496926, "cz"}, + CountryToIsoIndex{496945, "cz"}, + CountryToIsoIndex{496998, "cl"}, + CountryToIsoIndex{497011, "cn"}, + CountryToIsoIndex{497030, "kp"}, + CountryToIsoIndex{497071, "mp"}, + CountryToIsoIndex{497149, "cf"}, + CountryToIsoIndex{497233, "sh"}, + CountryToIsoIndex{497293, "hr"}, + CountryToIsoIndex{497318, "je"}, + CountryToIsoIndex{497334, "dj"}, + CountryToIsoIndex{497353, "ht"}, + CountryToIsoIndex{497369, "hm"}, + CountryToIsoIndex{497454, "hn"}, + CountryToIsoIndex{497482, "hk"}, + CountryToIsoIndex{497507, "hk"}, + CountryToIsoIndex{497653, "hu"}, + CountryToIsoIndex{497666, "ht"}, + CountryToIsoIndex{497676, "in"}, + CountryToIsoIndex{497686, "in"}, + CountryToIsoIndex{497696, "hn"}, + CountryToIsoIndex{497712, "hk"}, + CountryToIsoIndex{497732, "hk"}, + CountryToIsoIndex{497801, "lu"}, + CountryToIsoIndex{497823, "ly"}, + CountryToIsoIndex{497833, "lb"}, + CountryToIsoIndex{497846, "lt"}, + CountryToIsoIndex{497862, "li"}, + CountryToIsoIndex{497887, "lv"}, + CountryToIsoIndex{497900, "la"}, + CountryToIsoIndex{497910, "lr"}, + CountryToIsoIndex{497926, "ls"}, + CountryToIsoIndex{497936, "ae"}, + CountryToIsoIndex{497972, "mk"}, + CountryToIsoIndex{497988, "mk"}, + CountryToIsoIndex{498004, "mk"}, + CountryToIsoIndex{498086, "fm"}, + CountryToIsoIndex{498105, "ml"}, + CountryToIsoIndex{498112, "mw"}, + CountryToIsoIndex{498122, "my"}, + CountryToIsoIndex{498135, "mt"}, + CountryToIsoIndex{498145, "mv"}, + CountryToIsoIndex{498161, "mu"}, + CountryToIsoIndex{498174, "mh"}, + CountryToIsoIndex{498203, "mq"}, + CountryToIsoIndex{498219, "cf"}, + CountryToIsoIndex{498264, "mk"}, + CountryToIsoIndex{498280, "mo"}, + CountryToIsoIndex{498290, "mo"}, + CountryToIsoIndex{498349, "mo"}, + CountryToIsoIndex{498359, "mo"}, + CountryToIsoIndex{498369, "mm"}, + CountryToIsoIndex{498385, "mm"}, + CountryToIsoIndex{498412, "mg"}, + CountryToIsoIndex{498431, "mx"}, + CountryToIsoIndex{498444, "yt"}, + CountryToIsoIndex{498457, "ps"}, + CountryToIsoIndex{498489, "tl"}, + CountryToIsoIndex{498512, "tl"}, + CountryToIsoIndex{498535, "tl"}, + CountryToIsoIndex{498558, "eh"}, + CountryToIsoIndex{498584, "md"}, + CountryToIsoIndex{498597, "mu"}, + CountryToIsoIndex{498610, "mr"}, + CountryToIsoIndex{498626, "ma"}, + CountryToIsoIndex{498636, "mc"}, + CountryToIsoIndex{498646, "me"}, + CountryToIsoIndex{498665, "me"}, + CountryToIsoIndex{498684, "ms"}, + CountryToIsoIndex{498703, "mn"}, + CountryToIsoIndex{498719, "mz"}, + CountryToIsoIndex{498735, "ru"}, + CountryToIsoIndex{498745, "rw"}, + CountryToIsoIndex{498758, "re"}, + CountryToIsoIndex{498774, "ru"}, + CountryToIsoIndex{498784, "ro"}, + CountryToIsoIndex{498797, "sb"}, + CountryToIsoIndex{498820, "kp"}, + CountryToIsoIndex{498840, "rs"}, + CountryToIsoIndex{498853, "rs"}, + CountryToIsoIndex{498866, "so"}, + CountryToIsoIndex{498876, "sr"}, + CountryToIsoIndex{498889, "sz"}, + CountryToIsoIndex{498908, "sd"}, + CountryToIsoIndex{498918, "lk"}, + CountryToIsoIndex{498934, "sy"}, + CountryToIsoIndex{498944, "sc"}, + CountryToIsoIndex{498957, "sx"}, + CountryToIsoIndex{498980, "sx"}, + CountryToIsoIndex{499003, "sg"}, + CountryToIsoIndex{499019, "ea"}, + CountryToIsoIndex{499045, "ws"}, + CountryToIsoIndex{499055, "sm"}, + CountryToIsoIndex{499072, "st"}, + CountryToIsoIndex{499109, "st"}, + CountryToIsoIndex{499145, "sa"}, + CountryToIsoIndex{499167, "cy"}, + CountryToIsoIndex{499183, "sl"}, + CountryToIsoIndex{499199, "sn"}, + CountryToIsoIndex{499212, "sh"}, + CountryToIsoIndex{499232, "lc"}, + CountryToIsoIndex{499252, "mf"}, + CountryToIsoIndex{499275, "ea"}, + CountryToIsoIndex{499298, "sk"}, + CountryToIsoIndex{499314, "si"}, + CountryToIsoIndex{499330, "sj"}, + CountryToIsoIndex{499373, "sj"}, + CountryToIsoIndex{499425, "ch"}, + CountryToIsoIndex{499447, "se"}, + CountryToIsoIndex{499460, "sa"}, + CountryToIsoIndex{499480, "es"}, + CountryToIsoIndex{499490, "qa"}, + CountryToIsoIndex{499500, "bl"}, + CountryToIsoIndex{499526, "bl"}, + CountryToIsoIndex{499555, "vc"}, + CountryToIsoIndex{499607, "vc"}, + CountryToIsoIndex{499658, "kn"}, + CountryToIsoIndex{499695, "kn"}, + CountryToIsoIndex{499731, "pm"}, + CountryToIsoIndex{499774, "pm"}, + CountryToIsoIndex{499813, "bz"}, + CountryToIsoIndex{499823, "bt"}, + CountryToIsoIndex{499836, "bg"}, + CountryToIsoIndex{499852, "bf"}, + CountryToIsoIndex{499872, "bv"}, + CountryToIsoIndex{499892, "gw"}, + CountryToIsoIndex{499902, "bs"}, + CountryToIsoIndex{499915, "bh"}, + CountryToIsoIndex{499928, "bb"}, + CountryToIsoIndex{499944, "bd"}, + CountryToIsoIndex{499963, "bz"}, + CountryToIsoIndex{499973, "by"}, + CountryToIsoIndex{499986, "be"}, + CountryToIsoIndex{499999, "bm"}, + CountryToIsoIndex{500012, "bj"}, + CountryToIsoIndex{500022, "bn"}, + CountryToIsoIndex{500032, "bi"}, + CountryToIsoIndex{500045, "br"}, + CountryToIsoIndex{500058, "bo"}, + CountryToIsoIndex{500071, "ba"}, + CountryToIsoIndex{500113, "bw"}, + CountryToIsoIndex{500129, "ba"}, + CountryToIsoIndex{500167, "vi"}, + CountryToIsoIndex{500206, "vg"}, + CountryToIsoIndex{500248, "va"}, + CountryToIsoIndex{500261, "va"}, + CountryToIsoIndex{500284, "vu"}, + CountryToIsoIndex{500297, "vn"}, + CountryToIsoIndex{500310, "ve"}, + CountryToIsoIndex{500326, "tr"}, + CountryToIsoIndex{500336, "tm"}, + CountryToIsoIndex{500361, "tv"}, + CountryToIsoIndex{500371, "tn"}, + CountryToIsoIndex{500384, "tz"}, + CountryToIsoIndex{500400, "th"}, + CountryToIsoIndex{500416, "tw"}, + CountryToIsoIndex{500429, "tj"}, + CountryToIsoIndex{500448, "ta"}, + CountryToIsoIndex{500478, "ta"}, + CountryToIsoIndex{500505, "tt"}, + CountryToIsoIndex{500537, "tt"}, + CountryToIsoIndex{500570, "to"}, + CountryToIsoIndex{500580, "tk"}, + CountryToIsoIndex{500593, "tg"}, + CountryToIsoIndex{500600, "cl"}, + CountryToIsoIndex{500607, "cn"}, + CountryToIsoIndex{500617, "td"}, + CountryToIsoIndex{500624, "cz"}, + CountryToIsoIndex{500637, "cz"}, + CountryToIsoIndex{500660, "cz"}, + CountryToIsoIndex{500683, "nu"}, + CountryToIsoIndex{500693, "ni"}, + CountryToIsoIndex{500706, "nc"}, + CountryToIsoIndex{500729, "nz"}, + CountryToIsoIndex{500749, "ne"}, + CountryToIsoIndex{500759, "na"}, + CountryToIsoIndex{500772, "nr"}, + CountryToIsoIndex{500782, "io"}, + CountryToIsoIndex{500847, "as"}, + CountryToIsoIndex{500877, "um"}, + CountryToIsoIndex{500933, "tf"}, + CountryToIsoIndex{500985, "gf"}, + CountryToIsoIndex{501018, "pf"}, + CountryToIsoIndex{501057, "ng"}, + CountryToIsoIndex{501073, "nl"}, + CountryToIsoIndex{501092, "nl"}, + CountryToIsoIndex{501114, "np"}, + CountryToIsoIndex{501124, "no"}, + CountryToIsoIndex{501134, "no"}, + CountryToIsoIndex{501147, "nf"}, + CountryToIsoIndex{501173, "al"}, + CountryToIsoIndex{501189, "dz"}, + CountryToIsoIndex{501205, "us"}, + CountryToIsoIndex{501218, "aw"}, + CountryToIsoIndex{501228, "am"}, + CountryToIsoIndex{501244, "ar"}, + CountryToIsoIndex{501263, "ac"}, + CountryToIsoIndex{501289, "ag"}, + CountryToIsoIndex{501319, "aq"}, + CountryToIsoIndex{501341, "ad"}, + CountryToIsoIndex{501354, "ai"}, + CountryToIsoIndex{501370, "ai"}, + CountryToIsoIndex{501386, "ao"}, + CountryToIsoIndex{501399, "au"}, + CountryToIsoIndex{501421, "au"}, + CountryToIsoIndex{501443, "qo"}, + CountryToIsoIndex{501478, "az"}, + CountryToIsoIndex{501497, "ie"}, + CountryToIsoIndex{501516, "im"}, + CountryToIsoIndex{501540, "is"}, + CountryToIsoIndex{501559, "ci"}, + CountryToIsoIndex{501582, "ci"}, + CountryToIsoIndex{501604, "af"}, + CountryToIsoIndex{501626, "uy"}, + CountryToIsoIndex{501639, "uz"}, + CountryToIsoIndex{501661, "iq"}, + CountryToIsoIndex{501671, "ir"}, + CountryToIsoIndex{501681, "et"}, + CountryToIsoIndex{501697, "id"}, + CountryToIsoIndex{501716, "gq"}, + CountryToIsoIndex{501742, "ec"}, + CountryToIsoIndex{501755, "ag"}, + CountryToIsoIndex{501784, "sv"}, + CountryToIsoIndex{501807, "er"}, + CountryToIsoIndex{501820, "ee"}, + CountryToIsoIndex{501836, "il"}, + CountryToIsoIndex{501852, "gb"}, + CountryToIsoIndex{501868, "om"}, + CountryToIsoIndex{501878, "at"}, + CountryToIsoIndex{501894, "cw"}, + CountryToIsoIndex{501907, "cw"}, + CountryToIsoIndex{501920, "cu"}, + CountryToIsoIndex{501927, "ck"}, + CountryToIsoIndex{501947, "ki"}, + CountryToIsoIndex{501960, "kg"}, + CountryToIsoIndex{501979, "kg"}, + CountryToIsoIndex{501998, "cm"}, + CountryToIsoIndex{502011, "kh"}, + CountryToIsoIndex{502027, "bq"}, + CountryToIsoIndex{502065, "ca"}, + CountryToIsoIndex{502075, "kz"}, + CountryToIsoIndex{502094, "ky"}, + CountryToIsoIndex{502120, "ke"}, + CountryToIsoIndex{502130, "cv"}, + CountryToIsoIndex{502147, "cp"}, + CountryToIsoIndex{502176, "hr"}, + CountryToIsoIndex{502192, "kw"}, + CountryToIsoIndex{502202, "co"}, + CountryToIsoIndex{502218, "km"}, + CountryToIsoIndex{502231, "cr"}, + CountryToIsoIndex{502248, "cr"}, + CountryToIsoIndex{502264, "xk"}, + CountryToIsoIndex{502274, "ci"}, + CountryToIsoIndex{502291, "cd"}, + CountryToIsoIndex{502301, "cg"}, + CountryToIsoIndex{502329, "cd"}, + CountryToIsoIndex{502389, "cg"}, + CountryToIsoIndex{502415, "cg"}, + CountryToIsoIndex{502441, "cd"}, + CountryToIsoIndex{502464, "cc"}, + CountryToIsoIndex{502500, "cc"}, + CountryToIsoIndex{502537, "qa"}, + CountryToIsoIndex{502547, "hm"}, + CountryToIsoIndex{502605, "qo"}, + CountryToIsoIndex{502632, "wf"}, + CountryToIsoIndex{502672, "wf"}, + CountryToIsoIndex{502698, "zw"}, + CountryToIsoIndex{502711, "zm"}, + CountryToIsoIndex{502724, "ye"}, + CountryToIsoIndex{502734, "cf"}, + CountryToIsoIndex{502785, "mp"}, + CountryToIsoIndex{502827, "io"}, + CountryToIsoIndex{502882, "ae"}, + CountryToIsoIndex{502927, "tc"}, + CountryToIsoIndex{502975, "ax"}, + CountryToIsoIndex{503004, "as"}, + CountryToIsoIndex{503030, "vi"}, + CountryToIsoIndex{503072, "ez"}, + CountryToIsoIndex{503095, "vg"}, + CountryToIsoIndex{503140, "bq"}, + CountryToIsoIndex{503181, "ic"}, + CountryToIsoIndex{503207, "um"}, + CountryToIsoIndex{503258, "cx"}, + CountryToIsoIndex{503278, "tf"}, + CountryToIsoIndex{503323, "gf"}, + CountryToIsoIndex{503355, "pf"}, + CountryToIsoIndex{503390, "fo"}, + CountryToIsoIndex{503413, "ps"}, + CountryToIsoIndex{503442, "fk"}, + CountryToIsoIndex{503474, "us"}, + CountryToIsoIndex{503485, "us"}, + CountryToIsoIndex{503514, "gb"}, + CountryToIsoIndex{503546, "us"}, + CountryToIsoIndex{503556, "gb"}, + CountryToIsoIndex{503566, "ua"}, + CountryToIsoIndex{503579, "uz"}, + CountryToIsoIndex{503601, "ug"}, + CountryToIsoIndex{503614, "hm"}, + CountryToIsoIndex{503662, "mp"}, + CountryToIsoIndex{503701, "bv"}, + CountryToIsoIndex{503727, "tc"}, + CountryToIsoIndex{503769, "ax"}, + CountryToIsoIndex{503795, "ck"}, + CountryToIsoIndex{503815, "ic"}, + CountryToIsoIndex{503838, "cx"}, + CountryToIsoIndex{503870, "gs"}, + CountryToIsoIndex{503938, "fo"}, + CountryToIsoIndex{503961, "fk"}, + CountryToIsoIndex{503990, "ss"}, + CountryToIsoIndex{504010, "za"}, + CountryToIsoIndex{504033, "kr"}, + CountryToIsoIndex{504053, "gs"}, + CountryToIsoIndex{504125, "dg"}, + CountryToIsoIndex{504148, "dg"}, + CountryToIsoIndex{504171, "dk"}, + CountryToIsoIndex{504187, "do"}, + CountryToIsoIndex{504216, "do"}, + CountryToIsoIndex{504248, "dm"}, + CountryToIsoIndex{504261, "de"}, + CountryToIsoIndex{504274, "je"}, + CountryToIsoIndex{504284, "dj"}, + CountryToIsoIndex{504294, "gi"}, + CountryToIsoIndex{504313, "jm"}, + CountryToIsoIndex{504326, "jp"}, + CountryToIsoIndex{504336, "jo"}, + CountryToIsoIndex{504349, "ge"}, + CountryToIsoIndex{504362, "gg"}, + CountryToIsoIndex{504375, "gg"}, + CountryToIsoIndex{504388, "gu"}, + CountryToIsoIndex{504398, "gt"}, + CountryToIsoIndex{504414, "gp"}, + CountryToIsoIndex{504430, "gy"}, + CountryToIsoIndex{504440, "gi"}, + CountryToIsoIndex{504459, "gn"}, + CountryToIsoIndex{504466, "gw"}, + CountryToIsoIndex{504483, "gm"}, + CountryToIsoIndex{504496, "ga"}, + CountryToIsoIndex{504506, "gh"}, + CountryToIsoIndex{504513, "gl"}, + CountryToIsoIndex{504532, "gr"}, + CountryToIsoIndex{504542, "gd"}, + CountryToIsoIndex{504555, "eg"}, + CountryToIsoIndex{504565, "it"}, + CountryToIsoIndex{504578, "td"}, + CountryToIsoIndex{504585, "fr"}, + CountryToIsoIndex{504601, "ph"}, + CountryToIsoIndex{504617, "fi"}, + CountryToIsoIndex{504633, "fj"}, + CountryToIsoIndex{504640, "ps"}, + CountryToIsoIndex{504656, "ps"}, + CountryToIsoIndex{504675, "fk"}, + CountryToIsoIndex{504735, "pn"}, + CountryToIsoIndex{504754, "pn"}, + CountryToIsoIndex{504792, "pw"}, + CountryToIsoIndex{504802, "py"}, + CountryToIsoIndex{504815, "pa"}, + CountryToIsoIndex{504825, "pk"}, + CountryToIsoIndex{504841, "pg"}, + CountryToIsoIndex{504865, "pe"}, + CountryToIsoIndex{504872, "pl"}, + CountryToIsoIndex{504885, "pt"}, + CountryToIsoIndex{504901, "pr"}, + CountryToIsoIndex{504918, "am"}, + CountryToIsoIndex{504934, "al"}, + CountryToIsoIndex{504950, "dz"}, + CountryToIsoIndex{504966, "aw"}, + CountryToIsoIndex{504976, "as"}, + CountryToIsoIndex{504999, "gf"}, + CountryToIsoIndex{505022, "pf"}, + CountryToIsoIndex{505054, "tf"}, + CountryToIsoIndex{505109, "ai"}, + CountryToIsoIndex{505122, "ao"}, + CountryToIsoIndex{505135, "ph"}, + CountryToIsoIndex{505154, "mx"}, + CountryToIsoIndex{505170, "es"}, + CountryToIsoIndex{505189, "sz"}, + CountryToIsoIndex{505208, "ad"}, + CountryToIsoIndex{505221, "tc"}, + CountryToIsoIndex{505270, "de"}, + CountryToIsoIndex{505283, "qo"}, + CountryToIsoIndex{505309, "at"}, + CountryToIsoIndex{505322, "az"}, + CountryToIsoIndex{505338, "ck"}, + CountryToIsoIndex{505379, "va"}, + CountryToIsoIndex{505405, "ar"}, + CountryToIsoIndex{505424, "af"}, + CountryToIsoIndex{505446, "ie"}, + CountryToIsoIndex{505459, "au"}, + CountryToIsoIndex{505472, "sv"}, + CountryToIsoIndex{505494, "er"}, + CountryToIsoIndex{505507, "ec"}, + CountryToIsoIndex{505520, "gq"}, + CountryToIsoIndex{505549, "ee"}, + CountryToIsoIndex{505565, "cv"}, + CountryToIsoIndex{505597, "iq"}, + CountryToIsoIndex{505607, "ir"}, + CountryToIsoIndex{505617, "id"}, + CountryToIsoIndex{505636, "in"}, + CountryToIsoIndex{505649, "il"}, + CountryToIsoIndex{505662, "it"}, + CountryToIsoIndex{505672, "et"}, + CountryToIsoIndex{505688, "nc"}, + CountryToIsoIndex{505714, "nz"}, + CountryToIsoIndex{505737, "gl"}, + CountryToIsoIndex{505753, "eg"}, + CountryToIsoIndex{505766, "ci"}, + CountryToIsoIndex{505799, "ax"}, + CountryToIsoIndex{505828, "om"}, + CountryToIsoIndex{505838, "ac"}, + CountryToIsoIndex{505873, "ci"}, + CountryToIsoIndex{505906, "uz"}, + CountryToIsoIndex{505928, "im"}, + CountryToIsoIndex{505974, "kn"}, + CountryToIsoIndex{506014, "sh"}, + CountryToIsoIndex{506037, "lc"}, + CountryToIsoIndex{506060, "sm"}, + CountryToIsoIndex{506086, "bl"}, + CountryToIsoIndex{506112, "pm"}, + CountryToIsoIndex{506152, "mf"}, + CountryToIsoIndex{506172, "vc"}, + CountryToIsoIndex{506234, "ag"}, + CountryToIsoIndex{506256, "gh"}, + CountryToIsoIndex{506266, "fr"}, + CountryToIsoIndex{506279, "gm"}, + CountryToIsoIndex{506295, "cp"}, + CountryToIsoIndex{506336, "ga"}, + CountryToIsoIndex{506346, "gy"}, + CountryToIsoIndex{506356, "ki"}, + CountryToIsoIndex{506369, "bq"}, + CountryToIsoIndex{506410, "hr"}, + CountryToIsoIndex{506426, "cm"}, + CountryToIsoIndex{506439, "kh"}, + CountryToIsoIndex{506458, "cd"}, + CountryToIsoIndex{506474, "cg"}, + CountryToIsoIndex{506499, "cd"}, + CountryToIsoIndex{506524, "cg"}, + CountryToIsoIndex{506549, "kz"}, + CountryToIsoIndex{506568, "qa"}, + CountryToIsoIndex{506578, "ky"}, + CountryToIsoIndex{506607, "ca"}, + CountryToIsoIndex{506617, "ke"}, + CountryToIsoIndex{506627, "gn"}, + CountryToIsoIndex{506637, "gw"}, + CountryToIsoIndex{506660, "gb"}, + CountryToIsoIndex{506673, "kg"}, + CountryToIsoIndex{506689, "gr"}, + CountryToIsoIndex{506699, "cc"}, + CountryToIsoIndex{506737, "co"}, + CountryToIsoIndex{506756, "km"}, + CountryToIsoIndex{506769, "cr"}, + CountryToIsoIndex{506786, "xk"}, + CountryToIsoIndex{506796, "cw"}, + CountryToIsoIndex{506809, "cu"}, + CountryToIsoIndex{506816, "kw"}, + CountryToIsoIndex{506829, "cf"}, + CountryToIsoIndex{506868, "gg"}, + CountryToIsoIndex{506878, "tr"}, + CountryToIsoIndex{506885, "hn"}, + CountryToIsoIndex{506901, "ht"}, + CountryToIsoIndex{506911, "hk"}, + CountryToIsoIndex{506931, "hk"}, + CountryToIsoIndex{507027, "hu"}, + CountryToIsoIndex{507040, "hm"}, + CountryToIsoIndex{507105, "lr"}, + CountryToIsoIndex{507118, "lv"}, + CountryToIsoIndex{507131, "la"}, + CountryToIsoIndex{507141, "lb"}, + CountryToIsoIndex{507154, "ls"}, + CountryToIsoIndex{507164, "re"}, + CountryToIsoIndex{507180, "li"}, + CountryToIsoIndex{507202, "ly"}, + CountryToIsoIndex{507212, "lt"}, + CountryToIsoIndex{507228, "ro"}, + CountryToIsoIndex{507241, "rw"}, + CountryToIsoIndex{507254, "lu"}, + CountryToIsoIndex{507270, "fm"}, + CountryToIsoIndex{507289, "mo"}, + CountryToIsoIndex{507299, "mo"}, + CountryToIsoIndex{507375, "mw"}, + CountryToIsoIndex{507385, "my"}, + CountryToIsoIndex{507401, "ml"}, + CountryToIsoIndex{507408, "mt"}, + CountryToIsoIndex{507418, "mv"}, + CountryToIsoIndex{507434, "md"}, + CountryToIsoIndex{507450, "mc"}, + CountryToIsoIndex{507460, "mn"}, + CountryToIsoIndex{507476, "ms"}, + CountryToIsoIndex{507495, "mh"}, + CountryToIsoIndex{507521, "mk"}, + CountryToIsoIndex{507537, "mk"}, + CountryToIsoIndex{507561, "mg"}, + CountryToIsoIndex{507580, "mr"}, + CountryToIsoIndex{507593, "mq"}, + CountryToIsoIndex{507606, "mm"}, + CountryToIsoIndex{507631, "yt"}, + CountryToIsoIndex{507641, "mu"}, + CountryToIsoIndex{507657, "ma"}, + CountryToIsoIndex{507667, "me"}, + CountryToIsoIndex{507686, "mz"}, + CountryToIsoIndex{507702, "ne"}, + CountryToIsoIndex{507712, "na"}, + CountryToIsoIndex{507728, "bs"}, + CountryToIsoIndex{507751, "np"}, + CountryToIsoIndex{507761, "nl"}, + CountryToIsoIndex{507774, "ni"}, + CountryToIsoIndex{507787, "ng"}, + CountryToIsoIndex{507800, "nu"}, + CountryToIsoIndex{507807, "nr"}, + CountryToIsoIndex{507817, "nf"}, + CountryToIsoIndex{507849, "no"}, + CountryToIsoIndex{507856, "pk"}, + CountryToIsoIndex{507872, "bh"}, + CountryToIsoIndex{507888, "py"}, + CountryToIsoIndex{507904, "pw"}, + CountryToIsoIndex{507917, "ps"}, + CountryToIsoIndex{507933, "ps"}, + CountryToIsoIndex{507977, "gu"}, + CountryToIsoIndex{507984, "pa"}, + CountryToIsoIndex{507994, "bj"}, + CountryToIsoIndex{508007, "bd"}, + CountryToIsoIndex{508026, "pg"}, + CountryToIsoIndex{508050, "bb"}, + CountryToIsoIndex{508063, "bm"}, + CountryToIsoIndex{508073, "br"}, + CountryToIsoIndex{508083, "bw"}, + CountryToIsoIndex{508096, "pr"}, + CountryToIsoIndex{508116, "by"}, + CountryToIsoIndex{508129, "bz"}, + CountryToIsoIndex{508139, "be"}, + CountryToIsoIndex{508155, "pe"}, + CountryToIsoIndex{508162, "pn"}, + CountryToIsoIndex{508191, "vg"}, + CountryToIsoIndex{508243, "io"}, + CountryToIsoIndex{508289, "pl"}, + CountryToIsoIndex{508299, "bo"}, + CountryToIsoIndex{508312, "ba"}, + CountryToIsoIndex{508340, "pt"}, + CountryToIsoIndex{508353, "bg"}, + CountryToIsoIndex{508369, "bn"}, + CountryToIsoIndex{508379, "bt"}, + CountryToIsoIndex{508389, "bv"}, + CountryToIsoIndex{508412, "bf"}, + CountryToIsoIndex{508429, "bi"}, + CountryToIsoIndex{508442, "gd"}, + CountryToIsoIndex{508452, "cy"}, + CountryToIsoIndex{508465, "st"}, + CountryToIsoIndex{508499, "sa"}, + CountryToIsoIndex{508522, "zm"}, + CountryToIsoIndex{508535, "ws"}, + CountryToIsoIndex{508545, "ae"}, + CountryToIsoIndex{508600, "us"}, + CountryToIsoIndex{508642, "lk"}, + CountryToIsoIndex{508659, "sk"}, + CountryToIsoIndex{508675, "si"}, + CountryToIsoIndex{508691, "sj"}, + CountryToIsoIndex{508734, "ch"}, + CountryToIsoIndex{508744, "se"}, + CountryToIsoIndex{508757, "sl"}, + CountryToIsoIndex{508777, "sc"}, + CountryToIsoIndex{508793, "sy"}, + CountryToIsoIndex{508803, "zw"}, + CountryToIsoIndex{508816, "sn"}, + CountryToIsoIndex{508829, "sg"}, + CountryToIsoIndex{508845, "sx"}, + CountryToIsoIndex{508865, "sb"}, + CountryToIsoIndex{508894, "so"}, + CountryToIsoIndex{508904, "ea"}, + CountryToIsoIndex{508928, "sd"}, + CountryToIsoIndex{508938, "sr"}, + CountryToIsoIndex{508951, "rs"}, + CountryToIsoIndex{508961, "cn"}, + CountryToIsoIndex{508980, "cx"}, + CountryToIsoIndex{509018, "tw"}, + CountryToIsoIndex{509031, "to"}, + CountryToIsoIndex{509041, "tj"}, + CountryToIsoIndex{509060, "th"}, + CountryToIsoIndex{509073, "tz"}, + CountryToIsoIndex{509089, "tl"}, + CountryToIsoIndex{509115, "dk"}, + CountryToIsoIndex{509128, "dg"}, + CountryToIsoIndex{509148, "tl"}, + CountryToIsoIndex{509168, "tk"}, + CountryToIsoIndex{509181, "tg"}, + CountryToIsoIndex{509188, "dm"}, + CountryToIsoIndex{509201, "do"}, + CountryToIsoIndex{509230, "tn"}, + CountryToIsoIndex{509246, "tv"}, + CountryToIsoIndex{509256, "tm"}, + CountryToIsoIndex{509281, "tt"}, + CountryToIsoIndex{509311, "ta"}, + CountryToIsoIndex{509338, "ge"}, + CountryToIsoIndex{509351, "jm"}, + CountryToIsoIndex{509364, "td"}, + CountryToIsoIndex{509371, "jp"}, + CountryToIsoIndex{509384, "cz"}, + CountryToIsoIndex{509404, "cz"}, + CountryToIsoIndex{509414, "cl"}, + CountryToIsoIndex{509421, "gi"}, + CountryToIsoIndex{509434, "dj"}, + CountryToIsoIndex{509444, "ic"}, + CountryToIsoIndex{509470, "jo"}, + CountryToIsoIndex{509480, "za"}, + CountryToIsoIndex{509509, "ss"}, + CountryToIsoIndex{509532, "kr"}, + CountryToIsoIndex{509555, "gs"}, + CountryToIsoIndex{509643, "aq"}, + CountryToIsoIndex{509659, "is"}, + CountryToIsoIndex{509678, "kp"}, + CountryToIsoIndex{509698, "mp"}, + CountryToIsoIndex{509744, "je"}, + CountryToIsoIndex{509754, "fk"}, + CountryToIsoIndex{509777, "fk"}, + CountryToIsoIndex{509831, "wf"}, + CountryToIsoIndex{509858, "vu"}, + CountryToIsoIndex{509874, "gp"}, + CountryToIsoIndex{509887, "gt"}, + CountryToIsoIndex{509900, "fo"}, + CountryToIsoIndex{509923, "ve"}, + CountryToIsoIndex{509939, "vn"}, + CountryToIsoIndex{509955, "fi"}, + CountryToIsoIndex{509971, "fj"}, + CountryToIsoIndex{509978, "eh"}, + CountryToIsoIndex{510008, "ye"}, + CountryToIsoIndex{510018, "ru"}, + CountryToIsoIndex{510028, "ug"}, + CountryToIsoIndex{510041, "ua"}, + CountryToIsoIndex{510054, "ez"}, + CountryToIsoIndex{510076, "uy"}, + CountryToIsoIndex{510086, "kh"}, + CountryToIsoIndex{510108, "ca"}, + CountryToIsoIndex{510127, "qa"}, + CountryToIsoIndex{510140, "cv"}, + CountryToIsoIndex{510162, "cm"}, + CountryToIsoIndex{510184, "kz"}, + CountryToIsoIndex{510224, "cg"}, + CountryToIsoIndex{510276, "cd"}, + CountryToIsoIndex{510373, "cg"}, + CountryToIsoIndex{510431, "cd"}, + CountryToIsoIndex{510482, "ci"}, + CountryToIsoIndex{510507, "km"}, + CountryToIsoIndex{510523, "cw"}, + CountryToIsoIndex{510545, "kp"}, + CountryToIsoIndex{510585, "kr"}, + CountryToIsoIndex{510631, "kw"}, + CountryToIsoIndex{510650, "xk"}, + CountryToIsoIndex{510672, "cr"}, + CountryToIsoIndex{510703, "co"}, + CountryToIsoIndex{510728, "kg"}, + CountryToIsoIndex{510774, "ke"}, + CountryToIsoIndex{510793, "ic"}, + CountryToIsoIndex{510824, "cc"}, + CountryToIsoIndex{510870, "ky"}, + CountryToIsoIndex{510901, "ck"}, + CountryToIsoIndex{510923, "cx"}, + CountryToIsoIndex{510963, "cp"}, + CountryToIsoIndex{511003, "nf"}, + CountryToIsoIndex{511040, "tc"}, + CountryToIsoIndex{511088, "bv"}, + CountryToIsoIndex{511122, "pn"}, + CountryToIsoIndex{511153, "mp"}, + CountryToIsoIndex{511211, "mh"}, + CountryToIsoIndex{511245, "vg"}, + CountryToIsoIndex{511321, "vi"}, + CountryToIsoIndex{511373, "sb"}, + CountryToIsoIndex{511410, "hm"}, + CountryToIsoIndex{511478, "fk"}, + CountryToIsoIndex{511515, "fk"}, + CountryToIsoIndex{511569, "fo"}, + CountryToIsoIndex{511603, "gs"}, + CountryToIsoIndex{511726, "ac"}, + CountryToIsoIndex{511763, "ax"}, + CountryToIsoIndex{511791, "um"}, + CountryToIsoIndex{511849, "gr"}, + CountryToIsoIndex{511865, "hr"}, + CountryToIsoIndex{511893, "gt"}, + CountryToIsoIndex{511927, "ki"}, + CountryToIsoIndex{511952, "cu"}, + CountryToIsoIndex{511968, "gb"}, + CountryToIsoIndex{511977, "gb"}, + CountryToIsoIndex{512023, "cn"}, + CountryToIsoIndex{512033, "td"}, + CountryToIsoIndex{512043, "cz"}, + CountryToIsoIndex{512056, "jp"}, + CountryToIsoIndex{512072, "dj"}, + CountryToIsoIndex{512094, "ea"}, + CountryToIsoIndex{512141, "je"}, + CountryToIsoIndex{512157, "dk"}, + CountryToIsoIndex{512182, "dm"}, + CountryToIsoIndex{512204, "tf"}, + CountryToIsoIndex{512286, "io"}, + CountryToIsoIndex{512389, "ps"}, + CountryToIsoIndex{512438, "dg"}, + CountryToIsoIndex{512478, "na"}, + CountryToIsoIndex{512500, "nr"}, + CountryToIsoIndex{512513, "nu"}, + CountryToIsoIndex{512520, "tz"}, + CountryToIsoIndex{512542, "tj"}, + CountryToIsoIndex{512585, "to"}, + CountryToIsoIndex{512607, "tk"}, + CountryToIsoIndex{512626, "tg"}, + CountryToIsoIndex{512645, "tr"}, + CountryToIsoIndex{512661, "tm"}, + CountryToIsoIndex{512701, "tw"}, + CountryToIsoIndex{512723, "ez"}, + CountryToIsoIndex{512772, "qo"}, + CountryToIsoIndex{512821, "th"}, + CountryToIsoIndex{512828, "tl"}, + CountryToIsoIndex{512853, "tl"}, + CountryToIsoIndex{512893, "tn"}, + CountryToIsoIndex{512918, "tv"}, + CountryToIsoIndex{512940, "tt"}, + CountryToIsoIndex{513005, "ta"}, + CountryToIsoIndex{513060, "ni"}, + CountryToIsoIndex{513094, "ne"}, + CountryToIsoIndex{513113, "ng"}, + CountryToIsoIndex{513147, "nc"}, + CountryToIsoIndex{513190, "nz"}, + CountryToIsoIndex{513224, "np"}, + CountryToIsoIndex{513246, "no"}, + CountryToIsoIndex{513265, "bd"}, + CountryToIsoIndex{513296, "bb"}, + CountryToIsoIndex{513318, "fr"}, + CountryToIsoIndex{513337, "bh"}, + CountryToIsoIndex{513356, "bs"}, + CountryToIsoIndex{513378, "bw"}, + CountryToIsoIndex{513406, "va"}, + CountryToIsoIndex{513446, "bo"}, + CountryToIsoIndex{513465, "ba"}, + CountryToIsoIndex{513536, "bf"}, + CountryToIsoIndex{513573, "bj"}, + CountryToIsoIndex{513592, "bz"}, + CountryToIsoIndex{513605, "by"}, + CountryToIsoIndex{513627, "be"}, + CountryToIsoIndex{513655, "pk"}, + CountryToIsoIndex{513686, "pa"}, + CountryToIsoIndex{513711, "pg"}, + CountryToIsoIndex{513778, "py"}, + CountryToIsoIndex{513812, "ps"}, + CountryToIsoIndex{513843, "pf"}, + CountryToIsoIndex{513898, "pl"}, + CountryToIsoIndex{513917, "pe"}, + CountryToIsoIndex{513933, "bm"}, + CountryToIsoIndex{513958, "bg"}, + CountryToIsoIndex{513989, "bt"}, + CountryToIsoIndex{514008, "bi"}, + CountryToIsoIndex{514033, "br"}, + CountryToIsoIndex{514058, "pw"}, + CountryToIsoIndex{514071, "pr"}, + CountryToIsoIndex{514099, "pt"}, + CountryToIsoIndex{514136, "bn"}, + CountryToIsoIndex{514158, "fm"}, + CountryToIsoIndex{514192, "mm"}, + CountryToIsoIndex{514238, "mo"}, + CountryToIsoIndex{514257, "mo"}, + CountryToIsoIndex{514337, "mg"}, + CountryToIsoIndex{514377, "mq"}, + CountryToIsoIndex{514402, "yt"}, + CountryToIsoIndex{514421, "ma"}, + CountryToIsoIndex{514443, "ml"}, + CountryToIsoIndex{514459, "mv"}, + CountryToIsoIndex{514484, "mt"}, + CountryToIsoIndex{514506, "mk"}, + CountryToIsoIndex{514537, "mk"}, + CountryToIsoIndex{514655, "mw"}, + CountryToIsoIndex{514677, "my"}, + CountryToIsoIndex{514702, "mx"}, + CountryToIsoIndex{514727, "me"}, + CountryToIsoIndex{514770, "ms"}, + CountryToIsoIndex{514801, "mn"}, + CountryToIsoIndex{514832, "md"}, + CountryToIsoIndex{514857, "mc"}, + CountryToIsoIndex{514879, "mr"}, + CountryToIsoIndex{514907, "mu"}, + CountryToIsoIndex{514926, "mz"}, + CountryToIsoIndex{514954, "ye"}, + CountryToIsoIndex{514973, "rw"}, + CountryToIsoIndex{514998, "ru"}, + CountryToIsoIndex{515020, "ro"}, + CountryToIsoIndex{515042, "re"}, + CountryToIsoIndex{515070, "li"}, + CountryToIsoIndex{515104, "lt"}, + CountryToIsoIndex{515132, "lb"}, + CountryToIsoIndex{515148, "lr"}, + CountryToIsoIndex{515176, "ly"}, + CountryToIsoIndex{515192, "lu"}, + CountryToIsoIndex{515214, "vn"}, + CountryToIsoIndex{515233, "vu"}, + CountryToIsoIndex{515255, "wf"}, + CountryToIsoIndex{515311, "ve"}, + CountryToIsoIndex{515351, "us"}, + CountryToIsoIndex{515363, "pm"}, + CountryToIsoIndex{515422, "sh"}, + CountryToIsoIndex{515453, "us"}, + CountryToIsoIndex{515493, "cz"}, + CountryToIsoIndex{515533, "cf"}, + CountryToIsoIndex{515609, "do"}, + CountryToIsoIndex{515664, "sm"}, + CountryToIsoIndex{515698, "ws"}, + CountryToIsoIndex{515714, "as"}, + CountryToIsoIndex{515761, "eh"}, + CountryToIsoIndex{515801, "lc"}, + CountryToIsoIndex{515829, "kn"}, + CountryToIsoIndex{515880, "bl"}, + CountryToIsoIndex{515920, "mf"}, + CountryToIsoIndex{515954, "vc"}, + CountryToIsoIndex{516038, "sg"}, + CountryToIsoIndex{516066, "sx"}, + CountryToIsoIndex{516097, "sc"}, + CountryToIsoIndex{516119, "so"}, + CountryToIsoIndex{516141, "sr"}, + CountryToIsoIndex{516163, "sl"}, + CountryToIsoIndex{516194, "sn"}, + CountryToIsoIndex{516225, "rs"}, + CountryToIsoIndex{516241, "st"}, + CountryToIsoIndex{516304, "zm"}, + CountryToIsoIndex{516320, "cy"}, + CountryToIsoIndex{516333, "zw"}, + CountryToIsoIndex{516361, "sy"}, + CountryToIsoIndex{516377, "cl"}, + CountryToIsoIndex{516393, "se"}, + CountryToIsoIndex{516415, "sd"}, + CountryToIsoIndex{516434, "ss"}, + CountryToIsoIndex{516483, "lk"}, + CountryToIsoIndex{516511, "si"}, + CountryToIsoIndex{516536, "sk"}, + CountryToIsoIndex{516564, "sj"}, + CountryToIsoIndex{516633, "sz"}, + CountryToIsoIndex{516664, "ch"}, + CountryToIsoIndex{516680, "hk"}, + CountryToIsoIndex{516699, "hk"}, + CountryToIsoIndex{516779, "hu"}, + CountryToIsoIndex{516801, "hn"}, + CountryToIsoIndex{516829, "nl"}, + CountryToIsoIndex{516845, "bq"}, + CountryToIsoIndex{516889, "ht"}, + CountryToIsoIndex{516902, "jo"}, + CountryToIsoIndex{516930, "gh"}, + CountryToIsoIndex{516949, "ga"}, + CountryToIsoIndex{516971, "gu"}, + CountryToIsoIndex{516987, "gn"}, + CountryToIsoIndex{517006, "gw"}, + CountryToIsoIndex{517046, "gq"}, + CountryToIsoIndex{517092, "gy"}, + CountryToIsoIndex{517117, "gf"}, + CountryToIsoIndex{517161, "gg"}, + CountryToIsoIndex{517186, "gp"}, + CountryToIsoIndex{517214, "gm"}, + CountryToIsoIndex{517236, "gd"}, + CountryToIsoIndex{517264, "gl"}, + CountryToIsoIndex{517301, "fi"}, + CountryToIsoIndex{517329, "fj"}, + CountryToIsoIndex{517348, "ph"}, + CountryToIsoIndex{517376, "ge"}, + CountryToIsoIndex{517404, "jm"}, + CountryToIsoIndex{517438, "gi"}, + CountryToIsoIndex{517478, "la"}, + CountryToIsoIndex{517488, "lv"}, + CountryToIsoIndex{517507, "ls"}, + CountryToIsoIndex{517526, "ad"}, + CountryToIsoIndex{517551, "aq"}, + CountryToIsoIndex{517582, "ag"}, + CountryToIsoIndex{517645, "ai"}, + CountryToIsoIndex{517673, "ao"}, + CountryToIsoIndex{517701, "am"}, + CountryToIsoIndex{517720, "ci"}, + CountryToIsoIndex{517761, "aw"}, + CountryToIsoIndex{517780, "sa"}, + CountryToIsoIndex{517826, "al"}, + CountryToIsoIndex{517851, "dz"}, + CountryToIsoIndex{517882, "de"}, + CountryToIsoIndex{517913, "az"}, + CountryToIsoIndex{517950, "af"}, + CountryToIsoIndex{517999, "za"}, + CountryToIsoIndex{518051, "ar"}, + CountryToIsoIndex{518082, "at"}, + CountryToIsoIndex{518104, "om"}, + CountryToIsoIndex{518123, "au"}, + CountryToIsoIndex{518154, "ie"}, + CountryToIsoIndex{518173, "ec"}, + CountryToIsoIndex{518201, "et"}, + CountryToIsoIndex{518226, "ae"}, + CountryToIsoIndex{518287, "er"}, + CountryToIsoIndex{518312, "ee"}, + CountryToIsoIndex{518337, "es"}, + CountryToIsoIndex{518362, "eg"}, + CountryToIsoIndex{518387, "sv"}, + CountryToIsoIndex{518427, "im"}, + CountryToIsoIndex{518461, "it"}, + CountryToIsoIndex{518483, "ir"}, + CountryToIsoIndex{518505, "iq"}, + CountryToIsoIndex{518530, "il"}, + CountryToIsoIndex{518561, "is"}, + CountryToIsoIndex{518586, "ua"}, + CountryToIsoIndex{518614, "uy"}, + CountryToIsoIndex{518648, "uz"}, + CountryToIsoIndex{518688, "ug"}, + CountryToIsoIndex{518719, "in"}, + CountryToIsoIndex{518735, "id"}, + CountryToIsoIndex{518766, "dm"}, + CountryToIsoIndex{518777, "hk"}, + CountryToIsoIndex{518789, "ro"}, + CountryToIsoIndex{518799, "rs"}, + CountryToIsoIndex{518808, "so"}, + CountryToIsoIndex{518816, "cn"}, + CountryToIsoIndex{518825, "so"}, + CountryToIsoIndex{518836, "tz"}, + CountryToIsoIndex{518847, "tz"}, + CountryToIsoIndex{518860, "th"}, + CountryToIsoIndex{518870, "th"}, + CountryToIsoIndex{518883, "tw"}, + CountryToIsoIndex{518892, "tj"}, + CountryToIsoIndex{518906, "it"}, + CountryToIsoIndex{518915, "tt"}, + CountryToIsoIndex{518936, "tg"}, + CountryToIsoIndex{518943, "tk"}, + CountryToIsoIndex{518952, "tk"}, + CountryToIsoIndex{518960, "to"}, + CountryToIsoIndex{518968, "tr"}, + CountryToIsoIndex{518975, "tc"}, + CountryToIsoIndex{519002, "tm"}, + CountryToIsoIndex{519017, "tv"}, + CountryToIsoIndex{519026, "tg"}, + CountryToIsoIndex{519036, "sa"}, + CountryToIsoIndex{519054, "in"}, + CountryToIsoIndex{519065, "ci"}, + CountryToIsoIndex{519103, "ps"}, + CountryToIsoIndex{519159, "az"}, + CountryToIsoIndex{519187, "gi"}, + CountryToIsoIndex{519223, "za"}, + CountryToIsoIndex{519265, "af"}, + CountryToIsoIndex{519296, "al"}, + CountryToIsoIndex{519318, "de"}, + CountryToIsoIndex{519340, "ai"}, + CountryToIsoIndex{519359, "ao"}, + CountryToIsoIndex{519378, "id"}, + CountryToIsoIndex{519406, "ad"}, + CountryToIsoIndex{519425, "ag"}, + CountryToIsoIndex{519467, "ar"}, + CountryToIsoIndex{519492, "am"}, + CountryToIsoIndex{519514, "aw"}, + CountryToIsoIndex{519530, "va"}, + CountryToIsoIndex{519572, "pg"}, + CountryToIsoIndex{519629, "pk"}, + CountryToIsoIndex{519654, "bs"}, + CountryToIsoIndex{519676, "pw"}, + CountryToIsoIndex{519692, "pa"}, + CountryToIsoIndex{519711, "bd"}, + CountryToIsoIndex{519739, "py"}, + CountryToIsoIndex{519764, "bb"}, + CountryToIsoIndex{519783, "bt"}, + CountryToIsoIndex{519802, "bh"}, + CountryToIsoIndex{519821, "by"}, + CountryToIsoIndex{519849, "bz"}, + CountryToIsoIndex{519865, "bj"}, + CountryToIsoIndex{519881, "pe"}, + CountryToIsoIndex{519894, "pn"}, + CountryToIsoIndex{519919, "be"}, + CountryToIsoIndex{519938, "bg"}, + CountryToIsoIndex{519960, "bo"}, + CountryToIsoIndex{519982, "bo"}, + CountryToIsoIndex{520004, "pf"}, + CountryToIsoIndex{520063, "pl"}, + CountryToIsoIndex{520085, "bf"}, + CountryToIsoIndex{520120, "bi"}, + CountryToIsoIndex{520142, "pr"}, + CountryToIsoIndex{520171, "ba"}, + CountryToIsoIndex{520210, "bw"}, + CountryToIsoIndex{520235, "br"}, + CountryToIsoIndex{520254, "bm"}, + CountryToIsoIndex{520273, "bn"}, + CountryToIsoIndex{520289, "pt"}, + CountryToIsoIndex{520308, "ga"}, + CountryToIsoIndex{520324, "gm"}, + CountryToIsoIndex{520343, "gl"}, + CountryToIsoIndex{520365, "gp"}, + CountryToIsoIndex{520390, "gu"}, + CountryToIsoIndex{520403, "gt"}, + CountryToIsoIndex{520431, "gf"}, + CountryToIsoIndex{520481, "gy"}, + CountryToIsoIndex{520503, "dk"}, + CountryToIsoIndex{520525, "dj"}, + CountryToIsoIndex{520547, "dm"}, + CountryToIsoIndex{520569, "dz"}, + CountryToIsoIndex{520585, "vu"}, + CountryToIsoIndex{520607, "fj"}, + CountryToIsoIndex{520623, "ph"}, + CountryToIsoIndex{520648, "fi"}, + CountryToIsoIndex{520673, "ve"}, + CountryToIsoIndex{520698, "vn"}, + CountryToIsoIndex{520717, "fr"}, + CountryToIsoIndex{520736, "nc"}, + CountryToIsoIndex{520789, "kh"}, + CountryToIsoIndex{520814, "cm"}, + CountryToIsoIndex{520836, "ca"}, + CountryToIsoIndex{520855, "kz"}, + CountryToIsoIndex{520883, "ke"}, + CountryToIsoIndex{520899, "ki"}, + CountryToIsoIndex{520924, "kg"}, + CountryToIsoIndex{520958, "cu"}, + CountryToIsoIndex{520971, "co"}, + CountryToIsoIndex{520996, "cg"}, + CountryToIsoIndex{521012, "kr"}, + CountryToIsoIndex{521048, "kp"}, + CountryToIsoIndex{521087, "cr"}, + CountryToIsoIndex{521116, "ci"}, + CountryToIsoIndex{521145, "hr"}, + CountryToIsoIndex{521167, "ht"}, + CountryToIsoIndex{521183, "hu"}, + CountryToIsoIndex{521205, "nl"}, + CountryToIsoIndex{521227, "hn"}, + CountryToIsoIndex{521252, "om"}, + CountryToIsoIndex{521268, "qa"}, + CountryToIsoIndex{521284, "cy"}, + CountryToIsoIndex{521303, "km"}, + CountryToIsoIndex{521319, "ec"}, + CountryToIsoIndex{521341, "ir"}, + CountryToIsoIndex{521354, "er"}, + CountryToIsoIndex{521379, "ie"}, + CountryToIsoIndex{521401, "is"}, + CountryToIsoIndex{521420, "il"}, + CountryToIsoIndex{521442, "ee"}, + CountryToIsoIndex{521464, "et"}, + CountryToIsoIndex{521486, "it"}, + CountryToIsoIndex{521505, "us"}, + CountryToIsoIndex{521569, "jm"}, + CountryToIsoIndex{521591, "ge"}, + CountryToIsoIndex{521610, "lv"}, + CountryToIsoIndex{521629, "la"}, + CountryToIsoIndex{521642, "kw"}, + CountryToIsoIndex{521658, "in"}, + CountryToIsoIndex{521674, "iq"}, + CountryToIsoIndex{521693, "lr"}, + CountryToIsoIndex{521715, "ly"}, + CountryToIsoIndex{521731, "li"}, + CountryToIsoIndex{521762, "ae"}, + CountryToIsoIndex{521784, "ls"}, + CountryToIsoIndex{521803, "lt"}, + CountryToIsoIndex{521828, "ma"}, + CountryToIsoIndex{521847, "lb"}, + CountryToIsoIndex{521866, "lu"}, + CountryToIsoIndex{521897, "jo"}, + CountryToIsoIndex{521916, "jp"}, + CountryToIsoIndex{521935, "gr"}, + CountryToIsoIndex{521954, "mg"}, + CountryToIsoIndex{521985, "mw"}, + CountryToIsoIndex{522004, "mv"}, + CountryToIsoIndex{522023, "ml"}, + CountryToIsoIndex{522036, "my"}, + CountryToIsoIndex{522058, "mt"}, + CountryToIsoIndex{522074, "mq"}, + CountryToIsoIndex{522099, "mk"}, + CountryToIsoIndex{522127, "yt"}, + CountryToIsoIndex{522143, "fm"}, + CountryToIsoIndex{522174, "mx"}, + CountryToIsoIndex{522193, "eg"}, + CountryToIsoIndex{522206, "mn"}, + CountryToIsoIndex{522228, "md"}, + CountryToIsoIndex{522253, "mc"}, + CountryToIsoIndex{522272, "ms"}, + CountryToIsoIndex{522297, "me"}, + CountryToIsoIndex{522328, "mu"}, + CountryToIsoIndex{522344, "mr"}, + CountryToIsoIndex{522372, "mz"}, + CountryToIsoIndex{522394, "mm"}, + CountryToIsoIndex{522416, "na"}, + CountryToIsoIndex{522438, "nr"}, + CountryToIsoIndex{522454, "np"}, + CountryToIsoIndex{522470, "ni"}, + CountryToIsoIndex{522498, "ng"}, + CountryToIsoIndex{522520, "nu"}, + CountryToIsoIndex{522533, "ne"}, + CountryToIsoIndex{522552, "at"}, + CountryToIsoIndex{522568, "no"}, + CountryToIsoIndex{522587, "nz"}, + CountryToIsoIndex{522618, "ua"}, + CountryToIsoIndex{522640, "uy"}, + CountryToIsoIndex{522662, "ug"}, + CountryToIsoIndex{522681, "au"}, + CountryToIsoIndex{522706, "uz"}, + CountryToIsoIndex{522737, "re"}, + CountryToIsoIndex{522762, "ro"}, + CountryToIsoIndex{522784, "ru"}, + CountryToIsoIndex{522800, "rw"}, + CountryToIsoIndex{522819, "gh"}, + CountryToIsoIndex{522832, "gn"}, + CountryToIsoIndex{522848, "gw"}, + CountryToIsoIndex{522880, "gq"}, + CountryToIsoIndex{522922, "gd"}, + CountryToIsoIndex{522941, "sv"}, + CountryToIsoIndex{522966, "ws"}, + CountryToIsoIndex{522982, "as"}, + CountryToIsoIndex{523032, "pm"}, + CountryToIsoIndex{523077, "vc"}, + CountryToIsoIndex{523134, "kn"}, + CountryToIsoIndex{523176, "sm"}, + CountryToIsoIndex{523204, "sh"}, + CountryToIsoIndex{523229, "lc"}, + CountryToIsoIndex{523254, "st"}, + CountryToIsoIndex{523302, "es"}, + CountryToIsoIndex{523321, "rs"}, + CountryToIsoIndex{523340, "sk"}, + CountryToIsoIndex{523365, "si"}, + CountryToIsoIndex{523390, "sg"}, + CountryToIsoIndex{523415, "sr"}, + CountryToIsoIndex{523437, "sy"}, + CountryToIsoIndex{523453, "lk"}, + CountryToIsoIndex{523478, "sa"}, + CountryToIsoIndex{523506, "sn"}, + CountryToIsoIndex{523531, "sl"}, + CountryToIsoIndex{523559, "sc"}, + CountryToIsoIndex{523578, "sd"}, + CountryToIsoIndex{523597, "ss"}, + CountryToIsoIndex{523636, "se"}, + CountryToIsoIndex{523652, "sz"}, + CountryToIsoIndex{523683, "ch"}, + CountryToIsoIndex{523702, "so"}, + CountryToIsoIndex{523721, "cl"}, + CountryToIsoIndex{523737, "cn"}, + CountryToIsoIndex{523756, "cd"}, + CountryToIsoIndex{523841, "do"}, + CountryToIsoIndex{523900, "cf"}, + CountryToIsoIndex{523982, "cz"}, + CountryToIsoIndex{524035, "gb"}, + CountryToIsoIndex{524073, "tj"}, + CountryToIsoIndex{524107, "io"}, + CountryToIsoIndex{524196, "cv"}, + CountryToIsoIndex{524250, "ky"}, + CountryToIsoIndex{524298, "ck"}, + CountryToIsoIndex{524337, "fk"}, + CountryToIsoIndex{524385, "mh"}, + CountryToIsoIndex{524433, "mp"}, + CountryToIsoIndex{524504, "nf"}, + CountryToIsoIndex{524555, "sb"}, + CountryToIsoIndex{524606, "tc"}, + CountryToIsoIndex{524671, "vi"}, + CountryToIsoIndex{524757, "vg"}, + CountryToIsoIndex{524824, "tl"}, + CountryToIsoIndex{524860, "tv"}, + CountryToIsoIndex{524879, "tn"}, + CountryToIsoIndex{524892, "tm"}, + CountryToIsoIndex{524926, "tr"}, + CountryToIsoIndex{524945, "tt"}, + CountryToIsoIndex{524993, "td"}, + CountryToIsoIndex{525006, "tz"}, + CountryToIsoIndex{525031, "th"}, + CountryToIsoIndex{525053, "tw"}, + CountryToIsoIndex{525072, "tg"}, + CountryToIsoIndex{525085, "tk"}, + CountryToIsoIndex{525104, "to"}, + CountryToIsoIndex{525120, "wf"}, + CountryToIsoIndex{525159, "ye"}, + CountryToIsoIndex{525175, "zm"}, + CountryToIsoIndex{525194, "zw"}, + CountryToIsoIndex{525219, "is"}, + CountryToIsoIndex{525238, "ie"}, + CountryToIsoIndex{525257, "ac"}, + CountryToIsoIndex{525279, "az"}, + CountryToIsoIndex{525304, "af"}, + CountryToIsoIndex{525326, "us"}, + CountryToIsoIndex{525339, "us"}, + CountryToIsoIndex{525361, "ae"}, + CountryToIsoIndex{525386, "dz"}, + CountryToIsoIndex{525405, "ar"}, + CountryToIsoIndex{525424, "aw"}, + CountryToIsoIndex{525434, "al"}, + CountryToIsoIndex{525450, "am"}, + CountryToIsoIndex{525466, "ai"}, + CountryToIsoIndex{525479, "ao"}, + CountryToIsoIndex{525492, "ag"}, + CountryToIsoIndex{525529, "ad"}, + CountryToIsoIndex{525542, "ye"}, + CountryToIsoIndex{525555, "gb"}, + CountryToIsoIndex{525568, "il"}, + CountryToIsoIndex{525584, "it"}, + CountryToIsoIndex{525597, "iq"}, + CountryToIsoIndex{525607, "ir"}, + CountryToIsoIndex{525617, "in"}, + CountryToIsoIndex{525627, "id"}, + CountryToIsoIndex{525646, "wf"}, + CountryToIsoIndex{525671, "ug"}, + CountryToIsoIndex{525684, "ua"}, + CountryToIsoIndex{525700, "uz"}, + CountryToIsoIndex{525722, "uy"}, + CountryToIsoIndex{525738, "ec"}, + CountryToIsoIndex{525754, "eg"}, + CountryToIsoIndex{525767, "ee"}, + CountryToIsoIndex{525783, "et"}, + CountryToIsoIndex{525799, "er"}, + CountryToIsoIndex{525815, "sv"}, + CountryToIsoIndex{525837, "qo"}, + CountryToIsoIndex{525865, "om"}, + CountryToIsoIndex{525878, "nl"}, + CountryToIsoIndex{525891, "bq"}, + CountryToIsoIndex{525916, "au"}, + CountryToIsoIndex{525938, "at"}, + CountryToIsoIndex{525957, "ax"}, + CountryToIsoIndex{525979, "kz"}, + CountryToIsoIndex{525998, "qa"}, + CountryToIsoIndex{526011, "ca"}, + CountryToIsoIndex{526021, "ic"}, + CountryToIsoIndex{526040, "cm"}, + CountryToIsoIndex{526056, "kh"}, + CountryToIsoIndex{526072, "cv"}, + CountryToIsoIndex{526091, "gy"}, + CountryToIsoIndex{526104, "ga"}, + CountryToIsoIndex{526114, "gm"}, + CountryToIsoIndex{526127, "gh"}, + CountryToIsoIndex{526137, "gg"}, + CountryToIsoIndex{526153, "cy"}, + CountryToIsoIndex{526166, "cw"}, + CountryToIsoIndex{526182, "cu"}, + CountryToIsoIndex{526195, "ki"}, + CountryToIsoIndex{526208, "kg"}, + CountryToIsoIndex{526221, "gn"}, + CountryToIsoIndex{526231, "gw"}, + CountryToIsoIndex{526250, "gr"}, + CountryToIsoIndex{526263, "kw"}, + CountryToIsoIndex{526279, "ck"}, + CountryToIsoIndex{526295, "cx"}, + CountryToIsoIndex{526314, "cp"}, + CountryToIsoIndex{526339, "hr"}, + CountryToIsoIndex{526355, "gt"}, + CountryToIsoIndex{526371, "gp"}, + CountryToIsoIndex{526390, "gu"}, + CountryToIsoIndex{526400, "gl"}, + CountryToIsoIndex{526422, "gd"}, + CountryToIsoIndex{526435, "ky"}, + CountryToIsoIndex{526454, "ke"}, + CountryToIsoIndex{526464, "cc"}, + CountryToIsoIndex{526497, "cr"}, + CountryToIsoIndex{526513, "xk"}, + CountryToIsoIndex{526523, "km"}, + CountryToIsoIndex{526533, "co"}, + CountryToIsoIndex{526549, "cg"}, + CountryToIsoIndex{526568, "cg"}, + CountryToIsoIndex{526604, "cd"}, + CountryToIsoIndex{526629, "cd"}, + CountryToIsoIndex{526671, "ci"}, + CountryToIsoIndex{526696, "sa"}, + CountryToIsoIndex{526718, "gs"}, + CountryToIsoIndex{526782, "ws"}, + CountryToIsoIndex{526792, "st"}, + CountryToIsoIndex{526823, "pm"}, + CountryToIsoIndex{526863, "sm"}, + CountryToIsoIndex{526879, "bl"}, + CountryToIsoIndex{526907, "mf"}, + CountryToIsoIndex{526929, "zm"}, + CountryToIsoIndex{526942, "sl"}, + CountryToIsoIndex{526961, "sy"}, + CountryToIsoIndex{526971, "sg"}, + CountryToIsoIndex{526990, "sx"}, + CountryToIsoIndex{527018, "dj"}, + CountryToIsoIndex{527028, "gi"}, + CountryToIsoIndex{527047, "jm"}, + CountryToIsoIndex{527063, "je"}, + CountryToIsoIndex{527079, "ge"}, + CountryToIsoIndex{527095, "zw"}, + CountryToIsoIndex{527111, "ch"}, + CountryToIsoIndex{527121, "se"}, + CountryToIsoIndex{527140, "sj"}, + CountryToIsoIndex{527189, "es"}, + CountryToIsoIndex{527202, "sr"}, + CountryToIsoIndex{527215, "lk"}, + CountryToIsoIndex{527231, "sk"}, + CountryToIsoIndex{527247, "si"}, + CountryToIsoIndex{527263, "sz"}, + CountryToIsoIndex{527282, "sd"}, + CountryToIsoIndex{527295, "ea"}, + CountryToIsoIndex{527320, "sn"}, + CountryToIsoIndex{527333, "rs"}, + CountryToIsoIndex{527346, "kn"}, + CountryToIsoIndex{527395, "vc"}, + CountryToIsoIndex{527453, "sh"}, + CountryToIsoIndex{527472, "lc"}, + CountryToIsoIndex{527491, "sc"}, + CountryToIsoIndex{527507, "so"}, + CountryToIsoIndex{527520, "sb"}, + CountryToIsoIndex{527539, "th"}, + CountryToIsoIndex{527546, "tj"}, + CountryToIsoIndex{527565, "tz"}, + CountryToIsoIndex{527581, "tc"}, + CountryToIsoIndex{527615, "cz"}, + CountryToIsoIndex{527625, "cz"}, + CountryToIsoIndex{527644, "td"}, + CountryToIsoIndex{527654, "tn"}, + CountryToIsoIndex{527670, "cl"}, + CountryToIsoIndex{527677, "tv"}, + CountryToIsoIndex{527687, "dg"}, + CountryToIsoIndex{527715, "dk"}, + CountryToIsoIndex{527731, "tk"}, + CountryToIsoIndex{527744, "ta"}, + CountryToIsoIndex{527781, "tt"}, + CountryToIsoIndex{527812, "tm"}, + CountryToIsoIndex{527837, "tr"}, + CountryToIsoIndex{527847, "to"}, + CountryToIsoIndex{527857, "tg"}, + CountryToIsoIndex{527867, "de"}, + CountryToIsoIndex{527877, "do"}, + CountryToIsoIndex{527899, "dm"}, + CountryToIsoIndex{527915, "ng"}, + CountryToIsoIndex{527934, "nr"}, + CountryToIsoIndex{527944, "na"}, + CountryToIsoIndex{527957, "nu"}, + CountryToIsoIndex{527967, "ni"}, + CountryToIsoIndex{527983, "ne"}, + CountryToIsoIndex{527999, "nc"}, + CountryToIsoIndex{528024, "nz"}, + CountryToIsoIndex{528049, "np"}, + CountryToIsoIndex{528062, "no"}, + CountryToIsoIndex{528078, "nf"}, + CountryToIsoIndex{528100, "ht"}, + CountryToIsoIndex{528110, "hu"}, + CountryToIsoIndex{528126, "hm"}, + CountryToIsoIndex{528166, "va"}, + CountryToIsoIndex{528185, "vu"}, + CountryToIsoIndex{528198, "bs"}, + CountryToIsoIndex{528208, "bm"}, + CountryToIsoIndex{528224, "bb"}, + CountryToIsoIndex{528240, "bd"}, + CountryToIsoIndex{528262, "bh"}, + CountryToIsoIndex{528278, "pk"}, + CountryToIsoIndex{528294, "pa"}, + CountryToIsoIndex{528304, "pg"}, + CountryToIsoIndex{528332, "pw"}, + CountryToIsoIndex{528342, "py"}, + CountryToIsoIndex{528358, "ps"}, + CountryToIsoIndex{528374, "ps"}, + CountryToIsoIndex{528399, "pn"}, + CountryToIsoIndex{528421, "fj"}, + CountryToIsoIndex{528434, "ph"}, + CountryToIsoIndex{528450, "fi"}, + CountryToIsoIndex{528469, "fo"}, + CountryToIsoIndex{528488, "fk"}, + CountryToIsoIndex{528516, "fk"}, + CountryToIsoIndex{528571, "fr"}, + CountryToIsoIndex{528584, "br"}, + CountryToIsoIndex{528597, "bg"}, + CountryToIsoIndex{528613, "bf"}, + CountryToIsoIndex{528635, "bn"}, + CountryToIsoIndex{528648, "bi"}, + CountryToIsoIndex{528661, "bt"}, + CountryToIsoIndex{528674, "bv"}, + CountryToIsoIndex{528687, "pr"}, + CountryToIsoIndex{528706, "vn"}, + CountryToIsoIndex{528719, "bj"}, + CountryToIsoIndex{528729, "ve"}, + CountryToIsoIndex{528745, "by"}, + CountryToIsoIndex{528761, "bz"}, + CountryToIsoIndex{528774, "be"}, + CountryToIsoIndex{528787, "pe"}, + CountryToIsoIndex{528797, "hn"}, + CountryToIsoIndex{528816, "ba"}, + CountryToIsoIndex{528853, "bw"}, + CountryToIsoIndex{528866, "bo"}, + CountryToIsoIndex{528879, "pt"}, + CountryToIsoIndex{528895, "pl"}, + CountryToIsoIndex{528911, "mo"}, + CountryToIsoIndex{528921, "mk"}, + CountryToIsoIndex{528937, "mk"}, + CountryToIsoIndex{528988, "mg"}, + CountryToIsoIndex{529007, "yt"}, + CountryToIsoIndex{529020, "mw"}, + CountryToIsoIndex{529033, "ml"}, + CountryToIsoIndex{529040, "mt"}, + CountryToIsoIndex{529050, "mq"}, + CountryToIsoIndex{529072, "my"}, + CountryToIsoIndex{529088, "im"}, + CountryToIsoIndex{529098, "mh"}, + CountryToIsoIndex{529120, "fm"}, + CountryToIsoIndex{529145, "mm"}, + CountryToIsoIndex{529173, "mx"}, + CountryToIsoIndex{529186, "mz"}, + CountryToIsoIndex{529205, "mc"}, + CountryToIsoIndex{529215, "mv"}, + CountryToIsoIndex{529231, "md"}, + CountryToIsoIndex{529244, "ma"}, + CountryToIsoIndex{529257, "mn"}, + CountryToIsoIndex{529270, "me"}, + CountryToIsoIndex{529289, "ms"}, + CountryToIsoIndex{529308, "mu"}, + CountryToIsoIndex{529327, "mr"}, + CountryToIsoIndex{529346, "ez"}, + CountryToIsoIndex{529359, "jo"}, + CountryToIsoIndex{529372, "la"}, + CountryToIsoIndex{529382, "lv"}, + CountryToIsoIndex{529395, "lt"}, + CountryToIsoIndex{529411, "li"}, + CountryToIsoIndex{529439, "ly"}, + CountryToIsoIndex{529449, "lr"}, + CountryToIsoIndex{529462, "lu"}, + CountryToIsoIndex{529484, "rw"}, + CountryToIsoIndex{529497, "ro"}, + CountryToIsoIndex{529513, "ls"}, + CountryToIsoIndex{529523, "lb"}, + CountryToIsoIndex{529536, "re"}, + CountryToIsoIndex{529552, "ru"}, + CountryToIsoIndex{529562, "vu"}, + CountryToIsoIndex{529572, "bt"}, + CountryToIsoIndex{529579, "to"}, + CountryToIsoIndex{529586, "tl"}, + CountryToIsoIndex{529596, "cn"}, + CountryToIsoIndex{529618, "mo"}, + CountryToIsoIndex{529661, "hk"}, + CountryToIsoIndex{529704, "cn"}, + CountryToIsoIndex{529711, "mo"}, + CountryToIsoIndex{529739, "hk"}, + CountryToIsoIndex{529767, "cn"}, + CountryToIsoIndex{529774, "mo"}, + CountryToIsoIndex{529802, "hk"}, + CountryToIsoIndex{529830, "cf"}, + CountryToIsoIndex{529858, "mo"}, + CountryToIsoIndex{529904, "hk"}, + CountryToIsoIndex{529947, "cn"}, + CountryToIsoIndex{529969, "mo"}, + CountryToIsoIndex{530012, "hk"}, + CountryToIsoIndex{530055, "cf"}, + CountryToIsoIndex{530071, "cf"}, + CountryToIsoIndex{530087, "dk"}, + CountryToIsoIndex{530094, "dk"}, + CountryToIsoIndex{530101, "it"}, + CountryToIsoIndex{530111, "ua"}, + CountryToIsoIndex{530121, "uz"}, + CountryToIsoIndex{530134, "uz"}, + CountryToIsoIndex{530153, "ug"}, + CountryToIsoIndex{530163, "uy"}, + CountryToIsoIndex{530173, "td"}, + CountryToIsoIndex{530180, "ge"}, + CountryToIsoIndex{530199, "ye"}, + CountryToIsoIndex{530206, "ye"}, + CountryToIsoIndex{530213, "az"}, + CountryToIsoIndex{530226, "am"}, + CountryToIsoIndex{530239, "az"}, + CountryToIsoIndex{530252, "am"}, + CountryToIsoIndex{530265, "gf"}, + CountryToIsoIndex{530281, "pf"}, + CountryToIsoIndex{530303, "tf"}, + CountryToIsoIndex{530322, "il"}, + CountryToIsoIndex{530332, "iq"}, + CountryToIsoIndex{530342, "ir"}, + CountryToIsoIndex{530349, "ea"}, + CountryToIsoIndex{530371, "ea"}, + CountryToIsoIndex{530393, "ea"}, + CountryToIsoIndex{530415, "bz"}, + CountryToIsoIndex{530425, "bz"}, + CountryToIsoIndex{530435, "cv"}, + CountryToIsoIndex{530445, "ru"}, + CountryToIsoIndex{530455, "ru"}, + CountryToIsoIndex{530465, "bg"}, + CountryToIsoIndex{530478, "bg"}, + CountryToIsoIndex{530491, "cp"}, + CountryToIsoIndex{530507, "hr"}, + CountryToIsoIndex{530520, "hr"}, + CountryToIsoIndex{530536, "hr"}, + CountryToIsoIndex{530549, "hr"}, + CountryToIsoIndex{530565, "cp"}, + CountryToIsoIndex{530581, "cp"}, + CountryToIsoIndex{530597, "cp"}, + CountryToIsoIndex{530613, "gu"}, + CountryToIsoIndex{530620, "gm"}, + CountryToIsoIndex{530630, "is"}, + CountryToIsoIndex{530637, "is"}, + CountryToIsoIndex{530644, "gn"}, + CountryToIsoIndex{530654, "gw"}, + CountryToIsoIndex{530670, "gw"}, + CountryToIsoIndex{530686, "li"}, + CountryToIsoIndex{530702, "li"}, + CountryToIsoIndex{530718, "cg"}, + CountryToIsoIndex{530734, "cd"}, + CountryToIsoIndex{530756, "cg"}, + CountryToIsoIndex{530778, "cg"}, + CountryToIsoIndex{530794, "cd"}, + CountryToIsoIndex{530816, "cd"}, + CountryToIsoIndex{530832, "ly"}, + CountryToIsoIndex{530842, "ly"}, + CountryToIsoIndex{530852, "lr"}, + CountryToIsoIndex{530865, "lr"}, + CountryToIsoIndex{530878, "mk"}, + CountryToIsoIndex{530912, "mk"}, + CountryToIsoIndex{530946, "cg"}, + CountryToIsoIndex{530962, "cd"}, + CountryToIsoIndex{530984, "cg"}, + CountryToIsoIndex{531006, "cd"}, + CountryToIsoIndex{531028, "ga"}, + CountryToIsoIndex{531035, "ca"}, + CountryToIsoIndex{531045, "gh"}, + CountryToIsoIndex{531052, "gh"}, + CountryToIsoIndex{531059, "ic"}, + CountryToIsoIndex{531075, "ga"}, + CountryToIsoIndex{531082, "ic"}, + CountryToIsoIndex{531098, "ic"}, + CountryToIsoIndex{531114, "hu"}, + CountryToIsoIndex{531124, "mp"}, + CountryToIsoIndex{531146, "kp"}, + CountryToIsoIndex{531156, "kp"}, + CountryToIsoIndex{531163, "kp"}, + CountryToIsoIndex{531170, "mp"}, + CountryToIsoIndex{531192, "mp"}, + CountryToIsoIndex{531214, "mp"}, + CountryToIsoIndex{531236, "tt"}, + CountryToIsoIndex{531258, "tt"}, + CountryToIsoIndex{531280, "tt"}, + CountryToIsoIndex{531302, "tt"}, + CountryToIsoIndex{531324, "za"}, + CountryToIsoIndex{531340, "ss"}, + CountryToIsoIndex{531356, "gs"}, + CountryToIsoIndex{531390, "gs"}, + CountryToIsoIndex{531427, "gs"}, + CountryToIsoIndex{531464, "gs"}, + CountryToIsoIndex{531501, "gs"}, + CountryToIsoIndex{531535, "aq"}, + CountryToIsoIndex{531545, "aq"}, + CountryToIsoIndex{531552, "aq"}, + CountryToIsoIndex{531562, "ss"}, + CountryToIsoIndex{531572, "ss"}, + CountryToIsoIndex{531582, "za"}, + CountryToIsoIndex{531589, "kr"}, + CountryToIsoIndex{531596, "kr"}, + CountryToIsoIndex{531603, "bw"}, + CountryToIsoIndex{531616, "bw"}, + CountryToIsoIndex{531629, "qa"}, + CountryToIsoIndex{531639, "qa"}, + CountryToIsoIndex{531649, "qa"}, + CountryToIsoIndex{531656, "qa"}, + CountryToIsoIndex{531663, "rw"}, + CountryToIsoIndex{531673, "rw"}, + CountryToIsoIndex{531683, "lu"}, + CountryToIsoIndex{531693, "id"}, + CountryToIsoIndex{531700, "in"}, + CountryToIsoIndex{531707, "id"}, + CountryToIsoIndex{531723, "gt"}, + CountryToIsoIndex{531736, "gt"}, + CountryToIsoIndex{531749, "er"}, + CountryToIsoIndex{531762, "er"}, + CountryToIsoIndex{531775, "ec"}, + CountryToIsoIndex{531785, "ec"}, + CountryToIsoIndex{531798, "ec"}, + CountryToIsoIndex{531811, "er"}, + CountryToIsoIndex{531827, "er"}, + CountryToIsoIndex{531843, "sy"}, + CountryToIsoIndex{531853, "cu"}, + CountryToIsoIndex{531860, "cc"}, + CountryToIsoIndex{531876, "tw"}, + CountryToIsoIndex{531883, "tw"}, + CountryToIsoIndex{531890, "sz"}, + CountryToIsoIndex{531903, "sz"}, + CountryToIsoIndex{531916, "ye"}, + CountryToIsoIndex{531923, "um"}, + CountryToIsoIndex{531948, "kg"}, + CountryToIsoIndex{531961, "kg"}, + CountryToIsoIndex{531980, "dj"}, + CountryToIsoIndex{531990, "dj"}, + CountryToIsoIndex{532000, "kg"}, + CountryToIsoIndex{532013, "ki"}, + CountryToIsoIndex{532026, "tv"}, + CountryToIsoIndex{532036, "tv"}, + CountryToIsoIndex{532046, "kz"}, + CountryToIsoIndex{532056, "kz"}, + CountryToIsoIndex{532072, "kz"}, + CountryToIsoIndex{532082, "co"}, + CountryToIsoIndex{532095, "co"}, + CountryToIsoIndex{532108, "cr"}, + CountryToIsoIndex{532124, "cr"}, + CountryToIsoIndex{532140, "cr"}, + CountryToIsoIndex{532156, "cm"}, + CountryToIsoIndex{532166, "cm"}, + CountryToIsoIndex{532176, "ge"}, + CountryToIsoIndex{532186, "ge"}, + CountryToIsoIndex{532205, "tv"}, + CountryToIsoIndex{532215, "tv"}, + CountryToIsoIndex{532225, "tc"}, + CountryToIsoIndex{532253, "tc"}, + CountryToIsoIndex{532281, "tm"}, + CountryToIsoIndex{532291, "tm"}, + CountryToIsoIndex{532307, "tm"}, + CountryToIsoIndex{532317, "tr"}, + CountryToIsoIndex{532327, "lc"}, + CountryToIsoIndex{532340, "kn"}, + CountryToIsoIndex{532362, "kn"}, + CountryToIsoIndex{532384, "st"}, + CountryToIsoIndex{532409, "st"}, + CountryToIsoIndex{532434, "bl"}, + CountryToIsoIndex{532450, "bl"}, + CountryToIsoIndex{532463, "vc"}, + CountryToIsoIndex{532494, "vc"}, + CountryToIsoIndex{532525, "pm"}, + CountryToIsoIndex{532556, "pm"}, + CountryToIsoIndex{532587, "cx"}, + CountryToIsoIndex{532597, "sh"}, + CountryToIsoIndex{532610, "sh"}, + CountryToIsoIndex{532626, "lc"}, + CountryToIsoIndex{532639, "sm"}, + CountryToIsoIndex{532652, "sm"}, + CountryToIsoIndex{532665, "gy"}, + CountryToIsoIndex{532675, "gy"}, + CountryToIsoIndex{532685, "tz"}, + CountryToIsoIndex{532698, "tz"}, + CountryToIsoIndex{532711, "tz"}, + CountryToIsoIndex{532724, "tz"}, + CountryToIsoIndex{532737, "eg"}, + CountryToIsoIndex{532744, "et"}, + CountryToIsoIndex{532760, "et"}, + CountryToIsoIndex{532776, "ki"}, + CountryToIsoIndex{532789, "tj"}, + CountryToIsoIndex{532799, "tj"}, + CountryToIsoIndex{532815, "sn"}, + CountryToIsoIndex{532828, "sn"}, + CountryToIsoIndex{532841, "rs"}, + CountryToIsoIndex{532854, "sc"}, + CountryToIsoIndex{532864, "sc"}, + CountryToIsoIndex{532874, "sl"}, + CountryToIsoIndex{532887, "cy"}, + CountryToIsoIndex{532900, "rs"}, + CountryToIsoIndex{532913, "sc"}, + CountryToIsoIndex{532923, "sc"}, + CountryToIsoIndex{532933, "mx"}, + CountryToIsoIndex{532943, "tg"}, + CountryToIsoIndex{532950, "tg"}, + CountryToIsoIndex{532966, "do"}, + CountryToIsoIndex{532988, "do"}, + CountryToIsoIndex{533010, "dm"}, + CountryToIsoIndex{533023, "do"}, + CountryToIsoIndex{533045, "qo"}, + CountryToIsoIndex{533067, "qo"}, + CountryToIsoIndex{533089, "qo"}, + CountryToIsoIndex{533111, "ng"}, + CountryToIsoIndex{533124, "ng"}, + CountryToIsoIndex{533137, "ax"}, + CountryToIsoIndex{533150, "at"}, + CountryToIsoIndex{533160, "at"}, + CountryToIsoIndex{533170, "ax"}, + CountryToIsoIndex{533183, "ve"}, + CountryToIsoIndex{533196, "ve"}, + CountryToIsoIndex{533209, "bd"}, + CountryToIsoIndex{533219, "bd"}, + CountryToIsoIndex{533232, "ao"}, + CountryToIsoIndex{533242, "ai"}, + CountryToIsoIndex{533252, "ag"}, + CountryToIsoIndex{533274, "ai"}, + CountryToIsoIndex{533284, "ag"}, + CountryToIsoIndex{533306, "ag"}, + CountryToIsoIndex{533328, "ag"}, + CountryToIsoIndex{533350, "ag"}, + CountryToIsoIndex{533372, "ad"}, + CountryToIsoIndex{533382, "ad"}, + CountryToIsoIndex{533392, "hn"}, + CountryToIsoIndex{533405, "fm"}, + CountryToIsoIndex{533424, "fm"}, + CountryToIsoIndex{533449, "fm"}, + CountryToIsoIndex{533468, "fm"}, + CountryToIsoIndex{533493, "la"}, + CountryToIsoIndex{533500, "la"}, + CountryToIsoIndex{533507, "zm"}, + CountryToIsoIndex{533517, "zm"}, + CountryToIsoIndex{533527, "ni"}, + CountryToIsoIndex{533540, "ne"}, + CountryToIsoIndex{533547, "ng"}, + CountryToIsoIndex{533560, "ng"}, + CountryToIsoIndex{533573, "ne"}, + CountryToIsoIndex{533583, "ne"}, + CountryToIsoIndex{533593, "np"}, + CountryToIsoIndex{533603, "np"}, + CountryToIsoIndex{533613, "gm"}, + CountryToIsoIndex{533623, "ps"}, + CountryToIsoIndex{533636, "ps"}, + CountryToIsoIndex{533658, "ps"}, + CountryToIsoIndex{533680, "ps"}, + CountryToIsoIndex{533699, "ps"}, + CountryToIsoIndex{533718, "bs"}, + CountryToIsoIndex{533728, "bs"}, + CountryToIsoIndex{533738, "pk"}, + CountryToIsoIndex{533751, "bb"}, + CountryToIsoIndex{533764, "pg"}, + CountryToIsoIndex{533786, "pg"}, + CountryToIsoIndex{533808, "pg"}, + CountryToIsoIndex{533830, "pg"}, + CountryToIsoIndex{533852, "py"}, + CountryToIsoIndex{533862, "pa"}, + CountryToIsoIndex{533872, "pa"}, + CountryToIsoIndex{533882, "bh"}, + CountryToIsoIndex{533889, "br"}, + CountryToIsoIndex{533896, "bb"}, + CountryToIsoIndex{533906, "bb"}, + CountryToIsoIndex{533916, "bf"}, + CountryToIsoIndex{533932, "bf"}, + CountryToIsoIndex{533948, "bf"}, + CountryToIsoIndex{533964, "bf"}, + CountryToIsoIndex{533980, "bv"}, + CountryToIsoIndex{533990, "bv"}, + CountryToIsoIndex{534000, "bi"}, + CountryToIsoIndex{534010, "bv"}, + CountryToIsoIndex{534020, "gr"}, + CountryToIsoIndex{534027, "gr"}, + CountryToIsoIndex{534034, "pw"}, + CountryToIsoIndex{534041, "pw"}, + CountryToIsoIndex{534048, "gn"}, + CountryToIsoIndex{534058, "gw"}, + CountryToIsoIndex{534074, "gw"}, + CountryToIsoIndex{534090, "ck"}, + CountryToIsoIndex{534103, "cw"}, + CountryToIsoIndex{534113, "ck"}, + CountryToIsoIndex{534126, "cw"}, + CountryToIsoIndex{534136, "ky"}, + CountryToIsoIndex{534149, "de"}, + CountryToIsoIndex{534156, "de"}, + CountryToIsoIndex{534163, "it"}, + CountryToIsoIndex{534173, "ee"}, + CountryToIsoIndex{534186, "ie"}, + CountryToIsoIndex{534196, "sb"}, + CountryToIsoIndex{534212, "sb"}, + CountryToIsoIndex{534228, "tk"}, + CountryToIsoIndex{534238, "tk"}, + CountryToIsoIndex{534254, "tk"}, + CountryToIsoIndex{534270, "lv"}, + CountryToIsoIndex{534283, "lv"}, + CountryToIsoIndex{534296, "lv"}, + CountryToIsoIndex{534309, "no"}, + CountryToIsoIndex{534316, "sj"}, + CountryToIsoIndex{534344, "cz"}, + CountryToIsoIndex{534351, "cz"}, + CountryToIsoIndex{534367, "cz"}, + CountryToIsoIndex{534383, "md"}, + CountryToIsoIndex{534396, "ma"}, + CountryToIsoIndex{534406, "md"}, + CountryToIsoIndex{534419, "mc"}, + CountryToIsoIndex{534429, "mc"}, + CountryToIsoIndex{534439, "sy"}, + CountryToIsoIndex{534449, "bn"}, + CountryToIsoIndex{534456, "fj"}, + CountryToIsoIndex{534463, "fj"}, + CountryToIsoIndex{534470, "sz"}, + CountryToIsoIndex{534483, "sz"}, + CountryToIsoIndex{534496, "sk"}, + CountryToIsoIndex{534509, "si"}, + CountryToIsoIndex{534525, "si"}, + CountryToIsoIndex{534541, "si"}, + CountryToIsoIndex{534557, "si"}, + CountryToIsoIndex{534573, "sj"}, + CountryToIsoIndex{534598, "sj"}, + CountryToIsoIndex{534635, "sj"}, + CountryToIsoIndex{534672, "sj"}, + CountryToIsoIndex{534709, "lk"}, + CountryToIsoIndex{534722, "lk"}, + CountryToIsoIndex{534735, "sg"}, + CountryToIsoIndex{534745, "nc"}, + CountryToIsoIndex{534764, "nc"}, + CountryToIsoIndex{534783, "nz"}, + CountryToIsoIndex{534793, "jp"}, + CountryToIsoIndex{534800, "cl"}, + CountryToIsoIndex{534807, "im"}, + CountryToIsoIndex{534814, "im"}, + CountryToIsoIndex{534821, "kp"}, + CountryToIsoIndex{534828, "tl"}, + CountryToIsoIndex{534844, "tl"}, + CountryToIsoIndex{534863, "to"}, + CountryToIsoIndex{534870, "tl"}, + CountryToIsoIndex{534880, "td"}, + CountryToIsoIndex{534887, "kh"}, + CountryToIsoIndex{534897, "gg"}, + CountryToIsoIndex{534904, "gg"}, + CountryToIsoIndex{534914, "gg"}, + CountryToIsoIndex{534924, "gd"}, + CountryToIsoIndex{534937, "gd"}, + CountryToIsoIndex{534950, "gd"}, + CountryToIsoIndex{534963, "gd"}, + CountryToIsoIndex{534976, "gl"}, + CountryToIsoIndex{534986, "gl"}, + CountryToIsoIndex{534996, "ge"}, + CountryToIsoIndex{535009, "ge"}, + CountryToIsoIndex{535022, "va"}, + CountryToIsoIndex{535032, "va"}, + CountryToIsoIndex{535042, "mu"}, + CountryToIsoIndex{535055, "ez"}, + CountryToIsoIndex{535065, "ez"}, + CountryToIsoIndex{535075, "be"}, + CountryToIsoIndex{535085, "be"}, + CountryToIsoIndex{535095, "mr"}, + CountryToIsoIndex{535111, "mr"}, + CountryToIsoIndex{535127, "mu"}, + CountryToIsoIndex{535140, "mu"}, + CountryToIsoIndex{535153, "to"}, + CountryToIsoIndex{535160, "bn"}, + CountryToIsoIndex{535167, "bn"}, + CountryToIsoIndex{535174, "sa"}, + CountryToIsoIndex{535193, "sa"}, + CountryToIsoIndex{535209, "sa"}, + CountryToIsoIndex{535228, "sa"}, + CountryToIsoIndex{535244, "fr"}, + CountryToIsoIndex{535251, "fr"}, + CountryToIsoIndex{535258, "tf"}, + CountryToIsoIndex{535277, "tf"}, + CountryToIsoIndex{535296, "mf"}, + CountryToIsoIndex{535312, "gf"}, + CountryToIsoIndex{535328, "pf"}, + CountryToIsoIndex{535350, "pf"}, + CountryToIsoIndex{535372, "tf"}, + CountryToIsoIndex{535391, "tf"}, + CountryToIsoIndex{535410, "tf"}, + CountryToIsoIndex{535429, "gf"}, + CountryToIsoIndex{535445, "pf"}, + CountryToIsoIndex{535467, "pf"}, + CountryToIsoIndex{535489, "mf"}, + CountryToIsoIndex{535505, "fo"}, + CountryToIsoIndex{535518, "fo"}, + CountryToIsoIndex{535531, "pl"}, + CountryToIsoIndex{535538, "ba"}, + CountryToIsoIndex{535569, "pr"}, + CountryToIsoIndex{535582, "ba"}, + CountryToIsoIndex{535613, "ba"}, + CountryToIsoIndex{535644, "ba"}, + CountryToIsoIndex{535675, "ba"}, + CountryToIsoIndex{535706, "bw"}, + CountryToIsoIndex{535716, "pl"}, + CountryToIsoIndex{535723, "th"}, + CountryToIsoIndex{535730, "th"}, + CountryToIsoIndex{535737, "je"}, + CountryToIsoIndex{535747, "zw"}, + CountryToIsoIndex{535760, "zw"}, + CountryToIsoIndex{535773, "hn"}, + CountryToIsoIndex{535786, "ht"}, + CountryToIsoIndex{535793, "to"}, + CountryToIsoIndex{535800, "je"}, + CountryToIsoIndex{535810, "au"}, + CountryToIsoIndex{535823, "au"}, + CountryToIsoIndex{535830, "mo"}, + CountryToIsoIndex{535837, "mo"}, + CountryToIsoIndex{535844, "ua"}, + CountryToIsoIndex{535854, "ug"}, + CountryToIsoIndex{535864, "uy"}, + CountryToIsoIndex{535874, "uz"}, + CountryToIsoIndex{535887, "ie"}, + CountryToIsoIndex{535897, "ee"}, + CountryToIsoIndex{535910, "jm"}, + CountryToIsoIndex{535920, "jm"}, + CountryToIsoIndex{535930, "tc"}, + CountryToIsoIndex{535958, "tc"}, + CountryToIsoIndex{535986, "tt"}, + CountryToIsoIndex{536011, "ta"}, + CountryToIsoIndex{536043, "ta"}, + CountryToIsoIndex{536074, "ta"}, + CountryToIsoIndex{536105, "sl"}, + CountryToIsoIndex{536115, "sl"}, + CountryToIsoIndex{536125, "bo"}, + CountryToIsoIndex{536138, "bo"}, + CountryToIsoIndex{536151, "nr"}, + CountryToIsoIndex{536158, "nr"}, + CountryToIsoIndex{536165, "se"}, + CountryToIsoIndex{536172, "ch"}, + CountryToIsoIndex{536179, "gp"}, + CountryToIsoIndex{536192, "gt"}, + CountryToIsoIndex{536205, "gt"}, + CountryToIsoIndex{536218, "gp"}, + CountryToIsoIndex{536231, "wf"}, + CountryToIsoIndex{536259, "wf"}, + CountryToIsoIndex{536287, "wf"}, + CountryToIsoIndex{536309, "wf"}, + CountryToIsoIndex{536343, "vu"}, + CountryToIsoIndex{536356, "vu"}, + CountryToIsoIndex{536369, "gm"}, + CountryToIsoIndex{536379, "gm"}, + CountryToIsoIndex{536389, "re"}, + CountryToIsoIndex{536399, "re"}, + CountryToIsoIndex{536409, "by"}, + CountryToIsoIndex{536422, "by"}, + CountryToIsoIndex{536435, "bm"}, + CountryToIsoIndex{536445, "bm"}, + CountryToIsoIndex{536455, "bm"}, + CountryToIsoIndex{536465, "pn"}, + CountryToIsoIndex{536484, "pn"}, + CountryToIsoIndex{536500, "pn"}, + CountryToIsoIndex{536516, "pn"}, + CountryToIsoIndex{536532, "gy"}, + CountryToIsoIndex{536542, "rw"}, + CountryToIsoIndex{536552, "rw"}, + CountryToIsoIndex{536562, "lu"}, + CountryToIsoIndex{536572, "gi"}, + CountryToIsoIndex{536585, "gi"}, + CountryToIsoIndex{536598, "fk"}, + CountryToIsoIndex{536614, "fk"}, + CountryToIsoIndex{536654, "fk"}, + CountryToIsoIndex{536697, "fk"}, + CountryToIsoIndex{536713, "fk"}, + CountryToIsoIndex{536753, "fk"}, + CountryToIsoIndex{536796, "cc"}, + CountryToIsoIndex{536824, "kw"}, + CountryToIsoIndex{536834, "km"}, + CountryToIsoIndex{536844, "km"}, + CountryToIsoIndex{536854, "ci"}, + CountryToIsoIndex{536867, "cc"}, + CountryToIsoIndex{536895, "cc"}, + CountryToIsoIndex{536923, "xk"}, + CountryToIsoIndex{536933, "pe"}, + CountryToIsoIndex{536940, "pe"}, + CountryToIsoIndex{536947, "tn"}, + CountryToIsoIndex{536957, "tn"}, + CountryToIsoIndex{536970, "tn"}, + CountryToIsoIndex{536983, "lt"}, + CountryToIsoIndex{536993, "as"}, + CountryToIsoIndex{537009, "vi"}, + CountryToIsoIndex{537037, "jo"}, + CountryToIsoIndex{537044, "na"}, + CountryToIsoIndex{537057, "nu"}, + CountryToIsoIndex{537067, "nz"}, + CountryToIsoIndex{537077, "sb"}, + CountryToIsoIndex{537093, "sb"}, + CountryToIsoIndex{537109, "so"}, + CountryToIsoIndex{537122, "so"}, + CountryToIsoIndex{537132, "so"}, + CountryToIsoIndex{537145, "so"}, + CountryToIsoIndex{537155, "cv"}, + CountryToIsoIndex{537165, "mm"}, + CountryToIsoIndex{537172, "jo"}, + CountryToIsoIndex{537179, "na"}, + CountryToIsoIndex{537192, "nu"}, + CountryToIsoIndex{537199, "nu"}, + CountryToIsoIndex{537209, "nz"}, + CountryToIsoIndex{537219, "cv"}, + CountryToIsoIndex{537229, "mm"}, + CountryToIsoIndex{537236, "ro"}, + CountryToIsoIndex{537249, "ro"}, + CountryToIsoIndex{537262, "us"}, + CountryToIsoIndex{537269, "um"}, + CountryToIsoIndex{537294, "us"}, + CountryToIsoIndex{537301, "um"}, + CountryToIsoIndex{537326, "vi"}, + CountryToIsoIndex{537345, "vi"}, + CountryToIsoIndex{537367, "as"}, + CountryToIsoIndex{537383, "vi"}, + CountryToIsoIndex{537402, "vi"}, + CountryToIsoIndex{537424, "as"}, + CountryToIsoIndex{537440, "it"}, + CountryToIsoIndex{537450, "la"}, + CountryToIsoIndex{537457, "la"}, + CountryToIsoIndex{537464, "kn"}, + CountryToIsoIndex{537495, "kn"}, + CountryToIsoIndex{537517, "kn"}, + CountryToIsoIndex{537539, "st"}, + CountryToIsoIndex{537564, "st"}, + CountryToIsoIndex{537589, "st"}, + CountryToIsoIndex{537611, "bl"}, + CountryToIsoIndex{537627, "bl"}, + CountryToIsoIndex{537640, "vc"}, + CountryToIsoIndex{537665, "vc"}, + CountryToIsoIndex{537696, "vc"}, + CountryToIsoIndex{537727, "pm"}, + CountryToIsoIndex{537758, "pm"}, + CountryToIsoIndex{537786, "lc"}, + CountryToIsoIndex{537799, "cx"}, + CountryToIsoIndex{537809, "sh"}, + CountryToIsoIndex{537825, "lc"}, + CountryToIsoIndex{537838, "sm"}, + CountryToIsoIndex{537851, "ke"}, + CountryToIsoIndex{537858, "ke"}, + CountryToIsoIndex{537865, "ke"}, + CountryToIsoIndex{537875, "ke"}, + CountryToIsoIndex{537882, "fi"}, + CountryToIsoIndex{537889, "fi"}, + CountryToIsoIndex{537896, "sd"}, + CountryToIsoIndex{537903, "sr"}, + CountryToIsoIndex{537913, "sr"}, + CountryToIsoIndex{537923, "gb"}, + CountryToIsoIndex{537930, "gb"}, + CountryToIsoIndex{537937, "io"}, + CountryToIsoIndex{537959, "vg"}, + CountryToIsoIndex{537978, "vg"}, + CountryToIsoIndex{538000, "io"}, + CountryToIsoIndex{538022, "vg"}, + CountryToIsoIndex{538041, "vg"}, + CountryToIsoIndex{538063, "io"}, + CountryToIsoIndex{538088, "vg"}, + CountryToIsoIndex{538116, "mr"}, + CountryToIsoIndex{538132, "mr"}, + CountryToIsoIndex{538148, "nl"}, + CountryToIsoIndex{538155, "bq"}, + CountryToIsoIndex{538174, "bq"}, + CountryToIsoIndex{538193, "sx"}, + CountryToIsoIndex{538209, "aw"}, + CountryToIsoIndex{538225, "sx"}, + CountryToIsoIndex{538241, "aw"}, + CountryToIsoIndex{538257, "nl"}, + CountryToIsoIndex{538264, "bq"}, + CountryToIsoIndex{538283, "mz"}, + CountryToIsoIndex{538296, "mz"}, + CountryToIsoIndex{538309, "ls"}, + CountryToIsoIndex{538319, "ph"}, + CountryToIsoIndex{538329, "ph"}, + CountryToIsoIndex{538339, "sv"}, + CountryToIsoIndex{538352, "ws"}, + CountryToIsoIndex{538362, "vu"}, + CountryToIsoIndex{538372, "ye"}, + CountryToIsoIndex{538379, "km"}, + CountryToIsoIndex{538386, "pt"}, + CountryToIsoIndex{538396, "mn"}, + CountryToIsoIndex{538403, "ms"}, + CountryToIsoIndex{538413, "ms"}, + CountryToIsoIndex{538423, "me"}, + CountryToIsoIndex{538439, "me"}, + CountryToIsoIndex{538455, "ms"}, + CountryToIsoIndex{538471, "bi"}, + CountryToIsoIndex{538481, "gy"}, + CountryToIsoIndex{538491, "ws"}, + CountryToIsoIndex{538501, "sv"}, + CountryToIsoIndex{538514, "sd"}, + CountryToIsoIndex{538521, "sr"}, + CountryToIsoIndex{538531, "sr"}, + CountryToIsoIndex{538541, "et"}, + CountryToIsoIndex{538554, "et"}, + CountryToIsoIndex{538567, "eh"}, + CountryToIsoIndex{538580, "eh"}, + CountryToIsoIndex{538593, "es"}, + CountryToIsoIndex{538603, "nf"}, + CountryToIsoIndex{538616, "nr"}, + CountryToIsoIndex{538623, "nf"}, + CountryToIsoIndex{538636, "nr"}, + CountryToIsoIndex{538643, "ci"}, + CountryToIsoIndex{538656, "bj"}, + CountryToIsoIndex{538663, "bj"}, + CountryToIsoIndex{538670, "bz"}, + CountryToIsoIndex{538680, "lr"}, + CountryToIsoIndex{538693, "ls"}, + CountryToIsoIndex{538703, "cy"}, + CountryToIsoIndex{538716, "zm"}, + CountryToIsoIndex{538726, "bj"}, + CountryToIsoIndex{538733, "bj"}, + CountryToIsoIndex{538740, "bz"}, + CountryToIsoIndex{538750, "lr"}, + CountryToIsoIndex{538763, "ls"}, + CountryToIsoIndex{538773, "cy"}, + CountryToIsoIndex{538786, "zm"}, + CountryToIsoIndex{538796, "gq"}, + CountryToIsoIndex{538812, "gq"}, + CountryToIsoIndex{538828, "gq"}, + CountryToIsoIndex{538844, "hm"}, + CountryToIsoIndex{538875, "hm"}, + CountryToIsoIndex{538906, "hm"}, + CountryToIsoIndex{538934, "hm"}, + CountryToIsoIndex{538965, "vn"}, + CountryToIsoIndex{538972, "zw"}, + CountryToIsoIndex{538982, "gh"}, + CountryToIsoIndex{538989, "gh"}, + CountryToIsoIndex{538996, "dg"}, + CountryToIsoIndex{539018, "dg"}, + CountryToIsoIndex{539040, "dg"}, + CountryToIsoIndex{539059, "ky"}, + CountryToIsoIndex{539072, "gu"}, + CountryToIsoIndex{539079, "az"}, + CountryToIsoIndex{539092, "af"}, + CountryToIsoIndex{539102, "dz"}, + CountryToIsoIndex{539118, "al"}, + CountryToIsoIndex{539134, "ae"}, + CountryToIsoIndex{539159, "ae"}, + CountryToIsoIndex{539184, "ae"}, + CountryToIsoIndex{539209, "ae"}, + CountryToIsoIndex{539234, "om"}, + CountryToIsoIndex{539241, "om"}, + CountryToIsoIndex{539254, "om"}, + CountryToIsoIndex{539267, "ar"}, + CountryToIsoIndex{539277, "ac"}, + CountryToIsoIndex{539290, "ac"}, + CountryToIsoIndex{539303, "dz"}, + CountryToIsoIndex{539319, "al"}, + CountryToIsoIndex{539335, "aw"}, + CountryToIsoIndex{539345, "aw"}, + CountryToIsoIndex{539355, "kr"}, + CountryToIsoIndex{539362, "kr"}, + CountryToIsoIndex{539369, "hk"}, + CountryToIsoIndex{539376, "mq"}, + CountryToIsoIndex{539389, "mq"}, + CountryToIsoIndex{539405, "my"}, + CountryToIsoIndex{539418, "mk"}, + CountryToIsoIndex{539428, "ml"}, + CountryToIsoIndex{539435, "im"}, + CountryToIsoIndex{539445, "mw"}, + CountryToIsoIndex{539455, "mw"}, + CountryToIsoIndex{539465, "mt"}, + CountryToIsoIndex{539475, "mv"}, + CountryToIsoIndex{539488, "mv"}, + CountryToIsoIndex{539501, "yt"}, + CountryToIsoIndex{539511, "yt"}, + CountryToIsoIndex{539524, "mh"}, + CountryToIsoIndex{539540, "mt"}, + CountryToIsoIndex{539550, "mg"}, + CountryToIsoIndex{539566, "ml"}, + CountryToIsoIndex{539573, "mq"}, + CountryToIsoIndex{539589, "mk"}, + CountryToIsoIndex{539599, "mk"}, + CountryToIsoIndex{539648, "ml"}, + CountryToIsoIndex{539655, "mt"}, + CountryToIsoIndex{539665, "mv"}, + CountryToIsoIndex{539678, "mv"}, + CountryToIsoIndex{539691, "im"}, + CountryToIsoIndex{539701, "mw"}, + CountryToIsoIndex{539711, "mw"}, + CountryToIsoIndex{539721, "mq"}, + CountryToIsoIndex{539734, "my"}, + CountryToIsoIndex{539747, "yt"}, + CountryToIsoIndex{539757, "mh"}, + CountryToIsoIndex{539773, "mt"}, + CountryToIsoIndex{539783, "mg"}, + CountryToIsoIndex{539799, "ml"}, + CountryToIsoIndex{539806, "bv"}, + CountryToIsoIndex{539819, "lb"}, + CountryToIsoIndex{539829, "me"}, + CountryToIsoIndex{539836, "br"}, + CountryToIsoIndex{539843, "us"}, + CountryToIsoIndex{539850, "fr"}, + CountryToIsoIndex{539857, "de"}, + CountryToIsoIndex{539864, "ru"}, + CountryToIsoIndex{539874, "cn"}, + CountryToIsoIndex{539881, "jp"}, + CountryToIsoIndex{539888, "gb"}, + CountryToIsoIndex{539895, "it"}, + CountryToIsoIndex{539905, "in"}, + CountryToIsoIndex{539912, "er"}, + CountryToIsoIndex{539925, "bz"}, + CountryToIsoIndex{539935, "sl"}, + CountryToIsoIndex{539962, "tl"}, + CountryToIsoIndex{539983, "ly"}, + CountryToIsoIndex{539993, "lb"}, + CountryToIsoIndex{540006, "re"}, + CountryToIsoIndex{540016, "sc"}, + CountryToIsoIndex{540026, "cl"}, + CountryToIsoIndex{540033, "io"}, + CountryToIsoIndex{540077, "vg"}, + CountryToIsoIndex{540115, "jp"}, + CountryToIsoIndex{540125, "ye"}, + CountryToIsoIndex{540135, "ky"}, + CountryToIsoIndex{540158, "cv"}, + CountryToIsoIndex{540182, "cx"}, + CountryToIsoIndex{540205, "ke"}, + CountryToIsoIndex{540212, "et"}, + CountryToIsoIndex{540228, "in"}, + CountryToIsoIndex{540238, "it"}, + CountryToIsoIndex{540248, "iq"}, + CountryToIsoIndex{540258, "ir"}, + CountryToIsoIndex{540268, "id"}, + CountryToIsoIndex{540284, "pn"}, + CountryToIsoIndex{540297, "pr"}, + CountryToIsoIndex{540314, "ph"}, + CountryToIsoIndex{540327, "fj"}, + CountryToIsoIndex{540337, "tf"}, + CountryToIsoIndex{540385, "fi"}, + CountryToIsoIndex{540402, "ta"}, + CountryToIsoIndex{540426, "dg"}, + CountryToIsoIndex{540446, "ls"}, + CountryToIsoIndex{540456, "lt"}, + CountryToIsoIndex{540472, "li"}, + CountryToIsoIndex{540491, "sn"}, + CountryToIsoIndex{540504, "sj"}, + CountryToIsoIndex{540538, "sy"}, + CountryToIsoIndex{540548, "sg"}, + CountryToIsoIndex{540561, "si"}, + CountryToIsoIndex{540577, "sk"}, + CountryToIsoIndex{540593, "pm"}, + CountryToIsoIndex{540624, "vc"}, + CountryToIsoIndex{540668, "kn"}, + CountryToIsoIndex{540699, "lc"}, + CountryToIsoIndex{540716, "sh"}, + CountryToIsoIndex{540733, "sx"}, + CountryToIsoIndex{540756, "nz"}, + CountryToIsoIndex{540780, "zw"}, + CountryToIsoIndex{540793, "dj"}, + CountryToIsoIndex{540803, "gi"}, + CountryToIsoIndex{540816, "cp"}, + CountryToIsoIndex{540842, "ki"}, + CountryToIsoIndex{540855, "kg"}, + CountryToIsoIndex{540871, "cu"}, + CountryToIsoIndex{540881, "gn"}, + CountryToIsoIndex{540891, "gw"}, + CountryToIsoIndex{540911, "eg"}, + CountryToIsoIndex{540921, "mm"}, + CountryToIsoIndex{540934, "fm"}, + CountryToIsoIndex{540950, "np"}, + CountryToIsoIndex{540960, "ni"}, + CountryToIsoIndex{540976, "ie"}, + CountryToIsoIndex{540993, "is"}, + CountryToIsoIndex{541013, "za"}, + CountryToIsoIndex{541057, "cf"}, + CountryToIsoIndex{541088, "af"}, + CountryToIsoIndex{541110, "dz"}, + CountryToIsoIndex{541126, "al"}, + CountryToIsoIndex{541142, "ai"}, + CountryToIsoIndex{541152, "am"}, + CountryToIsoIndex{541162, "ax"}, + CountryToIsoIndex{541172, "az"}, + CountryToIsoIndex{541191, "ad"}, + CountryToIsoIndex{541201, "ao"}, + CountryToIsoIndex{541211, "aw"}, + CountryToIsoIndex{541221, "ar"}, + CountryToIsoIndex{541237, "ag"}, + CountryToIsoIndex{541267, "aq"}, + CountryToIsoIndex{541283, "ht"}, + CountryToIsoIndex{541293, "wf"}, + CountryToIsoIndex{541317, "ps"}, + CountryToIsoIndex{541376, "pk"}, + CountryToIsoIndex{541392, "py"}, + CountryToIsoIndex{541405, "pa"}, + CountryToIsoIndex{541415, "pw"}, + CountryToIsoIndex{541422, "pg"}, + CountryToIsoIndex{541452, "es"}, + CountryToIsoIndex{541462, "bb"}, + CountryToIsoIndex{541475, "bd"}, + CountryToIsoIndex{541491, "il"}, + CountryToIsoIndex{541510, "bs"}, + CountryToIsoIndex{541523, "bh"}, + CountryToIsoIndex{541533, "fk"}, + CountryToIsoIndex{541560, "fo"}, + CountryToIsoIndex{541577, "va"}, + CountryToIsoIndex{541600, "ve"}, + CountryToIsoIndex{541623, "vu"}, + CountryToIsoIndex{541636, "th"}, + CountryToIsoIndex{541653, "tw"}, + CountryToIsoIndex{541666, "tj"}, + CountryToIsoIndex{541685, "tv"}, + CountryToIsoIndex{541695, "tz"}, + CountryToIsoIndex{541711, "dk"}, + CountryToIsoIndex{541724, "lr"}, + CountryToIsoIndex{541737, "lv"}, + CountryToIsoIndex{541750, "sa"}, + CountryToIsoIndex{541770, "la"}, + CountryToIsoIndex{541780, "rw"}, + CountryToIsoIndex{541790, "eh"}, + CountryToIsoIndex{541814, "st"}, + CountryToIsoIndex{541853, "ws"}, + CountryToIsoIndex{541866, "cy"}, + CountryToIsoIndex{541882, "zm"}, + CountryToIsoIndex{541892, "cn"}, + CountryToIsoIndex{541902, "td"}, + CountryToIsoIndex{541909, "gl"}, + CountryToIsoIndex{541933, "de"}, + CountryToIsoIndex{541943, "jm"}, + CountryToIsoIndex{541956, "cm"}, + CountryToIsoIndex{541969, "bq"}, + CountryToIsoIndex{542002, "nc"}, + CountryToIsoIndex{542028, "qa"}, + CountryToIsoIndex{542038, "kz"}, + CountryToIsoIndex{542054, "ca"}, + CountryToIsoIndex{542064, "kh"}, + CountryToIsoIndex{542077, "bl"}, + CountryToIsoIndex{542107, "mf"}, + CountryToIsoIndex{542137, "gm"}, + CountryToIsoIndex{542147, "gh"}, + CountryToIsoIndex{542157, "ga"}, + CountryToIsoIndex{542167, "my"}, + CountryToIsoIndex{542180, "mk"}, + CountryToIsoIndex{542196, "mq"}, + CountryToIsoIndex{542209, "ml"}, + CountryToIsoIndex{542216, "mv"}, + CountryToIsoIndex{542229, "sm"}, + CountryToIsoIndex{542246, "mt"}, + CountryToIsoIndex{542256, "mh"}, + CountryToIsoIndex{542276, "mg"}, + CountryToIsoIndex{542292, "mw"}, + CountryToIsoIndex{542305, "yt"}, + CountryToIsoIndex{542315, "mo"}, + CountryToIsoIndex{542325, "im"}, + CountryToIsoIndex{542342, "ng"}, + CountryToIsoIndex{542358, "ne"}, + CountryToIsoIndex{542368, "na"}, + CountryToIsoIndex{542381, "om"}, + CountryToIsoIndex{542391, "us"}, + CountryToIsoIndex{542398, "as"}, + CountryToIsoIndex{542415, "um"}, + CountryToIsoIndex{542450, "vi"}, + CountryToIsoIndex{542485, "pt"}, + CountryToIsoIndex{542508, "pl"}, + CountryToIsoIndex{542518, "bo"}, + CountryToIsoIndex{542531, "ba"}, + CountryToIsoIndex{542564, "bf"}, + CountryToIsoIndex{542581, "bw"}, + CountryToIsoIndex{542594, "mz"}, + CountryToIsoIndex{542607, "tk"}, + CountryToIsoIndex{542617, "tg"}, + CountryToIsoIndex{542624, "dm"}, + CountryToIsoIndex{542637, "do"}, + CountryToIsoIndex{542663, "ro"}, + CountryToIsoIndex{542676, "nr"}, + CountryToIsoIndex{542683, "so"}, + CountryToIsoIndex{542696, "hr"}, + CountryToIsoIndex{542709, "ci"}, + CountryToIsoIndex{542723, "kr"}, + CountryToIsoIndex{542754, "kp"}, + CountryToIsoIndex{542781, "cr"}, + CountryToIsoIndex{542798, "ck"}, + CountryToIsoIndex{542815, "km"}, + CountryToIsoIndex{542828, "xk"}, + CountryToIsoIndex{542838, "cc"}, + CountryToIsoIndex{542873, "cg"}, + CountryToIsoIndex{542880, "cd"}, + CountryToIsoIndex{542913, "md"}, + CountryToIsoIndex{542926, "gb"}, + CountryToIsoIndex{542939, "bv"}, + CountryToIsoIndex{542959, "bt"}, + CountryToIsoIndex{542969, "br"}, + CountryToIsoIndex{542982, "bi"}, + CountryToIsoIndex{542992, "bn"}, + CountryToIsoIndex{543005, "fr"}, + CountryToIsoIndex{543018, "tt"}, + CountryToIsoIndex{543045, "tn"}, + CountryToIsoIndex{543058, "gq"}, + CountryToIsoIndex{543082, "ch"}, + CountryToIsoIndex{543102, "se"}, + CountryToIsoIndex{543115, "lk"}, + CountryToIsoIndex{543132, "sr"}, + CountryToIsoIndex{543145, "sz"}, + CountryToIsoIndex{543165, "ss"}, + CountryToIsoIndex{543196, "sb"}, + CountryToIsoIndex{543225, "sd"}, + CountryToIsoIndex{543235, "uy"}, + CountryToIsoIndex{543248, "ug"}, + CountryToIsoIndex{543258, "ae"}, + CountryToIsoIndex{543294, "ua"}, + CountryToIsoIndex{543307, "uz"}, + CountryToIsoIndex{543326, "kw"}, + CountryToIsoIndex{543336, "cw"}, + CountryToIsoIndex{543349, "gt"}, + CountryToIsoIndex{543365, "gp"}, + CountryToIsoIndex{543381, "gu"}, + CountryToIsoIndex{543391, "gd"}, + CountryToIsoIndex{543404, "gy"}, + CountryToIsoIndex{543414, "gg"}, + CountryToIsoIndex{543427, "nu"}, + CountryToIsoIndex{543437, "at"}, + CountryToIsoIndex{543450, "au"}, + CountryToIsoIndex{543469, "hn"}, + CountryToIsoIndex{543479, "hu"}, + CountryToIsoIndex{543492, "bg"}, + CountryToIsoIndex{543505, "to"}, + CountryToIsoIndex{543512, "tr"}, + CountryToIsoIndex{543522, "tc"}, + CountryToIsoIndex{543562, "tm"}, + CountryToIsoIndex{543587, "lu"}, + CountryToIsoIndex{543603, "ru"}, + CountryToIsoIndex{543616, "ge"}, + CountryToIsoIndex{543629, "gs"}, + CountryToIsoIndex{543705, "jo"}, + CountryToIsoIndex{543718, "mp"}, + CountryToIsoIndex{543758, "ic"}, + CountryToIsoIndex{543781, "co"}, + CountryToIsoIndex{543794, "mr"}, + CountryToIsoIndex{543810, "mu"}, + CountryToIsoIndex{543820, "me"}, + CountryToIsoIndex{543836, "ma"}, + CountryToIsoIndex{543846, "mc"}, + CountryToIsoIndex{543856, "mn"}, + CountryToIsoIndex{543869, "ms"}, + CountryToIsoIndex{543885, "no"}, + CountryToIsoIndex{543895, "nf"}, + CountryToIsoIndex{543915, "ee"}, + CountryToIsoIndex{543931, "ec"}, + CountryToIsoIndex{543944, "sv"}, + CountryToIsoIndex{543964, "hm"}, + CountryToIsoIndex{543988, "gr"}, + CountryToIsoIndex{543998, "pe"}, + CountryToIsoIndex{544008, "be"}, + CountryToIsoIndex{544021, "bj"}, + CountryToIsoIndex{544031, "by"}, + CountryToIsoIndex{544044, "bm"}, + CountryToIsoIndex{544054, "pf"}, + CountryToIsoIndex{544080, "gf"}, + CountryToIsoIndex{544100, "vn"}, + CountryToIsoIndex{544116, "ea"}, + CountryToIsoIndex{544137, "ac"}, + CountryToIsoIndex{544168, "rs"}, + CountryToIsoIndex{544181, "cz"}, + CountryToIsoIndex{544198, "je"}, + CountryToIsoIndex{544208, "mx"}, + CountryToIsoIndex{544218, "nl"}, + CountryToIsoIndex{544235, "jp"}, + CountryToIsoIndex{544253, "gh"}, + CountryToIsoIndex{544260, "ga"}, + CountryToIsoIndex{544267, "gy"}, + CountryToIsoIndex{544280, "gm"}, + CountryToIsoIndex{544290, "gg"}, + CountryToIsoIndex{544297, "gp"}, + CountryToIsoIndex{544310, "gt"}, + CountryToIsoIndex{544323, "gu"}, + CountryToIsoIndex{544327, "gd"}, + CountryToIsoIndex{544340, "gr"}, + CountryToIsoIndex{544350, "gl"}, + CountryToIsoIndex{544363, "gn"}, + CountryToIsoIndex{544370, "gw"}, + CountryToIsoIndex{544386, "na"}, + CountryToIsoIndex{544399, "nr"}, + CountryToIsoIndex{544409, "ng"}, + CountryToIsoIndex{544425, "aq"}, + CountryToIsoIndex{544439, "ss"}, + CountryToIsoIndex{544449, "za"}, + CountryToIsoIndex{544465, "nl"}, + CountryToIsoIndex{544478, "bq"}, + CountryToIsoIndex{544504, "np"}, + CountryToIsoIndex{544511, "no"}, + CountryToIsoIndex{544524, "nf"}, + CountryToIsoIndex{544534, "nz"}, + CountryToIsoIndex{544547, "nc"}, + CountryToIsoIndex{544566, "nu"}, + CountryToIsoIndex{544576, "ne"}, + CountryToIsoIndex{544586, "ni"}, + CountryToIsoIndex{544599, "tw"}, + CountryToIsoIndex{544606, "kr"}, + CountryToIsoIndex{544619, "dk"}, + CountryToIsoIndex{544629, "dm"}, + CountryToIsoIndex{544642, "do"}, + CountryToIsoIndex{544665, "de"}, + CountryToIsoIndex{544672, "tl"}, + CountryToIsoIndex{544685, "dg"}, + CountryToIsoIndex{544708, "la"}, + CountryToIsoIndex{544718, "lr"}, + CountryToIsoIndex{544734, "lv"}, + CountryToIsoIndex{544747, "ru"}, + CountryToIsoIndex{544757, "lb"}, + CountryToIsoIndex{544767, "ls"}, + CountryToIsoIndex{544777, "ro"}, + CountryToIsoIndex{544790, "lu"}, + CountryToIsoIndex{544806, "rw"}, + CountryToIsoIndex{544816, "ly"}, + CountryToIsoIndex{544826, "re"}, + CountryToIsoIndex{544839, "lt"}, + CountryToIsoIndex{544855, "li"}, + CountryToIsoIndex{544874, "mg"}, + CountryToIsoIndex{544893, "mq"}, + CountryToIsoIndex{544909, "mh"}, + CountryToIsoIndex{544923, "yt"}, + CountryToIsoIndex{544933, "mo"}, + CountryToIsoIndex{544943, "mo"}, + CountryToIsoIndex{544977, "mk"}, + CountryToIsoIndex{544993, "mk"}, + CountryToIsoIndex{545016, "mw"}, + CountryToIsoIndex{545026, "my"}, + CountryToIsoIndex{545042, "ml"}, + CountryToIsoIndex{545049, "im"}, + CountryToIsoIndex{545057, "mx"}, + CountryToIsoIndex{545067, "mc"}, + CountryToIsoIndex{545077, "ma"}, + CountryToIsoIndex{545087, "mu"}, + CountryToIsoIndex{545100, "mr"}, + CountryToIsoIndex{545113, "mz"}, + CountryToIsoIndex{545126, "me"}, + CountryToIsoIndex{545142, "ms"}, + CountryToIsoIndex{545158, "md"}, + CountryToIsoIndex{545168, "mv"}, + CountryToIsoIndex{545178, "mt"}, + CountryToIsoIndex{545185, "mn"}, + CountryToIsoIndex{545192, "us"}, + CountryToIsoIndex{545199, "vi"}, + CountryToIsoIndex{545228, "um"}, + CountryToIsoIndex{545252, "mm"}, + CountryToIsoIndex{545262, "fm"}, + CountryToIsoIndex{545281, "vu"}, + CountryToIsoIndex{545294, "bh"}, + CountryToIsoIndex{545304, "bb"}, + CountryToIsoIndex{545320, "va"}, + CountryToIsoIndex{545337, "bs"}, + CountryToIsoIndex{545347, "bd"}, + CountryToIsoIndex{545363, "bm"}, + CountryToIsoIndex{545373, "bj"}, + CountryToIsoIndex{545380, "ve"}, + CountryToIsoIndex{545396, "vn"}, + CountryToIsoIndex{545406, "be"}, + CountryToIsoIndex{545416, "by"}, + CountryToIsoIndex{545429, "bz"}, + CountryToIsoIndex{545439, "ba"}, + CountryToIsoIndex{545471, "bw"}, + CountryToIsoIndex{545484, "bo"}, + CountryToIsoIndex{545497, "bi"}, + CountryToIsoIndex{545507, "bf"}, + CountryToIsoIndex{545526, "bv"}, + CountryToIsoIndex{545536, "bt"}, + CountryToIsoIndex{545543, "mp"}, + CountryToIsoIndex{545565, "kp"}, + CountryToIsoIndex{545572, "bg"}, + CountryToIsoIndex{545585, "br"}, + CountryToIsoIndex{545595, "bn"}, + CountryToIsoIndex{545608, "ws"}, + CountryToIsoIndex{545618, "sa"}, + CountryToIsoIndex{545640, "gs"}, + CountryToIsoIndex{545688, "sm"}, + CountryToIsoIndex{545701, "st"}, + CountryToIsoIndex{545724, "mf"}, + CountryToIsoIndex{545737, "bl"}, + CountryToIsoIndex{545756, "pm"}, + CountryToIsoIndex{545779, "eh"}, + CountryToIsoIndex{545792, "sn"}, + CountryToIsoIndex{545802, "rs"}, + CountryToIsoIndex{545815, "ea"}, + CountryToIsoIndex{545839, "sc"}, + CountryToIsoIndex{545849, "lc"}, + CountryToIsoIndex{545868, "vc"}, + CountryToIsoIndex{545899, "kn"}, + CountryToIsoIndex{545925, "sh"}, + CountryToIsoIndex{545944, "so"}, + CountryToIsoIndex{545957, "sb"}, + CountryToIsoIndex{545974, "sd"}, + CountryToIsoIndex{545981, "sr"}, + CountryToIsoIndex{545991, "lk"}, + CountryToIsoIndex{546004, "sj"}, + CountryToIsoIndex{546036, "sz"}, + CountryToIsoIndex{546052, "se"}, + CountryToIsoIndex{546062, "ch"}, + CountryToIsoIndex{546072, "es"}, + CountryToIsoIndex{546082, "sk"}, + CountryToIsoIndex{546098, "si"}, + CountryToIsoIndex{546114, "sy"}, + CountryToIsoIndex{546124, "sl"}, + CountryToIsoIndex{546140, "sx"}, + CountryToIsoIndex{546156, "sg"}, + CountryToIsoIndex{546169, "ae"}, + CountryToIsoIndex{546188, "aw"}, + CountryToIsoIndex{546198, "am"}, + CountryToIsoIndex{546214, "ar"}, + CountryToIsoIndex{546230, "as"}, + CountryToIsoIndex{546253, "ci"}, + CountryToIsoIndex{546276, "is"}, + CountryToIsoIndex{546292, "ht"}, + CountryToIsoIndex{546302, "ie"}, + CountryToIsoIndex{546315, "az"}, + CountryToIsoIndex{546334, "af"}, + CountryToIsoIndex{546353, "ad"}, + CountryToIsoIndex{546363, "al"}, + CountryToIsoIndex{546376, "dz"}, + CountryToIsoIndex{546386, "ao"}, + CountryToIsoIndex{546396, "ag"}, + CountryToIsoIndex{546416, "ai"}, + CountryToIsoIndex{546426, "ac"}, + CountryToIsoIndex{546440, "er"}, + CountryToIsoIndex{546456, "ee"}, + CountryToIsoIndex{546472, "ec"}, + CountryToIsoIndex{546485, "et"}, + CountryToIsoIndex{546501, "sv"}, + CountryToIsoIndex{546517, "gb"}, + CountryToIsoIndex{546524, "vg"}, + CountryToIsoIndex{546553, "io"}, + CountryToIsoIndex{546583, "ye"}, + CountryToIsoIndex{546590, "om"}, + CountryToIsoIndex{546597, "qo"}, + CountryToIsoIndex{546620, "au"}, + CountryToIsoIndex{546642, "at"}, + CountryToIsoIndex{546658, "hn"}, + CountryToIsoIndex{546671, "ax"}, + CountryToIsoIndex{546688, "wf"}, + CountryToIsoIndex{546715, "jo"}, + CountryToIsoIndex{546725, "ug"}, + CountryToIsoIndex{546735, "uy"}, + CountryToIsoIndex{546748, "uz"}, + CountryToIsoIndex{546767, "ua"}, + CountryToIsoIndex{546783, "ez"}, + CountryToIsoIndex{546793, "iq"}, + CountryToIsoIndex{546803, "ir"}, + CountryToIsoIndex{546810, "il"}, + CountryToIsoIndex{546823, "eg"}, + CountryToIsoIndex{546833, "it"}, + CountryToIsoIndex{546846, "in"}, + CountryToIsoIndex{546853, "id"}, + CountryToIsoIndex{546869, "jp"}, + CountryToIsoIndex{546876, "jm"}, + CountryToIsoIndex{546889, "zm"}, + CountryToIsoIndex{546899, "je"}, + CountryToIsoIndex{546906, "gq"}, + CountryToIsoIndex{546920, "kp"}, + CountryToIsoIndex{546954, "ge"}, + CountryToIsoIndex{546964, "cn"}, + CountryToIsoIndex{546971, "cf"}, + CountryToIsoIndex{547001, "dj"}, + CountryToIsoIndex{547011, "gi"}, + CountryToIsoIndex{547024, "zw"}, + CountryToIsoIndex{547037, "td"}, + CountryToIsoIndex{547044, "cz"}, + CountryToIsoIndex{547051, "cz"}, + CountryToIsoIndex{547068, "cl"}, + CountryToIsoIndex{547075, "ic"}, + CountryToIsoIndex{547095, "cm"}, + CountryToIsoIndex{547105, "cv"}, + CountryToIsoIndex{547121, "kz"}, + CountryToIsoIndex{547137, "qa"}, + CountryToIsoIndex{547147, "kh"}, + CountryToIsoIndex{547160, "ca"}, + CountryToIsoIndex{547170, "ke"}, + CountryToIsoIndex{547177, "ky"}, + CountryToIsoIndex{547194, "km"}, + CountryToIsoIndex{547204, "xk"}, + CountryToIsoIndex{547214, "cr"}, + CountryToIsoIndex{547230, "cc"}, + CountryToIsoIndex{547247, "ci"}, + CountryToIsoIndex{547266, "co"}, + CountryToIsoIndex{547279, "cg"}, + CountryToIsoIndex{547296, "cg"}, + CountryToIsoIndex{547316, "cd"}, + CountryToIsoIndex{547333, "cd"}, + CountryToIsoIndex{547355, "cu"}, + CountryToIsoIndex{547362, "kw"}, + CountryToIsoIndex{547375, "ck"}, + CountryToIsoIndex{547386, "cw"}, + CountryToIsoIndex{547396, "hr"}, + CountryToIsoIndex{547412, "cx"}, + CountryToIsoIndex{547431, "cp"}, + CountryToIsoIndex{547448, "kg"}, + CountryToIsoIndex{547467, "ki"}, + CountryToIsoIndex{547480, "cy"}, + CountryToIsoIndex{547493, "tj"}, + CountryToIsoIndex{547509, "tz"}, + CountryToIsoIndex{547522, "th"}, + CountryToIsoIndex{547529, "tc"}, + CountryToIsoIndex{547559, "tr"}, + CountryToIsoIndex{547566, "tg"}, + CountryToIsoIndex{547573, "tk"}, + CountryToIsoIndex{547586, "to"}, + CountryToIsoIndex{547593, "tm"}, + CountryToIsoIndex{547615, "tv"}, + CountryToIsoIndex{547625, "tn"}, + CountryToIsoIndex{547635, "tt"}, + CountryToIsoIndex{547661, "ta"}, + CountryToIsoIndex{547683, "pa"}, + CountryToIsoIndex{547693, "py"}, + CountryToIsoIndex{547706, "pk"}, + CountryToIsoIndex{547719, "pg"}, + CountryToIsoIndex{547738, "pw"}, + CountryToIsoIndex{547748, "ps"}, + CountryToIsoIndex{547764, "ps"}, + CountryToIsoIndex{547787, "fo"}, + CountryToIsoIndex{547801, "pe"}, + CountryToIsoIndex{547808, "pt"}, + CountryToIsoIndex{547821, "fk"}, + CountryToIsoIndex{547841, "fk"}, + CountryToIsoIndex{547882, "pl"}, + CountryToIsoIndex{547892, "pr"}, + CountryToIsoIndex{547911, "fr"}, + CountryToIsoIndex{547921, "tf"}, + CountryToIsoIndex{547945, "gf"}, + CountryToIsoIndex{547968, "pf"}, + CountryToIsoIndex{547997, "fj"}, + CountryToIsoIndex{548004, "fi"}, + CountryToIsoIndex{548014, "ph"}, + CountryToIsoIndex{548024, "pn"}, + CountryToIsoIndex{548038, "hm"}, + CountryToIsoIndex{548065, "hu"}, + CountryToIsoIndex{548075, "hk"}, + CountryToIsoIndex{548082, "hk"}, + CountryToIsoIndex{548113, "qo"}, + CountryToIsoIndex{548175, "au"}, + CountryToIsoIndex{548216, "az"}, + CountryToIsoIndex{548253, "ad"}, + CountryToIsoIndex{548278, "af"}, + CountryToIsoIndex{548323, "as"}, + CountryToIsoIndex{548373, "ie"}, + CountryToIsoIndex{548418, "aw"}, + CountryToIsoIndex{548435, "ar"}, + CountryToIsoIndex{548476, "dz"}, + CountryToIsoIndex{548509, "am"}, + CountryToIsoIndex{548542, "ax"}, + CountryToIsoIndex{548606, "co"}, + CountryToIsoIndex{548639, "al"}, + CountryToIsoIndex{548672, "at"}, + CountryToIsoIndex{548709, "us"}, + CountryToIsoIndex{548742, "ua"}, + CountryToIsoIndex{548783, "et"}, + CountryToIsoIndex{548820, "ye"}, + CountryToIsoIndex{548853, "lr"}, + CountryToIsoIndex{548882, "ci"}, + CountryToIsoIndex{548907, "ci"}, + CountryToIsoIndex{548957, "im"}, + CountryToIsoIndex{549012, "is"}, + CountryToIsoIndex{549057, "om"}, + CountryToIsoIndex{549078, "ao"}, + CountryToIsoIndex{549111, "aq"}, + CountryToIsoIndex{549164, "ac"}, + CountryToIsoIndex{549254, "gb"}, + CountryToIsoIndex{549275, "ec"}, + CountryToIsoIndex{549312, "il"}, + CountryToIsoIndex{549345, "it"}, + CountryToIsoIndex{549362, "id"}, + CountryToIsoIndex{549403, "iq"}, + CountryToIsoIndex{549420, "ir"}, + CountryToIsoIndex{549437, "er"}, + CountryToIsoIndex{549470, "ai"}, + CountryToIsoIndex{549511, "ug"}, + CountryToIsoIndex{549532, "uz"}, + CountryToIsoIndex{549585, "mp"}, + CountryToIsoIndex{549686, "kp"}, + CountryToIsoIndex{549740, "uy"}, + CountryToIsoIndex{549773, "ee"}, + CountryToIsoIndex{549806, "ag"}, + CountryToIsoIndex{549869, "sv"}, + CountryToIsoIndex{549919, "kz"}, + CountryToIsoIndex{549952, "qa"}, + CountryToIsoIndex{549969, "ca"}, + CountryToIsoIndex{549982, "cg"}, + CountryToIsoIndex{550054, "cd"}, + CountryToIsoIndex{550084, "cd"}, + CountryToIsoIndex{550134, "cg"}, + CountryToIsoIndex{550192, "km"}, + CountryToIsoIndex{550225, "kh"}, + CountryToIsoIndex{550262, "xk"}, + CountryToIsoIndex{550287, "cu"}, + CountryToIsoIndex{550308, "cw"}, + CountryToIsoIndex{550341, "ki"}, + CountryToIsoIndex{550370, "kg"}, + CountryToIsoIndex{550423, "ea"}, + CountryToIsoIndex{550478, "ck"}, + CountryToIsoIndex{550534, "kw"}, + CountryToIsoIndex{550559, "ke"}, + CountryToIsoIndex{550580, "cv"}, + CountryToIsoIndex{550617, "ky"}, + CountryToIsoIndex{550685, "cc"}, + CountryToIsoIndex{550772, "cr"}, + CountryToIsoIndex{550805, "ic"}, + CountryToIsoIndex{550869, "cm"}, + CountryToIsoIndex{550906, "bq"}, + CountryToIsoIndex{551004, "cx"}, + CountryToIsoIndex{551062, "hr"}, + CountryToIsoIndex{551099, "cp"}, + CountryToIsoIndex{551181, "gm"}, + CountryToIsoIndex{551206, "gn"}, + CountryToIsoIndex{551223, "gw"}, + CountryToIsoIndex{551261, "gy"}, + CountryToIsoIndex{551278, "gt"}, + CountryToIsoIndex{551307, "gp"}, + CountryToIsoIndex{551344, "gu"}, + CountryToIsoIndex{551365, "ga"}, + CountryToIsoIndex{551394, "gg"}, + CountryToIsoIndex{551423, "gr"}, + CountryToIsoIndex{551448, "gl"}, + CountryToIsoIndex{551501, "gd"}, + CountryToIsoIndex{551526, "gh"}, + CountryToIsoIndex{551535, "td"}, + CountryToIsoIndex{551548, "cl"}, + CountryToIsoIndex{551565, "cn"}, + CountryToIsoIndex{551582, "cz"}, + CountryToIsoIndex{551648, "cz"}, + CountryToIsoIndex{551669, "jp"}, + CountryToIsoIndex{551686, "jm"}, + CountryToIsoIndex{551703, "zm"}, + CountryToIsoIndex{551728, "de"}, + CountryToIsoIndex{551753, "je"}, + CountryToIsoIndex{551774, "ae"}, + CountryToIsoIndex{551833, "gb"}, + CountryToIsoIndex{551870, "um"}, + CountryToIsoIndex{551979, "ge"}, + CountryToIsoIndex{552008, "jo"}, + CountryToIsoIndex{552041, "dj"}, + CountryToIsoIndex{552066, "gi"}, + CountryToIsoIndex{552107, "zw"}, + CountryToIsoIndex{552144, "tv"}, + CountryToIsoIndex{552165, "tk"}, + CountryToIsoIndex{552194, "tg"}, + CountryToIsoIndex{552211, "to"}, + CountryToIsoIndex{552232, "ta"}, + CountryToIsoIndex{552291, "dk"}, + CountryToIsoIndex{552328, "dm"}, + CountryToIsoIndex{552357, "do"}, + CountryToIsoIndex{552447, "tj"}, + CountryToIsoIndex{552488, "tz"}, + CountryToIsoIndex{552517, "tn"}, + CountryToIsoIndex{552554, "tl"}, + CountryToIsoIndex{552604, "tr"}, + CountryToIsoIndex{552637, "tc"}, + CountryToIsoIndex{552743, "tm"}, + CountryToIsoIndex{552804, "tw"}, + CountryToIsoIndex{552825, "tt"}, + CountryToIsoIndex{552900, "th"}, + CountryToIsoIndex{552937, "za"}, + CountryToIsoIndex{552987, "kr"}, + CountryToIsoIndex{553033, "gs"}, + CountryToIsoIndex{553209, "ss"}, + CountryToIsoIndex{553255, "dg"}, + CountryToIsoIndex{553305, "nr"}, + CountryToIsoIndex{553326, "na"}, + CountryToIsoIndex{553351, "no"}, + CountryToIsoIndex{553384, "nz"}, + CountryToIsoIndex{553437, "nu"}, + CountryToIsoIndex{553462, "ni"}, + CountryToIsoIndex{553491, "gq"}, + CountryToIsoIndex{553549, "nf"}, + CountryToIsoIndex{553603, "nl"}, + CountryToIsoIndex{553660, "np"}, + CountryToIsoIndex{553681, "ne"}, + CountryToIsoIndex{553702, "ng"}, + CountryToIsoIndex{553731, "nc"}, + CountryToIsoIndex{553781, "pk"}, + CountryToIsoIndex{553814, "pa"}, + CountryToIsoIndex{553827, "pg"}, + CountryToIsoIndex{553878, "pw"}, + CountryToIsoIndex{553895, "eh"}, + CountryToIsoIndex{553933, "pt"}, + CountryToIsoIndex{553970, "pn"}, + CountryToIsoIndex{554054, "tl"}, + CountryToIsoIndex{554096, "pr"}, + CountryToIsoIndex{554146, "pe"}, + CountryToIsoIndex{554163, "pl"}, + CountryToIsoIndex{554200, "py"}, + CountryToIsoIndex{554233, "tf"}, + CountryToIsoIndex{554284, "fk"}, + CountryToIsoIndex{554438, "fk"}, + CountryToIsoIndex{554522, "gf"}, + CountryToIsoIndex{554556, "pf"}, + CountryToIsoIndex{554614, "fj"}, + CountryToIsoIndex{554631, "fi"}, + CountryToIsoIndex{554676, "ps"}, + CountryToIsoIndex{554717, "ps"}, + CountryToIsoIndex{554779, "ph"}, + CountryToIsoIndex{554812, "fo"}, + CountryToIsoIndex{554880, "fr"}, + CountryToIsoIndex{554909, "bd"}, + CountryToIsoIndex{554938, "bb"}, + CountryToIsoIndex{554971, "bm"}, + CountryToIsoIndex{554996, "bs"}, + CountryToIsoIndex{555048, "bh"}, + CountryToIsoIndex{555077, "bw"}, + CountryToIsoIndex{555110, "bo"}, + CountryToIsoIndex{555139, "ba"}, + CountryToIsoIndex{555218, "bi"}, + CountryToIsoIndex{555251, "bf"}, + CountryToIsoIndex{555293, "bg"}, + CountryToIsoIndex{555330, "bj"}, + CountryToIsoIndex{555355, "by"}, + CountryToIsoIndex{555384, "bz"}, + CountryToIsoIndex{555409, "be"}, + CountryToIsoIndex{555446, "bv"}, + CountryToIsoIndex{555492, "br"}, + CountryToIsoIndex{555521, "io"}, + CountryToIsoIndex{555637, "vg"}, + CountryToIsoIndex{555738, "bn"}, + CountryToIsoIndex{555767, "vu"}, + CountryToIsoIndex{555792, "in"}, + CountryToIsoIndex{555813, "vn"}, + CountryToIsoIndex{555850, "bt"}, + CountryToIsoIndex{555871, "ve"}, + CountryToIsoIndex{555908, "va"}, + CountryToIsoIndex{555958, "mg"}, + CountryToIsoIndex{555991, "mm"}, + CountryToIsoIndex{556039, "yt"}, + CountryToIsoIndex{556068, "us"}, + CountryToIsoIndex{556134, "vi"}, + CountryToIsoIndex{556276, "mq"}, + CountryToIsoIndex{556313, "mh"}, + CountryToIsoIndex{556377, "mw"}, + CountryToIsoIndex{556402, "ml"}, + CountryToIsoIndex{556415, "mt"}, + CountryToIsoIndex{556432, "mv"}, + CountryToIsoIndex{556461, "my"}, + CountryToIsoIndex{556494, "mn"}, + CountryToIsoIndex{556531, "cf"}, + CountryToIsoIndex{556645, "me"}, + CountryToIsoIndex{556694, "ms"}, + CountryToIsoIndex{556739, "mr"}, + CountryToIsoIndex{556772, "mu"}, + CountryToIsoIndex{556801, "eg"}, + CountryToIsoIndex{556826, "mx"}, + CountryToIsoIndex{556859, "mk"}, + CountryToIsoIndex{556899, "fm"}, + CountryToIsoIndex{556944, "mz"}, + CountryToIsoIndex{556981, "mc"}, + CountryToIsoIndex{557002, "ma"}, + CountryToIsoIndex{557035, "md"}, + CountryToIsoIndex{557068, "mo"}, + CountryToIsoIndex{557093, "mo"}, + CountryToIsoIndex{557164, "mk"}, + CountryToIsoIndex{557201, "ru"}, + CountryToIsoIndex{557218, "re"}, + CountryToIsoIndex{557267, "rw"}, + CountryToIsoIndex{557292, "ro"}, + CountryToIsoIndex{557317, "la"}, + CountryToIsoIndex{557338, "lv"}, + CountryToIsoIndex{557363, "li"}, + CountryToIsoIndex{557420, "lt"}, + CountryToIsoIndex{557453, "ly"}, + CountryToIsoIndex{557474, "lu"}, + CountryToIsoIndex{557527, "lb"}, + CountryToIsoIndex{557556, "ls"}, + CountryToIsoIndex{557581, "wf"}, + CountryToIsoIndex{557632, "st"}, + CountryToIsoIndex{557703, "sm"}, + CountryToIsoIndex{557737, "ws"}, + CountryToIsoIndex{557754, "rs"}, + CountryToIsoIndex{557779, "sj"}, + CountryToIsoIndex{557859, "sb"}, + CountryToIsoIndex{557927, "sg"}, + CountryToIsoIndex{557964, "sx"}, + CountryToIsoIndex{558018, "sl"}, + CountryToIsoIndex{558063, "sy"}, + CountryToIsoIndex{558084, "sc"}, + CountryToIsoIndex{558109, "sd"}, + CountryToIsoIndex{558130, "sr"}, + CountryToIsoIndex{558159, "sn"}, + CountryToIsoIndex{558188, "kn"}, + CountryToIsoIndex{558272, "pm"}, + CountryToIsoIndex{558372, "bl"}, + CountryToIsoIndex{558434, "vc"}, + CountryToIsoIndex{558567, "mf"}, + CountryToIsoIndex{558621, "lc"}, + CountryToIsoIndex{558667, "sh"}, + CountryToIsoIndex{558713, "cy"}, + CountryToIsoIndex{558742, "ch"}, + CountryToIsoIndex{558795, "se"}, + CountryToIsoIndex{558824, "so"}, + CountryToIsoIndex{558849, "sz"}, + CountryToIsoIndex{558898, "sa"}, + CountryToIsoIndex{558936, "es"}, + CountryToIsoIndex{558961, "lk"}, + CountryToIsoIndex{558994, "sk"}, + CountryToIsoIndex{559027, "si"}, + CountryToIsoIndex{559060, "hm"}, + CountryToIsoIndex{559217, "hk"}, + CountryToIsoIndex{559242, "hk"}, + CountryToIsoIndex{559313, "hu"}, + CountryToIsoIndex{559346, "hn"}, + CountryToIsoIndex{559383, "ht"}, +}; diff --git a/src/countrytoisomap_p.h b/src/countrytoisomap_p.h new file mode 100644 --- /dev/null +++ b/src/countrytoisomap_p.h @@ -0,0 +1,56 @@ +/* + This file is part of the KContacts framework. + Copyright (c) 2018 Volker Krause + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#ifndef KCONTACTS_COUNTRYTOISOMAP_P_H +#define KCONTACTS_COUNTRYTOISOMAP_P_H + +#include + +namespace KContacts { + +/* Pack the string table offset and the country ISO code into 32 bit. + * The ISO code needs 2x 5bit, leaving 22 bit for the offset, which is plenty + * considering the string is only about 500k chars long. + */ +struct CountryToIsoIndex +{ + explicit constexpr inline CountryToIsoIndex(int offset, const char isoCode[2]) + : m_offset(offset) + , m_c1(isoCode[0] - 'a') + , m_c2(isoCode[1] - 'a') + { + } + + inline QString isoCode() const + { + char s[2]; + s[0] = 'a' + m_c1; + s[1] = 'a' + m_c2; + return QLatin1String(s, 2); + } + + uint32_t m_offset: 22; + uint32_t m_c1: 5; + uint32_t m_c2: 5; +}; + +} + +#endif diff --git a/src/generator/CMakeLists.txt b/src/generator/CMakeLists.txt new file mode 100644 --- /dev/null +++ b/src/generator/CMakeLists.txt @@ -0,0 +1,11 @@ +set(CLDR_DIR "/usr/share/unicode/cldr/common/main" CACHE STRING "Path to the CLDR data files") + +add_executable(generatecountrytoisomap main.cpp translatedcountrylist.cpp) +target_link_libraries(generatecountrytoisomap Qt5::Core) + +add_custom_command( + OUTPUT countrytoisomap_data.cpp + COMMAND generatecountrytoisomap -o ${CMAKE_CURRENT_SOURCE_DIR}/../countrytoisomap_data.cpp -s ${CLDR_DIR} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} +) +add_custom_target(rebuild-countrymaps DEPENDS countrytoisomap_data.cpp) diff --git a/src/generator/main.cpp b/src/generator/main.cpp new file mode 100644 --- /dev/null +++ b/src/generator/main.cpp @@ -0,0 +1,180 @@ +/* + * Copyright (c) 2018 Sune Vuorela + * Copyright (c) 2018 Volker Krause + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + +#include "translatedcountrylist.h" + +#include +#include +#include +#include + +int main(int argc, char** argv) { + QCoreApplication app(argc,argv); + app.setApplicationName(QStringLiteral("generate country name map")); + app.setApplicationVersion(QStringLiteral("0.1")); + + QCommandLineParser p; + QCommandLineOption sourceDir({QStringLiteral("sourceDir"), QStringLiteral("s")}, QStringLiteral("Location of CLDR data"), QStringLiteral("cldrdata"), QStringLiteral("/usr/share/unicode/cldr/common/main/")); + p.addOption(sourceDir); + QCommandLineOption outputFile({QStringLiteral("outputFile"), QStringLiteral("o")}, QStringLiteral("Output file"), QStringLiteral("output file"), QStringLiteral("countrytransl.map")); + p.addOption(outputFile); + p.addHelpOption(); + p.addVersionOption(); + + p.process(app); + + if (!p.isSet(sourceDir)) { + p.showHelp(0); + } + if (!p.isSet(outputFile)) { + p.showHelp(0); + } + + + QString sourceDirPath = p.value(sourceDir); + QString outputFilePath = p.value(outputFile); + + QFile f(outputFilePath); + bool success = f.open(QIODevice::WriteOnly | QIODevice::Truncate); + if (!success) { + qFatal("failed to open file: %s", qPrintable(f.errorString())); + } + + f.write(R"( +/* + * Generated file based on CLDR data. Do not edit! + * See src/generator/ for how to re-generate this. + * + * COPYRIGHT AND PERMISSION NOTICE + * + * Copyright © 1991-2018 Unicode, Inc. All rights reserved. + * Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of the Unicode data files and any associated documentation + * (the "Data Files") or Unicode software and any associated documentation + * (the "Software") to deal in the Data Files or Software + * without restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, and/or sell copies of + * the Data Files or Software, and to permit persons to whom the Data Files + * or Software are furnished to do so, provided that either + * (a) this copyright and permission notice appear with all copies + * of the Data Files or Software, or + * (b) this copyright and permission notice appear in associated + * Documentation. + * + * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF + * ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT OF THIRD PARTY RIGHTS. + * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS + * NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL + * DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THE DATA FILES OR SOFTWARE. + * + * Except as contained in this notice, the name of a copyright holder + * shall not be used in advertising or otherwise to promote the sale, + * use or other dealings in these Data Files or Software without prior + * written authorization of the copyright holder. + */ + +#include "countrytoisomap_p.h" + +using namespace KContacts; + +static const char country_name_stringtable[] = +)"); + + const QHash parsedList = TranslatedCountries::parseFilesRecursive(sourceDirPath); + + struct Elem { + QByteArray name; + QString isoCode; + int offset; + }; + std::vector processedList; + processedList.reserve(parsedList.size()); + for(auto it = parsedList.keyValueBegin() ; it != parsedList.keyValueEnd() ; it++) { + processedList.push_back(Elem{(*it).first.toCaseFolded().toUtf8(), (*it).second, 0}); + } + // we must sort exactly as we do this for lookup + std::sort(processedList.begin(), processedList.end(), [](const Elem &lhs, const Elem &rhs) { + const auto c = strcmp(lhs.name.constData(), rhs.name.constData()); + if (c == 0) + return lhs.isoCode < rhs.isoCode; + return c < 0; + }); + + // remove all duplicates referring to the same ISO code + const auto it = std::unique(processedList.begin(), processedList.end(), [](const Elem &lhs, const Elem &rhs) { + return strcmp(lhs.name.constData(), rhs.name.constData()) == 0 && lhs.isoCode == rhs.isoCode; + }); + processedList.erase(it, processedList.end()); + + // find duplicates that refer to different ISO codes, and remove those entirely + for (auto it = processedList.begin() + 1; it != processedList.end();) { + auto prevIt = it - 1; + if (strcmp((*it).name.constData(), (*prevIt).name.constData()) != 0) { + ++it; + continue; + } + qDebug() << "Removing ambigious string:" << QString::fromUtf8((*it).name) << (*prevIt).isoCode << (*it).isoCode; + it = processedList.erase(prevIt); + it = processedList.erase(it); + } + + int offset = 0; + for(auto& elem : processedList) { + f.write(" \""); + auto encodedName = elem.name; + encodedName.replace('"', "\\x22"); // yes, there is one name containing a single double quote... + f.write(encodedName); + f.write("\\0\" // "); + f.write(elem.isoCode.toUtf8()); + f.write("\n"); + + elem.offset = offset; + offset += elem.name.size() + 1; // +1 for the terminating \0 + } + f.write(R"( +; + +static const CountryToIsoIndex country_to_iso_index[] = { +)"); + + for (const auto &elem: processedList) { + f.write(" CountryToIsoIndex{"); + f.write(QByteArray::number(elem.offset)); + f.write(", \""); + f.write(elem.isoCode.toUtf8()); + f.write("\"},\n"); + } + f.write("};\n"); + + f.close(); +} diff --git a/src/generator/translatedcountrylist.h b/src/generator/translatedcountrylist.h new file mode 100644 --- /dev/null +++ b/src/generator/translatedcountrylist.h @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2018 Sune Vuorela + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ +#include +#include +class QIODevice; + +namespace TranslatedCountries { + using TranslationCountryMap = QHash; + /** + * \param device open QIODevice to read cldr xml data from + * \return map of translation name => country id + */ + TranslationCountryMap parseFile(QIODevice* device); + /** + * \param filePath path to read cldr xml file + * \return map of translation name => country id + */ + TranslationCountryMap parseFilePath(const QString& filePath); + /** + * \param directoryPath directory path to scan recursively for cldr xml files + * On Debian systems, /usr/share/unicode/cldr/common/main is a good value for this. + * \return map of translation name => country id + */ + TranslationCountryMap parseFilesRecursive(const QString& directoryPath); +} diff --git a/src/generator/translatedcountrylist.cpp b/src/generator/translatedcountrylist.cpp new file mode 100644 --- /dev/null +++ b/src/generator/translatedcountrylist.cpp @@ -0,0 +1,81 @@ +/* + * Copyright (c) 2018 Sune Vuorela + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + + +#include "translatedcountrylist.h" +#include +#include +#include + +#include + +TranslatedCountries::TranslationCountryMap TranslatedCountries::parseFile(QIODevice* device) +{ + TranslationCountryMap map; + QXmlStreamReader reader(device); + const QStringList blacklist = { QLatin1String("eu"), QLatin1String("un"), QLatin1String("zz") }; + while(!reader.atEnd()) { + QXmlStreamReader::TokenType type = reader.readNext(); + switch(type) { + case QXmlStreamReader::StartElement: + if (reader.name() == QLatin1String("territory")) { + const auto territory = reader.attributes().value(QLatin1String("type")).toString().toLower(); + if (territory.size() != 2 || !territory.at(0).isLetter() || !territory.at(1).isLetter() || blacklist.contains(territory)) { + break; + } + const auto name = reader.readElementText(); + if (!name.isEmpty()) { + map.insert(name, territory); + } + } + break; + default: + break; + } + } + return map; +} + +TranslatedCountries::TranslationCountryMap TranslatedCountries::parseFilePath(const QString& filePath) +{ + QFile f(filePath); + bool success = f.open(QIODevice::ReadOnly); + if (!success) { + return {}; + } + return parseFile(&f); +} + +TranslatedCountries::TranslationCountryMap TranslatedCountries::parseFilesRecursive(const QString& directoryPath) +{ + QDirIterator it(directoryPath, {QStringLiteral("*.xml")}, QDir::NoDotAndDotDot | QDir::Files, QDirIterator::Subdirectories); + TranslationCountryMap map; + while (it.hasNext()) { + it.next(); + QString path = it.filePath(); + map.unite(parseFilePath(path)); + } + return map; +}