my.xml 207 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 9862 $"/>
  10. <generation date="$Date: 2014-03-03 17:35:05 -0600 (Mon, 03 Mar 2014) $"/>
  11. <language type="my"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0}၊{1}</localeSeparator>
  17. <localeKeyTypePattern>{0} ၊ {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="ab">အက်ခါဇူအနျ</language>
  21. <language type="af">အာဖရိကန်းစ်</language>
  22. <language type="am">အန်ဟာရစျချ</language>
  23. <language type="ang">အင်္ဂလိပ်စာဟောင်း</language>
  24. <language type="ar">အာရေဗီ</language>
  25. <language type="ar_001">အရေဗီ(ပုံမှန်)</language>
  26. <language type="as">အက္စမီစ်</language>
  27. <language type="az">အော်ဇောဘိုင်ဂျောနီ</language>
  28. <language type="ban">ဘာလီ</language>
  29. <language type="bas">ဘာဆာ</language>
  30. <language type="be">ဘီလာရု</language>
  31. <language type="bg">ဘူဂေးရီးယား</language>
  32. <language type="bn">ဘင်္ဂါလီ</language>
  33. <language type="bo">တိဘက်</language>
  34. <language type="bs">ဘော့စ်နီးယား</language>
  35. <language type="ca">ကာတာလန်</language>
  36. <language type="ce">ချေချင်း</language>
  37. <language type="chr">ချာရိုကီ</language>
  38. <language type="cr">ခရီး</language>
  39. <language type="cs">ချက်</language>
  40. <language type="cy">ဝေလ</language>
  41. <language type="da">ဒိန်းမတ်</language>
  42. <language type="dak">ဒါကိုတာ</language>
  43. <language type="de">ဂျာမန်</language>
  44. <language type="de_AT">ဩစတြီးယ ဂျာမန်</language>
  45. <language type="de_CH">ဆွစ် အမြင့် ဂျာမန်</language>
  46. <language type="del">ဒီလာဝဲ</language>
  47. <language type="dum">အလယ်ပိုင်း ဒတ်ချ်</language>
  48. <language type="dz">ဒွန်ကာ</language>
  49. <language type="egy">ရှေးဟောင်း အီဂျစ်</language>
  50. <language type="el">ဂရိ</language>
  51. <language type="en">အင်္ဂလိပ်</language>
  52. <language type="en_AU">ဩစတြေးလျှ အင်္ဂလိပ်</language>
  53. <language type="en_CA">ကနေဒါ အင်္ဂလိပ်</language>
  54. <language type="en_GB">ဗြိတိသျှ အင်္ဂလိပ်</language>
  55. <language type="en_GB" alt="short">အင်္ဂလိပ်(ယူကေ)</language>
  56. <language type="en_US">အမေရိကန် အင်္ဂလိပ်</language>
  57. <language type="en_US" alt="short">အင်္ဂလိပ်(ယူအက်စ်)</language>
  58. <language type="enm">အလယ်ပိုင်း အင်္ဂလိပ်</language>
  59. <language type="eo">အက္စပရန္တို</language>
  60. <language type="es">စပိန်</language>
  61. <language type="es_419">လက်တင်အမေရိက စပိန်</language>
  62. <language type="es_ES">စပိန်(ဥရောပ)</language>
  63. <language type="et">အက်စ်တိုးနီးရန်း</language>
  64. <language type="eu">ဘစ်က္ကီ</language>
  65. <language type="fa">ပါရှန်</language>
  66. <language type="fi">ဖင်နစ်ရှ်</language>
  67. <language type="fil">ဖိလစ်ပီနို</language>
  68. <language type="fj">ဖီဂျီ</language>
  69. <language type="fo">ဖာရိုအိစ်</language>
  70. <language type="fr">ပြင်သစ်</language>
  71. <language type="fr_CA">ကနေဒါ ပြင်သစ်</language>
  72. <language type="fr_CH">ဆွစ် ပြင်သစ်</language>
  73. <language type="frm">အလယ်ပိုင်းပြင်သစ်</language>
  74. <language type="fro">ပြင်သစ်ဟောင်း</language>
  75. <language type="frr">မြောက်ပိုင်း ဖရီစီရန်</language>
  76. <language type="frs">အရှေ့ပိုင်း ဖရီစီရန်</language>
  77. <language type="fy">အနောက်ပိုင်း ဖရီစီရန်</language>
  78. <language type="ga">အိုင်းရစ်</language>
  79. <language type="gl">ဂါလာစီယံ</language>
  80. <language type="gmh">အလယ်ပိုင်းအမြင့်ဂျာမန်</language>
  81. <language type="gn">ဂူအာရာနီ</language>
  82. <language type="grc">ရှေးဟောင်း ဂရိ</language>
  83. <language type="gsw">ဆွစ် ဂျာမန်</language>
  84. <language type="gu">ဂူဂျာရသီ</language>
  85. <language type="ha">ဟာဥစာ</language>
  86. <language type="haw">ဟာဝေယံ</language>
  87. <language type="he">ဟီးဘရူး</language>
  88. <language type="hi">ဟိန္ဒီ</language>
  89. <language type="hr">ခရိုအေရှန်</language>
  90. <language type="ht">ဟာအီတီအန်</language>
  91. <language type="hu">ဟန်ဂေရီ</language>
  92. <language type="hy">အာမေနီအန်</language>
  93. <language type="id">အင်ဒိုနီးရှား</language>
  94. <language type="ig">အစ္ဂဘို</language>
  95. <language type="ii">စီချွမ် ရီ</language>
  96. <language type="is">အိုင်စ်လန္ဒီ</language>
  97. <language type="it">အီတလီ</language>
  98. <language type="ja">ဂျပန်</language>
  99. <language type="jpr">ဂျူဒီယို-ပါရှန်</language>
  100. <language type="jrb">ဂျူဒီယို-အာရေဗျ</language>
  101. <language type="jv">ဂျာဗားနီးစ်</language>
  102. <language type="ka">ဂျော်ဂျီယန်</language>
  103. <language type="kac">ကချင်</language>
  104. <language type="kg">ကွန်ဂို</language>
  105. <language type="kha">ခါစီ</language>
  106. <language type="kk">ခါဇါခ်</language>
  107. <language type="km">ခမာ</language>
  108. <language type="kn">ကန္နာဒါ</language>
  109. <language type="ko">ကိုးရီးယား</language>
  110. <language type="ks">ကက်ရှ်မီရီ</language>
  111. <language type="ku">ကဒ်</language>
  112. <language type="ky">ခရူဂစ်</language>
  113. <language type="la">လက်တင်</language>
  114. <language type="lb">လူဇင်ဘတ်က်</language>
  115. <language type="lo">လာအို</language>
  116. <language type="lt">လစ္သူအာနီယံ</language>
  117. <language type="lv">လက္ဘီအံ</language>
  118. <language type="mg">အာလာဂါစီ</language>
  119. <language type="mga">အလယ်ပိုင်း အိုင်းရစ်</language>
  120. <language type="mi" draft="contributed">မောင်းရီ (နယူးဇီလန်ကျွန်းရှိ ပင်ရင်းတိုင်းရင်းသားလူမျိုး)</language>
  121. <language type="mk">မာစီဒိုနီယံ</language>
  122. <language type="ml">မလေးရာလမ်</language>
  123. <language type="mn">မွန်ဂိုလီးယန်း</language>
  124. <language type="mnc">မန်ချူး</language>
  125. <language type="mni" draft="unconfirmed">မနိပူရီ</language>
  126. <language type="mr">မာရသီ</language>
  127. <language type="ms">မလေး</language>
  128. <language type="mt">မောလ္တီစ်</language>
  129. <language type="mul">အကြိမ်များစွာ ဘာသာစကားများ</language>
  130. <language type="my">ဗမာ</language>
  131. <language type="nb">ဘွတ်မော်လ်</language>
  132. <language type="nds">အနိမ့် ဂျာမန်</language>
  133. <language type="ne">နီပါလီ</language>
  134. <language type="nl">ဒတ်ချ်</language>
  135. <language type="nl_BE">ဖလီမစ်ရှ်</language>
  136. <language type="nn">နော်ဝေး နီးနော်စ်ခ်</language>
  137. <language type="no">နော်ဝေး</language>
  138. <language type="or">အိုရီရာ</language>
  139. <language type="pa">ပန်ချာပီ</language>
  140. <language type="peo">ပါရှန် အဟောင်း</language>
  141. <language type="pi">ပါဠိ</language>
  142. <language type="pl">ပိုလန်</language>
  143. <language type="ps">ပါရှ်တို</language>
  144. <language type="pt">ပေါ်တူဂီ</language>
  145. <language type="pt_BR">ဘရာဇီး ပေါ်တူဂီ</language>
  146. <language type="qu">ခက်ချ်ဝါ</language>
  147. <language type="rm">ရောမ</language>
  148. <language type="ro">ရိုမေနီယား</language>
  149. <language type="root">မူလရင်းမြစ်</language>
  150. <language type="ru">ရုရှ</language>
  151. <language type="sa">သင်္သကရိုက်</language>
  152. <language type="sco">စကော့</language>
  153. <language type="sd">စင်ဒီ</language>
  154. <language type="sga">အိုင်းရစ် ဟောင်း</language>
  155. <language type="shn">ရှမ်း</language>
  156. <language type="si">ဆင်ဟာလ</language>
  157. <language type="sk">စလိုဗက်</language>
  158. <language type="sl">စလိုဗေးနီးယမ်း</language>
  159. <language type="sma">တောင်ပိုင်း ဆာမိ</language>
  160. <language type="so">ဆိုမာလီ</language>
  161. <language type="sq">အယ်လ်ဘေးနီးယန်း</language>
  162. <language type="sr">ဆားဗီးယန်း</language>
  163. <language type="su">ဆူဒန်</language>
  164. <language type="sv">ဆွီဒင်</language>
  165. <language type="sw">ဆြာဟီလီ</language>
  166. <language type="ta">တမီးလ်</language>
  167. <language type="te">တီလီဂု</language>
  168. <language type="tg">တာဂွီခ်</language>
  169. <language type="th">ထိုင်း</language>
  170. <language type="ti">တီဂ်ရင်ရာ</language>
  171. <language type="tk">တခ္မင်</language>
  172. <language type="to">တွန်ဂါ</language>
  173. <language type="tr">တာကစ်</language>
  174. <language type="tt">တတာ</language>
  175. <language type="ug">ဝီဂါ</language>
  176. <language type="uk">ယူကရိန်း</language>
  177. <language type="und">မသိ သို့မဟုတ် မရှိ သော ဘာသာစကား</language>
  178. <language type="ur">အော်ဒူ</language>
  179. <language type="uz">ဦးဇ်ဘက်</language>
  180. <language type="vi">ဗီယက်နမ်</language>
  181. <language type="wo">ဝူလိုဖ်</language>
  182. <language type="xh">ဇိုစာ</language>
  183. <language type="yo">ရိုရုဘာ</language>
  184. <language type="zgh">မိုရိုကန် တွမ်မဇိုတ် စံ</language>
  185. <language type="zh">တရုတ်</language>
  186. <language type="zh_Hans">ရိုးရှင်းသော တရုတ်</language>
  187. <language type="zh_Hant">ရှေးရိုးစဉ်လာ တရုတ်</language>
  188. <language type="zu">ဇူလူ</language>
  189. <language type="zxx">ဘာသာစကား နှင့် ပတ်သက် သောအရာမရှိ</language>
  190. </languages>
  191. <scripts>
  192. <script type="Arab">အာရေဗျ</script>
  193. <script type="Armn">အာမေးနီးယား</script>
  194. <script type="Beng">ဘင်္ဂါလီ</script>
  195. <script type="Bopo">ဘိုပို</script>
  196. <script type="Brah">ဗြဟ္မမီ</script>
  197. <script type="Brai">ဘရေ</script>
  198. <script type="Cyrl">စစ်ရိလစ်</script>
  199. <script type="Deva">ဒီဗနာဂရီ</script>
  200. <script type="Ethi">အီသီယိုးပီးယား</script>
  201. <script type="Geor">ဂျော်ဂျီယန်</script>
  202. <script type="Grek">ဂရိ</script>
  203. <script type="Gujr">ဂုဂျာရသီ</script>
  204. <script type="Guru">ဂူရူ</script>
  205. <script type="Hang">ဟန်ဂူးလ်</script>
  206. <script type="Hani">ဟန်</script>
  207. <script type="Hans">ရိုးရှင်းသော တရုတ်</script>
  208. <script type="Hans" alt="stand-alone">ရိုးရှင်းသော ဟန်</script>
  209. <script type="Hant">ရှေးရိုးစဉ်လာ တရုတ်</script>
  210. <script type="Hant" alt="stand-alone">ရှေးရိုးစဉ်လာဟန်</script>
  211. <script type="Hebr">ဟီဗရူး</script>
  212. <script type="Hira">ဟိရဂဏ</script>
  213. <script type="Hrkt">ခတခဏ သို့မဟုတ် ဟိရဂဏ</script>
  214. <script type="Java">ဂျာဗားနီးစ်</script>
  215. <script type="Jpan">ဂျပန်</script>
  216. <script type="Kali">ကယားလီ</script>
  217. <script type="Kana">ခတခဏ</script>
  218. <script type="Khmr">ခမာ</script>
  219. <script type="Knda">ခန္နာဒါ</script>
  220. <script type="Kore">ကိုးရီးယား</script>
  221. <script type="Laoo">လာအို</script>
  222. <script type="Latn">လက်တင်</script>
  223. <script type="Mlym">မာလာရာလန်</script>
  224. <script type="Mong">မွန်ဂိုလီးယား</script>
  225. <script type="Mymr">မြန်မာ</script>
  226. <script type="Orya">အိုရာ</script>
  227. <script type="Sinh">ဆင်ဟာလ</script>
  228. <script type="Sund">ဆူဒန်</script>
  229. <script type="Tale">တိုင်လီ</script>
  230. <script type="Taml">တမီးလ်</script>
  231. <script type="Telu">တီလု</script>
  232. <script type="Tglg">တဂလော့ဂ်</script>
  233. <script type="Thaa">သာအ်</script>
  234. <script type="Thai">ထိုင်း</script>
  235. <script type="Tibt">တိဘက်</script>
  236. <script type="Visp">မြင်နိုင်သော စကား</script>
  237. <script type="Xpeo">ပါရှန် အဟောင်း</script>
  238. <script type="Yiii">ရီ</script>
  239. <script type="Zsym">သင်္ကေတ</script>
  240. <script type="Zxxx">မရေးထားသော</script>
  241. <script type="Zyyy">အများနှင့်သက်ဆိုင်သော</script>
  242. <script type="Zzzz">မသိ သို့မဟုတ် မရှိသော စကားလုံး</script>
  243. </scripts>
  244. <territories>
  245. <territory type="001">ကမ္ဘာ</territory>
  246. <territory type="002">အာဖရိက</territory>
  247. <territory type="003">မြောက် အမေရိက</territory>
  248. <territory type="005">တောင် အမေရိက</territory>
  249. <territory type="009">သမုဒ္ဒရာဒေသ</territory>
  250. <territory type="011">အနောက် အာဖရိက</territory>
  251. <territory type="013">အလယ်ပိုင်း အမေရိက</territory>
  252. <territory type="014">အရှေ့ပိုင်း အာဖရိက</territory>
  253. <territory type="015">မြောက်ပိုင်း အာဖရိက</territory>
  254. <territory type="017">အလယ်ပိုင်း အာဖရိက</territory>
  255. <territory type="018">တောင်ပိုင်း အာဖရိက</territory>
  256. <territory type="019">အမေရိကများ</territory>
  257. <territory type="021">မြောက်ပိုင်း အမေရိက</territory>
  258. <territory type="029">ကာရီဘီယံ</territory>
  259. <territory type="030">အရှေ့ပိုင်း အာရှ</territory>
  260. <territory type="034">တောင်ပိုင်း အာရှ</territory>
  261. <territory type="035">အရှေ့တောင်ပိုင်းအာရှ</territory>
  262. <territory type="039">တောင်ပိုင်း ဥရောပ</territory>
  263. <territory type="053">ဩစတြေးလျနှင့် နယူးဇီလန်</territory>
  264. <territory type="054">မီလာနီးရှား</territory>
  265. <territory type="057">မိုင်ခရိုနီရှားနယ်</territory>
  266. <territory type="061">ပိုလီနီရှား</territory>
  267. <territory type="142">အာရှ</territory>
  268. <territory type="143">အလယ် အာရှ</territory>
  269. <territory type="145">အနောက် အာရှ</territory>
  270. <territory type="150">ဥရောပ</territory>
  271. <territory type="151">အရှေ့ပိုင်း ဥရောပ</territory>
  272. <territory type="154">မြောက်ပိုင်း ဥရောပ</territory>
  273. <territory type="155">အနောက်ပိုင်း ဥရောပ</territory>
  274. <territory type="419">လက်တင်အမေရိက</territory>
  275. <territory type="AC">အက်စ်စင်ရှီအွန်ကျွန်း</territory>
  276. <territory type="AD">အန်ဒိုရာ</territory>
  277. <territory type="AE">ယူအေအီး</territory>
  278. <territory type="AF">အာဖဂန်နစ္စတန်</territory>
  279. <territory type="AG">အန်တီဂုအာနှင့်ဘာဘုဒါ</territory>
  280. <territory type="AI">အန်ဂွီလာ</territory>
  281. <territory type="AL">အဲလ်ဘာနီအာ</territory>
  282. <territory type="AM">အာမေနီးယား</territory>
  283. <territory type="AO">အင်ဂိုလာ</territory>
  284. <territory type="AQ">အန္တာတိက</territory>
  285. <territory type="AR">အာဂျင်တီးနား</territory>
  286. <territory type="AS">အမေရိကန် စမိုအ</territory>
  287. <territory type="AT">ဩစတြီးယား</territory>
  288. <territory type="AU">ဩစတြေးလျ</territory>
  289. <territory type="AW">အာရုဘာ</territory>
  290. <territory type="AX">အာလန်ကျွန်း</territory>
  291. <territory type="AZ">အဇာဘိုင်ဂျန်</territory>
  292. <territory type="BA">ဘော့စနီးယား နှင့် ဟာဇီဂိုဘီးနား</territory>
  293. <territory type="BB">ဘာဘဒိုးစ်</territory>
  294. <territory type="BD">ဘင်္ဂလားဒေ့ရှ်</territory>
  295. <territory type="BE">ဘယ်လ်ဂျီယမ်</territory>
  296. <territory type="BF">ဘာကီနာ ဖာဆို</territory>
  297. <territory type="BG">ဘူဂေးရီးယား</territory>
  298. <territory type="BH">ဘာရိန်း</territory>
  299. <territory type="BI">ဘူရွန်ဒီ</territory>
  300. <territory type="BJ">ဘီနင်</territory>
  301. <territory type="BL">စိန့်ဘာသီလီမိုင်</territory>
  302. <territory type="BM">ဘာမူဒါ</territory>
  303. <territory type="BN">ဘရူနိုင်း</territory>
  304. <territory type="BO">ဘိုလီးဘီးယား</territory>
  305. <territory type="BQ">ကာရီဘီယံနယ်သာလန်</territory>
  306. <territory type="BR">ဘရာဇီး</territory>
  307. <territory type="BS">ဘဟားမား</territory>
  308. <territory type="BT">ဘူတန်</territory>
  309. <territory type="BV">ဘူဗက်ကျွန်း</territory>
  310. <territory type="BW">ဘော့စ်ဝါနာ</territory>
  311. <territory type="BY">ဘီလာရုစ်</territory>
  312. <territory type="BZ">ဘေလီဇ်</territory>
  313. <territory type="CA">ကနေဒါ</territory>
  314. <territory type="CC">ကိုကိုး ကျွန်းစု</territory>
  315. <territory type="CD">ကွန်ဂို-ကင်ရှာစ</territory>
  316. <territory type="CD" alt="variant">ကွန်ဂို (DRC)</territory>
  317. <territory type="CF">အလယ်ပိုင်း အာဖရိက ပြည်ထောင်စု</territory>
  318. <territory type="CG">ကွန်ဂို-ဘရာဇာဗီလ်</territory>
  319. <territory type="CG" alt="variant">ကွန်ဂို (Republic)</territory>
  320. <territory type="CH">ဆွစ်ဇလန်</territory>
  321. <territory type="CI">အိုင်ဗရီကိုစ့်</territory>
  322. <territory type="CK">ကွတ် ကျွန်းစု</territory>
  323. <territory type="CL">ချီလီ</territory>
  324. <territory type="CM">ကင်မရွန်း</territory>
  325. <territory type="CN">တရုတ်</territory>
  326. <territory type="CO">ကိုလံဘီယာ</territory>
  327. <territory type="CP">ကလစ်ပါတန်ကျွန်း</territory>
  328. <territory type="CR">ကော့စ်တာရီကာ</territory>
  329. <territory type="CU">ကျူးဘား</territory>
  330. <territory type="CV">ခေ့ပ်ဗာဒူ</territory>
  331. <territory type="CW">ခူရာကာအို</territory>
  332. <territory type="CX">ခရစ်စမတ် ကျွန်း</territory>
  333. <territory type="CY">ဆိုက်ပရက်စ်</territory>
  334. <territory type="CZ">ချက် ပြည်ထောင်စု</territory>
  335. <territory type="DE">ဂျာမဏီ</territory>
  336. <territory type="DG">ဒီအေဂိုဂရာစီအာ</territory>
  337. <territory type="DJ">ဂျီဘူတီ</territory>
  338. <territory type="DK">ဒိန်းမတ်</territory>
  339. <territory type="DM">ဒိုမီနီကာ</territory>
  340. <territory type="DO">ဒိုမီနီကန်</territory>
  341. <territory type="DZ">အယ်လ်ဂျီးရီးယား</territory>
  342. <territory type="EA">ဆယ်ဥတာနှင့်မယ်လီလ်လာ</territory>
  343. <territory type="EC">အီကွေဒေါ</territory>
  344. <territory type="EE">အက်စတိုးနီးယား</territory>
  345. <territory type="EG">အီဂျစ်</territory>
  346. <territory type="EH">အနောက်ပိုင်း ဆာဟာရ</territory>
  347. <territory type="ER">အီရီတရီအာ</territory>
  348. <territory type="ES">စပိန်</territory>
  349. <territory type="ET">အီသီယိုးပီးယား</territory>
  350. <territory type="EU">ဥရောပသမဂ္ဂ</territory>
  351. <territory type="FI">ဖင်လန်</territory>
  352. <territory type="FJ">ဖီဂျီ</territory>
  353. <territory type="FK">ဖောက်ကလန် ကျွန်းစု</territory>
  354. <territory type="FK" alt="variant">ဖော့ခ်လန်ကျွန်းစု(အီလားစ် မောလ်ဗီနာစ်)</territory>
  355. <territory type="FM">မိုင်ခရိုနီရှား</territory>
  356. <territory type="FO">ဖာရိုး ကျွန်းစုများ</territory>
  357. <territory type="FR">ပြင်သစ်</territory>
  358. <territory type="GA">ဂါဘွန်</territory>
  359. <territory type="GB">ယူနိုက်တက်ကင်းဒမ်း</territory>
  360. <territory type="GB" alt="short">ယူကေ</territory>
  361. <territory type="GD">ဂရီနာဒါ</territory>
  362. <territory type="GE">ဂျော်ဂျီယာ</territory>
  363. <territory type="GF">ပြင်သစ် ဂီယာနာ</territory>
  364. <territory type="GG">ဂွန်းဇီ</territory>
  365. <territory type="GH">ဂါနာ</territory>
  366. <territory type="GI">ဂျီဘရော်လ်တာ</territory>
  367. <territory type="GL">ဂရင်းလန်း</territory>
  368. <territory type="GM">ဂန်ဘီရာ</territory>
  369. <territory type="GN">ဂီးနီ</territory>
  370. <territory type="GP">ဂူအာဒီလုပ်</territory>
  371. <territory type="GQ">အီကွေတာ ဂီရာနာ</territory>
  372. <territory type="GR">ဂရိ</territory>
  373. <territory type="GS">တောင် ဂျော်ဂျီယာ နှင့် တောင် ဆင်းဒဝစ်ဂျ် ကျွန်းစုများ</territory>
  374. <territory type="GT">ဂွာတီမာလာ</territory>
  375. <territory type="GU">ဂူအမ်</territory>
  376. <territory type="GW">ဂီရာနာ-ဘီစ်စာဥ</territory>
  377. <territory type="GY">ဂူရာနာ</territory>
  378. <territory type="HK">တရုတ်၏ အထူးအုပ်ချုပ်ခွင့်ရ ဟောင်ကောင်</territory>
  379. <territory type="HK" alt="short">ဟောင်ကောင်</territory>
  380. <territory type="HM">ဟတ်ကျွန်းနှင့်မက်ဒေါနယ်ကျွန်းစု</territory>
  381. <territory type="HN">ဟွန်ဒူးရပ်စ်</territory>
  382. <territory type="HR">ခရိုအေးရှား</territory>
  383. <territory type="HT">ဟေတီ</territory>
  384. <territory type="HU">ဟန်ဂေရီ</territory>
  385. <territory type="IC">ကာနာရီကျွန်းစု</territory>
  386. <territory type="ID">အင်ဒိုနီးရှား</territory>
  387. <territory type="IE">အိုင်ယာလန်</territory>
  388. <territory type="IL">အစ္စရေး</territory>
  389. <territory type="IM">မန်ကျွန်း</territory>
  390. <territory type="IN">အိန္ဒိယ</territory>
  391. <territory type="IO">ဗြိတိသျှ အိန္ဒြိယ သမုဒ္ဒရာ ပိုင်နက်</territory>
  392. <territory type="IQ">အီရတ်</territory>
  393. <territory type="IR">အီရန်</territory>
  394. <territory type="IS">အိုက်စလန်</territory>
  395. <territory type="IT">အီတလီ</territory>
  396. <territory type="JE">ဂျာစီ</territory>
  397. <territory type="JM">ဂျမေကာ</territory>
  398. <territory type="JO">ဂျော်ဒန်</territory>
  399. <territory type="JP">ဂျပန်</territory>
  400. <territory type="KE">ကင်ညာ</territory>
  401. <territory type="KG">ခရူဂစ်စတန်</territory>
  402. <territory type="KH">ကမ္ဘောဒီးယား</territory>
  403. <territory type="KI">ခီရီဘာတီ</territory>
  404. <territory type="KM">ကိုမိုရိုစ်</territory>
  405. <territory type="KN">စိန့်ကစ်နှင့်နီဗီစ်</territory>
  406. <territory type="KP">မြောက်ကိုရီးယား</territory>
  407. <territory type="KR">တောင်ကိုရီးယား</territory>
  408. <territory type="KW">ကူဝိတ်</territory>
  409. <territory type="KY">ကေမန် ကျွန်းစု</territory>
  410. <territory type="KZ">ကာဇက်စတန်</territory>
  411. <territory type="LA">လာအို</territory>
  412. <territory type="LB">လက်ဘနွန်</territory>
  413. <territory type="LC">စိန့်လူစီအာ</territory>
  414. <territory type="LI">လစ်ခ်ထင်စတိုင်</territory>
  415. <territory type="LK">သီရိလင်္ကာ</territory>
  416. <territory type="LR">လိုင်ဘေးရီးယား</territory>
  417. <territory type="LS">လီဆိုသို</territory>
  418. <territory type="LT">လစ်သူယေးနီးယား</territory>
  419. <territory type="LU">လူဇင်ဘတ်</territory>
  420. <territory type="LV">လတ်ဗီးယား</territory>
  421. <territory type="LY">လီဗရာ</territory>
  422. <territory type="MA">မော်ရိုကို</territory>
  423. <territory type="MC">မိုနာကို</territory>
  424. <territory type="MD">မောလ်ဒိုဗာ</territory>
  425. <territory type="ME">မွန်တီနိဂရိုး</territory>
  426. <territory type="MF">စိန့်မာတင်</territory>
  427. <territory type="MG">မာဒါဂတ်စကာ</territory>
  428. <territory type="MH">မာရှယ် ကျွန်းစု</territory>
  429. <territory type="MK">မာစီဒိုးနီးယား</territory>
  430. <territory type="MK" alt="variant">မာစီဒိုနီအာ</territory>
  431. <territory type="ML">မာလီ</territory>
  432. <territory type="MM">မြန်မာ</territory>
  433. <territory type="MN">မွန်ဂိုးလီးယား</territory>
  434. <territory type="MO">တရုတ်၏ အထူးအုပ်ချုပ်ခွင့်ရ မကာအို</territory>
  435. <territory type="MO" alt="short">မကာအို</territory>
  436. <territory type="MP">တောင်ပိုင်းမာရီအာနာကျွန်းစု</territory>
  437. <territory type="MQ">မာတီနီကီ</territory>
  438. <territory type="MR">မောရီတာနီအာ</territory>
  439. <territory type="MS">မောင့်စဲရက်</territory>
  440. <territory type="MT">မောလ်တာ</territory>
  441. <territory type="MU">မော်ရေရှားစ်</territory>
  442. <territory type="MV">မော်လ်ဒိုက်</territory>
  443. <territory type="MW">မာလာဝီ</territory>
  444. <territory type="MX">မက္ကဆီကို</territory>
  445. <territory type="MY">မလေးရှား</territory>
  446. <territory type="MZ">မိုဇန်ဘစ်</territory>
  447. <territory type="NA">နမ်မီးဘီးယား</territory>
  448. <territory type="NC">နယူး ကယ်လီဒိုနီးယား</territory>
  449. <territory type="NE">နိုင်ဂျာ</territory>
  450. <territory type="NF">နောဖော့ခ်ကျွန်း</territory>
  451. <territory type="NG">နိုင်ဂျီးရီးယား</territory>
  452. <territory type="NI">နီကာရာဂွာ</territory>
  453. <territory type="NL">နယ်သာလန်</territory>
  454. <territory type="NO">နော်ဝေ</territory>
  455. <territory type="NP">နီပေါ</territory>
  456. <territory type="NR">နာဥူရူ</territory>
  457. <territory type="NU">နီဥူအေ</territory>
  458. <territory type="NZ">နယူးဇီလန်</territory>
  459. <territory type="OM">အိုမန်</territory>
  460. <territory type="PA">ပနားမား</territory>
  461. <territory type="PE">ပီရူး</territory>
  462. <territory type="PF">ပြင်သစ် ပေါ်လီနေးရှား</territory>
  463. <territory type="PG">ပါပူရာနယူးဂီနီ</territory>
  464. <territory type="PH">ဖိလစ်ပိုင်</territory>
  465. <territory type="PK">ပါကစ္စတန်</territory>
  466. <territory type="PL">ပိုလန်</territory>
  467. <territory type="PM">စိန့်ပီအဲရီနှင့်မီကွီလွန်</territory>
  468. <territory type="PN">ပစ်တ်ကိန်းကျွန်းစု</territory>
  469. <territory type="PR">ပေါ်တူရီကို</territory>
  470. <territory type="PS">ပါလက်စတိုင်း ပိုင်နက်</territory>
  471. <territory type="PS" alt="short">ပါလက်စတိုင်း</territory>
  472. <territory type="PT">ပေါ်တူဂီ</territory>
  473. <territory type="PW">ပလောင်</territory>
  474. <territory type="PY">ပါရာဂွေး</territory>
  475. <territory type="QA">ကာတာ</territory>
  476. <territory type="QO">သမုဒ္ဒရာဒေသအပြင်ထွက်နေသောဒေသများ</territory>
  477. <territory type="RE">ရဲအူနီရွန်</territory>
  478. <territory type="RO">ရိုမေးနီးယား</territory>
  479. <territory type="RS">ဆားဘီးယား</territory>
  480. <territory type="RU">ရုရှ</territory>
  481. <territory type="RW">ရဝန်ဒါ</territory>
  482. <territory type="SA">ဆော်ဒီအာရေးဗီးယား</territory>
  483. <territory type="SB">ဆော်လမွန်ကျွန်းစု</territory>
  484. <territory type="SC">ဆေးရှလ်</territory>
  485. <territory type="SD">ဆူဒန်</territory>
  486. <territory type="SE">ဆွီဒင်</territory>
  487. <territory type="SG">စင်္ကာပူ</territory>
  488. <territory type="SH">စိန့်ဟဲလီနာ</territory>
  489. <territory type="SI">စလိုဗေးနီးယား</territory>
  490. <territory type="SJ">စဗိုလ်ဘတ်နှင့်ဂျန်မေရန်</territory>
  491. <territory type="SK">စလိုဗေးကီးယား</territory>
  492. <territory type="SL">ဆီအဲရာ လီအိုနီ</territory>
  493. <territory type="SM">ဆော့န်မာရီနို</territory>
  494. <territory type="SN">ဆီနီဂေါ</territory>
  495. <territory type="SO">ဆိုမာလီယာ</territory>
  496. <territory type="SR">ဆူရီနိမ်း</territory>
  497. <territory type="SS">မြောက်ဆူဒန်</territory>
  498. <territory type="ST">စိန့်တိုမီနှင့်ပရင်စီပ့်</territory>
  499. <territory type="SV">အယ်လ်ဆာဗေးဒိုး</territory>
  500. <territory type="SX">ဆင့်မာအာတင်</territory>
  501. <territory type="SY">ဆီးရီးယား</territory>
  502. <territory type="SZ">စွာဇီလန်</territory>
  503. <territory type="TA">ထရစ်တန်ဒါကွန်ဟာ</territory>
  504. <territory type="TC">တခ်စ်နှင့်ကာအီကိုစ်ကျွန်းစု</territory>
  505. <territory type="TD">ချဒ်</territory>
  506. <territory type="TF">ပြင်သစ် တောင်ပိုင်း ပိုင်နက်များ</territory>
  507. <territory type="TG">တိုဂို</territory>
  508. <territory type="TH">ထိုင်း</territory>
  509. <territory type="TJ">တာဂျီကစ္စတန်</territory>
  510. <territory type="TK">ထိုးခါလူ</territory>
  511. <territory type="TL">အရှေ့တီမော</territory>
  512. <territory type="TM">တာခ်မီန့စ်တန်</territory>
  513. <territory type="TN">တူနီးရှား</territory>
  514. <territory type="TO">တွန်ဂါ</territory>
  515. <territory type="TR">တူရကီ</territory>
  516. <territory type="TT">ထရိုင်နီဒတ်နှင့်တိုဘာဂို</territory>
  517. <territory type="TV">ထူးဗလူ</territory>
  518. <territory type="TW">ထိုင်ဝမ်</territory>
  519. <territory type="TZ">တန်ဇန်းနီးယား</territory>
  520. <territory type="UA">ယူကရိန်း</territory>
  521. <territory type="UG">ယူဂန္ဓာ</territory>
  522. <territory type="UM">ယူနိုက်တက်စတိတ် အပြင်ထွက် နေသည့် သေးငယ်သောကျွန်းများ</territory>
  523. <territory type="US">ယူနိုက်တက်စတိတ်</territory>
  524. <territory type="US" alt="short">ယူအက်စ်</territory>
  525. <territory type="UY">ဥရုဂွေး</territory>
  526. <territory type="UZ">ဥဘက်ကစ္စတန်</territory>
  527. <territory type="VA">ဗာတီကန်စီတီး</territory>
  528. <territory type="VC">စိန့်ဗင့်ဆင့်နှင့် သည်ဂရဲနာဒင်းစ်</territory>
  529. <territory type="VE">ဗင်နီဇွဲလား</territory>
  530. <territory type="VG">ဗြိတိသျှ ဗာဂျင်း ကျွန်းစု</territory>
  531. <territory type="VI">ယူအက်စ် ဗာဂျင်း ကျွန်းစု</territory>
  532. <territory type="VN">ဗီယက်နမ်</territory>
  533. <territory type="VU">ဗာနုအာတူ</territory>
  534. <territory type="WF">ဝေါလစ်နှင့်ဖူထူးနား</territory>
  535. <territory type="WS">ဆာမိုအာ</territory>
  536. <territory type="XK">ကိုဆိုဗို</territory>
  537. <territory type="YE">ယီမင်</territory>
  538. <territory type="YT">မေအိုတီ</territory>
  539. <territory type="ZA">တောင်အာဖရိက</territory>
  540. <territory type="ZM">ဇမ်ဘီယာ</territory>
  541. <territory type="ZW">ဇင်ဘာဘွေ</territory>
  542. <territory type="ZZ">မသိ သို့မဟုတ် မရှိ သော နေရာ</territory>
  543. </territories>
  544. <variants>
  545. <variant type="1901">ရှေးရိုးစဉ်လာ ဂျာမန် ရေးထုံး</variant>
  546. <variant type="1996">၁၉၉၆ ဂျာမန် ရေးထုံး</variant>
  547. <variant type="1606NICT">အလယ်ပိုင်းနောက်ကျသောပြင်သစ်မှ ၁၆၀၆</variant>
  548. <variant type="1694ACAD">၁၆၉၄ACAD</variant>
  549. <variant type="AREVELA">အရှေ့ပိုင်းအာမေးနီးယန်း</variant>
  550. <variant type="BAKU1926">ပေါင်းစပ်ထားသော တူရကီ လက်တင်စကားလုံး</variant>
  551. <variant type="FONIPA">IPA အသံထွက်</variant>
  552. <variant type="FONUPA">UPA အသံထွက်</variant>
  553. <variant type="POSIX">ကွန်ပျူတာ</variant>
  554. <variant type="REVISED">ပြန်လည်စီစစ်ထားသော ရေးထုံး</variant>
  555. <variant type="SCOTLAND">စကော့ စံ အင်္ဂလိပ်</variant>
  556. </variants>
  557. <keys>
  558. <key type="calendar">ပြက္ခဒိန်</key>
  559. <key type="collation">စနစ်တကျစီသော</key>
  560. <key type="currency">ငွေကြေး</key>
  561. <key type="numbers">ဂဏန်းနံပါတ်</key>
  562. </keys>
  563. <types>
  564. <type type="arab" key="numbers">အာရပ်ဂဏန်းခြေ</type>
  565. <type type="arabext" key="numbers">တိုးချဲ့အာရပ်ဂဏန်းခြေ</type>
  566. <type type="armn" key="numbers">အာမေနီယန်ဂဏန်းခြေ</type>
  567. <type type="armnlow" key="numbers">အာမေနီယန်ဂဏန်းခြေအသေး</type>
  568. <type type="beng" key="numbers">ဘန်ဂါလီဂဏန်းခြေ</type>
  569. <type type="buddhist" key="calendar">ဗုဒ္ဓ ပြက္ခဒိန်</type>
  570. <type type="chinese" key="calendar">တရုတ် ပြက္ခဒိန်</type>
  571. <type type="deva" key="numbers">ဒီပါနာဂါရီဂဏန်းခြေ</type>
  572. <type type="ducet" key="collation">ယူနီကုတ်အစဉ်လိုက်စီထားသော</type>
  573. <type type="ethi" key="numbers">အီသီအိုပီးယားဂဏန်းခြေ</type>
  574. <type type="fullwide" key="numbers">အနံအပြည့်နှင့်ဂဏန်းခြေ</type>
  575. <type type="geor" key="numbers">နိုင်ငံတကာသုံးဂဏန်းခြေ</type>
  576. <type type="gregorian" key="calendar">နိုင်ငံတကာသုံး ပြက္ခဒိန်</type>
  577. <type type="grek" key="numbers">ဂရိဂဏန်းခြေ</type>
  578. <type type="greklow" key="numbers">ဂရိဂဏန်းခြေအသေး</type>
  579. <type type="gujr" key="numbers">ဂုဂျာရာတီဂဏန်းခြေ</type>
  580. <type type="guru" key="numbers">ဂူမူခီဂဏန်းခြေ</type>
  581. <type type="hanidec" key="numbers">တရုတ်ဆယ်လီစနစ်ဂဏန်းခြေ</type>
  582. <type type="hans" key="numbers">ရိုးရှင်းသောတရုတ်ဂဏန်းခြေ</type>
  583. <type type="hansfin" key="numbers">ရိုးရှင်းသောတရုတ်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ</type>
  584. <type type="hant" key="numbers">ရိုးရာတရုတ်ဂဏန်းခြေ</type>
  585. <type type="hantfin" key="numbers">ရိုးရာတရုတ်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ</type>
  586. <type type="hebr" key="numbers">ဟေဗြဲဂဏန်းခြေ</type>
  587. <type type="hebrew" key="calendar">ဟီဗရူး ပြက္ခဒိန်</type>
  588. <type type="indian" key="calendar">အိန္ဒြိယ အမျိုးသား ပြက္ခဒိန်</type>
  589. <type type="islamic" key="calendar">အစ္စလာမ် ပြက္ခဒိန်</type>
  590. <type type="japanese" key="calendar">ဂျပန် ပြက္ခဒိန်</type>
  591. <type type="jpan" key="numbers">ဂျပန်ဂဏန်းခြေ</type>
  592. <type type="jpanfin" key="numbers">ဂျပန်ဘဏ္ဏာရေးသုံးဂဏန်းခြေ</type>
  593. <type type="khmr" key="numbers">ခမာဂဏန်းခြေ</type>
  594. <type type="knda" key="numbers">ခန္နဒါဂဏန်းခြေ</type>
  595. <type type="laoo" key="numbers">လာအိုဂဏန်းခြေ</type>
  596. <type type="latn" key="numbers">အနောက်တိုင်းဂဏန်းခြေ</type>
  597. <type type="mlym" key="numbers">မလာရာလမ်ဂဏန်းခြေ</type>
  598. <type type="mymr" key="numbers">မြန်မာဂဏန်းခြေ</type>
  599. <type type="mymrshan" key="numbers">ရှမ်းဂဏန်းခြေ</type>
  600. <type type="orya" key="numbers">ဩရီရာဂဏန်းခြေ</type>
  601. <type type="phonebook" key="collation">ဖုန်းစာအုပ် အစီအစဉ်</type>
  602. <type type="roman" key="numbers">ရောမဂဏန်းခြေ</type>
  603. <type type="romanlow" key="numbers">ရောမဂဏန်းခြေအသေး</type>
  604. <type type="search" key="collation">ယေဘုယျရှာခြင်း</type>
  605. <type type="standard" key="collation">ပုံမှန်စီသော</type>
  606. <type type="taml" key="numbers">ရိုးရာတမီးလ်ဂဏန်းခြေ</type>
  607. <type type="tamldec" key="numbers">တမီးလ်ဂဏန်းခြေ</type>
  608. <type type="telu" key="numbers">တီရီဂုဂဏန်းခြေ</type>
  609. <type type="thai" key="numbers">ထိုင်းဂဏန်းခြေ</type>
  610. <type type="tibt" key="numbers">တိဘက်ဂဏန်းခြေ</type>
  611. </types>
  612. <measurementSystemNames>
  613. <measurementSystemName type="metric">မက်ထရစ်စနစ်</measurementSystemName>
  614. <measurementSystemName type="UK">ဗြိတိန်စနစ်</measurementSystemName>
  615. <measurementSystemName type="US">အမေရိကန်စနစ်</measurementSystemName>
  616. </measurementSystemNames>
  617. <codePatterns>
  618. <codePattern type="language">ဘာသာစကား - {0}</codePattern>
  619. <codePattern type="script">စာ - {0}</codePattern>
  620. <codePattern type="territory">နယ်ပယ်ဒေသ - {0}</codePattern>
  621. </codePatterns>
  622. </localeDisplayNames>
  623. <characters>
  624. <exemplarCharacters>[\u1036 း \u1037 က ခ ဂ ဃ င စ ဆ ဇ ဈ ဉ ည ဋ ဌ ဍ ဎ ဏ တ ထ ဒ ဓ န ပ ဖ ဗ ဘ မ ယ ျ ရ ြ လ ဝ \u103D သ ဿ ဟ \u103E ဠ အ ဣ ဤ ဥ ဦ ဧ ဩ ဪ ာ ါ \u102D \u102E \u102F \u1030 ေ \u1032 \u1039 \u103A]</exemplarCharacters>
  625. <exemplarCharacters type="auxiliary">[ၐ ၑ ဢ ၒ ၓ ၔ ၕ ဨ ၖ ၗ \u1058 \u1059]</exemplarCharacters>
  626. <exemplarCharacters type="index" draft="contributed">[က ခ ဂ ဃ င စ ဆ ဇ ဈ ဉ ည ဋ ဌ ဍ ဎ ဏ တ ထ ဒ ဓ န ပ ဖ ဗ ဘ မ ယ ရ လ ဝ သ ဟ ဠ အ]</exemplarCharacters>
  627. <exemplarCharacters type="punctuation">[၊ ။ ‘ ’ “ ”]</exemplarCharacters>
  628. </characters>
  629. <delimiters>
  630. <quotationStart>“</quotationStart>
  631. <quotationEnd>”</quotationEnd>
  632. <alternateQuotationStart>‘</alternateQuotationStart>
  633. <alternateQuotationEnd>’</alternateQuotationEnd>
  634. </delimiters>
  635. <dates>
  636. <calendars>
  637. <calendar type="generic">
  638. <dateFormats>
  639. <dateFormatLength type="full">
  640. <dateFormat>
  641. <pattern>EEEE, G y MMMM dd</pattern>
  642. </dateFormat>
  643. </dateFormatLength>
  644. <dateFormatLength type="long">
  645. <dateFormat>
  646. <pattern>G y MMMM d</pattern>
  647. </dateFormat>
  648. </dateFormatLength>
  649. <dateFormatLength type="medium">
  650. <dateFormat>
  651. <pattern>G y MMM d</pattern>
  652. </dateFormat>
  653. </dateFormatLength>
  654. <dateFormatLength type="short">
  655. <dateFormat>
  656. <pattern>GGGGG y/MM/dd</pattern>
  657. </dateFormat>
  658. </dateFormatLength>
  659. </dateFormats>
  660. <dateTimeFormats>
  661. <dateTimeFormatLength type="full">
  662. <dateTimeFormat>
  663. <pattern>{1} {0}တွင်</pattern>
  664. </dateTimeFormat>
  665. </dateTimeFormatLength>
  666. <dateTimeFormatLength type="long">
  667. <dateTimeFormat>
  668. <pattern>{1} {0}တွင်</pattern>
  669. </dateTimeFormat>
  670. </dateTimeFormatLength>
  671. <dateTimeFormatLength type="medium">
  672. <dateTimeFormat>
  673. <pattern>{1} {0}</pattern>
  674. </dateTimeFormat>
  675. </dateTimeFormatLength>
  676. <dateTimeFormatLength type="short">
  677. <dateTimeFormat>
  678. <pattern>{1} {0}</pattern>
  679. </dateTimeFormat>
  680. </dateTimeFormatLength>
  681. <availableFormats>
  682. <dateFormatItem id="d">d</dateFormatItem>
  683. <dateFormatItem id="Ed">E, d</dateFormatItem>
  684. <dateFormatItem id="Gy">G y</dateFormatItem>
  685. <dateFormatItem id="GyMMM">G y MMM</dateFormatItem>
  686. <dateFormatItem id="GyMMMd">G y MMM d</dateFormatItem>
  687. <dateFormatItem id="GyMMMEd">E, G y MMM d</dateFormatItem>
  688. <dateFormatItem id="H">HH</dateFormatItem>
  689. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  690. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  691. <dateFormatItem id="M">L</dateFormatItem>
  692. <dateFormatItem id="Md">M/d</dateFormatItem>
  693. <dateFormatItem id="MEd">E, M/d</dateFormatItem>
  694. <dateFormatItem id="MMM">LLL</dateFormatItem>
  695. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  696. <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
  697. <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
  698. <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
  699. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  700. <dateFormatItem id="y">G y</dateFormatItem>
  701. <dateFormatItem id="yyyy">G y</dateFormatItem>
  702. <dateFormatItem id="yyyyM">G y/M</dateFormatItem>
  703. <dateFormatItem id="yyyyMd">GGGGG y-MM-dd</dateFormatItem>
  704. <dateFormatItem id="yyyyMEd">E, G y/M/d</dateFormatItem>
  705. <dateFormatItem id="yyyyMMM">G y MMM</dateFormatItem>
  706. <dateFormatItem id="yyyyMMMd">G y MMM d</dateFormatItem>
  707. <dateFormatItem id="yyyyMMMEd">E, G y MMM d</dateFormatItem>
  708. <dateFormatItem id="yyyyMMMM">G y MMMM</dateFormatItem>
  709. <dateFormatItem id="yyyyQQQ">G y QQQ</dateFormatItem>
  710. <dateFormatItem id="yyyyQQQQ">G y QQQQ</dateFormatItem>
  711. </availableFormats>
  712. <intervalFormats>
  713. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  714. <intervalFormatItem id="d">
  715. <greatestDifference id="d">d–d</greatestDifference>
  716. </intervalFormatItem>
  717. <intervalFormatItem id="h">
  718. <greatestDifference id="a">h a - h a</greatestDifference>
  719. <greatestDifference id="h">h-h a</greatestDifference>
  720. </intervalFormatItem>
  721. <intervalFormatItem id="H">
  722. <greatestDifference id="H">HH-HH</greatestDifference>
  723. </intervalFormatItem>
  724. <intervalFormatItem id="hm">
  725. <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
  726. <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
  727. <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
  728. </intervalFormatItem>
  729. <intervalFormatItem id="Hm">
  730. <greatestDifference id="H">HH:mm-HH:mm</greatestDifference>
  731. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  732. </intervalFormatItem>
  733. <intervalFormatItem id="hmv">
  734. <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
  735. <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
  736. <greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
  737. </intervalFormatItem>
  738. <intervalFormatItem id="Hmv">
  739. <greatestDifference id="H">HH:mm-HH:mm v</greatestDifference>
  740. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  741. </intervalFormatItem>
  742. <intervalFormatItem id="hv">
  743. <greatestDifference id="a">h a - h a v</greatestDifference>
  744. <greatestDifference id="h">h-h a v</greatestDifference>
  745. </intervalFormatItem>
  746. <intervalFormatItem id="Hv">
  747. <greatestDifference id="H">HH-HH v</greatestDifference>
  748. </intervalFormatItem>
  749. <intervalFormatItem id="M">
  750. <greatestDifference id="M">M-M</greatestDifference>
  751. </intervalFormatItem>
  752. <intervalFormatItem id="Md">
  753. <greatestDifference id="d">M/d – M/d</greatestDifference>
  754. <greatestDifference id="M">M/d – M/d</greatestDifference>
  755. </intervalFormatItem>
  756. <intervalFormatItem id="MEd">
  757. <greatestDifference id="d">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
  758. <greatestDifference id="M">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
  759. </intervalFormatItem>
  760. <intervalFormatItem id="MMM">
  761. <greatestDifference id="M">MMM – MMM</greatestDifference>
  762. </intervalFormatItem>
  763. <intervalFormatItem id="MMMd">
  764. <greatestDifference id="d">MMM d–d</greatestDifference>
  765. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  766. </intervalFormatItem>
  767. <intervalFormatItem id="MMMEd">
  768. <greatestDifference id="d">MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  769. <greatestDifference id="M">MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  770. </intervalFormatItem>
  771. <intervalFormatItem id="y">
  772. <greatestDifference id="y">G y-y</greatestDifference>
  773. </intervalFormatItem>
  774. <intervalFormatItem id="yM">
  775. <greatestDifference id="M">G y/M – y/M</greatestDifference>
  776. <greatestDifference id="y">G y/M – y/M</greatestDifference>
  777. </intervalFormatItem>
  778. <intervalFormatItem id="yMd">
  779. <greatestDifference id="d">G y/M/d – y/M/d</greatestDifference>
  780. <greatestDifference id="M">G y/M/d – y/M/d</greatestDifference>
  781. <greatestDifference id="y">G y/M/d – y/M/d</greatestDifference>
  782. </intervalFormatItem>
  783. <intervalFormatItem id="yMEd">
  784. <greatestDifference id="d">EEEE၊ G y/M/d – EEEE၊ y/M/d</greatestDifference>
  785. <greatestDifference id="M">EEEE၊ G y/M/d – EEEE၊ y/M/d</greatestDifference>
  786. <greatestDifference id="y">EEEE၊ G y/M/d – EEEE၊ y/M/d</greatestDifference>
  787. </intervalFormatItem>
  788. <intervalFormatItem id="yMMM">
  789. <greatestDifference id="M">G y MMM – y MMM</greatestDifference>
  790. <greatestDifference id="y">G y MMM – y MMM</greatestDifference>
  791. </intervalFormatItem>
  792. <intervalFormatItem id="yMMMd">
  793. <greatestDifference id="d">G y MMM d–d</greatestDifference>
  794. <greatestDifference id="M">G y၊ MMM d – MMM d</greatestDifference>
  795. <greatestDifference id="y">G y MMM d – y MMM d</greatestDifference>
  796. </intervalFormatItem>
  797. <intervalFormatItem id="yMMMEd">
  798. <greatestDifference id="d">G y၊ MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  799. <greatestDifference id="M">G y၊ MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  800. <greatestDifference id="y">G y၊ MMM d၊ EEEE – y၊ MMM d၊ EEEE</greatestDifference>
  801. </intervalFormatItem>
  802. <intervalFormatItem id="yMMMM">
  803. <greatestDifference id="M">G y MMMM–MMMM</greatestDifference>
  804. <greatestDifference id="y">G y MMMM – y MMMM</greatestDifference>
  805. </intervalFormatItem>
  806. </intervalFormats>
  807. </dateTimeFormats>
  808. </calendar>
  809. <calendar type="gregorian">
  810. <months>
  811. <monthContext type="format">
  812. <monthWidth type="abbreviated">
  813. <month type="1">ဇန်နဝါရီ</month>
  814. <month type="2">ဖေဖော်ဝါရီ</month>
  815. <month type="3">မတ်</month>
  816. <month type="4">ဧပြီ</month>
  817. <month type="5">မေ</month>
  818. <month type="6">ဇွန်</month>
  819. <month type="7">ဇူလိုင်</month>
  820. <month type="8">ဩဂုတ်</month>
  821. <month type="9">စက်တင်ဘာ</month>
  822. <month type="10">အောက်တိုဘာ</month>
  823. <month type="11">နိုဝင်ဘာ</month>
  824. <month type="12">ဒီဇင်ဘာ</month>
  825. </monthWidth>
  826. <monthWidth type="wide">
  827. <month type="1">ဇန်နဝါရီ</month>
  828. <month type="2">ဖေဖော်ဝါရီ</month>
  829. <month type="3">မတ်</month>
  830. <month type="4">ဧပြီ</month>
  831. <month type="5">မေ</month>
  832. <month type="6">ဇွန်</month>
  833. <month type="7">ဇူလိုင်</month>
  834. <month type="8">ဩဂုတ်</month>
  835. <month type="9">စက်တင်ဘာ</month>
  836. <month type="10">အောက်တိုဘာ</month>
  837. <month type="11">နိုဝင်ဘာ</month>
  838. <month type="12">ဒီဇင်ဘာ</month>
  839. </monthWidth>
  840. </monthContext>
  841. <monthContext type="stand-alone">
  842. <monthWidth type="abbreviated">
  843. <month type="1">ဇန်နဝါရီ</month>
  844. <month type="2">ဖေဖော်ဝါရီ</month>
  845. <month type="3">မတ်</month>
  846. <month type="4">ဧပြီ</month>
  847. <month type="5">မေ</month>
  848. <month type="6">ဇွန်</month>
  849. <month type="7">ဇူလိုင်</month>
  850. <month type="8">ဩဂုတ်</month>
  851. <month type="9">စက်တင်ဘာ</month>
  852. <month type="10">အောက်တိုဘာ</month>
  853. <month type="11">နိုဝင်ဘာ</month>
  854. <month type="12">ဒီဇင်ဘာ</month>
  855. </monthWidth>
  856. <monthWidth type="narrow">
  857. <month type="1">ဇ</month>
  858. <month type="2">ဖ</month>
  859. <month type="3">မ</month>
  860. <month type="4">ဧ</month>
  861. <month type="5">မ</month>
  862. <month type="6">ဇ</month>
  863. <month type="7">ဇ</month>
  864. <month type="8">ဩ</month>
  865. <month type="9">စ</month>
  866. <month type="10">အ</month>
  867. <month type="11">န</month>
  868. <month type="12">ဒ</month>
  869. </monthWidth>
  870. <monthWidth type="wide">
  871. <month type="1">ဇန်နဝါရီ</month>
  872. <month type="2">ဖေဖော်ဝါရီ</month>
  873. <month type="3">မတ်</month>
  874. <month type="4">ဧပြီ</month>
  875. <month type="5">မေ</month>
  876. <month type="6">ဇွန်</month>
  877. <month type="7">ဇူလိုင်</month>
  878. <month type="8">ဩဂုတ်</month>
  879. <month type="9">စက်တင်ဘာ</month>
  880. <month type="10">အောက်တိုဘာ</month>
  881. <month type="11">နိုဝင်ဘာ</month>
  882. <month type="12">ဒီဇင်ဘာ</month>
  883. </monthWidth>
  884. </monthContext>
  885. </months>
  886. <days>
  887. <dayContext type="format">
  888. <dayWidth type="abbreviated">
  889. <day type="sun">တနင်္ဂနွေ</day>
  890. <day type="mon">တနင်္လာ</day>
  891. <day type="tue">အင်္ဂါ</day>
  892. <day type="wed">ဗုဒ္ဓဟူး</day>
  893. <day type="thu">ကြာသပတေး</day>
  894. <day type="fri">သောကြာ</day>
  895. <day type="sat">စနေ</day>
  896. </dayWidth>
  897. <dayWidth type="short">
  898. <day type="sun">တနင်္ဂနွေ</day>
  899. <day type="mon">တနင်္လာ</day>
  900. <day type="tue">အင်္ဂါ</day>
  901. <day type="wed">ဗုဒ္ဓဟူး</day>
  902. <day type="thu">ကြာသပတေး</day>
  903. <day type="fri">သောကြာ</day>
  904. <day type="sat">စနေ</day>
  905. </dayWidth>
  906. <dayWidth type="wide">
  907. <day type="sun">တနင်္ဂနွေ</day>
  908. <day type="mon">တနင်္လာ</day>
  909. <day type="tue">အင်္ဂါ</day>
  910. <day type="wed">ဗုဒ္ဓဟူး</day>
  911. <day type="thu">ကြာသပတေး</day>
  912. <day type="fri">သောကြာ</day>
  913. <day type="sat">စနေ</day>
  914. </dayWidth>
  915. </dayContext>
  916. <dayContext type="stand-alone">
  917. <dayWidth type="abbreviated">
  918. <day type="sun">တနင်္ဂနွေ</day>
  919. <day type="mon">တနင်္လာ</day>
  920. <day type="tue">အင်္ဂါ</day>
  921. <day type="wed">ဗုဒ္ဓဟူး</day>
  922. <day type="thu">ကြာသပတေး</day>
  923. <day type="fri">သောကြာ</day>
  924. <day type="sat">စနေ</day>
  925. </dayWidth>
  926. <dayWidth type="narrow">
  927. <day type="sun">တ</day>
  928. <day type="mon">တ</day>
  929. <day type="tue">အ</day>
  930. <day type="wed">ဗ</day>
  931. <day type="thu">က</day>
  932. <day type="fri">သ</day>
  933. <day type="sat">စ</day>
  934. </dayWidth>
  935. <dayWidth type="wide">
  936. <day type="sun">တနင်္ဂနွေ</day>
  937. <day type="mon">တနင်္လာ</day>
  938. <day type="tue">အင်္ဂါ</day>
  939. <day type="wed">ဗုဒ္ဓဟူး</day>
  940. <day type="thu">ကြာသပတေး</day>
  941. <day type="fri">သောကြာ</day>
  942. <day type="sat">စနေ</day>
  943. </dayWidth>
  944. </dayContext>
  945. </days>
  946. <quarters>
  947. <quarterContext type="format">
  948. <quarterWidth type="abbreviated">
  949. <quarter type="1">ပထမ သုံးလပတ်</quarter>
  950. <quarter type="2">ဒုတိယ သုံးလပတ်</quarter>
  951. <quarter type="3">တတိယ သုံးလပတ်</quarter>
  952. <quarter type="4">စတုတ္ထ သုံးလပတ်</quarter>
  953. </quarterWidth>
  954. <quarterWidth type="narrow">
  955. <quarter type="1">ပ</quarter>
  956. <quarter type="2">ဒု</quarter>
  957. <quarter type="3">တ</quarter>
  958. <quarter type="4">စ</quarter>
  959. </quarterWidth>
  960. <quarterWidth type="wide">
  961. <quarter type="1">ပထမ သုံးလပတ်</quarter>
  962. <quarter type="2">ဒုတိယ သုံးလပတ်</quarter>
  963. <quarter type="3">တတိယ သုံးလပတ်</quarter>
  964. <quarter type="4">စတုတ္ထ သုံးလပတ်</quarter>
  965. </quarterWidth>
  966. </quarterContext>
  967. <quarterContext type="stand-alone">
  968. <quarterWidth type="abbreviated">
  969. <quarter type="1">ပထမ သုံးလပတ်</quarter>
  970. <quarter type="2">ဒုတိယ သုံးလပတ်</quarter>
  971. <quarter type="3">တတိယ သုံးလပတ်</quarter>
  972. <quarter type="4">စတုတ္ထ သုံးလပတ်</quarter>
  973. </quarterWidth>
  974. <quarterWidth type="narrow">
  975. <quarter type="1">ပ</quarter>
  976. <quarter type="2">ဒု</quarter>
  977. <quarter type="3">တ</quarter>
  978. <quarter type="4">စ</quarter>
  979. </quarterWidth>
  980. <quarterWidth type="wide">
  981. <quarter type="1">ပထမ သုံးလပတ်</quarter>
  982. <quarter type="2">ဒုတိယ သုံးလပတ်</quarter>
  983. <quarter type="3">တတိယ သုံးလပတ်</quarter>
  984. <quarter type="4">စတုတ္ထ သုံးလပတ်</quarter>
  985. </quarterWidth>
  986. </quarterContext>
  987. </quarters>
  988. <dayPeriods>
  989. <dayPeriodContext type="format">
  990. <dayPeriodWidth type="wide">
  991. <dayPeriod type="am">နံနက်</dayPeriod>
  992. <dayPeriod type="pm">ညနေ</dayPeriod>
  993. </dayPeriodWidth>
  994. </dayPeriodContext>
  995. </dayPeriods>
  996. <eras>
  997. <eraNames>
  998. <era type="0">ခရစ်တော် မပေါ်မီကာလ</era>
  999. <era type="1">ခရစ်တော် ပေါ်ထွန်းပြီးကာလ</era>
  1000. </eraNames>
  1001. <eraAbbr>
  1002. <era type="0">ဘီစီ</era>
  1003. <era type="0" alt="variant">ဘီစီအီး</era>
  1004. <era type="1">အေဒီ</era>
  1005. <era type="1" alt="variant">စီအီး</era>
  1006. </eraAbbr>
  1007. </eras>
  1008. <dateFormats>
  1009. <dateFormatLength type="full">
  1010. <dateFormat>
  1011. <pattern>EEEE, y MMMM dd</pattern>
  1012. </dateFormat>
  1013. </dateFormatLength>
  1014. <dateFormatLength type="long">
  1015. <dateFormat>
  1016. <pattern>y MMMM d</pattern>
  1017. </dateFormat>
  1018. </dateFormatLength>
  1019. <dateFormatLength type="medium">
  1020. <dateFormat>
  1021. <pattern>y MMM d</pattern>
  1022. </dateFormat>
  1023. </dateFormatLength>
  1024. <dateFormatLength type="short">
  1025. <dateFormat>
  1026. <pattern>yy/MM/dd</pattern>
  1027. </dateFormat>
  1028. </dateFormatLength>
  1029. </dateFormats>
  1030. <timeFormats>
  1031. <timeFormatLength type="full">
  1032. <timeFormat>
  1033. <pattern>HH:mm:ss zzzz</pattern>
  1034. </timeFormat>
  1035. </timeFormatLength>
  1036. <timeFormatLength type="long">
  1037. <timeFormat>
  1038. <pattern>HH:mm:ss z</pattern>
  1039. </timeFormat>
  1040. </timeFormatLength>
  1041. <timeFormatLength type="medium">
  1042. <timeFormat>
  1043. <pattern>HH:mm:ss</pattern>
  1044. </timeFormat>
  1045. </timeFormatLength>
  1046. <timeFormatLength type="short">
  1047. <timeFormat>
  1048. <pattern>HH:mm</pattern>
  1049. </timeFormat>
  1050. </timeFormatLength>
  1051. </timeFormats>
  1052. <dateTimeFormats>
  1053. <dateTimeFormatLength type="full">
  1054. <dateTimeFormat>
  1055. <pattern>{1}မှာ {0}</pattern>
  1056. </dateTimeFormat>
  1057. </dateTimeFormatLength>
  1058. <dateTimeFormatLength type="long">
  1059. <dateTimeFormat>
  1060. <pattern>{1} {0}</pattern>
  1061. </dateTimeFormat>
  1062. </dateTimeFormatLength>
  1063. <dateTimeFormatLength type="medium">
  1064. <dateTimeFormat>
  1065. <pattern>{1} {0}</pattern>
  1066. </dateTimeFormat>
  1067. </dateTimeFormatLength>
  1068. <dateTimeFormatLength type="short">
  1069. <dateTimeFormat>
  1070. <pattern>{1} {0}</pattern>
  1071. </dateTimeFormat>
  1072. </dateTimeFormatLength>
  1073. <availableFormats>
  1074. <dateFormatItem id="d">d</dateFormatItem>
  1075. <dateFormatItem id="Ed">E, d</dateFormatItem>
  1076. <dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
  1077. <dateFormatItem id="EHm">E HH:mm</dateFormatItem>
  1078. <dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
  1079. <dateFormatItem id="EHms">E HH:mm:ss</dateFormatItem>
  1080. <dateFormatItem id="Gy">G y</dateFormatItem>
  1081. <dateFormatItem id="GyMMM">G y MMM</dateFormatItem>
  1082. <dateFormatItem id="GyMMMd">G y MMM d</dateFormatItem>
  1083. <dateFormatItem id="GyMMMEd">E, G y MMM d</dateFormatItem>
  1084. <dateFormatItem id="h">h a</dateFormatItem>
  1085. <dateFormatItem id="H">HH</dateFormatItem>
  1086. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1087. <dateFormatItem id="Hm">HH:mm</dateFormatItem>
  1088. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1089. <dateFormatItem id="Hms">HH:mm:ss</dateFormatItem>
  1090. <dateFormatItem id="M">L</dateFormatItem>
  1091. <dateFormatItem id="Md">M/d</dateFormatItem>
  1092. <dateFormatItem id="MEd">E, M/d</dateFormatItem>
  1093. <dateFormatItem id="MMM">LLL</dateFormatItem>
  1094. <dateFormatItem id="MMMd">MMM d</dateFormatItem>
  1095. <dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
  1096. <dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
  1097. <dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
  1098. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1099. <dateFormatItem id="y">y</dateFormatItem>
  1100. <dateFormatItem id="yM">y/M</dateFormatItem>
  1101. <dateFormatItem id="yMd">y-MM-dd</dateFormatItem>
  1102. <dateFormatItem id="yMEd">E, y/M/d</dateFormatItem>
  1103. <dateFormatItem id="yMMM">y MMM</dateFormatItem>
  1104. <dateFormatItem id="yMMMd">y MMM d</dateFormatItem>
  1105. <dateFormatItem id="yMMMEd">E, y MMM d</dateFormatItem>
  1106. <dateFormatItem id="yMMMM">y MMMM</dateFormatItem>
  1107. <dateFormatItem id="yQQQ">y QQQ</dateFormatItem>
  1108. <dateFormatItem id="yQQQQ">y QQQQ</dateFormatItem>
  1109. </availableFormats>
  1110. <appendItems>
  1111. <appendItem request="Timezone">{0} {1}</appendItem>
  1112. </appendItems>
  1113. <intervalFormats>
  1114. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1115. <intervalFormatItem id="d">
  1116. <greatestDifference id="d">d-d</greatestDifference>
  1117. </intervalFormatItem>
  1118. <intervalFormatItem id="h">
  1119. <greatestDifference id="a">h a - h a</greatestDifference>
  1120. <greatestDifference id="h">h-h a</greatestDifference>
  1121. </intervalFormatItem>
  1122. <intervalFormatItem id="H">
  1123. <greatestDifference id="H">HH-HH</greatestDifference>
  1124. </intervalFormatItem>
  1125. <intervalFormatItem id="hm">
  1126. <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
  1127. <greatestDifference id="h">h:mm-h:mm a</greatestDifference>
  1128. <greatestDifference id="m">h:mm-h:mm a</greatestDifference>
  1129. </intervalFormatItem>
  1130. <intervalFormatItem id="Hm">
  1131. <greatestDifference id="H">HH:mm-HH:mm</greatestDifference>
  1132. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  1133. </intervalFormatItem>
  1134. <intervalFormatItem id="hmv">
  1135. <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
  1136. <greatestDifference id="h">h:mm-h:mm a v</greatestDifference>
  1137. <greatestDifference id="m">h:mm-h:mm a v</greatestDifference>
  1138. </intervalFormatItem>
  1139. <intervalFormatItem id="Hmv">
  1140. <greatestDifference id="H">HH:mm-HH:mm v</greatestDifference>
  1141. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  1142. </intervalFormatItem>
  1143. <intervalFormatItem id="hv">
  1144. <greatestDifference id="a">h a - h a v</greatestDifference>
  1145. <greatestDifference id="h">h-h a v</greatestDifference>
  1146. </intervalFormatItem>
  1147. <intervalFormatItem id="Hv">
  1148. <greatestDifference id="H">HH-HH v</greatestDifference>
  1149. </intervalFormatItem>
  1150. <intervalFormatItem id="M">
  1151. <greatestDifference id="M">M-M</greatestDifference>
  1152. </intervalFormatItem>
  1153. <intervalFormatItem id="Md">
  1154. <greatestDifference id="d">M/d – M/d</greatestDifference>
  1155. <greatestDifference id="M">M/d – M/d</greatestDifference>
  1156. </intervalFormatItem>
  1157. <intervalFormatItem id="MEd">
  1158. <greatestDifference id="d">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
  1159. <greatestDifference id="M">EEEE၊ M/d – EEEE၊ M/d</greatestDifference>
  1160. </intervalFormatItem>
  1161. <intervalFormatItem id="MMM">
  1162. <greatestDifference id="M">MMM – MMM</greatestDifference>
  1163. </intervalFormatItem>
  1164. <intervalFormatItem id="MMMd">
  1165. <greatestDifference id="d">MMM d – MMM d</greatestDifference>
  1166. <greatestDifference id="M">MMM d – MMM d</greatestDifference>
  1167. </intervalFormatItem>
  1168. <intervalFormatItem id="MMMEd">
  1169. <greatestDifference id="d">MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  1170. <greatestDifference id="M">MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  1171. </intervalFormatItem>
  1172. <intervalFormatItem id="y">
  1173. <greatestDifference id="y">y-y</greatestDifference>
  1174. </intervalFormatItem>
  1175. <intervalFormatItem id="yM">
  1176. <greatestDifference id="M">y/M – y/M</greatestDifference>
  1177. <greatestDifference id="y">y/M – y/M</greatestDifference>
  1178. </intervalFormatItem>
  1179. <intervalFormatItem id="yMd">
  1180. <greatestDifference id="d">y/M/d – y/M/d</greatestDifference>
  1181. <greatestDifference id="M">y/M/d – y/M/d</greatestDifference>
  1182. <greatestDifference id="y">y/M/d – y/M/d</greatestDifference>
  1183. </intervalFormatItem>
  1184. <intervalFormatItem id="yMEd">
  1185. <greatestDifference id="d">EEEE၊ y/M/d – EEEE၊ y/M/d</greatestDifference>
  1186. <greatestDifference id="M">EEEE၊ y/M/d – EEEE၊ y/M/d</greatestDifference>
  1187. <greatestDifference id="y">EEEE၊ y/M/d – EEEE၊ y/M/d</greatestDifference>
  1188. </intervalFormatItem>
  1189. <intervalFormatItem id="yMMM">
  1190. <greatestDifference id="M">y MMM – y MMM</greatestDifference>
  1191. <greatestDifference id="y">y MMM – y MMM</greatestDifference>
  1192. </intervalFormatItem>
  1193. <intervalFormatItem id="yMMMd">
  1194. <greatestDifference id="d">y MMM d–d</greatestDifference>
  1195. <greatestDifference id="M">y၊ MMM d – MMM d</greatestDifference>
  1196. <greatestDifference id="y">y MMM d – y MMM d</greatestDifference>
  1197. </intervalFormatItem>
  1198. <intervalFormatItem id="yMMMEd">
  1199. <greatestDifference id="d">y၊ MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  1200. <greatestDifference id="M">y၊ MMM d၊ EEEE – MMM d၊ EEEE</greatestDifference>
  1201. <greatestDifference id="y">y၊ MMM d၊ EEEE – y၊ MMM d၊ EEEE</greatestDifference>
  1202. </intervalFormatItem>
  1203. <intervalFormatItem id="yMMMM">
  1204. <greatestDifference id="M">y MMMM–MMMM</greatestDifference>
  1205. <greatestDifference id="y">y MMMM – y MMMM</greatestDifference>
  1206. </intervalFormatItem>
  1207. </intervalFormats>
  1208. </dateTimeFormats>
  1209. </calendar>
  1210. </calendars>
  1211. <fields>
  1212. <field type="era">
  1213. <displayName>ခေတ်</displayName>
  1214. </field>
  1215. <field type="year">
  1216. <displayName>နှစ်</displayName>
  1217. <relative type="-1">ယမန်နှစ်</relative>
  1218. <relative type="0">ယခုနှစ်</relative>
  1219. <relative type="1">နောက်နှစ်</relative>
  1220. <relativeTime type="future">
  1221. <relativeTimePattern count="other">{0}နှစ်အတွင်း</relativeTimePattern>
  1222. </relativeTime>
  1223. <relativeTime type="past">
  1224. <relativeTimePattern count="other">လွန်ခဲ့သော{0}နှစ်</relativeTimePattern>
  1225. </relativeTime>
  1226. </field>
  1227. <field type="month">
  1228. <displayName>လ</displayName>
  1229. <relative type="-1">ယမန်လ</relative>
  1230. <relative type="0">ယခုလ</relative>
  1231. <relative type="1">နောက်လ</relative>
  1232. <relativeTime type="future">
  1233. <relativeTimePattern count="other">{0}လအတွင်း</relativeTimePattern>
  1234. </relativeTime>
  1235. <relativeTime type="past">
  1236. <relativeTimePattern count="other">လွန်ခဲ့သော{0}လ</relativeTimePattern>
  1237. </relativeTime>
  1238. </field>
  1239. <field type="week">
  1240. <displayName>ပတ်</displayName>
  1241. <relative type="-1">ပြီးခဲ့သောအပတ်</relative>
  1242. <relative type="0">ဒီအပတ်</relative>
  1243. <relative type="1">နောက်အပတ်</relative>
  1244. <relativeTime type="future">
  1245. <relativeTimePattern count="other">{0}ပတ်အတွင်း</relativeTimePattern>
  1246. </relativeTime>
  1247. <relativeTime type="past">
  1248. <relativeTimePattern count="other">လွန်ခဲ့သော{0}ပတ်</relativeTimePattern>
  1249. </relativeTime>
  1250. </field>
  1251. <field type="day">
  1252. <displayName>ရက်</displayName>
  1253. <relative type="-2">တနေ့က</relative>
  1254. <relative type="-1">မနေ့က</relative>
  1255. <relative type="0">ယနေ့</relative>
  1256. <relative type="1">မနက်ဖြန်</relative>
  1257. <relative type="2">သဘက်ခါ</relative>
  1258. <relativeTime type="future">
  1259. <relativeTimePattern count="other">{0}ရက်အတွင်း</relativeTimePattern>
  1260. </relativeTime>
  1261. <relativeTime type="past">
  1262. <relativeTimePattern count="other">လွန်ခဲ့သော{0}ရက်</relativeTimePattern>
  1263. </relativeTime>
  1264. </field>
  1265. <field type="weekday">
  1266. <displayName>နေ့</displayName>
  1267. </field>
  1268. <field type="sun">
  1269. <relative type="-1">ပြီးခဲ့သောတနင်္ဂနွေ</relative>
  1270. <relative type="0">ဒီတနင်္ဂနွေ</relative>
  1271. <relative type="1">နောက်တနင်္ဂနွေ</relative>
  1272. </field>
  1273. <field type="mon">
  1274. <relative type="-1">ပြီးခဲ့သောတနင်္လာ</relative>
  1275. <relative type="0">ဒီတနင်္လာ</relative>
  1276. <relative type="1">နောက်တနင်္လာ</relative>
  1277. </field>
  1278. <field type="tue">
  1279. <relative type="-1">ပြီးခဲ့သောအင်္ဂါ</relative>
  1280. <relative type="0">ဒီအင်္ဂါ</relative>
  1281. <relative type="1">နောက်အင်္ဂါ</relative>
  1282. </field>
  1283. <field type="wed">
  1284. <relative type="-1">ပြီးခဲ့သော ဗုဒ္ဓဟူး</relative>
  1285. <relative type="0">ဒီဗုဒ္ဓဟူး</relative>
  1286. <relative type="1">နောက်ဗုဒ္ဓဟူး</relative>
  1287. </field>
  1288. <field type="thu">
  1289. <relative type="-1">ပြီးခဲ့သောကြာသပတေး</relative>
  1290. <relative type="0">ဒီကြာသပတေး</relative>
  1291. <relative type="1">နောက်ကြာသပတေး</relative>
  1292. </field>
  1293. <field type="fri">
  1294. <relative type="-1">ပြီးခဲ့သောသောကြာ</relative>
  1295. <relative type="0">ဒီသောကြာ</relative>
  1296. <relative type="1">နောက်သောကြာ</relative>
  1297. </field>
  1298. <field type="sat">
  1299. <relative type="-1">ပြီးခဲ့သောစနေ</relative>
  1300. <relative type="0">ဒီစနေ</relative>
  1301. <relative type="1">နောက်စနေ</relative>
  1302. </field>
  1303. <field type="dayperiod">
  1304. <displayName>နံနက်/ညနေ</displayName>
  1305. </field>
  1306. <field type="hour">
  1307. <displayName>နာရီ</displayName>
  1308. <relativeTime type="future">
  1309. <relativeTimePattern count="other">{0}နာရီအတွင်း</relativeTimePattern>
  1310. </relativeTime>
  1311. <relativeTime type="past">
  1312. <relativeTimePattern count="other">လွန်ခဲ့သော{0}နာရီ</relativeTimePattern>
  1313. </relativeTime>
  1314. </field>
  1315. <field type="minute">
  1316. <displayName>မိနစ်</displayName>
  1317. <relativeTime type="future">
  1318. <relativeTimePattern count="other">{0}မိနစ်အတွင်း</relativeTimePattern>
  1319. </relativeTime>
  1320. <relativeTime type="past">
  1321. <relativeTimePattern count="other">လွန်ခဲ့သော{0}မိနစ်</relativeTimePattern>
  1322. </relativeTime>
  1323. </field>
  1324. <field type="second">
  1325. <displayName>စက္ကန့်</displayName>
  1326. <relative type="0">ယခု</relative>
  1327. <relativeTime type="future">
  1328. <relativeTimePattern count="other">{0}စက္ကန့်အတွင်း</relativeTimePattern>
  1329. </relativeTime>
  1330. <relativeTime type="past">
  1331. <relativeTimePattern count="other">လွန်ခဲ့သော{0}စက္ကန့်</relativeTimePattern>
  1332. </relativeTime>
  1333. </field>
  1334. <field type="zone">
  1335. <displayName>ဇုန်</displayName>
  1336. </field>
  1337. </fields>
  1338. <timeZoneNames>
  1339. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1340. <gmtFormat>ဂရင်းနစ်စံတော်ချိန်{0}</gmtFormat>
  1341. <gmtZeroFormat>ဂရင်းနစ်စံတော်ချိန်</gmtZeroFormat>
  1342. <regionFormat>{0}အချိန်</regionFormat>
  1343. <regionFormat type="daylight">{0} (+1)</regionFormat>
  1344. <regionFormat type="standard">{0} (စံတော်ချိန်)</regionFormat>
  1345. <fallbackFormat>{1} ({0})</fallbackFormat>
  1346. <zone type="Etc/Unknown">
  1347. <exemplarCity>အမည်မသိသောမြို့</exemplarCity>
  1348. </zone>
  1349. <zone type="Europe/Andorra">
  1350. <exemplarCity>အန်ဒိုရာ</exemplarCity>
  1351. </zone>
  1352. <zone type="Asia/Dubai">
  1353. <exemplarCity>ဒူဘိုင်း</exemplarCity>
  1354. </zone>
  1355. <zone type="Asia/Kabul">
  1356. <exemplarCity>ကာဘူလ်</exemplarCity>
  1357. </zone>
  1358. <zone type="America/Antigua">
  1359. <exemplarCity>အန်တီဂုအာ</exemplarCity>
  1360. </zone>
  1361. <zone type="America/Anguilla">
  1362. <exemplarCity>အန်ဂွီလာ</exemplarCity>
  1363. </zone>
  1364. <zone type="Europe/Tirane">
  1365. <exemplarCity>တီရာနီ</exemplarCity>
  1366. </zone>
  1367. <zone type="Asia/Yerevan">
  1368. <exemplarCity>ရဲယ်ရေဗန်း</exemplarCity>
  1369. </zone>
  1370. <zone type="Africa/Luanda">
  1371. <exemplarCity>လူအန်ဒါ</exemplarCity>
  1372. </zone>
  1373. <zone type="Antarctica/Rothera">
  1374. <exemplarCity>ရိုသီရာ</exemplarCity>
  1375. </zone>
  1376. <zone type="Antarctica/Palmer">
  1377. <exemplarCity>ပါလ်မာ</exemplarCity>
  1378. </zone>
  1379. <zone type="Antarctica/Syowa">
  1380. <exemplarCity>ရှိုးဝါ</exemplarCity>
  1381. </zone>
  1382. <zone type="Antarctica/Mawson">
  1383. <exemplarCity>မော်စွန်</exemplarCity>
  1384. </zone>
  1385. <zone type="Antarctica/Davis">
  1386. <exemplarCity>ဒေးဗစ်</exemplarCity>
  1387. </zone>
  1388. <zone type="Antarctica/Vostok">
  1389. <exemplarCity>ဗိုစ်တိုခ်</exemplarCity>
  1390. </zone>
  1391. <zone type="Antarctica/Casey">
  1392. <exemplarCity>ကေစီ</exemplarCity>
  1393. </zone>
  1394. <zone type="Antarctica/DumontDUrville">
  1395. <exemplarCity>ဒူးမော့တ် ဒါရ်ဗီးလ်</exemplarCity>
  1396. </zone>
  1397. <zone type="Antarctica/McMurdo">
  1398. <exemplarCity>မက်မူဒိုး</exemplarCity>
  1399. </zone>
  1400. <zone type="America/Argentina/Rio_Gallegos">
  1401. <exemplarCity>ရီအို ဂါလီဂိုစ်</exemplarCity>
  1402. </zone>
  1403. <zone type="America/Mendoza">
  1404. <exemplarCity>မိန်ဒိုဇာ</exemplarCity>
  1405. </zone>
  1406. <zone type="America/Argentina/San_Juan">
  1407. <exemplarCity>စော့တ ဂျုအန်</exemplarCity>
  1408. </zone>
  1409. <zone type="America/Argentina/Ushuaia">
  1410. <exemplarCity>ဥဆွာအီအာ</exemplarCity>
  1411. </zone>
  1412. <zone type="America/Argentina/La_Rioja">
  1413. <exemplarCity>လာ ရီအိုဂျာ</exemplarCity>
  1414. </zone>
  1415. <zone type="America/Argentina/San_Luis">
  1416. <exemplarCity>စော့န် လူအီးစ်</exemplarCity>
  1417. </zone>
  1418. <zone type="America/Catamarca">
  1419. <exemplarCity>ကာတာမာရ်ကာ</exemplarCity>
  1420. </zone>
  1421. <zone type="America/Argentina/Salta">
  1422. <exemplarCity>ဆာလ်တာ</exemplarCity>
  1423. </zone>
  1424. <zone type="America/Jujuy">
  1425. <exemplarCity>ဂျုဂျေ</exemplarCity>
  1426. </zone>
  1427. <zone type="America/Argentina/Tucuman">
  1428. <exemplarCity>တူကူမန်</exemplarCity>
  1429. </zone>
  1430. <zone type="America/Cordoba">
  1431. <exemplarCity>ကိုဒိုဘာ</exemplarCity>
  1432. </zone>
  1433. <zone type="America/Buenos_Aires">
  1434. <exemplarCity>ဘရူနိုစ်အေရီစ်</exemplarCity>
  1435. </zone>
  1436. <zone type="Pacific/Pago_Pago">
  1437. <exemplarCity>ဖါငိုဖါငို</exemplarCity>
  1438. </zone>
  1439. <zone type="Europe/Vienna">
  1440. <exemplarCity>ဗီအင်နာ</exemplarCity>
  1441. </zone>
  1442. <zone type="Australia/Perth">
  1443. <exemplarCity>ပါးသ်</exemplarCity>
  1444. </zone>
  1445. <zone type="Australia/Eucla">
  1446. <exemplarCity>ယူးခလာ</exemplarCity>
  1447. </zone>
  1448. <zone type="Australia/Darwin">
  1449. <exemplarCity>ဒေါဝင်</exemplarCity>
  1450. </zone>
  1451. <zone type="Australia/Adelaide">
  1452. <exemplarCity>အန္ဒီလိတ်ဒ်</exemplarCity>
  1453. </zone>
  1454. <zone type="Australia/Broken_Hill">
  1455. <exemplarCity>ဘရိုကင်ဟီးလ်</exemplarCity>
  1456. </zone>
  1457. <zone type="Australia/Currie">
  1458. <exemplarCity>ကာရီ</exemplarCity>
  1459. </zone>
  1460. <zone type="Australia/Melbourne">
  1461. <exemplarCity>မယ်လ်ဘွန်း</exemplarCity>
  1462. </zone>
  1463. <zone type="Australia/Hobart">
  1464. <exemplarCity>ဟိုးဘားတ်</exemplarCity>
  1465. </zone>
  1466. <zone type="Australia/Lindeman">
  1467. <exemplarCity>လင်းဒီမန်း</exemplarCity>
  1468. </zone>
  1469. <zone type="Australia/Sydney">
  1470. <exemplarCity>ဆစ်ဒနီ</exemplarCity>
  1471. </zone>
  1472. <zone type="Australia/Brisbane">
  1473. <exemplarCity>ဘရစ္စဘိန်း</exemplarCity>
  1474. </zone>
  1475. <zone type="Antarctica/Macquarie">
  1476. <exemplarCity>မခွါရီး</exemplarCity>
  1477. </zone>
  1478. <zone type="Australia/Lord_Howe">
  1479. <exemplarCity>လော့ဒ် ဟောင်</exemplarCity>
  1480. </zone>
  1481. <zone type="America/Aruba">
  1482. <exemplarCity>အာရုဘာ</exemplarCity>
  1483. </zone>
  1484. <zone type="Europe/Mariehamn">
  1485. <exemplarCity>မရီအာ ဟားမန်</exemplarCity>
  1486. </zone>
  1487. <zone type="Asia/Baku">
  1488. <exemplarCity>ဘာခူး</exemplarCity>
  1489. </zone>
  1490. <zone type="Europe/Sarajevo">
  1491. <exemplarCity>ဆာရာဂျေဗို</exemplarCity>
  1492. </zone>
  1493. <zone type="America/Barbados">
  1494. <exemplarCity>ဘာဘဒိုးစ်</exemplarCity>
  1495. </zone>
  1496. <zone type="Asia/Dhaka">
  1497. <exemplarCity>ဒက္ကာ</exemplarCity>
  1498. </zone>
  1499. <zone type="Europe/Brussels">
  1500. <exemplarCity>ဘရူဆဲလ်</exemplarCity>
  1501. </zone>
  1502. <zone type="Africa/Ouagadougou">
  1503. <exemplarCity>ဝါဂါဒူးဂူ</exemplarCity>
  1504. </zone>
  1505. <zone type="Europe/Sofia">
  1506. <exemplarCity>ဆိုပီအာ</exemplarCity>
  1507. </zone>
  1508. <zone type="Asia/Bahrain">
  1509. <exemplarCity>ဘာရိန်း</exemplarCity>
  1510. </zone>
  1511. <zone type="Africa/Bujumbura">
  1512. <exemplarCity>ဘူဂျွန်ဘူးရာ</exemplarCity>
  1513. </zone>
  1514. <zone type="Africa/Porto-Novo">
  1515. <exemplarCity>ပိုတို-နိုဗို</exemplarCity>
  1516. </zone>
  1517. <zone type="America/St_Barthelemy">
  1518. <exemplarCity>စိန့်ဘာသည်လီမိုင်</exemplarCity>
  1519. </zone>
  1520. <zone type="Atlantic/Bermuda">
  1521. <exemplarCity>ဘာမူဒါ</exemplarCity>
  1522. </zone>
  1523. <zone type="Asia/Brunei">
  1524. <exemplarCity>ဘရူနိုင်း</exemplarCity>
  1525. </zone>
  1526. <zone type="America/La_Paz">
  1527. <exemplarCity>လာပါဇ်</exemplarCity>
  1528. </zone>
  1529. <zone type="America/Kralendijk">
  1530. <exemplarCity>ခရာလဲန်းဒီခ်</exemplarCity>
  1531. </zone>
  1532. <zone type="America/Eirunepe">
  1533. <exemplarCity>အီရူနီပီ</exemplarCity>
  1534. </zone>
  1535. <zone type="America/Rio_Branco">
  1536. <exemplarCity>ရီယို ဘရန်ကို</exemplarCity>
  1537. </zone>
  1538. <zone type="America/Porto_Velho">
  1539. <exemplarCity>ဖို့တ်တို ဗဲလ်လီအာ</exemplarCity>
  1540. </zone>
  1541. <zone type="America/Boa_Vista">
  1542. <exemplarCity>ဘိုအာဗီစ်တာ</exemplarCity>
  1543. </zone>
  1544. <zone type="America/Manaus">
  1545. <exemplarCity>မာနောက်စ်</exemplarCity>
  1546. </zone>
  1547. <zone type="America/Cuiaba">
  1548. <exemplarCity>ခူရာဘာ</exemplarCity>
  1549. </zone>
  1550. <zone type="America/Santarem">
  1551. <exemplarCity>ဆန်တာရန်</exemplarCity>
  1552. </zone>
  1553. <zone type="America/Campo_Grande">
  1554. <exemplarCity>ကိမ်ပို ဂရန်ဒီ</exemplarCity>
  1555. </zone>
  1556. <zone type="America/Belem">
  1557. <exemplarCity>ဘာလီန်</exemplarCity>
  1558. </zone>
  1559. <zone type="America/Araguaina">
  1560. <exemplarCity>အာရာဂွာအီနာ</exemplarCity>
  1561. </zone>
  1562. <zone type="America/Sao_Paulo">
  1563. <exemplarCity>ဆာပိုလို</exemplarCity>
  1564. </zone>
  1565. <zone type="America/Bahia">
  1566. <exemplarCity>ဘာဟီအာ</exemplarCity>
  1567. </zone>
  1568. <zone type="America/Fortaleza">
  1569. <exemplarCity>ဖို့တ်တာလီဇာ</exemplarCity>
  1570. </zone>
  1571. <zone type="America/Maceio">
  1572. <exemplarCity>မာဆဲသြာ</exemplarCity>
  1573. </zone>
  1574. <zone type="America/Recife">
  1575. <exemplarCity>ရယ်စီ့ဖ်ဖာ</exemplarCity>
  1576. </zone>
  1577. <zone type="America/Noronha">
  1578. <exemplarCity>နိုရိုညာ</exemplarCity>
  1579. </zone>
  1580. <zone type="America/Nassau">
  1581. <exemplarCity>နာ့ဆော်</exemplarCity>
  1582. </zone>
  1583. <zone type="Asia/Thimphu">
  1584. <exemplarCity>တင်ဖူး</exemplarCity>
  1585. </zone>
  1586. <zone type="Africa/Gaborone">
  1587. <exemplarCity>ဂါဘာရွန်းနီ</exemplarCity>
  1588. </zone>
  1589. <zone type="Europe/Minsk">
  1590. <exemplarCity>မင်းစခ်</exemplarCity>
  1591. </zone>
  1592. <zone type="America/Belize">
  1593. <exemplarCity>ဘီလီဇ်</exemplarCity>
  1594. </zone>
  1595. <zone type="America/Dawson">
  1596. <exemplarCity>ဒေါ်စွန်</exemplarCity>
  1597. </zone>
  1598. <zone type="America/Whitehorse">
  1599. <exemplarCity>ဝိုက်(တ်)ဟိုစ်</exemplarCity>
  1600. </zone>
  1601. <zone type="America/Inuvik">
  1602. <exemplarCity>အီနုဗီခ်</exemplarCity>
  1603. </zone>
  1604. <zone type="America/Vancouver">
  1605. <exemplarCity>ဗင်ခူဘာ</exemplarCity>
  1606. </zone>
  1607. <zone type="America/Dawson_Creek">
  1608. <exemplarCity>ဒေါ်စွန်ကရိခ်</exemplarCity>
  1609. </zone>
  1610. <zone type="America/Creston">
  1611. <exemplarCity>ကရစ်စတွန်</exemplarCity>
  1612. </zone>
  1613. <zone type="America/Yellowknife">
  1614. <exemplarCity>ရဲလိုနိုင်ဖ်</exemplarCity>
  1615. </zone>
  1616. <zone type="America/Edmonton">
  1617. <exemplarCity>အက်ဒ်မွန်တွန်</exemplarCity>
  1618. </zone>
  1619. <zone type="America/Swift_Current">
  1620. <exemplarCity>စဝီ(ဘ်)ကာရင့်</exemplarCity>
  1621. </zone>
  1622. <zone type="America/Cambridge_Bay">
  1623. <exemplarCity>ကိန်းဘရီဂျ်ဘေး</exemplarCity>
  1624. </zone>
  1625. <zone type="America/Regina">
  1626. <exemplarCity>ရယ်ဂျီနာ</exemplarCity>
  1627. </zone>
  1628. <zone type="America/Winnipeg">
  1629. <exemplarCity>ဝီနီဗက်ဂ်</exemplarCity>
  1630. </zone>
  1631. <zone type="America/Resolute">
  1632. <exemplarCity>ရဲလ်ဆိုလု(တ်)</exemplarCity>
  1633. </zone>
  1634. <zone type="America/Rainy_River">
  1635. <exemplarCity>ရိမ်းနီး ရီဗာ</exemplarCity>
  1636. </zone>
  1637. <zone type="America/Rankin_Inlet">
  1638. <exemplarCity>ရမ်ကင် အင်လက်</exemplarCity>
  1639. </zone>
  1640. <zone type="America/Coral_Harbour">
  1641. <exemplarCity>အာတီကိုကန်</exemplarCity>
  1642. </zone>
  1643. <zone type="America/Thunder_Bay">
  1644. <exemplarCity>သံဒါဘေး</exemplarCity>
  1645. </zone>
  1646. <zone type="America/Nipigon">
  1647. <exemplarCity>နီပီဂွန်</exemplarCity>
  1648. </zone>
  1649. <zone type="America/Toronto">
  1650. <exemplarCity>တိုရွန်တို</exemplarCity>
  1651. </zone>
  1652. <zone type="America/Iqaluit">
  1653. <exemplarCity>အီကာလူအီတ်</exemplarCity>
  1654. </zone>
  1655. <zone type="America/Pangnirtung">
  1656. <exemplarCity>ဖန်ဂ်နသ်တံ</exemplarCity>
  1657. </zone>
  1658. <zone type="America/Moncton">
  1659. <exemplarCity>မွန်ခ်တွန်</exemplarCity>
  1660. </zone>
  1661. <zone type="America/Halifax">
  1662. <exemplarCity>ဟလီဖက်စ်</exemplarCity>
  1663. </zone>
  1664. <zone type="America/Goose_Bay">
  1665. <exemplarCity>ဂူးစ်ဘေး</exemplarCity>
  1666. </zone>
  1667. <zone type="America/Glace_Bay">
  1668. <exemplarCity>ဂလဲစ်ဘေး</exemplarCity>
  1669. </zone>
  1670. <zone type="America/Blanc-Sablon">
  1671. <exemplarCity>ဘလွန်ခ်-စာဘလွန်</exemplarCity>
  1672. </zone>
  1673. <zone type="America/St_Johns">
  1674. <exemplarCity>စိန့်ဂျွန်းစ်</exemplarCity>
  1675. </zone>
  1676. <zone type="Indian/Cocos">
  1677. <exemplarCity>ကိုကိုးစ်</exemplarCity>
  1678. </zone>
  1679. <zone type="Africa/Kinshasa">
  1680. <exemplarCity>ခင်ရှာစာ</exemplarCity>
  1681. </zone>
  1682. <zone type="Africa/Lubumbashi">
  1683. <exemplarCity>လူဘွန်းဘာရှီ</exemplarCity>
  1684. </zone>
  1685. <zone type="Africa/Bangui">
  1686. <exemplarCity>ဘာန်ဂီး</exemplarCity>
  1687. </zone>
  1688. <zone type="Africa/Brazzaville">
  1689. <exemplarCity>ဘရားဇာဗီးလ်</exemplarCity>
  1690. </zone>
  1691. <zone type="Europe/Zurich">
  1692. <exemplarCity>ဇူရီချ်</exemplarCity>
  1693. </zone>
  1694. <zone type="Africa/Abidjan">
  1695. <exemplarCity>အာဘီဂျွန်း</exemplarCity>
  1696. </zone>
  1697. <zone type="Pacific/Rarotonga">
  1698. <exemplarCity>ရာရိုတွန်းဂါ</exemplarCity>
  1699. </zone>
  1700. <zone type="Pacific/Easter">
  1701. <exemplarCity>အီစတာ</exemplarCity>
  1702. </zone>
  1703. <zone type="America/Santiago">
  1704. <exemplarCity>ဆန်တီအာဂို</exemplarCity>
  1705. </zone>
  1706. <zone type="Africa/Douala">
  1707. <exemplarCity>ဒိုအူအာလာ</exemplarCity>
  1708. </zone>
  1709. <zone type="Asia/Kashgar">
  1710. <exemplarCity>ခါရှီးဂ်</exemplarCity>
  1711. </zone>
  1712. <zone type="Asia/Urumqi">
  1713. <exemplarCity>အီရင်ချီး</exemplarCity>
  1714. </zone>
  1715. <zone type="Asia/Chongqing">
  1716. <exemplarCity>ချောင်ချင်း</exemplarCity>
  1717. </zone>
  1718. <zone type="Asia/Shanghai">
  1719. <exemplarCity>ရှန်ဟိုင်း</exemplarCity>
  1720. </zone>
  1721. <zone type="Asia/Harbin">
  1722. <exemplarCity>ဟာဘင်</exemplarCity>
  1723. </zone>
  1724. <zone type="America/Bogota">
  1725. <exemplarCity>ဘိုဂိုတာ</exemplarCity>
  1726. </zone>
  1727. <zone type="America/Costa_Rica">
  1728. <exemplarCity>ကိုစတာရီကာ</exemplarCity>
  1729. </zone>
  1730. <zone type="America/Havana">
  1731. <exemplarCity>ဟာဗာနာ</exemplarCity>
  1732. </zone>
  1733. <zone type="Atlantic/Cape_Verde">
  1734. <exemplarCity>ကိတ်ဗာဒု</exemplarCity>
  1735. </zone>
  1736. <zone type="America/Curacao">
  1737. <exemplarCity>ခူရာကာအို</exemplarCity>
  1738. </zone>
  1739. <zone type="Indian/Christmas">
  1740. <exemplarCity>ခရစ်စမတ်စ်</exemplarCity>
  1741. </zone>
  1742. <zone type="Asia/Nicosia">
  1743. <exemplarCity>နီခိုစီးအား</exemplarCity>
  1744. </zone>
  1745. <zone type="Europe/Prague">
  1746. <exemplarCity>ပါရာဂ်</exemplarCity>
  1747. </zone>
  1748. <zone type="Europe/Busingen">
  1749. <exemplarCity>ဘူရှင်ဂျင်</exemplarCity>
  1750. </zone>
  1751. <zone type="Europe/Berlin">
  1752. <exemplarCity>ဘာလင်</exemplarCity>
  1753. </zone>
  1754. <zone type="Africa/Djibouti">
  1755. <exemplarCity>ဂျီးဘူးတီ</exemplarCity>
  1756. </zone>
  1757. <zone type="Europe/Copenhagen">
  1758. <exemplarCity>ကိုပါဟေဂန်</exemplarCity>
  1759. </zone>
  1760. <zone type="America/Dominica">
  1761. <exemplarCity>ဒိုမီနီကာ</exemplarCity>
  1762. </zone>
  1763. <zone type="America/Santo_Domingo">
  1764. <exemplarCity>ဆန်တို ဒိုမီနီကာ</exemplarCity>
  1765. </zone>
  1766. <zone type="Africa/Algiers">
  1767. <exemplarCity>အယ်လ်ဂျီးအားစ်</exemplarCity>
  1768. </zone>
  1769. <zone type="Pacific/Galapagos">
  1770. <exemplarCity>ဂါလာပါဂိုစ်</exemplarCity>
  1771. </zone>
  1772. <zone type="America/Guayaquil">
  1773. <exemplarCity>ဂွာရာကီးလ်</exemplarCity>
  1774. </zone>
  1775. <zone type="Europe/Tallinn">
  1776. <exemplarCity>ထားလင်</exemplarCity>
  1777. </zone>
  1778. <zone type="Africa/Cairo">
  1779. <exemplarCity>ကိုင်ရို</exemplarCity>
  1780. </zone>
  1781. <zone type="Africa/El_Aaiun">
  1782. <exemplarCity>အယ်လ်အာယွန်း</exemplarCity>
  1783. </zone>
  1784. <zone type="Africa/Asmera">
  1785. <exemplarCity>အားစ်မားရာ</exemplarCity>
  1786. </zone>
  1787. <zone type="Atlantic/Canary">
  1788. <exemplarCity>ကာနာရီ</exemplarCity>
  1789. </zone>
  1790. <zone type="Africa/Ceuta">
  1791. <exemplarCity>ဆီရူးတာ</exemplarCity>
  1792. </zone>
  1793. <zone type="Europe/Madrid">
  1794. <exemplarCity>မာဒရစ်</exemplarCity>
  1795. </zone>
  1796. <zone type="Africa/Addis_Ababa">
  1797. <exemplarCity>အားဒစ် အားဘဘာ</exemplarCity>
  1798. </zone>
  1799. <zone type="Europe/Helsinki">
  1800. <exemplarCity>ဟဲလ်စင်ကီ</exemplarCity>
  1801. </zone>
  1802. <zone type="Pacific/Fiji">
  1803. <exemplarCity>ဖီဂျီ</exemplarCity>
  1804. </zone>
  1805. <zone type="Atlantic/Stanley">
  1806. <exemplarCity>စတန်လီ</exemplarCity>
  1807. </zone>
  1808. <zone type="Pacific/Truk">
  1809. <exemplarCity>ချုခ်</exemplarCity>
  1810. </zone>
  1811. <zone type="Pacific/Ponape">
  1812. <exemplarCity>ဖိုနာဖဲအ်</exemplarCity>
  1813. </zone>
  1814. <zone type="Pacific/Kosrae">
  1815. <exemplarCity>ခိုစ်ရိုင်</exemplarCity>
  1816. </zone>
  1817. <zone type="Atlantic/Faeroe">
  1818. <exemplarCity>ဖဲရို</exemplarCity>
  1819. </zone>
  1820. <zone type="Europe/Paris">
  1821. <exemplarCity>ပါရီစ်</exemplarCity>
  1822. </zone>
  1823. <zone type="Africa/Libreville">
  1824. <exemplarCity>လီဗရာဗီးလ်</exemplarCity>
  1825. </zone>
  1826. <zone type="Europe/London">
  1827. <long>
  1828. <daylight>ဗြိတိန်နွေရာသီအချိန်</daylight>
  1829. </long>
  1830. <exemplarCity>လန်ဒန်</exemplarCity>
  1831. </zone>
  1832. <zone type="America/Grenada">
  1833. <exemplarCity>ဂရီနာဒါ</exemplarCity>
  1834. </zone>
  1835. <zone type="Asia/Tbilisi">
  1836. <exemplarCity>တဘီးလီစီ</exemplarCity>
  1837. </zone>
  1838. <zone type="America/Cayenne">
  1839. <exemplarCity>ခါရန်း</exemplarCity>
  1840. </zone>
  1841. <zone type="Europe/Guernsey">
  1842. <exemplarCity>ဂွန်းဇီ</exemplarCity>
  1843. </zone>
  1844. <zone type="Africa/Accra">
  1845. <exemplarCity>အက်ကရာ</exemplarCity>
  1846. </zone>
  1847. <zone type="Europe/Gibraltar">
  1848. <exemplarCity>ဂျီဘရော်လ်တာ</exemplarCity>
  1849. </zone>
  1850. <zone type="America/Thule">
  1851. <exemplarCity>သုလီ</exemplarCity>
  1852. </zone>
  1853. <zone type="America/Godthab">
  1854. <exemplarCity>နုအုခ်</exemplarCity>
  1855. </zone>
  1856. <zone type="America/Scoresbysund">
  1857. <exemplarCity>အို့တိုခိုတိုမစ်</exemplarCity>
  1858. </zone>
  1859. <zone type="America/Danmarkshavn">
  1860. <exemplarCity>ဒန်မတ်ရှာန်</exemplarCity>
  1861. </zone>
  1862. <zone type="Africa/Banjul">
  1863. <exemplarCity>ဘန်ဂျုးလ်</exemplarCity>
  1864. </zone>
  1865. <zone type="Africa/Conakry">
  1866. <exemplarCity>ခေါ်နာခရီး</exemplarCity>
  1867. </zone>
  1868. <zone type="America/Guadeloupe">
  1869. <exemplarCity>ဂူအာဒီလူပ်</exemplarCity>
  1870. </zone>
  1871. <zone type="Africa/Malabo">
  1872. <exemplarCity>မာလာဘို</exemplarCity>
  1873. </zone>
  1874. <zone type="Europe/Athens">
  1875. <exemplarCity>အေသင်</exemplarCity>
  1876. </zone>
  1877. <zone type="Atlantic/South_Georgia">
  1878. <exemplarCity>စောက်ဂျိုဂျီရာ</exemplarCity>
  1879. </zone>
  1880. <zone type="America/Guatemala">
  1881. <exemplarCity>ဂွာတီမာလာ</exemplarCity>
  1882. </zone>
  1883. <zone type="Pacific/Guam">
  1884. <exemplarCity>ဂူအမ်</exemplarCity>
  1885. </zone>
  1886. <zone type="Africa/Bissau">
  1887. <exemplarCity>ဘီစာအို</exemplarCity>
  1888. </zone>
  1889. <zone type="America/Guyana">
  1890. <exemplarCity>ဂိုင်းရာနား</exemplarCity>
  1891. </zone>
  1892. <zone type="Asia/Hong_Kong">
  1893. <exemplarCity>ဟောင်ကောင်</exemplarCity>
  1894. </zone>
  1895. <zone type="America/Tegucigalpa">
  1896. <exemplarCity>တီဂူစီဂလ်ပါ</exemplarCity>
  1897. </zone>
  1898. <zone type="Europe/Zagreb">
  1899. <exemplarCity>ဇာဂ်ဂရက်ဘ်</exemplarCity>
  1900. </zone>
  1901. <zone type="America/Port-au-Prince">
  1902. <exemplarCity>ပို့တ်-အို-ပရင့်စ်</exemplarCity>
  1903. </zone>
  1904. <zone type="Europe/Budapest">
  1905. <exemplarCity>ဘူတာပက်စ်</exemplarCity>
  1906. </zone>
  1907. <zone type="Asia/Jakarta">
  1908. <exemplarCity>ဂျာကာတာ</exemplarCity>
  1909. </zone>
  1910. <zone type="Asia/Pontianak">
  1911. <exemplarCity>ပွန်တီအားနာ့ခ်</exemplarCity>
  1912. </zone>
  1913. <zone type="Asia/Makassar">
  1914. <exemplarCity>မခက်စ်ဆာ</exemplarCity>
  1915. </zone>
  1916. <zone type="Asia/Jayapura">
  1917. <exemplarCity>ဂျာရာပူရာ</exemplarCity>
  1918. </zone>
  1919. <zone type="Europe/Dublin">
  1920. <long>
  1921. <daylight>အိုင်းရစ်နွေရာသီအချိန်</daylight>
  1922. </long>
  1923. <exemplarCity>ဒတ်ဘလင်</exemplarCity>
  1924. </zone>
  1925. <zone type="Asia/Jerusalem">
  1926. <exemplarCity>ဂျေရုစလန်</exemplarCity>
  1927. </zone>
  1928. <zone type="Europe/Isle_of_Man">
  1929. <exemplarCity>မန်းကျွန်း</exemplarCity>
  1930. </zone>
  1931. <zone type="Asia/Calcutta">
  1932. <exemplarCity>ကိုလ်ကာတာ</exemplarCity>
  1933. </zone>
  1934. <zone type="Indian/Chagos">
  1935. <exemplarCity>ချာဂိုစ်</exemplarCity>
  1936. </zone>
  1937. <zone type="Asia/Baghdad">
  1938. <exemplarCity>ဘက်ဂဒက်</exemplarCity>
  1939. </zone>
  1940. <zone type="Asia/Tehran">
  1941. <exemplarCity>တီရန်</exemplarCity>
  1942. </zone>
  1943. <zone type="Atlantic/Reykjavik">
  1944. <exemplarCity>ရေးခဗခ့်</exemplarCity>
  1945. </zone>
  1946. <zone type="Europe/Rome">
  1947. <exemplarCity>ရောမ</exemplarCity>
  1948. </zone>
  1949. <zone type="Europe/Jersey">
  1950. <exemplarCity>ဂျဲးအ်ဇီ</exemplarCity>
  1951. </zone>
  1952. <zone type="America/Jamaica">
  1953. <exemplarCity>ဂျာမေကာ</exemplarCity>
  1954. </zone>
  1955. <zone type="Asia/Amman">
  1956. <exemplarCity>အာမာန်း</exemplarCity>
  1957. </zone>
  1958. <zone type="Asia/Tokyo">
  1959. <exemplarCity>တိုကျို</exemplarCity>
  1960. </zone>
  1961. <zone type="Africa/Nairobi">
  1962. <exemplarCity>နိုင်ရိုဘီ</exemplarCity>
  1963. </zone>
  1964. <zone type="Asia/Bishkek">
  1965. <exemplarCity>ဘီရှ်ခက်</exemplarCity>
  1966. </zone>
  1967. <zone type="Asia/Phnom_Penh">
  1968. <exemplarCity>ပနွမ်ဖင်</exemplarCity>
  1969. </zone>
  1970. <zone type="Pacific/Enderbury">
  1971. <exemplarCity>အန်ဒါဘူရီ</exemplarCity>
  1972. </zone>
  1973. <zone type="Pacific/Kiritimati">
  1974. <exemplarCity>ခရစ့်မားစ်</exemplarCity>
  1975. </zone>
  1976. <zone type="Pacific/Tarawa">
  1977. <exemplarCity>တာရာဝါ</exemplarCity>
  1978. </zone>
  1979. <zone type="Indian/Comoro">
  1980. <exemplarCity>ကွန်မိုရို</exemplarCity>
  1981. </zone>
  1982. <zone type="America/St_Kitts">
  1983. <exemplarCity>စိန့်ကိစ်</exemplarCity>
  1984. </zone>
  1985. <zone type="Asia/Pyongyang">
  1986. <exemplarCity>ပြုံယန်း</exemplarCity>
  1987. </zone>
  1988. <zone type="Asia/Seoul">
  1989. <exemplarCity>ဆိုးလ်</exemplarCity>
  1990. </zone>
  1991. <zone type="Asia/Kuwait">
  1992. <exemplarCity>ကူဝိတ်</exemplarCity>
  1993. </zone>
  1994. <zone type="America/Cayman">
  1995. <exemplarCity>ကေမန်</exemplarCity>
  1996. </zone>
  1997. <zone type="Asia/Aqtau">
  1998. <exemplarCity>အက်တာဥု</exemplarCity>
  1999. </zone>
  2000. <zone type="Asia/Oral">
  2001. <exemplarCity>အောရဲယ်</exemplarCity>
  2002. </zone>
  2003. <zone type="Asia/Aqtobe">
  2004. <exemplarCity>အာခ်တူးဘီ</exemplarCity>
  2005. </zone>
  2006. <zone type="Asia/Qyzylorda">
  2007. <exemplarCity>ခွီဇိုင်လိုဒါ</exemplarCity>
  2008. </zone>
  2009. <zone type="Asia/Almaty">
  2010. <exemplarCity>အော်မာတီ</exemplarCity>
  2011. </zone>
  2012. <zone type="Asia/Vientiane">
  2013. <exemplarCity>ဗီအင်ချမ်</exemplarCity>
  2014. </zone>
  2015. <zone type="Asia/Beirut">
  2016. <exemplarCity>ဘေရု</exemplarCity>
  2017. </zone>
  2018. <zone type="America/St_Lucia">
  2019. <exemplarCity>စိန့်လူစီအာ</exemplarCity>
  2020. </zone>
  2021. <zone type="Europe/Vaduz">
  2022. <exemplarCity>ဗာဒူးစ်</exemplarCity>
  2023. </zone>
  2024. <zone type="Asia/Colombo">
  2025. <exemplarCity>ကိုလံဘို</exemplarCity>
  2026. </zone>
  2027. <zone type="Africa/Monrovia">
  2028. <exemplarCity>မွန်ရိုဗီအာ</exemplarCity>
  2029. </zone>
  2030. <zone type="Africa/Maseru">
  2031. <exemplarCity>မာဆူရူး</exemplarCity>
  2032. </zone>
  2033. <zone type="Europe/Vilnius">
  2034. <exemplarCity>ဗီးလ်နီအိုးစ်</exemplarCity>
  2035. </zone>
  2036. <zone type="Europe/Luxembourg">
  2037. <exemplarCity>လူဇင်ဘာဂ်</exemplarCity>
  2038. </zone>
  2039. <zone type="Europe/Riga">
  2040. <exemplarCity>ရီဂါ</exemplarCity>
  2041. </zone>
  2042. <zone type="Africa/Tripoli">
  2043. <exemplarCity>ထရီပိုလီ</exemplarCity>
  2044. </zone>
  2045. <zone type="Africa/Casablanca">
  2046. <exemplarCity>ကာစာဘလန်ကာ</exemplarCity>
  2047. </zone>
  2048. <zone type="Europe/Monaco">
  2049. <exemplarCity>မိုနာကို</exemplarCity>
  2050. </zone>
  2051. <zone type="Europe/Chisinau">
  2052. <exemplarCity>ချီရှီနားအူ</exemplarCity>
  2053. </zone>
  2054. <zone type="Europe/Podgorica">
  2055. <exemplarCity>ဖို့တ်ဂိုရီစာ</exemplarCity>
  2056. </zone>
  2057. <zone type="America/Marigot">
  2058. <exemplarCity>မာရီဂိုတ်</exemplarCity>
  2059. </zone>
  2060. <zone type="Indian/Antananarivo">
  2061. <exemplarCity>အန်တာနာနာရီးဘို</exemplarCity>
  2062. </zone>
  2063. <zone type="Pacific/Kwajalein">
  2064. <exemplarCity>ခွာဂျာလိန်</exemplarCity>
  2065. </zone>
  2066. <zone type="Pacific/Majuro">
  2067. <exemplarCity>မူဂျုးရို</exemplarCity>
  2068. </zone>
  2069. <zone type="Europe/Skopje">
  2070. <exemplarCity>စကော့ပ်ရာ</exemplarCity>
  2071. </zone>
  2072. <zone type="Africa/Bamako">
  2073. <exemplarCity>ဘာမာကို</exemplarCity>
  2074. </zone>
  2075. <zone type="Asia/Rangoon">
  2076. <exemplarCity>ရန်ကုန်</exemplarCity>
  2077. </zone>
  2078. <zone type="Asia/Hovd">
  2079. <exemplarCity>ဟိုးဗ်</exemplarCity>
  2080. </zone>
  2081. <zone type="Asia/Ulaanbaatar">
  2082. <exemplarCity>ဥလန်ဘာတော</exemplarCity>
  2083. </zone>
  2084. <zone type="Asia/Choibalsan">
  2085. <exemplarCity>ချွဲဘောဆန်</exemplarCity>
  2086. </zone>
  2087. <zone type="Asia/Macau">
  2088. <exemplarCity>မာကာအို</exemplarCity>
  2089. </zone>
  2090. <zone type="Pacific/Saipan">
  2091. <exemplarCity>ဆိုင်းပန်</exemplarCity>
  2092. </zone>
  2093. <zone type="America/Martinique">
  2094. <exemplarCity>မာတီနီဂ်</exemplarCity>
  2095. </zone>
  2096. <zone type="Africa/Nouakchott">
  2097. <exemplarCity>နိုအာ့ခ်ရှော့တ်</exemplarCity>
  2098. </zone>
  2099. <zone type="America/Montserrat">
  2100. <exemplarCity>မွန့်(တ်)ဆေးရတ်</exemplarCity>
  2101. </zone>
  2102. <zone type="Europe/Malta">
  2103. <exemplarCity>မော်လ်တာ</exemplarCity>
  2104. </zone>
  2105. <zone type="Indian/Mauritius">
  2106. <exemplarCity>မောရီလျာ</exemplarCity>
  2107. </zone>
  2108. <zone type="Indian/Maldives">
  2109. <exemplarCity>မောလ်ဒီးဖ်စ်</exemplarCity>
  2110. </zone>
  2111. <zone type="Africa/Blantyre">
  2112. <exemplarCity>ဘလန်တိုင်းအာ</exemplarCity>
  2113. </zone>
  2114. <zone type="America/Tijuana">
  2115. <exemplarCity>တီဂျုအာနာ</exemplarCity>
  2116. </zone>
  2117. <zone type="America/Santa_Isabel">
  2118. <exemplarCity>ဆန်တာ အီးဇဘဲယ်လ်</exemplarCity>
  2119. </zone>
  2120. <zone type="America/Hermosillo">
  2121. <exemplarCity>ဟာမိုစ်စီလို</exemplarCity>
  2122. </zone>
  2123. <zone type="America/Mazatlan">
  2124. <exemplarCity>မာဇတ်လန်</exemplarCity>
  2125. </zone>
  2126. <zone type="America/Chihuahua">
  2127. <exemplarCity>ချီဟူအာဟူအာ</exemplarCity>
  2128. </zone>
  2129. <zone type="America/Bahia_Banderas">
  2130. <exemplarCity>ဘာဟီအာ ဘန်ဒရက်စ်</exemplarCity>
  2131. </zone>
  2132. <zone type="America/Ojinaga">
  2133. <exemplarCity>အိုဂျီနာဂါ</exemplarCity>
  2134. </zone>
  2135. <zone type="America/Monterrey">
  2136. <exemplarCity>မွန်တီရဲယ်လ်</exemplarCity>
  2137. </zone>
  2138. <zone type="America/Mexico_City">
  2139. <exemplarCity>မက်ခ်စီကိုစီတီး</exemplarCity>
  2140. </zone>
  2141. <zone type="America/Matamoros">
  2142. <exemplarCity>မာတာမိုရိုစ်</exemplarCity>
  2143. </zone>
  2144. <zone type="America/Merida">
  2145. <exemplarCity>မီရီဒါ</exemplarCity>
  2146. </zone>
  2147. <zone type="America/Cancun">
  2148. <exemplarCity>ကန်ခန်</exemplarCity>
  2149. </zone>
  2150. <zone type="Asia/Kuala_Lumpur">
  2151. <exemplarCity>ကွာလာလမ်ပူ</exemplarCity>
  2152. </zone>
  2153. <zone type="Asia/Kuching">
  2154. <exemplarCity>ကူချင်</exemplarCity>
  2155. </zone>
  2156. <zone type="Africa/Maputo">
  2157. <exemplarCity>မာပူးတို</exemplarCity>
  2158. </zone>
  2159. <zone type="Africa/Windhoek">
  2160. <exemplarCity>ဗင်းဟူးခ်</exemplarCity>
  2161. </zone>
  2162. <zone type="Pacific/Noumea">
  2163. <exemplarCity>နူမယ်အာ</exemplarCity>
  2164. </zone>
  2165. <zone type="Africa/Niamey">
  2166. <exemplarCity>ညာမဲယ်</exemplarCity>
  2167. </zone>
  2168. <zone type="Pacific/Norfolk">
  2169. <exemplarCity>နော်ဖော့ခ်</exemplarCity>
  2170. </zone>
  2171. <zone type="Africa/Lagos">
  2172. <exemplarCity>လာဂိုစ်</exemplarCity>
  2173. </zone>
  2174. <zone type="America/Managua">
  2175. <exemplarCity>မာနာဂူအာ</exemplarCity>
  2176. </zone>
  2177. <zone type="Europe/Amsterdam">
  2178. <exemplarCity>အမ္စတာဒန်</exemplarCity>
  2179. </zone>
  2180. <zone type="Europe/Oslo">
  2181. <exemplarCity>အော့စ်လို</exemplarCity>
  2182. </zone>
  2183. <zone type="Asia/Katmandu">
  2184. <exemplarCity>ခတ္တမန္ဒူ</exemplarCity>
  2185. </zone>
  2186. <zone type="Pacific/Nauru">
  2187. <exemplarCity>နာဥူရူ</exemplarCity>
  2188. </zone>
  2189. <zone type="Pacific/Niue">
  2190. <exemplarCity>နီဦးအေ</exemplarCity>
  2191. </zone>
  2192. <zone type="Pacific/Chatham">
  2193. <exemplarCity>ချားသမ်</exemplarCity>
  2194. </zone>
  2195. <zone type="Pacific/Auckland">
  2196. <exemplarCity>အော့ကလန်</exemplarCity>
  2197. </zone>
  2198. <zone type="Asia/Muscat">
  2199. <exemplarCity>မတ်စ်ကက်တ်</exemplarCity>
  2200. </zone>
  2201. <zone type="America/Panama">
  2202. <exemplarCity>ပါနားမား</exemplarCity>
  2203. </zone>
  2204. <zone type="America/Lima">
  2205. <exemplarCity>လီမာ</exemplarCity>
  2206. </zone>
  2207. <zone type="Pacific/Tahiti">
  2208. <exemplarCity>တာဟီတီ</exemplarCity>
  2209. </zone>
  2210. <zone type="Pacific/Marquesas">
  2211. <exemplarCity>မာခေးအပ်စ်</exemplarCity>
  2212. </zone>
  2213. <zone type="Pacific/Gambier">
  2214. <exemplarCity>ဂန်ဘီအာ</exemplarCity>
  2215. </zone>
  2216. <zone type="Pacific/Port_Moresby">
  2217. <exemplarCity>ဖို့တ် မိုရက်စ်ဘီ</exemplarCity>
  2218. </zone>
  2219. <zone type="Asia/Manila">
  2220. <exemplarCity>မနီလာ</exemplarCity>
  2221. </zone>
  2222. <zone type="Asia/Karachi">
  2223. <exemplarCity>ကာရာချီ</exemplarCity>
  2224. </zone>
  2225. <zone type="Europe/Warsaw">
  2226. <exemplarCity>ဝါဆော</exemplarCity>
  2227. </zone>
  2228. <zone type="America/Miquelon">
  2229. <exemplarCity>မိခွီလွန်</exemplarCity>
  2230. </zone>
  2231. <zone type="Pacific/Pitcairn">
  2232. <exemplarCity>ပိကိန်း</exemplarCity>
  2233. </zone>
  2234. <zone type="America/Puerto_Rico">
  2235. <exemplarCity>ပိုတိုရီကို</exemplarCity>
  2236. </zone>
  2237. <zone type="Asia/Gaza">
  2238. <exemplarCity>ဂါဇာ</exemplarCity>
  2239. </zone>
  2240. <zone type="Asia/Hebron">
  2241. <exemplarCity>ဟီဘရွန်</exemplarCity>
  2242. </zone>
  2243. <zone type="Atlantic/Azores">
  2244. <exemplarCity>အာဇိုးစ်</exemplarCity>
  2245. </zone>
  2246. <zone type="Atlantic/Madeira">
  2247. <exemplarCity>မဒီးရာ</exemplarCity>
  2248. </zone>
  2249. <zone type="Europe/Lisbon">
  2250. <exemplarCity>လစ္စဘွန်</exemplarCity>
  2251. </zone>
  2252. <zone type="Pacific/Palau">
  2253. <exemplarCity>ဖလောင်</exemplarCity>
  2254. </zone>
  2255. <zone type="America/Asuncion">
  2256. <exemplarCity>အာဆူစီအွန်း</exemplarCity>
  2257. </zone>
  2258. <zone type="Asia/Qatar">
  2259. <exemplarCity>ကာတာ</exemplarCity>
  2260. </zone>
  2261. <zone type="Indian/Reunion">
  2262. <exemplarCity>ရယ်ယူးနယွန်</exemplarCity>
  2263. </zone>
  2264. <zone type="Europe/Bucharest">
  2265. <exemplarCity>ဘူချာရက်စ်</exemplarCity>
  2266. </zone>
  2267. <zone type="Europe/Belgrade">
  2268. <exemplarCity>ဘဲလ်ဂရိတ်</exemplarCity>
  2269. </zone>
  2270. <zone type="Europe/Kaliningrad">
  2271. <exemplarCity>ခါလီနင်ဂရက်</exemplarCity>
  2272. </zone>
  2273. <zone type="Europe/Moscow">
  2274. <exemplarCity>မော့စ်ကို</exemplarCity>
  2275. </zone>
  2276. <zone type="Europe/Volgograd">
  2277. <exemplarCity>ဗိုလ်ဂိုဂရက်</exemplarCity>
  2278. </zone>
  2279. <zone type="Europe/Samara">
  2280. <exemplarCity>ဆာမားရာ</exemplarCity>
  2281. </zone>
  2282. <zone type="Asia/Yekaterinburg">
  2283. <exemplarCity>ရယ်ခါးတီရင်ဘားခ်</exemplarCity>
  2284. </zone>
  2285. <zone type="Asia/Omsk">
  2286. <exemplarCity>အွမ်းစ်ခ်</exemplarCity>
  2287. </zone>
  2288. <zone type="Asia/Novosibirsk">
  2289. <exemplarCity>နိုဗိုစဲဘီအဲယ်စ်</exemplarCity>
  2290. </zone>
  2291. <zone type="Asia/Novokuznetsk">
  2292. <exemplarCity>နိုဗိုခူဇ်နက်စ်</exemplarCity>
  2293. </zone>
  2294. <zone type="Asia/Krasnoyarsk">
  2295. <exemplarCity>ခရာ့စ်နိုရာစ်</exemplarCity>
  2296. </zone>
  2297. <zone type="Asia/Irkutsk">
  2298. <exemplarCity>အီရူခူတ်</exemplarCity>
  2299. </zone>
  2300. <zone type="Asia/Yakutsk">
  2301. <exemplarCity>ယူခူးတ်စ်</exemplarCity>
  2302. </zone>
  2303. <zone type="Asia/Vladivostok">
  2304. <exemplarCity>ဗလာဒါဗိုစ်တိုခ်</exemplarCity>
  2305. </zone>
  2306. <zone type="Asia/Khandyga">
  2307. <exemplarCity>ခန်ဒိုင်ဂါ</exemplarCity>
  2308. </zone>
  2309. <zone type="Asia/Sakhalin">
  2310. <exemplarCity>စဲက်ခါလီးင်</exemplarCity>
  2311. </zone>
  2312. <zone type="Asia/Ust-Nera">
  2313. <exemplarCity>အူးစ် နီရား</exemplarCity>
  2314. </zone>
  2315. <zone type="Asia/Magadan">
  2316. <exemplarCity>မာဂါဒန်း</exemplarCity>
  2317. </zone>
  2318. <zone type="Asia/Kamchatka">
  2319. <exemplarCity>ခမ်ချာ့ခါ</exemplarCity>
  2320. </zone>
  2321. <zone type="Asia/Anadyr">
  2322. <exemplarCity>အန်အာဒီအာ</exemplarCity>
  2323. </zone>
  2324. <zone type="Africa/Kigali">
  2325. <exemplarCity>ခီဂါးလီ</exemplarCity>
  2326. </zone>
  2327. <zone type="Asia/Riyadh">
  2328. <exemplarCity>ရီယားဒ်</exemplarCity>
  2329. </zone>
  2330. <zone type="Pacific/Guadalcanal">
  2331. <exemplarCity>ဂွာဒါခယ်နယ်လ်</exemplarCity>
  2332. </zone>
  2333. <zone type="Indian/Mahe">
  2334. <exemplarCity>မာဟီ</exemplarCity>
  2335. </zone>
  2336. <zone type="Africa/Khartoum">
  2337. <exemplarCity>ကာတိုအန်</exemplarCity>
  2338. </zone>
  2339. <zone type="Europe/Stockholm">
  2340. <exemplarCity>စတော့ဟုမ်း</exemplarCity>
  2341. </zone>
  2342. <zone type="Asia/Singapore">
  2343. <exemplarCity>စင်္ဂပူ</exemplarCity>
  2344. </zone>
  2345. <zone type="Atlantic/St_Helena">
  2346. <exemplarCity>စိန့်ဟီလီနာ</exemplarCity>
  2347. </zone>
  2348. <zone type="Europe/Ljubljana">
  2349. <exemplarCity>လူဘလီအားနား</exemplarCity>
  2350. </zone>
  2351. <zone type="Arctic/Longyearbyen">
  2352. <exemplarCity>လောင်ရီယားဘရံ</exemplarCity>
  2353. </zone>
  2354. <zone type="Europe/Bratislava">
  2355. <exemplarCity>ဘရာတီးစ်လားဗာ</exemplarCity>
  2356. </zone>
  2357. <zone type="Africa/Freetown">
  2358. <exemplarCity>ဖရီးတောင်းန်</exemplarCity>
  2359. </zone>
  2360. <zone type="Europe/San_Marino">
  2361. <exemplarCity>ဆန်မရီးနို</exemplarCity>
  2362. </zone>
  2363. <zone type="Africa/Dakar">
  2364. <exemplarCity>ဒါကာ</exemplarCity>
  2365. </zone>
  2366. <zone type="Africa/Mogadishu">
  2367. <exemplarCity>မော်ဂါဒီးသျုး</exemplarCity>
  2368. </zone>
  2369. <zone type="America/Paramaribo">
  2370. <exemplarCity>ပါရာမာရီဘို</exemplarCity>
  2371. </zone>
  2372. <zone type="Africa/Juba">
  2373. <exemplarCity>ဂျုဘာ</exemplarCity>
  2374. </zone>
  2375. <zone type="Africa/Sao_Tome">
  2376. <exemplarCity>ဆာအို တိုမီ</exemplarCity>
  2377. </zone>
  2378. <zone type="America/El_Salvador">
  2379. <exemplarCity>အဲလ် ဆာဗီဒို</exemplarCity>
  2380. </zone>
  2381. <zone type="America/Lower_Princes">
  2382. <exemplarCity>လိုအာပရင့်စ် ကွာတာ</exemplarCity>
  2383. </zone>
  2384. <zone type="Asia/Damascus">
  2385. <exemplarCity>ဒါးမားစ်ကတ်စ်</exemplarCity>
  2386. </zone>
  2387. <zone type="Africa/Mbabane">
  2388. <exemplarCity>ဘားဘာန်း</exemplarCity>
  2389. </zone>
  2390. <zone type="America/Grand_Turk">
  2391. <exemplarCity>ဂရန်ဒ် တခ်</exemplarCity>
  2392. </zone>
  2393. <zone type="Africa/Ndjamena">
  2394. <exemplarCity>အင်ဂျာမီနာ</exemplarCity>
  2395. </zone>
  2396. <zone type="Indian/Kerguelen">
  2397. <exemplarCity>ခူဂါလန်</exemplarCity>
  2398. </zone>
  2399. <zone type="Africa/Lome">
  2400. <exemplarCity>လိုမီ</exemplarCity>
  2401. </zone>
  2402. <zone type="Asia/Bangkok">
  2403. <exemplarCity>ဘန်ကောက်</exemplarCity>
  2404. </zone>
  2405. <zone type="Asia/Dushanbe">
  2406. <exemplarCity>ဒူရှောန်းဘာ</exemplarCity>
  2407. </zone>
  2408. <zone type="Pacific/Fakaofo">
  2409. <exemplarCity>ဖာခါအိုဖို</exemplarCity>
  2410. </zone>
  2411. <zone type="Asia/Dili">
  2412. <exemplarCity>ဒစ်လီ</exemplarCity>
  2413. </zone>
  2414. <zone type="Asia/Ashgabat">
  2415. <exemplarCity>အာရှ်ဂါဘာဒ်</exemplarCity>
  2416. </zone>
  2417. <zone type="Africa/Tunis">
  2418. <exemplarCity>တူနီစ်</exemplarCity>
  2419. </zone>
  2420. <zone type="Pacific/Tongatapu">
  2421. <exemplarCity>တွန်ဂါတာပု</exemplarCity>
  2422. </zone>
  2423. <zone type="Europe/Istanbul">
  2424. <exemplarCity>အစ္စတန်ဘူလ်</exemplarCity>
  2425. </zone>
  2426. <zone type="America/Port_of_Spain">
  2427. <exemplarCity>ပို့တ် အော့ဖ် စပိန်</exemplarCity>
  2428. </zone>
  2429. <zone type="Pacific/Funafuti">
  2430. <exemplarCity>ဖူနာဖူတီ</exemplarCity>
  2431. </zone>
  2432. <zone type="Asia/Taipei">
  2433. <exemplarCity>ထိုင်ပေ</exemplarCity>
  2434. </zone>
  2435. <zone type="Africa/Dar_es_Salaam">
  2436. <exemplarCity>ဒါအက်စ်ဆာလမ်း</exemplarCity>
  2437. </zone>
  2438. <zone type="Europe/Uzhgorod">
  2439. <exemplarCity>ဥဇ်ဂိုရို့တ်</exemplarCity>
  2440. </zone>
  2441. <zone type="Europe/Kiev">
  2442. <exemplarCity>ခီးအက်ဖ်</exemplarCity>
  2443. </zone>
  2444. <zone type="Europe/Simferopol">
  2445. <exemplarCity>စင်ဖာရိုးဖို</exemplarCity>
  2446. </zone>
  2447. <zone type="Europe/Zaporozhye">
  2448. <exemplarCity>ဇာဖိုရိုးစ်ဂျာ</exemplarCity>
  2449. </zone>
  2450. <zone type="Africa/Kampala">
  2451. <exemplarCity>ခမ်ပါးလား</exemplarCity>
  2452. </zone>
  2453. <zone type="Pacific/Midway">
  2454. <exemplarCity>မစ်ဒ်ဝေး</exemplarCity>
  2455. </zone>
  2456. <zone type="Pacific/Johnston">
  2457. <exemplarCity>ဂျွန်စတန်</exemplarCity>
  2458. </zone>
  2459. <zone type="Pacific/Wake">
  2460. <exemplarCity>ဝက်ခ်</exemplarCity>
  2461. </zone>
  2462. <zone type="America/Adak">
  2463. <exemplarCity>အာဒခ်</exemplarCity>
  2464. </zone>
  2465. <zone type="America/Nome">
  2466. <exemplarCity>နိုမီ</exemplarCity>
  2467. </zone>
  2468. <zone type="Pacific/Honolulu">
  2469. <exemplarCity>ဟိုနိုလူလူ</exemplarCity>
  2470. </zone>
  2471. <zone type="America/Anchorage">
  2472. <exemplarCity>အန်ကာရေ့ဂျ်</exemplarCity>
  2473. </zone>
  2474. <zone type="America/Yakutat">
  2475. <exemplarCity>ရာကုတတ်</exemplarCity>
  2476. </zone>
  2477. <zone type="America/Sitka">
  2478. <exemplarCity>စစ်ကာ</exemplarCity>
  2479. </zone>
  2480. <zone type="America/Juneau">
  2481. <exemplarCity>ဂျုနိုအော</exemplarCity>
  2482. </zone>
  2483. <zone type="America/Metlakatla">
  2484. <exemplarCity>မက်တ်လာကက်လာ</exemplarCity>
  2485. </zone>
  2486. <zone type="America/Los_Angeles">
  2487. <exemplarCity>လော့စ်အိန်ဂျယ်လိစ်</exemplarCity>
  2488. </zone>
  2489. <zone type="America/Boise">
  2490. <exemplarCity>ဘိုအီဇီ</exemplarCity>
  2491. </zone>
  2492. <zone type="America/Phoenix">
  2493. <exemplarCity>ဖီးနစ်</exemplarCity>
  2494. </zone>
  2495. <zone type="America/Denver">
  2496. <exemplarCity>ဒင်ဗာ</exemplarCity>
  2497. </zone>
  2498. <zone type="America/North_Dakota/Beulah">
  2499. <exemplarCity>ဘီဥလာ မြောက်ဒါကိုတာ</exemplarCity>
  2500. </zone>
  2501. <zone type="America/North_Dakota/New_Salem">
  2502. <exemplarCity>နယူးစီလန် မြောက်ဒါကိုတာ</exemplarCity>
  2503. </zone>
  2504. <zone type="America/North_Dakota/Center">
  2505. <exemplarCity>စင်တာ မြောက်ဒါကိုတာ</exemplarCity>
  2506. </zone>
  2507. <zone type="America/Chicago">
  2508. <exemplarCity>ချီကာကို</exemplarCity>
  2509. </zone>
  2510. <zone type="America/Menominee">
  2511. <exemplarCity>မီနိုမီနီး</exemplarCity>
  2512. </zone>
  2513. <zone type="America/Indiana/Vincennes">
  2514. <exemplarCity>ဗင်ဆင့်စ် အင်ဒီအားနား</exemplarCity>
  2515. </zone>
  2516. <zone type="America/Indiana/Petersburg">
  2517. <exemplarCity>ပီတာဘာဂ်စ် အင်ဒီအားနား</exemplarCity>
  2518. </zone>
  2519. <zone type="America/Indiana/Tell_City">
  2520. <exemplarCity>တဲလ်စီးတီး အင်ဒီအားနား</exemplarCity>
  2521. </zone>
  2522. <zone type="America/Indiana/Knox">
  2523. <exemplarCity>နို့ခ်စ် အင်ဒီအားနား</exemplarCity>
  2524. </zone>
  2525. <zone type="America/Indiana/Winamac">
  2526. <exemplarCity>ဝီနာမက်ခ် အင်ဒီအားနား</exemplarCity>
  2527. </zone>
  2528. <zone type="America/Indiana/Marengo">
  2529. <exemplarCity>မာရန်ဂို အင်ဒီအားနား</exemplarCity>
  2530. </zone>
  2531. <zone type="America/Indianapolis">
  2532. <exemplarCity>အင်ဒီယားနားပိုလစ်</exemplarCity>
  2533. </zone>
  2534. <zone type="America/Louisville">
  2535. <exemplarCity>လူအီးစ်ဗီလ်</exemplarCity>
  2536. </zone>
  2537. <zone type="America/Indiana/Vevay">
  2538. <exemplarCity>ဗီဗဲ အင်ဒီအားနား</exemplarCity>
  2539. </zone>
  2540. <zone type="America/Kentucky/Monticello">
  2541. <exemplarCity>မွန်တီဆယ်လို ကင်တပ်ခ်ကီး</exemplarCity>
  2542. </zone>
  2543. <zone type="America/Detroit">
  2544. <exemplarCity>ဒေထရိုအ်</exemplarCity>
  2545. </zone>
  2546. <zone type="America/New_York">
  2547. <exemplarCity>နယူးယောက်</exemplarCity>
  2548. </zone>
  2549. <zone type="America/Montevideo">
  2550. <exemplarCity>မွန်တီဗီဒီအို</exemplarCity>
  2551. </zone>
  2552. <zone type="Asia/Samarkand">
  2553. <exemplarCity>ဆမ်းမာခန်းဒ်</exemplarCity>
  2554. </zone>
  2555. <zone type="Asia/Tashkent">
  2556. <exemplarCity>တာရှ်ကဲန့်</exemplarCity>
  2557. </zone>
  2558. <zone type="Europe/Vatican">
  2559. <exemplarCity>ဗာတီကန်</exemplarCity>
  2560. </zone>
  2561. <zone type="America/St_Vincent">
  2562. <exemplarCity>စိန့်ဗင်းဆင့်</exemplarCity>
  2563. </zone>
  2564. <zone type="America/Caracas">
  2565. <exemplarCity>ကာရာကာစ်</exemplarCity>
  2566. </zone>
  2567. <zone type="America/Tortola">
  2568. <exemplarCity>တောတိုလာ</exemplarCity>
  2569. </zone>
  2570. <zone type="America/St_Thomas">
  2571. <exemplarCity>စိန့်သောမားစ်</exemplarCity>
  2572. </zone>
  2573. <zone type="Asia/Saigon">
  2574. <exemplarCity>ဟိုချီမင်</exemplarCity>
  2575. </zone>
  2576. <zone type="Pacific/Efate">
  2577. <exemplarCity>အီဖာတီ</exemplarCity>
  2578. </zone>
  2579. <zone type="Pacific/Wallis">
  2580. <exemplarCity>ဝေါလီစ်</exemplarCity>
  2581. </zone>
  2582. <zone type="Pacific/Apia">
  2583. <exemplarCity>အားပီအား</exemplarCity>
  2584. </zone>
  2585. <zone type="Asia/Aden">
  2586. <exemplarCity>အာဒင်</exemplarCity>
  2587. </zone>
  2588. <zone type="Indian/Mayotte">
  2589. <exemplarCity>မာရော့တ်</exemplarCity>
  2590. </zone>
  2591. <zone type="Africa/Johannesburg">
  2592. <exemplarCity>ဂျိုဟန်နက်စ်ဘခ်</exemplarCity>
  2593. </zone>
  2594. <zone type="Africa/Lusaka">
  2595. <exemplarCity>လူစားခါး</exemplarCity>
  2596. </zone>
  2597. <zone type="Africa/Harare">
  2598. <exemplarCity>ဟာရားရဲယ်</exemplarCity>
  2599. </zone>
  2600. <metazone type="Afghanistan">
  2601. <long>
  2602. <standard>အာဖဂန်နစ္စတန် အချိန်</standard>
  2603. </long>
  2604. </metazone>
  2605. <metazone type="Africa_Central">
  2606. <long>
  2607. <standard>အလယ်ပိုင်း အာဖရိက အချိန်</standard>
  2608. </long>
  2609. </metazone>
  2610. <metazone type="Africa_Eastern">
  2611. <long>
  2612. <standard>အရှေ့ပိုင်း အာဖရိက အချိန်</standard>
  2613. </long>
  2614. </metazone>
  2615. <metazone type="Africa_Southern">
  2616. <long>
  2617. <standard>တောင်အာဖရိက အချိန်</standard>
  2618. </long>
  2619. </metazone>
  2620. <metazone type="Africa_Western">
  2621. <long>
  2622. <generic>အနောက်ပိုင်း အာဖရိက အချိန်</generic>
  2623. <standard>အနောက်ပိုင်း အာဖရိက စံတော်ချိန်</standard>
  2624. <daylight>အနောက်ပိုင်း အာဖရိက နွေရာသီ အချိန်</daylight>
  2625. </long>
  2626. </metazone>
  2627. <metazone type="Alaska">
  2628. <long>
  2629. <generic>အလာစကာအချိန်</generic>
  2630. <standard>အလာစကာစံတော်ချိန်</standard>
  2631. <daylight>အလာစကာနေ့ပိုင်းအချိန်</daylight>
  2632. </long>
  2633. </metazone>
  2634. <metazone type="Amazon">
  2635. <long>
  2636. <generic>အမေဇွန်အချိန်</generic>
  2637. <standard>အမေဇွန်စံတော်ချိန်</standard>
  2638. <daylight>အမေဇွန်နွေရာသီအချိန်</daylight>
  2639. </long>
  2640. </metazone>
  2641. <metazone type="America_Central">
  2642. <long>
  2643. <generic>အလယ်ပိုင်း အမေရိက အချိန်</generic>
  2644. <standard>အလယ်ပိုင်း အမေရိက စံတော်ချိန်</standard>
  2645. <daylight>အလယ်ပိုင်း အမေရိက နွေရာသီ အချိန်</daylight>
  2646. </long>
  2647. </metazone>
  2648. <metazone type="America_Eastern">
  2649. <long>
  2650. <generic>အရှေ့ပိုင်း အမေရိက အချိန်</generic>
  2651. <standard>အရှေ့ပိုင်း အမေရိက စံတော်ချိန်</standard>
  2652. <daylight>အရှေ့ပိုင်း အမေရိက နေ့ပိုင်း အချိန်</daylight>
  2653. </long>
  2654. </metazone>
  2655. <metazone type="America_Mountain">
  2656. <long>
  2657. <generic>အမေရိက တောင် အချိန်</generic>
  2658. <standard>အမေရိက တောင် စံတော်ချိန်</standard>
  2659. <daylight>အမေရိက တောင် နေ့ပိုင်း အချိန်</daylight>
  2660. </long>
  2661. </metazone>
  2662. <metazone type="America_Pacific">
  2663. <long>
  2664. <generic>ပစိဖိတ် အချိန်</generic>
  2665. <standard>ပစိဖိတ် စံတော်ချိန်</standard>
  2666. <daylight>ပစိဖိတ် နေ့ပိုင်း အချိန်</daylight>
  2667. </long>
  2668. </metazone>
  2669. <metazone type="Arabian">
  2670. <long>
  2671. <generic>အာရေဗျ အချိန်</generic>
  2672. <standard>အာရေဗျ စံတော်ချိန်</standard>
  2673. <daylight>အာရေဗျ နေ့ပိုင်း အချိန်</daylight>
  2674. </long>
  2675. </metazone>
  2676. <metazone type="Argentina">
  2677. <long>
  2678. <generic>အာဂျင်တီးနား အချိန်</generic>
  2679. <standard>အာဂျင်တီးနား စံတော်ချိန်</standard>
  2680. <daylight>အာဂျင်တီးနား နွေရာသီ အချိန်</daylight>
  2681. </long>
  2682. </metazone>
  2683. <metazone type="Argentina_Western">
  2684. <long>
  2685. <generic>အနောက် အာဂျင်တီးနား အချိန်</generic>
  2686. <standard>အနောက် အာဂျင်တီးနား စံတော်ချိန်</standard>
  2687. <daylight>အနောက် အာဂျင်တီးနား နွေရာသီ အချိန်</daylight>
  2688. </long>
  2689. </metazone>
  2690. <metazone type="Armenia">
  2691. <long>
  2692. <generic>အာမေနီးယား အချိန်</generic>
  2693. <standard>အာမေနီးယား စံတော်ချိန်</standard>
  2694. <daylight>အာမေနီးယား နွေရာသီ အချိန်</daylight>
  2695. </long>
  2696. </metazone>
  2697. <metazone type="Atlantic">
  2698. <long>
  2699. <generic>အတ္ထလန်တစ် အချိန်</generic>
  2700. <standard>အတ္ထလန်တစ် စံတော်ချိန်</standard>
  2701. <daylight>အတ္ထလန်တစ် နေ့ပိုင်း အချိန်</daylight>
  2702. </long>
  2703. </metazone>
  2704. <metazone type="Australia_Central">
  2705. <long>
  2706. <generic>အလယ်ဩစတြေးလျှား အချိန်</generic>
  2707. <standard>အလယ်ပိုင်း ဩစတြေးလျှား စံတော်ချိန်</standard>
  2708. <daylight>အလယ်ပိုင်း ဩစတြေးလျှား နေ့ပိုင်း အချိန်</daylight>
  2709. </long>
  2710. </metazone>
  2711. <metazone type="Australia_CentralWestern">
  2712. <long>
  2713. <generic>အလယ်အနောက်ပိုင်း ဩစတြေးလျှား အချိန်</generic>
  2714. <standard>အလယ်အနောက်ပိုင်း ဩစတြေးလျှား စံတော်ချိန်</standard>
  2715. <daylight>အလယ်အနောက်ပိုင်း ဩစတြေးလျှား နေ့ပိုင်း အချိန်</daylight>
  2716. </long>
  2717. </metazone>
  2718. <metazone type="Australia_Eastern">
  2719. <long>
  2720. <generic>အရှေ့ဩစတြေးလျှား အချိန်</generic>
  2721. <standard>အရှေ့ပိုင်း ဩစတြေးလျှား စံတော်ချိန်</standard>
  2722. <daylight>အရှေ့ပိုင်း ဩစတြေးလျှား နေ့ပိုင်း အချိန်</daylight>
  2723. </long>
  2724. </metazone>
  2725. <metazone type="Australia_Western">
  2726. <long>
  2727. <generic>အနောက် ဩစတြေးလျှား အချိန်</generic>
  2728. <standard>အနောက်ပိုင်း ဩစတြေးလျှား စံတော်ချိန်</standard>
  2729. <daylight>အနောက်ပိုင်း ဩစတြေးလျှား နေ့ပိုင်း အချိန်</daylight>
  2730. </long>
  2731. </metazone>
  2732. <metazone type="Azerbaijan">
  2733. <long>
  2734. <generic>အဇာဘိုင်ဂျန် အချိန်</generic>
  2735. <standard>အဇာဘိုင်ဂျန် စံတော်ချိန်</standard>
  2736. <daylight>အဇာဘိုင်ဂျန် နွေရာသီ အချိန်</daylight>
  2737. </long>
  2738. </metazone>
  2739. <metazone type="Azores">
  2740. <long>
  2741. <generic>အာဇိုးစ်အချိန်</generic>
  2742. <standard>အာဇိုးစ်စံတော်ချိန်</standard>
  2743. <daylight>အာဇိုးစ်နွေရာသီအချိန်</daylight>
  2744. </long>
  2745. </metazone>
  2746. <metazone type="Bangladesh">
  2747. <long>
  2748. <generic>ဘင်္ဂလားဒေ့ရှ် အချိန်</generic>
  2749. <standard>ဘင်္ဂလားဒေ့ရှ် စံတော်ချိန်</standard>
  2750. <daylight>ဘင်္ဂလားဒေ့ရှ် နွေရာသီ အချိန်</daylight>
  2751. </long>
  2752. </metazone>
  2753. <metazone type="Bhutan">
  2754. <long>
  2755. <standard>ဘူတန် အချိန်</standard>
  2756. </long>
  2757. </metazone>
  2758. <metazone type="Bolivia">
  2759. <long>
  2760. <standard>ဘိုလီးဘီးယား အချိန်</standard>
  2761. </long>
  2762. </metazone>
  2763. <metazone type="Brasilia">
  2764. <long>
  2765. <generic>ဘရာဇီး အချိန်</generic>
  2766. <standard>ဘရာဇီး စံတော်ချိန်</standard>
  2767. <daylight>ဘရာဇီး နွေရာသီ အချိန်</daylight>
  2768. </long>
  2769. </metazone>
  2770. <metazone type="Brunei">
  2771. <long>
  2772. <standard>ဘရူနိုင်း စံတော်ချိန်</standard>
  2773. </long>
  2774. </metazone>
  2775. <metazone type="Cape_Verde">
  2776. <long>
  2777. <generic>ခေ့ပ်ဗာဒူအချိန်</generic>
  2778. <standard>ခေ့ပ်ဗာဒူစံတော်ချိန်</standard>
  2779. <daylight>ခေ့ပ်ဗာဒူနွေရာသီအချိန်</daylight>
  2780. </long>
  2781. </metazone>
  2782. <metazone type="Chamorro">
  2783. <long>
  2784. <standard>ချာမိုရိုအချိန်</standard>
  2785. </long>
  2786. </metazone>
  2787. <metazone type="Chatham">
  2788. <long>
  2789. <generic>ချားသမ်အချိန်</generic>
  2790. <standard>ချားသမ်စံတော်ချိန်</standard>
  2791. <daylight>ချားသမ်နေ့ပိုင်းအချိန်</daylight>
  2792. </long>
  2793. </metazone>
  2794. <metazone type="Chile">
  2795. <long>
  2796. <generic>ချီလီ အချိန်</generic>
  2797. <standard>ချီလီ စံတော်ချိန်</standard>
  2798. <daylight>ချီလီ နွေရာသီ အချိန်</daylight>
  2799. </long>
  2800. </metazone>
  2801. <metazone type="China">
  2802. <long>
  2803. <generic>တရုတ် အချိန်</generic>
  2804. <standard>တရုတ် စံတော်ချိန်</standard>
  2805. <daylight>တရုတ် နေ့ပိုင်း အချိန်</daylight>
  2806. </long>
  2807. </metazone>
  2808. <metazone type="Choibalsan">
  2809. <long>
  2810. <generic>ချွဲဘော်ဆန်းအချိန်</generic>
  2811. <standard>ချွဲဘော်ဆန်းစံတော်ချိန်</standard>
  2812. <daylight>ချွဲဘော်ဆန်းနွေရာသီအချိန်</daylight>
  2813. </long>
  2814. </metazone>
  2815. <metazone type="Christmas">
  2816. <long>
  2817. <standard>ခရစ်စမတ်ကျွန်းအချိန်</standard>
  2818. </long>
  2819. </metazone>
  2820. <metazone type="Cocos">
  2821. <long>
  2822. <standard>ကိုးကိုးကျွန်းအချိန်</standard>
  2823. </long>
  2824. </metazone>
  2825. <metazone type="Colombia">
  2826. <long>
  2827. <generic>ကိုလံဘီယာ အချိန်</generic>
  2828. <standard>ကိုလံဘီယာ စံတော်ချိန်</standard>
  2829. <daylight>ကိုလံဘီယာ နွေရာသီ အချိန်</daylight>
  2830. </long>
  2831. </metazone>
  2832. <metazone type="Cook">
  2833. <long>
  2834. <generic>ကွတ်ခ်ကျွန်းစုအချိန်</generic>
  2835. <standard>ကွတ်ခ်ကျွန်းစုစံတော်ချိန်</standard>
  2836. <daylight>ကွတ်က်ကျွန်းစုနွေရာသီအချိန်</daylight>
  2837. </long>
  2838. </metazone>
  2839. <metazone type="Cuba">
  2840. <long>
  2841. <generic>ကျူးဘား အချိန်</generic>
  2842. <standard>ကျူးဘား စံတော်ချိန်</standard>
  2843. <daylight>ကျူးဘား နေ့ပိုင်းအချိန်</daylight>
  2844. </long>
  2845. </metazone>
  2846. <metazone type="Davis">
  2847. <long>
  2848. <standard>ဒေးဗစ်အချိန်</standard>
  2849. </long>
  2850. </metazone>
  2851. <metazone type="DumontDUrville">
  2852. <long>
  2853. <standard>ဒူးမော့တ် ဒါရ်ဗီးလ်အချိန်</standard>
  2854. </long>
  2855. </metazone>
  2856. <metazone type="East_Timor">
  2857. <long>
  2858. <standard>အရှေ့တီမော အချိန်</standard>
  2859. </long>
  2860. </metazone>
  2861. <metazone type="Easter">
  2862. <long>
  2863. <generic>အီစတာကျွန်းအချိန်</generic>
  2864. <standard>အီစတာကျွန်းစံတော်ချိန်</standard>
  2865. <daylight>အီစတာကျွန်းနွေရာသီအချိန်</daylight>
  2866. </long>
  2867. </metazone>
  2868. <metazone type="Ecuador">
  2869. <long>
  2870. <standard>အီကွေဒေါ အချိန်</standard>
  2871. </long>
  2872. </metazone>
  2873. <metazone type="Europe_Central">
  2874. <long>
  2875. <generic>ဥရောပအလယ်ပိုင်းအချိန်</generic>
  2876. <standard>ဥရောပ အလယ်ပိုင်း စံတော်ချိန်</standard>
  2877. <daylight>ဥရောပ အလယ်ပိုင်း နွေရာသီ အချိန်</daylight>
  2878. </long>
  2879. </metazone>
  2880. <metazone type="Europe_Eastern">
  2881. <long>
  2882. <generic>အရှေ့ဥရောပ အချိန်</generic>
  2883. <standard>အရှေ့ဥရောပ စံတော်ချိန်</standard>
  2884. <daylight>အရှေ့ဥရောပ နွေရာသီ အချိန်</daylight>
  2885. </long>
  2886. </metazone>
  2887. <metazone type="Europe_Western">
  2888. <long>
  2889. <generic>အနောက်ပိုင်း ဥရောပ အချိန်</generic>
  2890. <standard>အနောက်ပိုင်း ဥရောပ စံတော်ချိန်</standard>
  2891. <daylight>အနောက်ပိုင်း ဥရောပ နွေရာသီ အချိန်</daylight>
  2892. </long>
  2893. </metazone>
  2894. <metazone type="Falkland">
  2895. <long>
  2896. <generic>ဖောင်ကလန်ကျွန်းစု အချိန်</generic>
  2897. <standard>ဖောင်ကလန်ကျွန်းစု စံတော်ချိန်</standard>
  2898. <daylight>ဖောင်ကလန်ကျွန်းစု နွေရာသီ အချိန်</daylight>
  2899. </long>
  2900. </metazone>
  2901. <metazone type="Fiji">
  2902. <long>
  2903. <generic>ဖီဂျီအချိန်</generic>
  2904. <standard>ဖီဂျီစံတော်ချိန်</standard>
  2905. <daylight>ဖီဂျီနွေရာသီအချိန်</daylight>
  2906. </long>
  2907. </metazone>
  2908. <metazone type="French_Guiana">
  2909. <long>
  2910. <standard>ပြင်သစ် ဂီယာနာ အချိန်</standard>
  2911. </long>
  2912. </metazone>
  2913. <metazone type="French_Southern">
  2914. <long>
  2915. <standard>ပြင်သစ်တောင်ပိုင်းနင့်အန္တတစ်အချိန်</standard>
  2916. </long>
  2917. </metazone>
  2918. <metazone type="Galapagos">
  2919. <long>
  2920. <standard>ဂါလားပါဂိုးစ်အချိန်</standard>
  2921. </long>
  2922. </metazone>
  2923. <metazone type="Gambier">
  2924. <long>
  2925. <standard>ဂန်ဘီအာအချိန်</standard>
  2926. </long>
  2927. </metazone>
  2928. <metazone type="Georgia">
  2929. <long>
  2930. <generic>ဂျော်ဂျီယာ အချိန်</generic>
  2931. <standard>ဂျော်ဂျီယာ စံတော်ချိန်</standard>
  2932. <daylight>ဂျော်ဂျီယာ နွေရာသီ အချိန်</daylight>
  2933. </long>
  2934. </metazone>
  2935. <metazone type="Gilbert_Islands">
  2936. <long>
  2937. <standard>ဂီလ်ဘတ်ကျွန်းစုအချိန်</standard>
  2938. </long>
  2939. </metazone>
  2940. <metazone type="GMT">
  2941. <long>
  2942. <standard>ဂရင်းနစ် စံတော်ချိန်</standard>
  2943. </long>
  2944. </metazone>
  2945. <metazone type="Greenland_Eastern">
  2946. <long>
  2947. <generic>အရှေ့ဂရင်းလန်း အချိန်</generic>
  2948. <standard>အရှေ့ဂရင်းလန်း စံတော်ချိန်</standard>
  2949. <daylight>အရှေ့ဂရင်းလန်း နွေရာသီ အချိန်</daylight>
  2950. </long>
  2951. </metazone>
  2952. <metazone type="Greenland_Western">
  2953. <long>
  2954. <generic>အနောက် ဂရင်းလန်း အချိန်</generic>
  2955. <standard>အနောက် ဂရင်းလန်း စံတော်ချိန်</standard>
  2956. <daylight>အနောက် ဂရင်းလန်း နွေရာသီ အချိန်</daylight>
  2957. </long>
  2958. </metazone>
  2959. <metazone type="Gulf">
  2960. <long>
  2961. <standard>ပင်လယ်ဂွေ့ အချိန်</standard>
  2962. </long>
  2963. </metazone>
  2964. <metazone type="Guyana">
  2965. <long>
  2966. <standard>ဂိုင်ရာနားအချိန်</standard>
  2967. </long>
  2968. </metazone>
  2969. <metazone type="Hawaii_Aleutian">
  2970. <long>
  2971. <generic>ဟာဝိုင်အီ အာလူးရှန်အချိန်</generic>
  2972. <standard>ဟာဝိုင်အီ အာလူးရှန်စံတော်ချိန်</standard>
  2973. <daylight>ဟာဝိုင်အီ အာလူးရှန်နေ့ပိုင်းအချိန်</daylight>
  2974. </long>
  2975. </metazone>
  2976. <metazone type="Hong_Kong">
  2977. <long>
  2978. <generic>ဟောင်ကောင် အချိန်</generic>
  2979. <standard>ဟောင်ကောင် စံတော်ချိန်</standard>
  2980. <daylight>ဟောင်ကောင် နွေရာသီ အချိန်</daylight>
  2981. </long>
  2982. </metazone>
  2983. <metazone type="Hovd">
  2984. <long>
  2985. <generic>ဟိုးဗ်အချိန်</generic>
  2986. <standard>ဟိုးဗ်စံတော်ချိန်</standard>
  2987. <daylight>ဟိုးဗ်နွေရာသီအချိန်</daylight>
  2988. </long>
  2989. </metazone>
  2990. <metazone type="India">
  2991. <long>
  2992. <standard>အိန္ဒြိယ စံတော်ချိန်</standard>
  2993. </long>
  2994. </metazone>
  2995. <metazone type="Indian_Ocean">
  2996. <long>
  2997. <standard>အိန္ဒြိယ သမုဒ္ဒရာ အချိန်</standard>
  2998. </long>
  2999. </metazone>
  3000. <metazone type="Indochina">
  3001. <long>
  3002. <standard>အင်ဒိုချိုင်းနား အချိန်</standard>
  3003. </long>
  3004. </metazone>
  3005. <metazone type="Indonesia_Central">
  3006. <long>
  3007. <standard>အလယ်ပိုင်း အင်ဒိုနီးရှား အချိန်</standard>
  3008. </long>
  3009. </metazone>
  3010. <metazone type="Indonesia_Eastern">
  3011. <long>
  3012. <standard>အရှေ့ပိုင်း အင်ဒိုနီးရှား အချိန်</standard>
  3013. </long>
  3014. </metazone>
  3015. <metazone type="Indonesia_Western">
  3016. <long>
  3017. <standard>အနောက်ပိုင်း အင်ဒိုနီးရှား အချိန်</standard>
  3018. </long>
  3019. </metazone>
  3020. <metazone type="Iran">
  3021. <long>
  3022. <generic>အီရန် အချိန်</generic>
  3023. <standard>အီရန် စံတော်ချိန်</standard>
  3024. <daylight>အီရန် နေ့ပိုင်း အချိန်</daylight>
  3025. </long>
  3026. </metazone>
  3027. <metazone type="Irkutsk">
  3028. <long>
  3029. <generic>အီရူခူတ်အချိန်</generic>
  3030. <standard>အီရူခူတ်စံတော်ချိန်</standard>
  3031. <daylight>အီရူခူတ်နွေရာသီအချိန်</daylight>
  3032. </long>
  3033. </metazone>
  3034. <metazone type="Israel">
  3035. <long>
  3036. <generic>အစ္စရေး အချိန်</generic>
  3037. <standard>အစ္စရေး စံတော်ချိန်</standard>
  3038. <daylight>အစ္စရေး နေ့ပိုင်း အချိန်</daylight>
  3039. </long>
  3040. </metazone>
  3041. <metazone type="Japan">
  3042. <long>
  3043. <generic>ဂျပန် အချိန်</generic>
  3044. <standard>ဂျပန် စံတော်ချိန်</standard>
  3045. <daylight>ဂျပန် နေ့ပိုင်း အချိန်</daylight>
  3046. </long>
  3047. </metazone>
  3048. <metazone type="Kazakhstan_Eastern">
  3049. <long>
  3050. <standard>အရှေ့ကာဇက်စတန် အချိန်</standard>
  3051. </long>
  3052. </metazone>
  3053. <metazone type="Kazakhstan_Western">
  3054. <long>
  3055. <standard>အနောက်ကာဇက်စတန်အချိန်</standard>
  3056. </long>
  3057. </metazone>
  3058. <metazone type="Korea">
  3059. <long>
  3060. <generic>ကိုးရီးယား အချိန်</generic>
  3061. <standard>ကိုးရီးယား စံတော်ချိန်</standard>
  3062. <daylight>ကိုးရီးယား နေ့ပိုင်း အချိန်</daylight>
  3063. </long>
  3064. </metazone>
  3065. <metazone type="Kosrae">
  3066. <long>
  3067. <standard>ခိုစ်ရိုင်အချိန်</standard>
  3068. </long>
  3069. </metazone>
  3070. <metazone type="Krasnoyarsk">
  3071. <long>
  3072. <generic>ခရာ့စ်နိုရာစ်အချိန်</generic>
  3073. <standard>ခရာ့စ်နိုရာစ်စံတော်ချိန်</standard>
  3074. <daylight>ခရာ့စ်နိုရာစ်နွေရာသီအချိန်</daylight>
  3075. </long>
  3076. </metazone>
  3077. <metazone type="Kyrgystan">
  3078. <long>
  3079. <standard>ခယ်ကစ်တန်အချိန်</standard>
  3080. </long>
  3081. </metazone>
  3082. <metazone type="Lanka">
  3083. <long>
  3084. <standard>သီရိလင်္ကာ အချိန်</standard>
  3085. </long>
  3086. </metazone>
  3087. <metazone type="Line_Islands">
  3088. <long>
  3089. <standard>လိုင်းကျွန်းစုအချိန်</standard>
  3090. </long>
  3091. </metazone>
  3092. <metazone type="Lord_Howe">
  3093. <long>
  3094. <generic>လော့ဒ်ဟောင်အချိန်</generic>
  3095. <standard>လော့ဒ်ဟောင်စံတော်ချိန်</standard>
  3096. <daylight>လော့ဒ်ဟောင်နေ့ပိုင်းအချိန်</daylight>
  3097. </long>
  3098. </metazone>
  3099. <metazone type="Macau">
  3100. <long>
  3101. <generic>မကာအို အချိန်</generic>
  3102. <standard>မကာအို စံတော်ချိန်</standard>
  3103. <daylight>မကာအို နွေရာသီ အချိန်</daylight>
  3104. </long>
  3105. </metazone>
  3106. <metazone type="Macquarie">
  3107. <long>
  3108. <standard>မခွါရီးအချိန်</standard>
  3109. </long>
  3110. </metazone>
  3111. <metazone type="Magadan">
  3112. <long>
  3113. <generic>မာဂါဒန်းအချိန်</generic>
  3114. <standard>မာဂါဒန်းစံတော်ချိန်</standard>
  3115. <daylight>မာဂါဒန်းနွေရာသီအချိန်</daylight>
  3116. </long>
  3117. </metazone>
  3118. <metazone type="Malaysia">
  3119. <long>
  3120. <standard>မလေးရှား အချိန်</standard>
  3121. </long>
  3122. </metazone>
  3123. <metazone type="Maldives">
  3124. <long>
  3125. <standard>မောလ်ဒိုင်းဗ်အချိန်</standard>
  3126. </long>
  3127. </metazone>
  3128. <metazone type="Marquesas">
  3129. <long>
  3130. <standard>မာခေးအပ်စ်အချိန်</standard>
  3131. </long>
  3132. </metazone>
  3133. <metazone type="Marshall_Islands">
  3134. <long>
  3135. <standard>မာရယ်ကျွန်းစုအချိန်</standard>
  3136. </long>
  3137. </metazone>
  3138. <metazone type="Mauritius">
  3139. <long>
  3140. <generic>မော်ရေရှားစ်အချိန်</generic>
  3141. <standard>မော်ရေရှားစ်စံတော်ချိန်</standard>
  3142. <daylight>မော်ရေရှားစ်နွေရာသီအချိန်</daylight>
  3143. </long>
  3144. </metazone>
  3145. <metazone type="Mawson">
  3146. <long>
  3147. <standard>မော်စွန်အချိန်</standard>
  3148. </long>
  3149. </metazone>
  3150. <metazone type="Mongolia">
  3151. <long>
  3152. <generic>ဥလန်ဘာတောအချိန်</generic>
  3153. <standard>ဥလန်ဘာတောစံတော်ချိန်</standard>
  3154. <daylight>ဥလန်ဘာတောနွေရာသီအချိန်</daylight>
  3155. </long>
  3156. </metazone>
  3157. <metazone type="Moscow">
  3158. <long>
  3159. <generic>မော့စ်ကို အချိန်</generic>
  3160. <standard>မော့စ်ကိုစံတော်ချိန်</standard>
  3161. <daylight>မော့စ်ကိုနွေရာသီ အချိန်</daylight>
  3162. </long>
  3163. </metazone>
  3164. <metazone type="Myanmar">
  3165. <long>
  3166. <standard>မြန်မာ အချိန်</standard>
  3167. </long>
  3168. </metazone>
  3169. <metazone type="Nauru">
  3170. <long>
  3171. <standard>နာဥူရူအချိန်</standard>
  3172. </long>
  3173. </metazone>
  3174. <metazone type="Nepal">
  3175. <long>
  3176. <standard>နီပေါ အချိန်</standard>
  3177. </long>
  3178. </metazone>
  3179. <metazone type="New_Caledonia">
  3180. <long>
  3181. <generic>နယူးကာလီဒိုးနီးယားအချိန်</generic>
  3182. <standard>နယူးကာလီဒိုးနီးယားစံတော်ချိန်</standard>
  3183. <daylight>နယူးကာလီဒိုးနီးယားနွေရာသီအချိန်</daylight>
  3184. </long>
  3185. </metazone>
  3186. <metazone type="New_Zealand">
  3187. <long>
  3188. <generic>နယူးဇီလန် အချိန်</generic>
  3189. <standard>နယူးဇီလန် စံတော်ချိန်</standard>
  3190. <daylight>နယူးဇီလန် နေ့ပိုင်း အချိန်</daylight>
  3191. </long>
  3192. </metazone>
  3193. <metazone type="Newfoundland">
  3194. <long>
  3195. <generic>နယူးဖောင်လန် အချိန်</generic>
  3196. <standard>နယူးဖောင်လန် စံတော်ချိန်</standard>
  3197. <daylight>နယူးဖောင်လန် နေ့ပိုင်း အချိန်</daylight>
  3198. </long>
  3199. </metazone>
  3200. <metazone type="Niue">
  3201. <long>
  3202. <standard>နီဦးအေအချိန်</standard>
  3203. </long>
  3204. </metazone>
  3205. <metazone type="Norfolk">
  3206. <long>
  3207. <standard>နောဖော့ခ်ကျွန်းအချိန်</standard>
  3208. </long>
  3209. </metazone>
  3210. <metazone type="Noronha">
  3211. <long>
  3212. <generic>ဖာနန်ဒိုးဒီနိုးရိုးညာအချိန်</generic>
  3213. <standard>ဖာနန်ဒိုးဒီနိုးရိုးညာစံတော်ချိန်</standard>
  3214. <daylight>ဖာနန်ဒိုးဒီနိုးရိုးညာနွေရာသီအချိန်</daylight>
  3215. </long>
  3216. </metazone>
  3217. <metazone type="Novosibirsk">
  3218. <long>
  3219. <generic>နိုဗိုစဲဘီအဲယ်စ်အချိန်</generic>
  3220. <standard>နိုဗိုစဲဘီအဲယ်စ်စံတော်ချိန်</standard>
  3221. <daylight>နိုဗိုစဲဘီအဲယ်စ်နွေရာသီအချိန်</daylight>
  3222. </long>
  3223. </metazone>
  3224. <metazone type="Omsk">
  3225. <long>
  3226. <generic>အွမ်းစ်ခ်အချိန်</generic>
  3227. <standard>အွမ်းစ်ခ်စံတော်ချိန်</standard>
  3228. <daylight>အွမ်းစ်ခ်နွေရာသီအချိန်</daylight>
  3229. </long>
  3230. </metazone>
  3231. <metazone type="Pakistan">
  3232. <long>
  3233. <generic>ပါကစ္စတန် အချိန်</generic>
  3234. <standard>ပါကစ္စတန် စံတော်ချိန်</standard>
  3235. <daylight>ပါကစ္စတန် နွေရာသီ အချိန်</daylight>
  3236. </long>
  3237. </metazone>
  3238. <metazone type="Palau">
  3239. <long>
  3240. <standard>ဖလောင်အချိန်</standard>
  3241. </long>
  3242. </metazone>
  3243. <metazone type="Papua_New_Guinea">
  3244. <long>
  3245. <standard>ပါပူရာနယူးဂီနီ အချိန်</standard>
  3246. </long>
  3247. </metazone>
  3248. <metazone type="Paraguay">
  3249. <long>
  3250. <generic>ပါရာဂွေး အချိန်</generic>
  3251. <standard>ပါရာဂွေး စံတော်ချိန်</standard>
  3252. <daylight>ပါရာဂွေး နွေရာသီ အချိန်</daylight>
  3253. </long>
  3254. </metazone>
  3255. <metazone type="Peru">
  3256. <long>
  3257. <generic>ပီရူး အချိန်</generic>
  3258. <standard>ပီရူး စံတော်ချိန်</standard>
  3259. <daylight>ပီရူး နွေရာသီ အချိန်</daylight>
  3260. </long>
  3261. </metazone>
  3262. <metazone type="Philippines">
  3263. <long>
  3264. <generic>ဖိလစ်ပိုင် အချိန်</generic>
  3265. <standard>ဖိလစ်ပိုင် စံတော်ချိန်</standard>
  3266. <daylight>ဖိလစ်ပိုင် နွေရာသီ အချိန်</daylight>
  3267. </long>
  3268. </metazone>
  3269. <metazone type="Phoenix_Islands">
  3270. <long>
  3271. <standard>ဖီးနစ်ကျွန်းစုအချိန်</standard>
  3272. </long>
  3273. </metazone>
  3274. <metazone type="Pierre_Miquelon">
  3275. <long>
  3276. <generic>စိန့်ပီအဲနှင့်မီခွီလွန်အချိန်</generic>
  3277. <standard>စိန့်ပီအဲနှင့်မီခွီလွန်စံတော်ချိန်</standard>
  3278. <daylight>စိန့်ပီအဲနှင့်မီခွီလွန်နေ့ပိုင်းအချိန်</daylight>
  3279. </long>
  3280. </metazone>
  3281. <metazone type="Pitcairn">
  3282. <long>
  3283. <standard>ပိကိန်းအချိန်</standard>
  3284. </long>
  3285. </metazone>
  3286. <metazone type="Ponape">
  3287. <long>
  3288. <standard>ဖိုနာဖဲအ်အချိန်</standard>
  3289. </long>
  3290. </metazone>
  3291. <metazone type="Reunion">
  3292. <long>
  3293. <standard>ရဲအူနီရွန်အချိန်</standard>
  3294. </long>
  3295. </metazone>
  3296. <metazone type="Rothera">
  3297. <long>
  3298. <standard>ရိုသီရာအချိန်</standard>
  3299. </long>
  3300. </metazone>
  3301. <metazone type="Sakhalin">
  3302. <long>
  3303. <generic>စဲက်ခါလီင်းအချိန်</generic>
  3304. <standard>စဲက်ခါလီင်းစံတော်ချိန်</standard>
  3305. <daylight>စဲက်ခါလီးင်နွေရာသီအချိန်</daylight>
  3306. </long>
  3307. </metazone>
  3308. <metazone type="Samoa">
  3309. <long>
  3310. <generic>ဆာမိုအာအချိန်</generic>
  3311. <standard>ဆာမိုအာစံတော်ချိန်</standard>
  3312. <daylight>ဆာမိုအာနေ့အချိန်</daylight>
  3313. </long>
  3314. </metazone>
  3315. <metazone type="Seychelles">
  3316. <long>
  3317. <standard>ဆေးရှလ်အချိန်</standard>
  3318. </long>
  3319. </metazone>
  3320. <metazone type="Singapore">
  3321. <long>
  3322. <standard>စင်္ကာပူ စံတော်ချိန်</standard>
  3323. </long>
  3324. </metazone>
  3325. <metazone type="Solomon">
  3326. <long>
  3327. <standard>ဆိုလိုမွန်ကျွန်းစုအချိန်</standard>
  3328. </long>
  3329. </metazone>
  3330. <metazone type="South_Georgia">
  3331. <long>
  3332. <standard>တောင်ဂျော်ဂျီယာ အချိန်</standard>
  3333. </long>
  3334. </metazone>
  3335. <metazone type="Suriname">
  3336. <long>
  3337. <standard>စူးရီနာမ်အချိန်</standard>
  3338. </long>
  3339. </metazone>
  3340. <metazone type="Syowa">
  3341. <long>
  3342. <standard>ရှိုဝါအချိန်</standard>
  3343. </long>
  3344. </metazone>
  3345. <metazone type="Tahiti">
  3346. <long>
  3347. <standard>တာဟီတီအချိန်</standard>
  3348. </long>
  3349. </metazone>
  3350. <metazone type="Taipei">
  3351. <long>
  3352. <generic>တိုင်ပေအချိန်</generic>
  3353. <standard>တိုင်ပေစံတော်ချိန်</standard>
  3354. <daylight>တိုင်ပေနေ့ပိုင်းအချိန်</daylight>
  3355. </long>
  3356. </metazone>
  3357. <metazone type="Tajikistan">
  3358. <long>
  3359. <standard>တာဂျီကစ္စတန်အချိန်</standard>
  3360. </long>
  3361. </metazone>
  3362. <metazone type="Tokelau">
  3363. <long>
  3364. <standard>တိုကီလာဥ အချိန်</standard>
  3365. </long>
  3366. </metazone>
  3367. <metazone type="Tonga">
  3368. <long>
  3369. <generic>တွန်ဂါအချိန်</generic>
  3370. <standard>တွန်ဂါစံတော်ချိန်</standard>
  3371. <daylight>တွန်ဂါနွေရာသီအချိန်</daylight>
  3372. </long>
  3373. </metazone>
  3374. <metazone type="Truk">
  3375. <long>
  3376. <standard>ချုခ်အချိန်</standard>
  3377. </long>
  3378. </metazone>
  3379. <metazone type="Turkmenistan">
  3380. <long>
  3381. <generic>တာခ်မီန့စ်တန်အချိန်</generic>
  3382. <standard>တာခ်မီန့စ်တန်စံတော်ချိန်</standard>
  3383. <daylight>တာခ်မီန့စ်တန်နွေရာသီအချိန်</daylight>
  3384. </long>
  3385. </metazone>
  3386. <metazone type="Tuvalu">
  3387. <long>
  3388. <standard>ထူဗာလူအချိန်</standard>
  3389. </long>
  3390. </metazone>
  3391. <metazone type="Uruguay">
  3392. <long>
  3393. <generic>ဥရုဂွေး အချိန်</generic>
  3394. <standard>ဥရုဂွေး စံတော်ချိန်</standard>
  3395. <daylight>ဥရုဂွေး နွေရာသီ အချိန်</daylight>
  3396. </long>
  3397. </metazone>
  3398. <metazone type="Uzbekistan">
  3399. <long>
  3400. <generic>ဥဘက်ကစ္စတန် အချိန်</generic>
  3401. <standard>ဥဘက်ကစ္စတန် စံတော်ချိန်</standard>
  3402. <daylight>ဥဘက်ကစ္စတန် နွေရာသီ အချိန်</daylight>
  3403. </long>
  3404. </metazone>
  3405. <metazone type="Vanuatu">
  3406. <long>
  3407. <generic>ဗာနုအာတူအချိန်</generic>
  3408. <standard>ဗာနုအာတူစံတော်ချိန်</standard>
  3409. <daylight>ဗာနုအာတူနွေရာသီအချိန်</daylight>
  3410. </long>
  3411. </metazone>
  3412. <metazone type="Venezuela">
  3413. <long>
  3414. <standard>ဗင်နီဇွဲလား အချိန်</standard>
  3415. </long>
  3416. </metazone>
  3417. <metazone type="Vladivostok">
  3418. <long>
  3419. <generic>ဗလာဒါဗိုစ်တိုခ်အချိန်</generic>
  3420. <standard>ဗလာဒါဗိုစ်တိုခ်စံတော်ချိန်</standard>
  3421. <daylight>ဗလာဒါဗိုစ်တိုခ်နွေရာသီအချိန်</daylight>
  3422. </long>
  3423. </metazone>
  3424. <metazone type="Volgograd">
  3425. <long>
  3426. <generic>ဗိုလ်ဂိုဂရက်အချိန်</generic>
  3427. <standard>ဗိုလ်ဂိုဂရက်စံတော်ချိန်</standard>
  3428. <daylight>ဗိုလ်ဂိုဂရက်နွေရာသီအချိန်</daylight>
  3429. </long>
  3430. </metazone>
  3431. <metazone type="Vostok">
  3432. <long>
  3433. <standard>ဗိုစ်တိုခ်အချိန်</standard>
  3434. </long>
  3435. </metazone>
  3436. <metazone type="Wake">
  3437. <long>
  3438. <standard>ဝိတ်ခ်ကျွန်းအချိန်</standard>
  3439. </long>
  3440. </metazone>
  3441. <metazone type="Wallis">
  3442. <long>
  3443. <standard>ဝေါလီစ်နှင့်</standard>
  3444. </long>
  3445. </metazone>
  3446. <metazone type="Yakutsk">
  3447. <long>
  3448. <generic>ယူခူးတ်စ်အချိန်</generic>
  3449. <standard>ယူခူးတ်စ်စံတော်ချိန်</standard>
  3450. <daylight>ယူခူးတ်စ်နွေရာသီအချိန်</daylight>
  3451. </long>
  3452. </metazone>
  3453. <metazone type="Yekaterinburg">
  3454. <long>
  3455. <generic>ရယ်ခါးတီရင်ဘားခ်အချိန်</generic>
  3456. <standard>ရယ်ခါးတီရင်ဘားခ်စံတော်ချိန်</standard>
  3457. <daylight>ရယ်ခါးတီရင်ဘာခ်နွေရာသီအချိန်</daylight>
  3458. </long>
  3459. </metazone>
  3460. </timeZoneNames>
  3461. </dates>
  3462. <numbers>
  3463. <defaultNumberingSystem>mymr</defaultNumberingSystem>
  3464. <otherNumberingSystems>
  3465. <native>mymr</native>
  3466. </otherNumberingSystems>
  3467. <symbols numberSystem="latn">
  3468. <decimal>.</decimal>
  3469. <group>,</group>
  3470. <list>;</list>
  3471. <percentSign>%</percentSign>
  3472. <plusSign>+</plusSign>
  3473. <minusSign>-</minusSign>
  3474. <exponential>E</exponential>
  3475. <superscriptingExponent>×</superscriptingExponent>
  3476. <perMille>‰</perMille>
  3477. <infinity>∞</infinity>
  3478. <nan>ဂဏန်းမဟုတ်သော</nan>
  3479. </symbols>
  3480. <symbols numberSystem="mymr">
  3481. <list>၊</list>
  3482. </symbols>
  3483. <decimalFormats numberSystem="latn">
  3484. <decimalFormatLength>
  3485. <decimalFormat>
  3486. <pattern>#,##0.###</pattern>
  3487. </decimalFormat>
  3488. </decimalFormatLength>
  3489. <decimalFormatLength type="long">
  3490. <decimalFormat>
  3491. <pattern type="1000" count="other">0ထောင်</pattern>
  3492. <pattern type="10000" count="other">0သောင်း</pattern>
  3493. <pattern type="100000" count="other">0သိန်း</pattern>
  3494. <pattern type="1000000" count="other">0သန်း</pattern>
  3495. <pattern type="10000000" count="other">0ကုဋေ</pattern>
  3496. <pattern type="100000000" count="other">00ကုဋေ</pattern>
  3497. <pattern type="1000000000" count="other">000ကုဋေ</pattern>
  3498. <pattern type="10000000000" count="other">0000ကုဋေ</pattern>
  3499. <pattern type="100000000000" count="other">00000ကုဋေ</pattern>
  3500. <pattern type="1000000000000" count="other">000000ကုဋေ</pattern>
  3501. <pattern type="10000000000000" count="other">0000000ကုဋေ</pattern>
  3502. <pattern type="100000000000000" count="other">0ကောဋိ</pattern>
  3503. </decimalFormat>
  3504. </decimalFormatLength>
  3505. <decimalFormatLength type="short">
  3506. <decimalFormat>
  3507. <pattern type="1000" count="other">0ထောင်</pattern>
  3508. <pattern type="10000" count="other">0သောင်း</pattern>
  3509. <pattern type="100000" count="other">0သိန်း</pattern>
  3510. <pattern type="1000000" count="other">0သန်း</pattern>
  3511. <pattern type="10000000" count="other">0ကုဋေ</pattern>
  3512. <pattern type="100000000" count="other">00ကုဋေ</pattern>
  3513. <pattern type="1000000000" count="other">ကုဋေ000</pattern>
  3514. <pattern type="10000000000" count="other">ကုဋေ0000</pattern>
  3515. <pattern type="100000000000" count="other">0000ကုဋေ</pattern>
  3516. <pattern type="1000000000000" count="other">ကုဋေ0သိန်း</pattern>
  3517. <pattern type="10000000000000" count="other">ကုဋေ0သန်း</pattern>
  3518. <pattern type="100000000000000" count="other">0ကောဋိ</pattern>
  3519. </decimalFormat>
  3520. </decimalFormatLength>
  3521. </decimalFormats>
  3522. <scientificFormats numberSystem="latn">
  3523. <scientificFormatLength>
  3524. <scientificFormat>
  3525. <pattern>#E0</pattern>
  3526. </scientificFormat>
  3527. </scientificFormatLength>
  3528. </scientificFormats>
  3529. <percentFormats numberSystem="latn">
  3530. <percentFormatLength>
  3531. <percentFormat>
  3532. <pattern>#,##0%</pattern>
  3533. </percentFormat>
  3534. </percentFormatLength>
  3535. </percentFormats>
  3536. <currencyFormats numberSystem="latn">
  3537. <currencyFormatLength>
  3538. <currencyFormat type="standard">
  3539. <pattern>¤ #,##0.00</pattern>
  3540. </currencyFormat>
  3541. <currencyFormat type="accounting">
  3542. <pattern>¤ #,##0.00</pattern>
  3543. </currencyFormat>
  3544. </currencyFormatLength>
  3545. <unitPattern count="other">{0} {1}</unitPattern>
  3546. </currencyFormats>
  3547. <currencies>
  3548. <currency type="AED">
  3549. <displayName>အာရပ်ဒူဟမ်း</displayName>
  3550. <displayName count="other">အာရပ်ဒူဟမ်း</displayName>
  3551. </currency>
  3552. <currency type="AFN">
  3553. <displayName>အာဖဂန်အာဖဂါနီ</displayName>
  3554. <displayName count="other">အာဖဂန်အာဖဂါနီ</displayName>
  3555. </currency>
  3556. <currency type="ALL">
  3557. <displayName>အယ်လ်ဘီးနီးယားလီခ်</displayName>
  3558. <displayName count="other">အယ်လ်ဘီးနီးယားလီခ်</displayName>
  3559. </currency>
  3560. <currency type="AMD">
  3561. <displayName>အာမေးနီးယားဒရမ်း</displayName>
  3562. <displayName count="other">အာမေးနီးယားဒရမ်း</displayName>
  3563. </currency>
  3564. <currency type="ANG">
  3565. <displayName>နယ်သာလန် အန်တီလန် ဂင်းဒါး</displayName>
  3566. <displayName count="other">နယ်သာလန် အန်တီလန် ဂင်းဒါး</displayName>
  3567. </currency>
  3568. <currency type="AOA">
  3569. <displayName>အင်ဂိုလာ ကန်ဇာ</displayName>
  3570. <displayName count="other">အင်ဂိုလာ ကန်ဇာ</displayName>
  3571. </currency>
  3572. <currency type="ARP">
  3573. <displayName>အာဂျင်တီးနား ပီဆို (၁၉၈၃–၁၉၈၅)</displayName>
  3574. </currency>
  3575. <currency type="ARS">
  3576. <displayName>အာဂျင်တီးနား ပီဆို</displayName>
  3577. <displayName count="other">အာဂျင်တီးနား ပီဆို</displayName>
  3578. </currency>
  3579. <currency type="AUD">
  3580. <displayName>ဩစတြေးလျ ဒေါ်လာ</displayName>
  3581. <displayName count="other">ဩစတြေးလျ ဒေါ်လာ</displayName>
  3582. <symbol>A$</symbol>
  3583. </currency>
  3584. <currency type="AWG">
  3585. <displayName>အရူဘန် ဂင်းဒါး</displayName>
  3586. </currency>
  3587. <currency type="AZN">
  3588. <displayName>အဇာဘိုင်ဂျန်မာနတ်</displayName>
  3589. <displayName count="other">အဇာဘိုင်ဂျန်မာနတ်</displayName>
  3590. </currency>
  3591. <currency type="BAM">
  3592. <displayName>ဘော့စနီးယား နှင့် ဟာဇီဂိုဘီးနားမတ်က်</displayName>
  3593. <displayName count="other">ဘော့စနီးယား နှင့် ဟာဇီဂိုဘီးနားမတ်က်</displayName>
  3594. </currency>
  3595. <currency type="BBD">
  3596. <displayName>ဘာဘဒီယံဒေါ်လာ</displayName>
  3597. <displayName count="other">ဘာဘဒီယံဒေါ်လာ</displayName>
  3598. </currency>
  3599. <currency type="BDT">
  3600. <displayName>ဘင်္ဂလားဒေ့ရှ် တာကာ</displayName>
  3601. <displayName count="other">ဘင်္ဂလားဒေ့ရှ် တာကာ</displayName>
  3602. </currency>
  3603. <currency type="BEF">
  3604. <displayName>ဘယ်လ်ဂျီယမ် ဖရန့်</displayName>
  3605. </currency>
  3606. <currency type="BGN">
  3607. <displayName>ဘူဂေးရီးယားလက်ဖ်</displayName>
  3608. <displayName count="other">ဘူဂေးရီးယားလက်ဖ်</displayName>
  3609. </currency>
  3610. <currency type="BHD">
  3611. <displayName>ဘာရိန်းဒီနား</displayName>
  3612. <displayName count="other">ဘာရိန်းဒီနား</displayName>
  3613. </currency>
  3614. <currency type="BIF">
  3615. <displayName>ဘူရွန်ဒီ ဖရန့်</displayName>
  3616. <displayName count="other">ဘူရွန်ဒီ ဖရန့်</displayName>
  3617. </currency>
  3618. <currency type="BMD">
  3619. <displayName>ဘာမူဒါ ဒေါ်လာ</displayName>
  3620. <displayName count="other">ဘာမူဒါ ဒေါ်လာ</displayName>
  3621. </currency>
  3622. <currency type="BND">
  3623. <displayName>ဘရူနိုင်း ဒေါ်လာ</displayName>
  3624. <displayName count="other">ဘရူနိုင်း ဒေါ်လာ</displayName>
  3625. </currency>
  3626. <currency type="BOB">
  3627. <displayName>ဘိုလီဘီယံ ဘိုလီဘီအားနို</displayName>
  3628. <displayName count="other">ဘိုလီဘီယံ ဘိုလီဘီအားနိုစ်</displayName>
  3629. </currency>
  3630. <currency type="BOP">
  3631. <displayName>ဘိုလီးဘီးယား ပီဆို</displayName>
  3632. </currency>
  3633. <currency type="BRL">
  3634. <displayName>ဘရာဇီး ရီးယဲ</displayName>
  3635. <displayName count="other">ဘရာဇီး ရီးယဲ</displayName>
  3636. <symbol>R$</symbol>
  3637. </currency>
  3638. <currency type="BSD">
  3639. <displayName>ဘဟားမား ဒေါ်လာ</displayName>
  3640. <displayName count="other">ဘဟားမား ဒေါ်လာ</displayName>
  3641. </currency>
  3642. <currency type="BTN">
  3643. <displayName>ဘူတန်အံဂါလ်ထရန်</displayName>
  3644. <displayName count="other">ဘူတန်အံဂါလ်ထရန်</displayName>
  3645. </currency>
  3646. <currency type="BUK">
  3647. <displayName>ဗမာ ကျပ်</displayName>
  3648. </currency>
  3649. <currency type="BWP">
  3650. <displayName>ဘော့စ်ဝါနာ ပုလ</displayName>
  3651. </currency>
  3652. <currency type="BYB">
  3653. <displayName>ဘီလာရုစ် ရူဘယ်အသစ် (၁၉၉၄–၁၉၉၉)</displayName>
  3654. </currency>
  3655. <currency type="BYR">
  3656. <displayName>ဘီလာရုစ် ရူဘယ်</displayName>
  3657. <displayName count="other">ဘီလာရုစ် ရူဘယ်</displayName>
  3658. </currency>
  3659. <currency type="BZD">
  3660. <displayName>ဘေလီဇ် ဒေါ်လာ</displayName>
  3661. <displayName count="other">ဘေလီဇ် ဒေါ်လာ</displayName>
  3662. </currency>
  3663. <currency type="CAD">
  3664. <displayName>ကနေဒါ ဒေါ်လာ</displayName>
  3665. <displayName count="other">ကနေဒါ ဒေါ်လာ</displayName>
  3666. <symbol>CA$</symbol>
  3667. </currency>
  3668. <currency type="CDF">
  3669. <displayName>ကွန်ဂို ဖရန့်</displayName>
  3670. <displayName count="other">ကွန်ဂို ဖရန့်</displayName>
  3671. </currency>
  3672. <currency type="CHF">
  3673. <displayName>ဆွစ် ဖရန့်</displayName>
  3674. <displayName count="other">ဆွစ် ဖရန့်</displayName>
  3675. </currency>
  3676. <currency type="CLP">
  3677. <displayName>ချီလီ ပီဆို</displayName>
  3678. <displayName count="other">ချီလီ ပီဆို</displayName>
  3679. </currency>
  3680. <currency type="CNY">
  3681. <displayName>တရုတ် ယွမ်</displayName>
  3682. <displayName count="other">တရုတ် ယွမ်</displayName>
  3683. <symbol>CN¥</symbol>
  3684. </currency>
  3685. <currency type="COP">
  3686. <displayName>ကိုလံဘီယာ ပီဆို</displayName>
  3687. <displayName count="other">ကိုလံဘီယာ ပီဆို</displayName>
  3688. </currency>
  3689. <currency type="CRC">
  3690. <displayName>ကော့စ်တာရီကာ ခိုလုံး</displayName>
  3691. <displayName count="other">ကော့စ်တာရီကာ ခိုလုံး</displayName>
  3692. </currency>
  3693. <currency type="CUC">
  3694. <displayName draft="contributed">နိုင်ငျံခားငွေလဲလှယ်နိုင်သော ကျူးဘားပီဆို ငွေ။</displayName>
  3695. <displayName count="other" draft="contributed">နိုင်ငျံခားငွေလဲလှယ်နိုင်သော ကျူးဘားပီဆို ငွေ။</displayName>
  3696. </currency>
  3697. <currency type="CUP">
  3698. <displayName>ကျူးဘား ပီဆို</displayName>
  3699. </currency>
  3700. <currency type="CVE">
  3701. <displayName>ခေ့ပ်ဗာဒူ အက်စ်ခူဒို</displayName>
  3702. <displayName count="other">ခေ့ပ်ဗာဒူ အက်စ်ခူဒို</displayName>
  3703. </currency>
  3704. <currency type="CYP">
  3705. <displayName>ဆိုက်ပရက်စ် ပေါင်</displayName>
  3706. </currency>
  3707. <currency type="CZK">
  3708. <displayName>ချက်ခိုရိုနာ</displayName>
  3709. <displayName count="other">ချက်ခိုရိုနာ</displayName>
  3710. </currency>
  3711. <currency type="DEM">
  3712. <displayName>ဂျာမဏီ မတ်</displayName>
  3713. </currency>
  3714. <currency type="DJF">
  3715. <displayName>ဂျီဘူတီ ဖရန့်</displayName>
  3716. <displayName count="other">ဂျီဘူတီ ဖရန့်</displayName>
  3717. </currency>
  3718. <currency type="DKK">
  3719. <displayName>ဒိန်းမတ်ခရိုဏာ</displayName>
  3720. <displayName count="other">ဒိန်းမတ် ခရိုဏာ</displayName>
  3721. </currency>
  3722. <currency type="DOP">
  3723. <displayName>ဒိုမီနီကန် ပီဆို</displayName>
  3724. </currency>
  3725. <currency type="DZD">
  3726. <displayName>အဲလ်ဂျီရီယန် ဒီနာ</displayName>
  3727. <displayName count="other">အဲလ်ဂျီရီယန် ဒီနာ</displayName>
  3728. </currency>
  3729. <currency type="EGP">
  3730. <displayName>အီဂျစ် ပေါင်</displayName>
  3731. <displayName count="other">အီဂျစ် ပေါင်</displayName>
  3732. </currency>
  3733. <currency type="ERN">
  3734. <displayName>အီရီတရီအာနာ့ခ်ဖာ</displayName>
  3735. <displayName count="other">အီရီတရီအာနာ့ခ်ဖာ</displayName>
  3736. </currency>
  3737. <currency type="ESP">
  3738. <displayName>စပိန် ပယ်စေးတာ</displayName>
  3739. </currency>
  3740. <currency type="ETB">
  3741. <displayName>အီသီယိုးပီးယားဘီးယာ</displayName>
  3742. <displayName count="other">အီသီယိုးပီးယားဘီးယာ</displayName>
  3743. </currency>
  3744. <currency type="EUR">
  3745. <displayName>ယူရို</displayName>
  3746. <displayName count="other">ယူရို</displayName>
  3747. <symbol>€</symbol>
  3748. </currency>
  3749. <currency type="FJD">
  3750. <displayName>ဖီဂျီ ဒေါ်လာ</displayName>
  3751. <displayName count="other">ဖီဂျီ ဒေါ်လာ</displayName>
  3752. </currency>
  3753. <currency type="FKP">
  3754. <displayName>ဖောက်ကလန် ကျွန်းစု ပေါင်</displayName>
  3755. <displayName count="other">ဖောက်ကလန် ကျွန်းစု ပေါင်</displayName>
  3756. </currency>
  3757. <currency type="FRF">
  3758. <displayName>ပြင်သစ် ဖရန့်</displayName>
  3759. </currency>
  3760. <currency type="GBP">
  3761. <displayName>ဗြိတိသျှ ပေါင်</displayName>
  3762. <displayName count="other">ဗြိတိသျှ ပေါင်</displayName>
  3763. <symbol>£</symbol>
  3764. </currency>
  3765. <currency type="GEL">
  3766. <displayName>ဂျော်ဂျီယာလားရီ</displayName>
  3767. <displayName count="other">ဂျော်ဂျီယာလားရီ</displayName>
  3768. </currency>
  3769. <currency type="GHS">
  3770. <displayName>ဂါနာ ဆဲဒီ</displayName>
  3771. <displayName count="other">ဂါနာ ဆဲဒီ</displayName>
  3772. </currency>
  3773. <currency type="GIP">
  3774. <displayName>ဂျီဘရော်လ်တာ ပေါင်</displayName>
  3775. </currency>
  3776. <currency type="GMD">
  3777. <displayName>ဂန်ဘီယာ ဒါလာစီ</displayName>
  3778. <displayName count="other">ဂန်ဘီယာ ဒါလာစီ</displayName>
  3779. </currency>
  3780. <currency type="GNF">
  3781. <displayName>ဂီးနီ ဖရန့်</displayName>
  3782. <displayName count="other">ဂီရာနာ ဖရန့်</displayName>
  3783. </currency>
  3784. <currency type="GTQ">
  3785. <displayName>ဂွာတီမာလာ ခက်ဇော်လ်</displayName>
  3786. <displayName count="other">ဂွာတီမာလာ ခက်ဇော်လ်</displayName>
  3787. </currency>
  3788. <currency type="GYD">
  3789. <displayName>ဂူရာနာ ဒေါ်လာ</displayName>
  3790. <displayName count="other">ဂူရာနာ ဒေါ်လာ</displayName>
  3791. </currency>
  3792. <currency type="HKD">
  3793. <displayName>ဟောင်ကောင် ဒေါ်လာ</displayName>
  3794. <symbol>HK$</symbol>
  3795. </currency>
  3796. <currency type="HNL">
  3797. <displayName>ဟွန်ဒူးရပ်စ် လန်းပီးရာ</displayName>
  3798. <displayName count="other">ဟွန်ဒူးရပ်စ် လန်းပီးရာ</displayName>
  3799. </currency>
  3800. <currency type="HRK">
  3801. <displayName>ခရိုအေးရှားခူးနာ</displayName>
  3802. <displayName count="other">ခရိုအေးရှားခူးနာ</displayName>
  3803. </currency>
  3804. <currency type="HTG">
  3805. <displayName>ဟေတီဂူးအော်ဒ်</displayName>
  3806. <displayName count="other">ဟေတီဂူးအော်ဒ်</displayName>
  3807. </currency>
  3808. <currency type="HUF">
  3809. <displayName>ဟန်ဂေရီယံဖော်ရင့်တ်</displayName>
  3810. <displayName count="other">ဟန်ဂေရီယံဖော်ရင့်တ်</displayName>
  3811. </currency>
  3812. <currency type="IDR">
  3813. <displayName>အင်ဒိုနီးရှား ရူပီးယား</displayName>
  3814. <displayName count="other">အင်ဒိုနီးရှား ရူပီးယား</displayName>
  3815. </currency>
  3816. <currency type="ILP">
  3817. <displayName>အစ္စရေး ပေါင်</displayName>
  3818. </currency>
  3819. <currency type="ILS">
  3820. <displayName>အစ္စရေးရှဲကလ်အသစ်</displayName>
  3821. <displayName count="other">အစ္စရေးရှဲကလ်အသစ်</displayName>
  3822. <symbol>₪</symbol>
  3823. </currency>
  3824. <currency type="INR">
  3825. <displayName>အိန္ဒိယ ရူပီး</displayName>
  3826. <displayName count="other">အိန္ဒိယ ရူပီး</displayName>
  3827. <symbol>₹</symbol>
  3828. </currency>
  3829. <currency type="IQD">
  3830. <displayName>အီရပ်ဒီနား</displayName>
  3831. <displayName count="other">အီရပ်ဒီနား</displayName>
  3832. </currency>
  3833. <currency type="IRR">
  3834. <displayName>အီရန်ရီအော်လ်</displayName>
  3835. <displayName count="other">အီရန်ရီအော်လ်</displayName>
  3836. </currency>
  3837. <currency type="ISK">
  3838. <displayName>အိုက်စလန် ခရိုဏာ</displayName>
  3839. <displayName count="other">အိုက်စလန် ခရိုဏာ</displayName>
  3840. </currency>
  3841. <currency type="JMD">
  3842. <displayName>ဂျမေကာ ဒေါ်လာ</displayName>
  3843. </currency>
  3844. <currency type="JOD">
  3845. <displayName>ဂျော်ဒန်ဒီနား</displayName>
  3846. <displayName count="other">ဂျော်ဒန်ဒီနား</displayName>
  3847. </currency>
  3848. <currency type="JPY">
  3849. <displayName>ဂျပန်ယန်း</displayName>
  3850. <displayName count="other">ဂျပန်ယန်း</displayName>
  3851. <symbol>JP¥</symbol>
  3852. </currency>
  3853. <currency type="KES">
  3854. <displayName>ကင်ညာသျှီလင်</displayName>
  3855. <displayName count="other">ကင်ညာသျှီလင်</displayName>
  3856. </currency>
  3857. <currency type="KGS">
  3858. <displayName>ခရူဂစ်စတန်ဆော်မ်</displayName>
  3859. <displayName count="other">ခရူဂစ်စတန်ဆော်မ်</displayName>
  3860. </currency>
  3861. <currency type="KHR">
  3862. <displayName>ကမ္ဘောဒီးယား ရီးယဲ</displayName>
  3863. <displayName count="other">ကမ္ဘောဒီးယား ရီးယဲ</displayName>
  3864. </currency>
  3865. <currency type="KMF">
  3866. <displayName>ကိုမိုရိုစ် ဖရန့်</displayName>
  3867. <displayName count="other">ကိုမိုရိုစ် ဖရန့်</displayName>
  3868. </currency>
  3869. <currency type="KPW">
  3870. <displayName>မြောက်ကိုးရီးယား ဝမ်</displayName>
  3871. <displayName count="other">မြောက်ကိုးရီးယား ဝမ်</displayName>
  3872. </currency>
  3873. <currency type="KRW">
  3874. <displayName>တောင်ကိုးရီးယား ဝမ်</displayName>
  3875. <displayName count="other">တောင်ကိုးရီးယား ဝမ်</displayName>
  3876. <symbol>₩</symbol>
  3877. </currency>
  3878. <currency type="KWD">
  3879. <displayName>ကူဝိတ်ဒီနာ</displayName>
  3880. <displayName count="other">ကူဝိတ်ဒီနာ</displayName>
  3881. </currency>
  3882. <currency type="KYD">
  3883. <displayName>ကေမန် ကျွန်းစု ဒေါ်လာ</displayName>
  3884. <displayName count="other">ကေမန် ကျွန်းစု ဒေါ်လာ</displayName>
  3885. </currency>
  3886. <currency type="KZT">
  3887. <displayName>ခရူဂစ်စတန်ထိန်ဂျီ</displayName>
  3888. <displayName count="other">ခရူဂစ်စတန်ထိန်ဂျီ</displayName>
  3889. </currency>
  3890. <currency type="LAK">
  3891. <displayName>လာအိုခိပ်</displayName>
  3892. <displayName count="other">လာအိုခိပ်</displayName>
  3893. </currency>
  3894. <currency type="LBP">
  3895. <displayName>လက်ဘနွန် ပေါင်</displayName>
  3896. <displayName count="other">လက်ဘနွန် ပေါင်</displayName>
  3897. </currency>
  3898. <currency type="LKR">
  3899. <displayName>သီရိလင်္ကာ ရူပီး</displayName>
  3900. <displayName count="other">သီရိလင်္ကာ ရူပီး</displayName>
  3901. </currency>
  3902. <currency type="LRD">
  3903. <displayName>လိုင်ဘေးရီးယား ဒေါ်လာ</displayName>
  3904. <displayName count="other">လိုင်ဘေးရီးယား ဒေါ်လာ</displayName>
  3905. </currency>
  3906. <currency type="LTL">
  3907. <displayName>လစ်သူယေးနီးယားလီတားစ်</displayName>
  3908. <displayName count="other">လစ်သူယေးနီးယားလီတားစ်</displayName>
  3909. </currency>
  3910. <currency type="LVL">
  3911. <displayName>လတ်ဗီးယားလတ်</displayName>
  3912. <displayName count="other">လတ်ဗီးယားလတ်</displayName>
  3913. </currency>
  3914. <currency type="LYD">
  3915. <displayName>လီဗျာ ဒီနာ</displayName>
  3916. <displayName count="other">လီဗျာ ဒီနာ</displayName>
  3917. </currency>
  3918. <currency type="MAD">
  3919. <displayName>မိုရိုကို ဒရမ်</displayName>
  3920. <displayName count="other">မိုရိုကို ဒရမ်</displayName>
  3921. </currency>
  3922. <currency type="MDL">
  3923. <displayName>မောလ်ဒိုဗာလယ်အို</displayName>
  3924. <displayName count="other">မောလ်ဒိုဗာလယ်အို</displayName>
  3925. </currency>
  3926. <currency type="MGA">
  3927. <displayName draft="contributed">မလာဂစ်စီ အရီရရီ ငွေႀကး။</displayName>
  3928. <displayName count="other" draft="contributed">မလာဂစ်စီ အရီရရီ ငွေႀကး။</displayName>
  3929. </currency>
  3930. <currency type="MKD">
  3931. <displayName>မာစီဒိုးနီးယားဒီနာ</displayName>
  3932. <displayName count="other">မာစီဒိုးနီးယားဒီနာ</displayName>
  3933. </currency>
  3934. <currency type="MMK">
  3935. <displayName>မြန်မာကျပ်</displayName>
  3936. <displayName count="other">မြန်မာကျပ်</displayName>
  3937. <symbol>K</symbol>
  3938. </currency>
  3939. <currency type="MNT">
  3940. <displayName>မွန်ဂိုးလီးယားထူးဂရခ်</displayName>
  3941. <displayName count="other">မွန်ဂိုးလီးယားထူးဂရခ်</displayName>
  3942. </currency>
  3943. <currency type="MOP">
  3944. <displayName>မကာအိုပါတားကား</displayName>
  3945. <displayName count="other">မကာအိုပါတားကား</displayName>
  3946. </currency>
  3947. <currency type="MRO">
  3948. <displayName>မောရီတာနီအာအူဂီးယာ</displayName>
  3949. <displayName count="other">မောရီတာနီအာအူဂီးယာ</displayName>
  3950. </currency>
  3951. <currency type="MUR">
  3952. <displayName>မော်ရေရှားစ် ရူပီ</displayName>
  3953. <displayName count="other">မော်ရေရှားစ် ရူပီ</displayName>
  3954. </currency>
  3955. <currency type="MVR">
  3956. <displayName>မော်လ်ဒိုက်ရူးဖီရာ</displayName>
  3957. <displayName count="other">မော်လ်ဒိုက်ရူးဖီရာ</displayName>
  3958. </currency>
  3959. <currency type="MWK">
  3960. <displayName>မာလာဝီခွါးချာ</displayName>
  3961. <displayName count="other">မာလာဝီခွါးချာ</displayName>
  3962. </currency>
  3963. <currency type="MXN">
  3964. <displayName>မက္ကဆီကို ပီဆို</displayName>
  3965. <displayName count="other">မက္ကဆီကို ပီဆို</displayName>
  3966. <symbol>MX$</symbol>
  3967. </currency>
  3968. <currency type="MYR">
  3969. <displayName>မလေးရှား ရင်းဂစ်</displayName>
  3970. <displayName count="other">မလေးရှား ရင်းဂစ်</displayName>
  3971. </currency>
  3972. <currency type="MZN">
  3973. <displayName>မိုဇန်ဘစ်မက်တီခယ်လ်</displayName>
  3974. <displayName count="other">မိုဇန်ဘစ်မက်တီခယ်လ်</displayName>
  3975. </currency>
  3976. <currency type="NAD">
  3977. <displayName>နမ်မီးဘီးယား ဒေါ်လာ</displayName>
  3978. <displayName count="other">နမ်မီးဘီးယား ဒေါ်လာ</displayName>
  3979. </currency>
  3980. <currency type="NGN">
  3981. <displayName>နိုင်ဂျီးရီးယားနိုင်းရာ</displayName>
  3982. <displayName count="other">နိုင်ဂျီးရီးယားနိုင်းရာ</displayName>
  3983. </currency>
  3984. <currency type="NIO">
  3985. <displayName>နီကာရာဂွာ ခိုးဒိုဘာ</displayName>
  3986. <displayName count="other">နီကာရာဂွာ ခိုးဒိုဘာ</displayName>
  3987. </currency>
  3988. <currency type="NOK">
  3989. <displayName>နော်ဝေ ခရိုဏာ</displayName>
  3990. <displayName count="other">နော်ဝေ ခရိုဏာ</displayName>
  3991. </currency>
  3992. <currency type="NPR">
  3993. <displayName>နီပေါ ရူပီး</displayName>
  3994. <displayName count="other">နီပေါ ရူပီး</displayName>
  3995. </currency>
  3996. <currency type="NZD">
  3997. <displayName>နယူးဇီလန် ဒေါ်လာ</displayName>
  3998. <displayName count="other">နယူးဇီလန် ဒေါ်လာ</displayName>
  3999. <symbol>NZ$</symbol>
  4000. </currency>
  4001. <currency type="OMR">
  4002. <displayName>အိုမန်ရီအော်လ်</displayName>
  4003. <displayName count="other">အိုမန်ရီအော်လ်</displayName>
  4004. </currency>
  4005. <currency type="PAB">
  4006. <displayName>ပနားမား ဘလ်ဘိုးအာ</displayName>
  4007. <displayName count="other">ပနားမား ဘလ်ဘိုးအာ</displayName>
  4008. </currency>
  4009. <currency type="PEN">
  4010. <displayName>ပီရူး နူအီဗိုဆိုးလ်</displayName>
  4011. <displayName count="other">ပီရူး နူအီဗိုဆိုးလ်</displayName>
  4012. </currency>
  4013. <currency type="PGK">
  4014. <displayName>ပါပူရာနယူးဂီနီခီးနာ</displayName>
  4015. <displayName count="other">ပါပူရာနယူးဂီနီခီးနာ</displayName>
  4016. </currency>
  4017. <currency type="PHP">
  4018. <displayName>ဖိလစ်ပိုင် ပီဆို</displayName>
  4019. <displayName count="other">ဖိလစ်ပိုင် ပီဆို</displayName>
  4020. </currency>
  4021. <currency type="PKR">
  4022. <displayName>ပါကစ္စတန် ရူပီး</displayName>
  4023. </currency>
  4024. <currency type="PLN">
  4025. <displayName>ပိုလန် ဇ‌လော့တီ</displayName>
  4026. <displayName count="other">ပိုလန် ဇ‌လော့တီ</displayName>
  4027. </currency>
  4028. <currency type="PYG">
  4029. <displayName>ပါရာဂွေးဂွါးအ်နီး</displayName>
  4030. <displayName count="other">ပါရာဂွေးဂွါးအ်နီး</displayName>
  4031. </currency>
  4032. <currency type="QAR">
  4033. <displayName>ကာတာရီအော်လ်</displayName>
  4034. <displayName count="other">ကာတာရီအော်လ်</displayName>
  4035. </currency>
  4036. <currency type="RON">
  4037. <displayName>ရိုမေးနီယားလယ်အို</displayName>
  4038. <displayName count="other">ရိုမေးနီယားလယ်အို</displayName>
  4039. </currency>
  4040. <currency type="RSD">
  4041. <displayName>ဆားဘီးယားဒယ်နား</displayName>
  4042. <displayName count="other">ဆားဘီးယားဒယ်နား</displayName>
  4043. </currency>
  4044. <currency type="RUB">
  4045. <displayName>ရုရှ ရူဘယ်</displayName>
  4046. </currency>
  4047. <currency type="RUR">
  4048. <displayName>ရုရှ ရူဘယ် (၁၉၉၁–၁၉၉၈)</displayName>
  4049. </currency>
  4050. <currency type="RWF">
  4051. <displayName>ရဝန်ဒါ ဖရန့်</displayName>
  4052. <displayName count="other">ရဝန်ဒါ ဖရန့်</displayName>
  4053. </currency>
  4054. <currency type="SAR">
  4055. <displayName>ဆော်ဒီအာရေးဗီးယားရီယော်လ်</displayName>
  4056. <displayName count="other">ဆော်ဒီအာရေးဗီးယားရီယော်လ်</displayName>
  4057. </currency>
  4058. <currency type="SBD">
  4059. <displayName>ဆော်လမွန်ကျွန်းစု ဒေါ်လာ</displayName>
  4060. <displayName count="other">ဆော်လမွန်ကျွန်းစု ဒေါ်လာ</displayName>
  4061. </currency>
  4062. <currency type="SCR">
  4063. <displayName>ဆေးရှလ်ရူးပီး</displayName>
  4064. <displayName count="other">ဆေးရှလ်ရူးပီး</displayName>
  4065. </currency>
  4066. <currency type="SDG">
  4067. <displayName>ဆူဒန် ပေါင်</displayName>
  4068. <displayName count="other">ဆူဒန် ပေါင်</displayName>
  4069. </currency>
  4070. <currency type="SDP">
  4071. <displayName>ဆူဒန် ပေါင်အဟောင်း</displayName>
  4072. </currency>
  4073. <currency type="SEK">
  4074. <displayName>ဆွီဒင် ခရိုဏာ</displayName>
  4075. <displayName count="other">ဆွီဒင် ခရိုဏာ</displayName>
  4076. </currency>
  4077. <currency type="SGD">
  4078. <displayName>စင်္ကာပူ ဒေါ်လာ</displayName>
  4079. <displayName count="other">စင်္ကာပူ ဒေါ်လာ</displayName>
  4080. </currency>
  4081. <currency type="SHP">
  4082. <displayName>စိန့်ဟဲလီနာ ပေါင်</displayName>
  4083. <displayName count="other">စိန့်ဟဲလီနာ ပေါင်</displayName>
  4084. </currency>
  4085. <currency type="SLL">
  4086. <displayName>ဆီအဲရာ လီအိုနီယန် လီအိုနီ</displayName>
  4087. <displayName count="other">ဆီအဲရာ လီအိုနီယန် လီအိုနီ</displayName>
  4088. </currency>
  4089. <currency type="SOS">
  4090. <displayName>ဆိုမာလီသျှီလင်</displayName>
  4091. <displayName count="other">ဆိုမာလီသျှီလင်</displayName>
  4092. </currency>
  4093. <currency type="SRD">
  4094. <displayName>ဆူရီနိမ်း ဒေါ်လာ</displayName>
  4095. <displayName count="other">ဆူရီနိမ်း ဒေါ်လာ</displayName>
  4096. </currency>
  4097. <currency type="SSP">
  4098. <displayName>တောင်ဆူဒန်ပေါင်</displayName>
  4099. <displayName count="other">တောင်ဆူဒန်ပေါင်</displayName>
  4100. </currency>
  4101. <currency type="STD">
  4102. <displayName>စိန့်တိုမီနှင့်ပရင်စီပ့် ဒိုဘရာ</displayName>
  4103. <displayName count="other">စိန့်တိုမီနှင့်ပရင်စီပ့် ဒိုဘရာ</displayName>
  4104. </currency>
  4105. <currency type="SUR">
  4106. <displayName>ဆိုဗီယက် ရူဗယ်</displayName>
  4107. </currency>
  4108. <currency type="SYP">
  4109. <displayName>ဆီးရီးယား ပေါင်</displayName>
  4110. <displayName count="other">ဆီးရီးယား ပေါင်</displayName>
  4111. </currency>
  4112. <currency type="SZL">
  4113. <displayName>စွာဇီလန်လီလန်းဂီနီ</displayName>
  4114. <displayName count="other">စွာဇီလန်လီလန်းဂီနီ</displayName>
  4115. </currency>
  4116. <currency type="THB">
  4117. <displayName>ထိုင်းဘတ်</displayName>
  4118. <displayName count="other">ထိုင်းဘတ်</displayName>
  4119. <symbol>฿</symbol>
  4120. </currency>
  4121. <currency type="TJS">
  4122. <displayName>တာဂျီကစ္စတန်ဆိုမိုနီ</displayName>
  4123. <displayName count="other">တာဂျီကစ္စတန်ဆိုမိုနီ</displayName>
  4124. </currency>
  4125. <currency type="TMT">
  4126. <displayName>တာခ်မီန့စ်တန်မာနတ်</displayName>
  4127. <displayName count="other">တာခ်မီန့စ်တန်မာနတ်</displayName>
  4128. </currency>
  4129. <currency type="TND">
  4130. <displayName>တူနီရှားဒီနာ</displayName>
  4131. <displayName count="other">တူနီရှားဒီနာ</displayName>
  4132. </currency>
  4133. <currency type="TOP">
  4134. <displayName>တွန်ဂါဗန်ဂါ</displayName>
  4135. <displayName count="other">တွန်ဂါဗန်ဂါ</displayName>
  4136. </currency>
  4137. <currency type="TRL">
  4138. <displayName>ရှေးဟောင်းတူရကီ လိုင်ရာ</displayName>
  4139. </currency>
  4140. <currency type="TRY">
  4141. <displayName>တူရကီ လိုင်ရာ</displayName>
  4142. <displayName count="other">တူရကီ လိုင်ရာ</displayName>
  4143. </currency>
  4144. <currency type="TTD">
  4145. <displayName>ထရိုင်နီဒတ်နှင့်တိုဘာဂိုဒေါ်လာ</displayName>
  4146. <displayName count="other">တရီနာဒတ်နှင့်တိုဘာဂိုဒေါ်လာ</displayName>
  4147. </currency>
  4148. <currency type="TWD">
  4149. <displayName>ထိုင်ဝမ် ဒေါ်လာအသစ်</displayName>
  4150. <displayName count="other">ထိုင်ဝမ် ဒေါ်လာအသစ်</displayName>
  4151. <symbol>NT$</symbol>
  4152. </currency>
  4153. <currency type="TZS">
  4154. <displayName>တန်ဇန်းနီးယားသျှီလင်</displayName>
  4155. <displayName count="other">တန်ဇန်းနီးယားသျှီလင်</displayName>
  4156. </currency>
  4157. <currency type="UAH">
  4158. <displayName>ယူကရိန်း</displayName>
  4159. <displayName count="other">ယ</displayName>
  4160. </currency>
  4161. <currency type="UGX">
  4162. <displayName>ယူဂန္ဓာသျှီလင်</displayName>
  4163. <displayName count="other">ယူဂန္ဓာသျှီလင်</displayName>
  4164. </currency>
  4165. <currency type="USD">
  4166. <displayName>အမေရိကန် ဒေါ်လာ</displayName>
  4167. <displayName count="other">အမေရိကန် ဒေါ်လာ</displayName>
  4168. <symbol>US$</symbol>
  4169. </currency>
  4170. <currency type="USN">
  4171. <displayName>အမေရိကန် ဒေါ်လာ (နောက်နေ့)</displayName>
  4172. </currency>
  4173. <currency type="USS">
  4174. <displayName>အမေရိကန် ဒေါ်လာ (တနေ့တည်း)</displayName>
  4175. </currency>
  4176. <currency type="UYU">
  4177. <displayName>ဥရုဂွေးပီဆို</displayName>
  4178. <displayName count="other">ဥရုဂွေးပီဆို</displayName>
  4179. </currency>
  4180. <currency type="UZS">
  4181. <displayName>ဥဘက်ကစ္စတန်ဆော်မ်</displayName>
  4182. <displayName count="other">ဥဘက်ကစ္စတန်ဆော်မ်</displayName>
  4183. </currency>
  4184. <currency type="VEF">
  4185. <displayName>ဗင်နီဇွဲလား ဘိုလီဗာ</displayName>
  4186. <displayName count="other">ဗင်နီဇွဲလား ဘိုလီဗာ</displayName>
  4187. </currency>
  4188. <currency type="VND">
  4189. <displayName>ဗီယက်နမ် ဒေါင်</displayName>
  4190. <displayName count="other">ဗီယက်နမ် ဒေါင်</displayName>
  4191. <symbol>₫</symbol>
  4192. </currency>
  4193. <currency type="VUV">
  4194. <displayName>ဗာနုအာတူဗားထူ</displayName>
  4195. <displayName count="other">ဗာနုအာတူဗားထူ</displayName>
  4196. </currency>
  4197. <currency type="WST">
  4198. <displayName>စမိုအထားလာ</displayName>
  4199. <displayName count="other">စမိုအထားလာ</displayName>
  4200. </currency>
  4201. <currency type="XAF">
  4202. <displayName>ကင်မရွန်းဖရန့်</displayName>
  4203. <displayName count="other">ကင်မရွန်းဖရန့်</displayName>
  4204. <symbol>FCFA</symbol>
  4205. </currency>
  4206. <currency type="XAG">
  4207. <displayName>ငွေ</displayName>
  4208. </currency>
  4209. <currency type="XAU">
  4210. <displayName>ရွှေ</displayName>
  4211. </currency>
  4212. <currency type="XBB">
  4213. <displayName>ဥရောပငွေကြေးစံနစ်</displayName>
  4214. </currency>
  4215. <currency type="XCD">
  4216. <displayName>အရှေ့ကာရီဘီယံဒေါ်လာ</displayName>
  4217. <displayName count="other">အရှေ့ကာရီဘီယံဒေါ်လာ</displayName>
  4218. <symbol>EC$</symbol>
  4219. </currency>
  4220. <currency type="XDR">
  4221. <displayName>အထူးထုတ်ယူခွင့်</displayName>
  4222. </currency>
  4223. <currency type="XOF">
  4224. <displayName>အိုင်ဗရီးကိုးစ်ဖရန့်</displayName>
  4225. <displayName count="other">အိုင်ဗရီးကိုးစ်ဖရန့်</displayName>
  4226. <symbol>CFA</symbol>
  4227. </currency>
  4228. <currency type="XPF">
  4229. <displayName>XPFဖရန့်</displayName>
  4230. <displayName count="other">XPFဖရန့်</displayName>
  4231. <symbol>CFPF</symbol>
  4232. </currency>
  4233. <currency type="XPT">
  4234. <displayName>ပလက်တီနမ်</displayName>
  4235. </currency>
  4236. <currency type="XTS">
  4237. <displayName>စမ်းသပ် ငွေကြေး ကုဒ်</displayName>
  4238. </currency>
  4239. <currency type="XXX">
  4240. <displayName>မသိသို့မဟုတ်မရှိသောငွေကြေး</displayName>
  4241. <displayName count="other">မသိ သို့မဟုတ် မရှိသော ငွေကြေး</displayName>
  4242. </currency>
  4243. <currency type="YER">
  4244. <displayName>ယီမင်ရီအော်လ်</displayName>
  4245. <displayName count="other">ယီမင်ရီအော်လ်</displayName>
  4246. </currency>
  4247. <currency type="ZAR">
  4248. <displayName>တောင်အဖရိက ရန်း</displayName>
  4249. <displayName count="other">တောင်အဖရိက ရန်း</displayName>
  4250. </currency>
  4251. <currency type="ZMW">
  4252. <displayName>ဇင်ဘာဘွေခွါးချာ</displayName>
  4253. <displayName count="other">ဇင်ဘာဘွေခွါးချာ</displayName>
  4254. </currency>
  4255. <currency type="ZWD">
  4256. <displayName>ဇင်ဘာဘွေ ဒေါ်လာ</displayName>
  4257. </currency>
  4258. </currencies>
  4259. <miscPatterns numberSystem="latn">
  4260. <pattern type="atLeast">⩾{0}</pattern>
  4261. <pattern type="range">{0}–{1}</pattern>
  4262. </miscPatterns>
  4263. </numbers>
  4264. <units>
  4265. <unitLength type="long">
  4266. <compoundUnit type="per">
  4267. <compoundUnitPattern>{0}လျှင်{1}နှုန်း</compoundUnitPattern>
  4268. </compoundUnit>
  4269. <unit type="acceleration-g-force">
  4270. <unitPattern count="other">{0} ဆွဲငင်အား</unitPattern>
  4271. </unit>
  4272. <unit type="angle-arc-minute">
  4273. <unitPattern count="other">{0}မိနစ်</unitPattern>
  4274. </unit>
  4275. <unit type="angle-arc-second">
  4276. <unitPattern count="other">{0}စက္ကန့်</unitPattern>
  4277. </unit>
  4278. <unit type="angle-degree">
  4279. <unitPattern count="other">{0}ဒီဂရီ</unitPattern>
  4280. </unit>
  4281. <unit type="area-acre">
  4282. <unitPattern count="other">{0}ဧက</unitPattern>
  4283. </unit>
  4284. <unit type="area-hectare">
  4285. <unitPattern count="other">{0} ဟက်တာ</unitPattern>
  4286. </unit>
  4287. <unit type="area-square-foot">
  4288. <unitPattern count="other">{0}စတုရန်းပေ</unitPattern>
  4289. </unit>
  4290. <unit type="area-square-kilometer">
  4291. <unitPattern count="other">{0}စတုရန်းကီလိုမီတာ</unitPattern>
  4292. </unit>
  4293. <unit type="area-square-meter">
  4294. <unitPattern count="other">{0}စတုရန်းမီတာ</unitPattern>
  4295. </unit>
  4296. <unit type="area-square-mile">
  4297. <unitPattern count="other">{0}စတုရန်းမိုင်</unitPattern>
  4298. </unit>
  4299. <unit type="duration-day">
  4300. <unitPattern count="other">{0}ရက်</unitPattern>
  4301. </unit>
  4302. <unit type="duration-hour">
  4303. <unitPattern count="other">{0}နာရီ</unitPattern>
  4304. </unit>
  4305. <unit type="duration-millisecond">
  4306. <unitPattern count="other">{0}မီလီစက္ကန့်</unitPattern>
  4307. </unit>
  4308. <unit type="duration-minute">
  4309. <unitPattern count="other">{0} မိနစ်</unitPattern>
  4310. </unit>
  4311. <unit type="duration-month">
  4312. <unitPattern count="other">{0}လ</unitPattern>
  4313. </unit>
  4314. <unit type="duration-second">
  4315. <unitPattern count="other">{0} စက္ကန့်</unitPattern>
  4316. </unit>
  4317. <unit type="duration-week">
  4318. <unitPattern count="other">{0}ပတ်</unitPattern>
  4319. </unit>
  4320. <unit type="duration-year">
  4321. <unitPattern count="other">{0}နှစ်</unitPattern>
  4322. </unit>
  4323. <unit type="length-centimeter">
  4324. <unitPattern count="other">{0} စင်တီမီတာ</unitPattern>
  4325. </unit>
  4326. <unit type="length-foot">
  4327. <unitPattern count="other">{0} ပေ</unitPattern>
  4328. </unit>
  4329. <unit type="length-inch">
  4330. <unitPattern count="other">{0} လက်မ</unitPattern>
  4331. </unit>
  4332. <unit type="length-kilometer">
  4333. <unitPattern count="other">{0} ကီလိုမီတာ</unitPattern>
  4334. </unit>
  4335. <unit type="length-light-year">
  4336. <unitPattern count="other">{0} အလင်းနှစ်</unitPattern>
  4337. </unit>
  4338. <unit type="length-meter">
  4339. <unitPattern count="other">{0}မီတာ</unitPattern>
  4340. </unit>
  4341. <unit type="length-mile">
  4342. <unitPattern count="other">{0} မိုင်</unitPattern>
  4343. </unit>
  4344. <unit type="length-millimeter">
  4345. <unitPattern count="other">{0} မီလီမီတာ</unitPattern>
  4346. </unit>
  4347. <unit type="length-picometer">
  4348. <unitPattern count="other">{0} ပီကိုမီတာ</unitPattern>
  4349. </unit>
  4350. <unit type="length-yard">
  4351. <unitPattern count="other">{0} ကိုက်</unitPattern>
  4352. </unit>
  4353. <unit type="mass-gram">
  4354. <unitPattern count="other">{0} ဂရမ်</unitPattern>
  4355. </unit>
  4356. <unit type="mass-kilogram">
  4357. <unitPattern count="other">{0}ကီလိုဂရမ်</unitPattern>
  4358. </unit>
  4359. <unit type="mass-ounce">
  4360. <unitPattern count="other">{0}အောင်စ</unitPattern>
  4361. </unit>
  4362. <unit type="mass-pound">
  4363. <unitPattern count="other">{0}ပေါင်</unitPattern>
  4364. </unit>
  4365. <unit type="power-horsepower">
  4366. <unitPattern count="other">{0}မြင်ကောင်ရေအား</unitPattern>
  4367. </unit>
  4368. <unit type="power-kilowatt">
  4369. <unitPattern count="other">{0}ကီလိုဝပ်</unitPattern>
  4370. </unit>
  4371. <unit type="power-watt">
  4372. <unitPattern count="other">{0}ဝပ်</unitPattern>
  4373. </unit>
  4374. <unit type="pressure-hectopascal">
  4375. <unitPattern count="other">{0}ဟက်တိုပါစကယ်</unitPattern>
  4376. </unit>
  4377. <unit type="pressure-inch-hg">
  4378. <unitPattern count="other">ပွဒါး{0}လက်မ</unitPattern>
  4379. </unit>
  4380. <unit type="pressure-millibar">
  4381. <unitPattern count="other">{0}မီလီဘား</unitPattern>
  4382. </unit>
  4383. <unit type="speed-kilometer-per-hour">
  4384. <unitPattern count="other">တစ်နာရီလျှင်{0}ကီလိုမီတာနှုန်း</unitPattern>
  4385. </unit>
  4386. <unit type="speed-meter-per-second">
  4387. <unitPattern count="other">တစ်စက္ကန့်လျှင်{0}မီတာနှုန်း</unitPattern>
  4388. </unit>
  4389. <unit type="speed-mile-per-hour">
  4390. <unitPattern count="other">တစ်နာရီလျှင်{0}မိုင်နှုန်း</unitPattern>
  4391. </unit>
  4392. <unit type="temperature-celsius">
  4393. <unitPattern count="other">{0}စင်တီဂရိတ်</unitPattern>
  4394. </unit>
  4395. <unit type="temperature-fahrenheit">
  4396. <unitPattern count="other">{0}ဖာရင်ဟိုက်</unitPattern>
  4397. </unit>
  4398. <unit type="volume-cubic-kilometer">
  4399. <unitPattern count="other">{0} ကုဗကီလိုမီတာ</unitPattern>
  4400. </unit>
  4401. <unit type="volume-cubic-mile">
  4402. <unitPattern count="other">{0}ကုဗမိုင်</unitPattern>
  4403. </unit>
  4404. <unit type="volume-liter">
  4405. <unitPattern count="other">{0}လီတာ</unitPattern>
  4406. </unit>
  4407. </unitLength>
  4408. <unitLength type="short">
  4409. <compoundUnit type="per">
  4410. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4411. </compoundUnit>
  4412. <unit type="acceleration-g-force">
  4413. <unitPattern count="other">{0} G</unitPattern>
  4414. </unit>
  4415. <unit type="angle-arc-minute">
  4416. <unitPattern count="other">{0}′</unitPattern>
  4417. </unit>
  4418. <unit type="angle-arc-second">
  4419. <unitPattern count="other">{0}″</unitPattern>
  4420. </unit>
  4421. <unit type="angle-degree">
  4422. <unitPattern count="other">{0}°</unitPattern>
  4423. </unit>
  4424. <unit type="area-acre">
  4425. <unitPattern count="other">{0} ac</unitPattern>
  4426. </unit>
  4427. <unit type="area-hectare">
  4428. <unitPattern count="other">{0} ha</unitPattern>
  4429. </unit>
  4430. <unit type="area-square-foot">
  4431. <unitPattern count="other">{0} ft²</unitPattern>
  4432. </unit>
  4433. <unit type="area-square-kilometer">
  4434. <unitPattern count="other">{0} km²</unitPattern>
  4435. </unit>
  4436. <unit type="area-square-meter">
  4437. <unitPattern count="other">{0} m²</unitPattern>
  4438. </unit>
  4439. <unit type="area-square-mile">
  4440. <unitPattern count="other">{0} mi²</unitPattern>
  4441. </unit>
  4442. <unit type="duration-day">
  4443. <unitPattern count="other">{0}ရက်</unitPattern>
  4444. </unit>
  4445. <unit type="duration-hour">
  4446. <unitPattern count="other">{0}နာရီ</unitPattern>
  4447. </unit>
  4448. <unit type="duration-millisecond">
  4449. <unitPattern count="other">{0} ms</unitPattern>
  4450. </unit>
  4451. <unit type="duration-minute">
  4452. <unitPattern count="other">{0}မိနစ်</unitPattern>
  4453. </unit>
  4454. <unit type="duration-month">
  4455. <unitPattern count="other">{0}လ</unitPattern>
  4456. </unit>
  4457. <unit type="duration-second">
  4458. <unitPattern count="other">{0} s</unitPattern>
  4459. </unit>
  4460. <unit type="duration-week">
  4461. <unitPattern count="other">{0}ပတ်</unitPattern>
  4462. </unit>
  4463. <unit type="duration-year">
  4464. <unitPattern count="other">{0} y</unitPattern>
  4465. </unit>
  4466. <unit type="length-centimeter">
  4467. <unitPattern count="other">{0} cm</unitPattern>
  4468. </unit>
  4469. <unit type="length-foot">
  4470. <unitPattern count="other">{0} ပေ</unitPattern>
  4471. </unit>
  4472. <unit type="length-inch">
  4473. <unitPattern count="other">{0} လက်မ</unitPattern>
  4474. </unit>
  4475. <unit type="length-kilometer">
  4476. <unitPattern count="other">{0} km</unitPattern>
  4477. </unit>
  4478. <unit type="length-light-year">
  4479. <unitPattern count="other">{0} အလင်းနှစ်</unitPattern>
  4480. </unit>
  4481. <unit type="length-meter">
  4482. <unitPattern count="other">{0} m</unitPattern>
  4483. </unit>
  4484. <unit type="length-mile">
  4485. <unitPattern count="other">{0}မိုင်</unitPattern>
  4486. </unit>
  4487. <unit type="length-millimeter">
  4488. <unitPattern count="other">{0} mm</unitPattern>
  4489. </unit>
  4490. <unit type="length-picometer">
  4491. <unitPattern count="other">{0} pm</unitPattern>
  4492. </unit>
  4493. <unit type="length-yard">
  4494. <unitPattern count="other">{0} ကိုက်</unitPattern>
  4495. </unit>
  4496. <unit type="mass-gram">
  4497. <unitPattern count="other">{0} g</unitPattern>
  4498. </unit>
  4499. <unit type="mass-kilogram">
  4500. <unitPattern count="other">{0} kg</unitPattern>
  4501. </unit>
  4502. <unit type="mass-ounce">
  4503. <unitPattern count="other">{0} oz</unitPattern>
  4504. </unit>
  4505. <unit type="mass-pound">
  4506. <unitPattern count="other">{0} lb</unitPattern>
  4507. </unit>
  4508. <unit type="power-horsepower">
  4509. <unitPattern count="other">{0} hp</unitPattern>
  4510. </unit>
  4511. <unit type="power-kilowatt">
  4512. <unitPattern count="other">{0} kW</unitPattern>
  4513. </unit>
  4514. <unit type="power-watt">
  4515. <unitPattern count="other">{0} W</unitPattern>
  4516. </unit>
  4517. <unit type="pressure-hectopascal">
  4518. <unitPattern count="other">{0} hPa</unitPattern>
  4519. </unit>
  4520. <unit type="pressure-inch-hg">
  4521. <unitPattern count="other">{0} inHg</unitPattern>
  4522. </unit>
  4523. <unit type="pressure-millibar">
  4524. <unitPattern count="other">{0} mbar</unitPattern>
  4525. </unit>
  4526. <unit type="speed-kilometer-per-hour">
  4527. <unitPattern count="other">{0} km/h</unitPattern>
  4528. </unit>
  4529. <unit type="speed-meter-per-second">
  4530. <unitPattern count="other">{0} m/s</unitPattern>
  4531. </unit>
  4532. <unit type="speed-mile-per-hour">
  4533. <unitPattern count="other">{0} mi/h</unitPattern>
  4534. </unit>
  4535. <unit type="temperature-celsius">
  4536. <unitPattern count="other">{0}°C</unitPattern>
  4537. </unit>
  4538. <unit type="temperature-fahrenheit">
  4539. <unitPattern count="other">{0}°F</unitPattern>
  4540. </unit>
  4541. <unit type="volume-cubic-kilometer">
  4542. <unitPattern count="other">{0} km³</unitPattern>
  4543. </unit>
  4544. <unit type="volume-cubic-mile">
  4545. <unitPattern count="other">{0} mi³</unitPattern>
  4546. </unit>
  4547. <unit type="volume-liter">
  4548. <unitPattern count="other">{0} l</unitPattern>
  4549. </unit>
  4550. </unitLength>
  4551. <unitLength type="narrow">
  4552. <compoundUnit type="per">
  4553. <compoundUnitPattern>{0}/{1}</compoundUnitPattern>
  4554. </compoundUnit>
  4555. <unit type="acceleration-g-force">
  4556. <unitPattern count="other">{0} G</unitPattern>
  4557. </unit>
  4558. <unit type="angle-arc-minute">
  4559. <unitPattern count="other">{0}′</unitPattern>
  4560. </unit>
  4561. <unit type="angle-arc-second">
  4562. <unitPattern count="other">{0}″</unitPattern>
  4563. </unit>
  4564. <unit type="angle-degree">
  4565. <unitPattern count="other">{0}°</unitPattern>
  4566. </unit>
  4567. <unit type="area-acre">
  4568. <unitPattern count="other">{0} ac</unitPattern>
  4569. </unit>
  4570. <unit type="area-hectare">
  4571. <unitPattern count="other">{0} ha</unitPattern>
  4572. </unit>
  4573. <unit type="area-square-foot">
  4574. <unitPattern count="other">{0} ft²</unitPattern>
  4575. </unit>
  4576. <unit type="area-square-kilometer">
  4577. <unitPattern count="other">{0} km²</unitPattern>
  4578. </unit>
  4579. <unit type="area-square-meter">
  4580. <unitPattern count="other">{0} m²</unitPattern>
  4581. </unit>
  4582. <unit type="area-square-mile">
  4583. <unitPattern count="other">{0} mi²</unitPattern>
  4584. </unit>
  4585. <unit type="duration-day">
  4586. <unitPattern count="other">{0}ရက်</unitPattern>
  4587. </unit>
  4588. <unit type="duration-hour">
  4589. <unitPattern count="other">{0}နာရီ</unitPattern>
  4590. </unit>
  4591. <unit type="duration-millisecond">
  4592. <unitPattern count="other">{0} ms</unitPattern>
  4593. </unit>
  4594. <unit type="duration-minute">
  4595. <unitPattern count="other">{0}မိနစ်</unitPattern>
  4596. </unit>
  4597. <unit type="duration-month">
  4598. <unitPattern count="other">{0}လ</unitPattern>
  4599. </unit>
  4600. <unit type="duration-second">
  4601. <unitPattern count="other">{0} s</unitPattern>
  4602. </unit>
  4603. <unit type="duration-week">
  4604. <unitPattern count="other">{0}ပတ်</unitPattern>
  4605. </unit>
  4606. <unit type="duration-year">
  4607. <unitPattern count="other">{0} y</unitPattern>
  4608. </unit>
  4609. <unit type="length-centimeter">
  4610. <unitPattern count="other">{0} cm</unitPattern>
  4611. </unit>
  4612. <unit type="length-foot">
  4613. <unitPattern count="other">{0} '</unitPattern>
  4614. </unit>
  4615. <unit type="length-inch">
  4616. <unitPattern count="other">{0} ″</unitPattern>
  4617. </unit>
  4618. <unit type="length-kilometer">
  4619. <unitPattern count="other">{0} km</unitPattern>
  4620. </unit>
  4621. <unit type="length-light-year">
  4622. <unitPattern count="other">{0} အလင်းနှစ်</unitPattern>
  4623. </unit>
  4624. <unit type="length-meter">
  4625. <unitPattern count="other">{0} m</unitPattern>
  4626. </unit>
  4627. <unit type="length-mile">
  4628. <unitPattern count="other">{0}မိုင်</unitPattern>
  4629. </unit>
  4630. <unit type="length-millimeter">
  4631. <unitPattern count="other">{0} mm</unitPattern>
  4632. </unit>
  4633. <unit type="length-picometer">
  4634. <unitPattern count="other">{0} pm</unitPattern>
  4635. </unit>
  4636. <unit type="length-yard">
  4637. <unitPattern count="other">{0} ကိုက်</unitPattern>
  4638. </unit>
  4639. <unit type="mass-gram">
  4640. <unitPattern count="other">{0} g</unitPattern>
  4641. </unit>
  4642. <unit type="mass-kilogram">
  4643. <unitPattern count="other">{0} kg</unitPattern>
  4644. </unit>
  4645. <unit type="mass-ounce">
  4646. <unitPattern count="other">{0} oz</unitPattern>
  4647. </unit>
  4648. <unit type="mass-pound">
  4649. <unitPattern count="other">{0} lb</unitPattern>
  4650. </unit>
  4651. <unit type="power-horsepower">
  4652. <unitPattern count="other">{0} hp</unitPattern>
  4653. </unit>
  4654. <unit type="power-kilowatt">
  4655. <unitPattern count="other">{0} kW</unitPattern>
  4656. </unit>
  4657. <unit type="power-watt">
  4658. <unitPattern count="other">{0} W</unitPattern>
  4659. </unit>
  4660. <unit type="pressure-hectopascal">
  4661. <unitPattern count="other">{0} hPa</unitPattern>
  4662. </unit>
  4663. <unit type="pressure-inch-hg">
  4664. <unitPattern count="other">{0} inHg</unitPattern>
  4665. </unit>
  4666. <unit type="pressure-millibar">
  4667. <unitPattern count="other">{0} mbar</unitPattern>
  4668. </unit>
  4669. <unit type="speed-kilometer-per-hour">
  4670. <unitPattern count="other">{0} km/h</unitPattern>
  4671. </unit>
  4672. <unit type="speed-meter-per-second">
  4673. <unitPattern count="other">{0} m/s</unitPattern>
  4674. </unit>
  4675. <unit type="speed-mile-per-hour">
  4676. <unitPattern count="other">{0} mi/h</unitPattern>
  4677. </unit>
  4678. <unit type="temperature-celsius">
  4679. <unitPattern count="other">{0}°</unitPattern>
  4680. </unit>
  4681. <unit type="temperature-fahrenheit">
  4682. <unitPattern count="other">{0}°F</unitPattern>
  4683. </unit>
  4684. <unit type="volume-cubic-kilometer">
  4685. <unitPattern count="other">{0} km³</unitPattern>
  4686. </unit>
  4687. <unit type="volume-cubic-mile">
  4688. <unitPattern count="other">{0} mi³</unitPattern>
  4689. </unit>
  4690. <unit type="volume-liter">
  4691. <unitPattern count="other">{0} l</unitPattern>
  4692. </unit>
  4693. </unitLength>
  4694. <durationUnit type="hm">
  4695. <durationUnitPattern>h:mm</durationUnitPattern>
  4696. </durationUnit>
  4697. <durationUnit type="hms">
  4698. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  4699. </durationUnit>
  4700. <durationUnit type="ms">
  4701. <durationUnitPattern>m:ss</durationUnitPattern>
  4702. </durationUnit>
  4703. </units>
  4704. <listPatterns>
  4705. <listPattern>
  4706. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4707. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4708. <listPatternPart type="end">{0}, နှင့်{1}</listPatternPart>
  4709. <listPatternPart type="2">{0}နှင့်{1}</listPatternPart>
  4710. </listPattern>
  4711. <listPattern type="unit">
  4712. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4713. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4714. <listPatternPart type="end">{0}, နှင့်{1}</listPatternPart>
  4715. <listPatternPart type="2">{0}နှင့်{1}</listPatternPart>
  4716. </listPattern>
  4717. <listPattern type="unit-narrow">
  4718. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4719. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4720. <listPatternPart type="end">{0}, နှင့်{1}</listPatternPart>
  4721. <listPatternPart type="2">{0}နှင့်{1}</listPatternPart>
  4722. </listPattern>
  4723. <listPattern type="unit-short">
  4724. <listPatternPart type="start">{0}, {1}</listPatternPart>
  4725. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  4726. <listPatternPart type="end">{0}, နှင့်{1}</listPatternPart>
  4727. <listPatternPart type="2">{0}နှင့်{1}</listPatternPart>
  4728. </listPattern>
  4729. </listPatterns>
  4730. <posix>
  4731. <messages>
  4732. <yesstr>ဟုတ်တယ်</yesstr>
  4733. <nostr>မဟုတ်ဘူး</nostr>
  4734. </messages>
  4735. </posix>
  4736. </ldml>