lt.xml 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <ldml>
  3. <identity>
  4. <version number="$Revision: 1.111 $"/>
  5. <generation date="$Date: 2009/06/15 03:46:25 $"/>
  6. <language type="lt"/>
  7. </identity>
  8. <localeDisplayNames>
  9. <languages>
  10. <language type="aa">afarų</language>
  11. <language type="ab">abchazų</language>
  12. <language type="ace">ačinezų</language>
  13. <language type="ach">acoli</language>
  14. <language type="ada">adangmų</language>
  15. <language type="ady">adygėjų</language>
  16. <language type="ae">avestų</language>
  17. <language type="af">afrikanų</language>
  18. <language type="afa">afroazijos kalba</language>
  19. <language type="afh">afrihili</language>
  20. <language type="ain">ainų</language>
  21. <language type="ak">akanų</language>
  22. <language type="akk">akadianų</language>
  23. <language type="ale">aleutų</language>
  24. <language type="alg">algonkuanų kalba</language>
  25. <language type="alt">pietų altajaus</language>
  26. <language type="am">amharų</language>
  27. <language type="an">aragonesų</language>
  28. <language type="ang">senoji anglų</language>
  29. <language type="anp">angikų</language>
  30. <language type="apa">apačių kalba</language>
  31. <language type="ar">arabų</language>
  32. <language type="arc">aramaikų</language>
  33. <language type="arn">araukanų</language>
  34. <language type="arp">arapahų</language>
  35. <language type="art">dirbtinė kalba</language>
  36. <language type="arw">aravakų</language>
  37. <language type="as">asamų</language>
  38. <language type="ast">asturianų</language>
  39. <language type="ath">athapaskanų kalba</language>
  40. <language type="aus">australų kalba</language>
  41. <language type="av">avarikų</language>
  42. <language type="awa">avadhi</language>
  43. <language type="ay">aimarų</language>
  44. <language type="az">azerbaidžaniečių</language>
  45. <language type="ba">baškirų</language>
  46. <language type="bad">bandų</language>
  47. <language type="bai">bamilekų kalba</language>
  48. <language type="bal">baluči</language>
  49. <language type="ban">balinezų</language>
  50. <language type="bas">basų</language>
  51. <language type="bat">baltų kalba</language>
  52. <language type="be">baltarusių</language>
  53. <language type="bej">bėjų</language>
  54. <language type="bem">bembų</language>
  55. <language type="ber">berberų</language>
  56. <language type="bg">bulgarų</language>
  57. <language type="bh">biharų</language>
  58. <language type="bho">baučpuri</language>
  59. <language type="bi">bislama</language>
  60. <language type="bik">bikolų</language>
  61. <language type="bin">bini</language>
  62. <language type="bla">siksika</language>
  63. <language type="bm">bambarų</language>
  64. <language type="bn">bengalų</language>
  65. <language type="bnt">bantų</language>
  66. <language type="bo">tibetiečių</language>
  67. <language type="br">bretonų</language>
  68. <language type="bra">brajų</language>
  69. <language type="bs">bosnių</language>
  70. <language type="btk">batakų</language>
  71. <language type="bua">buriatų</language>
  72. <language type="bug">buginezų</language>
  73. <language type="byn">blin</language>
  74. <language type="ca">katalonų</language>
  75. <language type="cad">kado</language>
  76. <language type="cai">Centrinės Amerikos indėnų kalba</language>
  77. <language type="car">karibų</language>
  78. <language type="cau">kaukaziečių kalba</language>
  79. <language type="cch">atsamų</language>
  80. <language type="ce">čečėnų</language>
  81. <language type="ceb">cebuanų</language>
  82. <language type="cel">keltų kalba</language>
  83. <language type="ch">čamorų</language>
  84. <language type="chb">čibča</language>
  85. <language type="chg">čagatų</language>
  86. <language type="chk">čukesų</language>
  87. <language type="chm">mari</language>
  88. <language type="chn">činuk žargonas</language>
  89. <language type="cho">čoktau</language>
  90. <language type="chp">čipvėjų</language>
  91. <language type="chr">čerokių</language>
  92. <language type="chy">čajenų</language>
  93. <language type="cmc">čamikų kalba</language>
  94. <language type="co">korsikiečių</language>
  95. <language type="cop">koptų</language>
  96. <language type="cpe">kreolų ir pidžinų kalba pagal anglų</language>
  97. <language type="cpf">kreolų ir pidžinų kalba pagal prancūzų</language>
  98. <language type="cpp">kreolų ir pidžinų kalba pagal portugalų</language>
  99. <language type="cr">kry</language>
  100. <language type="crh">krymo turkų</language>
  101. <language type="crp">kreolų ir pidžinų</language>
  102. <language type="cs">čekų</language>
  103. <language type="csb">kašubų</language>
  104. <language type="cu">bažnytinė slavų</language>
  105. <language type="cus">kušitik kalba</language>
  106. <language type="cv">čiuvašų</language>
  107. <language type="cy">valų</language>
  108. <language type="da">danų</language>
  109. <language type="dak">dakotų</language>
  110. <language type="dar">dargva</language>
  111. <language type="day">bidayuh kalba</language>
  112. <language type="de">vokiečių</language>
  113. <language type="de_AT">Austrijos vokiečių</language>
  114. <language type="de_CH">aukštoji Šveicarijos vokiečių</language>
  115. <language type="del">delavero</language>
  116. <language type="den">slave</language>
  117. <language type="dgr">dogribų</language>
  118. <language type="din">dinkų</language>
  119. <language type="doi">dogri</language>
  120. <language type="dra">dravidų kalba</language>
  121. <language type="dsb">Žemutinės Serbijos</language>
  122. <language type="dua">dualų</language>
  123. <language type="dum">Vidurio Vokietijos</language>
  124. <language type="dv">divehi</language>
  125. <language type="dyu">dyulų</language>
  126. <language type="dz">svazilando</language>
  127. <language type="ee">eve</language>
  128. <language type="efi">efik</language>
  129. <language type="egy">senovės egiptiečių</language>
  130. <language type="eka">ekajuk</language>
  131. <language type="el">graikų</language>
  132. <language type="elx">elamitų</language>
  133. <language type="en">anglų</language>
  134. <language type="en_AU">anglų kalba (australija)</language>
  135. <language type="en_CA">Kanados anglų</language>
  136. <language type="en_GB">anglų (britų)</language>
  137. <language type="en_US">anglų (amerikiečių)</language>
  138. <language type="enm">Vidurio Anglijos</language>
  139. <language type="eo">esperanto</language>
  140. <language type="es">ispanų</language>
  141. <language type="es_419">Lotynų Amerikos ispanų</language>
  142. <language type="es_ES">Iberijos ispanų</language>
  143. <language type="et">estų</language>
  144. <language type="eu">baskų</language>
  145. <language type="ewo">evondo</language>
  146. <language type="fa">persų</language>
  147. <language type="fan">fang</language>
  148. <language type="fat">fanti</language>
  149. <language type="ff">fulahų</language>
  150. <language type="fi">suomių</language>
  151. <language type="fil">tagalų</language>
  152. <language type="fiu">finougrų kalba</language>
  153. <language type="fj">fidžio</language>
  154. <language type="fo">farerų kalba</language>
  155. <language type="fon">fon</language>
  156. <language type="fr">prancūzų</language>
  157. <language type="fr_CA">Kanados prancūzų</language>
  158. <language type="fr_CH">Šveicarijos prancūzų</language>
  159. <language type="frm">Vidurio Prancūzijos</language>
  160. <language type="fro">senoji prancūzų</language>
  161. <language type="frr">šiaurinių fryzų</language>
  162. <language type="frs">rytų fryzų</language>
  163. <language type="fur">frulan</language>
  164. <language type="fy">vakarų fryzų</language>
  165. <language type="ga">airių</language>
  166. <language type="gaa">ga</language>
  167. <language type="gay">gajo</language>
  168. <language type="gba">gbaja</language>
  169. <language type="gd">škotų (gėlų)</language>
  170. <language type="gem">germanų kalba</language>
  171. <language type="gez">gyz</language>
  172. <language type="gil">kiribati</language>
  173. <language type="gl">galisų</language>
  174. <language type="gmh">Vidurio aukštosios Vokietijos</language>
  175. <language type="gn">gvaranių</language>
  176. <language type="goh">Senoji Aukštosios Vokietijos</language>
  177. <language type="gon">gondi</language>
  178. <language type="gor">gorontalo</language>
  179. <language type="got">gotų</language>
  180. <language type="grb">grebo</language>
  181. <language type="grc">senovės graikų</language>
  182. <language type="gsw">Šveicarijos vokiečių</language>
  183. <language type="gu">gudžaratų</language>
  184. <language type="gv">manks</language>
  185. <language type="gwi">gvičino</language>
  186. <language type="ha">hausų</language>
  187. <language type="hai">haido</language>
  188. <language type="haw">havajų</language>
  189. <language type="he">hebrajų</language>
  190. <language type="hi">hindi</language>
  191. <language type="hil">hiligainon</language>
  192. <language type="him">himačali</language>
  193. <language type="hit">hititų</language>
  194. <language type="hmn">hmong</language>
  195. <language type="ho">hiri motu</language>
  196. <language type="hr">kroatų</language>
  197. <language type="hsb">viršutinė sorbian</language>
  198. <language type="ht">haičio</language>
  199. <language type="hu">vengrų</language>
  200. <language type="hup">hupa</language>
  201. <language type="hy">armėnų</language>
  202. <language type="hz">herero</language>
  203. <language type="ia">interlingva</language>
  204. <language type="iba">iban</language>
  205. <language type="id">indoneziečių</language>
  206. <language type="ie">interkalba</language>
  207. <language type="ig">igbo</language>
  208. <language type="ii">sičuan ji</language>
  209. <language type="ijo">ijo</language>
  210. <language type="ik">inupiak</language>
  211. <language type="ilo">iloko</language>
  212. <language type="inc">indų kalba</language>
  213. <language type="ine">indoeuropiečių kalba</language>
  214. <language type="inh">ingušų</language>
  215. <language type="io">ido</language>
  216. <language type="ira">Iraniečių</language>
  217. <language type="iro">irako kalba</language>
  218. <language type="is">islandų</language>
  219. <language type="it">italų</language>
  220. <language type="iu">inukitut</language>
  221. <language type="ja">japonų</language>
  222. <language type="jbo">loiban</language>
  223. <language type="jpr">judėjų persų</language>
  224. <language type="jrb">judėjų arabų</language>
  225. <language type="jv">javiečių</language>
  226. <language type="ka">gruzinų</language>
  227. <language type="kaa">karakalpakų</language>
  228. <language type="kab">kabilo</language>
  229. <language type="kac">kačin</language>
  230. <language type="kaj">ju</language>
  231. <language type="kam">kamba</language>
  232. <language type="kar">karenų</language>
  233. <language type="kaw">kavi</language>
  234. <language type="kbd">kabardinų</language>
  235. <language type="kcg">tyap</language>
  236. <language type="kfo">koro</language>
  237. <language type="kg">kongo</language>
  238. <language type="kha">kasi</language>
  239. <language type="khi">koisan kalba</language>
  240. <language type="kho">kotanezų</language>
  241. <language type="ki">kikui</language>
  242. <language type="kj">kuaniama</language>
  243. <language type="kk">kazachų</language>
  244. <language type="kl">kalalisut</language>
  245. <language type="km">khmerų</language>
  246. <language type="kmb">kimbundu</language>
  247. <language type="kn">kanadų</language>
  248. <language type="ko">korėjiečių</language>
  249. <language type="kok">kankani</language>
  250. <language type="kos">kosreanų</language>
  251. <language type="kpe">kpele</language>
  252. <language type="kr">kanuri</language>
  253. <language type="krc">karačiajų balkarijos</language>
  254. <language type="krl">karelų</language>
  255. <language type="kro">kru kalba</language>
  256. <language type="kru">kuruk</language>
  257. <language type="ks">kašmyro</language>
  258. <language type="ku">kurdų</language>
  259. <language type="kum">kumik</language>
  260. <language type="kut">kutenai</language>
  261. <language type="kv">komi</language>
  262. <language type="kw">kornų</language>
  263. <language type="ky">kirgizų</language>
  264. <language type="la">lotynų</language>
  265. <language type="lad">ladino</language>
  266. <language type="lah">landa</language>
  267. <language type="lam">lamba</language>
  268. <language type="lb">liuksemburgiečių</language>
  269. <language type="lez">lezginų</language>
  270. <language type="lg">ganda</language>
  271. <language type="li">limburgiš</language>
  272. <language type="ln">lingala</language>
  273. <language type="lo">laosiečių</language>
  274. <language type="lol">mongo</language>
  275. <language type="loz">lozi</language>
  276. <language type="lt">lietuvių</language>
  277. <language type="lu">luba katanga</language>
  278. <language type="lua">luba lula</language>
  279. <language type="lui">luiseno</language>
  280. <language type="lun">lunda</language>
  281. <language type="luo">luo</language>
  282. <language type="lus">lušai</language>
  283. <language type="lv">latvių</language>
  284. <language type="mad">madurezų</language>
  285. <language type="mag">magahi</language>
  286. <language type="mai">maithili</language>
  287. <language type="mak">makasaro</language>
  288. <language type="man">mandingo</language>
  289. <language type="map">austronezų</language>
  290. <language type="mas">masajų</language>
  291. <language type="mdf">mokša</language>
  292. <language type="mdr">mandar</language>
  293. <language type="men">mende</language>
  294. <language type="mg">malagasijos</language>
  295. <language type="mga">Vidurio Airijos</language>
  296. <language type="mh">Maršalo salų</language>
  297. <language type="mi">maorių</language>
  298. <language type="mic">mikmak</language>
  299. <language type="min">minankabu</language>
  300. <language type="mis">įvairios kalbos</language>
  301. <language type="mk">makedonų</language>
  302. <language type="mkh">mon khmer kalba</language>
  303. <language type="ml">malajalių</language>
  304. <language type="mn">mongolų</language>
  305. <language type="mnc">manču</language>
  306. <language type="mni">manipuri</language>
  307. <language type="mno">manobo kalba</language>
  308. <language type="mo">moldavų</language>
  309. <language type="moh">mohok</language>
  310. <language type="mos">mosi</language>
  311. <language type="mr">maratų</language>
  312. <language type="ms">malajiečių</language>
  313. <language type="mt">maltiečių</language>
  314. <language type="mul">kelios kalbos</language>
  315. <language type="mun">munda kalba</language>
  316. <language type="mus">krykų</language>
  317. <language type="mwl">mirandezų</language>
  318. <language type="mwr">marvari</language>
  319. <language type="my">birmiečių</language>
  320. <language type="myn">majanų</language>
  321. <language type="myv">erzyjų</language>
  322. <language type="na">naurų</language>
  323. <language type="nah">nahuatlų</language>
  324. <language type="nai">Šiaurės Amerikos indėnų kalba</language>
  325. <language type="nap">neapoliečių</language>
  326. <language type="nb">Norvegijos bokmal</language>
  327. <language type="nd">šiaurės ndebelų</language>
  328. <language type="nds">Žemutinės Vokietijos</language>
  329. <language type="ne">nepalų</language>
  330. <language type="new">nevari</language>
  331. <language type="ng">ndongų</language>
  332. <language type="nia">nias</language>
  333. <language type="nic">Nigerio kordofanų kalba</language>
  334. <language type="niu">niuenų</language>
  335. <language type="nl">olandų</language>
  336. <language type="nl_BE">flamandų</language>
  337. <language type="nn">naujoji norvegų</language>
  338. <language type="no">norvegų</language>
  339. <language type="nog">nogų</language>
  340. <language type="non">norsu</language>
  341. <language type="nqo">enko</language>
  342. <language type="nr">pietų ndebele</language>
  343. <language type="nso">šiaurės sothų</language>
  344. <language type="nub">nubijos kalba</language>
  345. <language type="nv">navajų</language>
  346. <language type="nwc">klasikinė nevari</language>
  347. <language type="ny">nianja</language>
  348. <language type="nym">niamvezi</language>
  349. <language type="nyn">niankole</language>
  350. <language type="nyo">nioro</language>
  351. <language type="nzi">nzima</language>
  352. <language type="oc">provansalų</language>
  353. <language type="oj">ojibva</language>
  354. <language type="om">oromo</language>
  355. <language type="or">orijų</language>
  356. <language type="os">osetinų</language>
  357. <language type="osa">osage</language>
  358. <language type="ota">osmanų turkų</language>
  359. <language type="oto">otomanų kalba</language>
  360. <language type="pa">pandžabų</language>
  361. <language type="paa">papuasų kalba</language>
  362. <language type="pag">pangasinan</language>
  363. <language type="pal">pahlavi</language>
  364. <language type="pam">pampanga</language>
  365. <language type="pap">papiemento</language>
  366. <language type="pau">palau</language>
  367. <language type="peo">senoji persų</language>
  368. <language type="phi">filipinų kalba</language>
  369. <language type="phn">finikiečių</language>
  370. <language type="pi">pali</language>
  371. <language type="pl">lenkų</language>
  372. <language type="pon">ponapean</language>
  373. <language type="pra">prakrit kalba</language>
  374. <language type="pro">senovės provansalų</language>
  375. <language type="ps">puštūnų</language>
  376. <language type="pt">portugalų</language>
  377. <language type="pt_BR">portugalų (Brazilijos)</language>
  378. <language type="pt_PT">Iberijos portugalų</language>
  379. <language type="qu">kečujų</language>
  380. <language type="raj">radžastano</language>
  381. <language type="rap">rapanui</language>
  382. <language type="rar">rarotongan</language>
  383. <language type="rm">raeto romanų</language>
  384. <language type="rn">rundi</language>
  385. <language type="ro">rumunų</language>
  386. <language type="roa">romanų kalba</language>
  387. <language type="rom">romų kalba</language>
  388. <language type="root">rūt</language>
  389. <language type="ru">rusų</language>
  390. <language type="rup">aromanių</language>
  391. <language type="rw">kinjarvanda</language>
  392. <language type="sa">sanskritas</language>
  393. <language type="sad">sandavi</language>
  394. <language type="sah">jakutų</language>
  395. <language type="sai">Pietų Amerikos indėnų kalba</language>
  396. <language type="sal">sališan kalba</language>
  397. <language type="sam">samarėjų aramių</language>
  398. <language type="sas">sasak</language>
  399. <language type="sat">santali</language>
  400. <language type="sc">sardiniečių</language>
  401. <language type="scn">siciliečių</language>
  402. <language type="sco">škotų</language>
  403. <language type="sd">sindų</language>
  404. <language type="se">šiaurinių samių</language>
  405. <language type="sel">selkup</language>
  406. <language type="sem">samitų kalba</language>
  407. <language type="sg">sango</language>
  408. <language type="sga">senoji airių</language>
  409. <language type="sgn">ženklų kalba</language>
  410. <language type="sh">serbų-kroatų</language>
  411. <language type="shn">šan</language>
  412. <language type="si">sinhalų</language>
  413. <language type="sid">sidamo</language>
  414. <language type="sio">siouan kalba</language>
  415. <language type="sit">sino tibeto kalba</language>
  416. <language type="sk">slovakų</language>
  417. <language type="sl">slovėnų</language>
  418. <language type="sla">slavų kalba</language>
  419. <language type="sm">samoa</language>
  420. <language type="sma">pietų sami</language>
  421. <language type="smi">samių kalba</language>
  422. <language type="smj">lule sami</language>
  423. <language type="smn">inari sami</language>
  424. <language type="sms">skolt sami</language>
  425. <language type="sn">šona</language>
  426. <language type="snk">soninke</language>
  427. <language type="so">somalių</language>
  428. <language type="sog">sogdien</language>
  429. <language type="son">songhai</language>
  430. <language type="sq">albanų</language>
  431. <language type="sr">serbų</language>
  432. <language type="srn">sranan tongo</language>
  433. <language type="srr">sererų</language>
  434. <language type="ss">svati</language>
  435. <language type="ssa">Nilo Sacharos kalba</language>
  436. <language type="st">pietų sesuto</language>
  437. <language type="su">sundų</language>
  438. <language type="suk">sukuma</language>
  439. <language type="sus">susu</language>
  440. <language type="sux">šumerų</language>
  441. <language type="sv">švedų</language>
  442. <language type="sw">svahili</language>
  443. <language type="syc">klasikinė siriečių</language>
  444. <language type="syr">sirų</language>
  445. <language type="ta">tamilų</language>
  446. <language type="tai">tajų kalba</language>
  447. <language type="te">telugų</language>
  448. <language type="tem">timne</language>
  449. <language type="ter">tereno</language>
  450. <language type="tet">tetum</language>
  451. <language type="tg">tadžikų</language>
  452. <language type="th">tajų</language>
  453. <language type="ti">tigrajų</language>
  454. <language type="tig">tigre</language>
  455. <language type="tiv">tiv</language>
  456. <language type="tk">turkmėnų</language>
  457. <language type="tkl">tokelau</language>
  458. <language type="tl">tagalogų</language>
  459. <language type="tlh">„žvaigždžių kelionių“</language>
  460. <language type="tli">tlingit</language>
  461. <language type="tmh">tamašek</language>
  462. <language type="tn">tsvana</language>
  463. <language type="to">tonga</language>
  464. <language type="tog">niasa tongos</language>
  465. <language type="tpi">tok pisin</language>
  466. <language type="tr">turkų</language>
  467. <language type="ts">tsonga</language>
  468. <language type="tsi">tsimšian</language>
  469. <language type="tt">totorių</language>
  470. <language type="tum">tumbuka</language>
  471. <language type="tup">tupi kalba</language>
  472. <language type="tut">altaikų kalba</language>
  473. <language type="tvl">tuvalu</language>
  474. <language type="tw">tvi</language>
  475. <language type="ty">taitiečių</language>
  476. <language type="tyv">tuvių</language>
  477. <language type="udm">udmurtų</language>
  478. <language type="ug">uigūrų</language>
  479. <language type="uga">ugaritic</language>
  480. <language type="uk">ukrainiečių</language>
  481. <language type="umb">umbundu</language>
  482. <language type="und">nenustatyta kalba</language>
  483. <language type="ur">urdų</language>
  484. <language type="uz">uzbekų</language>
  485. <language type="vai">vai</language>
  486. <language type="ve">venda</language>
  487. <language type="vi">vietnamiečių</language>
  488. <language type="vo">volapiuk</language>
  489. <language type="vot">votik</language>
  490. <language type="wa">valonų</language>
  491. <language type="wak">vakašan kalba</language>
  492. <language type="wal">valamo</language>
  493. <language type="war">varai</language>
  494. <language type="was">vašo</language>
  495. <language type="wen">sorbų kalba</language>
  496. <language type="wo">volof</language>
  497. <language type="xal">kalmukų</language>
  498. <language type="xh">kosų</language>
  499. <language type="yao">jao</language>
  500. <language type="yap">japezų</language>
  501. <language type="yi">jidiš</language>
  502. <language type="yo">joruba</language>
  503. <language type="ypk">jupik kalba</language>
  504. <language type="za">chuang</language>
  505. <language type="zap">zapotekų</language>
  506. <language type="zbl">„Bliss“ simbolių kalba</language>
  507. <language type="zen">zenaga</language>
  508. <language type="zh">kinų</language>
  509. <language type="zh_Hans">kinų supaprastinta</language>
  510. <language type="zh_Hant">kinų tradicinė</language>
  511. <language type="znd">zande</language>
  512. <language type="zu">zulų</language>
  513. <language type="zun">zuni</language>
  514. <language type="zxx">Nėra kalbinio turinio</language>
  515. <language type="zza">zaza</language>
  516. </languages>
  517. <scripts>
  518. <script type="Arab">arabų</script>
  519. <script type="Armi">imperinė aramaikų</script>
  520. <script type="Armn">armėnų</script>
  521. <script type="Avst">avestano</script>
  522. <script type="Bali">Bali</script>
  523. <script type="Batk">batak</script>
  524. <script type="Beng">bengalų</script>
  525. <script type="Blis">„Bliss“ simboliai</script>
  526. <script type="Bopo">bopomofo</script>
  527. <script type="Brah">brahmi</script>
  528. <script type="Brai">brailio</script>
  529. <script type="Bugi">buginezų</script>
  530. <script type="Buhd">buhid</script>
  531. <script type="Cakm">čakma</script>
  532. <script type="Cans">suvienodinti Kanados aborigenų silabiniai</script>
  533. <script type="Cari">karių</script>
  534. <script type="Cham">čam</script>
  535. <script type="Cher">čerokių</script>
  536. <script type="Cirt">kirt</script>
  537. <script type="Copt">koptų</script>
  538. <script type="Cprt">kipro</script>
  539. <script type="Cyrl">kirilica</script>
  540. <script type="Cyrs">senoji bažnytinė slavų kirilica</script>
  541. <script type="Deva">devanagari</script>
  542. <script type="Dsrt">deseretas</script>
  543. <script type="Egyd">Egipto liaudies</script>
  544. <script type="Egyh">Egipto žynių</script>
  545. <script type="Egyp">egipto hieroglifai</script>
  546. <script type="Ethi">etiopų</script>
  547. <script type="Geok">gruzinų kutsuri</script>
  548. <script type="Geor">gruzinų</script>
  549. <script type="Glag">glagolitik</script>
  550. <script type="Goth">gotų</script>
  551. <script type="Grek">graikų</script>
  552. <script type="Gujr">gudžiarati</script>
  553. <script type="Guru">gurmuki</script>
  554. <script type="Hang">hangul</script>
  555. <script type="Hani">han</script>
  556. <script type="Hano">hanuno</script>
  557. <script type="Hans">supaprastinta han</script>
  558. <script type="Hant">tradicinė han</script>
  559. <script type="Hebr">hebrajų</script>
  560. <script type="Hira">hiragana</script>
  561. <script type="Hmng">pahav hmong</script>
  562. <script type="Hrkt">katakana/hiragana</script>
  563. <script type="Hung">senasis vengrų</script>
  564. <script type="Inds">indus</script>
  565. <script type="Ital">senasis italų</script>
  566. <script type="Java">javiečių</script>
  567. <script type="Jpan">japonų</script>
  568. <script type="Kali">kajah li</script>
  569. <script type="Kana">katakana</script>
  570. <script type="Khar">karošti</script>
  571. <script type="Khmr">khmerų</script>
  572. <script type="Knda">kanadiečių</script>
  573. <script type="Kore">korejiečių</script>
  574. <script type="Kthi">kaithi</script>
  575. <script type="Lana">lana</script>
  576. <script type="Laoo">lao</script>
  577. <script type="Latf">fraktur lotynų</script>
  578. <script type="Latg">gėlų lotynų</script>
  579. <script type="Latn">lotynų</script>
  580. <script type="Lepc">lepča</script>
  581. <script type="Limb">limbu</script>
  582. <script type="Lina">linijiniai A</script>
  583. <script type="Linb">linijiniai B</script>
  584. <script type="Lyci">lician</script>
  585. <script type="Lydi">lidian</script>
  586. <script type="Mand">mandėjų</script>
  587. <script type="Mani">maničų</script>
  588. <script type="Maya">malų hieroglifai</script>
  589. <script type="Mero">meroitik</script>
  590. <script type="Mlym">malajalų</script>
  591. <script type="Mong">mongolų</script>
  592. <script type="Moon">mūn</script>
  593. <script type="Mtei">meitei majek</script>
  594. <script type="Mymr">mianmaro</script>
  595. <script type="Nkoo">enko</script>
  596. <script type="Ogam">ogham</script>
  597. <script type="Olck">ol čiki</script>
  598. <script type="Orkh">orkon</script>
  599. <script type="Orya">orija</script>
  600. <script type="Osma">osmanų</script>
  601. <script type="Perm">senieji permės</script>
  602. <script type="Phag">pagsa pa</script>
  603. <script type="Phli">rašytiniai pahlavi</script>
  604. <script type="Phlp">pselter pahlavi</script>
  605. <script type="Phlv">buk pahvali</script>
  606. <script type="Phnx">foenikų</script>
  607. <script type="Plrd">polard fonetinė</script>
  608. <script type="Prti">rašytiniai partų</script>
  609. <script type="Qaai">paveldėtas</script>
  610. <script type="Rjng">rejang</script>
  611. <script type="Roro">rongorongo</script>
  612. <script type="Runr">runų</script>
  613. <script type="Samr">samariečių</script>
  614. <script type="Sara">sarati</script>
  615. <script type="Saur">sauraštra</script>
  616. <script type="Sgnw">ženklų raštas</script>
  617. <script type="Shaw">šavių</script>
  618. <script type="Sinh">sinhala</script>
  619. <script type="Sund">sundų</script>
  620. <script type="Sylo">syloti nagri</script>
  621. <script type="Syrc">sirų</script>
  622. <script type="Syre">estrangelo siriečių</script>
  623. <script type="Syrj">vakarų sirų</script>
  624. <script type="Syrn">rytų sirų</script>
  625. <script type="Tagb">tagbanva</script>
  626. <script type="Tale">tai le</script>
  627. <script type="Talu">naujasis Tailando lue</script>
  628. <script type="Taml">tamilų</script>
  629. <script type="Tavt">tai vet</script>
  630. <script type="Telu">telugų</script>
  631. <script type="Teng">tengvar</script>
  632. <script type="Tfng">tifinag</script>
  633. <script type="Tglg">tagalogų</script>
  634. <script type="Thaa">hana</script>
  635. <script type="Thai">tajų</script>
  636. <script type="Tibt">tibetiečių</script>
  637. <script type="Ugar">ugaritik</script>
  638. <script type="Vaii">vai</script>
  639. <script type="Visp">matoma kalba</script>
  640. <script type="Xpeo">senieji persų</script>
  641. <script type="Xsux">Šumero Akado dantiraštis</script>
  642. <script type="Yiii">ji</script>
  643. <script type="Zmth">matematiniai simboliai</script>
  644. <script type="Zsym">simbolių</script>
  645. <script type="Zxxx">neparašyta</script>
  646. <script type="Zyyy">bendras</script>
  647. <script type="Zzzz">nežinomi arba neteisingi rašmenys</script>
  648. </scripts>
  649. <territories>
  650. <territory type="001">Pasaulis</territory>
  651. <territory type="002">Afrika</territory>
  652. <territory type="003">Šiaurės Amerika</territory>
  653. <territory type="005">Pietų Amerika</territory>
  654. <territory type="009">Okeanija</territory>
  655. <territory type="011">Vakarų Afrika</territory>
  656. <territory type="013">Centrinė Amerika</territory>
  657. <territory type="014">Rytų Afrika</territory>
  658. <territory type="015">Šiaurės Afrika</territory>
  659. <territory type="017">Vidurio Afrika</territory>
  660. <territory type="018">Pietų Afrika [018]</territory>
  661. <territory type="019">Amerika</territory>
  662. <territory type="021">Šiaurinė Amerika</territory>
  663. <territory type="029">Karibai</territory>
  664. <territory type="030">Rytų Azija</territory>
  665. <territory type="034">Pietų Azija</territory>
  666. <territory type="035">Pietryčių Azija</territory>
  667. <territory type="039">Pietų Europa</territory>
  668. <territory type="053">Australija ir Naujoji Zelandija</territory>
  669. <territory type="054">Melanezija</territory>
  670. <territory type="057">Mikronezijos regionas</territory>
  671. <territory type="061">Polinezija</territory>
  672. <territory type="062">Pietų vidurio Azija</territory>
  673. <territory type="142">Azija</territory>
  674. <territory type="143">Centrinė Azija</territory>
  675. <territory type="145">Vakarų Azija</territory>
  676. <territory type="150">Europa</territory>
  677. <territory type="151">Rytų Europa</territory>
  678. <territory type="154">Šiaurės Europa</territory>
  679. <territory type="155">Vakarų Europa</territory>
  680. <territory type="172">Nepriklausomų Valstybių Sandrauga</territory>
  681. <territory type="200">Čekoslovakija</territory>
  682. <territory type="419">Lotynų Amerika ir Karibai</territory>
  683. <territory type="AD">Andora</territory>
  684. <territory type="AE">Jungtiniai Arabų Emyratai</territory>
  685. <territory type="AF">Afganistanas</territory>
  686. <territory type="AG">Antigva ir Barbuda</territory>
  687. <territory type="AI">Angilija</territory>
  688. <territory type="AL">Albanija</territory>
  689. <territory type="AM">Armėnija</territory>
  690. <territory type="AN">Olandijos Antilai</territory>
  691. <territory type="AO">Angola</territory>
  692. <territory type="AQ">Antarktis</territory>
  693. <territory type="AR">Argentina</territory>
  694. <territory type="AS">Amerikos Samoa</territory>
  695. <territory type="AT">Austrija</territory>
  696. <territory type="AU">Australija</territory>
  697. <territory type="AW">Aruba</territory>
  698. <territory type="AX">Alandų salos</territory>
  699. <territory type="AZ">Azerbaidžanas</territory>
  700. <territory type="BA">Bosnija ir Hercegovina</territory>
  701. <territory type="BB">Barbadosas</territory>
  702. <territory type="BD">Bangladešas</territory>
  703. <territory type="BE">Belgija</territory>
  704. <territory type="BF">Burkina Fasas</territory>
  705. <territory type="BG">Bulgarija</territory>
  706. <territory type="BH">Bahreinas</territory>
  707. <territory type="BI">Burundis</territory>
  708. <territory type="BJ">Beninas</territory>
  709. <territory type="BL">Švento Baltramiejaus sala</territory>
  710. <territory type="BM">Bermuda</territory>
  711. <territory type="BN">Brunėjus</territory>
  712. <territory type="BO">Bolivija</territory>
  713. <territory type="BR">Brazilija</territory>
  714. <territory type="BS">Bahamos</territory>
  715. <territory type="BT">Butanas</territory>
  716. <territory type="BV">Bouvet sala</territory>
  717. <territory type="BW">Botsvana</territory>
  718. <territory type="BY">Baltarusija</territory>
  719. <territory type="BZ">Belizas</territory>
  720. <territory type="CA">Kanada</territory>
  721. <territory type="CC">Kokosų salos</territory>
  722. <territory type="CD">Kongo Demokratinė Respublika</territory>
  723. <territory type="CF">Centrinės Afrikos Respublika</territory>
  724. <territory type="CG">Kongas</territory>
  725. <territory type="CH">Šveicarija</territory>
  726. <territory type="CI">Dramblio Kaulo Krantas</territory>
  727. <territory type="CK">Kuko salos</territory>
  728. <territory type="CL">Čilė</territory>
  729. <territory type="CM">Kamerūnas</territory>
  730. <territory type="CN">Kinija</territory>
  731. <territory type="CO">Kolumbija</territory>
  732. <territory type="CR">Kosta Rika</territory>
  733. <territory type="CS">Serbija ir Juodkalnija</territory>
  734. <territory type="CU">Kuba</territory>
  735. <territory type="CV">Žaliasis Kyšulys</territory>
  736. <territory type="CX">Kalėdų sala</territory>
  737. <territory type="CY">Kipras</territory>
  738. <territory type="CZ">Čekija</territory>
  739. <territory type="DE">Vokietija</territory>
  740. <territory type="DJ">Džibutis</territory>
  741. <territory type="DK">Danija</territory>
  742. <territory type="DM">Dominika</territory>
  743. <territory type="DO">Dominikos Respublika</territory>
  744. <territory type="DZ">Alžyras</territory>
  745. <territory type="EC">Ekvadoras</territory>
  746. <territory type="EE">Estija</territory>
  747. <territory type="EG">Egiptas</territory>
  748. <territory type="EH">Vakarų Sachara</territory>
  749. <territory type="ER">Eritrėja</territory>
  750. <territory type="ES">Ispanija</territory>
  751. <territory type="ET">Etiopija</territory>
  752. <territory type="FI">Suomija</territory>
  753. <territory type="FJ">Fidžis</territory>
  754. <territory type="FK">Falklando salos</territory>
  755. <territory type="FM">Mikronezija</territory>
  756. <territory type="FO">Farerų salos</territory>
  757. <territory type="FR">Prancūzija</territory>
  758. <territory type="GA">Gabonas</territory>
  759. <territory type="GB">Didžioji Britanija</territory>
  760. <territory type="GD">Grenada</territory>
  761. <territory type="GE">Gruzija</territory>
  762. <territory type="GF">Prancūzijos Gviana</territory>
  763. <territory type="GG">Guernsis</territory>
  764. <territory type="GH">Gana</territory>
  765. <territory type="GI">Gibraltaras</territory>
  766. <territory type="GL">Grenlandija</territory>
  767. <territory type="GM">Gambija</territory>
  768. <territory type="GN">Gvinėja</territory>
  769. <territory type="GP">Gvadelupė</territory>
  770. <territory type="GQ">Pusiaujo Gvinėja</territory>
  771. <territory type="GR">Graikija</territory>
  772. <territory type="GS">Pietų Džordžija ir Pietų Sandvičo salos</territory>
  773. <territory type="GT">Gvatemala</territory>
  774. <territory type="GU">Guamas</territory>
  775. <territory type="GW">Bisau Gvinėja</territory>
  776. <territory type="GY">Gajana</territory>
  777. <territory type="HK">Kinijos S.A.R.Honkongas</territory>
  778. <territory type="HM">Heardo ir McDonaldo Salų Sritis</territory>
  779. <territory type="HN">Hondūras</territory>
  780. <territory type="HR">Kroatija</territory>
  781. <territory type="HT">Haitis</territory>
  782. <territory type="HU">Vengrija</territory>
  783. <territory type="ID">Indonezija</territory>
  784. <territory type="IE">Airija</territory>
  785. <territory type="IL">Izraelis</territory>
  786. <territory type="IM">Meino sala</territory>
  787. <territory type="IN">Indija</territory>
  788. <territory type="IO">Indijos vandenyno britų sritis</territory>
  789. <territory type="IQ">Irakas</territory>
  790. <territory type="IR">Iranas</territory>
  791. <territory type="IS">Islandija</territory>
  792. <territory type="IT">Italija</territory>
  793. <territory type="JE">Džersis</territory>
  794. <territory type="JM">Jamaika</territory>
  795. <territory type="JO">Jordanija</territory>
  796. <territory type="JP">Japonija</territory>
  797. <territory type="KE">Kenija</territory>
  798. <territory type="KG">Kirgiztanas</territory>
  799. <territory type="KH">Kambodža</territory>
  800. <territory type="KI">Kiribatis</territory>
  801. <territory type="KM">Komorai</territory>
  802. <territory type="KN">Sent Kitsas ir Nevis</territory>
  803. <territory type="KP">Šiaurės Korėja</territory>
  804. <territory type="KR">Pietų Korėja</territory>
  805. <territory type="KW">Kuveitas</territory>
  806. <territory type="KY">Kaimanų salos</territory>
  807. <territory type="KZ">Kazachstanas</territory>
  808. <territory type="LA">Laosas</territory>
  809. <territory type="LB">Libanas</territory>
  810. <territory type="LC">Šventoji Liucija</territory>
  811. <territory type="LI">Lichtenšteinas</territory>
  812. <territory type="LK">Šri Lanka</territory>
  813. <territory type="LR">Liberija</territory>
  814. <territory type="LS">Lesotas</territory>
  815. <territory type="LT">Lietuva</territory>
  816. <territory type="LU">Liuksemburgas</territory>
  817. <territory type="LV">Latvija</territory>
  818. <territory type="LY">Libija</territory>
  819. <territory type="MA">Marokas</territory>
  820. <territory type="MC">Monakas</territory>
  821. <territory type="MD">Moldova</territory>
  822. <territory type="ME">Juodkalnija</territory>
  823. <territory type="MF">Saint-Martin</territory>
  824. <territory type="MG">Madagaskaras</territory>
  825. <territory type="MH">Maršalo Salos</territory>
  826. <territory type="MK">Makedonija</territory>
  827. <territory type="ML">Malis</territory>
  828. <territory type="MM">Mianmaras</territory>
  829. <territory type="MN">Mongolija</territory>
  830. <territory type="MO">Macao</territory>
  831. <territory type="MP">Marianos šiaurinės salos</territory>
  832. <territory type="MQ">Martinika</territory>
  833. <territory type="MR">Mauritanija</territory>
  834. <territory type="MS">Montserratas</territory>
  835. <territory type="MT">Malta</territory>
  836. <territory type="MU">Mauricijus</territory>
  837. <territory type="MV">Maldivai</territory>
  838. <territory type="MW">Malavis</territory>
  839. <territory type="MX">Meksika</territory>
  840. <territory type="MY">Malaizija</territory>
  841. <territory type="MZ">Mozambikas</territory>
  842. <territory type="NA">Namibija</territory>
  843. <territory type="NC">Naujoji Kaledonija</territory>
  844. <territory type="NE">Nigeris</territory>
  845. <territory type="NF">Norfolko sala</territory>
  846. <territory type="NG">Nigerija</territory>
  847. <territory type="NI">Nikaragva</territory>
  848. <territory type="NL">Nyderlandai</territory>
  849. <territory type="NO">Norvegija</territory>
  850. <territory type="NP">Nepalas</territory>
  851. <territory type="NR">Nauru</territory>
  852. <territory type="NU">Niue</territory>
  853. <territory type="NZ">Naujoji Zelandija</territory>
  854. <territory type="OM">Omanas</territory>
  855. <territory type="PA">Panama</territory>
  856. <territory type="PE">Peru</territory>
  857. <territory type="PF">Prancūzų Polinezija</territory>
  858. <territory type="PG">Papua Naujoji Gvinėja</territory>
  859. <territory type="PH">Filipinai</territory>
  860. <territory type="PK">Pakistanas</territory>
  861. <territory type="PL">Lenkija</territory>
  862. <territory type="PM">Sen Pjeras ir Mikelonas</territory>
  863. <territory type="PN">Pitkernas</territory>
  864. <territory type="PR">Puerto Rikas</territory>
  865. <territory type="PS">Palestinos teritorija</territory>
  866. <territory type="PT">Portugalija</territory>
  867. <territory type="PW">Palau</territory>
  868. <territory type="PY">Paragvajus</territory>
  869. <territory type="QA">Kataras</territory>
  870. <territory type="QU">Europos Sąjunga</territory>
  871. <territory type="RE">Reunionas</territory>
  872. <territory type="RO">Rumunija</territory>
  873. <territory type="RS">Serbija</territory>
  874. <territory type="RU">Rusijos Federacija</territory>
  875. <territory type="RW">Ruanda</territory>
  876. <territory type="SA">Saudo Arabija</territory>
  877. <territory type="SB">Saliamono salos</territory>
  878. <territory type="SC">Seišeliai</territory>
  879. <territory type="SD">Sudanas</territory>
  880. <territory type="SE">Švedija</territory>
  881. <territory type="SG">Singapūras</territory>
  882. <territory type="SH">Šventoji Elena</territory>
  883. <territory type="SI">Slovėnija</territory>
  884. <territory type="SJ">Svalbardo ir Jan Majen salos</territory>
  885. <territory type="SK">Slovakija</territory>
  886. <territory type="SL">Siera Leonė</territory>
  887. <territory type="SM">San Marinas</territory>
  888. <territory type="SN">Senegalas</territory>
  889. <territory type="SO">Somalis</territory>
  890. <territory type="SR">Surinamas</territory>
  891. <territory type="ST">San Tomė ir Principė</territory>
  892. <territory type="SV">Salvadoras</territory>
  893. <territory type="SY">Sirija</territory>
  894. <territory type="SZ">Svazilendas</territory>
  895. <territory type="TC">Turkso ir Caicoso salos</territory>
  896. <territory type="TD">Čadas</territory>
  897. <territory type="TF">Prancūzijos Pietų sritys</territory>
  898. <territory type="TG">Togas</territory>
  899. <territory type="TH">Tailandas</territory>
  900. <territory type="TJ">Tadžikistanas</territory>
  901. <territory type="TK">Tokelau</territory>
  902. <territory type="TL">Rytų Timoras</territory>
  903. <territory type="TM">Turkmėnistanas</territory>
  904. <territory type="TN">Tunisas</territory>
  905. <territory type="TO">Tonga</territory>
  906. <territory type="TR">Turkija</territory>
  907. <territory type="TT">Trinidadas ir Tobagas</territory>
  908. <territory type="TV">Tuvalu</territory>
  909. <territory type="TW">Taivanas</territory>
  910. <territory type="TZ">Tanzanija</territory>
  911. <territory type="UA">Ukraina</territory>
  912. <territory type="UG">Uganda</territory>
  913. <territory type="UM">Jungtinių Valstijų mažosios aplinkinės salos</territory>
  914. <territory type="US">Jungtinės Valstijos</territory>
  915. <territory type="UY">Urugvajus</territory>
  916. <territory type="UZ">Uzbekistanas</territory>
  917. <territory type="VA">Vatikanas</territory>
  918. <territory type="VC">Šventasis Vincentas ir Grenadinai</territory>
  919. <territory type="VE">Venesuela</territory>
  920. <territory type="VG">Didžiosios Britanijos Mergelių salos</territory>
  921. <territory type="VI">Mergelių salos (JAV)</territory>
  922. <territory type="VN">Vietnamas</territory>
  923. <territory type="VU">Vanuatu</territory>
  924. <territory type="WF">Wallisas ir Futuna</territory>
  925. <territory type="WS">Samoa</territory>
  926. <territory type="YE">Jemenas</territory>
  927. <territory type="YT">Mayotte’as</territory>
  928. <territory type="ZA">Pietų Afrika</territory>
  929. <territory type="ZM">Zambija</territory>
  930. <territory type="ZW">Zimbabvė</territory>
  931. <territory type="ZZ">Nežinoma ar neteisinga sritis</territory>
  932. </territories>
  933. <variants>
  934. <variant type="POSIX">Kompiuteris</variant>
  935. </variants>
  936. <keys>
  937. <key type="calendar">kalendorius</key>
  938. <key type="collation">lyginimas</key>
  939. <key type="currency">valiuta</key>
  940. </keys>
  941. <types>
  942. <type type="buddhist" key="calendar">Budistų kalendorius</type>
  943. <type type="chinese" key="calendar">Kiniečių kalendorius</type>
  944. <type type="gregorian" key="calendar">Grigaliaus kalendorius</type>
  945. <type type="hebrew" key="calendar">Hebrajų kalendorius</type>
  946. <type type="islamic" key="calendar">Islamo kalendorius</type>
  947. <type type="japanese" key="calendar">Japonų kalendorius</type>
  948. <type type="roc" key="calendar">Kinijos respublikos kalendorius</type>
  949. </types>
  950. <measurementSystemNames>
  951. <measurementSystemName type="metric">Metrinė</measurementSystemName>
  952. <measurementSystemName type="US">JAV</measurementSystemName>
  953. </measurementSystemNames>
  954. <codePatterns>
  955. <codePattern type="language">Kalba: {0}</codePattern>
  956. <codePattern type="script">Rašmenys: {0}</codePattern>
  957. <codePattern type="territory">Sritis: {0}</codePattern>
  958. </codePatterns>
  959. </localeDisplayNames>
  960. <characters>
  961. <exemplarCharacters>[a ą b c č d e ę ė f-i į y j-p r s š t u ų ū v z ž]</exemplarCharacters>
  962. <exemplarCharacters type="auxiliary">[{į\u0307} {i\u0307} {i\u0307\u0301} {i\u0307\u0300} {i\u0307\u0303} {j\u0307} q w x]</exemplarCharacters>
  963. <exemplarCharacters type="currencySymbol">[a ą b c č d e ę ė f-i į y j-p r s š t u ų ū v z ž]</exemplarCharacters>
  964. </characters>
  965. <delimiters>
  966. <quotationStart>„</quotationStart>
  967. <quotationEnd>“</quotationEnd>
  968. <alternateQuotationStart>„</alternateQuotationStart>
  969. <alternateQuotationEnd>“</alternateQuotationEnd>
  970. </delimiters>
  971. <dates>
  972. <dateRangePattern>{0}−{1}</dateRangePattern>
  973. <calendars>
  974. <calendar type="buddhist">
  975. <am>ryte</am>
  976. <dateFormats>
  977. <dateFormatLength type="full">
  978. <dateFormat>
  979. <pattern>y G, MMMM d, EEEE</pattern>
  980. </dateFormat>
  981. </dateFormatLength>
  982. </dateFormats>
  983. </calendar>
  984. <calendar type="gregorian">
  985. <months>
  986. <monthContext type="format">
  987. <monthWidth type="abbreviated">
  988. <month type="1">Sau</month>
  989. <month type="2">Vas</month>
  990. <month type="3">Kov</month>
  991. <month type="4">Bal</month>
  992. <month type="5">Geg</month>
  993. <month type="6">Bir</month>
  994. <month type="7">Lie</month>
  995. <month type="8">Rgp</month>
  996. <month type="9">Rgs</month>
  997. <month type="10">Spl</month>
  998. <month type="11">Lap</month>
  999. <month type="12">Grd</month>
  1000. </monthWidth>
  1001. <monthWidth type="wide">
  1002. <month type="1">sausio</month>
  1003. <month type="2">vasario</month>
  1004. <month type="3">kovo</month>
  1005. <month type="4">balandžio</month>
  1006. <month type="5">gegužės</month>
  1007. <month type="6">birželio</month>
  1008. <month type="7">liepos</month>
  1009. <month type="8">rugpjūčio</month>
  1010. <month type="9">rugsėjo</month>
  1011. <month type="10">spalio</month>
  1012. <month type="11">lapkričio</month>
  1013. <month type="12">gruodžio</month>
  1014. </monthWidth>
  1015. </monthContext>
  1016. <monthContext type="stand-alone">
  1017. <monthWidth type="narrow">
  1018. <month type="1">S</month>
  1019. <month type="2">V</month>
  1020. <month type="3">K</month>
  1021. <month type="4">B</month>
  1022. <month type="5">G</month>
  1023. <month type="6">B</month>
  1024. <month type="7">L</month>
  1025. <month type="8">R</month>
  1026. <month type="9">R</month>
  1027. <month type="10">S</month>
  1028. <month type="11">L</month>
  1029. <month type="12">G</month>
  1030. </monthWidth>
  1031. <monthWidth type="wide">
  1032. <month type="1">Sausis</month>
  1033. <month type="2">Vasaris</month>
  1034. <month type="3">Kovas</month>
  1035. <month type="4">Balandis</month>
  1036. <month type="5">Gegužė</month>
  1037. <month type="6">Birželis</month>
  1038. <month type="7">Liepa</month>
  1039. <month type="8">Rugpjūtis</month>
  1040. <month type="9">Rugsėjis</month>
  1041. <month type="10">Spalis</month>
  1042. <month type="11">Lapkritis</month>
  1043. <month type="12">Gruodis</month>
  1044. </monthWidth>
  1045. </monthContext>
  1046. </months>
  1047. <days>
  1048. <dayContext type="format">
  1049. <dayWidth type="abbreviated">
  1050. <day type="sun">Sk</day>
  1051. <day type="mon">Pr</day>
  1052. <day type="tue">An</day>
  1053. <day type="wed">Tr</day>
  1054. <day type="thu">Kt</day>
  1055. <day type="fri">Pn</day>
  1056. <day type="sat">Št</day>
  1057. </dayWidth>
  1058. <dayWidth type="wide">
  1059. <day type="sun">sekmadienis</day>
  1060. <day type="mon">pirmadienis</day>
  1061. <day type="tue">antradienis</day>
  1062. <day type="wed">trečiadienis</day>
  1063. <day type="thu">ketvirtadienis</day>
  1064. <day type="fri">penktadienis</day>
  1065. <day type="sat">šeštadienis</day>
  1066. </dayWidth>
  1067. </dayContext>
  1068. <dayContext type="stand-alone">
  1069. <dayWidth type="narrow">
  1070. <day type="sun">S</day>
  1071. <day type="mon">P</day>
  1072. <day type="tue">A</day>
  1073. <day type="wed">T</day>
  1074. <day type="thu">K</day>
  1075. <day type="fri">P</day>
  1076. <day type="sat">Š</day>
  1077. </dayWidth>
  1078. </dayContext>
  1079. </days>
  1080. <quarters>
  1081. <quarterContext type="format">
  1082. <quarterWidth type="abbreviated">
  1083. <quarter type="1">K1</quarter>
  1084. <quarter type="2">K2</quarter>
  1085. <quarter type="3">K3</quarter>
  1086. <quarter type="4">K4</quarter>
  1087. </quarterWidth>
  1088. <quarterWidth type="wide">
  1089. <quarter type="1">pirmas ketvirtis</quarter>
  1090. <quarter type="2">antras ketvirtis</quarter>
  1091. <quarter type="3">trečias ketvirtis</quarter>
  1092. <quarter type="4">ketvirtas ketvirtis</quarter>
  1093. </quarterWidth>
  1094. </quarterContext>
  1095. <quarterContext type="stand-alone">
  1096. <quarterWidth type="abbreviated">
  1097. <quarter type="1">1K</quarter>
  1098. <quarter type="2">2K</quarter>
  1099. <quarter type="3">3K</quarter>
  1100. <quarter type="4">4K</quarter>
  1101. </quarterWidth>
  1102. </quarterContext>
  1103. </quarters>
  1104. <am>priešpiet</am>
  1105. <pm>popiet</pm>
  1106. <eras>
  1107. <eraNames>
  1108. <era type="0">prieš Kristų</era>
  1109. <era type="1">po Kristaus</era>
  1110. </eraNames>
  1111. <eraAbbr>
  1112. <era type="0">pr. Kr.</era>
  1113. <era type="1">po Kr.</era>
  1114. </eraAbbr>
  1115. </eras>
  1116. <dateFormats>
  1117. <dateFormatLength type="full">
  1118. <dateFormat>
  1119. <pattern>y 'm'. MMMM d 'd'.,EEEE</pattern>
  1120. </dateFormat>
  1121. </dateFormatLength>
  1122. <dateFormatLength type="long">
  1123. <dateFormat>
  1124. <pattern>y 'm'. MMMM d 'd'.</pattern>
  1125. </dateFormat>
  1126. </dateFormatLength>
  1127. <dateFormatLength type="medium">
  1128. <dateFormat>
  1129. <pattern>yyyy.MM.dd</pattern>
  1130. </dateFormat>
  1131. </dateFormatLength>
  1132. <dateFormatLength type="short">
  1133. <dateFormat>
  1134. <pattern>yyyy-MM-dd</pattern>
  1135. </dateFormat>
  1136. </dateFormatLength>
  1137. </dateFormats>
  1138. <timeFormats>
  1139. <timeFormatLength type="full">
  1140. <timeFormat>
  1141. <pattern>HH:mm:ss zzzz</pattern>
  1142. </timeFormat>
  1143. </timeFormatLength>
  1144. <timeFormatLength type="long">
  1145. <timeFormat>
  1146. <pattern>HH:mm:ss z</pattern>
  1147. </timeFormat>
  1148. </timeFormatLength>
  1149. <timeFormatLength type="medium">
  1150. <timeFormat>
  1151. <pattern>HH:mm:ss</pattern>
  1152. </timeFormat>
  1153. </timeFormatLength>
  1154. <timeFormatLength type="short">
  1155. <timeFormat>
  1156. <pattern>HH:mm</pattern>
  1157. </timeFormat>
  1158. </timeFormatLength>
  1159. </timeFormats>
  1160. <dateTimeFormats>
  1161. <availableFormats>
  1162. <dateFormatItem id="hhmm">hh:mm a</dateFormatItem>
  1163. <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
  1164. <dateFormatItem id="hhmmss">hh:mm:ss a</dateFormatItem>
  1165. <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
  1166. <dateFormatItem id="MMdd">MM.dd</dateFormatItem>
  1167. <dateFormatItem id="MMMdd">MMM-dd</dateFormatItem>
  1168. <dateFormatItem id="yyQ">Q yy</dateFormatItem>
  1169. <dateFormatItem id="yyyyMM">yyyy.MM</dateFormatItem>
  1170. </availableFormats>
  1171. <intervalFormats>
  1172. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  1173. <intervalFormatItem id="d">
  1174. <greatestDifference id="d">d-d</greatestDifference>
  1175. </intervalFormatItem>
  1176. <intervalFormatItem id="h">
  1177. <greatestDifference id="h">HH-HH</greatestDifference>
  1178. </intervalFormatItem>
  1179. <intervalFormatItem id="hm">
  1180. <greatestDifference id="h">HH:mm-HH:mm</greatestDifference>
  1181. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  1182. </intervalFormatItem>
  1183. <intervalFormatItem id="hmv">
  1184. <greatestDifference id="h">HH:mm-HH:mm v</greatestDifference>
  1185. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  1186. </intervalFormatItem>
  1187. <intervalFormatItem id="hv">
  1188. <greatestDifference id="h">HH-HH v</greatestDifference>
  1189. </intervalFormatItem>
  1190. <intervalFormatItem id="M">
  1191. <greatestDifference id="M">M-M</greatestDifference>
  1192. </intervalFormatItem>
  1193. <intervalFormatItem id="Md">
  1194. <greatestDifference id="d">MM-dd - MM-dd</greatestDifference>
  1195. <greatestDifference id="M">MM-dd - MM-dd</greatestDifference>
  1196. </intervalFormatItem>
  1197. <intervalFormatItem id="MEd">
  1198. <greatestDifference id="d">MM-ddE - MM-ddE</greatestDifference>
  1199. <greatestDifference id="M">MM-ddE - MM-ddE</greatestDifference>
  1200. </intervalFormatItem>
  1201. <intervalFormatItem id="MMM">
  1202. <greatestDifference id="M">MMM-MMM</greatestDifference>
  1203. </intervalFormatItem>
  1204. <intervalFormatItem id="MMMd">
  1205. <greatestDifference id="d">MMM d 'd'.-d 'd'.</greatestDifference>
  1206. <greatestDifference id="M">MMM d 'd'. - MMM d 'd'.</greatestDifference>
  1207. </intervalFormatItem>
  1208. <intervalFormatItem id="MMMEd">
  1209. <greatestDifference id="d">MMM d 'd'.E - d 'd'.E</greatestDifference>
  1210. <greatestDifference id="M">MMM d 'd'.E - MMM d 'd'.E</greatestDifference>
  1211. </intervalFormatItem>
  1212. <intervalFormatItem id="y">
  1213. <greatestDifference id="y">y-y</greatestDifference>
  1214. </intervalFormatItem>
  1215. <intervalFormatItem id="yM">
  1216. <greatestDifference id="M">yyyy-MM - yyyy-MM</greatestDifference>
  1217. <greatestDifference id="y">yyyy-MM - yyyy-MM</greatestDifference>
  1218. </intervalFormatItem>
  1219. <intervalFormatItem id="yMd">
  1220. <greatestDifference id="d">yyyy-MM-dd - yyyy-MM-dd</greatestDifference>
  1221. <greatestDifference id="M">yyyy-MM-dd - yyyy-MM-dd</greatestDifference>
  1222. <greatestDifference id="y">yyyy-MM-dd - yyyy-MM-dd</greatestDifference>
  1223. </intervalFormatItem>
  1224. <intervalFormatItem id="yMEd">
  1225. <greatestDifference id="d">yyyy-MM-ddE - yyyy-MM-ddE</greatestDifference>
  1226. <greatestDifference id="M">yyyy-MM-ddE - yyyy-MM-ddE</greatestDifference>
  1227. <greatestDifference id="y">yyyy-MM-ddE - yyyy-MM-ddE</greatestDifference>
  1228. </intervalFormatItem>
  1229. <intervalFormatItem id="yMMM">
  1230. <greatestDifference id="M">y 'm'. MMM-MMM</greatestDifference>
  1231. <greatestDifference id="y">y 'm'. MMM - y 'm'. MMM</greatestDifference>
  1232. </intervalFormatItem>
  1233. <intervalFormatItem id="yMMMd">
  1234. <greatestDifference id="d">y 'm'. MMM d 'd'.-d 'd'.</greatestDifference>
  1235. <greatestDifference id="M">y 'm'. MMM d 'd'. - MMM d 'd'.</greatestDifference>
  1236. <greatestDifference id="y">y 'm'. MMM d 'd'. - y 'm'. MMM d 'd'.</greatestDifference>
  1237. </intervalFormatItem>
  1238. <intervalFormatItem id="yMMMEd">
  1239. <greatestDifference id="d">y 'm'. MMM d 'd'.,E - d 'd'.,E</greatestDifference>
  1240. <greatestDifference id="M">y 'm'. MMM d 'd'.,E - MMM d 'd'.,E</greatestDifference>
  1241. <greatestDifference id="y">y 'm'. MMM d 'd'.,E - y 'm'. MMM d 'd'.,E</greatestDifference>
  1242. </intervalFormatItem>
  1243. </intervalFormats>
  1244. </dateTimeFormats>
  1245. <fields>
  1246. <field type="era">
  1247. <displayName>era</displayName>
  1248. </field>
  1249. <field type="year">
  1250. <displayName>metai</displayName>
  1251. </field>
  1252. <field type="month">
  1253. <displayName>mėnuo</displayName>
  1254. </field>
  1255. <field type="week">
  1256. <displayName>savaitė</displayName>
  1257. </field>
  1258. <field type="day">
  1259. <displayName>diena</displayName>
  1260. <relative type="-3">už užvakar</relative>
  1261. <relative type="-2">užvakar</relative>
  1262. <relative type="-1">vakar</relative>
  1263. <relative type="0">šiandien</relative>
  1264. <relative type="1">rytoj</relative>
  1265. <relative type="2">poryt</relative>
  1266. <relative type="3">užporyt</relative>
  1267. </field>
  1268. <field type="weekday">
  1269. <displayName>savaitės diena</displayName>
  1270. </field>
  1271. <field type="dayperiod">
  1272. <displayName>dienos metas</displayName>
  1273. </field>
  1274. <field type="hour">
  1275. <displayName>valanda</displayName>
  1276. </field>
  1277. <field type="minute">
  1278. <displayName>minutė</displayName>
  1279. </field>
  1280. <field type="second">
  1281. <displayName>sekundė</displayName>
  1282. </field>
  1283. <field type="zone">
  1284. <displayName>juosta</displayName>
  1285. </field>
  1286. </fields>
  1287. </calendar>
  1288. </calendars>
  1289. <timeZoneNames>
  1290. <hourFormat>+HH:mm;−HH:mm</hourFormat>
  1291. <gmtFormat>GMT{0}</gmtFormat>
  1292. <regionFormat>{0}</regionFormat>
  1293. <fallbackFormat>{0} ({1})</fallbackFormat>
  1294. <zone type="Etc/Unknown">
  1295. <exemplarCity>Nežinoma</exemplarCity>
  1296. </zone>
  1297. <zone type="Europe/Andorra">
  1298. <exemplarCity>Andora</exemplarCity>
  1299. </zone>
  1300. <zone type="Asia/Dubai">
  1301. <exemplarCity>Dubajus</exemplarCity>
  1302. </zone>
  1303. <zone type="Asia/Kabul">
  1304. <exemplarCity>Kabulas</exemplarCity>
  1305. </zone>
  1306. <zone type="Europe/Tirane">
  1307. <exemplarCity>Tirana</exemplarCity>
  1308. </zone>
  1309. <zone type="Asia/Yerevan">
  1310. <exemplarCity>Jerevanas</exemplarCity>
  1311. </zone>
  1312. <zone type="Antarctica/Palmer">
  1313. <exemplarCity>Palmeris</exemplarCity>
  1314. </zone>
  1315. <zone type="Antarctica/South_Pole">
  1316. <exemplarCity>Pietų ašigalis</exemplarCity>
  1317. </zone>
  1318. <zone type="Antarctica/Syowa">
  1319. <exemplarCity>Syova</exemplarCity>
  1320. </zone>
  1321. <zone type="Antarctica/Vostok">
  1322. <exemplarCity>Vostokas</exemplarCity>
  1323. </zone>
  1324. <zone type="Antarctica/DumontDUrville">
  1325. <exemplarCity>Dumont D'Urville</exemplarCity>
  1326. </zone>
  1327. <zone type="America/Argentina/Rio_Gallegos">
  1328. <exemplarCity>Rio Galjegosas</exemplarCity>
  1329. </zone>
  1330. <zone type="America/Mendoza">
  1331. <exemplarCity>Mendosa</exemplarCity>
  1332. </zone>
  1333. <zone type="America/Argentina/San_Juan">
  1334. <exemplarCity>San Chuanas</exemplarCity>
  1335. </zone>
  1336. <zone type="America/Argentina/Ushuaia">
  1337. <exemplarCity>Ušuaja</exemplarCity>
  1338. </zone>
  1339. <zone type="America/Argentina/La_Rioja">
  1340. <exemplarCity>La Riocha</exemplarCity>
  1341. </zone>
  1342. <zone type="America/Argentina/San_Luis">
  1343. <exemplarCity>Sent Luisas</exemplarCity>
  1344. </zone>
  1345. <zone type="America/Catamarca">
  1346. <exemplarCity>Katamarka</exemplarCity>
  1347. </zone>
  1348. <zone type="America/Jujuy">
  1349. <exemplarCity>Chuchujus</exemplarCity>
  1350. </zone>
  1351. <zone type="America/Argentina/Tucuman">
  1352. <exemplarCity>Tukumanas</exemplarCity>
  1353. </zone>
  1354. <zone type="America/Cordoba">
  1355. <exemplarCity>Kordoba</exemplarCity>
  1356. </zone>
  1357. <zone type="America/Buenos_Aires">
  1358. <exemplarCity>Buenos Airės</exemplarCity>
  1359. </zone>
  1360. <zone type="Europe/Vienna">
  1361. <exemplarCity>Viena</exemplarCity>
  1362. </zone>
  1363. <zone type="Australia/Perth">
  1364. <exemplarCity>Pertas</exemplarCity>
  1365. </zone>
  1366. <zone type="Australia/Darwin">
  1367. <exemplarCity>Darvinas</exemplarCity>
  1368. </zone>
  1369. <zone type="Australia/Adelaide">
  1370. <exemplarCity>Adelaidė</exemplarCity>
  1371. </zone>
  1372. <zone type="Australia/Melbourne">
  1373. <exemplarCity>Melburnas</exemplarCity>
  1374. </zone>
  1375. <zone type="Australia/Hobart">
  1376. <exemplarCity>Hobartas</exemplarCity>
  1377. </zone>
  1378. <zone type="Australia/Sydney">
  1379. <exemplarCity>Sidnėjus</exemplarCity>
  1380. </zone>
  1381. <zone type="Australia/Brisbane">
  1382. <exemplarCity>Brisbanas</exemplarCity>
  1383. </zone>
  1384. <zone type="Australia/Lord_Howe">
  1385. <exemplarCity>Lordo Hau sala</exemplarCity>
  1386. </zone>
  1387. <zone type="America/Barbados">
  1388. <exemplarCity>Barbadosas</exemplarCity>
  1389. </zone>
  1390. <zone type="Asia/Dhaka">
  1391. <exemplarCity>Daka</exemplarCity>
  1392. </zone>
  1393. <zone type="Europe/Brussels">
  1394. <exemplarCity>Briuselis</exemplarCity>
  1395. </zone>
  1396. <zone type="Europe/Sofia">
  1397. <exemplarCity>Sofija</exemplarCity>
  1398. </zone>
  1399. <zone type="Asia/Bahrain">
  1400. <exemplarCity>Bahreinas</exemplarCity>
  1401. </zone>
  1402. <zone type="Africa/Porto-Novo">
  1403. <exemplarCity>Porto Novas</exemplarCity>
  1404. </zone>
  1405. <zone type="Atlantic/Bermuda">
  1406. <exemplarCity>Bermudų salos</exemplarCity>
  1407. </zone>
  1408. <zone type="Asia/Brunei">
  1409. <exemplarCity>Brunėjus</exemplarCity>
  1410. </zone>
  1411. <zone type="America/La_Paz">
  1412. <exemplarCity>La Pasas</exemplarCity>
  1413. </zone>
  1414. <zone type="America/Rio_Branco">
  1415. <exemplarCity>Rio Brankas</exemplarCity>
  1416. </zone>
  1417. <zone type="America/Manaus">
  1418. <exemplarCity>Manausas</exemplarCity>
  1419. </zone>
  1420. <zone type="America/Cuiaba">
  1421. <exemplarCity>Kujaba</exemplarCity>
  1422. </zone>
  1423. <zone type="America/Santarem">
  1424. <exemplarCity>Santarenas</exemplarCity>
  1425. </zone>
  1426. <zone type="America/Belem">
  1427. <exemplarCity>Belemas</exemplarCity>
  1428. </zone>
  1429. <zone type="America/Sao_Paulo">
  1430. <exemplarCity>San Paulas</exemplarCity>
  1431. </zone>
  1432. <zone type="America/Recife">
  1433. <exemplarCity>Resifė</exemplarCity>
  1434. </zone>
  1435. <zone type="Africa/Gaborone">
  1436. <exemplarCity>Gaboronas</exemplarCity>
  1437. </zone>
  1438. <zone type="Europe/Minsk">
  1439. <exemplarCity>Minskas</exemplarCity>
  1440. </zone>
  1441. <zone type="America/Belize">
  1442. <exemplarCity>Belizas</exemplarCity>
  1443. </zone>
  1444. <zone type="America/Dawson">
  1445. <exemplarCity>Dosonas</exemplarCity>
  1446. </zone>
  1447. <zone type="America/Whitehorse">
  1448. <exemplarCity>Vaithorsas</exemplarCity>
  1449. </zone>
  1450. <zone type="America/Vancouver">
  1451. <exemplarCity>Vankuveris</exemplarCity>
  1452. </zone>
  1453. <zone type="America/Dawson_Creek">
  1454. <exemplarCity>Dosono įlanka</exemplarCity>
  1455. </zone>
  1456. <zone type="America/Yellowknife">
  1457. <exemplarCity>Jelounaifas</exemplarCity>
  1458. </zone>
  1459. <zone type="America/Edmonton">
  1460. <exemplarCity>Edmontonas</exemplarCity>
  1461. </zone>
  1462. <zone type="America/Cambridge_Bay">
  1463. <exemplarCity>Kembridžo įlanka</exemplarCity>
  1464. </zone>
  1465. <zone type="America/Regina">
  1466. <exemplarCity>Redžina</exemplarCity>
  1467. </zone>
  1468. <zone type="America/Winnipeg">
  1469. <exemplarCity>Vinipegas</exemplarCity>
  1470. </zone>
  1471. <zone type="America/Thunder_Bay">
  1472. <exemplarCity>Tander Bėjus</exemplarCity>
  1473. </zone>
  1474. <zone type="America/Nipigon">
  1475. <exemplarCity>Nipigonas</exemplarCity>
  1476. </zone>
  1477. <zone type="America/Toronto">
  1478. <exemplarCity>Torontas</exemplarCity>
  1479. </zone>
  1480. <zone type="America/Montreal">
  1481. <exemplarCity>Monrealis</exemplarCity>
  1482. </zone>
  1483. <zone type="America/Iqaluit">
  1484. <exemplarCity>Ikaluitas</exemplarCity>
  1485. </zone>
  1486. <zone type="America/Pangnirtung">
  1487. <exemplarCity>Pangnirtungas</exemplarCity>
  1488. </zone>
  1489. <zone type="America/Moncton">
  1490. <exemplarCity>Monktonas</exemplarCity>
  1491. </zone>
  1492. <zone type="America/Halifax">
  1493. <exemplarCity>Halifaksas</exemplarCity>
  1494. </zone>
  1495. <zone type="Africa/Kinshasa">
  1496. <exemplarCity>Kinšasa</exemplarCity>
  1497. </zone>
  1498. <zone type="Africa/Lubumbashi">
  1499. <exemplarCity>Lubumbašis</exemplarCity>
  1500. </zone>
  1501. <zone type="Africa/Brazzaville">
  1502. <exemplarCity>Brazavilis</exemplarCity>
  1503. </zone>
  1504. <zone type="Europe/Zurich">
  1505. <exemplarCity>Ciurichas</exemplarCity>
  1506. </zone>
  1507. <zone type="Africa/Abidjan">
  1508. <exemplarCity>Abidžanas</exemplarCity>
  1509. </zone>
  1510. <zone type="Pacific/Easter">
  1511. <exemplarCity>Velykų sala</exemplarCity>
  1512. </zone>
  1513. <zone type="America/Santiago">
  1514. <exemplarCity>Santjagas</exemplarCity>
  1515. </zone>
  1516. <zone type="Asia/Kashgar">
  1517. <exemplarCity>Kashi</exemplarCity>
  1518. </zone>
  1519. <zone type="Asia/Urumqi">
  1520. <exemplarCity>Urumči</exemplarCity>
  1521. </zone>
  1522. <zone type="Asia/Chongqing">
  1523. <exemplarCity>Čongčingas</exemplarCity>
  1524. </zone>
  1525. <zone type="Asia/Harbin">
  1526. <exemplarCity>Harbinas</exemplarCity>
  1527. </zone>
  1528. <zone type="America/Costa_Rica">
  1529. <exemplarCity>Kosta Rika</exemplarCity>
  1530. </zone>
  1531. <zone type="Indian/Christmas">
  1532. <exemplarCity>Kalėdų sala</exemplarCity>
  1533. </zone>
  1534. <zone type="Asia/Nicosia">
  1535. <exemplarCity>Nikosija</exemplarCity>
  1536. </zone>
  1537. <zone type="Europe/Berlin">
  1538. <exemplarCity>Berlynas</exemplarCity>
  1539. </zone>
  1540. <zone type="Africa/Djibouti">
  1541. <exemplarCity>Džibutis</exemplarCity>
  1542. </zone>
  1543. <zone type="Europe/Copenhagen">
  1544. <exemplarCity>Kopenhaga</exemplarCity>
  1545. </zone>
  1546. <zone type="America/Dominica">
  1547. <exemplarCity>Dominika</exemplarCity>
  1548. </zone>
  1549. <zone type="America/Santo_Domingo">
  1550. <exemplarCity>Santo Domingas</exemplarCity>
  1551. </zone>
  1552. <zone type="Pacific/Galapagos">
  1553. <exemplarCity>Galapagai</exemplarCity>
  1554. </zone>
  1555. <zone type="Europe/Tallinn">
  1556. <exemplarCity>Talinas</exemplarCity>
  1557. </zone>
  1558. <zone type="Africa/Cairo">
  1559. <exemplarCity>Kairas</exemplarCity>
  1560. </zone>
  1561. <zone type="Africa/Asmera">
  1562. <exemplarCity>Asmara</exemplarCity>
  1563. </zone>
  1564. <zone type="Atlantic/Canary">
  1565. <exemplarCity>Kanarų salos</exemplarCity>
  1566. </zone>
  1567. <zone type="Africa/Ceuta">
  1568. <exemplarCity>Seuta</exemplarCity>
  1569. </zone>
  1570. <zone type="Europe/Madrid">
  1571. <exemplarCity>Madridas</exemplarCity>
  1572. </zone>
  1573. <zone type="Africa/Addis_Ababa">
  1574. <exemplarCity>Addis Abeba</exemplarCity>
  1575. </zone>
  1576. <zone type="Europe/Helsinki">
  1577. <exemplarCity>Helsinkis</exemplarCity>
  1578. </zone>
  1579. <zone type="Pacific/Fiji">
  1580. <exemplarCity>Fidžis</exemplarCity>
  1581. </zone>
  1582. <zone type="Atlantic/Stanley">
  1583. <exemplarCity>Stenlis</exemplarCity>
  1584. </zone>
  1585. <zone type="Pacific/Truk">
  1586. <exemplarCity>Trukas</exemplarCity>
  1587. </zone>
  1588. <zone type="Pacific/Ponape">
  1589. <exemplarCity>Ponapė</exemplarCity>
  1590. </zone>
  1591. <zone type="Atlantic/Faeroe">
  1592. <exemplarCity>Farerai</exemplarCity>
  1593. </zone>
  1594. <zone type="Europe/Paris">
  1595. <exemplarCity>Paryžius</exemplarCity>
  1596. </zone>
  1597. <zone type="Africa/Libreville">
  1598. <exemplarCity>Librevilis</exemplarCity>
  1599. </zone>
  1600. <zone type="Europe/London">
  1601. <exemplarCity>Londonas</exemplarCity>
  1602. </zone>
  1603. <zone type="Asia/Tbilisi">
  1604. <exemplarCity>Tbilisis</exemplarCity>
  1605. </zone>
  1606. <zone type="America/Cayenne">
  1607. <exemplarCity>Kajenas</exemplarCity>
  1608. </zone>
  1609. <zone type="Europe/Gibraltar">
  1610. <exemplarCity>Gibraltaras</exemplarCity>
  1611. </zone>
  1612. <zone type="America/Thule">
  1613. <exemplarCity>Tūla</exemplarCity>
  1614. </zone>
  1615. <zone type="America/Godthab">
  1616. <exemplarCity>Godthabas</exemplarCity>
  1617. </zone>
  1618. <zone type="America/Danmarkshavn">
  1619. <exemplarCity>Danmarkshavn’as</exemplarCity>
  1620. </zone>
  1621. <zone type="Africa/Conakry">
  1622. <exemplarCity>Konakris</exemplarCity>
  1623. </zone>
  1624. <zone type="America/Guadeloupe">
  1625. <exemplarCity>Gvadelupė</exemplarCity>
  1626. </zone>
  1627. <zone type="Europe/Athens">
  1628. <exemplarCity>Atėnai</exemplarCity>
  1629. </zone>
  1630. <zone type="America/Guatemala">
  1631. <exemplarCity>Gvatemala</exemplarCity>
  1632. </zone>
  1633. <zone type="Pacific/Guam">
  1634. <exemplarCity>Guamas</exemplarCity>
  1635. </zone>
  1636. <zone type="America/Guyana">
  1637. <exemplarCity>Gajana</exemplarCity>
  1638. </zone>
  1639. <zone type="Asia/Hong_Kong">
  1640. <exemplarCity>Honkongas</exemplarCity>
  1641. </zone>
  1642. <zone type="Europe/Budapest">
  1643. <exemplarCity>Budapeštas</exemplarCity>
  1644. </zone>
  1645. <zone type="Asia/Jakarta">
  1646. <exemplarCity>Džakarta</exemplarCity>
  1647. </zone>
  1648. <zone type="Asia/Pontianak">
  1649. <exemplarCity>Pontianakas</exemplarCity>
  1650. </zone>
  1651. <zone type="Asia/Makassar">
  1652. <exemplarCity>Makasaras</exemplarCity>
  1653. </zone>
  1654. <zone type="Asia/Jayapura">
  1655. <exemplarCity>Džajapura</exemplarCity>
  1656. </zone>
  1657. <zone type="Europe/Dublin">
  1658. <exemplarCity>Dublinas</exemplarCity>
  1659. </zone>
  1660. <zone type="Asia/Baghdad">
  1661. <exemplarCity>Bagdadas</exemplarCity>
  1662. </zone>
  1663. <zone type="Asia/Tehran">
  1664. <exemplarCity>Teheranas</exemplarCity>
  1665. </zone>
  1666. <zone type="Atlantic/Reykjavik">
  1667. <exemplarCity>Reikjavikas</exemplarCity>
  1668. </zone>
  1669. <zone type="Europe/Rome">
  1670. <exemplarCity>Roma</exemplarCity>
  1671. </zone>
  1672. <zone type="America/Jamaica">
  1673. <exemplarCity>Jamaika</exemplarCity>
  1674. </zone>
  1675. <zone type="Asia/Amman">
  1676. <exemplarCity>Amanas</exemplarCity>
  1677. </zone>
  1678. <zone type="Africa/Nairobi">
  1679. <exemplarCity>Nairobis</exemplarCity>
  1680. </zone>
  1681. <zone type="Asia/Bishkek">
  1682. <exemplarCity>Biškekas</exemplarCity>
  1683. </zone>
  1684. <zone type="Pacific/Enderbury">
  1685. <exemplarCity>Enderburis</exemplarCity>
  1686. </zone>
  1687. <zone type="Pacific/Tarawa">
  1688. <exemplarCity>Tarava</exemplarCity>
  1689. </zone>
  1690. <zone type="Indian/Comoro">
  1691. <exemplarCity>Komoras</exemplarCity>
  1692. </zone>
  1693. <zone type="America/St_Kitts">
  1694. <exemplarCity>St. Kitsas</exemplarCity>
  1695. </zone>
  1696. <zone type="Asia/Seoul">
  1697. <exemplarCity>Seulas</exemplarCity>
  1698. </zone>
  1699. <zone type="Asia/Kuwait">
  1700. <exemplarCity>Kuveitas</exemplarCity>
  1701. </zone>
  1702. <zone type="America/Cayman">
  1703. <exemplarCity>Kaimanas</exemplarCity>
  1704. </zone>
  1705. <zone type="Asia/Aqtau">
  1706. <exemplarCity>Aktau</exemplarCity>
  1707. </zone>
  1708. <zone type="Asia/Oral">
  1709. <exemplarCity>Uralskas</exemplarCity>
  1710. </zone>
  1711. <zone type="Asia/Aqtobe">
  1712. <exemplarCity>Aktiubinskas</exemplarCity>
  1713. </zone>
  1714. <zone type="Asia/Qyzylorda">
  1715. <exemplarCity>Kzyl-Orda</exemplarCity>
  1716. </zone>
  1717. <zone type="Asia/Almaty">
  1718. <exemplarCity>Alma Ata</exemplarCity>
  1719. </zone>
  1720. <zone type="Asia/Vientiane">
  1721. <exemplarCity>Vientianas</exemplarCity>
  1722. </zone>
  1723. <zone type="Asia/Beirut">
  1724. <exemplarCity>Beirutas</exemplarCity>
  1725. </zone>
  1726. <zone type="America/St_Lucia">
  1727. <exemplarCity>St. Lucia</exemplarCity>
  1728. </zone>
  1729. <zone type="Europe/Vaduz">
  1730. <exemplarCity>Vaducas</exemplarCity>
  1731. </zone>
  1732. <zone type="Asia/Colombo">
  1733. <exemplarCity>Kolombo</exemplarCity>
  1734. </zone>
  1735. <zone type="Africa/Monrovia">
  1736. <exemplarCity>Monrovija</exemplarCity>
  1737. </zone>
  1738. <zone type="Europe/Luxembourg">
  1739. <exemplarCity>Liuksemburgas</exemplarCity>
  1740. </zone>
  1741. <zone type="Europe/Riga">
  1742. <exemplarCity>Ryga</exemplarCity>
  1743. </zone>
  1744. <zone type="Africa/Tripoli">
  1745. <exemplarCity>Tripolis</exemplarCity>
  1746. </zone>
  1747. <zone type="Africa/Casablanca">
  1748. <exemplarCity>Kasablanka</exemplarCity>
  1749. </zone>
  1750. <zone type="Europe/Monaco">
  1751. <exemplarCity>Monakas</exemplarCity>
  1752. </zone>
  1753. <zone type="Indian/Antananarivo">
  1754. <exemplarCity>Antananarivas</exemplarCity>
  1755. </zone>
  1756. <zone type="Asia/Rangoon">
  1757. <exemplarCity>Rangūnas</exemplarCity>
  1758. </zone>
  1759. <zone type="Asia/Ulaanbaatar">
  1760. <exemplarCity>Ulan-Batoras</exemplarCity>
  1761. </zone>
  1762. <zone type="Asia/Choibalsan">
  1763. <exemplarCity>Čoibalsanas</exemplarCity>
  1764. </zone>
  1765. <zone type="Asia/Macau">
  1766. <exemplarCity>Makao</exemplarCity>
  1767. </zone>
  1768. <zone type="Pacific/Saipan">
  1769. <exemplarCity>Saipanas</exemplarCity>
  1770. </zone>
  1771. <zone type="America/Martinique">
  1772. <exemplarCity>Martinika</exemplarCity>
  1773. </zone>
  1774. <zone type="America/Montserrat">
  1775. <exemplarCity>Montseratas</exemplarCity>
  1776. </zone>
  1777. <zone type="Indian/Mauritius">
  1778. <exemplarCity>Mauricijus</exemplarCity>
  1779. </zone>
  1780. <zone type="Indian/Maldives">
  1781. <exemplarCity>Maldyvai</exemplarCity>
  1782. </zone>
  1783. <zone type="America/Tijuana">
  1784. <exemplarCity>Tichuana</exemplarCity>
  1785. </zone>
  1786. <zone type="America/Hermosillo">
  1787. <exemplarCity>Hermosiljas</exemplarCity>
  1788. </zone>
  1789. <zone type="America/Mazatlan">
  1790. <exemplarCity>Mazatlanas</exemplarCity>
  1791. </zone>
  1792. <zone type="America/Chihuahua">
  1793. <exemplarCity>Čihuahua</exemplarCity>
  1794. </zone>
  1795. <zone type="America/Monterrey">
  1796. <exemplarCity>Monterėjus</exemplarCity>
  1797. </zone>
  1798. <zone type="America/Mexico_City">
  1799. <exemplarCity>Meksikas</exemplarCity>
  1800. </zone>
  1801. <zone type="America/Cancun">
  1802. <exemplarCity>Kankunas</exemplarCity>
  1803. </zone>
  1804. <zone type="Asia/Kuching">
  1805. <exemplarCity>Kučingas</exemplarCity>
  1806. </zone>
  1807. <zone type="Pacific/Norfolk">
  1808. <exemplarCity>Norfolkas</exemplarCity>
  1809. </zone>
  1810. <zone type="America/Managua">
  1811. <exemplarCity>Managva</exemplarCity>
  1812. </zone>
  1813. <zone type="Europe/Amsterdam">
  1814. <exemplarCity>Amsterdamas</exemplarCity>
  1815. </zone>
  1816. <zone type="Europe/Oslo">
  1817. <exemplarCity>Oslas</exemplarCity>
  1818. </zone>
  1819. <zone type="Asia/Muscat">
  1820. <exemplarCity>Maskatas</exemplarCity>
  1821. </zone>
  1822. <zone type="Pacific/Tahiti">
  1823. <exemplarCity>Taitis</exemplarCity>
  1824. </zone>
  1825. <zone type="Pacific/Marquesas">
  1826. <exemplarCity>Markizo salos</exemplarCity>
  1827. </zone>
  1828. <zone type="Europe/Warsaw">
  1829. <exemplarCity>Varšuva</exemplarCity>
  1830. </zone>
  1831. <zone type="Pacific/Pitcairn">
  1832. <exemplarCity>Pitcairno salos</exemplarCity>
  1833. </zone>
  1834. <zone type="America/Puerto_Rico">
  1835. <exemplarCity>Puerto Rikas</exemplarCity>
  1836. </zone>
  1837. <zone type="Asia/Gaza">
  1838. <exemplarCity>Gazos ruožas</exemplarCity>
  1839. </zone>
  1840. <zone type="Atlantic/Azores">
  1841. <exemplarCity>Azorai</exemplarCity>
  1842. </zone>
  1843. <zone type="Europe/Lisbon">
  1844. <exemplarCity>Lisabona</exemplarCity>
  1845. </zone>
  1846. <zone type="America/Asuncion">
  1847. <exemplarCity>Asunsjonas</exemplarCity>
  1848. </zone>
  1849. <zone type="Asia/Qatar">
  1850. <exemplarCity>Kataras</exemplarCity>
  1851. </zone>
  1852. <zone type="Indian/Reunion">
  1853. <exemplarCity>Reunionas</exemplarCity>
  1854. </zone>
  1855. <zone type="Europe/Bucharest">
  1856. <exemplarCity>Bukareštas</exemplarCity>
  1857. </zone>
  1858. <zone type="Europe/Kaliningrad">
  1859. <exemplarCity>Kaliningradas</exemplarCity>
  1860. </zone>
  1861. <zone type="Europe/Moscow">
  1862. <exemplarCity>Maskva</exemplarCity>
  1863. </zone>
  1864. <zone type="Europe/Volgograd">
  1865. <exemplarCity>Volgogradas</exemplarCity>
  1866. </zone>
  1867. <zone type="Asia/Yekaterinburg">
  1868. <exemplarCity>Jekaterinburgas</exemplarCity>
  1869. </zone>
  1870. <zone type="Asia/Omsk">
  1871. <exemplarCity>Omskas</exemplarCity>
  1872. </zone>
  1873. <zone type="Asia/Novosibirsk">
  1874. <exemplarCity>Novosibirskas</exemplarCity>
  1875. </zone>
  1876. <zone type="Asia/Krasnoyarsk">
  1877. <exemplarCity>Krasnojarskas</exemplarCity>
  1878. </zone>
  1879. <zone type="Asia/Irkutsk">
  1880. <exemplarCity>Irkutskas</exemplarCity>
  1881. </zone>
  1882. <zone type="Asia/Yakutsk">
  1883. <exemplarCity>Jakutskas</exemplarCity>
  1884. </zone>
  1885. <zone type="Asia/Vladivostok">
  1886. <exemplarCity>Vladivostokas</exemplarCity>
  1887. </zone>
  1888. <zone type="Asia/Sakhalin">
  1889. <exemplarCity>Sachalinas</exemplarCity>
  1890. </zone>
  1891. <zone type="Asia/Magadan">
  1892. <exemplarCity>Magadanas</exemplarCity>
  1893. </zone>
  1894. <zone type="Asia/Kamchatka">
  1895. <exemplarCity>Kamčiatka</exemplarCity>
  1896. </zone>
  1897. <zone type="Asia/Anadyr">
  1898. <exemplarCity>Anadyrė</exemplarCity>
  1899. </zone>
  1900. <zone type="Asia/Riyadh">
  1901. <exemplarCity>Rijadas</exemplarCity>
  1902. </zone>
  1903. <zone type="Pacific/Guadalcanal">
  1904. <exemplarCity>Gvadalkanalas</exemplarCity>
  1905. </zone>
  1906. <zone type="Africa/Khartoum">
  1907. <exemplarCity>Chartumas</exemplarCity>
  1908. </zone>
  1909. <zone type="Europe/Stockholm">
  1910. <exemplarCity>Stokholmas</exemplarCity>
  1911. </zone>
  1912. <zone type="Asia/Singapore">
  1913. <exemplarCity>Singapūras</exemplarCity>
  1914. </zone>
  1915. <zone type="Atlantic/St_Helena">
  1916. <exemplarCity>Šv. Helena</exemplarCity>
  1917. </zone>
  1918. <zone type="Africa/Freetown">
  1919. <exemplarCity>Frytaunas</exemplarCity>
  1920. </zone>
  1921. <zone type="Africa/Dakar">
  1922. <exemplarCity>Dakaras</exemplarCity>
  1923. </zone>
  1924. <zone type="Africa/Mogadishu">
  1925. <exemplarCity>Mogadišas</exemplarCity>
  1926. </zone>
  1927. <zone type="Africa/Sao_Tome">
  1928. <exemplarCity>San Tomė</exemplarCity>
  1929. </zone>
  1930. <zone type="America/El_Salvador">
  1931. <exemplarCity>Salvadoras</exemplarCity>
  1932. </zone>
  1933. <zone type="Asia/Damascus">
  1934. <exemplarCity>Damaskas</exemplarCity>
  1935. </zone>
  1936. <zone type="America/Grand_Turk">
  1937. <exemplarCity>Grand Terkas</exemplarCity>
  1938. </zone>
  1939. <zone type="Africa/Ndjamena">
  1940. <exemplarCity>Ndžamena</exemplarCity>
  1941. </zone>
  1942. <zone type="Asia/Bangkok">
  1943. <exemplarCity>Bankokas</exemplarCity>
  1944. </zone>
  1945. <zone type="Asia/Dushanbe">
  1946. <exemplarCity>Dušanbė</exemplarCity>
  1947. </zone>
  1948. <zone type="Asia/Dili">
  1949. <exemplarCity>Dilis</exemplarCity>
  1950. </zone>
  1951. <zone type="Asia/Ashgabat">
  1952. <exemplarCity>Ašchabadas</exemplarCity>
  1953. </zone>
  1954. <zone type="Africa/Tunis">
  1955. <exemplarCity>Tunisas</exemplarCity>
  1956. </zone>
  1957. <zone type="Europe/Istanbul">
  1958. <exemplarCity>Stambulas</exemplarCity>
  1959. </zone>
  1960. <zone type="America/Port_of_Spain">
  1961. <exemplarCity>Port of Speinas</exemplarCity>
  1962. </zone>
  1963. <zone type="Europe/Uzhgorod">
  1964. <exemplarCity>Užhorodas</exemplarCity>
  1965. </zone>
  1966. <zone type="Europe/Kiev">
  1967. <exemplarCity>Kijevas</exemplarCity>
  1968. </zone>
  1969. <zone type="Europe/Simferopol">
  1970. <exemplarCity>Simferopolis</exemplarCity>
  1971. </zone>
  1972. <zone type="Europe/Zaporozhye">
  1973. <exemplarCity>Zaporožė</exemplarCity>
  1974. </zone>
  1975. <zone type="Pacific/Midway">
  1976. <exemplarCity>Jungtinių Valstijų mažosios aplinkinės salos (Midway</exemplarCity>
  1977. </zone>
  1978. <zone type="Pacific/Johnston">
  1979. <exemplarCity>Džonstonas</exemplarCity>
  1980. </zone>
  1981. <zone type="Pacific/Wake">
  1982. <exemplarCity>Jungtinių Valstijų mažosios aplinkinės salos (Klivateris)</exemplarCity>
  1983. </zone>
  1984. <zone type="America/Anchorage">
  1985. <exemplarCity>Ankoridžas</exemplarCity>
  1986. </zone>
  1987. <zone type="America/Yakutat">
  1988. <exemplarCity>Jakutat</exemplarCity>
  1989. </zone>
  1990. <zone type="America/Juneau">
  1991. <exemplarCity>Džūnas</exemplarCity>
  1992. </zone>
  1993. <zone type="America/Los_Angeles">
  1994. <exemplarCity>Los Andželas</exemplarCity>
  1995. </zone>
  1996. <zone type="America/Boise">
  1997. <exemplarCity>Boisė</exemplarCity>
  1998. </zone>
  1999. <zone type="America/Phoenix">
  2000. <exemplarCity>Fyniksas</exemplarCity>
  2001. </zone>
  2002. <zone type="America/Denver">
  2003. <exemplarCity>Denveris</exemplarCity>
  2004. </zone>
  2005. <zone type="America/North_Dakota/New_Salem">
  2006. <exemplarCity>Naujasis Salemas, Šiaurės Dakota</exemplarCity>
  2007. </zone>
  2008. <zone type="America/North_Dakota/Center">
  2009. <exemplarCity>Jungtinės Valstijos (Centras, Šiaurės Dakota)</exemplarCity>
  2010. </zone>
  2011. <zone type="America/Chicago">
  2012. <exemplarCity>Čikaga</exemplarCity>
  2013. </zone>
  2014. <zone type="America/Indiana/Vincennes">
  2015. <exemplarCity>Vincenas, Indiana</exemplarCity>
  2016. </zone>
  2017. <zone type="America/Indiana/Petersburg">
  2018. <exemplarCity>Peterburgas</exemplarCity>
  2019. </zone>
  2020. <zone type="America/Indiana/Knox">
  2021. <exemplarCity>Noksas, Indiana</exemplarCity>
  2022. </zone>
  2023. <zone type="America/Indiana/Winamac">
  2024. <exemplarCity>Vinamakas, Indiana</exemplarCity>
  2025. </zone>
  2026. <zone type="America/Louisville">
  2027. <exemplarCity>Luizvilis</exemplarCity>
  2028. </zone>
  2029. <zone type="America/Kentucky/Monticello">
  2030. <exemplarCity>Monticelas, Kentukis</exemplarCity>
  2031. </zone>
  2032. <zone type="America/Detroit">
  2033. <exemplarCity>Detroitas</exemplarCity>
  2034. </zone>
  2035. <zone type="America/New_York">
  2036. <exemplarCity>Niujorkas</exemplarCity>
  2037. </zone>
  2038. <zone type="America/Montevideo">
  2039. <exemplarCity>Montevidëjas</exemplarCity>
  2040. </zone>
  2041. <zone type="Asia/Samarkand">
  2042. <exemplarCity>Samarkandas</exemplarCity>
  2043. </zone>
  2044. <zone type="Asia/Tashkent">
  2045. <exemplarCity>Taškentas</exemplarCity>
  2046. </zone>
  2047. <zone type="America/St_Vincent">
  2048. <exemplarCity>Sant Vincentė</exemplarCity>
  2049. </zone>
  2050. <zone type="America/Caracas">
  2051. <exemplarCity>Karakasas</exemplarCity>
  2052. </zone>
  2053. <zone type="America/St_Thomas">
  2054. <exemplarCity>St. Thomas</exemplarCity>
  2055. </zone>
  2056. <zone type="Pacific/Efate">
  2057. <exemplarCity>Efatas</exemplarCity>
  2058. </zone>
  2059. <zone type="Pacific/Apia">
  2060. <exemplarCity>Apija</exemplarCity>
  2061. </zone>
  2062. <zone type="Asia/Aden">
  2063. <exemplarCity>Adenas</exemplarCity>
  2064. </zone>
  2065. <zone type="Indian/Mayotte">
  2066. <exemplarCity>Majotas</exemplarCity>
  2067. </zone>
  2068. <zone type="Africa/Johannesburg">
  2069. <exemplarCity>Johanesburgas</exemplarCity>
  2070. </zone>
  2071. <metazone type="Africa_Central">
  2072. <long>
  2073. <standard>Centrinės Afrikos laikas</standard>
  2074. </long>
  2075. </metazone>
  2076. <metazone type="Africa_Eastern">
  2077. <long>
  2078. <standard>Rytų Afrikos laikas</standard>
  2079. </long>
  2080. </metazone>
  2081. <metazone type="Africa_Southern">
  2082. <long>
  2083. <generic>Pietų Afrikos laikas</generic>
  2084. <standard>Pietų Afrikos standartinis laikas</standard>
  2085. </long>
  2086. </metazone>
  2087. <metazone type="Africa_Western">
  2088. <long>
  2089. <standard>Vakarų Afrikos laikas</standard>
  2090. <daylight>Vakarų Afrikos vasaros laikas</daylight>
  2091. </long>
  2092. </metazone>
  2093. <metazone type="Alaska">
  2094. <long>
  2095. <generic>Aliaskos laikas</generic>
  2096. <standard>Aliaskos standartinis laikas</standard>
  2097. <daylight>Aliaskos vasaros laikas</daylight>
  2098. </long>
  2099. </metazone>
  2100. <metazone type="Alaska_Hawaii">
  2101. <long>
  2102. <generic>Aliaskos-Havajų laikas</generic>
  2103. <standard>Aliaskos-Havajų standartinis laikas</standard>
  2104. <daylight>Aliaskos-Havajų vasaros laikas</daylight>
  2105. </long>
  2106. </metazone>
  2107. <metazone type="Amazon">
  2108. <long>
  2109. <standard>Amazonės laikas</standard>
  2110. <daylight>Amazonės vasaros laikas</daylight>
  2111. </long>
  2112. </metazone>
  2113. <metazone type="America_Central">
  2114. <long>
  2115. <generic>Centro laikas</generic>
  2116. <standard>Centro standartinis laikas</standard>
  2117. <daylight>Centro vasaros laikas</daylight>
  2118. </long>
  2119. </metazone>
  2120. <metazone type="America_Eastern">
  2121. <long>
  2122. <generic>Rytų laikas</generic>
  2123. <standard>Rytų standartinis laikas</standard>
  2124. <daylight>Rytų vasaros laikas</daylight>
  2125. </long>
  2126. </metazone>
  2127. <metazone type="America_Pacific">
  2128. <long>
  2129. <generic>Ramiojo vandenyno laikas</generic>
  2130. <standard>Ramiojo vandenyno standartinis laikas</standard>
  2131. <daylight>Ramiojo vandenyno vasaros laikas</daylight>
  2132. </long>
  2133. </metazone>
  2134. <metazone type="Aqtau">
  2135. <short>
  2136. <standard>AQTT (Aktau)</standard>
  2137. <daylight>AQTST (Aktau)</daylight>
  2138. </short>
  2139. </metazone>
  2140. <metazone type="Aqtobe">
  2141. <short>
  2142. <standard>AQTT (Aktobė)</standard>
  2143. <daylight>AQTST (Aktobė)</daylight>
  2144. </short>
  2145. </metazone>
  2146. <metazone type="Argentina">
  2147. <long>
  2148. <standard>Argentinos laikas</standard>
  2149. <daylight>Argentinos vasaros laikas</daylight>
  2150. </long>
  2151. </metazone>
  2152. <metazone type="Argentina_Western">
  2153. <long>
  2154. <standard>Vakarų Argentinos laikas</standard>
  2155. </long>
  2156. </metazone>
  2157. <metazone type="Atlantic">
  2158. <long>
  2159. <generic>Atlanto laikas</generic>
  2160. <standard>Atlanto standartinis laikas</standard>
  2161. <daylight>Atlanto vasaros laikas</daylight>
  2162. </long>
  2163. </metazone>
  2164. <metazone type="Bering">
  2165. <long>
  2166. <generic>Beringo laikas</generic>
  2167. <standard>Beringo standartinis laikas</standard>
  2168. <daylight>Beringo vasaros laikas</daylight>
  2169. </long>
  2170. </metazone>
  2171. <metazone type="Bolivia">
  2172. <long>
  2173. <standard>Bolivijos laikas</standard>
  2174. </long>
  2175. </metazone>
  2176. <metazone type="Brasilia">
  2177. <long>
  2178. <standard>Brazilijos laikas</standard>
  2179. <daylight>Brazilijos vasaros laikas</daylight>
  2180. </long>
  2181. </metazone>
  2182. <metazone type="Chile">
  2183. <long>
  2184. <standard>Čilės laikas</standard>
  2185. <daylight>Čilės vasaros laikas</daylight>
  2186. </long>
  2187. </metazone>
  2188. <metazone type="Colombia">
  2189. <long>
  2190. <standard>Kolumbijos laikas</standard>
  2191. <daylight>Kolumbijos vasaros laikas</daylight>
  2192. </long>
  2193. </metazone>
  2194. <metazone type="Cuba">
  2195. <long>
  2196. <generic>Kubos laikas</generic>
  2197. <standard>Kubos standartinis laikas</standard>
  2198. <daylight>Kubos vasaros laikas</daylight>
  2199. </long>
  2200. </metazone>
  2201. <metazone type="Dutch_Guiana">
  2202. <long>
  2203. <standard>Olandų Gajanos laikas</standard>
  2204. </long>
  2205. </metazone>
  2206. <metazone type="Ecuador">
  2207. <long>
  2208. <standard>Ekvadoro laikas</standard>
  2209. </long>
  2210. </metazone>
  2211. <metazone type="Europe_Central">
  2212. <long>
  2213. <standard>Vidurio Europos laikas</standard>
  2214. <daylight>Vidurio Europos vasaros laikas</daylight>
  2215. </long>
  2216. <short>
  2217. <standard>CET</standard>
  2218. <daylight>CEST</daylight>
  2219. </short>
  2220. </metazone>
  2221. <metazone type="Europe_Eastern">
  2222. <long>
  2223. <standard>Rytų Europos laikas</standard>
  2224. <daylight>Rytų Europos vasaros laikas</daylight>
  2225. </long>
  2226. <short>
  2227. <standard>EET</standard>
  2228. <daylight>EEST</daylight>
  2229. </short>
  2230. </metazone>
  2231. <metazone type="Europe_Western">
  2232. <short>
  2233. <standard>WET</standard>
  2234. <daylight>WEST</daylight>
  2235. </short>
  2236. </metazone>
  2237. <metazone type="French_Guiana">
  2238. <long>
  2239. <standard>Prancūzų Gajanos laikas</standard>
  2240. </long>
  2241. </metazone>
  2242. <metazone type="GMT">
  2243. <short>
  2244. <standard>GMT</standard>
  2245. </short>
  2246. </metazone>
  2247. <metazone type="Greenland_Central">
  2248. <long>
  2249. <standard>Grenlandijos centro laikas</standard>
  2250. <daylight>Grenlandijos centro vasaros laikas</daylight>
  2251. </long>
  2252. </metazone>
  2253. <metazone type="Greenland_Eastern">
  2254. <long>
  2255. <standard>Grenlandijos rytų laikas</standard>
  2256. <daylight>Grenlandijos rytų vasaros laikas</daylight>
  2257. </long>
  2258. </metazone>
  2259. <metazone type="Greenland_Western">
  2260. <long>
  2261. <standard>Grenlandijos vakarų laikas</standard>
  2262. <daylight>Grenlandijos vakarų vasaros laikas</daylight>
  2263. </long>
  2264. </metazone>
  2265. <metazone type="Guyana">
  2266. <long>
  2267. <standard>Gajanos laikas</standard>
  2268. </long>
  2269. </metazone>
  2270. <metazone type="Kuybyshev">
  2271. <long>
  2272. <standard>Kuibyševo laikas</standard>
  2273. <daylight>Kuibyševo vasaros laikas</daylight>
  2274. </long>
  2275. </metazone>
  2276. <metazone type="Moscow">
  2277. <long>
  2278. <generic>Maskvos laikas</generic>
  2279. <standard>Maskvos standartinis laikas</standard>
  2280. <daylight>Maskvos vasaros laikas</daylight>
  2281. </long>
  2282. </metazone>
  2283. <metazone type="Newfoundland">
  2284. <long>
  2285. <generic>Niufaundlendo laikas</generic>
  2286. <standard>Niufaundlendo standartinis laikas</standard>
  2287. <daylight>Niufaundlendo vasaros laikas</daylight>
  2288. </long>
  2289. </metazone>
  2290. <metazone type="Paraguay">
  2291. <long>
  2292. <standard>Paragvajaus laikas</standard>
  2293. <daylight>Paragvajaus vasaros laikas</daylight>
  2294. </long>
  2295. </metazone>
  2296. <metazone type="Peru">
  2297. <long>
  2298. <standard>Peru laikas</standard>
  2299. <daylight>Peru vasaros laikas</daylight>
  2300. </long>
  2301. </metazone>
  2302. <metazone type="Samara">
  2303. <long>
  2304. <standard>Samaros laikas</standard>
  2305. <daylight>Samaros vasaros laikas</daylight>
  2306. </long>
  2307. </metazone>
  2308. <metazone type="Samarkand">
  2309. <short>
  2310. <standard>SAMT (Samarkandas)</standard>
  2311. <daylight>SAMST (Samarkandas)</daylight>
  2312. </short>
  2313. </metazone>
  2314. <metazone type="Turkey">
  2315. <long>
  2316. <standard>Turkijos laikas</standard>
  2317. <daylight>Turkijos vasaros laikas</daylight>
  2318. </long>
  2319. </metazone>
  2320. <metazone type="Uruguay">
  2321. <long>
  2322. <standard>Urugvajaus laikas</standard>
  2323. <daylight>Urugvajaus vasaros laikas</daylight>
  2324. </long>
  2325. </metazone>
  2326. <metazone type="Venezuela">
  2327. <long>
  2328. <standard>Venesuelos laikas</standard>
  2329. </long>
  2330. </metazone>
  2331. <metazone type="Volgograd">
  2332. <long>
  2333. <standard>Volgogrado laikas</standard>
  2334. <daylight>Volgogrado vasaros laikas</daylight>
  2335. </long>
  2336. </metazone>
  2337. </timeZoneNames>
  2338. </dates>
  2339. <numbers>
  2340. <symbols>
  2341. <decimal>,</decimal>
  2342. <group>.</group>
  2343. <list>;</list>
  2344. <percentSign>%</percentSign>
  2345. <nativeZeroDigit>0</nativeZeroDigit>
  2346. <patternDigit>#</patternDigit>
  2347. <plusSign>+</plusSign>
  2348. <minusSign>−</minusSign>
  2349. <exponential>×10^</exponential>
  2350. <perMille>‰</perMille>
  2351. <infinity>∞</infinity>
  2352. <nan>¤¤¤</nan>
  2353. </symbols>
  2354. <decimalFormats>
  2355. <decimalFormatLength>
  2356. <decimalFormat>
  2357. <pattern>#,##0.###</pattern>
  2358. </decimalFormat>
  2359. </decimalFormatLength>
  2360. </decimalFormats>
  2361. <scientificFormats>
  2362. <scientificFormatLength>
  2363. <scientificFormat>
  2364. <pattern>#E0</pattern>
  2365. </scientificFormat>
  2366. </scientificFormatLength>
  2367. </scientificFormats>
  2368. <percentFormats>
  2369. <percentFormatLength>
  2370. <percentFormat>
  2371. <pattern>#,##0%</pattern>
  2372. </percentFormat>
  2373. </percentFormatLength>
  2374. </percentFormats>
  2375. <currencyFormats>
  2376. <currencyFormatLength>
  2377. <currencyFormat>
  2378. <pattern>#,##0.00 ¤</pattern>
  2379. </currencyFormat>
  2380. </currencyFormatLength>
  2381. <unitPattern count="few">{0} {1}</unitPattern>
  2382. <unitPattern count="one">{0} {1}</unitPattern>
  2383. <unitPattern count="other">{0} {1}</unitPattern>
  2384. </currencyFormats>
  2385. <currencies>
  2386. <currency type="ADP">
  2387. <displayName>Andoros peseta</displayName>
  2388. <displayName count="few">Andoros pesetos</displayName>
  2389. <displayName count="one">Andoros peseta</displayName>
  2390. <displayName count="other">Andoros pesetos</displayName>
  2391. </currency>
  2392. <currency type="AED">
  2393. <displayName>JAE dirhamas</displayName>
  2394. </currency>
  2395. <currency type="AFA">
  2396. <displayName>Afganis (1927-2002)</displayName>
  2397. <displayName count="few">Afganiai (1927-2002)</displayName>
  2398. <displayName count="one">Afganis (1927-2002)</displayName>
  2399. <displayName count="other">Afganiai (1927-2002)</displayName>
  2400. </currency>
  2401. <currency type="AFN">
  2402. <displayName>Afganis</displayName>
  2403. <displayName count="few">Afganiai</displayName>
  2404. <displayName count="one">Afganis</displayName>
  2405. <displayName count="other">Afganiai</displayName>
  2406. </currency>
  2407. <currency type="ALL">
  2408. <displayName>Albanijos lekas</displayName>
  2409. <displayName count="few">Albanijos lekai</displayName>
  2410. <displayName count="one">Albanijos lekas</displayName>
  2411. <displayName count="other">Albanijos lekai</displayName>
  2412. </currency>
  2413. <currency type="AMD">
  2414. <displayName>Armėnijos dramas</displayName>
  2415. <displayName count="few">Armėnijos dramai</displayName>
  2416. <displayName count="one">Armėnijos dramas</displayName>
  2417. <displayName count="other">Armėnijos dramai</displayName>
  2418. </currency>
  2419. <currency type="ANG">
  2420. <displayName>Nyderlandų Antilų guldenas</displayName>
  2421. <displayName count="few">Nyderlandų Antilų guldenas</displayName>
  2422. <displayName count="other">Nyderlandų Antilų guldenai</displayName>
  2423. </currency>
  2424. <currency type="AOA">
  2425. <displayName>Angolos kvanza</displayName>
  2426. <displayName count="few">Angolos kvanzos</displayName>
  2427. <displayName count="one">Angolos kvanza</displayName>
  2428. <displayName count="other">Angolos kvanzai</displayName>
  2429. </currency>
  2430. <currency type="AOK">
  2431. <displayName>Angolos kvanza (1977-1990)</displayName>
  2432. <displayName count="few">Angolos kvanzos (1977-1990)</displayName>
  2433. <displayName count="one">Angolos kvanza (1977-1990)</displayName>
  2434. <displayName count="other">Angolos kvanzai (1977-1990)</displayName>
  2435. </currency>
  2436. <currency type="AON">
  2437. <displayName>Angolos naujoji kvanza</displayName>
  2438. <displayName count="few">Angolos naujosios kvanzos</displayName>
  2439. <displayName count="one">Angolos naujoji kvanza</displayName>
  2440. <displayName count="other">Angolos naujosios kvanzos</displayName>
  2441. </currency>
  2442. <currency type="ARP">
  2443. <displayName>Argentinos pesas (1983-1985)</displayName>
  2444. <displayName count="few">Argentinos pesai (1983-1985)</displayName>
  2445. <displayName count="one">Argentinos pesas (1983-1985)</displayName>
  2446. <displayName count="other">Argentinos pesai (1983-1985)</displayName>
  2447. </currency>
  2448. <currency type="ARS">
  2449. <displayName>Argentinos pesas</displayName>
  2450. <displayName count="one">Argentinos pesas</displayName>
  2451. <displayName count="other">Argentinos pesai</displayName>
  2452. </currency>
  2453. <currency type="ATS">
  2454. <displayName>Austrijos šilingas</displayName>
  2455. <displayName count="few">Austrijos šilingai</displayName>
  2456. <displayName count="one">Austrijos šilingas</displayName>
  2457. <displayName count="other">Austrijos šilingai</displayName>
  2458. </currency>
  2459. <currency type="AUD">
  2460. <displayName>Australijos doleris</displayName>
  2461. <displayName count="one">Australijos doleris</displayName>
  2462. <displayName count="other">Australijos doleriai</displayName>
  2463. </currency>
  2464. <currency type="AWG">
  2465. <displayName>Arubos guldenas</displayName>
  2466. <displayName count="few">Arubos guldenai</displayName>
  2467. <displayName count="one">Arubos guldenas</displayName>
  2468. <displayName count="other">Arubos guldenai</displayName>
  2469. </currency>
  2470. <currency type="AZM">
  2471. <displayName>Azerbaidžano manatas (1993-2006)</displayName>
  2472. <displayName count="few">Azerbaidžano manatai (1993-2006)</displayName>
  2473. <displayName count="one">Azerbaidžano manatas (1993-2006)</displayName>
  2474. <displayName count="other">Azerbaidžano manatai (1993-2006)</displayName>
  2475. </currency>
  2476. <currency type="AZN">
  2477. <displayName>Azerbaidžano manatas</displayName>
  2478. <displayName count="few">Azerbaidžano manatai</displayName>
  2479. <displayName count="one">Azerbaidžano manatas</displayName>
  2480. <displayName count="other">Azerbaidžano manatai</displayName>
  2481. </currency>
  2482. <currency type="BAD">
  2483. <displayName>Bosnijos ir Hercegovinos dinaras</displayName>
  2484. <displayName count="few">Bosnijos ir Hercegovinos dinarai</displayName>
  2485. <displayName count="one">Bosnijos ir Hercegovinos dinaras</displayName>
  2486. <displayName count="other">Bosnijos ir Hercegovinos dinarai</displayName>
  2487. </currency>
  2488. <currency type="BAM">
  2489. <displayName>Bosnijos ir Hercegovinos konvertuojamoji markė</displayName>
  2490. <displayName count="few">Bosnijos ir Hercegovinos konvertuojamosios markės</displayName>
  2491. <displayName count="one">Bosnijos ir Hercegovinos konvertuojamoji markė</displayName>
  2492. <displayName count="other">Bosnijos ir Hercegovinos konvertuojamosios markės</displayName>
  2493. </currency>
  2494. <currency type="BBD">
  2495. <displayName>Barbadoso doleris</displayName>
  2496. <displayName count="few">Barbadoso doleriai</displayName>
  2497. <displayName count="one">Barbadoso doleris</displayName>
  2498. <displayName count="other">Barbadoso doleriai</displayName>
  2499. </currency>
  2500. <currency type="BDT">
  2501. <displayName>Bangladešo taka</displayName>
  2502. <displayName count="few">Bangladešo takos</displayName>
  2503. <displayName count="one">Bangladešo taka</displayName>
  2504. <displayName count="other">Bangladešo takos</displayName>
  2505. </currency>
  2506. <currency type="BEC">
  2507. <displayName>Belgijos frankas (konvertuojamas)</displayName>
  2508. <displayName count="few">Belgijos frankai (konvertuojami)</displayName>
  2509. <displayName count="one">Belgijos frankas (konvertuojamas)</displayName>
  2510. <displayName count="other">Belgijos frankai (konvertuojami)</displayName>
  2511. </currency>
  2512. <currency type="BEF">
  2513. <displayName>Belgijos frankas</displayName>
  2514. <displayName count="few">Belgijos frankai</displayName>
  2515. <displayName count="one">Belgijos frankas</displayName>
  2516. <displayName count="other">Belgijos frankai</displayName>
  2517. </currency>
  2518. <currency type="BEL">
  2519. <displayName>Belgijos frankas (finansinis)</displayName>
  2520. <displayName count="few">Belgijos frankai (finansiniai)</displayName>
  2521. <displayName count="one">Belgijos frankas (finansinis)</displayName>
  2522. <displayName count="other">Belgijos frankai (finansiniai)</displayName>
  2523. </currency>
  2524. <currency type="BGL">
  2525. <displayName>Bulgarijos levas (1962-1999)</displayName>
  2526. <displayName count="few">Bulgarijos levai</displayName>
  2527. <displayName count="one">Bulgarijos levas (1962-1999)</displayName>
  2528. <displayName count="other">Bulgarijos levai</displayName>
  2529. </currency>
  2530. <currency type="BGN">
  2531. <displayName>Bulgarijos levas</displayName>
  2532. <displayName count="one">Bulgarijos naujasis levas</displayName>
  2533. <displayName count="other">Bulgarijos naujasis levai</displayName>
  2534. </currency>
  2535. <currency type="BHD">
  2536. <displayName>Bahreino dinaras</displayName>
  2537. <displayName count="few">Bahreino dinarai</displayName>
  2538. <displayName count="one">Bahreino dinaras</displayName>
  2539. <displayName count="other">Bahreino dinarai</displayName>
  2540. </currency>
  2541. <currency type="BIF">
  2542. <displayName>Burundžio frankas</displayName>
  2543. <displayName count="few">Burundžio frankai</displayName>
  2544. <displayName count="one">Burundžio frankas</displayName>
  2545. <displayName count="other">Burundžio frankai</displayName>
  2546. </currency>
  2547. <currency type="BMD">
  2548. <displayName>Bermudos doleris</displayName>
  2549. <displayName count="few">Bermudos doleriai</displayName>
  2550. <displayName count="one">Bermudos doleris</displayName>
  2551. <displayName count="other">Bermudos doleriai</displayName>
  2552. </currency>
  2553. <currency type="BND">
  2554. <displayName>Brunėjaus doleris</displayName>
  2555. <displayName count="one">Brunėjaus doleris</displayName>
  2556. <displayName count="other">Brunėjaus doleriai</displayName>
  2557. </currency>
  2558. <currency type="BOB">
  2559. <displayName>Bolivijos bolivijanas</displayName>
  2560. <displayName count="one">Bolivijos bolivijanas</displayName>
  2561. <displayName count="other">Bolivijos bolivijanai</displayName>
  2562. </currency>
  2563. <currency type="BOP">
  2564. <displayName>Bolivijos pesas</displayName>
  2565. <displayName count="few">Bolivijos pesai</displayName>
  2566. <displayName count="one">Bolivijos pesas</displayName>
  2567. <displayName count="other">Bolivijos pesai</displayName>
  2568. </currency>
  2569. <currency type="BOV">
  2570. <displayName>Bolivijos mvdol</displayName>
  2571. <displayName count="one">Bolivijos mvdol</displayName>
  2572. <displayName count="other">Bolivijos mvdol</displayName>
  2573. </currency>
  2574. <currency type="BRB">
  2575. <displayName>Brazilijos naujasis kruzeiras</displayName>
  2576. <displayName count="few">Brazilijos naujieji kruzeirai</displayName>
  2577. <displayName count="one">Brazilijos naujasis kruzeiras</displayName>
  2578. <displayName count="other">Brazilijos naujieji kruzeirai</displayName>
  2579. </currency>
  2580. <currency type="BRC">
  2581. <displayName>Brazilijos kruzadas</displayName>
  2582. <displayName count="few">Brazilijos kruzadai</displayName>
  2583. <displayName count="one">Brazilijos kruzadas</displayName>
  2584. <displayName count="other">Brazilijos kruzadai</displayName>
  2585. </currency>
  2586. <currency type="BRE">
  2587. <displayName>Brazilijos kruzeiras (1990-1993)</displayName>
  2588. <displayName count="few">Brazilijos kruzeirai (1990-1993)</displayName>
  2589. <displayName count="one">Brazilijos kruzeiras (1990-1993)</displayName>
  2590. <displayName count="other">Brazilijos kruzeirai (1990-1993)</displayName>
  2591. </currency>
  2592. <currency type="BRL">
  2593. <displayName>Brazilijos realas</displayName>
  2594. <displayName count="one">Brazilijos realas</displayName>
  2595. <displayName count="other">Brazilijos realai</displayName>
  2596. </currency>
  2597. <currency type="BRN">
  2598. <displayName>Brazilijos naujasis kruzadas</displayName>
  2599. <displayName count="few">Brazilijos naujieji kruzadai</displayName>
  2600. <displayName count="one">Brazilijos naujasis kruzadas</displayName>
  2601. <displayName count="other">Brazilijos naujieji kruzadai</displayName>
  2602. </currency>
  2603. <currency type="BRR">
  2604. <displayName>Brazilijos kruzeiras</displayName>
  2605. <displayName count="few">Brazilijos kruzeirai</displayName>
  2606. <displayName count="one">Brazilijos kruzeiras</displayName>
  2607. <displayName count="other">Brazilijos kruzeirai</displayName>
  2608. </currency>
  2609. <currency type="BSD">
  2610. <displayName>Bahamų doleris</displayName>
  2611. <displayName count="few">Bahamų doleriai</displayName>
  2612. <displayName count="one">Bahamų doleris</displayName>
  2613. <displayName count="other">Bahamų doleriai</displayName>
  2614. </currency>
  2615. <currency type="BTN">
  2616. <displayName>Butano ngultrumas</displayName>
  2617. <displayName count="few">Butano ngultrumai</displayName>
  2618. <displayName count="one">Butano ngultrumas</displayName>
  2619. <displayName count="other">Butano ngultrumai</displayName>
  2620. </currency>
  2621. <currency type="BWP">
  2622. <displayName>Botsvanos pula</displayName>
  2623. <displayName count="few">Botsvanos pulos</displayName>
  2624. <displayName count="one">Botsvanos pula</displayName>
  2625. <displayName count="other">Botsvanos pulos</displayName>
  2626. </currency>
  2627. <currency type="BYB">
  2628. <displayName>Baltarusijos naujasis rublis</displayName>
  2629. <displayName count="one">Baltarusijos naujasis rublis</displayName>
  2630. <displayName count="other">Baltarusijos naujieji rubliai</displayName>
  2631. </currency>
  2632. <currency type="BYR">
  2633. <displayName>Baltarusijos rublis</displayName>
  2634. <displayName count="one">Baltarusijos rublis</displayName>
  2635. <displayName count="other">Baltarusijos rubliai</displayName>
  2636. </currency>
  2637. <currency type="BZD">
  2638. <displayName>Belizo doleris</displayName>
  2639. <displayName count="one">Belizo doleris</displayName>
  2640. <displayName count="other">Belizo doleriai</displayName>
  2641. </currency>
  2642. <currency type="CAD">
  2643. <displayName>Kanados doleris</displayName>
  2644. <displayName count="one">Kanados doleris</displayName>
  2645. <displayName count="other">Kanados doleriai</displayName>
  2646. </currency>
  2647. <currency type="CDF">
  2648. <displayName>Kongo frankas</displayName>
  2649. <displayName count="one">Kongo frankas</displayName>
  2650. <displayName count="other">Kongo frankai</displayName>
  2651. </currency>
  2652. <currency type="CHF">
  2653. <displayName>Šveicarijos frankas</displayName>
  2654. </currency>
  2655. <currency type="CLP">
  2656. <displayName>Čilės pesas</displayName>
  2657. <displayName count="one">Čilės pesas</displayName>
  2658. <displayName count="other">Čilės pesai</displayName>
  2659. </currency>
  2660. <currency type="CNY">
  2661. <displayName>Ženminbi juanis</displayName>
  2662. <displayName count="one">Kinijos juanis</displayName>
  2663. <displayName count="other">Kinijos juaniai</displayName>
  2664. </currency>
  2665. <currency type="COP">
  2666. <displayName>Kolumbijos pesas</displayName>
  2667. <displayName count="one">Kolumbijos pesas</displayName>
  2668. <displayName count="other">Kolumbijos pesai</displayName>
  2669. </currency>
  2670. <currency type="CRC">
  2671. <displayName>Kosta Rikos kolonas</displayName>
  2672. <displayName count="one">Kosta Rikos kolonas</displayName>
  2673. <displayName count="other">Kosta Rikos kolonai</displayName>
  2674. </currency>
  2675. <currency type="CSD">
  2676. <displayName>Senasis Serbijos dinaras</displayName>
  2677. </currency>
  2678. <currency type="CUP">
  2679. <displayName>Kubos pesas</displayName>
  2680. </currency>
  2681. <currency type="CYP">
  2682. <displayName>Kipro svaras</displayName>
  2683. </currency>
  2684. <currency type="CZK">
  2685. <displayName>Čekijos krona</displayName>
  2686. </currency>
  2687. <currency type="DDM">
  2688. <displayName>Rytų Vokietijos ostmarkė</displayName>
  2689. </currency>
  2690. <currency type="DEM">
  2691. <displayName>Vokietijos markė</displayName>
  2692. </currency>
  2693. <currency type="DJF">
  2694. <displayName>Džibučio frankas</displayName>
  2695. </currency>
  2696. <currency type="DKK">
  2697. <displayName>Danijos krona</displayName>
  2698. </currency>
  2699. <currency type="DOP">
  2700. <displayName>Dominikos pesas</displayName>
  2701. </currency>
  2702. <currency type="DZD">
  2703. <displayName>Alžyro dinaras</displayName>
  2704. <displayName count="one">Alžyro dinaras</displayName>
  2705. <displayName count="other">Alžyro dinarai</displayName>
  2706. </currency>
  2707. <currency type="ECS">
  2708. <displayName>Ekvadoro sukrė</displayName>
  2709. </currency>
  2710. <currency type="ECV">
  2711. <displayName>Ekvadoro constante (UVC)</displayName>
  2712. </currency>
  2713. <currency type="EEK">
  2714. <displayName>Estijos krona</displayName>
  2715. </currency>
  2716. <currency type="EGP">
  2717. <displayName>Egipto svaras</displayName>
  2718. </currency>
  2719. <currency type="ERN">
  2720. <displayName>Eritrėjos nakfa</displayName>
  2721. </currency>
  2722. <currency type="ESP">
  2723. <displayName>Ispanijos peseta</displayName>
  2724. </currency>
  2725. <currency type="ETB">
  2726. <displayName>Etiopijos biras</displayName>
  2727. </currency>
  2728. <currency type="EUR">
  2729. <displayName>Euras</displayName>
  2730. </currency>
  2731. <currency type="FIM">
  2732. <displayName>Suomijos markė</displayName>
  2733. </currency>
  2734. <currency type="FJD">
  2735. <displayName>Fidžio doleris</displayName>
  2736. </currency>
  2737. <currency type="FKP">
  2738. <displayName>Folklando salų svaras</displayName>
  2739. </currency>
  2740. <currency type="FRF">
  2741. <displayName>Prancūzijos frankas</displayName>
  2742. </currency>
  2743. <currency type="GBP">
  2744. <displayName>Svaras sterlingų</displayName>
  2745. <displayName count="one">Didžiosios Britanijos svaras sterlingų</displayName>
  2746. <displayName count="other">Didžiosios Britanijos svarai sterlingų</displayName>
  2747. </currency>
  2748. <currency type="GEL">
  2749. <displayName>Gruzijos laris</displayName>
  2750. </currency>
  2751. <currency type="GHC">
  2752. <displayName>Ganos sedis (1979-2007)</displayName>
  2753. </currency>
  2754. <currency type="GHS">
  2755. <displayName>Ganos sedis</displayName>
  2756. </currency>
  2757. <currency type="GIP">
  2758. <displayName>Gibraltaro svaras</displayName>
  2759. </currency>
  2760. <currency type="GMD">
  2761. <displayName>Gambijos dalasis</displayName>
  2762. </currency>
  2763. <currency type="GNF">
  2764. <displayName>Gvinėjos frankas</displayName>
  2765. </currency>
  2766. <currency type="GRD">
  2767. <displayName>Graikijos drachma</displayName>
  2768. </currency>
  2769. <currency type="GTQ">
  2770. <displayName>Gvatemalos kecalis</displayName>
  2771. </currency>
  2772. <currency type="GWE">
  2773. <displayName>Portugalų Gvinėjos eskudas</displayName>
  2774. </currency>
  2775. <currency type="GWP">
  2776. <displayName>Gvinėjos-Bisau pesas</displayName>
  2777. </currency>
  2778. <currency type="GYD">
  2779. <displayName>Gajanos doleris</displayName>
  2780. </currency>
  2781. <currency type="HKD">
  2782. <displayName>Honkongo doleris</displayName>
  2783. </currency>
  2784. <currency type="HNL">
  2785. <displayName>Hondūro lempira</displayName>
  2786. </currency>
  2787. <currency type="HRD">
  2788. <displayName>Kroatijos dinaras</displayName>
  2789. </currency>
  2790. <currency type="HRK">
  2791. <displayName>Kroatijos kuna</displayName>
  2792. </currency>
  2793. <currency type="HTG">
  2794. <displayName>Haičio gurdas</displayName>
  2795. </currency>
  2796. <currency type="HUF">
  2797. <displayName>Vengrijos forintas</displayName>
  2798. </currency>
  2799. <currency type="IDR">
  2800. <displayName>Indonezijos rupija</displayName>
  2801. </currency>
  2802. <currency type="IEP">
  2803. <displayName>Airijos svaras</displayName>
  2804. </currency>
  2805. <currency type="ILP">
  2806. <displayName>Izraelio svaras</displayName>
  2807. </currency>
  2808. <currency type="ILS">
  2809. <displayName>Izraelio šekelis</displayName>
  2810. </currency>
  2811. <currency type="INR">
  2812. <displayName>Indijos rupija</displayName>
  2813. </currency>
  2814. <currency type="IQD">
  2815. <displayName>Irako dinaras</displayName>
  2816. </currency>
  2817. <currency type="IRR">
  2818. <displayName>Irano rialas</displayName>
  2819. </currency>
  2820. <currency type="ISK">
  2821. <displayName>Islandijos krona</displayName>
  2822. </currency>
  2823. <currency type="ITL">
  2824. <displayName>Italijos lira</displayName>
  2825. </currency>
  2826. <currency type="JMD">
  2827. <displayName>Jamaikos doleris</displayName>
  2828. </currency>
  2829. <currency type="JOD">
  2830. <displayName>Jordanijos dinaras</displayName>
  2831. </currency>
  2832. <currency type="JPY">
  2833. <displayName>Jena</displayName>
  2834. </currency>
  2835. <currency type="KES">
  2836. <displayName>Kenijos šilingas</displayName>
  2837. </currency>
  2838. <currency type="KGS">
  2839. <displayName>Kirgizijos somas</displayName>
  2840. </currency>
  2841. <currency type="KMF">
  2842. <displayName>Komoro frankas</displayName>
  2843. <displayName count="one">Komoro frankas</displayName>
  2844. <displayName count="other">Komoro frankai</displayName>
  2845. </currency>
  2846. <currency type="KPW">
  2847. <displayName>Šiaurės Korėjos vonas</displayName>
  2848. </currency>
  2849. <currency type="KRW">
  2850. <displayName>Pietų Korėjos vonas</displayName>
  2851. </currency>
  2852. <currency type="KWD">
  2853. <displayName>Kuveito dinaras</displayName>
  2854. </currency>
  2855. <currency type="KYD">
  2856. <displayName>Kaimanų salų doleris</displayName>
  2857. </currency>
  2858. <currency type="KZT">
  2859. <displayName>Kazachstano tengė</displayName>
  2860. </currency>
  2861. <currency type="LAK">
  2862. <displayName>Laoso kipas</displayName>
  2863. </currency>
  2864. <currency type="LBP">
  2865. <displayName>Libano svaras</displayName>
  2866. </currency>
  2867. <currency type="LKR">
  2868. <displayName>Šri Lankos rupija</displayName>
  2869. </currency>
  2870. <currency type="LRD">
  2871. <displayName>Liberijos doleris</displayName>
  2872. </currency>
  2873. <currency type="LSL">
  2874. <displayName>Lesoto lotis</displayName>
  2875. </currency>
  2876. <currency type="LTL">
  2877. <displayName>Litas</displayName>
  2878. </currency>
  2879. <currency type="LTT">
  2880. <displayName>Lietuvos talonas</displayName>
  2881. </currency>
  2882. <currency type="LUC">
  2883. <displayName>Liuksemburgo konvertuojamas frankas</displayName>
  2884. </currency>
  2885. <currency type="LUF">
  2886. <displayName>Liuksemburgo frankas</displayName>
  2887. </currency>
  2888. <currency type="LUL">
  2889. <displayName>Liuksemburgo finansinis frankas</displayName>
  2890. </currency>
  2891. <currency type="LVL">
  2892. <displayName>Latvijos latas</displayName>
  2893. </currency>
  2894. <currency type="LVR">
  2895. <displayName>Latvijos rublis</displayName>
  2896. </currency>
  2897. <currency type="LYD">
  2898. <displayName>Libijos dinaras</displayName>
  2899. </currency>
  2900. <currency type="MAD">
  2901. <displayName>Maroko dirhamas</displayName>
  2902. </currency>
  2903. <currency type="MAF">
  2904. <displayName>Maroko frankas</displayName>
  2905. </currency>
  2906. <currency type="MDL">
  2907. <displayName>Moldovos lėja</displayName>
  2908. </currency>
  2909. <currency type="MGA">
  2910. <displayName>Madagaskaro ariaris</displayName>
  2911. </currency>
  2912. <currency type="MGF">
  2913. <displayName>Madagaskaro frankas</displayName>
  2914. </currency>
  2915. <currency type="MKD">
  2916. <displayName>Makedonijos denaras</displayName>
  2917. </currency>
  2918. <currency type="MLF">
  2919. <displayName>Malio frankas</displayName>
  2920. </currency>
  2921. <currency type="MMK">
  2922. <displayName>Mianmaro kijatas</displayName>
  2923. </currency>
  2924. <currency type="MNT">
  2925. <displayName>Mongolijos tugrikas</displayName>
  2926. </currency>
  2927. <currency type="MOP">
  2928. <displayName>Makao pataka</displayName>
  2929. </currency>
  2930. <currency type="MRO">
  2931. <displayName>Mauritanijos ugija</displayName>
  2932. </currency>
  2933. <currency type="MTL">
  2934. <displayName>Maltos lira</displayName>
  2935. </currency>
  2936. <currency type="MTP">
  2937. <displayName>Maltos svaras</displayName>
  2938. </currency>
  2939. <currency type="MUR">
  2940. <displayName>Mauricijaus rupija</displayName>
  2941. </currency>
  2942. <currency type="MVR">
  2943. <displayName>Maldyvų salų rufija</displayName>
  2944. </currency>
  2945. <currency type="MWK">
  2946. <displayName>Malavio kvača</displayName>
  2947. </currency>
  2948. <currency type="MXN">
  2949. <displayName>Meksikos pesas</displayName>
  2950. </currency>
  2951. <currency type="MXP">
  2952. <displayName>Meksikos sidabrinis pesas (1861-1992)</displayName>
  2953. </currency>
  2954. <currency type="MXV">
  2955. <displayName>Meksikos United de Inversion (UDI)</displayName>
  2956. </currency>
  2957. <currency type="MYR">
  2958. <displayName>Malaizijos ringitas</displayName>
  2959. </currency>
  2960. <currency type="MZE">
  2961. <displayName>Mozambiko eskudas</displayName>
  2962. </currency>
  2963. <currency type="MZM">
  2964. <displayName>Senasis Mozambiko metikalis</displayName>
  2965. </currency>
  2966. <currency type="MZN">
  2967. <displayName>Mozambiko metikalis</displayName>
  2968. </currency>
  2969. <currency type="NAD">
  2970. <displayName>Namibijos doleris</displayName>
  2971. </currency>
  2972. <currency type="NGN">
  2973. <displayName>Nigerijos naira</displayName>
  2974. </currency>
  2975. <currency type="NIC">
  2976. <displayName>Nikaragvos kardoba</displayName>
  2977. </currency>
  2978. <currency type="NIO">
  2979. <displayName>Nikaragvos kardoba oras</displayName>
  2980. </currency>
  2981. <currency type="NLG">
  2982. <displayName>Nyderlandų guldenas</displayName>
  2983. </currency>
  2984. <currency type="NOK">
  2985. <displayName>Norvegijos krona</displayName>
  2986. </currency>
  2987. <currency type="NPR">
  2988. <displayName>Nepalo rupija</displayName>
  2989. </currency>
  2990. <currency type="NZD">
  2991. <displayName>Naujosios Zelandijos doleris</displayName>
  2992. </currency>
  2993. <currency type="OMR">
  2994. <displayName>Omano rialas</displayName>
  2995. </currency>
  2996. <currency type="PAB">
  2997. <displayName>Panamos balboja</displayName>
  2998. </currency>
  2999. <currency type="PEN">
  3000. <displayName>Peru naujasis solis</displayName>
  3001. </currency>
  3002. <currency type="PES">
  3003. <displayName>Peru solis</displayName>
  3004. </currency>
  3005. <currency type="PGK">
  3006. <displayName>Papua Naujosios Gvinėjos kina</displayName>
  3007. </currency>
  3008. <currency type="PHP">
  3009. <displayName>Filipinų pesas</displayName>
  3010. </currency>
  3011. <currency type="PKR">
  3012. <displayName>Pakistano rupija</displayName>
  3013. </currency>
  3014. <currency type="PLN">
  3015. <displayName>Lenkijos zlotas</displayName>
  3016. </currency>
  3017. <currency type="PLZ">
  3018. <displayName>Lenkijos zlotas (1950-1995)</displayName>
  3019. </currency>
  3020. <currency type="PTE">
  3021. <displayName>Portugalijos eskudas</displayName>
  3022. </currency>
  3023. <currency type="PYG">
  3024. <displayName>Paragvajaus guaranis</displayName>
  3025. </currency>
  3026. <currency type="QAR">
  3027. <displayName>Kataro rialas</displayName>
  3028. </currency>
  3029. <currency type="RHD">
  3030. <displayName>Rodezijos doleris</displayName>
  3031. </currency>
  3032. <currency type="ROL">
  3033. <displayName>Senoji Rumunijos lėja</displayName>
  3034. </currency>
  3035. <currency type="RON">
  3036. <displayName>Naujoji Rumunijos lėja</displayName>
  3037. </currency>
  3038. <currency type="RSD">
  3039. <displayName>Serbijos dinaras</displayName>
  3040. </currency>
  3041. <currency type="RUB">
  3042. <displayName>Rusijos rublis</displayName>
  3043. </currency>
  3044. <currency type="RUR">
  3045. <displayName>Rusijos rublis (1991-1998)</displayName>
  3046. </currency>
  3047. <currency type="RWF">
  3048. <displayName>Ruandos frankas</displayName>
  3049. </currency>
  3050. <currency type="SAR">
  3051. <displayName>Saudo Arabijos rialas</displayName>
  3052. </currency>
  3053. <currency type="SBD">
  3054. <displayName>Saliamono salų doleris</displayName>
  3055. </currency>
  3056. <currency type="SCR">
  3057. <displayName>Seišelių salų rupija</displayName>
  3058. </currency>
  3059. <currency type="SDD">
  3060. <displayName>Senasis Sudano dinaras</displayName>
  3061. </currency>
  3062. <currency type="SDG">
  3063. <displayName>Sudano svaras</displayName>
  3064. </currency>
  3065. <currency type="SDP">
  3066. <displayName>Senasis Sudano svaras</displayName>
  3067. </currency>
  3068. <currency type="SEK">
  3069. <displayName>Švedijos krona</displayName>
  3070. </currency>
  3071. <currency type="SGD">
  3072. <displayName>Singapūro doleris</displayName>
  3073. </currency>
  3074. <currency type="SHP">
  3075. <displayName>Šv. Elenos salų svaras</displayName>
  3076. </currency>
  3077. <currency type="SIT">
  3078. <displayName>Slovėnijos tolaras</displayName>
  3079. </currency>
  3080. <currency type="SKK">
  3081. <displayName>Slovakijos krona</displayName>
  3082. </currency>
  3083. <currency type="SLL">
  3084. <displayName>Siera Leonės leonė</displayName>
  3085. </currency>
  3086. <currency type="SOS">
  3087. <displayName>Somalio šilingas</displayName>
  3088. </currency>
  3089. <currency type="SRD">
  3090. <displayName>Surimano doleris</displayName>
  3091. </currency>
  3092. <currency type="SRG">
  3093. <displayName>Surimano guldenas</displayName>
  3094. </currency>
  3095. <currency type="STD">
  3096. <displayName>Sao Tomės ir Principės dobra</displayName>
  3097. </currency>
  3098. <currency type="SUR">
  3099. <displayName>Sovietų Sąjungos rublis</displayName>
  3100. </currency>
  3101. <currency type="SVC">
  3102. <displayName>Salvadoro kolonas</displayName>
  3103. </currency>
  3104. <currency type="SYP">
  3105. <displayName>Sirijos svaras</displayName>
  3106. </currency>
  3107. <currency type="SZL">
  3108. <displayName>Svazilendo lilangenis</displayName>
  3109. </currency>
  3110. <currency type="THB">
  3111. <displayName>Tailando batas</displayName>
  3112. </currency>
  3113. <currency type="TJR">
  3114. <displayName>Tadžikistano rublis</displayName>
  3115. </currency>
  3116. <currency type="TJS">
  3117. <displayName>Tadžikistano somonis</displayName>
  3118. </currency>
  3119. <currency type="TMM">
  3120. <displayName>Turkmėnistano manatas</displayName>
  3121. </currency>
  3122. <currency type="TND">
  3123. <displayName>Tuniso dinaras</displayName>
  3124. </currency>
  3125. <currency type="TOP">
  3126. <displayName>Tongo paanga</displayName>
  3127. </currency>
  3128. <currency type="TPE">
  3129. <displayName>Timoro eskudas</displayName>
  3130. </currency>
  3131. <currency type="TRL">
  3132. <displayName>Turkijos lira</displayName>
  3133. </currency>
  3134. <currency type="TRY">
  3135. <displayName>Naujoji Turkijos lira</displayName>
  3136. </currency>
  3137. <currency type="TTD">
  3138. <displayName>Trinidado ir Tobago doleris</displayName>
  3139. </currency>
  3140. <currency type="TWD">
  3141. <displayName>Naujasis Taivano doleris</displayName>
  3142. </currency>
  3143. <currency type="TZS">
  3144. <displayName>Tanzanijos šilingas</displayName>
  3145. </currency>
  3146. <currency type="UAH">
  3147. <displayName>Ukrainos grivina</displayName>
  3148. </currency>
  3149. <currency type="UAK">
  3150. <displayName>Ukrainos karbovanecas</displayName>
  3151. </currency>
  3152. <currency type="UGS">
  3153. <displayName>Ugandos šilingas (1966-1987)</displayName>
  3154. </currency>
  3155. <currency type="UGX">
  3156. <displayName>Ugandos šilingas</displayName>
  3157. </currency>
  3158. <currency type="USD">
  3159. <displayName>JAV doleris</displayName>
  3160. </currency>
  3161. <currency type="USN">
  3162. <displayName>JAV doleris (kitos dienos)</displayName>
  3163. </currency>
  3164. <currency type="USS">
  3165. <displayName>JAV doleris (šios dienos)</displayName>
  3166. </currency>
  3167. <currency type="UYP">
  3168. <displayName>Urugvajaus pesas (1975-1993)</displayName>
  3169. </currency>
  3170. <currency type="UYU">
  3171. <displayName>Urugvajaus pesas</displayName>
  3172. </currency>
  3173. <currency type="UZS">
  3174. <displayName>Uzbekistano sumas</displayName>
  3175. </currency>
  3176. <currency type="VEB">
  3177. <displayName>Venesuelos bolivaras</displayName>
  3178. </currency>
  3179. <currency type="VEF">
  3180. <displayName>Stiprusis Venesuelos bolivaras</displayName>
  3181. </currency>
  3182. <currency type="VND">
  3183. <displayName>Vietnamo dongas</displayName>
  3184. </currency>
  3185. <currency type="WST">
  3186. <displayName>Vakarų Samoa tala</displayName>
  3187. </currency>
  3188. <currency type="XAF">
  3189. <displayName>CFA BEAC frankas</displayName>
  3190. <displayName count="one">CFA BEAC frankas</displayName>
  3191. <displayName count="other">CFA BEAC frankai</displayName>
  3192. </currency>
  3193. <currency type="XAG">
  3194. <displayName>Sidabras</displayName>
  3195. </currency>
  3196. <currency type="XAU">
  3197. <displayName>Auksas</displayName>
  3198. </currency>
  3199. <currency type="XBA">
  3200. <displayName>Europos suvestinės vienetas</displayName>
  3201. </currency>
  3202. <currency type="XBB">
  3203. <displayName>Europos piniginis vienetas</displayName>
  3204. </currency>
  3205. <currency type="XBC">
  3206. <displayName>Europos valiutos/apskaitos vienetas (XBC)</displayName>
  3207. </currency>
  3208. <currency type="XBD">
  3209. <displayName>Europos valiutos/apskaitos vienetas (XBD)</displayName>
  3210. </currency>
  3211. <currency type="XCD">
  3212. <displayName>Rytų Karibų doleris</displayName>
  3213. </currency>
  3214. <currency type="XDR">
  3215. <displayName>SDR Tarptautinis valiutos fondas</displayName>
  3216. </currency>
  3217. <currency type="XEU">
  3218. <displayName>Europos piniginis vienetas (1993-1999)</displayName>
  3219. </currency>
  3220. <currency type="XFO">
  3221. <displayName>Aukso frankas</displayName>
  3222. </currency>
  3223. <currency type="XFU">
  3224. <displayName>Uic -frankas</displayName>
  3225. </currency>
  3226. <currency type="XOF">
  3227. <displayName>CFA BCEAO frankas</displayName>
  3228. <displayName count="one">CFA BCEAO frankas</displayName>
  3229. <displayName count="other">CFA BCEAO frankai</displayName>
  3230. </currency>
  3231. <currency type="XPD">
  3232. <displayName>Paladis</displayName>
  3233. </currency>
  3234. <currency type="XPF">
  3235. <displayName>CFP frankas</displayName>
  3236. <displayName count="one">CFP frankas</displayName>
  3237. <displayName count="other">CFP frankai</displayName>
  3238. </currency>
  3239. <currency type="XPT">
  3240. <displayName>Platina</displayName>
  3241. </currency>
  3242. <currency type="XRE">
  3243. <displayName>RINET fondai</displayName>
  3244. </currency>
  3245. <currency type="XTS">
  3246. <displayName>Tikrinamas valiutos kodas</displayName>
  3247. </currency>
  3248. <currency type="XXX">
  3249. <displayName>Nežinoma arba neteisinga valiuta</displayName>
  3250. </currency>
  3251. <currency type="YDD">
  3252. <displayName>Jemeno dinaras</displayName>
  3253. </currency>
  3254. <currency type="YER">
  3255. <displayName>Jemeno rialas</displayName>
  3256. </currency>
  3257. <currency type="YUM">
  3258. <displayName>Jugoslavijos naujasis dinaras</displayName>
  3259. </currency>
  3260. <currency type="YUN">
  3261. <displayName>Jugoslavijos konvertuojamas dinaras</displayName>
  3262. </currency>
  3263. <currency type="ZAL">
  3264. <displayName>Pietų Afrikos finansinis randas</displayName>
  3265. </currency>
  3266. <currency type="ZAR">
  3267. <displayName>Pietų Afrikos randas</displayName>
  3268. </currency>
  3269. <currency type="ZMK">
  3270. <displayName>Zambijos kvača</displayName>
  3271. </currency>
  3272. <currency type="ZRN">
  3273. <displayName>Zairo naujasis zairas</displayName>
  3274. </currency>
  3275. <currency type="ZRZ">
  3276. <displayName>Zairo zairas</displayName>
  3277. </currency>
  3278. <currency type="ZWD">
  3279. <displayName>Zimbabvės doleris</displayName>
  3280. </currency>
  3281. </currencies>
  3282. </numbers>
  3283. <units>
  3284. <unit type="day">
  3285. <unitPattern count="few">{0} dienos</unitPattern>
  3286. <unitPattern count="one">{0} diena</unitPattern>
  3287. <unitPattern count="other">{0} dienų</unitPattern>
  3288. </unit>
  3289. <unit type="hour">
  3290. <unitPattern count="few">{0} valandos</unitPattern>
  3291. <unitPattern count="one">{0} valanda</unitPattern>
  3292. <unitPattern count="other">{0} valandų</unitPattern>
  3293. </unit>
  3294. <unit type="minute">
  3295. <unitPattern count="few">{0} minutės</unitPattern>
  3296. <unitPattern count="one">{0} minutė</unitPattern>
  3297. <unitPattern count="other">{0} minučių</unitPattern>
  3298. </unit>
  3299. <unit type="month">
  3300. <unitPattern count="few">{0} mėnesiai</unitPattern>
  3301. <unitPattern count="one">{0} mėnuo</unitPattern>
  3302. <unitPattern count="other">{0} mėnesių</unitPattern>
  3303. </unit>
  3304. <unit type="second">
  3305. <unitPattern count="few">{0} sekundės</unitPattern>
  3306. <unitPattern count="one">{0} sekundė</unitPattern>
  3307. <unitPattern count="other">{0} sekundžių</unitPattern>
  3308. </unit>
  3309. <unit type="week">
  3310. <unitPattern count="few">{0} savaitės</unitPattern>
  3311. <unitPattern count="one">{0} savaitė</unitPattern>
  3312. <unitPattern count="other">{0} savaičių</unitPattern>
  3313. </unit>
  3314. <unit type="year">
  3315. <unitPattern count="few">{0} metai</unitPattern>
  3316. <unitPattern count="one">{0} metai</unitPattern>
  3317. <unitPattern count="other">{0} metų</unitPattern>
  3318. </unit>
  3319. </units>
  3320. <posix>
  3321. <messages>
  3322. <yesstr>taip:t</yesstr>
  3323. <nostr>ne:n</nostr>
  3324. </messages>
  3325. </posix>
  3326. </ldml>