123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151 |
- export const countriesDataEn = [
- {
- text: "Albania",
- value: "AL",
- children: [
- { text: "Tirana", value: "Tirana" },
- { text: "Durres", value: "Durres" },
- { text: "Vlorë", value: "Vlorë" },
- { text: "Shkodër", value: "Shkodër" },
- { text: "Fier", value: "Fier" },
- { text: "Berat", value: "Berat" },
- { text: "Korçë", value: "Korçë" },
- { text: "Elbasan", value: "Elbasan" },
- { text: "Lezhë", value: "Lezhë" },
- { text: "Dibër", value: "Dibër" },
- { text: "Gjirokastër", value: "Gjirokastër" },
- { text: "Kukës", value: "Kukës" },
- { text: "Lushnjë", value: "Lushnjë" },
- { text: "Pogradec", value: "Pogradec" },
- { text: "Sarandë", value: "Sarandë" },
- ],
- },
- {
- text: "Algeria",
- value: "DZ",
- children: [
- { text: "Algiers", value: "Algiers" },
- { text: "Oran", value: "Oran" },
- { text: "Constantine", value: "Constantine" },
- { text: "Annaba", value: "Annaba" },
- { text: "Blida", value: "Blida" },
- { text: "Batna", value: "Batna" },
- { text: "Béchar", value: "Béchar" },
- { text: "Tebessa", value: "Tebessa" },
- { text: "Tiaret", value: "Tiaret" },
- { text: "Skikda", value: "Skikda" },
- { text: "Chlef", value: "Chlef" },
- { text: "Medea", value: "Medea" },
- { text: "Setif", value: "Setif" },
- { text: "Béjaïa", value: "Béjaïa" },
- { text: "Guelma", value: "Guelma" },
- ],
- },
- {
- text: "Afghanistan",
- value: "AF",
- children: [
- { text: "Kabul", value: "Kabul" },
- { text: "Kandahar", value: "Kandahar" },
- { text: "Herat", value: "Herat" },
- { text: "Mazar-i-Sharif", value: "Mazar-i-Sharif" },
- { text: "Jalalabad", value: "Jalalabad" },
- { text: "Laghman", value: "Laghman" },
- { text: "Parwan", value: "Parwan" },
- { text: "Baghlan", value: "Baghlan" },
- { text: "Nimroz", value: "Nimroz" },
- { text: "Kunduz", value: "Kunduz" },
- { text: "Balkh", value: "Balkh" },
- { text: "Gandahar", value: "Gandahar" },
- { text: "East", value: "East" },
- { text: "North", value: "North" },
- { text: "South", value: "South" },
- ],
- },
- {
- text: "Argentina",
- value: "AR",
- children: [
- { text: "Buenos Aires", value: "Buenos Aires" },
- { text: "Cordoba", value: "Cordoba" },
- { text: "Rosario", value: "Rosario" },
- { text: "Mendoza", value: "Mendoza" },
- { text: "La Plata", value: "La Plata" },
- { text: "Salta", value: "Salta" },
- { text: "San Juan", value: "San Juan" },
- { text: "Valencia", value: "Valencia" },
- { text: "Valencia", value: "San Fernando" },
- { text: "Santiago del Estero", value: "Santiago del Estero" },
- { text: "Brasilia", value: "Brasilia" },
- { text: "San Miguel de Tucumán", value: "San Miguel de Tucumán" },
- { text: "Neuquén", value: "Neuquén" },
- { text: "Bahía Blanca", value: "Bahía Blanca" },
- { text: "Capital Federal", value: "Capital Federal" },
- ],
- },
- {
- text: "The United Arab Emirates",
- value: "AE",
- children: [
- { text: "Abu Dhabi", value: "Abu Dhabi" },
- { text: "Dubai", value: "Dubai" },
- { text: "Sharjah", value: "Sharjah" },
- { text: "Ajman", value: "Ajman" },
- { text: "Fujairah", value: "Fujairah" },
- { text: "Ras Al Khaimah", value: "Ras Al Khaimah" },
- { text: "Umm Al-Quwain", value: "Umm Al-Quwain" },
- { text: "Khalifa City", value: "Khalifa City" },
- { text: "Zayed Port", value: "Zayed Port" },
- { text: "International City", value: "International City" },
- ],
- },
- {
- text: "Aruba",
- value: "AW",
- children: [
- { text: "Oranjestad", value: "Oranjestad" },
- { text: "San Nicolas", value: "San Nicolas" },
- { text: "Balashi", value: "Balashi" },
- { text: "Saca", value: "Saca" },
- { text: "Santa Catalina", value: "Santa Catalina" },
- ],
- },
- {
- text: "Oman",
- value: "OM",
- children: [
- { text: "Muscat", value: "Muscat" },
- { text: "Seeb", value: "Seeb" },
- { text: "Sohar", value: "Sohar" },
- { text: "Nizwa", value: "Nizwa" },
- { text: "Batinah", value: "Batinah" },
- { text: "Hormozgan", value: "Hormozgan" },
- { text: "Dalkhya", value: "Dalkhya" },
- { text: "Masirah", value: "Masirah" },
- { text: "Shasjar", value: "Shasjar" },
- { text: "Abu Dhabi", value: "Abu Dhabi" },
- ],
- },
- {
- text: "Azerbaijan",
- value: "AZ",
- children: [
- { text: "Baku", value: "Baku" },
- { text: "Ganja", value: "Ganja" },
- { text: "Mugan", value: "Mugan" },
- { text: "Shusha", value: "Shusha" },
- { text: "Siyazan", value: "Siyazan" },
- { text: "Kurda", value: "Kurda" },
- { text: "Lankaran", value: "Lankaran" },
- { text: "Sakara", value: "Sakara" },
- { text: "Arak", value: "Arak" },
- { text: "Sarda", value: "Sarda" },
- ],
- },
- {
- text: "Egypt",
- value: "EG",
- children: [
- { text: "Cairo", value: "Cairo" },
- { text: "Alexandria", value: "Alexandria" },
- { text: "Giza", value: "Giza" },
- { text: "Luxor", value: "Luxor" },
- { text: "Suez", value: "Suez" },
- { text: "Mansoura", value: "Mansoura" },
- { text: "Tanta", value: "Tanta" },
- { text: "Aswan", value: "Aswan" },
- { text: "Damietta", value: "Damietta" },
- { text: "Hurghada", value: "Hurghada" },
- { text: "Ain Shams", value: "Ain Shams" },
- { text: "Ismailia", value: "Ismailia" },
- { text: "Mitu", value: "Mitu" },
- { text: "Fayoum", value: "Fayoum" },
- ],
- },
- {
- text: "Ethiopia",
- value: "ET",
- children: [
- { text: "Addis Ababa", value: "Addis Ababa" },
- { text: "Mekelle", value: "Mekelle" },
- { text: "Girgiga", value: "Girgiga" },
- { text: "Bahir Dar", value: "Bahir Dar" },
- { text: "Dire Dawa", value: "Dire Dawa" },
- { text: "Argo", value: "Argo" },
- { text: "Harar", value: "Harar" },
- { text: "Humera", value: "Humera" },
- { text: "Holumu", value: "Holumu" },
- { text: "Bole", value: "Bole" },
- { text: "Dire Dawa", value: "Dire Dawa" },
- { text: "Kurmi", value: "Kurmi" },
- { text: "Kormin", value: "Kormin" },
- ],
- },
- {
- text: "Ireland",
- value: "IE",
- children: [
- { text: "Dublin", value: "Dublin" },
- { text: "Cork", value: "Cork" },
- { text: "Galway", value: "Galway" },
- { text: "Limerick", value: "Limerick" },
- { text: "Waterford", value: "Waterford" },
- { text: "Kildare", value: "Kildare" },
- { text: "Kilkenny", value: "Kilkenny" },
- { text: "Mayo", value: "Mayo" },
- { text: "Tipperary", value: "Tipperary" },
- { text: "Westmeath", value: "Westmeath" },
- { text: "Carlow", value: "Carlow" },
- { text: "Clare", value: "Clare" },
- { text: "Donegal", value: "Donegal" },
- { text: "Louth", value: "Louth" },
- ],
- },
- {
- text: "Estonia",
- value: "EE",
- children: [
- { text: "Tallinn", value: "Tallinn" },
- { text: "Tartu", value: "Tartu" },
- { text: "Narva", value: "Narva" },
- { text: "Pärnu", value: "Pärnu" },
- { text: "Kohtla-Järve", value: "Kohtla-Järve" },
- { text: "Hiiu", value: "Hiiu" },
- { text: "Sõmeru", value: "Sõmeru" },
- { text: "Suure-Jaani", value: "Suure-Jaani" },
- { text: "Võru", value: "Võru" },
- { text: "Rakvere", value: "Rakvere" },
- ],
- },
- {
- text: "Andorra",
- value: "AD",
- children: [
- { text: "Andorra la Vella", value: "Andorra la Vella" },
- { text: "Escaldes-Engordany", value: "Escaldes-Engordany" },
- { text: "Sant Julià de Lòria", value: "Sant Julià de Lòria" },
- { text: "Sant Esteve", value: "Sant Esteve" },
- { text: "La Massana", value: "La Massana" },
- { text: "Encamp", value: "Encamp" },
- { text: "Alp", value: "Alp" },
- ],
- },
- {
- text: "Angola",
- value: "AO",
- children: [
- { text: "Luanda", value: "Luanda" },
- { text: "Benguela", value: "Benguela" },
- { text: "Kwanza", value: "Kwanza" },
- { text: "Amboim", value: "Amboim" },
- { text: "Matadi", value: "Matadi" },
- { text: "Cabinda", value: "Cabinda" },
- { text: "Kona", value: "Kona" },
- { text: "Sebi", value: "Sebi" },
- { text: "Lobango", value: "Lobango" },
- { text: "Huíla", value: "Huíla" },
- { text: "Wilan", value: "Wilan" },
- ],
- },
- {
- text: "Austria",
- value: "AT",
- children: [
- { text: "Vienna", value: "Vienna" },
- { text: "Graz", value: "Graz" },
- { text: "Linz", value: "Linz" },
- { text: "Salzburg", value: "Salzburg" },
- { text: "Innsbruck", value: "Innsbruck" },
- { text: "Krems", value: "Krems" },
- { text: "Sankt Pölten", value: "Sankt Pölten" },
- { text: "Dürnstein", value: "Dürnstein" },
- { text: "Hallstatt", value: "Hallstatt" },
- { text: "Villach", value: "Villach" },
- { text: "Tyrol", value: "Tyrol" },
- ],
- },
- {
- text: "Australia",
- value: "AU",
- children: [
- { text: "Sydney", value: "Sydney" },
- { text: "Melbourne", value: "Melbourne" },
- { text: "Brisbane", value: "Brisbane" },
- { text: "Perth", value: "Perth" },
- { text: "Adelaide", value: "Adelaide" },
- { text: "Canberra", value: "Canberra" },
- { text: "Hobart", value: "Hobart" },
- { text: "Darwin", value: "Darwin" },
- { text: "Gold Coast", value: "Gold Coast" },
- { text: "Newcastle", value: "Newcastle" },
- { text: "Cairns", value: "Cairns" },
- { text: "Wagga Wagga", value: "Wagga Wagga" },
- ],
- },
- {
- text: "Barbados",
- value: "BB",
- children: [
- { text: "Bridgetown", value: "Bridgetown" },
- { text: "Speightstown", value: "Speightstown" },
- { text: "Holetown", value: "Holetown" },
- { text: "Bellevue", value: "Bellevue" },
- { text: "Saint John", value: "Saint John" },
- { text: "Saint James", value: "Saint James" },
- { text: "Saint Michael", value: "Saint Michael" },
- ],
- },
- {
- text: "Bahamas",
- value: "BS",
- children: [
- { text: "Nassau", value: "Nassau" },
- { text: "Freeport", value: "Freeport" },
- { text: "Abaco", value: "Abaco" },
- { text: "Exuma", value: "Exuma" },
- { text: "Grand Bahama", value: "Grand Bahama" },
- { text: "Andros Island", value: "Andros Island" },
- { text: "Bahama Islands", value: "Bahama Islands" },
- { text: "New Providence", value: "New Providence" },
- ],
- },
- {
- text: "Pakistan",
- value: "PK",
- children: [
- { text: "Islamabad", value: "Islamabad" },
- { text: "Karachi", value: "Karachi" },
- { text: "Lahore", value: "Lahore" },
- { text: "Peshawar", value: "Peshawar" },
- { text: "Quetta", value: "Quetta" },
- { text: "Multan", value: "Multan" },
- { text: "Faisalabad", value: "Faisalabad" },
- { text: "Sargodha", value: "Sargodha" },
- { text: "Abbottabad", value: "Abbottabad" },
- { text: "Rawalpindi", value: "Rawalpindi" },
- { text: "Swat", value: "Swat" },
- { text: "Mardan", value: "Mardan" },
- ],
- },
- {
- text: "Paraguay",
- value: "PY",
- children: [
- { text: "Asunción", value: "Asunción" },
- { text: "Ciudad del Este", value: "Ciudad del Este" },
- { text: "Concepción", value: "Concepción" },
- { text: "Caaguazú", value: "Caaguazú" },
- { text: "San Estanislao", value: "San Estanislao" },
- { text: "Cordillera", value: "Cordillera" },
- { text: "Villarrica", value: "Villarrica" },
- { text: "Villarica", value: "Villarica" },
- { text: "Encarnación", value: "Encarnación" },
- { text: "Pilar", value: "Pilar" },
- ],
- },
- {
- text: "Palestine",
- value: "PS",
- children: [
- { text: "Jerusalem", value: "Jerusalem" },
- { text: "Gaza", value: "Gaza" },
- { text: "Ramallah", value: "Ramallah" },
- { text: "Hebron", value: "Hebron" },
- { text: "Bethlehem", value: "Bethlehem" },
- { text: "Nablus", value: "Nablus" },
- { text: "Jenin", value: "Jenin" },
- { text: "Tulkarm", value: "Tulkarm" },
- { text: "Galilee", value: "Galilee" },
- { text: "Deir al-Balah", value: "Deir al-Balah" },
- { text: "Khan Younis", value: "Khan Younis" },
- ],
- },
- {
- text: "Bahrain",
- value: "BH",
- children: [
- { text: "Manama", value: "Manama" },
- { text: "Muharraq", value: "Muharraq" },
- { text: "Hamad Town", value: "Hamad Town" },
- { text: "Riffa", value: "Riffa" },
- { text: "Sitra", value: "Sitra" },
- { text: "Juffair", value: "Juffair" },
- { text: "Ahmed", value: "Ahmed" },
- { text: "Tashteeb", value: "Tashteeb" },
- ],
- },
- {
- text: "Panama",
- value: "PA",
- children: [
- { text: "Panama City", value: "Panama City" },
- { text: "Colón", value: "Colón" },
- { text: "David", value: "David" },
- { text: "Santiago", value: "Santiago" },
- { text: "La Chorrera", value: "La Chorrera" },
- { text: "Arraiján", value: "Arraiján" },
- { text: "Chiriquí", value: "Chiriquí" },
- { text: "Boca del Toro", value: "Boca del Toro" },
- { text: "Balboa", value: "Balboa" },
- { text: "Bates", value: "Bates" },
- ],
- },
- {
- text: "Brazil",
- value: "BR",
- children: [
- { text: "Brasília", value: "Brasília" },
- { text: "Rio de Janeiro", value: "Rio de Janeiro" },
- { text: "São Paulo", value: "São Paulo" },
- { text: "Salvador", value: "Salvador" },
- { text: "Fortaleza", value: "Fortaleza" },
- { text: "Belo Horizonte", value: "Belo Horizonte" },
- { text: "Curitiba", value: "Curitiba" },
- { text: "Manaus", value: "Manaus" },
- { text: "Recife", value: "Recife" },
- { text: "Boa Vista", value: "Boa Vista" },
- { text: "São Luís", value: "São Luís" },
- { text: "Campinas", value: "Campinas" },
- { text: "Olinda", value: "Olinda" },
- { text: "Porto Alegre", value: "Porto Alegre" },
- ],
- },
- {
- text: "Belarus",
- value: "BY",
- children: [
- { text: "Minsk", value: "Minsk" },
- { text: "Gomel", value: "Gomel" },
- { text: "Mogilev", value: "Mogilev" },
- { text: "Brest", value: "Brest" },
- { text: "Vitebsk", value: "Vitebsk" },
- { text: "Grodno", value: "Grodno" },
- { text: "Bishkek", value: "Bishkek" },
- { text: "Shklov", value: "Shklov" },
- { text: "Poltava", value: "Poltava" },
- { text: "Kalesin", value: "Kalesin" },
- ],
- },
- {
- text: "Bermuda",
- value: "BM",
- children: [
- { text: "Hamilton", value: "Hamilton" },
- { text: "St. George", value: "St. George" },
- { text: "Southampton", value: "Southampton" },
- { text: "Saint David", value: "Saint David" },
- { text: "Paget", value: "Paget" },
- { text: "Kingsley", value: "Kingsley" },
- ],
- },
- {
- text: "Bulgaria",
- value: "BG",
- children: [
- { text: "Sofia", value: "Sofia" },
- { text: "Plovdiv", value: "Plovdiv" },
- { text: "Varna", value: "Varna" },
- { text: "Burgas", value: "Burgas" },
- { text: "Ruse", value: "Ruse" },
- { text: "Shumen", value: "Shumen" },
- { text: "Kyustendil", value: "Kyustendil" },
- { text: "Sliven", value: "Sliven" },
- { text: "Haskovo", value: "Haskovo" },
- { text: "Balchik", value: "Balchik" },
- { text: "Dobrich", value: "Dobrich" },
- ],
- },
- {
- text: "Benin",
- value: "BJ",
- children: [
- { text: "Porto-Novo", value: "Porto-Novo" },
- { text: "Cotonou", value: "Cotonou" },
- { text: "Dahomey", value: "Dahomey" },
- { text: "Abomey", value: "Abomey" },
- { text: "Parakou", value: "Parakou" },
- { text: "Atakpamé", value: "Atakpamé" },
- { text: "Ouidah", value: "Ouidah" },
- { text: "Savalou", value: "Savalou" },
- { text: "Bohicon", value: "Bohicon" },
- { text: "Kouandé", value: "Kouandé" },
- ],
- },
- {
- text: "Belgium",
- value: "BE",
- children: [
- { text: "Brussels", value: "Brussels" },
- { text: "Antwerp", value: "Antwerp" },
- { text: "Liège", value: "Liège" },
- { text: "Ghent", value: "Ghent" },
- { text: "Charleroi", value: "Charleroi" },
- { text: "Bruges", value: "Bruges" },
- { text: "Mechelen", value: "Mechelen" },
- { text: "Alost", value: "Alost" },
- { text: "Leuven", value: "Leuven" },
- { text: "Namur", value: "Namur" },
- { text: "Oostende", value: "Oostende" },
- { text: "Hasselt", value: "Hasselt" },
- ],
- },
- {
- text: "Peru",
- value: "PE",
- children: [
- { text: "Lima", value: "Lima" },
- { text: "Arequipa", value: "Arequipa" },
- { text: "Cusco", value: "Cusco" },
- { text: "Trujillo", value: "Trujillo" },
- { text: "Chiclayo", value: "Chiclayo" },
- { text: "Piura", value: "Piura" },
- { text: "Chimbote", value: "Chimbote" },
- { text: "Ucayali", value: "Ucayali" },
- { text: "Iquitos", value: "Iquitos" },
- { text: "Puno", value: "Puno" },
- { text: "Amazonas", value: "Amazonas" },
- ],
- },
- {
- text: "Iceland",
- value: "IS",
- children: [
- { text: "Reykjavik", value: "Reykjavik" },
- { text: "Akureyri", value: "Akureyri" },
- { text: "Hof", value: "Hof" },
- { text: "Hofsos", value: "Hofsos" },
- { text: "Borgarnes", value: "Borgarnes" },
- { text: "Kirkjubæjarklaustur", value: "Kirkjubæjarklaustur" },
- { text: "Laugardalur", value: "Laugardalur" },
- { text: "Selfoss", value: "Selfoss" },
- { text: "Vík", value: "Vík" },
- ],
- },
- {
- text: "Bosnia and Herzegovina",
- value: "BA",
- children: [
- { text: "Sarajevo", value: "Sarajevo" },
- { text: "Mostar", value: "Mostar" },
- { text: "Tuzla", value: "Tuzla" },
- { text: "Bihać", value: "Bihać" },
- { text: "Zenica", value: "Zenica" },
- { text: "Brčko", value: "Brčko" },
- { text: "Trebinje", value: "Trebinje" },
- { text: "Srebrenica", value: "Srebrenica" },
- { text: "Banja Luka", value: "Banja Luka" },
- { text: "Berkovci", value: "Berkovci" },
- ],
- },
- {
- text: "Poland",
- value: "PL",
- children: [
- { text: "Warsaw", value: "Warsaw" },
- { text: "Kraków", value: "Kraków" },
- { text: "Gdańsk", value: "Gdańsk" },
- { text: "Wrocław", value: "Wrocław" },
- { text: "Poznań", value: "Poznań" },
- { text: "Szczecin", value: "Szczecin" },
- { text: "Lublin", value: "Lublin" },
- { text: "Bydgoszcz", value: "Bydgoszcz" },
- { text: "Bielsko-Biała", value: "Bielsko-Biała" },
- { text: "Chelm", value: "Chelm" },
- { text: "Opole", value: "Opole" },
- { text: "Rzeszów", value: "Rzeszów" },
- { text: "Tarnów", value: "Tarnów" },
- { text: "Wałbrzych", value: "Wałbrzych" },
- ],
- },
- {
- text: "Bolivia",
- value: "BO",
- children: [
- { text: "La Paz", value: "La Paz" },
- { text: "Sucre", value: "Sucre" },
- { text: "Santa Cruz", value: "Santa Cruz" },
- { text: "Cochabamba", value: "Cochabamba" },
- { text: "Oruro", value: "Oruro" },
- { text: "Potosí", value: "Potosí" },
- { text: "Tarija", value: "Tarija" },
- { text: "Beni", value: "Beni" },
- { text: "Pando", value: "Pando" },
- { text: "Chiquitos", value: "Chiquitos" },
- ],
- },
- {
- text: "Belize",
- value: "BZ",
- children: [
- { text: "Belmopan", value: "Belmopan" },
- { text: "Belize City", value: "Belize City" },
- { text: "Orange Walk", value: "Orange Walk" },
- { text: "Cayo", value: "Cayo" },
- { text: "San Ignacio", value: "San Ignacio" },
- { text: "San Pedro", value: "San Pedro" },
- { text: "Corozal", value: "Corozal" },
- { text: "Toledo", value: "Toledo" },
- { text: "San Julian", value: "San Julian" },
- ],
- },
- {
- text: "Botswana",
- value: "BW",
- children: [
- { text: "Gaborone", value: "Gaborone" },
- { text: "Francistown", value: "Francistown" },
- { text: "Selibe Phikwe", value: "Selibe Phikwe" },
- { text: "Botswana", value: "Botswana" },
- { text: "Mochudi", value: "Mochudi" },
- { text: "Maun", value: "Maun" },
- { text: "Hobona", value: "Hobona" },
- { text: "Kendall", value: "Kendall" },
- { text: "Hartebeesfontein", value: "Hartebeesfontein" },
- ],
- },
- {
- text: "Bhutan",
- value: "BT",
- children: [
- { text: "Thimphu", value: "Thimphu" },
- { text: "Punakha", value: "Punakha" },
- { text: "Bumthang", value: "Bumthang" },
- { text: "Jakar", value: "Jakar" },
- { text: "Wangdue Phodrang", value: "Wangdue Phodrang" },
- { text: "Jigme Singye Wangchuck", value: "Jigme Singye Wangchuck" },
- { text: "Trashigang", value: "Trashigang" },
- { text: "Lhakhang", value: "Lhakhang" },
- { text: "Gasa", value: "Gasa" },
- { text: "Dewathang", value: "Dewathang" },
- ],
- },
- {
- text: "Burkina Faso",
- value: "BF",
- children: [
- { text: "Ouagadougou", value: "Ouagadougou" },
- { text: "Bobo-Dioulasso", value: "Bobo-Dioulasso" },
- { text: "Banfora", value: "Banfora" },
- { text: "Koudougou", value: "Koudougou" },
- { text: "Samorogouan", value: "Samorogouan" },
- { text: "Po", value: "Po" },
- { text: "Kantchari", value: "Kantchari" },
- { text: "Koupéla", value: "Koupéla" },
- { text: "Dédougou", value: "Dédougou" },
- { text: "Tenkodogo", value: "Tenkodogo" },
- ],
- },
- {
- text: "Burundi",
- value: "BI",
- children: [
- { text: "Gitega", value: "Gitega" },
- { text: "Bujumbura", value: "Bujumbura" },
- { text: "Muramvya", value: "Muramvya" },
- { text: "Karuzi", value: "Karuzi" },
- { text: "Nyanzal", value: "Nyanzal" },
- { text: "Bujumbura", value: "Bujumbura" },
- { text: "Tuyana", value: "Tuyana" },
- { text: "Matenga", value: "Matenga" },
- { text: "Hodes", value: "Hodes" },
- { text: "Nyawzi", value: "Nyawzi" },
- ],
- },
- {
- text: "Equatorial Guinea",
- value: "GQ",
- children: [
- { text: "Malabo", value: "Malabo" },
- { text: "Bata", value: "Bata" },
- { text: "Ebebiyin", value: "Ebebiyin" },
- { text: "Luba", value: "Luba" },
- { text: "Aconibe", value: "Aconibe" },
- { text: "San Antonio", value: "San Antonio" },
- { text: "Alexandria", value: "Alexandria" },
- { text: "Mongomo", value: "Mongomo" },
- ],
- },
- {
- text: "Denmark",
- value: "DK",
- children: [
- { text: "Copenhagen", value: "Copenhagen" },
- { text: "Aarhus", value: "Aarhus" },
- { text: "Aalborg", value: "Aalborg" },
- { text: "Odense", value: "Odense" },
- { text: "Roskilde", value: "Roskilde" },
- { text: "Helsingør", value: "Helsingør" },
- { text: "Holbæk", value: "Holbæk" },
- { text: "Højbjerg", value: "Højbjerg" },
- { text: "Billund", value: "Billund" },
- { text: "Fredericia", value: "Fredericia" },
- ],
- },
- {
- text: "Germany",
- value: "DE",
- children: [
- { text: "Berlin", value: "Berlin" },
- { text: "Hamburg", value: "Hamburg" },
- { text: "Munich", value: "Munich" },
- { text: "Cologne", value: "Cologne" },
- { text: "Frankfurt", value: "Frankfurt" },
- { text: "Stuttgart", value: "Stuttgart" },
- { text: "Düsseldorf", value: "Düsseldorf" },
- { text: "Leipzig", value: "Leipzig" },
- { text: "Dortmund", value: "Dortmund" },
- { text: "Bremen", value: "Bremen" },
- { text: "Hannover", value: "Hannover" },
- { text: "Nuremberg", value: "Nuremberg" },
- { text: "Mannheim", value: "Mannheim" },
- { text: "Offenbach", value: "Offenbach" },
- ],
- },
- {
- text: "Dominica",
- value: "DM",
- children: [
- { text: "Roseau", value: "Roseau" },
- { text: "Portsmouth", value: "Portsmouth" },
- { text: "Morne Bruce", value: "Morne Bruce" },
- { text: "Bakwani", value: "Bakwani" },
- { text: "Wilkinson", value: "Wilkinson" },
- { text: "Dominica", value: "Dominica" },
- ],
- },
- {
- text: "Russia",
- value: "RU",
- children: [
- { text: "Moscow", value: "Moscow" },
- { text: "Saint Petersburg", value: "Saint Petersburg" },
- { text: "Novosibirsk", value: "Novosibirsk" },
- { text: "Yekaterinburg", value: "Yekaterinburg" },
- { text: "Nizhny Novgorod", value: "Nizhny Novgorod" },
- { text: "Kazan", value: "Kazan" },
- { text: "Chelyabinsk", value: "Chelyabinsk" },
- { text: "Ufa", value: "Ufa" },
- { text: "Samara", value: "Samara" },
- { text: "Omsk", value: "Omsk" },
- { text: "Volgograd", value: "Volgograd" },
- { text: "Rostov-on-Don", value: "Rostov-on-Don" },
- { text: "Krasnoyarsk", value: "Krasnoyarsk" },
- { text: "Belgorod", value: "Belgorod" },
- { text: "Perm", value: "Perm" },
- ],
- },
- {
- text: "Ecuador",
- value: "EC",
- children: [
- { text: "Quito", value: "Quito" },
- { text: "Guayaquil", value: "Guayaquil" },
- { text: "Mérida", value: "Mérida" },
- { text: "Cuenca", value: "Cuenca" },
- { text: "Loja", value: "Loja" },
- { text: "Ibarra", value: "Ibarra" },
- { text: "Latacunga", value: "Latacunga" },
- { text: "Vinces", value: "Vinces" },
- { text: "Santa Rosa", value: "Santa Rosa" },
- { text: "Atacunga", value: "Atacunga" },
- { text: "Ambato", value: "Ambato" },
- ],
- },
- {
- text: "Eritrea",
- value: "ER",
- children: [
- { text: "Asmara", value: "Asmara" },
- { text: "Massawa", value: "Massawa" },
- { text: "Barda", value: "Barda" },
- { text: "Keren", value: "Keren" },
- { text: "Ak’ordat", value: "Ak’ordat" },
- { text: "Ghel’alo", value: "Ghel’alo" },
- { text: "Dembel", value: "Dembel" },
- { text: "Habitat", value: "Habitat" },
- ],
- },
- {
- text: "France",
- value: "FR",
- children: [
- { text: "Paris", value: "Paris" },
- { text: "Marseille", value: "Marseille" },
- { text: "Lyon", value: "Lyon" },
- { text: "Toulouse", value: "Toulouse" },
- { text: "Nice", value: "Nice" },
- { text: "Nantes", value: "Nantes" },
- { text: "Strasbourg", value: "Strasbourg" },
- { text: "Bordeaux", value: "Bordeaux" },
- { text: "Lille", value: "Lille" },
- { text: "Rennes", value: "Rennes" },
- { text: "Montpellier", value: "Montpellier" },
- { text: "Le Havre", value: "Le Havre" },
- { text: "Havre", value: "Havre" },
- { text: "Malemort", value: "Malemort" },
- ],
- },
- {
- text: "Faroe Islands",
- value: "FO",
- children: [
- { text: "Tórshavn", value: "Tórshavn" },
- { text: "Skála", value: "Skála" },
- { text: "Streymoy", value: "Streymoy" },
- { text: "Fuglafjørður", value: "Fuglafjørður" },
- { text: "Vágar", value: "Vágar" },
- { text: "Kollafjørður", value: "Kollafjørður" },
- { text: "Bøur", value: "Bøur" },
- { text: "Sørvágur", value: "Sørvágur" },
- ],
- },
- {
- text: "Philippines",
- value: "PH",
- children: [
- { text: "Manila", value: "Manila" },
- { text: "Quezon City", value: "Quezon City" },
- { text: "Cebu", value: "Cebu" },
- { text: "Davao", value: "Davao" },
- { text: "Angeles", value: "Angeles" },
- { text: "Bacolod", value: "Bacolod" },
- { text: "Iloilo", value: "Iloilo" },
- { text: "Makati", value: "Makati" },
- { text: "New Cagayan", value: "New Cagayan" },
- { text: "Pasay", value: "Pasay" },
- { text: "Calamba", value: "Calamba" },
- { text: "Taguig", value: "Taguig" },
- { text: "Bataan", value: "Bataan" },
- ],
- },
- {
- text: "Fiji",
- value: "FJ",
- children: [
- { text: "Suva", value: "Suva" },
- { text: "Lautoka", value: "Lautoka" },
- { text: "Nadi", value: "Nadi" },
- { text: "Nacoca", value: "Nacoca" },
- { text: "Ba", value: "Ba" },
- { text: "Mucku", value: "Mucku" },
- { text: "Kilton", value: "Kilton" },
- { text: "Raven", value: "Raven" },
- ],
- },
- {
- text: "Finland",
- value: "FI",
- children: [
- { text: "Helsinki", value: "Helsinki" },
- { text: "Tampere", value: "Tampere" },
- { text: "Oulu", value: "Oulu" },
- { text: "Turku", value: "Turku" },
- { text: "Vantaa", value: "Vantaa" },
- { text: "Lahti", value: "Lahti" },
- { text: "Kuopio", value: "Kuopio" },
- { text: "Porvoo", value: "Porvoo" },
- { text: "Jyväskylä", value: "Jyväskylä" },
- { text: "Rovaniemi", value: "Rovaniemi" },
- { text: "Ivalo", value: "Ivalo" },
- { text: "Kokkola", value: "Kokkola" },
- ],
- },
- {
- text: "Cape Verde",
- value: "CV",
- children: [
- { text: "Praia", value: "Praia" },
- { text: "Almeirim", value: "Almeirim" },
- { text: "Santiago Island", value: "Santiago Island" },
- { text: "São Vicente Island", value: "São Vicente Island" },
- { text: "São Nicolau Island", value: "São Nicolau Island" },
- { text: "Fogo Island", value: "Fogo Island" },
- { text: "Maio Island", value: "Maio Island" },
- { text: "Boa Vista Island", value: "Boa Vista Island" },
- { text: "Santo Antão Island", value: "Santo Antão Island" },
- { text: "São Pedro Island", value: "São Pedro Island" },
- ],
- },
- {
- text: "Gambia",
- value: "GM",
- children: [
- { text: "Banjul", value: "Banjul" },
- { text: "Serekunda", value: "Serekunda" },
- { text: "Brikama", value: "Brikama" },
- { text: "Kafuta", value: "Kafuta" },
- { text: "Jiboro", value: "Jiboro" },
- { text: "Basse", value: "Basse" },
- { text: "Kuntaur", value: "Kuntaur" },
- { text: "Malko", value: "Malko" },
- ],
- },
- {
- text: "Congo (Brazzaville)",
- value: "CG",
- children: [
- { text: "Brazzaville", value: "Brazzaville" },
- { text: "Pointe-Noire", value: "Pointe-Noire" },
- { text: "Oyo", value: "Oyo" },
- { text: "Dolisie", value: "Dolisie" },
- { text: "Biyem-Assi", value: "Biyem-Assi" },
- { text: "Kinkala", value: "Kinkala" },
- { text: "Fougamou", value: "Fougamou" },
- { text: "Buba", value: "Buba" },
- ],
- },
- {
- text: "Congo (Kinshasa)",
- value: "CD",
- children: [
- { text: "Kinshasa", value: "Kinshasa" },
- { text: "Lubumbashi", value: "Lubumbashi" },
- { text: "Mbandaka", value: "Mbandaka" },
- { text: "Kananga", value: "Kananga" },
- { text: "Goma", value: "Goma" },
- { text: "Kisangani", value: "Kisangani" },
- { text: "Matadi", value: "Matadi" },
- { text: "Bokavu", value: "Bokavu" },
- { text: "Mbanda", value: "Mbanda" },
- { text: "Baluwe", value: "Baluwe" },
- ],
- },
- {
- text: "Colombia",
- value: "CO",
- children: [
- { text: "Bogotá", value: "Bogotá" },
- { text: "Medellín", value: "Medellín" },
- { text: "Cali", value: "Cali" },
- { text: "Barranquilla", value: "Barranquilla" },
- { text: "Cartagena", value: "Cartagena" },
- { text: "Santa Marta", value: "Santa Marta" },
- { text: "Bucaramanga", value: "Bucaramanga" },
- { text: "Cúcuta", value: "Cúcuta" },
- { text: "Pasto", value: "Pasto" },
- { text: "Armenia", value: "Armenia" },
- { text: "Manizales", value: "Manizales" },
- { text: "Villavicencio", value: "Villavicencio" },
- { text: "Los Rosarios", value: "Los Rosarios" },
- ],
- },
- {
- text: "Costa Rica",
- value: "CR",
- children: [
- { text: "San José", value: "San José" },
- { text: "Alajuela", value: "Alajuela" },
- { text: "Heredia", value: "Heredia" },
- { text: "Guanacaste", value: "Guanacaste" },
- { text: "Limón", value: "Limón" },
- { text: "Poás", value: "Poás" },
- { text: "Santa Cruz", value: "Santa Cruz" },
- { text: "Nicoya", value: "Nicoya" },
- { text: "Grecia", value: "Grecia" },
- { text: "San Isidro", value: "San Isidro" },
- { text: "Los Suárez", value: "Los Suárez" },
- ],
- },
- {
- text: "Grenada",
- value: "GD",
- children: [
- { text: "St. George's", value: "St. George's" },
- { text: "Grenville", value: "Grenville" },
- { text: "New Grand Anse", value: "New Grand Anse" },
- { text: "Villanova", value: "Villanova" },
- { text: "Gouyave", value: "Gouyave" },
- ],
- },
- {
- text: "Georgia",
- value: "GE",
- children: [
- { text: "Tbilisi", value: "Tbilisi" },
- { text: "Kutaisi", value: "Kutaisi" },
- { text: "Batumi", value: "Batumi" },
- { text: "Tskhinvali", value: "Tskhinvali" },
- { text: "Zugdidi", value: "Zugdidi" },
- { text: "Gori", value: "Gori" },
- { text: "Poti", value: "Poti" },
- { text: "Bakhmaro", value: "Bakhmaro" },
- { text: "Shekvetili", value: "Shekvetili" },
- ],
- },
- {
- text: "Cuba",
- value: "CU",
- children: [
- { text: "Havana", value: "Havana" },
- { text: "Santiago de Cuba", value: "Santiago de Cuba" },
- { text: "Camagüey", value: "Camagüey" },
- { text: "Holguín", value: "Holguín" },
- { text: "Granma", value: "Granma" },
- { text: "Viñales", value: "Viñales" },
- { text: "Cienfuegos", value: "Cienfuegos" },
- { text: "Las Tunas", value: "Las Tunas" },
- { text: "Matanzas", value: "Matanzas" },
- { text: "Almeida", value: "Almeida" },
- ],
- },
- {
- text: "Guyana",
- value: "GY",
- children: [
- { text: "Georgetown", value: "Georgetown" },
- { text: "Linden", value: "Linden" },
- { text: "New Amsterdam", value: "New Amsterdam" },
- { text: "Berbice", value: "Berbice" },
- { text: "Boerasirie", value: "Boerasirie" },
- { text: "Skeldon", value: "Skeldon" },
- { text: "Perica", value: "Perica" },
- { text: "Biche", value: "Biche" },
- { text: "Enter Bay", value: "Enter Bay" },
- ],
- },
- {
- text: "Kazakhstan",
- value: "KZ",
- children: [
- { text: "Almaty", value: "Almaty" },
- { text: "Nur-Sultan", value: "Nur-Sultan" },
- { text: "Shymkent", value: "Shymkent" },
- { text: "Karaganda", value: "Karaganda" },
- { text: "Aqtau", value: "Aqtau" },
- { text: "Uralsk", value: "Uralsk" },
- { text: "Atyrau", value: "Atyrau" },
- { text: "Taraz", value: "Taraz" },
- ],
- },
- {
- text: "Haiti",
- value: "HT",
- children: [
- { text: "Port-au-Prince", value: "Port-au-Prince" },
- { text: "Cap-Haïtien", value: "Cap-Haïtien" },
- { text: "Jeremie", value: "Jeremie" },
- { text: "Ouanaminthe", value: "Ouanaminthe" },
- { text: "Haiti City", value: "Haiti City" },
- { text: "Delmas", value: "Delmas" },
- ],
- },
- {
- text: "South Korea",
- value: "KR",
- children: [
- { text: "Seoul", value: "Seoul" },
- { text: "Busan", value: "Busan" },
- { text: "Daegu", value: "Daegu" },
- { text: "Incheon", value: "Incheon" },
- { text: "Gwangju", value: "Gwangju" },
- { text: "Daejeon", value: "Daejeon" },
- { text: "Ulsan", value: "Ulsan" },
- { text: "Suwon", value: "Suwon" },
- ],
- },
- {
- text: "Netherlands",
- value: "NL",
- children: [
- { text: "Amsterdam", value: "Amsterdam" },
- { text: "Rotterdam", value: "Rotterdam" },
- { text: "The Hague", value: "The Hague" },
- { text: "Utrecht", value: "Utrecht" },
- { text: "Eindhoven", value: "Eindhoven" },
- { text: "Groningen", value: "Groningen" },
- { text: "Almere", value: "Almere" },
- { text: "Maastricht", value: "Maastricht" },
- ],
- },
- {
- text: "Honduras",
- value: "HN",
- children: [
- { text: "Tegucigalpa", value: "Tegucigalpa" },
- { text: "San Pedro Sula", value: "San Pedro Sula" },
- { text: "La Ceiba", value: "La Ceiba" },
- { text: "Olancho", value: "Olancho" },
- { text: "Comayagua", value: "Comayagua" },
- { text: "Choluteca", value: "Choluteca" },
- { text: "Siguatepeque", value: "Siguatepeque" },
- ],
- },
- {
- text: "Kiribati",
- value: "KI",
- children: [
- { text: "Tarawa", value: "Tarawa" },
- { text: "Bairiki", value: "Bairiki" },
- { text: "Barubu", value: "Barubu" },
- ],
- },
- {
- text: "Djibouti",
- value: "DJ",
- children: [
- { text: "Djibouti City", value: "Djibouti City" },
- { text: "Ali Sabieh", value: "Ali Sabieh" },
- { text: "Tadjoura", value: "Tadjoura" },
- ],
- },
- {
- text: "Kyrgyzstan",
- value: "KG",
- children: [
- { text: "Bishkek", value: "Bishkek" },
- { text: "Osh", value: "Osh" },
- { text: "Jalal-Abad", value: "Jalal-Abad" },
- { text: "Kochkor", value: "Kochkor" },
- ],
- },
- {
- text: "Guinea",
- value: "GN",
- children: [
- { text: "Conakry", value: "Conakry" },
- { text: "Kankan", value: "Kankan" },
- { text: "Faranah", value: "Faranah" },
- { text: "Nzérékoré", value: "Nzérékoré" },
- ],
- },
- {
- text: "Guinea-Bissau",
- value: "GW",
- children: [
- { text: "Bissau", value: "Bissau" },
- { text: "Bafatá", value: "Bafatá" },
- { text: "Gabú", value: "Gabú" },
- ],
- },
- {
- text: "Canada",
- value: "CA",
- children: [
- { text: "Ottawa", value: "Ottawa" },
- { text: "Toronto", value: "Toronto" },
- { text: "Vancouver", value: "Vancouver" },
- { text: "Montreal", value: "Montreal" },
- { text: "Calgary", value: "Calgary" },
- { text: "Edmonton", value: "Edmonton" },
- { text: "Quebec City", value: "Quebec City" },
- ],
- },
- {
- text: "Ghana",
- value: "GH",
- children: [
- { text: "Accra", value: "Accra" },
- { text: "Kumasi", value: "Kumasi" },
- { text: "Tamale", value: "Tamale" },
- { text: "Sekondi", value: "Sekondi" },
- ],
- },
- {
- text: "Gabon",
- value: "GA",
- children: [
- { text: "Libreville", value: "Libreville" },
- { text: "Franceville", value: "Franceville" },
- { text: "Booué", value: "Booué" },
- ],
- },
- {
- text: "Cambodia",
- value: "KH",
- children: [
- { text: "Phnom Penh", value: "Phnom Penh" },
- { text: "Siem Reap", value: "Siem Reap" },
- { text: "Sihanoukville", value: "Sihanoukville" },
- { text: "Battambang", value: "Battambang" },
- ],
- },
- {
- text: "Czech Republic",
- value: "CZ",
- children: [
- { text: "Prague", value: "Prague" },
- { text: "Brno", value: "Brno" },
- { text: "Plzeň", value: "Plzeň" },
- { text: "Olomouc", value: "Olomouc" },
- { text: "Liberec", value: "Liberec" },
- ],
- },
- {
- text: "Cameroon",
- value: "CM",
- children: [
- { text: "Yaoundé", value: "Yaoundé" },
- { text: "Douala", value: "Douala" },
- { text: "Bamenda", value: "Bamenda" },
- { text: "Bafoussam", value: "Bafoussam" },
- { text: "Maroua", value: "Maroua" },
- { text: "Mbouda", value: "Mbouda" },
- ],
- },
- {
- text: "Qatar",
- value: "QA",
- children: [
- { text: "Doha", value: "Doha" },
- { text: "Al Khor", value: "Al Khor" },
- { text: "Al Wakrah", value: "Al Wakrah" },
- { text: "Al Jubail", value: "Al Jubail" },
- { text: "Lusail", value: "Lusail" },
- ],
- },
- {
- text: "Comoros",
- value: "KM",
- children: [
- { text: "Moroni", value: "Moroni" },
- { text: "Moutsamoudou", value: "Moutsamoudou" },
- { text: "Fomboni", value: "Fomboni" },
- { text: "Babaoua", value: "Babaoua" },
- ],
- },
- {
- text: "Ivory Coast",
- value: "CI",
- children: [
- { text: "Abidjan", value: "Abidjan" },
- { text: "Kossou", value: "Kossou" },
- { text: "Bingerville", value: "Bingerville" },
- { text: "Man", value: "Man" },
- { text: "Bouaké", value: "Bouaké" },
- { text: "San Pedro", value: "San Pedro" },
- ],
- },
- {
- text: "Kuwait",
- value: "KW",
- children: [
- { text: "Kuwait City", value: "Kuwait City" },
- { text: "Sabah", value: "Sabah" },
- { text: "Hawalli", value: "Hawalli" },
- { text: "Fahaheel", value: "Fahaheel" },
- { text: "Al Jahra", value: "Al Jahra" },
- ],
- },
- {
- text: "Croatia",
- value: "HR",
- children: [
- { text: "Zagreb", value: "Zagreb" },
- { text: "Split", value: "Split" },
- { text: "Rijeka", value: "Rijeka" },
- { text: "Dubrovnik", value: "Dubrovnik" },
- { text: "Zadar", value: "Zadar" },
- { text: "Osijek", value: "Osijek" },
- ],
- },
- {
- text: "Kenya",
- value: "KE",
- children: [
- { text: "Nairobi", value: "Nairobi" },
- { text: "Mombasa", value: "Mombasa" },
- { text: "Kisumu", value: "Kisumu" },
- { text: "Nakuru", value: "Nakuru" },
- { text: "Nyeri", value: "Nyeri" },
- { text: "Eldoret", value: "Eldoret" },
- ],
- },
- {
- text: "Latvia",
- value: "LV",
- children: [
- { text: "Riga", value: "Riga" },
- { text: "Jurmala", value: "Jurmala" },
- { text: "Liepaja", value: "Liepaja" },
- { text: "Valmiera", value: "Valmiera" },
- { text: "Bauska", value: "Bauska" },
- ],
- },
- {
- text: "Lesotho",
- value: "LS",
- children: [
- { text: "Maseru", value: "Maseru" },
- { text: "Teyateyaneng", value: "Teyateyaneng" },
- { text: "Hlotse", value: "Hlotse" },
- { text: "Butha-Buthe", value: "Butha-Buthe" },
- ],
- },
- {
- text: "Laos",
- value: "LA",
- children: [
- { text: "Vientiane", value: "Vientiane" },
- { text: "Luang Prabang", value: "Luang Prabang" },
- { text: "Savannakhet", value: "Savannakhet" },
- { text: "Thakhek", value: "Thakhek" },
- { text: "Bokeo", value: "Bokeo" },
- ],
- },
- {
- text: "Lebanon",
- value: "LB",
- children: [
- { text: "Beirut", value: "Beirut" },
- { text: "Tripoli", value: "Tripoli" },
- { text: "Tyre", value: "Tyre" },
- { text: "Jbeil", value: "Jbeil" },
- { text: "Sidon", value: "Sidon" },
- ],
- },
- {
- text: "Lithuania",
- value: "LT",
- children: [
- { text: "Vilnius", value: "Vilnius" },
- { text: "Kaunas", value: "Kaunas" },
- { text: "Klaipeda", value: "Klaipeda" },
- { text: "Šiauliai", value: "Šiauliai" },
- { text: "Panevėžys", value: "Panevėžys" },
- ],
- },
- {
- text: "Liberia",
- value: "LR",
- children: [
- { text: "Monrovia", value: "Monrovia" },
- { text: "Gbarnga", value: "Gbarnga" },
- { text: "New Kru Town", value: "New Kru Town" },
- ],
- },
- {
- text: "Libya",
- value: "LY",
- children: [
- { text: "Tripoli", value: "Tripoli" },
- { text: "Benghazi", value: "Benghazi" },
- { text: "Misurata", value: "Misurata" },
- { text: "Zawiya", value: "Zawiya" },
- { text: "Homs", value: "Homs" },
- ],
- },
- {
- text: "Liechtenstein",
- value: "LI",
- children: [
- { text: "Vaduz", value: "Vaduz" },
- { text: "Schaan", value: "Schaan" },
- { text: "Balzers", value: "Balzers" },
- ],
- },
- {
- text: "Luxembourg",
- value: "LU",
- children: [
- { text: "Luxembourg City", value: "Luxembourg City" },
- { text: "Ettelbruck", value: "Ettelbruck" },
- { text: "Differdange", value: "Differdange" },
- ],
- },
- {
- text: "Romania",
- value: "RO",
- children: [
- { text: "Bucharest", value: "Bucharest" },
- { text: "Cluj-Napoca", value: "Cluj-Napoca" },
- { text: "Timișoara", value: "Timișoara" },
- { text: "Iași", value: "Iași" },
- { text: "Constanța", value: "Constanța" },
- { text: "Brașov", value: "Brașov" },
- { text: "Galați", value: "Galați" },
- ],
- },
- {
- text: "Rwanda",
- value: "RW",
- children: [
- { text: "Kigali", value: "Kigali" },
- { text: "Musanze", value: "Musanze" },
- { text: "Gisenyi", value: "Gisenyi" },
- { text: "Bucura", value: "Bucura" },
- { text: "Nyanza", value: "Nyanza" },
- ],
- },
- {
- text: "Madagascar",
- value: "MG",
- children: [
- { text: "Antananarivo", value: "Antananarivo" },
- { text: "Toamasina", value: "Toamasina" },
- { text: "Antsiranana", value: "Antsiranana" },
- { text: "Mahajanga", value: "Mahajanga" },
- { text: "Fianarantsoa", value: "Fianarantsoa" },
- ],
- },
- {
- text: "Malawi",
- value: "MW",
- children: [
- { text: "Lilongwe", value: "Lilongwe" },
- { text: "Blantyre", value: "Blantyre" },
- { text: "Mzuzu", value: "Mzuzu" },
- { text: "Zomba", value: "Zomba" },
- { text: "Kasungu", value: "Kasungu" },
- ],
- },
- {
- text: "Malaysia",
- value: "MY",
- children: [
- { text: "Kuala Lumpur", value: "Kuala Lumpur" },
- { text: "Penang", value: "Penang" },
- { text: "George Town", value: "George Town" },
- { text: "Sabah", value: "Sabah" },
- { text: "Johor Bahru", value: "Johor Bahru" },
- { text: "Malacca", value: "Malacca" },
- ],
- },
- {
- text: "Mauritius",
- value: "MU",
- children: [
- { text: "Port Louis", value: "Port Louis" },
- { text: "Beau Bassin-Rose Hill", value: "Beau Bassin-Rose Hill" },
- { text: "Curepipe", value: "Curepipe" },
- { text: "Vacoas-Phoenix", value: "Vacoas-Phoenix" },
- { text: "Moka", value: "Moka" },
- ],
- },
- {
- text: "Mauritania",
- value: "MR",
- children: [
- { text: "Nouakchott", value: "Nouakchott" },
- { text: "Choum", value: "Choum" },
- { text: "Kiffa", value: "Kiffa" },
- { text: "Atar", value: "Atar" },
- { text: "Tékane", value: "Tékane" },
- ],
- },
- {
- text: "United States",
- value: "US",
- children: [
- { text: "New York", value: "New York" },
- { text: "Los Angeles", value: "Los Angeles" },
- { text: "Chicago", value: "Chicago" },
- { text: "Houston", value: "Houston" },
- { text: "Phoenix", value: "Phoenix" },
- { text: "Philadelphia", value: "Philadelphia" },
- { text: "San Antonio", value: "San Antonio" },
- { text: "San Diego", value: "San Diego" },
- ],
- },
- {
- text: "Mongolia",
- value: "MN",
- children: [
- { text: "Ulaanbaatar", value: "Ulaanbaatar" },
- { text: "Darkhan", value: "Darkhan" },
- { text: "Erdenet", value: "Erdenet" },
- { text: "Hovd", value: "Hovd" },
- { text: "Choibalsan", value: "Choibalsan" },
- ],
- },
- {
- text: "Bangladesh",
- value: "BD",
- children: [
- { text: "Dhaka", value: "Dhaka" },
- { text: "Chittagong", value: "Chittagong" },
- { text: "Khulna", value: "Khulna" },
- { text: "Rajshahi", value: "Rajshahi" },
- { text: "Bogura", value: "Bogura" },
- ],
- },
- {
- text: "Myanmar",
- value: "MM",
- children: [
- { text: "Naypyidaw", value: "Naypyidaw" },
- { text: "Yangon", value: "Yangon" },
- { text: "Mandalay", value: "Mandalay" },
- { text: "Bago", value: "Bago" },
- { text: "Inle Lake", value: "Inle Lake" },
- ],
- },
- {
- text: "Moldova",
- value: "MD",
- children: [
- { text: "Chisinau", value: "Chisinau" },
- { text: "Tighina", value: "Tighina" },
- { text: "Botosani", value: "Botosani" },
- { text: "Cahul", value: "Cahul" },
- { text: "Soroca", value: "Soroca" },
- ],
- },
- {
- text: "Morocco",
- value: "MA",
- children: [
- { text: "Rabat", value: "Rabat" },
- { text: "Casablanca", value: "Casablanca" },
- { text: "Marrakech", value: "Marrakech" },
- { text: "Fez", value: "Fez" },
- { text: "Tangier", value: "Tangier" },
- ],
- },
- {
- text: "Mozambique",
- value: "MZ",
- children: [
- { text: "Maputo", value: "Maputo" },
- { text: "Beira", value: "Beira" },
- { text: "Nacala", value: "Nacala" },
- { text: "Tete", value: "Tete" },
- { text: "Mutinba", value: "Mutinba" },
- ],
- },
- {
- text: "Mexico",
- value: "MX",
- children: [
- { text: "Mexico City", value: "Mexico City" },
- { text: "Guadalajara", value: "Guadalajara" },
- { text: "Monterrey", value: "Monterrey" },
- { text: "Cancun", value: "Cancun" },
- { text: "Merida", value: "Merida" },
- ],
- },
- {
- text: "Namibia",
- value: "NA",
- children: [
- { text: "Windhoek", value: "Windhoek" },
- { text: "Swakopmund", value: "Swakopmund" },
- { text: "Walvis Bay", value: "Walvis Bay" },
- { text: "Henties Bay", value: "Henties Bay" },
- { text: "Oshakati", value: "Oshakati" },
- ],
- },
- {
- text: "South Africa",
- value: "ZA",
- children: [
- { text: "Johannesburg", value: "Johannesburg" },
- { text: "Cape Town", value: "Cape Town" },
- { text: "Durban", value: "Durban" },
- { text: "Pretoria", value: "Pretoria" },
- { text: "East London", value: "East London" },
- ],
- },
- {
- text: "Nepal",
- value: "NP",
- children: [
- { text: "Kathmandu", value: "Kathmandu" },
- { text: "Pokhara", value: "Pokhara" },
- { text: "Lalitpur", value: "Lalitpur" },
- { text: "Palpa", value: "Palpa" },
- { text: "Biratnagar", value: "Biratnagar" },
- ],
- },
- {
- text: "Niger",
- value: "NE",
- children: [
- { text: "Niamey", value: "Niamey" },
- { text: "Zinder", value: "Zinder" },
- { text: "Maiduguri", value: "Maiduguri" },
- { text: "Abéché", value: "Abéché" },
- { text: "Tera", value: "Tera" },
- ],
- },
- {
- text: "Nigeria",
- value: "NG",
- children: [
- { text: "Abuja", value: "Abuja" },
- { text: "Lagos", value: "Lagos" },
- { text: "Kano", value: "Kano" },
- { text: "Ibadan", value: "Ibadan" },
- { text: "Aba", value: "Aba" },
- ],
- },
- {
- text: "Norway",
- value: "NO",
- children: [
- { text: "Oslo", value: "Oslo" },
- { text: "Bergen", value: "Bergen" },
- { text: "Stavanger", value: "Stavanger" },
- { text: "Trondheim", value: "Trondheim" },
- { text: "Drammen", value: "Drammen" },
- ],
- },
- {
- text: "Japan",
- value: "JP",
- children: [
- { text: "Tokyo", value: "Tokyo" },
- { text: "Osaka", value: "Osaka" },
- { text: "Kyoto", value: "Kyoto" },
- { text: "Nagoya", value: "Nagoya" },
- { text: "Sapporo", value: "Sapporo" },
- { text: "Fukuoka", value: "Fukuoka" },
- { text: "Kobe", value: "Kobe" },
- { text: "Yokohama", value: "Yokohama" },
- ],
- },
- {
- text: "Sweden",
- value: "SE",
- children: [
- { text: "Stockholm", value: "Stockholm" },
- { text: "Gothenburg", value: "Gothenburg" },
- { text: "Malmö", value: "Malmö" },
- { text: "Uppsala", value: "Uppsala" },
- { text: "Linköping", value: "Linköping" },
- { text: "Helsingborg", value: "Helsingborg" },
- { text: "Västerås", value: "Västerås" },
- { text: "Örebro", value: "Örebro" },
- ],
- },
- {
- text: "Switzerland",
- value: "CH",
- children: [
- { text: "Zurich", value: "Zurich" },
- { text: "Geneva", value: "Geneva" },
- { text: "Basel", value: "Basel" },
- { text: "Bern", value: "Bern" },
- { text: "Lucerne", value: "Lucerne" },
- { text: "St. Gallen", value: "St. Gallen" },
- { text: "Montreux", value: "Montreux" },
- { text: "Schaffhausen", value: "Schaffhausen" },
- ],
- },
- {
- text: "El Salvador",
- value: "SV",
- children: [
- { text: "San Salvador", value: "San Salvador" },
- { text: "Ahuachapan", value: "Ahuachapan" },
- { text: "La Paz", value: "La Paz" },
- { text: "San Miguel", value: "San Miguel" },
- { text: "Santa Ana", value: "Santa Ana" },
- ],
- },
- {
- text: "Samoa",
- value: "WS",
- children: [
- { text: "Apia", value: "Apia" },
- { text: "Vaitele", value: "Vaitele" },
- { text: "Levao", value: "Levao" },
- { text: "Tufui", value: "Tufui" },
- { text: "Apolima", value: "Apolima" },
- ],
- },
- {
- text: "Senegal",
- value: "SN",
- children: [
- { text: "Dakar", value: "Dakar" },
- { text: "Touba", value: "Touba" },
- { text: "Saint-Louis", value: "Saint-Louis" },
- { text: "Bamako", value: "Bamako" },
- { text: "Kaolack", value: "Kaolack" },
- ],
- },
- {
- text: "Saudi Arabia",
- value: "SA",
- children: [
- { text: "Riyadh", value: "Riyadh" },
- { text: "Jeddah", value: "Jeddah" },
- { text: "Mecca", value: "Mecca" },
- { text: "Medina", value: "Medina" },
- { text: "Dammam", value: "Dammam" },
- ],
- },
- {
- text: "Serbia",
- value: "RS",
- children: [
- { text: "Belgrade", value: "Belgrade" },
- { text: "Novi Sad", value: "Novi Sad" },
- { text: "Niš", value: "Niš" },
- { text: "Kragujevac", value: "Kragujevac" },
- { text: "Novi Pazar", value: "Novi Pazar" },
- ],
- },
- {
- text: "Sri Lanka",
- value: "LK",
- children: [
- { text: "Colombo", value: "Colombo" },
- { text: "Jaffna", value: "Jaffna" },
- { text: "Kandy", value: "Kandy" },
- { text: "Galle", value: "Galle" },
- { text: "Sri Jayawardenepura Kotte", value: "Sri Jayawardenepura Kotte" },
- ],
- },
- {
- text: "Slovakia",
- value: "SK",
- children: [
- { text: "Bratislava", value: "Bratislava" },
- { text: "Košice", value: "Košice" },
- { text: "Nitra", value: "Nitra" },
- { text: "Trnava", value: "Trnava" },
- { text: "Žilina", value: "Žilina" },
- ],
- },
- {
- text: "Slovenia",
- value: "SI",
- children: [
- { text: "Ljubljana", value: "Ljubljana" },
- { text: "Maribor", value: "Maribor" },
- { text: "Celje", value: "Celje" },
- { text: "Kranj", value: "Kranj" },
- { text: "Novo Mesto", value: "Novo Mesto" },
- ],
- },
- {
- text: "Eswatini",
- value: "SZ",
- children: [
- { text: "Mbabane", value: "Mbabane" },
- { text: "Lobamba", value: "Lobamba" },
- { text: "Nhlangano", value: "Nhlangano" },
- { text: "Hhohho", value: "Hhohho" },
- { text: "Ezulwini", value: "Ezulwini" },
- ],
- },
- {
- text: "Sudan",
- value: "SD",
- children: [
- { text: "Khartoum", value: "Khartoum" },
- { text: "Omdurman", value: "Omdurman" },
- { text: "Entumbane", value: "Entumbane" },
- { text: "Karduf", value: "Karduf" },
- { text: "Borl", value: "Borl" },
- ],
- },
- {
- text: "Suriname",
- value: "SR",
- children: [
- { text: "Paramaribo", value: "Paramaribo" },
- { text: "Nickerie", value: "Nickerie" },
- { text: "Moengo", value: "Moengo" },
- { text: "Albina", value: "Albina" },
- { text: "Brokopondo", value: "Brokopondo" },
- ],
- },
- {
- text: "Somalia",
- value: "SO",
- children: [
- { text: "Mogadishu", value: "Mogadishu" },
- { text: "Hargeisa", value: "Hargeisa" },
- { text: "Burao", value: "Burao" },
- { text: "Balkh", value: "Balkh" },
- { text: "Jowhar", value: "Jowhar" },
- ],
- },
- {
- text: "Syria",
- value: "SY",
- children: [
- { text: "Damascus", value: "Damascus" },
- { text: "Aleppo", value: "Aleppo" },
- { text: "Latakia", value: "Latakia" },
- { text: "Hama", value: "Hama" },
- { text: "Deir ez-Zor", value: "Deir ez-Zor" },
- { text: "Idlib", value: "Idlib" },
- { text: "Daraa", value: "Daraa" },
- ],
- },
- {
- text: "Tajikistan",
- value: "TJ",
- children: [
- { text: "Dushanbe", value: "Dushanbe" },
- { text: "Khorog", value: "Khorog" },
- { text: "Qurgonteppa", value: "Qurgonteppa" },
- { text: "Kulob", value: "Kulob" },
- { text: "Jalalabad", value: "Jalalabad" },
- ],
- },
- {
- text: "Thailand",
- value: "TH",
- children: [
- { text: "Bangkok", value: "Bangkok" },
- { text: "Chiang Mai", value: "Chiang Mai" },
- { text: "Phuket", value: "Phuket" },
- { text: "Pattaya", value: "Pattaya" },
- { text: "Hat Yai", value: "Hat Yai" },
- { text: "Songkhla", value: "Songkhla" },
- ],
- },
- {
- text: "Tanzania",
- value: "TZ",
- children: [
- { text: "Dar es Salaam", value: "Dar es Salaam" },
- { text: "Kilimanjaro", value: "Kilimanjaro" },
- { text: "Mwanza", value: "Mwanza" },
- { text: "Arusha", value: "Arusha" },
- { text: "Kigoma", value: "Kigoma" },
- ],
- },
- {
- text: "Tonga",
- value: "TO",
- children: [
- { text: "Nuku'alofa", value: "Nuku'alofa" },
- { text: "Haveluloto", value: "Haveluloto" },
- { text: "Vava'u", value: "Vava'u" },
- ],
- },
- {
- text: "Tunisia",
- value: "TN",
- children: [
- { text: "Tunis", value: "Tunis" },
- { text: "Sousse", value: "Sousse" },
- { text: "Hammamet", value: "Hammamet" },
- { text: "Gabes", value: "Gabes" },
- { text: "Bizerte", value: "Bizerte" },
- ],
- },
- {
- text: "Tuvalu",
- value: "TV",
- children: [
- { text: "Funafuti", value: "Funafuti" },
- { text: "Motu", value: "Motu" },
- ],
- },
- {
- text: "Turkey",
- value: "TR",
- children: [
- { text: "Istanbul", value: "Istanbul" },
- { text: "Ankara", value: "Ankara" },
- { text: "Izmir", value: "Izmir" },
- { text: "Bursa", value: "Bursa" },
- { text: "Antalya", value: "Antalya" },
- ],
- },
- {
- text: "Turkmenistan",
- value: "TM",
- children: [
- { text: "Ashgabat", value: "Ashgabat" },
- { text: "Mary", value: "Mary" },
- { text: "Turkmenbashi", value: "Turkmenbashi" },
- { text: "Dashoguz", value: "Dashoguz" },
- ],
- },
- {
- text: "Guatemala",
- value: "GT",
- children: [
- { text: "Guatemala City", value: "Guatemala City" },
- { text: "Antigua", value: "Antigua" },
- { text: "Quiché", value: "Quiché" },
- { text: "Sololá", value: "Sololá" },
- { text: "Escuintla", value: "Escuintla" },
- ],
- },
- {
- text: "Vanuatu",
- value: "VU",
- children: [
- { text: "Port Vila", value: "Port Vila" },
- { text: "Luganville", value: "Luganville" },
- { text: "Matakun", value: "Matakun" },
- ],
- },
- {
- text: "Venezuela",
- value: "VE",
- children: [
- { text: "Caracas", value: "Caracas" },
- { text: "Maracaibo", value: "Maracaibo" },
- { text: "Valencia", value: "Valencia" },
- { text: "Mérida", value: "Mérida" },
- { text: "Maturín", value: "Maturín" },
- ],
- },
- {
- text: "Brunei",
- value: "BN",
- children: [
- { text: "Bandar Seri Begawan", value: "Bandar Seri Begawan" },
- { text: "Kuala Belait", value: "Kuala Belait" },
- { text: "Tutong", value: "Tutong" },
- ],
- },
- {
- text: "Uganda",
- value: "UG",
- children: [
- { text: "Kampala", value: "Kampala" },
- { text: "Entebbe", value: "Entebbe" },
- { text: "Mbarara", value: "Mbarara" },
- { text: "Jinja", value: "Jinja" },
- { text: "Arua", value: "Arua" },
- ],
- },
- {
- text: "Ukraine",
- value: "UA",
- children: [
- { text: "Kyiv", value: "Kyiv" },
- { text: "Kharkiv", value: "Kharkiv" },
- { text: "Odessa", value: "Odessa" },
- { text: "Dnipro", value: "Dnipro" },
- { text: "Lviv", value: "Lviv" },
- { text: "Zaporizhzhia", value: "Zaporizhzhia" },
- { text: "Vinnytsia", value: "Vinnytsia" },
- { text: "Khmelnytskyi", value: "Khmelnytskyi" },
- { text: "Cherkasy", value: "Cherkasy" },
- { text: "Poltava", value: "Poltava" },
- { text: "Sumy", value: "Sumy" },
- { text: "Chernihiv", value: "Chernihiv" },
- { text: "Zhytomyr", value: "Zhytomyr" },
- { text: "Rivne", value: "Rivne" },
- { text: "Lutsk", value: "Lutsk" },
- { text: "Ternopil", value: "Ternopil" },
- { text: "Ivano-Frankivsk", value: "Ivano-Frankivsk" },
- { text: "Uzhhorod", value: "Uzhhorod" },
- { text: "Chernivtsi", value: "Chernivtsi" },
- { text: "Kherson", value: "Kherson" },
- { text: "Mykolaiv", value: "Mykolaiv" },
- { text: "Kryvyi Rih", value: "Kryvyi Rih" },
- { text: "Mariupol", value: "Mariupol" },
- { text: "Sievierodonetsk", value: "Sievierodonetsk" },
- ],
- },
- {
- text: "Uruguay",
- value: "UY",
- children: [
- { text: "Montevideo", value: "Montevideo" },
- { text: "Nueva Helvecia", value: "Nueva Helvecia" },
- { text: "Salto", value: "Salto" },
- { text: "Peñarol", value: "Peñarol" },
- { text: "La Bahía", value: "La Bahía" },
- ],
- },
- {
- text: "Uzbekistan",
- value: "UZ",
- children: [
- { text: "Tashkent", value: "Tashkent" },
- { text: "Samarkand", value: "Samarkand" },
- { text: "Bukhara", value: "Bukhara" },
- { text: "Khiva", value: "Khiva" },
- { text: "Navoi", value: "Navoi" },
- ],
- },
- {
- text: "Spain",
- value: "ES",
- children: [
- { text: "Madrid", value: "Madrid" },
- { text: "Barcelona", value: "Barcelona" },
- { text: "Valencia", value: "Valencia" },
- { text: "Sevilla", value: "Sevilla" },
- { text: "Bilbao", value: "Bilbao" },
- ],
- },
- {
- text: "Greece",
- value: "GR",
- children: [
- { text: "Athens", value: "Athens" },
- { text: "Thessaloniki", value: "Thessaloniki" },
- { text: "Patras", value: "Patras" },
- { text: "Heraklion", value: "Heraklion" },
- { text: "Larissa", value: "Larissa" },
- ],
- },
- {
- text: "Singapore",
- value: "SG",
- children: [{ text: "Singapore", value: "Singapore" }],
- },
- {
- text: "New Zealand",
- value: "NZ",
- children: [
- { text: "Auckland", value: "Auckland" },
- { text: "Wellington", value: "Wellington" },
- { text: "Christchurch", value: "Christchurch" },
- { text: "Hamilton", value: "Hamilton" },
- { text: "Tauranga", value: "Tauranga" },
- ],
- },
- {
- text: "Hungary",
- value: "HU",
- children: [
- { text: "Budapest", value: "Budapest" },
- { text: "Debrecen", value: "Debrecen" },
- { text: "Szeged", value: "Szeged" },
- { text: "Miskolc", value: "Miskolc" },
- { text: "Pécs", value: "Pécs" },
- ],
- },
- {
- text: "Jamaica",
- value: "JM",
- children: [
- { text: "Kingston", value: "Kingston" },
- { text: "Montego Bay", value: "Montego Bay" },
- { text: "Mandeville", value: "Mandeville" },
- { text: "Ocho Rios", value: "Ocho Rios" },
- ],
- },
- {
- text: "Iraq",
- value: "IQ",
- children: [
- { text: "Baghdad", value: "Baghdad" },
- { text: "Mosul", value: "Mosul" },
- { text: "Basra", value: "Basra" },
- { text: "Najaf", value: "Najaf" },
- ],
- },
- {
- text: "Iran",
- value: "IR",
- children: [
- { text: "Tehran", value: "Tehran" },
- { text: "Mashhad", value: "Mashhad" },
- { text: "Isfahan", value: "Isfahan" },
- { text: "Shiraz", value: "Shiraz" },
- { text: "Kerman", value: "Kerman" },
- ],
- },
- {
- text: "Israel",
- value: "IL",
- children: [
- { text: "Tel Aviv", value: "Tel Aviv" },
- { text: "Jerusalem", value: "Jerusalem" },
- { text: "Haifa", value: "Haifa" },
- { text: "Beer Sheva", value: "Beer Sheva" },
- ],
- },
- {
- text: "Italy",
- value: "IT",
- children: [
- { text: "Rome", value: "Rome" },
- { text: "Milan", value: "Milan" },
- { text: "Naples", value: "Naples" },
- { text: "Florence", value: "Florence" },
- { text: "Venice", value: "Venice" },
- ],
- },
- {
- text: "India",
- value: "IN",
- children: [
- { text: "New Delhi", value: "New Delhi" },
- { text: "Mumbai", value: "Mumbai" },
- { text: "Bangalore", value: "Bangalore" },
- { text: "Hyderabad", value: "Hyderabad" },
- { text: "Kolkata", value: "Kolkata" },
- ],
- },
- {
- text: "Indonesia",
- value: "ID",
- children: [
- { text: "Jakarta", value: "Jakarta" },
- { text: "Bali", value: "Bali" },
- { text: "Surabaya", value: "Surabaya" },
- { text: "Bandung", value: "Bandung" },
- { text: "Medan", value: "Medan" },
- ],
- },
- {
- text: "United Kingdom",
- value: "GB",
- children: [
- { text: "London", value: "London" },
- { text: "Manchester", value: "Manchester" },
- { text: "Birmingham", value: "Birmingham" },
- { text: "Liverpool", value: "Liverpool" },
- { text: "Edinburgh", value: "Edinburgh" },
- ],
- },
- {
- text: "Jordan",
- value: "JO",
- children: [
- { text: "Amman", value: "Amman" },
- { text: "Zarqa", value: "Zarqa" },
- { text: "Irbid", value: "Irbid" },
- { text: "Ajloun", value: "Ajloun" },
- ],
- },
- {
- text: "Vietnam",
- value: "VN",
- children: [
- { text: "Hanoi", value: "Hanoi" },
- { text: "Ho Chi Minh City", value: "Ho Chi Minh City" },
- { text: "Haiphong", value: "Haiphong" },
- { text: "Da Nang", value: "Da Nang" },
- { text: "Can Tho", value: "Can Tho" },
- ],
- },
- {
- text: "Chile",
- value: "CL",
- children: [
- { text: "Santiago", value: "Santiago" },
- { text: "Valparaíso", value: "Valparaíso" },
- { text: "Viña del Mar", value: "Viña del Mar" },
- { text: "Concepción", value: "Concepción" },
- { text: "La Serena", value: "La Serena" },
- ],
- },
- {
- text: "Gibraltar",
- value: "GI",
- },
- {
- text: "Zambia",
- value: "ZM",
- children: [
- { text: "Lusaka", value: "Lusaka" },
- { text: "Copperbelt", value: "Copperbelt" },
- { text: "Kitwe", value: "Kitwe" },
- { text: "Momba", value: "Momba" },
- { text: "Chingola", value: "Chingola" },
- ],
- },
- {
- text: "Hong Kong",
- value: "HK",
- children: [{ text: "Hong Kong", value: "Hong kong" }],
- },
- {
- text: "Macao",
- value: "MO",
- children: [{ text: "Macao", value: "Macao" }],
- },
- {
- text: "Taiwan",
- value: "TW",
- children: [{ text: "Taiwan", value: "Taiwan" }],
- },
- ];
|