mn.xml 194 KB

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