@formatjs/intl-numberformat 8.0.2 โ†’ 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1286) hide show
  1. package/BUILD +933 -0
  2. package/CHANGELOG.md +844 -0
  3. package/LICENSE.md +0 -0
  4. package/README.md +0 -0
  5. package/index.ts +1 -0
  6. package/package.json +9 -4
  7. package/polyfill-force.ts +13 -0
  8. package/polyfill.ts +16 -0
  9. package/scripts/cldr-raw.ts +42 -0
  10. package/scripts/cldr.ts +31 -0
  11. package/scripts/currency-digits.ts +18 -0
  12. package/scripts/extract-currencies.ts +89 -0
  13. package/scripts/extract-numbers.ts +151 -0
  14. package/scripts/extract-units.ts +91 -0
  15. package/scripts/numbering-systems.ts +18 -0
  16. package/scripts/test-locale-data-gen.ts +20 -0
  17. package/scripts/test262-main-gen.ts +28 -0
  18. package/scripts/units-constants.ts +20 -0
  19. package/scripts/utils.ts +25 -0
  20. package/should-polyfill.ts +59 -0
  21. package/src/core.ts +279 -0
  22. package/src/currency-digits.generated.ts +1 -0
  23. package/src/get_internal_slots.ts +16 -0
  24. package/src/numbering-systems.generated.ts +1 -0
  25. package/src/to_locale_string.ts +16 -0
  26. package/src/types.ts +36 -0
  27. package/supported-locales.generated.ts +1 -0
  28. package/test262-main.ts +23 -0
  29. package/tests/__snapshots__/currency-compact.test.ts.snap +8449 -0
  30. package/tests/__snapshots__/currency.test.ts.snap +25345 -0
  31. package/tests/__snapshots__/decimal.test.ts.snap +13169 -0
  32. package/tests/__snapshots__/percent.test.ts.snap +17393 -0
  33. package/tests/__snapshots__/unit.test.ts.snap +162545 -0
  34. package/tests/currency-code.test.ts +23 -0
  35. package/tests/currency-compact.test.ts +104 -0
  36. package/tests/currency.test.ts +110 -0
  37. package/tests/decimal.test.ts +83 -0
  38. package/tests/format_to_parts.test.ts +513 -0
  39. package/tests/legacy.test.ts +13 -0
  40. package/tests/locale-data/ar-SS.json +1 -0
  41. package/tests/locale-data/bn.json +1 -0
  42. package/tests/locale-data/da.json +1 -0
  43. package/tests/locale-data/de.json +1 -0
  44. package/tests/locale-data/en-BS.json +1 -0
  45. package/tests/locale-data/en-GB.json +1 -0
  46. package/tests/locale-data/en.json +1 -0
  47. package/tests/locale-data/es.json +1 -0
  48. package/tests/locale-data/fr.json +1 -0
  49. package/tests/locale-data/hi.json +1 -0
  50. package/tests/locale-data/id.json +1 -0
  51. package/tests/locale-data/it.json +1 -0
  52. package/tests/locale-data/ja.json +1 -0
  53. package/tests/locale-data/ko.json +1 -0
  54. package/tests/locale-data/ms.json +1 -0
  55. package/tests/locale-data/nb.json +1 -0
  56. package/tests/locale-data/nl.json +1 -0
  57. package/tests/locale-data/pl.json +1 -0
  58. package/tests/locale-data/pt.json +1 -0
  59. package/tests/locale-data/ru.json +1 -0
  60. package/tests/locale-data/sv.json +1 -0
  61. package/tests/locale-data/sw.json +1 -0
  62. package/tests/locale-data/th.json +1 -0
  63. package/tests/locale-data/tr.json +1 -0
  64. package/tests/locale-data/uk.json +1 -0
  65. package/tests/locale-data/zh-Hans.json +1 -0
  66. package/tests/locale-data/zh-Hant.json +1 -0
  67. package/tests/locale-data/zh.json +1 -0
  68. package/tests/misc.test.ts +278 -0
  69. package/tests/notation-compact-ko-KR.test.ts +96 -0
  70. package/tests/notation-compact-zh-TW.test.ts +48 -0
  71. package/tests/percent.test.ts +83 -0
  72. package/tests/signDisplay-currency-zh-TW.test.ts +85 -0
  73. package/tests/signDisplay-zh-TW.test.ts +53 -0
  74. package/tests/unit-zh-TW.test.ts +162 -0
  75. package/tests/unit.test.ts +113 -0
  76. package/tests/value-tonumber.test.ts +24 -0
  77. package/tsconfig.json +5 -0
  78. package/index.d.ts +0 -2
  79. package/index.d.ts.map +0 -1
  80. package/index.js +0 -4
  81. package/lib/index.d.ts +0 -2
  82. package/lib/index.d.ts.map +0 -1
  83. package/lib/index.js +0 -1
  84. package/lib/polyfill-force.d.ts +0 -2
  85. package/lib/polyfill-force.d.ts.map +0 -1
  86. package/lib/polyfill-force.js +0 -9
  87. package/lib/polyfill.d.ts +0 -2
  88. package/lib/polyfill.d.ts.map +0 -1
  89. package/lib/polyfill.js +0 -12
  90. package/lib/should-polyfill.d.ts +0 -2
  91. package/lib/should-polyfill.d.ts.map +0 -1
  92. package/lib/should-polyfill.js +0 -53
  93. package/lib/src/core.d.ts +0 -7
  94. package/lib/src/core.d.ts.map +0 -1
  95. package/lib/src/core.js +0 -227
  96. package/lib/src/currency-digits.generated.d.ts +0 -2
  97. package/lib/src/currency-digits.generated.d.ts.map +0 -1
  98. package/lib/src/currency-digits.generated.js +0 -1
  99. package/lib/src/get_internal_slots.d.ts +0 -3
  100. package/lib/src/get_internal_slots.d.ts.map +0 -1
  101. package/lib/src/get_internal_slots.js +0 -10
  102. package/lib/src/numbering-systems.generated.d.ts +0 -2
  103. package/lib/src/numbering-systems.generated.d.ts.map +0 -1
  104. package/lib/src/numbering-systems.generated.js +0 -1
  105. package/lib/src/to_locale_string.d.ts +0 -7
  106. package/lib/src/to_locale_string.d.ts.map +0 -1
  107. package/lib/src/to_locale_string.js +0 -10
  108. package/lib/src/types.d.ts +0 -19
  109. package/lib/src/types.d.ts.map +0 -1
  110. package/lib/src/types.js +0 -1
  111. package/lib/supported-locales.d.ts +0 -2
  112. package/lib/supported-locales.d.ts.map +0 -1
  113. package/lib/supported-locales.js +0 -2
  114. package/locale-data/af-NA.d.ts +0 -1
  115. package/locale-data/af-NA.js +0 -6
  116. package/locale-data/af.d.ts +0 -1
  117. package/locale-data/af.js +0 -6
  118. package/locale-data/agq.d.ts +0 -1
  119. package/locale-data/agq.js +0 -6
  120. package/locale-data/ak.d.ts +0 -1
  121. package/locale-data/ak.js +0 -6
  122. package/locale-data/am.d.ts +0 -1
  123. package/locale-data/am.js +0 -6
  124. package/locale-data/ar-AE.d.ts +0 -1
  125. package/locale-data/ar-AE.js +0 -6
  126. package/locale-data/ar-BH.d.ts +0 -1
  127. package/locale-data/ar-BH.js +0 -6
  128. package/locale-data/ar-DJ.d.ts +0 -1
  129. package/locale-data/ar-DJ.js +0 -6
  130. package/locale-data/ar-DZ.d.ts +0 -1
  131. package/locale-data/ar-DZ.js +0 -6
  132. package/locale-data/ar-EG.d.ts +0 -1
  133. package/locale-data/ar-EG.js +0 -6
  134. package/locale-data/ar-EH.d.ts +0 -1
  135. package/locale-data/ar-EH.js +0 -6
  136. package/locale-data/ar-ER.d.ts +0 -1
  137. package/locale-data/ar-ER.js +0 -6
  138. package/locale-data/ar-IL.d.ts +0 -1
  139. package/locale-data/ar-IL.js +0 -6
  140. package/locale-data/ar-IQ.d.ts +0 -1
  141. package/locale-data/ar-IQ.js +0 -6
  142. package/locale-data/ar-JO.d.ts +0 -1
  143. package/locale-data/ar-JO.js +0 -6
  144. package/locale-data/ar-KM.d.ts +0 -1
  145. package/locale-data/ar-KM.js +0 -6
  146. package/locale-data/ar-KW.d.ts +0 -1
  147. package/locale-data/ar-KW.js +0 -6
  148. package/locale-data/ar-LB.d.ts +0 -1
  149. package/locale-data/ar-LB.js +0 -6
  150. package/locale-data/ar-LY.d.ts +0 -1
  151. package/locale-data/ar-LY.js +0 -6
  152. package/locale-data/ar-MA.d.ts +0 -1
  153. package/locale-data/ar-MA.js +0 -6
  154. package/locale-data/ar-MR.d.ts +0 -1
  155. package/locale-data/ar-MR.js +0 -6
  156. package/locale-data/ar-OM.d.ts +0 -1
  157. package/locale-data/ar-OM.js +0 -6
  158. package/locale-data/ar-PS.d.ts +0 -1
  159. package/locale-data/ar-PS.js +0 -6
  160. package/locale-data/ar-QA.d.ts +0 -1
  161. package/locale-data/ar-QA.js +0 -6
  162. package/locale-data/ar-SA.d.ts +0 -1
  163. package/locale-data/ar-SA.js +0 -6
  164. package/locale-data/ar-SD.d.ts +0 -1
  165. package/locale-data/ar-SD.js +0 -6
  166. package/locale-data/ar-SO.d.ts +0 -1
  167. package/locale-data/ar-SO.js +0 -6
  168. package/locale-data/ar-SS.d.ts +0 -1
  169. package/locale-data/ar-SS.js +0 -6
  170. package/locale-data/ar-SY.d.ts +0 -1
  171. package/locale-data/ar-SY.js +0 -6
  172. package/locale-data/ar-TD.d.ts +0 -1
  173. package/locale-data/ar-TD.js +0 -6
  174. package/locale-data/ar-TN.d.ts +0 -1
  175. package/locale-data/ar-TN.js +0 -6
  176. package/locale-data/ar-YE.d.ts +0 -1
  177. package/locale-data/ar-YE.js +0 -6
  178. package/locale-data/ar.d.ts +0 -1
  179. package/locale-data/ar.js +0 -6
  180. package/locale-data/as.d.ts +0 -1
  181. package/locale-data/as.js +0 -6
  182. package/locale-data/asa.d.ts +0 -1
  183. package/locale-data/asa.js +0 -6
  184. package/locale-data/ast.d.ts +0 -1
  185. package/locale-data/ast.js +0 -6
  186. package/locale-data/az-Cyrl.d.ts +0 -1
  187. package/locale-data/az-Cyrl.js +0 -6
  188. package/locale-data/az-Latn.d.ts +0 -1
  189. package/locale-data/az-Latn.js +0 -6
  190. package/locale-data/az.d.ts +0 -1
  191. package/locale-data/az.js +0 -6
  192. package/locale-data/bas.d.ts +0 -1
  193. package/locale-data/bas.js +0 -6
  194. package/locale-data/be-tarask.d.ts +0 -1
  195. package/locale-data/be-tarask.js +0 -6
  196. package/locale-data/be.d.ts +0 -1
  197. package/locale-data/be.js +0 -6
  198. package/locale-data/bem.d.ts +0 -1
  199. package/locale-data/bem.js +0 -6
  200. package/locale-data/bez.d.ts +0 -1
  201. package/locale-data/bez.js +0 -6
  202. package/locale-data/bg.d.ts +0 -1
  203. package/locale-data/bg.js +0 -6
  204. package/locale-data/bm.d.ts +0 -1
  205. package/locale-data/bm.js +0 -6
  206. package/locale-data/bn-IN.d.ts +0 -1
  207. package/locale-data/bn-IN.js +0 -6
  208. package/locale-data/bn.d.ts +0 -1
  209. package/locale-data/bn.js +0 -6
  210. package/locale-data/bo-IN.d.ts +0 -1
  211. package/locale-data/bo-IN.js +0 -6
  212. package/locale-data/bo.d.ts +0 -1
  213. package/locale-data/bo.js +0 -6
  214. package/locale-data/br.d.ts +0 -1
  215. package/locale-data/br.js +0 -6
  216. package/locale-data/brx.d.ts +0 -1
  217. package/locale-data/brx.js +0 -6
  218. package/locale-data/bs-Cyrl.d.ts +0 -1
  219. package/locale-data/bs-Cyrl.js +0 -6
  220. package/locale-data/bs-Latn.d.ts +0 -1
  221. package/locale-data/bs-Latn.js +0 -6
  222. package/locale-data/bs.d.ts +0 -1
  223. package/locale-data/bs.js +0 -6
  224. package/locale-data/ca-AD.d.ts +0 -1
  225. package/locale-data/ca-AD.js +0 -6
  226. package/locale-data/ca-ES-valencia.d.ts +0 -1
  227. package/locale-data/ca-ES-valencia.js +0 -6
  228. package/locale-data/ca-FR.d.ts +0 -1
  229. package/locale-data/ca-FR.js +0 -6
  230. package/locale-data/ca-IT.d.ts +0 -1
  231. package/locale-data/ca-IT.js +0 -6
  232. package/locale-data/ca.d.ts +0 -1
  233. package/locale-data/ca.js +0 -6
  234. package/locale-data/ccp-IN.d.ts +0 -1
  235. package/locale-data/ccp-IN.js +0 -6
  236. package/locale-data/ccp.d.ts +0 -1
  237. package/locale-data/ccp.js +0 -6
  238. package/locale-data/ce.d.ts +0 -1
  239. package/locale-data/ce.js +0 -6
  240. package/locale-data/ceb.d.ts +0 -1
  241. package/locale-data/ceb.js +0 -6
  242. package/locale-data/cgg.d.ts +0 -1
  243. package/locale-data/cgg.js +0 -6
  244. package/locale-data/chr.d.ts +0 -1
  245. package/locale-data/chr.js +0 -6
  246. package/locale-data/ckb-IR.d.ts +0 -1
  247. package/locale-data/ckb-IR.js +0 -6
  248. package/locale-data/ckb.d.ts +0 -1
  249. package/locale-data/ckb.js +0 -6
  250. package/locale-data/cs.d.ts +0 -1
  251. package/locale-data/cs.js +0 -6
  252. package/locale-data/cy.d.ts +0 -1
  253. package/locale-data/cy.js +0 -6
  254. package/locale-data/da-GL.d.ts +0 -1
  255. package/locale-data/da-GL.js +0 -6
  256. package/locale-data/da.d.ts +0 -1
  257. package/locale-data/da.js +0 -6
  258. package/locale-data/dav.d.ts +0 -1
  259. package/locale-data/dav.js +0 -6
  260. package/locale-data/de-AT.d.ts +0 -1
  261. package/locale-data/de-AT.js +0 -6
  262. package/locale-data/de-BE.d.ts +0 -1
  263. package/locale-data/de-BE.js +0 -6
  264. package/locale-data/de-CH.d.ts +0 -1
  265. package/locale-data/de-CH.js +0 -6
  266. package/locale-data/de-IT.d.ts +0 -1
  267. package/locale-data/de-IT.js +0 -6
  268. package/locale-data/de-LI.d.ts +0 -1
  269. package/locale-data/de-LI.js +0 -6
  270. package/locale-data/de-LU.d.ts +0 -1
  271. package/locale-data/de-LU.js +0 -6
  272. package/locale-data/de.d.ts +0 -1
  273. package/locale-data/de.js +0 -6
  274. package/locale-data/dje.d.ts +0 -1
  275. package/locale-data/dje.js +0 -6
  276. package/locale-data/doi.d.ts +0 -1
  277. package/locale-data/doi.js +0 -6
  278. package/locale-data/dsb.d.ts +0 -1
  279. package/locale-data/dsb.js +0 -6
  280. package/locale-data/dua.d.ts +0 -1
  281. package/locale-data/dua.js +0 -6
  282. package/locale-data/dyo.d.ts +0 -1
  283. package/locale-data/dyo.js +0 -6
  284. package/locale-data/dz.d.ts +0 -1
  285. package/locale-data/dz.js +0 -6
  286. package/locale-data/ebu.d.ts +0 -1
  287. package/locale-data/ebu.js +0 -6
  288. package/locale-data/ee-TG.d.ts +0 -1
  289. package/locale-data/ee-TG.js +0 -6
  290. package/locale-data/ee.d.ts +0 -1
  291. package/locale-data/ee.js +0 -6
  292. package/locale-data/el-CY.d.ts +0 -1
  293. package/locale-data/el-CY.js +0 -6
  294. package/locale-data/el.d.ts +0 -1
  295. package/locale-data/el.js +0 -6
  296. package/locale-data/en-001.d.ts +0 -1
  297. package/locale-data/en-001.js +0 -6
  298. package/locale-data/en-150.d.ts +0 -1
  299. package/locale-data/en-150.js +0 -6
  300. package/locale-data/en-AE.d.ts +0 -1
  301. package/locale-data/en-AE.js +0 -6
  302. package/locale-data/en-AG.d.ts +0 -1
  303. package/locale-data/en-AG.js +0 -6
  304. package/locale-data/en-AI.d.ts +0 -1
  305. package/locale-data/en-AI.js +0 -6
  306. package/locale-data/en-AS.d.ts +0 -1
  307. package/locale-data/en-AS.js +0 -6
  308. package/locale-data/en-AT.d.ts +0 -1
  309. package/locale-data/en-AT.js +0 -6
  310. package/locale-data/en-AU.d.ts +0 -1
  311. package/locale-data/en-AU.js +0 -6
  312. package/locale-data/en-BB.d.ts +0 -1
  313. package/locale-data/en-BB.js +0 -6
  314. package/locale-data/en-BE.d.ts +0 -1
  315. package/locale-data/en-BE.js +0 -6
  316. package/locale-data/en-BI.d.ts +0 -1
  317. package/locale-data/en-BI.js +0 -6
  318. package/locale-data/en-BM.d.ts +0 -1
  319. package/locale-data/en-BM.js +0 -6
  320. package/locale-data/en-BS.d.ts +0 -1
  321. package/locale-data/en-BS.js +0 -6
  322. package/locale-data/en-BW.d.ts +0 -1
  323. package/locale-data/en-BW.js +0 -6
  324. package/locale-data/en-BZ.d.ts +0 -1
  325. package/locale-data/en-BZ.js +0 -6
  326. package/locale-data/en-CA.d.ts +0 -1
  327. package/locale-data/en-CA.js +0 -6
  328. package/locale-data/en-CC.d.ts +0 -1
  329. package/locale-data/en-CC.js +0 -6
  330. package/locale-data/en-CH.d.ts +0 -1
  331. package/locale-data/en-CH.js +0 -6
  332. package/locale-data/en-CK.d.ts +0 -1
  333. package/locale-data/en-CK.js +0 -6
  334. package/locale-data/en-CM.d.ts +0 -1
  335. package/locale-data/en-CM.js +0 -6
  336. package/locale-data/en-CX.d.ts +0 -1
  337. package/locale-data/en-CX.js +0 -6
  338. package/locale-data/en-CY.d.ts +0 -1
  339. package/locale-data/en-CY.js +0 -6
  340. package/locale-data/en-DE.d.ts +0 -1
  341. package/locale-data/en-DE.js +0 -6
  342. package/locale-data/en-DG.d.ts +0 -1
  343. package/locale-data/en-DG.js +0 -6
  344. package/locale-data/en-DK.d.ts +0 -1
  345. package/locale-data/en-DK.js +0 -6
  346. package/locale-data/en-DM.d.ts +0 -1
  347. package/locale-data/en-DM.js +0 -6
  348. package/locale-data/en-ER.d.ts +0 -1
  349. package/locale-data/en-ER.js +0 -6
  350. package/locale-data/en-FI.d.ts +0 -1
  351. package/locale-data/en-FI.js +0 -6
  352. package/locale-data/en-FJ.d.ts +0 -1
  353. package/locale-data/en-FJ.js +0 -6
  354. package/locale-data/en-FK.d.ts +0 -1
  355. package/locale-data/en-FK.js +0 -6
  356. package/locale-data/en-FM.d.ts +0 -1
  357. package/locale-data/en-FM.js +0 -6
  358. package/locale-data/en-GB.d.ts +0 -1
  359. package/locale-data/en-GB.js +0 -6
  360. package/locale-data/en-GD.d.ts +0 -1
  361. package/locale-data/en-GD.js +0 -6
  362. package/locale-data/en-GG.d.ts +0 -1
  363. package/locale-data/en-GG.js +0 -6
  364. package/locale-data/en-GH.d.ts +0 -1
  365. package/locale-data/en-GH.js +0 -6
  366. package/locale-data/en-GI.d.ts +0 -1
  367. package/locale-data/en-GI.js +0 -6
  368. package/locale-data/en-GM.d.ts +0 -1
  369. package/locale-data/en-GM.js +0 -6
  370. package/locale-data/en-GU.d.ts +0 -1
  371. package/locale-data/en-GU.js +0 -6
  372. package/locale-data/en-GY.d.ts +0 -1
  373. package/locale-data/en-GY.js +0 -6
  374. package/locale-data/en-HK.d.ts +0 -1
  375. package/locale-data/en-HK.js +0 -6
  376. package/locale-data/en-IE.d.ts +0 -1
  377. package/locale-data/en-IE.js +0 -6
  378. package/locale-data/en-IL.d.ts +0 -1
  379. package/locale-data/en-IL.js +0 -6
  380. package/locale-data/en-IM.d.ts +0 -1
  381. package/locale-data/en-IM.js +0 -6
  382. package/locale-data/en-IN.d.ts +0 -1
  383. package/locale-data/en-IN.js +0 -6
  384. package/locale-data/en-IO.d.ts +0 -1
  385. package/locale-data/en-IO.js +0 -6
  386. package/locale-data/en-JE.d.ts +0 -1
  387. package/locale-data/en-JE.js +0 -6
  388. package/locale-data/en-JM.d.ts +0 -1
  389. package/locale-data/en-JM.js +0 -6
  390. package/locale-data/en-KE.d.ts +0 -1
  391. package/locale-data/en-KE.js +0 -6
  392. package/locale-data/en-KI.d.ts +0 -1
  393. package/locale-data/en-KI.js +0 -6
  394. package/locale-data/en-KN.d.ts +0 -1
  395. package/locale-data/en-KN.js +0 -6
  396. package/locale-data/en-KY.d.ts +0 -1
  397. package/locale-data/en-KY.js +0 -6
  398. package/locale-data/en-LC.d.ts +0 -1
  399. package/locale-data/en-LC.js +0 -6
  400. package/locale-data/en-LR.d.ts +0 -1
  401. package/locale-data/en-LR.js +0 -6
  402. package/locale-data/en-LS.d.ts +0 -1
  403. package/locale-data/en-LS.js +0 -6
  404. package/locale-data/en-MG.d.ts +0 -1
  405. package/locale-data/en-MG.js +0 -6
  406. package/locale-data/en-MH.d.ts +0 -1
  407. package/locale-data/en-MH.js +0 -6
  408. package/locale-data/en-MO.d.ts +0 -1
  409. package/locale-data/en-MO.js +0 -6
  410. package/locale-data/en-MP.d.ts +0 -1
  411. package/locale-data/en-MP.js +0 -6
  412. package/locale-data/en-MS.d.ts +0 -1
  413. package/locale-data/en-MS.js +0 -6
  414. package/locale-data/en-MT.d.ts +0 -1
  415. package/locale-data/en-MT.js +0 -6
  416. package/locale-data/en-MU.d.ts +0 -1
  417. package/locale-data/en-MU.js +0 -6
  418. package/locale-data/en-MW.d.ts +0 -1
  419. package/locale-data/en-MW.js +0 -6
  420. package/locale-data/en-MY.d.ts +0 -1
  421. package/locale-data/en-MY.js +0 -6
  422. package/locale-data/en-NA.d.ts +0 -1
  423. package/locale-data/en-NA.js +0 -6
  424. package/locale-data/en-NF.d.ts +0 -1
  425. package/locale-data/en-NF.js +0 -6
  426. package/locale-data/en-NG.d.ts +0 -1
  427. package/locale-data/en-NG.js +0 -6
  428. package/locale-data/en-NL.d.ts +0 -1
  429. package/locale-data/en-NL.js +0 -6
  430. package/locale-data/en-NR.d.ts +0 -1
  431. package/locale-data/en-NR.js +0 -6
  432. package/locale-data/en-NU.d.ts +0 -1
  433. package/locale-data/en-NU.js +0 -6
  434. package/locale-data/en-NZ.d.ts +0 -1
  435. package/locale-data/en-NZ.js +0 -6
  436. package/locale-data/en-PG.d.ts +0 -1
  437. package/locale-data/en-PG.js +0 -6
  438. package/locale-data/en-PH.d.ts +0 -1
  439. package/locale-data/en-PH.js +0 -6
  440. package/locale-data/en-PK.d.ts +0 -1
  441. package/locale-data/en-PK.js +0 -6
  442. package/locale-data/en-PN.d.ts +0 -1
  443. package/locale-data/en-PN.js +0 -6
  444. package/locale-data/en-PR.d.ts +0 -1
  445. package/locale-data/en-PR.js +0 -6
  446. package/locale-data/en-PW.d.ts +0 -1
  447. package/locale-data/en-PW.js +0 -6
  448. package/locale-data/en-RW.d.ts +0 -1
  449. package/locale-data/en-RW.js +0 -6
  450. package/locale-data/en-SB.d.ts +0 -1
  451. package/locale-data/en-SB.js +0 -6
  452. package/locale-data/en-SC.d.ts +0 -1
  453. package/locale-data/en-SC.js +0 -6
  454. package/locale-data/en-SD.d.ts +0 -1
  455. package/locale-data/en-SD.js +0 -6
  456. package/locale-data/en-SE.d.ts +0 -1
  457. package/locale-data/en-SE.js +0 -6
  458. package/locale-data/en-SG.d.ts +0 -1
  459. package/locale-data/en-SG.js +0 -6
  460. package/locale-data/en-SH.d.ts +0 -1
  461. package/locale-data/en-SH.js +0 -6
  462. package/locale-data/en-SI.d.ts +0 -1
  463. package/locale-data/en-SI.js +0 -6
  464. package/locale-data/en-SL.d.ts +0 -1
  465. package/locale-data/en-SL.js +0 -6
  466. package/locale-data/en-SS.d.ts +0 -1
  467. package/locale-data/en-SS.js +0 -6
  468. package/locale-data/en-SX.d.ts +0 -1
  469. package/locale-data/en-SX.js +0 -6
  470. package/locale-data/en-SZ.d.ts +0 -1
  471. package/locale-data/en-SZ.js +0 -6
  472. package/locale-data/en-TC.d.ts +0 -1
  473. package/locale-data/en-TC.js +0 -6
  474. package/locale-data/en-TK.d.ts +0 -1
  475. package/locale-data/en-TK.js +0 -6
  476. package/locale-data/en-TO.d.ts +0 -1
  477. package/locale-data/en-TO.js +0 -6
  478. package/locale-data/en-TT.d.ts +0 -1
  479. package/locale-data/en-TT.js +0 -6
  480. package/locale-data/en-TV.d.ts +0 -1
  481. package/locale-data/en-TV.js +0 -6
  482. package/locale-data/en-TZ.d.ts +0 -1
  483. package/locale-data/en-TZ.js +0 -6
  484. package/locale-data/en-UG.d.ts +0 -1
  485. package/locale-data/en-UG.js +0 -6
  486. package/locale-data/en-UM.d.ts +0 -1
  487. package/locale-data/en-UM.js +0 -6
  488. package/locale-data/en-VC.d.ts +0 -1
  489. package/locale-data/en-VC.js +0 -6
  490. package/locale-data/en-VG.d.ts +0 -1
  491. package/locale-data/en-VG.js +0 -6
  492. package/locale-data/en-VI.d.ts +0 -1
  493. package/locale-data/en-VI.js +0 -6
  494. package/locale-data/en-VU.d.ts +0 -1
  495. package/locale-data/en-VU.js +0 -6
  496. package/locale-data/en-WS.d.ts +0 -1
  497. package/locale-data/en-WS.js +0 -6
  498. package/locale-data/en-ZA.d.ts +0 -1
  499. package/locale-data/en-ZA.js +0 -6
  500. package/locale-data/en-ZM.d.ts +0 -1
  501. package/locale-data/en-ZM.js +0 -6
  502. package/locale-data/en-ZW.d.ts +0 -1
  503. package/locale-data/en-ZW.js +0 -6
  504. package/locale-data/en.d.ts +0 -1
  505. package/locale-data/en.js +0 -6
  506. package/locale-data/eo.d.ts +0 -1
  507. package/locale-data/eo.js +0 -6
  508. package/locale-data/es-419.d.ts +0 -1
  509. package/locale-data/es-419.js +0 -6
  510. package/locale-data/es-AR.d.ts +0 -1
  511. package/locale-data/es-AR.js +0 -6
  512. package/locale-data/es-BO.d.ts +0 -1
  513. package/locale-data/es-BO.js +0 -6
  514. package/locale-data/es-BR.d.ts +0 -1
  515. package/locale-data/es-BR.js +0 -6
  516. package/locale-data/es-BZ.d.ts +0 -1
  517. package/locale-data/es-BZ.js +0 -6
  518. package/locale-data/es-CL.d.ts +0 -1
  519. package/locale-data/es-CL.js +0 -6
  520. package/locale-data/es-CO.d.ts +0 -1
  521. package/locale-data/es-CO.js +0 -6
  522. package/locale-data/es-CR.d.ts +0 -1
  523. package/locale-data/es-CR.js +0 -6
  524. package/locale-data/es-CU.d.ts +0 -1
  525. package/locale-data/es-CU.js +0 -6
  526. package/locale-data/es-DO.d.ts +0 -1
  527. package/locale-data/es-DO.js +0 -6
  528. package/locale-data/es-EA.d.ts +0 -1
  529. package/locale-data/es-EA.js +0 -6
  530. package/locale-data/es-EC.d.ts +0 -1
  531. package/locale-data/es-EC.js +0 -6
  532. package/locale-data/es-GQ.d.ts +0 -1
  533. package/locale-data/es-GQ.js +0 -6
  534. package/locale-data/es-GT.d.ts +0 -1
  535. package/locale-data/es-GT.js +0 -6
  536. package/locale-data/es-HN.d.ts +0 -1
  537. package/locale-data/es-HN.js +0 -6
  538. package/locale-data/es-IC.d.ts +0 -1
  539. package/locale-data/es-IC.js +0 -6
  540. package/locale-data/es-MX.d.ts +0 -1
  541. package/locale-data/es-MX.js +0 -6
  542. package/locale-data/es-NI.d.ts +0 -1
  543. package/locale-data/es-NI.js +0 -6
  544. package/locale-data/es-PA.d.ts +0 -1
  545. package/locale-data/es-PA.js +0 -6
  546. package/locale-data/es-PE.d.ts +0 -1
  547. package/locale-data/es-PE.js +0 -6
  548. package/locale-data/es-PH.d.ts +0 -1
  549. package/locale-data/es-PH.js +0 -6
  550. package/locale-data/es-PR.d.ts +0 -1
  551. package/locale-data/es-PR.js +0 -6
  552. package/locale-data/es-PY.d.ts +0 -1
  553. package/locale-data/es-PY.js +0 -6
  554. package/locale-data/es-SV.d.ts +0 -1
  555. package/locale-data/es-SV.js +0 -6
  556. package/locale-data/es-US.d.ts +0 -1
  557. package/locale-data/es-US.js +0 -6
  558. package/locale-data/es-UY.d.ts +0 -1
  559. package/locale-data/es-UY.js +0 -6
  560. package/locale-data/es-VE.d.ts +0 -1
  561. package/locale-data/es-VE.js +0 -6
  562. package/locale-data/es.d.ts +0 -1
  563. package/locale-data/es.js +0 -6
  564. package/locale-data/et.d.ts +0 -1
  565. package/locale-data/et.js +0 -6
  566. package/locale-data/eu.d.ts +0 -1
  567. package/locale-data/eu.js +0 -6
  568. package/locale-data/ewo.d.ts +0 -1
  569. package/locale-data/ewo.js +0 -6
  570. package/locale-data/fa-AF.d.ts +0 -1
  571. package/locale-data/fa-AF.js +0 -6
  572. package/locale-data/fa.d.ts +0 -1
  573. package/locale-data/fa.js +0 -6
  574. package/locale-data/ff-Adlm-BF.d.ts +0 -1
  575. package/locale-data/ff-Adlm-BF.js +0 -6
  576. package/locale-data/ff-Adlm-CM.d.ts +0 -1
  577. package/locale-data/ff-Adlm-CM.js +0 -6
  578. package/locale-data/ff-Adlm-GH.d.ts +0 -1
  579. package/locale-data/ff-Adlm-GH.js +0 -6
  580. package/locale-data/ff-Adlm-GM.d.ts +0 -1
  581. package/locale-data/ff-Adlm-GM.js +0 -6
  582. package/locale-data/ff-Adlm-GW.d.ts +0 -1
  583. package/locale-data/ff-Adlm-GW.js +0 -6
  584. package/locale-data/ff-Adlm-LR.d.ts +0 -1
  585. package/locale-data/ff-Adlm-LR.js +0 -6
  586. package/locale-data/ff-Adlm-MR.d.ts +0 -1
  587. package/locale-data/ff-Adlm-MR.js +0 -6
  588. package/locale-data/ff-Adlm-NE.d.ts +0 -1
  589. package/locale-data/ff-Adlm-NE.js +0 -6
  590. package/locale-data/ff-Adlm-NG.d.ts +0 -1
  591. package/locale-data/ff-Adlm-NG.js +0 -6
  592. package/locale-data/ff-Adlm-SL.d.ts +0 -1
  593. package/locale-data/ff-Adlm-SL.js +0 -6
  594. package/locale-data/ff-Adlm-SN.d.ts +0 -1
  595. package/locale-data/ff-Adlm-SN.js +0 -6
  596. package/locale-data/ff-Adlm.d.ts +0 -1
  597. package/locale-data/ff-Adlm.js +0 -6
  598. package/locale-data/ff-Latn-BF.d.ts +0 -1
  599. package/locale-data/ff-Latn-BF.js +0 -6
  600. package/locale-data/ff-Latn-CM.d.ts +0 -1
  601. package/locale-data/ff-Latn-CM.js +0 -6
  602. package/locale-data/ff-Latn-GH.d.ts +0 -1
  603. package/locale-data/ff-Latn-GH.js +0 -6
  604. package/locale-data/ff-Latn-GM.d.ts +0 -1
  605. package/locale-data/ff-Latn-GM.js +0 -6
  606. package/locale-data/ff-Latn-GN.d.ts +0 -1
  607. package/locale-data/ff-Latn-GN.js +0 -6
  608. package/locale-data/ff-Latn-GW.d.ts +0 -1
  609. package/locale-data/ff-Latn-GW.js +0 -6
  610. package/locale-data/ff-Latn-LR.d.ts +0 -1
  611. package/locale-data/ff-Latn-LR.js +0 -6
  612. package/locale-data/ff-Latn-MR.d.ts +0 -1
  613. package/locale-data/ff-Latn-MR.js +0 -6
  614. package/locale-data/ff-Latn-NE.d.ts +0 -1
  615. package/locale-data/ff-Latn-NE.js +0 -6
  616. package/locale-data/ff-Latn-NG.d.ts +0 -1
  617. package/locale-data/ff-Latn-NG.js +0 -6
  618. package/locale-data/ff-Latn-SL.d.ts +0 -1
  619. package/locale-data/ff-Latn-SL.js +0 -6
  620. package/locale-data/ff-Latn.d.ts +0 -1
  621. package/locale-data/ff-Latn.js +0 -6
  622. package/locale-data/ff.d.ts +0 -1
  623. package/locale-data/ff.js +0 -6
  624. package/locale-data/fi.d.ts +0 -1
  625. package/locale-data/fi.js +0 -6
  626. package/locale-data/fil.d.ts +0 -1
  627. package/locale-data/fil.js +0 -6
  628. package/locale-data/fo-DK.d.ts +0 -1
  629. package/locale-data/fo-DK.js +0 -6
  630. package/locale-data/fo.d.ts +0 -1
  631. package/locale-data/fo.js +0 -6
  632. package/locale-data/fr-BE.d.ts +0 -1
  633. package/locale-data/fr-BE.js +0 -6
  634. package/locale-data/fr-BF.d.ts +0 -1
  635. package/locale-data/fr-BF.js +0 -6
  636. package/locale-data/fr-BI.d.ts +0 -1
  637. package/locale-data/fr-BI.js +0 -6
  638. package/locale-data/fr-BJ.d.ts +0 -1
  639. package/locale-data/fr-BJ.js +0 -6
  640. package/locale-data/fr-BL.d.ts +0 -1
  641. package/locale-data/fr-BL.js +0 -6
  642. package/locale-data/fr-CA.d.ts +0 -1
  643. package/locale-data/fr-CA.js +0 -6
  644. package/locale-data/fr-CD.d.ts +0 -1
  645. package/locale-data/fr-CD.js +0 -6
  646. package/locale-data/fr-CF.d.ts +0 -1
  647. package/locale-data/fr-CF.js +0 -6
  648. package/locale-data/fr-CG.d.ts +0 -1
  649. package/locale-data/fr-CG.js +0 -6
  650. package/locale-data/fr-CH.d.ts +0 -1
  651. package/locale-data/fr-CH.js +0 -6
  652. package/locale-data/fr-CI.d.ts +0 -1
  653. package/locale-data/fr-CI.js +0 -6
  654. package/locale-data/fr-CM.d.ts +0 -1
  655. package/locale-data/fr-CM.js +0 -6
  656. package/locale-data/fr-DJ.d.ts +0 -1
  657. package/locale-data/fr-DJ.js +0 -6
  658. package/locale-data/fr-DZ.d.ts +0 -1
  659. package/locale-data/fr-DZ.js +0 -6
  660. package/locale-data/fr-GA.d.ts +0 -1
  661. package/locale-data/fr-GA.js +0 -6
  662. package/locale-data/fr-GF.d.ts +0 -1
  663. package/locale-data/fr-GF.js +0 -6
  664. package/locale-data/fr-GN.d.ts +0 -1
  665. package/locale-data/fr-GN.js +0 -6
  666. package/locale-data/fr-GP.d.ts +0 -1
  667. package/locale-data/fr-GP.js +0 -6
  668. package/locale-data/fr-GQ.d.ts +0 -1
  669. package/locale-data/fr-GQ.js +0 -6
  670. package/locale-data/fr-HT.d.ts +0 -1
  671. package/locale-data/fr-HT.js +0 -6
  672. package/locale-data/fr-KM.d.ts +0 -1
  673. package/locale-data/fr-KM.js +0 -6
  674. package/locale-data/fr-LU.d.ts +0 -1
  675. package/locale-data/fr-LU.js +0 -6
  676. package/locale-data/fr-MA.d.ts +0 -1
  677. package/locale-data/fr-MA.js +0 -6
  678. package/locale-data/fr-MC.d.ts +0 -1
  679. package/locale-data/fr-MC.js +0 -6
  680. package/locale-data/fr-MF.d.ts +0 -1
  681. package/locale-data/fr-MF.js +0 -6
  682. package/locale-data/fr-MG.d.ts +0 -1
  683. package/locale-data/fr-MG.js +0 -6
  684. package/locale-data/fr-ML.d.ts +0 -1
  685. package/locale-data/fr-ML.js +0 -6
  686. package/locale-data/fr-MQ.d.ts +0 -1
  687. package/locale-data/fr-MQ.js +0 -6
  688. package/locale-data/fr-MR.d.ts +0 -1
  689. package/locale-data/fr-MR.js +0 -6
  690. package/locale-data/fr-MU.d.ts +0 -1
  691. package/locale-data/fr-MU.js +0 -6
  692. package/locale-data/fr-NC.d.ts +0 -1
  693. package/locale-data/fr-NC.js +0 -6
  694. package/locale-data/fr-NE.d.ts +0 -1
  695. package/locale-data/fr-NE.js +0 -6
  696. package/locale-data/fr-PF.d.ts +0 -1
  697. package/locale-data/fr-PF.js +0 -6
  698. package/locale-data/fr-PM.d.ts +0 -1
  699. package/locale-data/fr-PM.js +0 -6
  700. package/locale-data/fr-RE.d.ts +0 -1
  701. package/locale-data/fr-RE.js +0 -6
  702. package/locale-data/fr-RW.d.ts +0 -1
  703. package/locale-data/fr-RW.js +0 -6
  704. package/locale-data/fr-SC.d.ts +0 -1
  705. package/locale-data/fr-SC.js +0 -6
  706. package/locale-data/fr-SN.d.ts +0 -1
  707. package/locale-data/fr-SN.js +0 -6
  708. package/locale-data/fr-SY.d.ts +0 -1
  709. package/locale-data/fr-SY.js +0 -6
  710. package/locale-data/fr-TD.d.ts +0 -1
  711. package/locale-data/fr-TD.js +0 -6
  712. package/locale-data/fr-TG.d.ts +0 -1
  713. package/locale-data/fr-TG.js +0 -6
  714. package/locale-data/fr-TN.d.ts +0 -1
  715. package/locale-data/fr-TN.js +0 -6
  716. package/locale-data/fr-VU.d.ts +0 -1
  717. package/locale-data/fr-VU.js +0 -6
  718. package/locale-data/fr-WF.d.ts +0 -1
  719. package/locale-data/fr-WF.js +0 -6
  720. package/locale-data/fr-YT.d.ts +0 -1
  721. package/locale-data/fr-YT.js +0 -6
  722. package/locale-data/fr.d.ts +0 -1
  723. package/locale-data/fr.js +0 -6
  724. package/locale-data/fur.d.ts +0 -1
  725. package/locale-data/fur.js +0 -6
  726. package/locale-data/fy.d.ts +0 -1
  727. package/locale-data/fy.js +0 -6
  728. package/locale-data/ga-GB.d.ts +0 -1
  729. package/locale-data/ga-GB.js +0 -6
  730. package/locale-data/ga.d.ts +0 -1
  731. package/locale-data/ga.js +0 -6
  732. package/locale-data/gd.d.ts +0 -1
  733. package/locale-data/gd.js +0 -6
  734. package/locale-data/gl.d.ts +0 -1
  735. package/locale-data/gl.js +0 -6
  736. package/locale-data/gsw-FR.d.ts +0 -1
  737. package/locale-data/gsw-FR.js +0 -6
  738. package/locale-data/gsw-LI.d.ts +0 -1
  739. package/locale-data/gsw-LI.js +0 -6
  740. package/locale-data/gsw.d.ts +0 -1
  741. package/locale-data/gsw.js +0 -6
  742. package/locale-data/gu.d.ts +0 -1
  743. package/locale-data/gu.js +0 -6
  744. package/locale-data/guz.d.ts +0 -1
  745. package/locale-data/guz.js +0 -6
  746. package/locale-data/gv.d.ts +0 -1
  747. package/locale-data/gv.js +0 -6
  748. package/locale-data/ha-GH.d.ts +0 -1
  749. package/locale-data/ha-GH.js +0 -6
  750. package/locale-data/ha-NE.d.ts +0 -1
  751. package/locale-data/ha-NE.js +0 -6
  752. package/locale-data/ha.d.ts +0 -1
  753. package/locale-data/ha.js +0 -6
  754. package/locale-data/haw.d.ts +0 -1
  755. package/locale-data/haw.js +0 -6
  756. package/locale-data/he.d.ts +0 -1
  757. package/locale-data/he.js +0 -6
  758. package/locale-data/hi.d.ts +0 -1
  759. package/locale-data/hi.js +0 -6
  760. package/locale-data/hr-BA.d.ts +0 -1
  761. package/locale-data/hr-BA.js +0 -6
  762. package/locale-data/hr.d.ts +0 -1
  763. package/locale-data/hr.js +0 -6
  764. package/locale-data/hsb.d.ts +0 -1
  765. package/locale-data/hsb.js +0 -6
  766. package/locale-data/hu.d.ts +0 -1
  767. package/locale-data/hu.js +0 -6
  768. package/locale-data/hy.d.ts +0 -1
  769. package/locale-data/hy.js +0 -6
  770. package/locale-data/ia.d.ts +0 -1
  771. package/locale-data/ia.js +0 -6
  772. package/locale-data/id.d.ts +0 -1
  773. package/locale-data/id.js +0 -6
  774. package/locale-data/ig.d.ts +0 -1
  775. package/locale-data/ig.js +0 -6
  776. package/locale-data/ii.d.ts +0 -1
  777. package/locale-data/ii.js +0 -6
  778. package/locale-data/is.d.ts +0 -1
  779. package/locale-data/is.js +0 -6
  780. package/locale-data/it-CH.d.ts +0 -1
  781. package/locale-data/it-CH.js +0 -6
  782. package/locale-data/it-SM.d.ts +0 -1
  783. package/locale-data/it-SM.js +0 -6
  784. package/locale-data/it-VA.d.ts +0 -1
  785. package/locale-data/it-VA.js +0 -6
  786. package/locale-data/it.d.ts +0 -1
  787. package/locale-data/it.js +0 -6
  788. package/locale-data/ja.d.ts +0 -1
  789. package/locale-data/ja.js +0 -6
  790. package/locale-data/jgo.d.ts +0 -1
  791. package/locale-data/jgo.js +0 -6
  792. package/locale-data/jmc.d.ts +0 -1
  793. package/locale-data/jmc.js +0 -6
  794. package/locale-data/jv.d.ts +0 -1
  795. package/locale-data/jv.js +0 -6
  796. package/locale-data/ka.d.ts +0 -1
  797. package/locale-data/ka.js +0 -6
  798. package/locale-data/kab.d.ts +0 -1
  799. package/locale-data/kab.js +0 -6
  800. package/locale-data/kam.d.ts +0 -1
  801. package/locale-data/kam.js +0 -6
  802. package/locale-data/kde.d.ts +0 -1
  803. package/locale-data/kde.js +0 -6
  804. package/locale-data/kea.d.ts +0 -1
  805. package/locale-data/kea.js +0 -6
  806. package/locale-data/kgp.d.ts +0 -1
  807. package/locale-data/kgp.js +0 -6
  808. package/locale-data/khq.d.ts +0 -1
  809. package/locale-data/khq.js +0 -6
  810. package/locale-data/ki.d.ts +0 -1
  811. package/locale-data/ki.js +0 -6
  812. package/locale-data/kk.d.ts +0 -1
  813. package/locale-data/kk.js +0 -6
  814. package/locale-data/kkj.d.ts +0 -1
  815. package/locale-data/kkj.js +0 -6
  816. package/locale-data/kl.d.ts +0 -1
  817. package/locale-data/kl.js +0 -6
  818. package/locale-data/kln.d.ts +0 -1
  819. package/locale-data/kln.js +0 -6
  820. package/locale-data/km.d.ts +0 -1
  821. package/locale-data/km.js +0 -6
  822. package/locale-data/kn.d.ts +0 -1
  823. package/locale-data/kn.js +0 -6
  824. package/locale-data/ko-KP.d.ts +0 -1
  825. package/locale-data/ko-KP.js +0 -6
  826. package/locale-data/ko.d.ts +0 -1
  827. package/locale-data/ko.js +0 -6
  828. package/locale-data/kok.d.ts +0 -1
  829. package/locale-data/kok.js +0 -6
  830. package/locale-data/ks-Arab.d.ts +0 -1
  831. package/locale-data/ks-Arab.js +0 -6
  832. package/locale-data/ks.d.ts +0 -1
  833. package/locale-data/ks.js +0 -6
  834. package/locale-data/ksb.d.ts +0 -1
  835. package/locale-data/ksb.js +0 -6
  836. package/locale-data/ksf.d.ts +0 -1
  837. package/locale-data/ksf.js +0 -6
  838. package/locale-data/ksh.d.ts +0 -1
  839. package/locale-data/ksh.js +0 -6
  840. package/locale-data/ku.d.ts +0 -1
  841. package/locale-data/ku.js +0 -6
  842. package/locale-data/kw.d.ts +0 -1
  843. package/locale-data/kw.js +0 -6
  844. package/locale-data/ky.d.ts +0 -1
  845. package/locale-data/ky.js +0 -6
  846. package/locale-data/lag.d.ts +0 -1
  847. package/locale-data/lag.js +0 -6
  848. package/locale-data/lb.d.ts +0 -1
  849. package/locale-data/lb.js +0 -6
  850. package/locale-data/lg.d.ts +0 -1
  851. package/locale-data/lg.js +0 -6
  852. package/locale-data/lkt.d.ts +0 -1
  853. package/locale-data/lkt.js +0 -6
  854. package/locale-data/ln-AO.d.ts +0 -1
  855. package/locale-data/ln-AO.js +0 -6
  856. package/locale-data/ln-CF.d.ts +0 -1
  857. package/locale-data/ln-CF.js +0 -6
  858. package/locale-data/ln-CG.d.ts +0 -1
  859. package/locale-data/ln-CG.js +0 -6
  860. package/locale-data/ln.d.ts +0 -1
  861. package/locale-data/ln.js +0 -6
  862. package/locale-data/lo.d.ts +0 -1
  863. package/locale-data/lo.js +0 -6
  864. package/locale-data/lrc-IQ.d.ts +0 -1
  865. package/locale-data/lrc-IQ.js +0 -6
  866. package/locale-data/lrc.d.ts +0 -1
  867. package/locale-data/lrc.js +0 -6
  868. package/locale-data/lt.d.ts +0 -1
  869. package/locale-data/lt.js +0 -6
  870. package/locale-data/lu.d.ts +0 -1
  871. package/locale-data/lu.js +0 -6
  872. package/locale-data/luo.d.ts +0 -1
  873. package/locale-data/luo.js +0 -6
  874. package/locale-data/luy.d.ts +0 -1
  875. package/locale-data/luy.js +0 -6
  876. package/locale-data/lv.d.ts +0 -1
  877. package/locale-data/lv.js +0 -6
  878. package/locale-data/mai.d.ts +0 -1
  879. package/locale-data/mai.js +0 -6
  880. package/locale-data/mas-TZ.d.ts +0 -1
  881. package/locale-data/mas-TZ.js +0 -6
  882. package/locale-data/mas.d.ts +0 -1
  883. package/locale-data/mas.js +0 -6
  884. package/locale-data/mer.d.ts +0 -1
  885. package/locale-data/mer.js +0 -6
  886. package/locale-data/mfe.d.ts +0 -1
  887. package/locale-data/mfe.js +0 -6
  888. package/locale-data/mg.d.ts +0 -1
  889. package/locale-data/mg.js +0 -6
  890. package/locale-data/mgh.d.ts +0 -1
  891. package/locale-data/mgh.js +0 -6
  892. package/locale-data/mgo.d.ts +0 -1
  893. package/locale-data/mgo.js +0 -6
  894. package/locale-data/mi.d.ts +0 -1
  895. package/locale-data/mi.js +0 -6
  896. package/locale-data/mk.d.ts +0 -1
  897. package/locale-data/mk.js +0 -6
  898. package/locale-data/ml.d.ts +0 -1
  899. package/locale-data/ml.js +0 -6
  900. package/locale-data/mn.d.ts +0 -1
  901. package/locale-data/mn.js +0 -6
  902. package/locale-data/mni-Beng.d.ts +0 -1
  903. package/locale-data/mni-Beng.js +0 -6
  904. package/locale-data/mni.d.ts +0 -1
  905. package/locale-data/mni.js +0 -6
  906. package/locale-data/mr.d.ts +0 -1
  907. package/locale-data/mr.js +0 -6
  908. package/locale-data/ms-BN.d.ts +0 -1
  909. package/locale-data/ms-BN.js +0 -6
  910. package/locale-data/ms-ID.d.ts +0 -1
  911. package/locale-data/ms-ID.js +0 -6
  912. package/locale-data/ms-SG.d.ts +0 -1
  913. package/locale-data/ms-SG.js +0 -6
  914. package/locale-data/ms.d.ts +0 -1
  915. package/locale-data/ms.js +0 -6
  916. package/locale-data/mt.d.ts +0 -1
  917. package/locale-data/mt.js +0 -6
  918. package/locale-data/mua.d.ts +0 -1
  919. package/locale-data/mua.js +0 -6
  920. package/locale-data/my.d.ts +0 -1
  921. package/locale-data/my.js +0 -6
  922. package/locale-data/mzn.d.ts +0 -1
  923. package/locale-data/mzn.js +0 -6
  924. package/locale-data/naq.d.ts +0 -1
  925. package/locale-data/naq.js +0 -6
  926. package/locale-data/nb-SJ.d.ts +0 -1
  927. package/locale-data/nb-SJ.js +0 -6
  928. package/locale-data/nb.d.ts +0 -1
  929. package/locale-data/nb.js +0 -6
  930. package/locale-data/nd.d.ts +0 -1
  931. package/locale-data/nd.js +0 -6
  932. package/locale-data/nds-NL.d.ts +0 -1
  933. package/locale-data/nds-NL.js +0 -6
  934. package/locale-data/nds.d.ts +0 -1
  935. package/locale-data/nds.js +0 -6
  936. package/locale-data/ne-IN.d.ts +0 -1
  937. package/locale-data/ne-IN.js +0 -6
  938. package/locale-data/ne.d.ts +0 -1
  939. package/locale-data/ne.js +0 -6
  940. package/locale-data/nl-AW.d.ts +0 -1
  941. package/locale-data/nl-AW.js +0 -6
  942. package/locale-data/nl-BE.d.ts +0 -1
  943. package/locale-data/nl-BE.js +0 -6
  944. package/locale-data/nl-BQ.d.ts +0 -1
  945. package/locale-data/nl-BQ.js +0 -6
  946. package/locale-data/nl-CW.d.ts +0 -1
  947. package/locale-data/nl-CW.js +0 -6
  948. package/locale-data/nl-SR.d.ts +0 -1
  949. package/locale-data/nl-SR.js +0 -6
  950. package/locale-data/nl-SX.d.ts +0 -1
  951. package/locale-data/nl-SX.js +0 -6
  952. package/locale-data/nl.d.ts +0 -1
  953. package/locale-data/nl.js +0 -6
  954. package/locale-data/nmg.d.ts +0 -1
  955. package/locale-data/nmg.js +0 -6
  956. package/locale-data/nn.d.ts +0 -1
  957. package/locale-data/nn.js +0 -6
  958. package/locale-data/nnh.d.ts +0 -1
  959. package/locale-data/nnh.js +0 -6
  960. package/locale-data/no.d.ts +0 -1
  961. package/locale-data/no.js +0 -6
  962. package/locale-data/nus.d.ts +0 -1
  963. package/locale-data/nus.js +0 -6
  964. package/locale-data/nyn.d.ts +0 -1
  965. package/locale-data/nyn.js +0 -6
  966. package/locale-data/om-KE.d.ts +0 -1
  967. package/locale-data/om-KE.js +0 -6
  968. package/locale-data/om.d.ts +0 -1
  969. package/locale-data/om.js +0 -6
  970. package/locale-data/or.d.ts +0 -1
  971. package/locale-data/or.js +0 -6
  972. package/locale-data/os-RU.d.ts +0 -1
  973. package/locale-data/os-RU.js +0 -6
  974. package/locale-data/os.d.ts +0 -1
  975. package/locale-data/os.js +0 -6
  976. package/locale-data/pa-Arab.d.ts +0 -1
  977. package/locale-data/pa-Arab.js +0 -6
  978. package/locale-data/pa-Guru.d.ts +0 -1
  979. package/locale-data/pa-Guru.js +0 -6
  980. package/locale-data/pa.d.ts +0 -1
  981. package/locale-data/pa.js +0 -6
  982. package/locale-data/pcm.d.ts +0 -1
  983. package/locale-data/pcm.js +0 -6
  984. package/locale-data/pl.d.ts +0 -1
  985. package/locale-data/pl.js +0 -6
  986. package/locale-data/ps-PK.d.ts +0 -1
  987. package/locale-data/ps-PK.js +0 -6
  988. package/locale-data/ps.d.ts +0 -1
  989. package/locale-data/ps.js +0 -6
  990. package/locale-data/pt-AO.d.ts +0 -1
  991. package/locale-data/pt-AO.js +0 -6
  992. package/locale-data/pt-CH.d.ts +0 -1
  993. package/locale-data/pt-CH.js +0 -6
  994. package/locale-data/pt-CV.d.ts +0 -1
  995. package/locale-data/pt-CV.js +0 -6
  996. package/locale-data/pt-GQ.d.ts +0 -1
  997. package/locale-data/pt-GQ.js +0 -6
  998. package/locale-data/pt-GW.d.ts +0 -1
  999. package/locale-data/pt-GW.js +0 -6
  1000. package/locale-data/pt-LU.d.ts +0 -1
  1001. package/locale-data/pt-LU.js +0 -6
  1002. package/locale-data/pt-MO.d.ts +0 -1
  1003. package/locale-data/pt-MO.js +0 -6
  1004. package/locale-data/pt-MZ.d.ts +0 -1
  1005. package/locale-data/pt-MZ.js +0 -6
  1006. package/locale-data/pt-PT.d.ts +0 -1
  1007. package/locale-data/pt-PT.js +0 -6
  1008. package/locale-data/pt-ST.d.ts +0 -1
  1009. package/locale-data/pt-ST.js +0 -6
  1010. package/locale-data/pt-TL.d.ts +0 -1
  1011. package/locale-data/pt-TL.js +0 -6
  1012. package/locale-data/pt.d.ts +0 -1
  1013. package/locale-data/pt.js +0 -6
  1014. package/locale-data/qu-BO.d.ts +0 -1
  1015. package/locale-data/qu-BO.js +0 -6
  1016. package/locale-data/qu-EC.d.ts +0 -1
  1017. package/locale-data/qu-EC.js +0 -6
  1018. package/locale-data/qu.d.ts +0 -1
  1019. package/locale-data/qu.js +0 -6
  1020. package/locale-data/rm.d.ts +0 -1
  1021. package/locale-data/rm.js +0 -6
  1022. package/locale-data/rn.d.ts +0 -1
  1023. package/locale-data/rn.js +0 -6
  1024. package/locale-data/ro-MD.d.ts +0 -1
  1025. package/locale-data/ro-MD.js +0 -6
  1026. package/locale-data/ro.d.ts +0 -1
  1027. package/locale-data/ro.js +0 -6
  1028. package/locale-data/rof.d.ts +0 -1
  1029. package/locale-data/rof.js +0 -6
  1030. package/locale-data/ru-BY.d.ts +0 -1
  1031. package/locale-data/ru-BY.js +0 -6
  1032. package/locale-data/ru-KG.d.ts +0 -1
  1033. package/locale-data/ru-KG.js +0 -6
  1034. package/locale-data/ru-KZ.d.ts +0 -1
  1035. package/locale-data/ru-KZ.js +0 -6
  1036. package/locale-data/ru-MD.d.ts +0 -1
  1037. package/locale-data/ru-MD.js +0 -6
  1038. package/locale-data/ru-UA.d.ts +0 -1
  1039. package/locale-data/ru-UA.js +0 -6
  1040. package/locale-data/ru.d.ts +0 -1
  1041. package/locale-data/ru.js +0 -6
  1042. package/locale-data/rw.d.ts +0 -1
  1043. package/locale-data/rw.js +0 -6
  1044. package/locale-data/rwk.d.ts +0 -1
  1045. package/locale-data/rwk.js +0 -6
  1046. package/locale-data/sa.d.ts +0 -1
  1047. package/locale-data/sa.js +0 -6
  1048. package/locale-data/sah.d.ts +0 -1
  1049. package/locale-data/sah.js +0 -6
  1050. package/locale-data/saq.d.ts +0 -1
  1051. package/locale-data/saq.js +0 -6
  1052. package/locale-data/sat-Olck.d.ts +0 -1
  1053. package/locale-data/sat-Olck.js +0 -6
  1054. package/locale-data/sat.d.ts +0 -1
  1055. package/locale-data/sat.js +0 -6
  1056. package/locale-data/sbp.d.ts +0 -1
  1057. package/locale-data/sbp.js +0 -6
  1058. package/locale-data/sc.d.ts +0 -1
  1059. package/locale-data/sc.js +0 -6
  1060. package/locale-data/sd-Arab.d.ts +0 -1
  1061. package/locale-data/sd-Arab.js +0 -6
  1062. package/locale-data/sd-Deva.d.ts +0 -1
  1063. package/locale-data/sd-Deva.js +0 -6
  1064. package/locale-data/sd.d.ts +0 -1
  1065. package/locale-data/sd.js +0 -6
  1066. package/locale-data/se-FI.d.ts +0 -1
  1067. package/locale-data/se-FI.js +0 -6
  1068. package/locale-data/se-SE.d.ts +0 -1
  1069. package/locale-data/se-SE.js +0 -6
  1070. package/locale-data/se.d.ts +0 -1
  1071. package/locale-data/se.js +0 -6
  1072. package/locale-data/seh.d.ts +0 -1
  1073. package/locale-data/seh.js +0 -6
  1074. package/locale-data/ses.d.ts +0 -1
  1075. package/locale-data/ses.js +0 -6
  1076. package/locale-data/sg.d.ts +0 -1
  1077. package/locale-data/sg.js +0 -6
  1078. package/locale-data/shi-Latn.d.ts +0 -1
  1079. package/locale-data/shi-Latn.js +0 -6
  1080. package/locale-data/shi-Tfng.d.ts +0 -1
  1081. package/locale-data/shi-Tfng.js +0 -6
  1082. package/locale-data/shi.d.ts +0 -1
  1083. package/locale-data/shi.js +0 -6
  1084. package/locale-data/si.d.ts +0 -1
  1085. package/locale-data/si.js +0 -6
  1086. package/locale-data/sk.d.ts +0 -1
  1087. package/locale-data/sk.js +0 -6
  1088. package/locale-data/sl.d.ts +0 -1
  1089. package/locale-data/sl.js +0 -6
  1090. package/locale-data/smn.d.ts +0 -1
  1091. package/locale-data/smn.js +0 -6
  1092. package/locale-data/sn.d.ts +0 -1
  1093. package/locale-data/sn.js +0 -6
  1094. package/locale-data/so-DJ.d.ts +0 -1
  1095. package/locale-data/so-DJ.js +0 -6
  1096. package/locale-data/so-ET.d.ts +0 -1
  1097. package/locale-data/so-ET.js +0 -6
  1098. package/locale-data/so-KE.d.ts +0 -1
  1099. package/locale-data/so-KE.js +0 -6
  1100. package/locale-data/so.d.ts +0 -1
  1101. package/locale-data/so.js +0 -6
  1102. package/locale-data/sq-MK.d.ts +0 -1
  1103. package/locale-data/sq-MK.js +0 -6
  1104. package/locale-data/sq-XK.d.ts +0 -1
  1105. package/locale-data/sq-XK.js +0 -6
  1106. package/locale-data/sq.d.ts +0 -1
  1107. package/locale-data/sq.js +0 -6
  1108. package/locale-data/sr-Cyrl-BA.d.ts +0 -1
  1109. package/locale-data/sr-Cyrl-BA.js +0 -6
  1110. package/locale-data/sr-Cyrl-ME.d.ts +0 -1
  1111. package/locale-data/sr-Cyrl-ME.js +0 -6
  1112. package/locale-data/sr-Cyrl-XK.d.ts +0 -1
  1113. package/locale-data/sr-Cyrl-XK.js +0 -6
  1114. package/locale-data/sr-Cyrl.d.ts +0 -1
  1115. package/locale-data/sr-Cyrl.js +0 -6
  1116. package/locale-data/sr-Latn-BA.d.ts +0 -1
  1117. package/locale-data/sr-Latn-BA.js +0 -6
  1118. package/locale-data/sr-Latn-ME.d.ts +0 -1
  1119. package/locale-data/sr-Latn-ME.js +0 -6
  1120. package/locale-data/sr-Latn-XK.d.ts +0 -1
  1121. package/locale-data/sr-Latn-XK.js +0 -6
  1122. package/locale-data/sr-Latn.d.ts +0 -1
  1123. package/locale-data/sr-Latn.js +0 -6
  1124. package/locale-data/sr.d.ts +0 -1
  1125. package/locale-data/sr.js +0 -6
  1126. package/locale-data/su-Latn.d.ts +0 -1
  1127. package/locale-data/su-Latn.js +0 -6
  1128. package/locale-data/su.d.ts +0 -1
  1129. package/locale-data/su.js +0 -6
  1130. package/locale-data/sv-AX.d.ts +0 -1
  1131. package/locale-data/sv-AX.js +0 -6
  1132. package/locale-data/sv-FI.d.ts +0 -1
  1133. package/locale-data/sv-FI.js +0 -6
  1134. package/locale-data/sv.d.ts +0 -1
  1135. package/locale-data/sv.js +0 -6
  1136. package/locale-data/sw-CD.d.ts +0 -1
  1137. package/locale-data/sw-CD.js +0 -6
  1138. package/locale-data/sw-KE.d.ts +0 -1
  1139. package/locale-data/sw-KE.js +0 -6
  1140. package/locale-data/sw-UG.d.ts +0 -1
  1141. package/locale-data/sw-UG.js +0 -6
  1142. package/locale-data/sw.d.ts +0 -1
  1143. package/locale-data/sw.js +0 -6
  1144. package/locale-data/ta-LK.d.ts +0 -1
  1145. package/locale-data/ta-LK.js +0 -6
  1146. package/locale-data/ta-MY.d.ts +0 -1
  1147. package/locale-data/ta-MY.js +0 -6
  1148. package/locale-data/ta-SG.d.ts +0 -1
  1149. package/locale-data/ta-SG.js +0 -6
  1150. package/locale-data/ta.d.ts +0 -1
  1151. package/locale-data/ta.js +0 -6
  1152. package/locale-data/te.d.ts +0 -1
  1153. package/locale-data/te.js +0 -6
  1154. package/locale-data/teo-KE.d.ts +0 -1
  1155. package/locale-data/teo-KE.js +0 -6
  1156. package/locale-data/teo.d.ts +0 -1
  1157. package/locale-data/teo.js +0 -6
  1158. package/locale-data/tg.d.ts +0 -1
  1159. package/locale-data/tg.js +0 -6
  1160. package/locale-data/th.d.ts +0 -1
  1161. package/locale-data/th.js +0 -6
  1162. package/locale-data/ti-ER.d.ts +0 -1
  1163. package/locale-data/ti-ER.js +0 -6
  1164. package/locale-data/ti.d.ts +0 -1
  1165. package/locale-data/ti.js +0 -6
  1166. package/locale-data/tk.d.ts +0 -1
  1167. package/locale-data/tk.js +0 -6
  1168. package/locale-data/to.d.ts +0 -1
  1169. package/locale-data/to.js +0 -6
  1170. package/locale-data/tr-CY.d.ts +0 -1
  1171. package/locale-data/tr-CY.js +0 -6
  1172. package/locale-data/tr.d.ts +0 -1
  1173. package/locale-data/tr.js +0 -6
  1174. package/locale-data/tt.d.ts +0 -1
  1175. package/locale-data/tt.js +0 -6
  1176. package/locale-data/twq.d.ts +0 -1
  1177. package/locale-data/twq.js +0 -6
  1178. package/locale-data/tzm.d.ts +0 -1
  1179. package/locale-data/tzm.js +0 -6
  1180. package/locale-data/ug.d.ts +0 -1
  1181. package/locale-data/ug.js +0 -6
  1182. package/locale-data/uk.d.ts +0 -1
  1183. package/locale-data/uk.js +0 -6
  1184. package/locale-data/und.d.ts +0 -1
  1185. package/locale-data/und.js +0 -6
  1186. package/locale-data/ur-IN.d.ts +0 -1
  1187. package/locale-data/ur-IN.js +0 -6
  1188. package/locale-data/ur.d.ts +0 -1
  1189. package/locale-data/ur.js +0 -6
  1190. package/locale-data/uz-Arab.d.ts +0 -1
  1191. package/locale-data/uz-Arab.js +0 -6
  1192. package/locale-data/uz-Cyrl.d.ts +0 -1
  1193. package/locale-data/uz-Cyrl.js +0 -6
  1194. package/locale-data/uz-Latn.d.ts +0 -1
  1195. package/locale-data/uz-Latn.js +0 -6
  1196. package/locale-data/uz.d.ts +0 -1
  1197. package/locale-data/uz.js +0 -6
  1198. package/locale-data/vai-Latn.d.ts +0 -1
  1199. package/locale-data/vai-Latn.js +0 -6
  1200. package/locale-data/vai-Vaii.d.ts +0 -1
  1201. package/locale-data/vai-Vaii.js +0 -6
  1202. package/locale-data/vai.d.ts +0 -1
  1203. package/locale-data/vai.js +0 -6
  1204. package/locale-data/vi.d.ts +0 -1
  1205. package/locale-data/vi.js +0 -6
  1206. package/locale-data/vun.d.ts +0 -1
  1207. package/locale-data/vun.js +0 -6
  1208. package/locale-data/wae.d.ts +0 -1
  1209. package/locale-data/wae.js +0 -6
  1210. package/locale-data/wo.d.ts +0 -1
  1211. package/locale-data/wo.js +0 -6
  1212. package/locale-data/xh.d.ts +0 -1
  1213. package/locale-data/xh.js +0 -6
  1214. package/locale-data/xog.d.ts +0 -1
  1215. package/locale-data/xog.js +0 -6
  1216. package/locale-data/yav.d.ts +0 -1
  1217. package/locale-data/yav.js +0 -6
  1218. package/locale-data/yi.d.ts +0 -1
  1219. package/locale-data/yi.js +0 -6
  1220. package/locale-data/yo-BJ.d.ts +0 -1
  1221. package/locale-data/yo-BJ.js +0 -6
  1222. package/locale-data/yo.d.ts +0 -1
  1223. package/locale-data/yo.js +0 -6
  1224. package/locale-data/yrl-CO.d.ts +0 -1
  1225. package/locale-data/yrl-CO.js +0 -6
  1226. package/locale-data/yrl-VE.d.ts +0 -1
  1227. package/locale-data/yrl-VE.js +0 -6
  1228. package/locale-data/yrl.d.ts +0 -1
  1229. package/locale-data/yrl.js +0 -6
  1230. package/locale-data/yue-Hans.d.ts +0 -1
  1231. package/locale-data/yue-Hans.js +0 -6
  1232. package/locale-data/yue-Hant.d.ts +0 -1
  1233. package/locale-data/yue-Hant.js +0 -6
  1234. package/locale-data/yue.d.ts +0 -1
  1235. package/locale-data/yue.js +0 -6
  1236. package/locale-data/zgh.d.ts +0 -1
  1237. package/locale-data/zgh.js +0 -6
  1238. package/locale-data/zh-Hans-HK.d.ts +0 -1
  1239. package/locale-data/zh-Hans-HK.js +0 -6
  1240. package/locale-data/zh-Hans-MO.d.ts +0 -1
  1241. package/locale-data/zh-Hans-MO.js +0 -6
  1242. package/locale-data/zh-Hans-SG.d.ts +0 -1
  1243. package/locale-data/zh-Hans-SG.js +0 -6
  1244. package/locale-data/zh-Hans.d.ts +0 -1
  1245. package/locale-data/zh-Hans.js +0 -6
  1246. package/locale-data/zh-Hant-HK.d.ts +0 -1
  1247. package/locale-data/zh-Hant-HK.js +0 -6
  1248. package/locale-data/zh-Hant-MO.d.ts +0 -1
  1249. package/locale-data/zh-Hant-MO.js +0 -6
  1250. package/locale-data/zh-Hant.d.ts +0 -1
  1251. package/locale-data/zh-Hant.js +0 -6
  1252. package/locale-data/zh.d.ts +0 -1
  1253. package/locale-data/zh.js +0 -6
  1254. package/locale-data/zu.d.ts +0 -1
  1255. package/locale-data/zu.js +0 -6
  1256. package/polyfill-force.d.ts +0 -2
  1257. package/polyfill-force.d.ts.map +0 -1
  1258. package/polyfill-force.js +0 -11
  1259. package/polyfill.d.ts +0 -2
  1260. package/polyfill.d.ts.map +0 -1
  1261. package/polyfill.iife.js +0 -2787
  1262. package/polyfill.js +0 -14
  1263. package/should-polyfill.d.ts +0 -2
  1264. package/should-polyfill.d.ts.map +0 -1
  1265. package/should-polyfill.js +0 -57
  1266. package/src/core.d.ts +0 -7
  1267. package/src/core.d.ts.map +0 -1
  1268. package/src/core.js +0 -231
  1269. package/src/currency-digits.generated.d.ts +0 -2
  1270. package/src/currency-digits.generated.d.ts.map +0 -1
  1271. package/src/currency-digits.generated.js +0 -4
  1272. package/src/get_internal_slots.d.ts +0 -3
  1273. package/src/get_internal_slots.d.ts.map +0 -1
  1274. package/src/get_internal_slots.js +0 -13
  1275. package/src/numbering-systems.generated.d.ts +0 -2
  1276. package/src/numbering-systems.generated.d.ts.map +0 -1
  1277. package/src/numbering-systems.generated.js +0 -4
  1278. package/src/to_locale_string.d.ts +0 -7
  1279. package/src/to_locale_string.d.ts.map +0 -1
  1280. package/src/to_locale_string.js +0 -14
  1281. package/src/types.d.ts +0 -19
  1282. package/src/types.d.ts.map +0 -1
  1283. package/src/types.js +0 -2
  1284. package/supported-locales.d.ts +0 -2
  1285. package/supported-locales.d.ts.map +0 -1
  1286. package/supported-locales.js +0 -5
@@ -1 +0,0 @@
1
- export {}
package/locale-data/ca.js DELETED
@@ -1,6 +0,0 @@
1
- /* @generated */
2
- // prettier-ignore
3
- if (Intl.NumberFormat && typeof Intl.NumberFormat.__addLocaleData === 'function') {
4
- Intl.NumberFormat.__addLocaleData({"data":{"units":{"simple":{"degree":{"long":{"other":"{0} graus","one":"{0} grau"},"short":{"other":"{0}ยฐ"},"narrow":{"other":"{0}ยฐ"},"perUnit":{}},"hectare":{"long":{"other":"{0} hectร rees","one":"{0} hectร rea"},"short":{"other":"{0} ha"},"narrow":{"other":"{0} ha"},"perUnit":{}},"acre":{"long":{"other":"{0} acres","one":"{0} acre"},"short":{"other":"{0} ac"},"narrow":{"other":"{0} ac"},"perUnit":{}},"percent":{"long":{"other":"{0} per cent"},"short":{"other":"{0} %"},"narrow":{"other":"{0} %"},"perUnit":{}},"liter-per-kilometer":{"long":{"other":"{0} litres per quilรฒmetre","one":"{0} litre per quilรฒmetre"},"short":{"other":"{0} l/km"},"narrow":{"other":"{0} l/km"},"perUnit":{}},"mile-per-gallon":{"long":{"other":"{0} milles per galรณ","one":"{0} milla per galรณ"},"short":{"other":"{0} mi/gal"},"narrow":{"other":"{0} mi/gal"},"perUnit":{}},"petabyte":{"long":{"other":"{0} petabytes","one":"{0} petabyte"},"short":{"other":"{0} PB"},"narrow":{"other":"{0} PB"},"perUnit":{}},"terabyte":{"long":{"other":"{0} terabytes","one":"{0} terabyte"},"short":{"other":"{0} TB"},"narrow":{"other":"{0} TB"},"perUnit":{}},"terabit":{"long":{"other":"{0} terabits","one":"{0} terabit"},"short":{"other":"{0} Tb"},"narrow":{"other":"{0} Tb"},"perUnit":{}},"gigabyte":{"long":{"other":"{0} gigabytes","one":"{0} gigabyte"},"short":{"other":"{0} GB"},"narrow":{"other":"{0} GB"},"perUnit":{}},"gigabit":{"long":{"other":"{0} gigabits","one":"{0} gigabit"},"short":{"other":"{0} Gb"},"narrow":{"other":"{0} Gb"},"perUnit":{}},"megabyte":{"long":{"other":"{0} megabytes","one":"{0} megabyte"},"short":{"other":"{0} MB"},"narrow":{"other":"{0} MB"},"perUnit":{}},"megabit":{"long":{"other":"{0} megabits","one":"{0} megabit"},"short":{"other":"{0} Mbit"},"narrow":{"other":"{0} Mbit"},"perUnit":{}},"kilobyte":{"long":{"other":"{0} quilobytes","one":"{0} quilobyte"},"short":{"other":"{0} kB"},"narrow":{"other":"{0} kB"},"perUnit":{}},"kilobit":{"long":{"other":"{0} quilobits","one":"{0} quilobit"},"short":{"other":"{0} kb"},"narrow":{"other":"{0} kb"},"perUnit":{}},"byte":{"long":{"other":"{0} bytes","one":"{0} byte"},"short":{"other":"{0} B"},"narrow":{"other":"{0} B"},"perUnit":{}},"bit":{"long":{"other":"{0} bits","one":"{0} bit"},"short":{"other":"{0} bits","one":"{0} bit"},"narrow":{"other":"{0} bits","one":"{0} bit"},"perUnit":{}},"year":{"long":{"other":"{0} anys","one":"{0} any"},"short":{"other":"{0} anys","one":"{0} any"},"narrow":{"other":"{0} anys","one":"{0} any"},"perUnit":{"long":"{0} per any","short":"{0}/a","narrow":"{0}/any"}},"month":{"long":{"other":"{0} mesos","one":"{0} mes"},"short":{"other":"{0} mesos","one":"{0} mes"},"narrow":{"other":"{0} m"},"perUnit":{"long":"{0} per mes","short":"{0}/m","narrow":"{0}/m"}},"week":{"long":{"other":"{0} setmanes","one":"{0} setmana"},"short":{"other":"{0} setm."},"narrow":{"other":"{0} setm."},"perUnit":{"long":"{0} per setmana","short":"{0}/setm.","narrow":"{0}/setm."}},"day":{"long":{"other":"{0} dies","one":"{0} dia"},"short":{"other":"{0} dies","one":"{0} dia"},"narrow":{"other":"{0} d"},"perUnit":{"long":"{0} per dia","short":"{0}/d","narrow":"{0}/d"}},"hour":{"long":{"other":"{0} hores","one":"{0} hora"},"short":{"other":"{0} h"},"narrow":{"other":"{0} h"},"perUnit":{"long":"{0} per hora","short":"{0}/h","narrow":"{0}/h"}},"minute":{"long":{"other":"{0} minuts","one":"{0} minut"},"short":{"other":"{0} min"},"narrow":{"other":"{0} min"},"perUnit":{"long":"{0} per minut","short":"{0}/min","narrow":"{0}/min"}},"second":{"long":{"other":"{0} segons","one":"{0} segon"},"short":{"other":"{0} s"},"narrow":{"other":"{0} s"},"perUnit":{"long":"{0} per segon","short":"{0}/s","narrow":"{0}/s"}},"millisecond":{"long":{"other":"{0} milยทlisegons","one":"{0} milยทlisegon"},"short":{"other":"{0} ms"},"narrow":{"other":"{0} ms"},"perUnit":{}},"kilometer":{"long":{"other":"{0} quilรฒmetres","one":"{0} quilรฒmetre"},"short":{"other":"{0} km"},"narrow":{"other":"{0} km"},"perUnit":{"long":"{0} per quilรฒmetre","short":"{0}/km","narrow":"{0}/km"}},"meter":{"long":{"other":"{0} metres","one":"{0} metre"},"short":{"other":"{0} m"},"narrow":{"other":"{0} m"},"perUnit":{"long":"{0} per metre","short":"{0}/m","narrow":"{0}/m"}},"centimeter":{"long":{"other":"{0} centรญmetres","one":"{0} centรญmetre"},"short":{"other":"{0} cm"},"narrow":{"other":"{0} cm"},"perUnit":{"long":"{0} per centรญmetre","short":"{0}/cm","narrow":"{0}/cm"}},"millimeter":{"long":{"other":"{0} milยทlรญmetres","one":"{0} milยทlรญmetre"},"short":{"other":"{0} mm"},"narrow":{"other":"{0} mm"},"perUnit":{}},"mile":{"long":{"other":"{0} milles","one":"{0} milla"},"short":{"other":"{0} mi"},"narrow":{"other":"{0} mi"},"perUnit":{}},"yard":{"long":{"other":"{0} iardes","one":"{0} iarda"},"short":{"other":"{0} yd"},"narrow":{"other":"{0} yd"},"perUnit":{}},"foot":{"long":{"other":"{0} peus","one":"{0} peu"},"short":{"other":"{0} ft"},"narrow":{"other":"{0} ft"},"perUnit":{"long":"{0} per peu","short":"{0}/ft","narrow":"{0}/ft"}},"inch":{"long":{"other":"{0} polzades","one":"{0} polzada"},"short":{"other":"{0} in"},"narrow":{"other":"{0} in"},"perUnit":{"long":"{0} per polzada","short":"{0}/in","narrow":"{0}/in"}},"mile-scandinavian":{"long":{"other":"{0} milles escandinaves","one":"{0} milla escandinava"},"short":{"other":"{0} smi"},"narrow":{"other":"{0} smi"},"perUnit":{}},"kilogram":{"long":{"other":"{0} quilograms","one":"{0} quilogram"},"short":{"other":"{0} kg"},"narrow":{"other":"{0} kg"},"perUnit":{"long":"{0} per quilogram","short":"{0}/kg","narrow":"{0}/kg"}},"gram":{"long":{"other":"{0} grams","one":"{0} gram"},"short":{"other":"{0} g"},"narrow":{"other":"{0} g"},"perUnit":{"long":"{0} per gram","short":"{0}/g","narrow":"{0}/g"}},"stone":{"long":{"other":"{0} pedres","one":"{0} pedra"},"short":{"other":"{0} st"},"narrow":{"other":"{0} st"},"perUnit":{}},"pound":{"long":{"other":"{0} lliures","one":"{0} lliura"},"short":{"other":"{0} lb"},"narrow":{"other":"{0} lb"},"perUnit":{"long":"{0} per lliura","short":"{0}/lb","narrow":"{0}/lb"}},"ounce":{"long":{"other":"{0} unces","one":"{0} unรงa"},"short":{"other":"{0} oz"},"narrow":{"other":"{0} oz"},"perUnit":{"long":"{0} per unรงa","short":"{0}/oz","narrow":"{0}/oz"}},"kilometer-per-hour":{"long":{"other":"{0} quilรฒmetres per hora","one":"{0} quilรฒmetre per hora"},"short":{"other":"{0} km/h"},"narrow":{"other":"{0} km/h"},"perUnit":{}},"meter-per-second":{"long":{"other":"{0} metres per segon","one":"{0} metre per segon"},"short":{"other":"{0} m/s"},"narrow":{"other":"{0} m/s"},"perUnit":{}},"mile-per-hour":{"long":{"other":"{0} milles per hora","one":"{0} milla per hora"},"short":{"other":"{0} mi/h"},"narrow":{"other":"{0} mi/h"},"perUnit":{}},"celsius":{"long":{"other":"{0} graus Celsius","one":"{0} grau Celsius"},"short":{"other":"{0} ยฐC"},"narrow":{"other":"{0} ยฐC"},"perUnit":{}},"fahrenheit":{"long":{"other":"{0} graus Fahrenheit","one":"{0} grau Fahrenheit"},"short":{"other":"{0} ยฐF"},"narrow":{"other":"{0}ยฐF"},"perUnit":{}},"liter":{"long":{"other":"{0} litres","one":"{0} litre"},"short":{"other":"{0} l"},"narrow":{"other":"{0} l"},"perUnit":{"long":"{0} per litre","short":"{0}/l","narrow":"{0}/l"}},"milliliter":{"long":{"other":"{0} milยทlilitres","one":"{0} milยทlilitre"},"short":{"other":"{0} ml"},"narrow":{"other":"{0} ml"},"perUnit":{}},"gallon":{"long":{"other":"{0} galons","one":"{0} galรณ"},"short":{"other":"{0} gal"},"narrow":{"other":"{0} gal"},"perUnit":{"long":"{0} per galรณ","short":"{0}/gal","narrow":"{0}/gal"}},"fluid-ounce":{"long":{"other":"{0} unces lรญquides","one":"{0} unรงa lรญquida"},"short":{"other":"{0} fl oz"},"narrow":{"other":"{0} fl oz"},"perUnit":{}}},"compound":{"per":{"long":"{0} per {1}","short":"{0}/{1}","narrow":"{0}/{1}"}}},"currencies":{"ADP":{"displayName":{"other":"pessetes andorranes","one":"pesseta andorrana"},"symbol":"ADP","narrow":"ADP"},"AED":{"displayName":{"other":"dรญrhams dels Emirats ร€rabs Units","one":"dรญrham dels Emirats ร€rabs Units"},"symbol":"AED","narrow":"AED"},"AFA":{"displayName":{"other":"afganis afganesos (1927โ€“2002)","one":"afgani afganรจs (1927โ€“2002)"},"symbol":"AFA","narrow":"AFA"},"AFN":{"displayName":{"other":"afganis afganesos","one":"afgani afganรจs"},"symbol":"AFN","narrow":"ุ‹"},"ALK":{"displayName":{"other":"lekรซ albanesos (1946โ€“1965)","one":"lek albanรจs (1946โ€“1965)"},"symbol":"ALK","narrow":"ALK"},"ALL":{"displayName":{"other":"lekรซ","one":"lek"},"symbol":"ALL","narrow":"ALL"},"AMD":{"displayName":{"other":"drams","one":"dram"},"symbol":"AMD","narrow":"ึ"},"ANG":{"displayName":{"other":"florins de les Antilles Neerlandeses","one":"florรญ de les Antilles Neerlandeses"},"symbol":"ANG","narrow":"ANG"},"AOA":{"displayName":{"other":"kwanzas angolesos","one":"kwanza angolรจs"},"symbol":"AOA","narrow":"Kz"},"AOK":{"displayName":{"other":"kwanzas angolesos (1977โ€“1991)","one":"kwanza angolรจs (1977โ€“1991)"},"symbol":"AOK","narrow":"AOK"},"AON":{"displayName":{"other":"nous kwanzas angolesos (1990โ€“2000)","one":"nou kwanza angolรจs (1990โ€“2000)"},"symbol":"AON","narrow":"AON"},"AOR":{"displayName":{"other":"kwanzas angolesos (1995โ€“1999)","one":"kwanza angolรจs reajustat (1995โ€“1999)"},"symbol":"AOR","narrow":"AOR"},"ARA":{"displayName":{"other":"australs argentins","one":"austral argentรญ"},"symbol":"ARA","narrow":"ARA"},"ARL":{"displayName":{"other":"pesos ley argentins (1970โ€“1983)","one":"peso ley argentรญ (1970โ€“1983)"},"symbol":"ARL","narrow":"ARL"},"ARM":{"displayName":{"other":"pesos argentins moneda nacional","one":"peso argentรญ moneda nacional"},"symbol":"ARM","narrow":"ARM"},"ARP":{"displayName":{"other":"pesos argentins (1983โ€“1985)","one":"peso argentรญ (1983โ€“1985)"},"symbol":"ARP","narrow":"ARP"},"ARS":{"displayName":{"other":"pesos argentins","one":"peso argentรญ"},"symbol":"ARS","narrow":"$"},"ATS":{"displayName":{"other":"xรญlings austrรญacs","one":"xรญling austrรญac"},"symbol":"ATS","narrow":"ATS"},"AUD":{"displayName":{"other":"dรฒlars australians","one":"dรฒlar australiร "},"symbol":"AU$","narrow":"$"},"AWG":{"displayName":{"other":"florins dโ€™Aruba","one":"florรญ dโ€™Aruba"},"symbol":"AWG","narrow":"AWG"},"AZM":{"displayName":{"other":"manats azerbaidjanesos (1993โ€“2006)","one":"manat azerbaidjanรจs (1993โ€“2006)"},"symbol":"AZM","narrow":"AZM"},"AZN":{"displayName":{"other":"manats azerbaidjanesos","one":"manat azerbaidjanรจs"},"symbol":"AZN","narrow":"โ‚ผ"},"BAD":{"displayName":{"other":"dinars de Bรฒsnia i Hercegovina (1992โ€“1994)","one":"dinar de Bรฒsnia i Hercegovina (1992โ€“1994)"},"symbol":"BAD","narrow":"BAD"},"BAM":{"displayName":{"other":"marcs convertibles de Bรฒsnia i Hercegovina","one":"marc convertible de Bรฒsnia i Hercegovina"},"symbol":"BAM","narrow":"KM"},"BAN":{"displayName":{"other":"nous dinars de Bรฒsnia i Hercegovina (1994โ€“1997)","one":"nou dinar de Bรฒsnia i Hercegovina (1994โ€“1997)"},"symbol":"BAN","narrow":"BAN"},"BBD":{"displayName":{"other":"dรฒlars de Barbados","one":"dรฒlar de Barbados"},"symbol":"BBD","narrow":"$"},"BDT":{"displayName":{"other":"taka"},"symbol":"BDT","narrow":"เงณ"},"BEC":{"displayName":{"other":"francs belgues (convertibles)","one":"franc belga (convertible)"},"symbol":"BEC","narrow":"BEC"},"BEF":{"displayName":{"other":"francs belgues","one":"franc belga"},"symbol":"BEF","narrow":"BEF"},"BEL":{"displayName":{"other":"francs belgues (financers)","one":"franc belga (financer)"},"symbol":"BEL","narrow":"BEL"},"BGL":{"displayName":{"other":"leva forts bรบlgars","one":"lev fort bรบlgar"},"symbol":"BGL","narrow":"BGL"},"BGM":{"displayName":{"other":"leva socialistes bรบlgars","one":"lev socialista bรบlgar"},"symbol":"BGM","narrow":"BGM"},"BGN":{"displayName":{"other":"leva","one":"lev"},"symbol":"BGN","narrow":"BGN"},"BGO":{"displayName":{"other":"leva bรบlgars (1879โ€“1952)","one":"lev bรบlgar (1879โ€“1952)"},"symbol":"BGO","narrow":"BGO"},"BHD":{"displayName":{"other":"dinars de Bahrain","one":"dinar de Bahrain"},"symbol":"BHD","narrow":"BHD"},"BIF":{"displayName":{"other":"francs de Burundi","one":"franc de Burundi"},"symbol":"BIF","narrow":"BIF"},"BMD":{"displayName":{"other":"dรฒlars de les Bermudes","one":"dรฒlar de les Bermudes"},"symbol":"BMD","narrow":"$"},"BND":{"displayName":{"other":"dรฒlars de Brunei","one":"dรฒlar de Brunei"},"symbol":"BND","narrow":"$"},"BOB":{"displayName":{"other":"bolivians","one":"boliviร "},"symbol":"BOB","narrow":"Bs"},"BOL":{"displayName":{"other":"bolivianos bolivians (1863โ€“1963)","one":"boliviano boliviร  (1863โ€“1963)"},"symbol":"BOL","narrow":"BOL"},"BOP":{"displayName":{"other":"pesos bolivians","one":"peso boliviร "},"symbol":"BOP","narrow":"BOP"},"BOV":{"displayName":{"other":"MVDOL bolivians","one":"MVDOL boliviร "},"symbol":"BOV","narrow":"BOV"},"BRB":{"displayName":{"other":"cruzeiros novos brasilers (1967โ€“1986)","one":"cruzeiro novo brasiler (1967โ€“1986)"},"symbol":"BRB","narrow":"BRB"},"BRC":{"displayName":{"other":"cruzados brasilers","one":"cruzado brasiler"},"symbol":"BRC","narrow":"BRC"},"BRE":{"displayName":{"other":"cruzeiros brasilers (1990โ€“1993)","one":"cruzeiro brasiler (1990โ€“1993)"},"symbol":"BRE","narrow":"BRE"},"BRL":{"displayName":{"other":"reals brasilers","one":"real brasiler"},"symbol":"BRL","narrow":"R$"},"BRN":{"displayName":{"other":"cruzados novos brasilers","one":"cruzado novo brasiler"},"symbol":"BRN","narrow":"BRN"},"BRR":{"displayName":{"other":"cruzeiros brasilers","one":"cruzeiro brasiler"},"symbol":"BRR","narrow":"BRR"},"BRZ":{"displayName":{"other":"antics cruzeiros brasilers","one":"antic cruzeiro brasiler"},"symbol":"BRZ","narrow":"BRZ"},"BSD":{"displayName":{"other":"dรฒlars de les Bahames","one":"dรฒlar de les Bahames"},"symbol":"BSD","narrow":"$"},"BTN":{"displayName":{"other":"ngultrums de Bhutan","one":"ngultrum de Bhutan"},"symbol":"BTN","narrow":"BTN"},"BUK":{"displayName":{"other":"kyats birmans","one":"kyat birmร "},"symbol":"BUK","narrow":"BUK"},"BWP":{"displayName":{"other":"pula de Botswana"},"symbol":"BWP","narrow":"P"},"BYB":{"displayName":{"other":"nous rubles bielorussos (1994โ€“1999)","one":"nou ruble bielorรบs (1994โ€“1999)"},"symbol":"BYB","narrow":"BYB"},"BYN":{"displayName":{"other":"rubles bielorussos","one":"ruble bielorรบs"},"symbol":"BYN","narrow":"ั€."},"BYR":{"displayName":{"other":"rubles bielorussos (2000โ€“2016)","one":"ruble bielorรบs (2000โ€“2016)"},"symbol":"BYR","narrow":"BYR"},"BZD":{"displayName":{"other":"dรฒlars de Belize","one":"dรฒlar de Belize"},"symbol":"BZD","narrow":"$"},"CAD":{"displayName":{"other":"dรฒlars canadencs","one":"dรฒlar canadenc"},"symbol":"CAD","narrow":"$"},"CDF":{"displayName":{"other":"francs congolesos","one":"franc congolรจs"},"symbol":"CDF","narrow":"CDF"},"CHE":{"displayName":{"other":"euros WIR","one":"euro WIR"},"symbol":"CHE","narrow":"CHE"},"CHF":{"displayName":{"other":"francs suรฏssos","one":"franc suรญs"},"symbol":"CHF","narrow":"CHF"},"CHW":{"displayName":{"other":"francs WIR","one":"franc WIR"},"symbol":"CHW","narrow":"CHW"},"CLE":{"displayName":{"other":"escudos xilens","one":"escudo xilรจ"},"symbol":"CLE","narrow":"CLE"},"CLF":{"displayName":{"other":"unidades de fomento xilenes","one":"unidad de fomento xilena"},"symbol":"CLF","narrow":"CLF"},"CLP":{"displayName":{"other":"pesos xilens","one":"peso xilรจ"},"symbol":"CLP","narrow":"$"},"CNH":{"displayName":{"other":"iuans xinesos extracontinentals","one":"iuan xinรจs extracontinental"},"symbol":"CNH","narrow":"CNH"},"CNX":{"displayName":{"other":"dรฒlars del Banc Popular Xinรจs","one":"dรฒlar del Banc Popular Xinรจs"},"symbol":"CNX","narrow":"CNX"},"CNY":{"displayName":{"other":"iuans","one":"iuan"},"symbol":"CNY","narrow":"ยฅ"},"COP":{"displayName":{"other":"pesos colombians","one":"peso colombiร "},"symbol":"COP","narrow":"$"},"COU":{"displayName":{"other":"unidades de valor real colombianes","one":"unidad de valor real colombiana"},"symbol":"COU","narrow":"COU"},"CRC":{"displayName":{"other":"colons costa-riquenys","one":"colon costa-riqueny"},"symbol":"CRC","narrow":"โ‚ก"},"CSD":{"displayName":{"other":"dinars serbis antics","one":"dinar serbi antic"},"symbol":"CSD","narrow":"CSD"},"CSK":{"displayName":{"other":"corones fortes txecoslovaques","one":"corona forta txecoslovaca"},"symbol":"CSK","narrow":"CSK"},"CUC":{"displayName":{"other":"pesos convertibles cubans","one":"peso convertible cubร "},"symbol":"CUC","narrow":"$"},"CUP":{"displayName":{"other":"pesos cubans","one":"peso cubร "},"symbol":"CUP","narrow":"$"},"CVE":{"displayName":{"other":"escuts de Cap Verd","one":"escut de Cap Verd"},"symbol":"CVE","narrow":"CVE"},"CYP":{"displayName":{"other":"lliures xipriotes","one":"lliura xipriota"},"symbol":"CYP","narrow":"CYP"},"CZK":{"displayName":{"other":"corones txeques","one":"corona txeca"},"symbol":"CZK","narrow":"Kฤ"},"DDM":{"displayName":{"other":"marcs de lโ€™Alemanya Oriental","one":"marc de lโ€™Alemanya Oriental"},"symbol":"DDM","narrow":"DDM"},"DEM":{"displayName":{"other":"marcs alemanys","one":"marc alemany"},"symbol":"DEM","narrow":"DEM"},"DJF":{"displayName":{"other":"francs de Djibouti","one":"franc de Djibouti"},"symbol":"DJF","narrow":"DJF"},"DKK":{"displayName":{"other":"corones daneses","one":"corona danesa"},"symbol":"DKK","narrow":"kr"},"DOP":{"displayName":{"other":"pesos dominicans","one":"peso dominicร "},"symbol":"DOP","narrow":"$"},"DZD":{"displayName":{"other":"dinars algerians","one":"dinar algeriร "},"symbol":"DZD","narrow":"DZD"},"ECS":{"displayName":{"other":"sucres equatorians","one":"sucre equatoriร "},"symbol":"ECS","narrow":"ECS"},"ECV":{"displayName":{"other":"unidades de valor constante (UVC) equatorianes","one":"unidad de valor constante (UVC) equatoriana"},"symbol":"ECV","narrow":"ECV"},"EEK":{"displayName":{"other":"corones estonianes","one":"corona estoniana"},"symbol":"EEK","narrow":"EEK"},"EGP":{"displayName":{"other":"lliures egรญpcies","one":"lliura egรญpcia"},"symbol":"EGP","narrow":"Eยฃ"},"ERN":{"displayName":{"other":"nakfes eritreus","one":"nakfa eritreu"},"symbol":"ERN","narrow":"ERN"},"ESA":{"displayName":{"other":"pessetes espanyoles (compte A)","one":"pesseta espanyola (compte A)"},"symbol":"ESA","narrow":"ESA"},"ESB":{"displayName":{"other":"pessetes espanyoles (compte convertible)","one":"pesseta espanyola (compte convertible)"},"symbol":"ESB","narrow":"ESB"},"ESP":{"displayName":{"other":"pessetes espanyoles","one":"pesseta espanyola"},"symbol":"โ‚ง","narrow":"โ‚ง"},"ETB":{"displayName":{"other":"birrs etรญops","one":"birr etรญop"},"symbol":"ETB","narrow":"ETB"},"EUR":{"displayName":{"other":"euros","one":"euro"},"symbol":"โ‚ฌ","narrow":"โ‚ฌ"},"FIM":{"displayName":{"other":"marcs finlandesos","one":"marc finlandรจs"},"symbol":"FIM","narrow":"FIM"},"FJD":{"displayName":{"other":"dรฒlars fijians","one":"dรฒlar fijiร "},"symbol":"FJD","narrow":"$"},"FKP":{"displayName":{"other":"lliures de les illes Malvines","one":"lliura de les illes Malvines"},"symbol":"FKP","narrow":"ยฃ"},"FRF":{"displayName":{"other":"francs francesos","one":"franc francรจs"},"symbol":"FRF","narrow":"FRF"},"GBP":{"displayName":{"other":"lliures esterlines","one":"lliura esterlina"},"symbol":"ยฃ","narrow":"ยฃ"},"GEK":{"displayName":{"other":"cupons de lari georgians","one":"cupรณ de lari georgiร "},"symbol":"GEK","narrow":"GEK"},"GEL":{"displayName":{"other":"laris","one":"lari"},"symbol":"GEL","narrow":"โ‚พ"},"GHC":{"displayName":{"other":"cedis ghanesos (1979โ€“2007)","one":"cedi ghanรจs (1979โ€“2007)"},"symbol":"GHC","narrow":"GHC"},"GHS":{"displayName":{"other":"cedis ghanesos","one":"cedi ghanรจs"},"symbol":"GHS","narrow":"GHโ‚ต"},"GIP":{"displayName":{"other":"lliures de Gibraltar","one":"lliura de Gibraltar"},"symbol":"GIP","narrow":"ยฃ"},"GMD":{"displayName":{"other":"dalasis gambians","one":"dalasi gambiร "},"symbol":"GMD","narrow":"GMD"},"GNF":{"displayName":{"other":"francs guineans","one":"franc guineร "},"symbol":"GNF","narrow":"FG"},"GNS":{"displayName":{"other":"sylis guineans","one":"syli guineร "},"symbol":"GNS","narrow":"GNS"},"GQE":{"displayName":{"other":"bipkwele de Guinea Equatorial","one":"ekwele de Guinea Equatorial"},"symbol":"GQE","narrow":"GQE"},"GRD":{"displayName":{"other":"dracmes gregues","one":"dracma grega"},"symbol":"GRD","narrow":"GRD"},"GTQ":{"displayName":{"other":"quetzals","one":"quetzal"},"symbol":"GTQ","narrow":"Q"},"GWE":{"displayName":{"other":"escuts de la Guinea Portuguesa","one":"escut de la Guinea Portuguesa"},"symbol":"GWE","narrow":"GWE"},"GWP":{"displayName":{"other":"pesos de Guinea Bissau","one":"peso de Guinea Bissau"},"symbol":"GWP","narrow":"GWP"},"GYD":{"displayName":{"other":"dรฒlars de Guyana","one":"dรฒlar de Guyana"},"symbol":"GYD","narrow":"$"},"HKD":{"displayName":{"other":"dรฒlars de Hong Kong","one":"dรฒlar de Hong Kong"},"symbol":"HK$","narrow":"$"},"HNL":{"displayName":{"other":"lempires","one":"lempira"},"symbol":"HNL","narrow":"L"},"HRD":{"displayName":{"other":"dinars croats","one":"dinar croat"},"symbol":"HRD","narrow":"HRD"},"HRK":{"displayName":{"other":"kunes","one":"kuna"},"symbol":"HRK","narrow":"kn"},"HTG":{"displayName":{"other":"gourdes","one":"gourde"},"symbol":"HTG","narrow":"HTG"},"HUF":{"displayName":{"other":"fรฒrints","one":"fรฒrint"},"symbol":"HUF","narrow":"Ft"},"IDR":{"displayName":{"other":"rupies indonรจsies","one":"rupia indonรจsia"},"symbol":"IDR","narrow":"Rp"},"IEP":{"displayName":{"other":"lliures irlandeses","one":"lliura irlandesa"},"symbol":"IEP","narrow":"IEP"},"ILP":{"displayName":{"other":"lliures israelianes","one":"lliura israeliana"},"symbol":"ILP","narrow":"ILP"},"ILR":{"displayName":{"other":"xรฉquel israeliร "},"symbol":"ILR","narrow":"ILR"},"ILS":{"displayName":{"other":"nous xรฉquels israelians","one":"nou xรฉquel israeliร "},"symbol":"โ‚ช","narrow":"โ‚ช"},"INR":{"displayName":{"other":"rupies รญndies","one":"rupia รญndia"},"symbol":"โ‚น","narrow":"โ‚น"},"IQD":{"displayName":{"other":"dinars iraquians","one":"dinar iraquiร "},"symbol":"IQD","narrow":"IQD"},"IRR":{"displayName":{"other":"rials iranians","one":"rial iraniร "},"symbol":"IRR","narrow":"IRR"},"ISJ":{"displayName":{"other":"corones islandeses antigues","one":"corona islandesa antiga"},"symbol":"ISJ","narrow":"ISJ"},"ISK":{"displayName":{"other":"corones islandeses","one":"corona islandesa"},"symbol":"ISK","narrow":"kr"},"ITL":{"displayName":{"other":"lires italianes","one":"lira italiana"},"symbol":"ITL","narrow":"ITL"},"JMD":{"displayName":{"other":"dรฒlars jamaicans","one":"dรฒlar jamaicร "},"symbol":"JMD","narrow":"$"},"JOD":{"displayName":{"other":"dinars jordans","one":"dinar jordร "},"symbol":"JOD","narrow":"JOD"},"JPY":{"displayName":{"other":"iens","one":"ien"},"symbol":"ยฅ","narrow":"ยฅ"},"KES":{"displayName":{"other":"xรญlings kenyans","one":"xรญling kenyร "},"symbol":"KES","narrow":"KES"},"KGS":{"displayName":{"other":"soms kirguisos","one":"som kirguรญs"},"symbol":"KGS","narrow":"KGS"},"KHR":{"displayName":{"other":"riels cambodjans","one":"riel cambodjร "},"symbol":"KHR","narrow":"แŸ›"},"KMF":{"displayName":{"other":"francs de les Comores","one":"franc de les Comores"},"symbol":"KMF","narrow":"CF"},"KPW":{"displayName":{"other":"wons nord-coreans","one":"won nord-coreร "},"symbol":"KPW","narrow":"โ‚ฉ"},"KRH":{"displayName":{"other":"hwans sud-coreans","one":"hwan sud-coreร "},"symbol":"KRH","narrow":"KRH"},"KRO":{"displayName":{"other":"antics wons sud-coreans","one":"antic won sud-coreร "},"symbol":"KRO","narrow":"KRO"},"KRW":{"displayName":{"other":"wons sud-coreans","one":"won sud-coreร "},"symbol":"โ‚ฉ","narrow":"โ‚ฉ"},"KWD":{"displayName":{"other":"dinars kuwaitians","one":"dinar kuwaitiร "},"symbol":"KWD","narrow":"KWD"},"KYD":{"displayName":{"other":"dรฒlars de les illes Caiman","one":"dรฒlar de les illes Caiman"},"symbol":"KYD","narrow":"$"},"KZT":{"displayName":{"other":"tenges","one":"tenge"},"symbol":"KZT","narrow":"โ‚ธ"},"LAK":{"displayName":{"other":"kips laosians","one":"kip laosiร "},"symbol":"LAK","narrow":"โ‚ญ"},"LBP":{"displayName":{"other":"lliures libaneses","one":"lliura libanesa"},"symbol":"LBP","narrow":"Lยฃ"},"LKR":{"displayName":{"other":"rupies de Sri Lanka","one":"rupia de Sri Lanka"},"symbol":"LKR","narrow":"Rs"},"LRD":{"displayName":{"other":"dรฒlars liberians","one":"dรฒlar liberiร "},"symbol":"LRD","narrow":"$"},"LSL":{"displayName":{"other":"lotis","one":"loti"},"symbol":"LSL","narrow":"LSL"},"LTL":{"displayName":{"other":"litai lituans","one":"litas lituร "},"symbol":"LTL","narrow":"Lt"},"LTT":{"displayName":{"other":"talonai lituans","one":"talonas lituร "},"symbol":"LTT","narrow":"LTT"},"LUC":{"displayName":{"other":"francs convertibles luxemburguesos","one":"franc convertible luxemburguรจs"},"symbol":"LUC","narrow":"LUC"},"LUF":{"displayName":{"other":"francs luxemburguesos","one":"franc luxemburguรจs"},"symbol":"LUF","narrow":"LUF"},"LUL":{"displayName":{"other":"francs financers luxemburguesos","one":"franc financer luxemburguรจs"},"symbol":"LUL","narrow":"LUL"},"LVL":{"displayName":{"other":"lati letons","one":"lats letรณ"},"symbol":"LVL","narrow":"Ls"},"LVR":{"displayName":{"other":"rubles letons","one":"ruble letรณ"},"symbol":"LVR","narrow":"LVR"},"LYD":{"displayName":{"other":"dinars libis","one":"dinar libi"},"symbol":"LYD","narrow":"LYD"},"MAD":{"displayName":{"other":"dรญrhams marroquins","one":"dรญrham marroquรญ"},"symbol":"MAD","narrow":"MAD"},"MAF":{"displayName":{"other":"francs marroquins","one":"franc marroquรญ"},"symbol":"MAF","narrow":"MAF"},"MCF":{"displayName":{"other":"francs monegascos","one":"franc monegasc"},"symbol":"MCF","narrow":"MCF"},"MDC":{"displayName":{"other":"cupons moldaus","one":"cupรณ moldau"},"symbol":"MDC","narrow":"MDC"},"MDL":{"displayName":{"other":"lei moldaus","one":"leu moldau"},"symbol":"MDL","narrow":"MDL"},"MGA":{"displayName":{"other":"ariarys malgaixos","one":"ariary malgaix"},"symbol":"MGA","narrow":"Ar"},"MGF":{"displayName":{"other":"francs malgaixos","one":"franc malgaix"},"symbol":"MGF","narrow":"MGF"},"MKD":{"displayName":{"other":"dinars macedonis","one":"dinar macedoni"},"symbol":"MKD","narrow":"MKD"},"MKN":{"displayName":{"other":"denari macedonis (1992โ€“1993)","one":"denar macedoni (1992โ€“1993)"},"symbol":"MKN","narrow":"MKN"},"MLF":{"displayName":{"other":"francs malians","one":"franc maliร "},"symbol":"MLF","narrow":"MLF"},"MMK":{"displayName":{"other":"kyats de Myanmar","one":"kyat de Myanmar"},"symbol":"MMK","narrow":"K"},"MNT":{"displayName":{"other":"tรถgrรถgs mongols","one":"tรถgrรถg mongol"},"symbol":"MNT","narrow":"โ‚ฎ"},"MOP":{"displayName":{"other":"pataques de Macau","one":"pataca de Macau"},"symbol":"MOP","narrow":"MOP"},"MRO":{"displayName":{"other":"ouguiyas mauritans (1973โ€“2017)","one":"ouguiya mauritร  (1973โ€“2017)"},"symbol":"MRO","narrow":"MRO"},"MRU":{"displayName":{"other":"ouguiyas mauritans","one":"ouguiya mauritร "},"symbol":"MRU","narrow":"MRU"},"MTL":{"displayName":{"other":"lires malteses","one":"lira maltesa"},"symbol":"MTL","narrow":"MTL"},"MTP":{"displayName":{"other":"lliures malteses","one":"lliura maltesa"},"symbol":"MTP","narrow":"MTP"},"MUR":{"displayName":{"other":"rupies mauricianes","one":"rupia mauriciana"},"symbol":"MUR","narrow":"Rs"},"MVP":{"displayName":{"other":"MVP"},"symbol":"MVP","narrow":"MVP"},"MVR":{"displayName":{"other":"rupies de les Maldives","one":"rupia de les Maldives"},"symbol":"MVR","narrow":"MVR"},"MWK":{"displayName":{"other":"kwacha malawians","one":"kwacha malawiร "},"symbol":"MWK","narrow":"MWK"},"MXN":{"displayName":{"other":"pesos mexicans","one":"peso mexicร "},"symbol":"MXN","narrow":"$"},"MXP":{"displayName":{"other":"pesos de plata mexicans (1861โ€“1992)","one":"peso de plata mexicร  (1861โ€“1992)"},"symbol":"MXP","narrow":"MXP"},"MXV":{"displayName":{"other":"unidades de inversiรณn (UDI) mexicanes","one":"unidad de inversiรณn (UDI) mexicana"},"symbol":"MXV","narrow":"MXV"},"MYR":{"displayName":{"other":"ringgits","one":"ringgit"},"symbol":"MYR","narrow":"RM"},"MZE":{"displayName":{"other":"escuts moรงambiquesos","one":"escut moรงambiquรจs"},"symbol":"MZE","narrow":"MZE"},"MZM":{"displayName":{"other":"antics meticals moรงambiquesos","one":"antic metical moรงambiquรจs"},"symbol":"MZM","narrow":"MZM"},"MZN":{"displayName":{"other":"meticals moรงambiquesos","one":"metical moรงambiquรจs"},"symbol":"MZN","narrow":"MZN"},"NAD":{"displayName":{"other":"dรฒlars namibians","one":"dรฒlar namibiร "},"symbol":"NAD","narrow":"$"},"NGN":{"displayName":{"other":"naires nigerians","one":"naira nigeriร "},"symbol":"NGN","narrow":"โ‚ฆ"},"NIC":{"displayName":{"other":"cรณrdobas nicaragรผenques","one":"cรณrdoba nicaragรผenca"},"symbol":"NIC","narrow":"NIC"},"NIO":{"displayName":{"other":"cรณrdobas nicaragรผencs","one":"cรณrdoba nicaragรผenc"},"symbol":"NIO","narrow":"C$"},"NLG":{"displayName":{"other":"florins neerlandesos","one":"florรญ neerlandรจs"},"symbol":"NLG","narrow":"NLG"},"NOK":{"displayName":{"other":"corones noruegues","one":"corona noruega"},"symbol":"NOK","narrow":"kr"},"NPR":{"displayName":{"other":"rupies nepaleses","one":"rupia nepalesa"},"symbol":"NPR","narrow":"Rs"},"NZD":{"displayName":{"other":"dรฒlars neozelandesos","one":"dรฒlar neozelandรจs"},"symbol":"NZ$","narrow":"$"},"OMR":{"displayName":{"other":"rials omanites","one":"rial omanita"},"symbol":"OMR","narrow":"OMR"},"PAB":{"displayName":{"other":"balboes","one":"balboa"},"symbol":"PAB","narrow":"PAB"},"PEI":{"displayName":{"other":"intis peruans","one":"inti peruร "},"symbol":"PEI","narrow":"PEI"},"PEN":{"displayName":{"other":"sols","one":"sol"},"symbol":"PEN","narrow":"PEN"},"PES":{"displayName":{"other":"sols peruans (1863โ€“1965)","one":"sol peruร  (1863โ€“1965)"},"symbol":"PES","narrow":"PES"},"PGK":{"displayName":{"other":"kines","one":"kina"},"symbol":"PGK","narrow":"PGK"},"PHP":{"displayName":{"other":"pesos filipins","one":"peso filipรญ"},"symbol":"PHP","narrow":"โ‚ฑ"},"PKR":{"displayName":{"other":"rupies pakistaneses","one":"rupia pakistanesa"},"symbol":"PKR","narrow":"Rs"},"PLN":{"displayName":{"other":"zlote","one":"zloty"},"symbol":"PLN","narrow":"zล‚"},"PLZ":{"displayName":{"other":"zlote polonesos (1950โ€“1995)","one":"zloty polonรจs (1950โ€“1995)"},"symbol":"PLZ","narrow":"PLZ"},"PTE":{"displayName":{"other":"escuts portuguesos","one":"escut portuguรจs"},"symbol":"PTE","narrow":"PTE"},"PYG":{"displayName":{"other":"guaranรญs","one":"guaranรญ"},"symbol":"PYG","narrow":"โ‚ฒ"},"QAR":{"displayName":{"other":"rials de Qatar","one":"rial de Qatar"},"symbol":"QAR","narrow":"QAR"},"RHD":{"displayName":{"other":"dรฒlars rhodesians","one":"dรฒlar rhodesiร "},"symbol":"RHD","narrow":"RHD"},"ROL":{"displayName":{"other":"antics lei romanesos","one":"antic leu romanรจs"},"symbol":"ROL","narrow":"ROL"},"RON":{"displayName":{"other":"lei romanesos","one":"leu romanรจs"},"symbol":"RON","narrow":"lei"},"RSD":{"displayName":{"other":"dinars serbis","one":"dinar serbi"},"symbol":"RSD","narrow":"RSD"},"RUB":{"displayName":{"other":"rubles","one":"ruble"},"symbol":"RUB","narrow":"โ‚ฝ"},"RUR":{"displayName":{"other":"rubles russos (1991โ€“1998)","one":"ruble rus (1991โ€“1998)"},"symbol":"RUR","narrow":"RUR"},"RWF":{"displayName":{"other":"francs de Ruanda","one":"franc de Ruanda"},"symbol":"RWF","narrow":"RF"},"SAR":{"displayName":{"other":"rials saudites","one":"rial saudita"},"symbol":"SAR","narrow":"SAR"},"SBD":{"displayName":{"other":"dรฒlars de les illes Salomรณ","one":"dรฒlar de les illes Salomรณ"},"symbol":"SBD","narrow":"$"},"SCR":{"displayName":{"other":"rupies de les Seychelles","one":"rupia de les Seychelles"},"symbol":"SCR","narrow":"SCR"},"SDD":{"displayName":{"other":"dinars sudanesos","one":"dinar sudanรจs"},"symbol":"SDD","narrow":"SDD"},"SDG":{"displayName":{"other":"lliures sudaneses","one":"lliura sudanesa"},"symbol":"SDG","narrow":"SDG"},"SDP":{"displayName":{"other":"antigues lliures sudaneses","one":"antiga lliura sudanesa"},"symbol":"SDP","narrow":"SDP"},"SEK":{"displayName":{"other":"corones sueques","one":"corona sueca"},"symbol":"SEK","narrow":"kr"},"SGD":{"displayName":{"other":"dรฒlars de Singapur","one":"dรฒlar de Singapur"},"symbol":"SGD","narrow":"$"},"SHP":{"displayName":{"other":"lliures de Santa Helena","one":"lliura de Santa Helena"},"symbol":"SHP","narrow":"ยฃ"},"SIT":{"displayName":{"other":"tolars eslovens","one":"tolar eslovรจ"},"symbol":"SIT","narrow":"SIT"},"SKK":{"displayName":{"other":"corones eslovaques","one":"corona eslovaca"},"symbol":"SKK","narrow":"SKK"},"SLL":{"displayName":{"other":"leones de Sierra Leone","one":"leone de Sierra Leone"},"symbol":"SLL","narrow":"SLL"},"SOS":{"displayName":{"other":"xรญlings somalis","one":"xรญling somali"},"symbol":"SOS","narrow":"SOS"},"SRD":{"displayName":{"other":"dรฒlars de Surinam","one":"dรฒlar de Surinam"},"symbol":"SRD","narrow":"$"},"SRG":{"displayName":{"other":"florins de Surinam","one":"florรญ de Surinam"},"symbol":"SRG","narrow":"SRG"},"SSP":{"displayName":{"other":"lliures del Sudan del Sud","one":"lliura del Sudan del Sud"},"symbol":"SSP","narrow":"ยฃ"},"STD":{"displayName":{"other":"dobras de Sรฃo Tomรฉ i Prรญncipe (1977โ€“2017)","one":"dobra de Sรฃo Tomรฉ i Prรญncipe (1977โ€“2017)"},"symbol":"STD","narrow":"STD"},"STN":{"displayName":{"other":"dobras de Sรฃo Tomรฉ i Prรญncipe","one":"dobra de Sรฃo Tomรฉ i Prรญncipe"},"symbol":"STN","narrow":"Db"},"SUR":{"displayName":{"other":"rubles soviรจtics","one":"ruble soviรจtic"},"symbol":"SUR","narrow":"SUR"},"SVC":{"displayName":{"other":"colones salvadorencs","one":"colรณn salvadorenc"},"symbol":"SVC","narrow":"SVC"},"SYP":{"displayName":{"other":"lliures sirianes","one":"lliura siriana"},"symbol":"SYP","narrow":"ยฃ"},"SZL":{"displayName":{"other":"emalangeni swazis","one":"lilangeni swazi"},"symbol":"SZL","narrow":"SZL"},"THB":{"displayName":{"other":"bahts","one":"baht"},"symbol":"เธฟ","narrow":"เธฟ"},"TJR":{"displayName":{"other":"rubles tadjiks","one":"ruble tadjik"},"symbol":"TJR","narrow":"TJR"},"TJS":{"displayName":{"other":"somonis tadjiks","one":"somoni tadjik"},"symbol":"TJS","narrow":"TJS"},"TMM":{"displayName":{"other":"manats turcmans (1993โ€“2009)","one":"manat turcman (1993โ€“2009)"},"symbol":"TMM","narrow":"TMM"},"TMT":{"displayName":{"other":"manats turcmans","one":"manat turcman"},"symbol":"TMT","narrow":"TMT"},"TND":{"displayName":{"other":"dinars tunisians","one":"dinar tunisiร "},"symbol":"TND","narrow":"TND"},"TOP":{"displayName":{"other":"paโ€˜angas tongans","one":"paโ€˜anga tongร "},"symbol":"TOP","narrow":"T$"},"TPE":{"displayName":{"other":"escuts de Timor","one":"escut de Timor"},"symbol":"TPE","narrow":"TPE"},"TRL":{"displayName":{"other":"lires turques (1922โ€“2005)","one":"lira turca (1922โ€“2005)"},"symbol":"TRL","narrow":"TRL"},"TRY":{"displayName":{"other":"lires turques","one":"lira turca"},"symbol":"TRY","narrow":"โ‚บ"},"TTD":{"displayName":{"other":"dรฒlars de Trinitat i Tobago","one":"dรฒlar de Trinitat i Tobago"},"symbol":"TTD","narrow":"$"},"TWD":{"displayName":{"other":"nous dรฒlars de Taiwan","one":"nou dรฒlar de Taiwan"},"symbol":"NT$","narrow":"$"},"TZS":{"displayName":{"other":"xรญlings tanzans","one":"xรญling tanzร "},"symbol":"TZS","narrow":"TZS"},"UAH":{"displayName":{"other":"hrรญvnies","one":"hrรญvnia"},"symbol":"UAH","narrow":"โ‚ด"},"UAK":{"displayName":{"other":"karbรณvantsiv ucraรฏnesos","one":"karbรณvanets ucraรฏnรจs"},"symbol":"UAK","narrow":"UAK"},"UGS":{"displayName":{"other":"xรญlings ugandesos (1966โ€“1987)","one":"xรญling ugandรจs (1966โ€“1987)"},"symbol":"UGS","narrow":"UGS"},"UGX":{"displayName":{"other":"xรญlings ugandesos","one":"xรญling ugandรจs"},"symbol":"UGX","narrow":"UGX"},"USD":{"displayName":{"other":"dรฒlars dels Estats Units","one":"dรฒlar dels Estats Units"},"symbol":"USD","narrow":"$"},"USN":{"displayName":{"other":"dรฒlars dels Estats Units (dia segรผent)","one":"dรฒlar dels Estats Units (dia segรผent)"},"symbol":"USN","narrow":"USN"},"USS":{"displayName":{"other":"dรฒlars dels Estats Units (mateix dia)","one":"dรฒlar dels Estats Units (mateix dia)"},"symbol":"USS","narrow":"USS"},"UYI":{"displayName":{"other":"pesos uruguaians en unitats indexades","one":"peso uruguaiร  en unitats indexades"},"symbol":"UYI","narrow":"UYI"},"UYP":{"displayName":{"other":"pesos uruguaians (1975โ€“1993)","one":"peso uruguaiร  (1975โ€“1993)"},"symbol":"UYP","narrow":"UYP"},"UYU":{"displayName":{"other":"pesos uruguaians","one":"peso uruguaiร "},"symbol":"UYU","narrow":"$"},"UYW":{"displayName":{"other":"UYW"},"symbol":"UYW","narrow":"UYW"},"UZS":{"displayName":{"other":"soms uzbeks","one":"som uzbek"},"symbol":"UZS","narrow":"UZS"},"VEB":{"displayName":{"other":"bolรญvars veneรงolans (1871โ€“2008)","one":"bolรญvar veneรงolร  (1871โ€“2008)"},"symbol":"VEB","narrow":"VEB"},"VEF":{"displayName":{"other":"bolรญvars veneรงolans (2008โ€“2018)","one":"bolรญvar veneรงolร  (2008โ€“2018)"},"symbol":"VEF","narrow":"Bs F"},"VES":{"displayName":{"other":"bolรญvars veneรงolans","one":"bolรญvar veneรงolร "},"symbol":"VES","narrow":"VES"},"VND":{"displayName":{"other":"dongs vietnamites","one":"dong vietnamita"},"symbol":"โ‚ซ","narrow":"โ‚ซ"},"VNN":{"displayName":{"other":"dongs vietnamites (1978โ€“1985)","one":"dong vietnamita (1978โ€“1985)"},"symbol":"VNN","narrow":"VNN"},"VUV":{"displayName":{"other":"vatus de Vanuatu","one":"vatu de Vanuatu"},"symbol":"VUV","narrow":"VUV"},"WST":{"displayName":{"other":"tales samoans","one":"tala samoร "},"symbol":"WST","narrow":"WST"},"XAF":{"displayName":{"other":"francs CFA BEAC","one":"franc CFA BEAC"},"symbol":"FCFA","narrow":"FCFA"},"XAG":{"displayName":{"other":"plata"},"symbol":"XAG","narrow":"XAG"},"XAU":{"displayName":{"other":"or"},"symbol":"XAU","narrow":"XAU"},"XBA":{"displayName":{"other":"unitats compensatรฒries europees","one":"unitat compensatรฒria europea"},"symbol":"XBA","narrow":"XBA"},"XBB":{"displayName":{"other":"unitats monetร ries europees","one":"unitat monetร ria europea"},"symbol":"XBB","narrow":"XBB"},"XBC":{"displayName":{"other":"unitats de compte europees (XBC)","one":"unitat de compte europea (XBC)"},"symbol":"XBC","narrow":"XBC"},"XBD":{"displayName":{"other":"unitats de compte europees (XBD)","one":"unitat de compte europea (XBD)"},"symbol":"XBD","narrow":"XBD"},"XCD":{"displayName":{"other":"dรฒlars del Carib Oriental","one":"dรฒlar del Carib Oriental"},"symbol":"XCD","narrow":"$"},"XDR":{"displayName":{"other":"drets especials de gir"},"symbol":"XDR","narrow":"XDR"},"XEU":{"displayName":{"other":"unitats de moneda europees","one":"unitat de moneda europea"},"symbol":"XEU","narrow":"XEU"},"XFO":{"displayName":{"other":"francs or francesos","one":"franc or francรจs"},"symbol":"XFO","narrow":"XFO"},"XFU":{"displayName":{"other":"francs UIC francesos","one":"franc UIC francรจs"},"symbol":"XFU","narrow":"XFU"},"XOF":{"displayName":{"other":"francs CFA BCEAO","one":"franc CFA BCEAO"},"symbol":"Fโ€ฏCFA","narrow":"Fโ€ฏCFA"},"XPD":{"displayName":{"other":"palยทladi"},"symbol":"XPD","narrow":"XPD"},"XPF":{"displayName":{"other":"francs CFP","one":"franc CFP"},"symbol":"CFPF","narrow":"CFPF"},"XPT":{"displayName":{"other":"platรญ"},"symbol":"XPT","narrow":"XPT"},"XRE":{"displayName":{"other":"fons RINET"},"symbol":"XRE","narrow":"XRE"},"XSU":{"displayName":{"other":"XSU"},"symbol":"XSU","narrow":"XSU"},"XTS":{"displayName":{"other":"codi reservat per a proves"},"symbol":"XTS","narrow":"XTS"},"XUA":{"displayName":{"other":"XUA"},"symbol":"XUA","narrow":"XUA"},"XXX":{"displayName":{"other":"(moneda desconeguda)","one":"(unitat monetร ria desconeguda)"},"symbol":"XXX","narrow":"XXX"},"YDD":{"displayName":{"other":"dinars iemenites","one":"dinar iemenita"},"symbol":"YDD","narrow":"YDD"},"YER":{"displayName":{"other":"rials iemenites","one":"rial iemenita"},"symbol":"YER","narrow":"YER"},"YUD":{"displayName":{"other":"dinars forts iugoslaus","one":"dinar fort iugoslau"},"symbol":"YUD","narrow":"YUD"},"YUM":{"displayName":{"other":"nous dinars iugoslaus","one":"nou dinar iugoslau"},"symbol":"YUM","narrow":"YUM"},"YUN":{"displayName":{"other":"dinars convertibles iugoslaus","one":"dinar convertible iugoslau"},"symbol":"YUN","narrow":"YUN"},"YUR":{"displayName":{"other":"dinars reformats iugoslaus","one":"dinar reformat iugoslau"},"symbol":"YUR","narrow":"YUR"},"ZAL":{"displayName":{"other":"rands sud-africans (financers)","one":"rand sud-africร  (financer)"},"symbol":"ZAL","narrow":"ZAL"},"ZAR":{"displayName":{"other":"rands sud-africans","one":"rand sud-africร "},"symbol":"ZAR","narrow":"R"},"ZMK":{"displayName":{"other":"kwacha zambians (1968โ€“2012)","one":"kwacha zambiร  (1968โ€“2012)"},"symbol":"ZMK","narrow":"ZMK"},"ZMW":{"displayName":{"other":"kwacha zambians","one":"kwacha zambiร "},"symbol":"ZMW","narrow":"ZK"},"ZRN":{"displayName":{"other":"nous zaires zairesos","one":"nou zaire zairรจs"},"symbol":"ZRN","narrow":"ZRN"},"ZRZ":{"displayName":{"other":"zaires zairesos","one":"zaire zairรจs"},"symbol":"ZRZ","narrow":"ZRZ"},"ZWD":{"displayName":{"other":"dรฒlars zimbabuesos (1980โ€“2008)","one":"dรฒlar zimbabuรจs (1980โ€“2008)"},"symbol":"ZWD","narrow":"ZWD"},"ZWL":{"displayName":{"other":"dรฒlars zimbabuesos (2009)","one":"dรฒlar zimbabuรจs (2009)"},"symbol":"ZWL","narrow":"ZWL"},"ZWR":{"displayName":{"other":"dรฒlars zimbabuesos (2008)","one":"dรฒlar zimbabuรจs (2008)"},"symbol":"ZWR","narrow":"ZWR"}},"numbers":{"nu":["latn"],"symbols":{"latn":{"decimal":",","group":".","list":";","percentSign":"%","plusSign":"+","minusSign":"-","approximatelySign":"~","exponential":"E","superscriptingExponent":"ร—","perMille":"โ€ฐ","infinity":"โˆž","nan":"NaN","timeSeparator":":"}},"percent":{"latn":"#,##0%"},"decimal":{"latn":{"standard":"#,##0.###","long":{"1000":{"other":"0 milers","one":"0 miler"},"10000":{"other":"00 milers"},"100000":{"other":"000 milers"},"1000000":{"other":"0 milions","one":"0 miliรณ"},"10000000":{"other":"00 milions"},"100000000":{"other":"000 milions"},"1000000000":{"other":"0 milers de milions","one":"0 miler de milions"},"10000000000":{"other":"00 milers de milions"},"100000000000":{"other":"000 milers de milions"},"1000000000000":{"other":"0 bilions","one":"0 biliรณ"},"10000000000000":{"other":"00 bilions"},"100000000000000":{"other":"000 bilions"}},"short":{"1000":{"other":"0m"},"10000":{"other":"00m"},"100000":{"other":"000m"},"1000000":{"other":"0ย M"},"10000000":{"other":"00ย M"},"100000000":{"other":"000ย M"},"1000000000":{"other":"0000ย M"},"10000000000":{"other":"00mM"},"100000000000":{"other":"000mM"},"1000000000000":{"other":"0ย B"},"10000000000000":{"other":"00ย B"},"100000000000000":{"other":"000ย B"}}}},"currency":{"latn":{"currencySpacing":{"beforeInsertBetween":"ย ","afterInsertBetween":"ย "},"standard":"#,##0.00ย ยค","accounting":"#,##0.00ย ยค;(#,##0.00ย ยค)","unitPattern":"{0} {1}","short":{"1000":{"other":"0mย ยค"},"10000":{"other":"00mย ยค"},"100000":{"other":"000mย ยค"},"1000000":{"other":"0ย Mย ยค"},"10000000":{"other":"00ย Mย ยค"},"100000000":{"other":"000ย Mย ยค"},"1000000000":{"other":"0000ย Mย ยค"},"10000000000":{"other":"00mMย ยค"},"100000000000":{"other":"000mMย ยค"},"1000000000000":{"other":"0ย Bย ยค"},"10000000000000":{"other":"00ย Bย ยค"},"100000000000000":{"other":"000ย Bย ยค"}}}}},"nu":["latn"]},"locale":"ca"}
5
- )
6
- }
@@ -1 +0,0 @@
1
- export {}
@@ -1,6 +0,0 @@
1
- /* @generated */
2
- // prettier-ignore
3
- if (Intl.NumberFormat && typeof Intl.NumberFormat.__addLocaleData === 'function') {
4
- Intl.NumberFormat.__addLocaleData({"data":{"units":{"simple":{"degree":{"long":{"other":"{0} ๐‘„“๐‘„จ๐‘„‰๐‘„ณ๐‘„ข๐‘„ฉ"},"short":{"other":"{0}๐‘„“๐‘„จ๐‘„‰๐‘„ณ๐‘„ข๐‘„ฉ"},"narrow":{"other":"{0}๐‘„“๐‘„จ๐‘„‰๐‘„ณ๐‘„ข๐‘„ฉ"},"perUnit":{}},"hectare":{"long":{"other":"{0} ๐‘„ฆ๐‘„ฌ๐‘„‡๐‘„ด๐‘„‘๐‘„ง๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„ฆ๐‘„ฌ๐‘„‡๐‘„ด๐‘„‘๐‘„ง๐‘„ข๐‘„ด"},"narrow":{"other":"{0} ๐‘„ฆ๐‘„ฌ๐‘„‡๐‘„ด๐‘„‘๐‘„ง๐‘„ข๐‘„ด"},"perUnit":{}},"acre":{"long":{"other":"{0} ๐‘„ƒ๐‘„ฌ๐‘„‡๐‘„ง๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„ƒ๐‘„ฌ๐‘„‰๐‘„ง๐‘„ข๐‘„ด"},"narrow":{"other":"{0} ๐‘„ƒ๐‘„ฌ๐‘„‰๐‘„ง๐‘„ข๐‘„ด"},"perUnit":{}},"percent":{"long":{"other":"{0}%"},"short":{"other":"{0}%"},"narrow":{"other":"{0}%"},"perUnit":{}},"liter-per-kilometer":{"long":{"other":"{0} ๐‘„ฃ๐‘„จ๐‘„‘๐‘„ข๐‘„ด, ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ฌ"},"short":{"other":"{0} L/km"},"narrow":{"other":"{0} L/km"},"perUnit":{}},"mile-per-gallon":{"long":{"other":"{0} ๐‘„Ÿ๐‘„ฌ๐‘„ฃ๐‘„ด, ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‰๐‘„ณ๐‘„ ๐‘„ฃ๐‘„ง๐‘„š๐‘„ฌ"},"short":{"other":"{0} mpg"},"narrow":{"other":"{0} mpg"},"perUnit":{}},"petabyte":{"long":{"other":"{0} PB"},"short":{"other":"{0} PB"},"narrow":{"other":"{0} PB"},"perUnit":{}},"terabyte":{"long":{"other":"{0} ๐‘„‘๐‘„ข๐‘„๐‘„ญ๐‘„–๐‘„ด"},"short":{"other":"{0} TB"},"narrow":{"other":"{0} TB"},"perUnit":{}},"terabit":{"long":{"other":"{0} ๐‘„‘๐‘„ฌ๐‘„ข๐‘„๐‘„จ๐‘„–๐‘„ด"},"short":{"other":"{0} Tb"},"narrow":{"other":"{0} Tb"},"perUnit":{}},"gigabyte":{"long":{"other":"{0} ๐‘„‰๐‘„จ๐‘„‰๐‘„๐‘„ญ๐‘„–๐‘„ด"},"short":{"other":"{0} GB"},"narrow":{"other":"{0} GB"},"perUnit":{}},"gigabit":{"long":{"other":"{0} ๐‘„‰๐‘„จ๐‘„‰๐‘„๐‘„จ๐‘„–๐‘„ด"},"short":{"other":"{0} Gb"},"narrow":{"other":"{0} Gb"},"perUnit":{}},"megabyte":{"long":{"other":"{0} ๐‘„Ÿ๐‘„ฌ๐‘„‰๐‘„๐‘„ญ๐‘„–๐‘„ด"},"short":{"other":"{0} MB"},"narrow":{"other":"{0} MB"},"perUnit":{}},"megabit":{"long":{"other":"{0} ๐‘„Ÿ๐‘„ฌ๐‘„‰๐‘„๐‘„จ๐‘„–๐‘„ด"},"short":{"other":"{0} Mb"},"narrow":{"other":"{0} Mb"},"perUnit":{}},"kilobyte":{"long":{"other":"{0} ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„๐‘„ญ๐‘„–๐‘„ด"},"short":{"other":"{0} kB"},"narrow":{"other":"{0} kB"},"perUnit":{}},"kilobit":{"long":{"other":"{0} ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„๐‘„จ๐‘„–๐‘„ด"},"short":{"other":"{0} kb"},"narrow":{"other":"{0} kb"},"perUnit":{}},"byte":{"long":{"other":"{0} ๐‘„๐‘„ญ๐‘„–๐‘„ด"},"short":{"other":"{0} ๐‘„๐‘„ญ๐‘„–๐‘„ด"},"narrow":{"other":"{0} ๐‘„๐‘„ญ๐‘„–๐‘„ด"},"perUnit":{}},"bit":{"long":{"other":"{0} ๐‘„๐‘„จ๐‘„–๐‘„ด"},"short":{"other":"{0} ๐‘„๐‘„จ๐‘„–๐‘„ด"},"narrow":{"other":"{0} ๐‘„๐‘„จ๐‘„–๐‘„ด"},"perUnit":{}},"year":{"long":{"other":"{0} ๐‘„๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด"},"narrow":{"other":"{0} ๐‘„๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด"}},"month":{"long":{"other":"{0} ๐‘„Ÿ๐‘„Œ๐‘„ด"},"short":{"other":"{0} ๐‘„Ÿ๐‘„Œ๐‘„ด"},"narrow":{"other":"{0} ๐‘„Ÿ๐‘„Œ๐‘„ด"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„Œ๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„Œ๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„Œ๐‘„ด"}},"week":{"long":{"other":"{0} ๐‘„ฅ๐‘„›๐‘„ด๐‘„–"},"short":{"other":"{0} ๐‘„ฅ๐‘„›๐‘„ด๐‘„–"},"narrow":{"other":"{0} ๐‘„ฅ๐‘„›๐‘„ด๐‘„–"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„›๐‘„ด๐‘„–","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„›๐‘„ด๐‘„–","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„›๐‘„ด๐‘„–"}},"day":{"long":{"other":"{0} ๐‘„˜๐‘„จ๐‘„š๐‘„ด"},"short":{"other":"{0} ๐‘„˜๐‘„จ๐‘„š๐‘„ด"},"narrow":{"other":"{0} ๐‘„˜๐‘„จ๐‘„š๐‘„ด"},"perUnit":{"long":"{0} ๐‘„˜๐‘„จ๐‘„š๐‘„ด ๐‘„Ÿ๐‘„‰๐‘„ฌ๐‘„š๐‘„ฌ","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ด"}},"hour":{"long":{"other":"{0} ๐‘„Š๐‘„ง๐‘„š๐‘„ด๐‘„˜"},"short":{"other":"{0} ๐‘„Š๐‘„ง๐‘„š๐‘„ด๐‘„‘"},"narrow":{"other":"{0} ๐‘„Š๐‘„‚"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Š๐‘„ง๐‘„š๐‘„ด๐‘„˜","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Š๐‘„ง๐‘„š๐‘„ด๐‘„‘","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Š๐‘„ง๐‘„š๐‘„ด๐‘„‘"}},"minute":{"long":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„š๐‘„จ๐‘„–๐‘„ด"},"short":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„š๐‘„จ๐‘„–๐‘„ด"},"narrow":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„‚"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„จ๐‘„š๐‘„จ๐‘„–๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„จ๐‘„š๐‘„จ๐‘„–๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„จ๐‘„š๐‘„จ๐‘„–๐‘„ด"}},"second":{"long":{"other":"{0} ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"short":{"other":"{0} ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"narrow":{"other":"{0} ๐‘„ฅ๐‘„ฌ๐‘„‚"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด"}},"millisecond":{"long":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„ฃ๐‘„จ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด","one":"{0}๐‘„Ÿ๐‘„จ๐‘„ฃ๐‘„จ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"short":{"other":"{0} ms"},"narrow":{"other":"{0} ms"},"perUnit":{}},"kilometer":{"long":{"other":"{0} ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„‡๐‘„จ๐‘„Ÿ๐‘„จ"},"narrow":{"other":"{0} ๐‘„‡๐‘„จ๐‘„Ÿ๐‘„จ"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„จ๐‘„Ÿ๐‘„จ","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„จ๐‘„Ÿ๐‘„จ"}},"meter":{"long":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„Ÿ๐‘„จ"},"narrow":{"other":"{0} ๐‘„Ÿ๐‘„จ"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„จ","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„จ"}},"centimeter":{"long":{"other":"{0} ๐‘„ฅ๐‘„ฌ๐‘„š๐‘„ด๐‘„‘๐‘„จ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„ฅ๐‘„ฌ๐‘„Ÿ๐‘„จ"},"narrow":{"other":"{0} ๐‘„ฅ๐‘„ฌ๐‘„Ÿ๐‘„จ"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„ฌ๐‘„š๐‘„ด๐‘„‘๐‘„จ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„ฌ๐‘„Ÿ๐‘„จ","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„ฌ๐‘„Ÿ๐‘„จ"}},"millimeter":{"long":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„ฃ๐‘„จ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„Ÿ๐‘„จ"},"narrow":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„Ÿ๐‘„จ"},"perUnit":{}},"mile":{"long":{"other":"{0} ๐‘„Ÿ๐‘„ฌ๐‘„ฃ๐‘„ด"},"short":{"other":"{0} ๐‘„Ÿ๐‘„ฌ๐‘„ฃ๐‘„ด"},"narrow":{"other":"{0} ๐‘„Ÿ๐‘„ฌ๐‘„ฃ๐‘„ด"},"perUnit":{}},"yard":{"long":{"other":"{0} ๐‘„‰๐‘„ง๐‘„Œ๐‘„ด"},"short":{"other":"{0} ๐‘„‰๐‘„ง๐‘„Œ๐‘„ด"},"narrow":{"other":"{0} ๐‘„‰๐‘„ง๐‘„Œ๐‘„ด"},"perUnit":{}},"foot":{"long":{"other":"{0} ๐‘„œ๐‘„ช๐‘„–๐‘„ด"},"short":{"other":"{0} ๐‘„œ๐‘„ช๐‘„–๐‘„ด"},"narrow":{"other":"{0} ๐‘„œ๐‘„ช๐‘„–๐‘„ด"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„œ๐‘„ช๐‘„–๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„œ๐‘„ช๐‘„–๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„œ๐‘„ช๐‘„–๐‘„ด"}},"inch":{"long":{"other":"{0} ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„Œ๐‘„จ"},"short":{"other":"{0} ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„Œ๐‘„จ"},"narrow":{"other":"{0} ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„Œ๐‘„จ"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„Œ๐‘„จ","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„Œ๐‘„จ","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„Œ๐‘„จ"}},"mile-scandinavian":{"long":{"other":"{0} ๐‘„Ÿ๐‘„ฌ๐‘„ฃ๐‘„ด-๐‘„ฅ๐‘„ณ๐‘„‡๐‘„ณ๐‘„ ๐‘„š๐‘„ด๐‘„“๐‘„จ๐‘„š๐‘„ฌ๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด"},"short":{"other":"{0} smi"},"narrow":{"other":"{0} smi"},"perUnit":{}},"kilogram":{"long":{"other":"{0} ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด"},"short":{"other":"{0} ๐‘„‡๐‘„ฌ๐‘„Ž๐‘„จ"},"narrow":{"other":"{0} ๐‘„‡๐‘„ฌ๐‘„Ž๐‘„จ"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„ฌ๐‘„Ž๐‘„จ","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„ฌ๐‘„Ž๐‘„จ"}},"gram":{"long":{"other":"{0} ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด"},"short":{"other":"{0} ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด","one":"{0}๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด"},"narrow":{"other":"{0} ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‰๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด"}},"stone":{"long":{"other":"{0} st"},"short":{"other":"{0} st"},"narrow":{"other":"{0} st"},"perUnit":{}},"pound":{"long":{"other":"{0} ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"short":{"other":"{0} lb","one":"{0} ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"narrow":{"other":"{0} ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด","short":"{0}/lb","narrow":"{0}/lb"}},"ounce":{"long":{"other":"{0} ๐‘„ƒ๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„ฅ๐‘„ด"},"short":{"other":"{0} ๐‘„ƒ๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„Œ๐‘„ด"},"narrow":{"other":"{0} ๐‘„ƒ๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„Œ๐‘„ด"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ƒ๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„ฅ๐‘„ด","short":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ƒ๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„Œ๐‘„ด","narrow":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ƒ๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„Œ๐‘„ด"}},"kilometer-per-hour":{"long":{"other":"{0} ๐‘„Š๐‘„ง๐‘„š๐‘„ณ๐‘„‘ ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‡๐‘„จ๐‘„ฃ๐‘„ฎ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"short":{"other":"{0} km/h","one":"{0} kph"},"narrow":{"other":"{0}kph"},"perUnit":{}},"meter-per-second":{"long":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„‘๐‘„ข๐‘„ด ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"short":{"other":"{0} m/s"},"narrow":{"other":"{0}m/s"},"perUnit":{}},"mile-per-hour":{"long":{"other":"{0} ๐‘„Š๐‘„ง๐‘„š๐‘„ณ๐‘„‘ ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„Ÿ๐‘„ฌ๐‘„ฃ๐‘„ด"},"short":{"other":"{0} mph"},"narrow":{"other":"{0}mph"},"perUnit":{}},"celsius":{"long":{"other":"{0} ๐‘„“๐‘„จ๐‘„‰๐‘„ณ๐‘„ข๐‘„ฉ ๐‘„ฅ๐‘„ฌ๐‘„ฃ๐‘„ด๐‘„ฅ๐‘„จ๐‘„ ๐‘„Œ๐‘„ด"},"short":{"other":"{0}ยฐC"},"narrow":{"other":"{0}ยฐC"},"perUnit":{}},"fahrenheit":{"long":{"other":"{0} ๐‘„“๐‘„จ๐‘„‰๐‘„ณ๐‘„ข๐‘„ฉ ๐‘„œ๐‘„ข๐‘„ฌ๐‘„š๐‘„ด๐‘„ฆ๐‘„ญ๐‘„–๐‘„ด"},"short":{"other":"{0}ยฐF"},"narrow":{"other":"{0}ยฐF"},"perUnit":{}},"liter":{"long":{"other":"{0} ๐‘„ฃ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"short":{"other":"{0} ๐‘„ฃ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"narrow":{"other":"{0} ๐‘„ฃ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„ฃ๐‘„จ๐‘„‘๐‘„ข๐‘„ด","short":"{0}/l","narrow":"{0}/l"}},"milliliter":{"long":{"other":"{0} ๐‘„Ÿ๐‘„จ๐‘„ฃ๐‘„จ๐‘„ฃ๐‘„จ๐‘„‘๐‘„ข๐‘„ด"},"short":{"other":"{0} mL"},"narrow":{"other":"{0} mL"},"perUnit":{}},"gallon":{"long":{"other":"{0} ๐‘„‰๐‘„ณ๐‘„ ๐‘„ฃ๐‘„ง๐‘„š๐‘„ด"},"short":{"other":"{0} gal"},"narrow":{"other":"{0} gal"},"perUnit":{"long":"{0} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ ๐‘„‰๐‘„ณ๐‘„ ๐‘„ฃ๐‘„ง๐‘„š๐‘„ด","short":"{0}/gal US","narrow":"{0}/gal US"}},"fluid-ounce":{"long":{"other":"{0} ๐‘„œ๐‘„ณ๐‘„ฃ๐‘„ช๐‘„ƒ๐‘„จ๐‘„“๐‘„ด ๐‘„ƒ๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„Œ๐‘„ด"},"short":{"other":"{0} fl oz"},"narrow":{"other":"{0} fl oz"},"perUnit":{}}},"compound":{"per":{"long":"{1} ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„–๐‘„จ {0}","short":"{0}/{1}","narrow":"{0}/{1}"}}},"currencies":{"ADP":{"displayName":{"other":"๐‘„ƒ๐‘„ณ๐‘„ ๐‘„š๐‘„ด๐‘„“๐‘„ฎ๐‘„ข๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฌ๐‘„–"},"symbol":"ADP","narrow":"ADP"},"AED":{"displayName":{"other":"๐‘„Ž๐‘„ง๐‘„™ ๐‘„ƒ๐‘„ข๐‘„ง๐‘„๐‘„ด ๐‘„ƒ๐‘„Ÿ๐‘„จ๐‘„ข๐‘„–๐‘„ด ๐‘„˜๐‘„จ๐‘„ข๐‘„ด๐‘„ฆ๐‘„Ÿ๐‘„ด"},"symbol":"AED","narrow":"AED"},"AFA":{"displayName":{"other":"๐‘„ƒ๐‘„›๐‘„ด๐‘„‰๐‘„š๐‘„จ (๐‘„ท๐‘„ฟ๐‘„ธ๐‘„ฝ-๐‘„ธ๐‘„ถ๐‘„ถ๐‘„ธ)"},"symbol":"AFA","narrow":"AFA"},"AFN":{"displayName":{"other":"๐‘„ƒ๐‘„œ๐‘„ด๐‘„‰๐‘„š๐‘„ด ๐‘„ƒ๐‘„œ๐‘„ด๐‘„‰๐‘„š๐‘„จ"},"symbol":"AFN","narrow":"ุ‹"},"ALK":{"displayName":{"other":"ALK"},"symbol":"ALK","narrow":"ALK"},"ALL":{"displayName":{"other":"๐‘„ƒ๐‘„ฃ๐‘„ด๐‘„๐‘„ฌ๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฃ๐‘„ฌ๐‘„‡๐‘„ด"},"symbol":"ALL","narrow":"ALL"},"AMD":{"displayName":{"other":"๐‘„ƒ๐‘„ข๐‘„ด๐‘„Ÿ๐‘„ฌ๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„˜๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด"},"symbol":"AMD","narrow":"ึ"},"ANG":{"displayName":{"other":"๐‘„š๐‘„ฌ๐‘„˜๐‘„ข๐‘„ด๐‘„ฃ๐‘„ณ๐‘„ ๐‘„š๐‘„ด๐‘„“๐‘„ด ๐‘„ƒ๐‘„ณ๐‘„ ๐‘„š๐‘„ด๐‘„‘๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‰๐‘„ช๐‘„ฃ๐‘„ด๐‘„“๐‘„ฌ๐‘„ข๐‘„ด"},"symbol":"ANG","narrow":"ANG"},"AOA":{"displayName":{"other":"๐‘„ƒ๐‘„ณ๐‘„ ๐‘„‹๐‘„ด๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„š๐‘„ด ๐‘„‡๐‘„ง๐‘„ค๐‘„ฎ๐‘„š๐‘„ด๐‘„Ž"},"symbol":"AOA","narrow":"Kz"},"AOK":{"displayName":{"other":"๐‘„ƒ๐‘„ณ๐‘„ ๐‘„‹๐‘„ด๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„š๐‘„ด ๐‘„‡๐‘„ง๐‘„ค๐‘„ฎ๐‘„š๐‘„ด๐‘„Ž(๐‘„ท๐‘„ฟ๐‘„ฝ๐‘„ฝ-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ถ)"},"symbol":"AOK","narrow":"AOK"},"AON":{"displayName":{"other":"๐‘„ƒ๐‘„ณ๐‘„ ๐‘„‹๐‘„ด๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„š๐‘„ด ๐‘„š๐‘„ฑ ๐‘„‡๐‘„ง๐‘„ค๐‘„ฎ๐‘„š๐‘„ด๐‘„Ž(๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ป-๐‘„ธ๐‘„ถ๐‘„ถ๐‘„ถ)"},"symbol":"AON","narrow":"AON"},"AOR":{"displayName":{"other":"๐‘„ƒ๐‘„ณ๐‘„ ๐‘„‹๐‘„ด๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„š๐‘„ด ๐‘„‡๐‘„ง๐‘„ค๐‘„ฎ๐‘„š๐‘„ด๐‘„Ž(๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ป-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ฟ)"},"symbol":"AOR","narrow":"AOR"},"ARA":{"displayName":{"other":"๐‘„ƒ๐‘„ข๐‘„ด๐‘„Ž๐‘„ฌ๐‘„š๐‘„ด๐‘„‘๐‘„จ๐‘„š ๐‘„ƒ๐‘„ง๐‘„Œ๐‘„ด๐‘„‘๐‘„ณ๐‘„ข๐‘„ฃ๐‘„ด"},"symbol":"ARA","narrow":"ARA"},"ARL":{"displayName":{"other":"ARL"},"symbol":"ARL","narrow":"ARL"},"ARM":{"displayName":{"other":"ARM"},"symbol":"ARM","narrow":"ARM"},"ARP":{"displayName":{"other":"๐‘„ƒ๐‘„ข๐‘„ด๐‘„Ž๐‘„ฌ๐‘„š๐‘„ด๐‘„‘๐‘„จ๐‘„š ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ (๐‘„ท๐‘„ฟ๐‘„พ๐‘„น-๐‘„ท๐‘„ฟ๐‘„พ๐‘„ป)"},"symbol":"ARP","narrow":"ARP"},"ARS":{"displayName":{"other":"๐‘„ƒ๐‘„ข๐‘„ด๐‘„Ž๐‘„ฌ๐‘„š๐‘„ด๐‘„‘๐‘„จ๐‘„š ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"ARS","narrow":"$"},"ATS":{"displayName":{"other":"๐‘„ƒ๐‘„ง๐‘„Œ๐‘„ด๐‘„‘๐‘„ณ๐‘„ข๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„จ๐‘„"},"symbol":"ATS","narrow":"ATS"},"AUD":{"displayName":{"other":"๐‘„ƒ๐‘„ง๐‘„Œ๐‘„ด๐‘„‘๐‘„ณ๐‘„ข๐‘„ฌ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"A$","narrow":"$"},"AWG":{"displayName":{"other":"๐‘„ƒ๐‘„ข๐‘„ช๐‘„ ๐‘„‰๐‘„จ๐‘„ฃ๐‘„ด๐‘„“๐‘„ข๐‘„ด"},"symbol":"AWG","narrow":"AWG"},"AZM":{"displayName":{"other":"๐‘„ƒ๐‘„Ž๐‘„ข๐‘„ด๐‘„๐‘„ญ๐‘„Ž๐‘„š๐‘„ด ๐‘„Ÿ๐‘„š๐‘„–๐‘„ด (๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„น-๐‘„ธ๐‘„ถ๐‘„ถ๐‘„ผ)"},"symbol":"AZM","narrow":"AZM"},"AZN":{"displayName":{"other":"๐‘„ƒ๐‘„Ž๐‘„ข๐‘„ด๐‘„๐‘„ญ๐‘„Ž๐‘„š๐‘„ด ๐‘„Ÿ๐‘„š๐‘„–๐‘„ด"},"symbol":"AZN","narrow":"โ‚ผ"},"BAD":{"displayName":{"other":"๐‘„๐‘„ง๐‘„ฅ๐‘„ด๐‘„š๐‘„จ๐‘„  ๐‘„ƒ๐‘„ณ๐‘„ƒ ๐‘„ฆ๐‘„ข๐‘„ด๐‘„Ž๐‘„ฌ๐‘„‰๐‘„ฎ๐‘„ž๐‘„จ๐‘„š ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"BAD","narrow":"BAD"},"BAM":{"displayName":{"other":"๐‘„๐‘„ง๐‘„ฅ๐‘„ด๐‘„š๐‘„จ๐‘„  ๐‘„ƒ๐‘„ณ๐‘„ƒ ๐‘„ฆ๐‘„ข๐‘„ด๐‘„Ž๐‘„ฌ๐‘„‰๐‘„ฎ๐‘„ž๐‘„จ๐‘„š ๐‘„Ÿ๐‘„ข๐‘„ด๐‘„‡๐‘„ด"},"symbol":"BAM","narrow":"KM"},"BAN":{"displayName":{"other":"BAN"},"symbol":"BAN","narrow":"BAN"},"BBD":{"displayName":{"other":"๐‘„๐‘„ข๐‘„ด๐‘„๐‘„ฌ๐‘„“๐‘„ฎ๐‘„Ž๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"BBD","narrow":"$"},"BDT":{"displayName":{"other":"๐‘„๐‘„๐‘„ฃ๐‘„˜๐‘„ฌ๐‘„ฅ๐‘„จ ๐‘„‘๐‘„ฌ๐‘„‹"},"symbol":"เงณ","narrow":"เงณ"},"BEC":{"displayName":{"other":"๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด๐‘„˜๐‘„Ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ด๐‘„‡๐‘„ด (๐‘„๐‘„ฎ๐‘„˜๐‘„ฎ๐‘„ฃ๐‘„ฌ๐‘„ญ๐‘„›๐‘„ข๐‘„ฌ)"},"symbol":"BEC","narrow":"BEC"},"BEF":{"displayName":{"other":"๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด๐‘„˜๐‘„Ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ด๐‘„‡๐‘„ด"},"symbol":"BEF","narrow":"BEF"},"BEL":{"displayName":{"other":"๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด๐‘„˜๐‘„Ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ด๐‘„‡๐‘„ด (๐‘„ƒ๐‘„ข๐‘„ด๐‘„—๐‘„จ๐‘„‡๐‘„ด)"},"symbol":"BEL","narrow":"BEL"},"BGL":{"displayName":{"other":"๐‘„๐‘„ช๐‘„ฃ๐‘„ด๐‘„‰๐‘„ฌ๐‘„ข๐‘„ฉ๐‘„ ๐‘„ง ๐‘„ฆ๐‘„ข๐‘„ด๐‘„“๐‘„ด ๐‘„ฃ๐‘„ฌ๐‘„ž๐‘„ด"},"symbol":"BGL","narrow":"BGL"},"BGM":{"displayName":{"other":"BGM"},"symbol":"BGM","narrow":"BGM"},"BGN":{"displayName":{"other":"๐‘„๐‘„ช๐‘„ฃ๐‘„ด๐‘„‰๐‘„ฌ๐‘„ข๐‘„ฉ๐‘„ ๐‘„ง ๐‘„š๐‘„ฑ ๐‘„ฃ๐‘„ฌ๐‘„ž๐‘„ด"},"symbol":"BGN","narrow":"BGN"},"BGO":{"displayName":{"other":"BGO"},"symbol":"BGO","narrow":"BGO"},"BHD":{"displayName":{"other":"๐‘„๐‘„ฆ๐‘„ง๐‘„ข๐‘„ญ๐‘„š๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"BHD","narrow":"BHD"},"BIF":{"displayName":{"other":"๐‘„๐‘„ช๐‘„ข๐‘„ช๐‘„š๐‘„ด๐‘„“๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ด๐‘„‡๐‘„ด"},"symbol":"BIF","narrow":"BIF"},"BMD":{"displayName":{"other":"๐‘„๐‘„ข๐‘„ด๐‘„Ÿ๐‘„จ๐‘„…๐‘„ช๐‘„“๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"BMD","narrow":"$"},"BND":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„ช๐‘„š๐‘„ฌ๐‘„ญ ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"BND","narrow":"$"},"BOB":{"displayName":{"other":"๐‘„๐‘„ง๐‘„ฃ๐‘„จ๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ฎ"},"symbol":"BOB","narrow":"Bs"},"BOL":{"displayName":{"other":"BOL"},"symbol":"BOL","narrow":"BOL"},"BOP":{"displayName":{"other":"๐‘„๐‘„ง๐‘„ฃ๐‘„จ๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"BOP","narrow":"BOP"},"BOV":{"displayName":{"other":"๐‘„๐‘„ง๐‘„ฃ๐‘„จ๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„Ÿ๐‘„ง๐‘„ž๐‘„ด๐‘„“๐‘„ฎ๐‘„ฃ๐‘„ด"},"symbol":"BOV","narrow":"BOV"},"BRB":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„Ž๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ณ๐‘„ข๐‘„ช๐‘„Ž๐‘„ฌ๐‘„ ๐‘„ง๐‘„ข๐‘„ฎ๐‘„š๐‘„ฎ๐‘„ž๐‘„ฎ (๐‘„ท๐‘„ฟ๐‘„ผ๐‘„ฝ-๐‘„ท๐‘„ฟ๐‘„พ๐‘„ผ)"},"symbol":"BRB","narrow":"BRB"},"BRC":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„Ž๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ณ๐‘„ข๐‘„ช๐‘„Ž๐‘„ฌ๐‘„ญ๐‘„“๐‘„…๐‘„ช"},"symbol":"BRC","narrow":"BRC"},"BRE":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„Ž๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ณ๐‘„ข๐‘„ช๐‘„Ž๐‘„ฌ๐‘„ ๐‘„ง๐‘„ข๐‘„ฎ (๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ถ-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„น)"},"symbol":"BRE","narrow":"BRE"},"BRL":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„Ž๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„จ๐‘„ ๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"R$","narrow":"R$"},"BRN":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„Ž๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„๐‘„ณ๐‘„ข๐‘„ช๐‘„Ž๐‘„ฌ๐‘„ญ๐‘„“๐‘„ฎ ๐‘„š๐‘„ฎ๐‘„ž๐‘„ฎ"},"symbol":"BRN","narrow":"BRN"},"BRR":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„Ž๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„๐‘„ณ๐‘„ข๐‘„ช๐‘„Ž๐‘„ฌ๐‘„ ๐‘„ง๐‘„ข๐‘„ฎ"},"symbol":"BRR","narrow":"BRR"},"BRZ":{"displayName":{"other":"BRZ"},"symbol":"BRZ","narrow":"BRZ"},"BSD":{"displayName":{"other":"๐‘„๐‘„ฆ๐‘„Ÿ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"BSD","narrow":"$"},"BTN":{"displayName":{"other":"๐‘„ž๐‘„ช๐‘„‘๐‘„š๐‘„จ ๐‘„ƒ๐‘„ฌ๐‘„š๐‘„ด๐‘„‰๐‘„ช๐‘„ฃ๐‘„ด๐‘„‘๐‘„ณ๐‘„ข๐‘„Ÿ๐‘„ด๐‘„›๐‘„ด"},"symbol":"BTN","narrow":"BTN"},"BUK":{"displayName":{"other":"๐‘„๐‘„ง๐‘„ข๐‘„ด๐‘„Ÿ๐‘„จ ๐‘„‡๐‘„จ๐‘„ ๐‘„–๐‘„ด"},"symbol":"BUK","narrow":"BUK"},"BWP":{"displayName":{"other":"๐‘„๐‘„ง๐‘„–๐‘„ด๐‘„ฅ๐‘„ฎ๐‘„ ๐‘„š ๐‘„›๐‘„ช๐‘„ฃ"},"symbol":"BWP","narrow":"P"},"BYB":{"displayName":{"other":"๐‘„๐‘„ฌ๐‘„ฃ๐‘„ข๐‘„ช๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„š๐‘„จ๐‘„…๐‘„ช ๐‘„ข๐‘„ช๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด (๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„บ-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ฟ)"},"symbol":"BYB","narrow":"BYB"},"BYN":{"displayName":{"other":"๐‘„๐‘„ฌ๐‘„ฃ๐‘„ข๐‘„ช๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"BYN","narrow":"ั€."},"BYR":{"displayName":{"other":"๐‘„๐‘„ฌ๐‘„ฃ๐‘„ข๐‘„ช๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด(๐‘„ธ๐‘„ถ๐‘„ถ๐‘„ถ-๐‘„ธ๐‘„ถ๐‘„ท๐‘„ผ)"},"symbol":"BYR","narrow":"BYR"},"BZD":{"displayName":{"other":"๐‘„๐‘„ฌ๐‘„ฃ๐‘„จ๐‘„Ž๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"BZD","narrow":"$"},"CAD":{"displayName":{"other":"๐‘„‡๐‘„š๐‘„“๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"CA$","narrow":"$"},"CDF":{"displayName":{"other":"๐‘„‡๐‘„ง๐‘„‹๐‘„ด๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„จ๐‘„Œ๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„๐‘„‡๐‘„ด"},"symbol":"CDF","narrow":"CDF"},"CHE":{"displayName":{"other":"CHE"},"symbol":"CHE","narrow":"CHE"},"CHF":{"displayName":{"other":"๐‘„ฅ๐‘„ญ๐‘„ช๐‘„ฅ๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„€"},"symbol":"CHF","narrow":"CHF"},"CHW":{"displayName":{"other":"CHW"},"symbol":"CHW","narrow":"CHW"},"CLE":{"displayName":{"other":"CLE"},"symbol":"CLE","narrow":"CLE"},"CLF":{"displayName":{"other":"๐‘„Œ๐‘„จ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ƒ๐‘„ช๐‘„š๐‘„จ๐‘„˜๐‘„˜๐‘„ฌ๐‘„ฅ๐‘„ด ๐‘„˜๐‘„จ ๐‘„œ๐‘„ฎ๐‘„Ÿ๐‘„ฌ๐‘„š๐‘„ด๐‘„–๐‘„ฎ"},"symbol":"CLF","narrow":"CLF"},"CLP":{"displayName":{"other":"๐‘„Œ๐‘„จ๐‘„ฃ๐‘„จ ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"CLP","narrow":"$"},"CNH":{"displayName":{"other":"CNH"},"symbol":"CNH","narrow":"CNH"},"CNX":{"displayName":{"other":"CNX"},"symbol":"CNX","narrow":"CNX"},"CNY":{"displayName":{"other":"๐‘„Œ๐‘„ฉ๐‘„š ๐‘„ ๐‘„ช๐‘„ ๐‘„š๐‘„ด"},"symbol":"CNยฅ","narrow":"ยฅ"},"COP":{"displayName":{"other":"๐‘„‡๐‘„ง๐‘„ฃ๐‘„ฎ๐‘„Ÿ๐‘„ด๐‘„๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"COP","narrow":"$"},"COU":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„š๐‘„จ๐‘„˜๐‘„–๐‘„ด ๐‘„˜๐‘„จ ๐‘„ž๐‘„ณ๐‘„ ๐‘„ฃ๐‘„ฎ๐‘„ข๐‘„ด ๐‘„ข๐‘„จ๐‘„ ๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"COU","narrow":"COU"},"CRC":{"displayName":{"other":"๐‘„‡๐‘„ฎ๐‘„ฅ๐‘„ด๐‘„‘๐‘„ข๐‘„จ๐‘„‡ ๐‘„‡๐‘„ฎ๐‘„ฃ๐‘„ฎ๐‘„š๐‘„ด"},"symbol":"CRC","narrow":"โ‚ก"},"CSD":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„ข๐‘„ฎ๐‘„š๐‘„จ ๐‘„ฅ๐‘„ข๐‘„ด๐‘„๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"CSD","narrow":"CSD"},"CSK":{"displayName":{"other":"๐‘„Œ๐‘„ฌ๐‘„‡๐‘„ฎ๐‘„ฅ๐‘„ณ๐‘„ฃ๐‘„ฎ๐‘„ž๐‘„‡๐‘„ด ๐‘„ฆ๐‘„ข๐‘„ด๐‘„“๐‘„ด ๐‘„‡๐‘„ฎ๐‘„ข๐‘„ช๐‘„š"},"symbol":"CSK","narrow":"CSK"},"CUC":{"displayName":{"other":"๐‘„‡๐‘„จ๐‘„…๐‘„ช๐‘„๐‘„š๐‘„ด ๐‘„๐‘„ฎ๐‘„˜๐‘„ฎ๐‘„ฃ๐‘„จ๐‘„›๐‘„ข๐‘„ฌ ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"CUC","narrow":"$"},"CUP":{"displayName":{"other":"๐‘„‡๐‘„จ๐‘„…๐‘„ช๐‘„๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"CUP","narrow":"$"},"CVE":{"displayName":{"other":"๐‘„‡๐‘„ฌ๐‘„›๐‘„ด ๐‘„ž๐‘„ข๐‘„ด๐‘„˜๐‘„ฌ ๐‘„ƒ๐‘„ฌ๐‘„ฅ๐‘„ด๐‘„‡๐‘„ช๐‘„“๐‘„ฎ"},"symbol":"CVE","narrow":"CVE"},"CYP":{"displayName":{"other":"๐‘„ฅ๐‘„ญ๐‘„›๐‘„ณ๐‘„ข๐‘„ฅ๐‘„ด ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ด๐‘„“๐‘„ด"},"symbol":"CYP","narrow":"CYP"},"CZK":{"displayName":{"other":"๐‘„Œ๐‘„ฌ๐‘„‡๐‘„ด ๐‘„›๐‘„ณ๐‘„ข๐‘„ง๐‘„Ž๐‘„–๐‘„ง๐‘„š๐‘„ด๐‘„–๐‘„ณ๐‘„ข๐‘„ง ๐‘„‡๐‘„ฎ๐‘„ข๐‘„ช๐‘„š"},"symbol":"CZK","narrow":"Kฤ"},"DDM":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„‰๐‘„ฌ๐‘„˜๐‘„จ ๐‘„Ž๐‘„ข๐‘„ด๐‘„Ÿ๐‘„š๐‘„ด ๐‘„Ÿ๐‘„ข๐‘„ด๐‘„‡๐‘„ด"},"symbol":"DDM","narrow":"DDM"},"DEM":{"displayName":{"other":"๐‘„“๐‘„ง๐‘„ ๐‘„ง๐‘„Œ๐‘„ด ๐‘„Ÿ๐‘„ข๐‘„ด๐‘„‡๐‘„ด"},"symbol":"DEM","narrow":"DEM"},"DJF":{"displayName":{"other":"๐‘„Ž๐‘„จ๐‘„๐‘„ช๐‘„–๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„","one":"๐‘„Ž๐‘„จ๐‘„๐‘„ช๐‘„–๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„๐‘„‡๐‘„ด"},"symbol":"DJF","narrow":"DJF"},"DKK":{"displayName":{"other":"๐‘„“๐‘„ณ๐‘„ ๐‘„š๐‘„จ๐‘„Œ๐‘„ด ๐‘„‡๐‘„ณ๐‘„ข๐‘„ฏ๐‘„š๐‘„ด"},"symbol":"DKK","narrow":"kr"},"DOP":{"displayName":{"other":"๐‘„“๐‘„ฎ๐‘„Ÿ๐‘„จ๐‘„š๐‘„จ๐‘„‡๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"DOP","narrow":"$"},"DZD":{"displayName":{"other":"๐‘„ƒ๐‘„ข๐‘„ด๐‘„Ž๐‘„ฌ๐‘„ข๐‘„ฉ๐‘„ ๐‘„ง ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"DZD","narrow":"DZD"},"ECS":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„‡๐‘„ช๐‘„ ๐‘„“๐‘„ฎ๐‘„ข๐‘„ด ๐‘„ฅ๐‘„ช๐‘„‡๐‘„ณ๐‘„ข๐‘„ฌ"},"symbol":"ECS","narrow":"ECS"},"ECV":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„‡๐‘„ช๐‘„ ๐‘„“๐‘„ฎ๐‘„ข๐‘„ด ๐‘„ƒ๐‘„ช๐‘„š๐‘„จ๐‘„˜๐‘„˜๐‘„ฌ๐‘„Œ๐‘„ด ๐‘„˜๐‘„จ ๐‘„ž๐‘„ฌ๐‘„ฃ๐‘„ง๐‘„ข๐‘„ด ๐‘„‡๐‘„ง๐‘„š๐‘„ด๐‘„ฅ๐‘„ด๐‘„–๐‘„š๐‘„ด๐‘„–๐‘„ฌ (๐‘„ƒ๐‘„จ๐‘„…๐‘„ช๐‘„ž๐‘„จ๐‘„ฅ๐‘„จ)"},"symbol":"ECV","narrow":"ECV"},"EEK":{"displayName":{"other":"๐‘„ƒ๐‘„ฌ๐‘„Œ๐‘„ด๐‘„–๐‘„ฎ๐‘„š๐‘„จ๐‘„  ๐‘„‡๐‘„ณ๐‘„ข๐‘„ช๐‘„š๐‘„จ"},"symbol":"EEK","narrow":"EEK"},"EGP":{"displayName":{"other":"๐‘„Ÿ๐‘„จ๐‘„ฅ๐‘„ง๐‘„ข๐‘„ฉ๐‘„ ๐‘„ด ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ด๐‘„“๐‘„ด"},"symbol":"EGP","narrow":"Eยฃ"},"ERN":{"displayName":{"other":"๐‘„ƒ๐‘„ฌ๐‘„ข๐‘„จ๐‘„‘๐‘„ณ๐‘„ข๐‘„จ๐‘„ ๐‘„ฌ๐‘„š๐‘„ด ๐‘„š๐‘„‡๐‘„ด๐‘„œ"},"symbol":"ERN","narrow":"ERN"},"ESA":{"displayName":{"other":"๐‘„ฅ๐‘„ณ๐‘„›๐‘„ณ๐‘„ ๐‘„š๐‘„จ๐‘„ฅ๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฌ๐‘„– (๐‘„ƒ๐‘„ฌ๐‘„‡๐‘„ด๐‘„‡๐‘„ญ๐‘„ช ๐‘„ฆ๐‘„จ๐‘„Ž๐‘„ฌ๐‘„›๐‘„ด)"},"symbol":"ESA","narrow":"ESA"},"ESB":{"displayName":{"other":"๐‘„ฅ๐‘„ณ๐‘„›๐‘„ณ๐‘„ ๐‘„š๐‘„จ๐‘„ฅ๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฌ๐‘„– (๐‘„๐‘„ฎ๐‘„˜๐‘„ฎ๐‘„ฃ๐‘„ฌ๐‘„ญ ๐‘„›๐‘„ข๐‘„ฌ ๐‘„ฆ๐‘„จ๐‘„Ž๐‘„ฌ๐‘„›๐‘„ด)"},"symbol":"ESB","narrow":"ESB"},"ESP":{"displayName":{"other":"๐‘„ฅ๐‘„ณ๐‘„›๐‘„ณ๐‘„ ๐‘„š๐‘„จ๐‘„ฅ๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฌ๐‘„–"},"symbol":"ESP","narrow":"โ‚ง"},"ETB":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„—๐‘„จ๐‘„ƒ๐‘„ฎ๐‘„›๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„๐‘„จ๐‘„ข๐‘„ด"},"symbol":"ETB","narrow":"ETB"},"EUR":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„…๐‘„ช๐‘„ข๐‘„ฎ"},"symbol":"โ‚ฌ","narrow":"โ‚ฌ"},"FIM":{"displayName":{"other":"๐‘„œ๐‘„จ๐‘„š๐‘„จ๐‘„ฅ๐‘„ด ๐‘„Ÿ๐‘„ข๐‘„ด๐‘„‡"},"symbol":"FIM","narrow":"FIM"},"FJD":{"displayName":{"other":"๐‘„œ๐‘„จ๐‘„Ž๐‘„จ ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"FJD","narrow":"$"},"FKP":{"displayName":{"other":"๐‘„œ๐‘„ง๐‘„‡๐‘„ด๐‘„ฃ๐‘„ณ๐‘„ ๐‘„š๐‘„ด๐‘„“๐‘„ด ๐‘„‰๐‘„ญ ๐‘„‰๐‘„ญ ๐‘„ž๐‘„จ๐‘„˜๐‘„ฌ ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ด๐‘„“๐‘„ด"},"symbol":"FKP","narrow":"ยฃ"},"FRF":{"displayName":{"other":"๐‘„œ๐‘„ง๐‘„ข๐‘„ฅ๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„๐‘„‡๐‘„ด"},"symbol":"FRF","narrow":"FRF"},"GBP":{"displayName":{"other":"๐‘„๐‘„ณ๐‘„ข๐‘„จ๐‘„‘๐‘„จ๐‘„Œ๐‘„ด ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ด"},"symbol":"ยฃ","narrow":"ยฃ"},"GEK":{"displayName":{"other":"๐‘„Ž๐‘„ง๐‘„ข๐‘„ด๐‘„Ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ช๐‘„›๐‘„ง๐‘„š๐‘„ด ๐‘„ฃ๐‘„ข๐‘„จ๐‘„–๐‘„ด"},"symbol":"GEK","narrow":"GEK"},"GEL":{"displayName":{"other":"๐‘„Ž๐‘„ง๐‘„ข๐‘„ด๐‘„Ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฃ๐‘„ข๐‘„จ"},"symbol":"GEL","narrow":"โ‚พ"},"GHC":{"displayName":{"other":"๐‘„Š๐‘„š ๐‘„ฅ๐‘„ฌ๐‘„“๐‘„จ (๐‘„ท๐‘„ฟ๐‘„ฝ๐‘„ฟ-๐‘„ธ๐‘„ถ๐‘„ถ๐‘„ฝ)"},"symbol":"GHC","narrow":"GHC"},"GHS":{"displayName":{"other":"๐‘„Š๐‘„š ๐‘„ฅ๐‘„ฌ๐‘„“๐‘„จ"},"symbol":"GHS","narrow":"GHโ‚ต"},"GIP":{"displayName":{"other":"๐‘„Ž๐‘„จ๐‘„๐‘„ณ๐‘„ข๐‘„ฃ๐‘„ด๐‘„‘๐‘„ข๐‘„ด ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"GIP","narrow":"ยฃ"},"GMD":{"displayName":{"other":"๐‘„‰๐‘„Ÿ๐‘„ด๐‘„๐‘„จ๐‘„  ๐‘„“๐‘„ฃ๐‘„ฅ๐‘„จ"},"symbol":"GMD","narrow":"GMD"},"GNF":{"displayName":{"other":"๐‘„‰๐‘„จ๐‘„š๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"GNF","narrow":"FG"},"GNS":{"displayName":{"other":"๐‘„‰๐‘„จ๐‘„š๐‘„จ ๐‘„ฅ๐‘„ญ๐‘„ฃ๐‘„จ"},"symbol":"GNS","narrow":"GNS"},"GQE":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„‡๐‘„ช๐‘„ ๐‘„ฌ๐‘„‘๐‘„ฎ๐‘„ข๐‘„จ๐‘„ ๐‘„ฃ๐‘„ด ๐‘„‰๐‘„จ๐‘„š๐‘„จ ๐‘„ƒ๐‘„จ๐‘„‡๐‘„ช๐‘„ ๐‘„จ๐‘„ฃ๐‘„จ"},"symbol":"GQE","narrow":"GQE"},"GRD":{"displayName":{"other":"๐‘„‰๐‘„ณ๐‘„ข๐‘„ฉ๐‘„‡๐‘„ด ๐‘„˜๐‘„ณ๐‘„ข๐‘„Œ๐‘„ด๐‘„Ÿ"},"symbol":"GRD","narrow":"GRD"},"GTQ":{"displayName":{"other":"๐‘„‰๐‘„ช๐‘„ ๐‘„–๐‘„ฌ๐‘„Ÿ๐‘„ฃ๐‘„ง ๐‘„‡๐‘„ช๐‘„ ๐‘„ฌ๐‘„–๐‘„ด๐‘„Ž๐‘„ฃ๐‘„ด"},"symbol":"GTQ","narrow":"Q"},"GWE":{"displayName":{"other":"๐‘„›๐‘„ง๐‘„ข๐‘„ด๐‘„–๐‘„ช๐‘„‰๐‘„จ๐‘„Ž๐‘„ด ๐‘„‰๐‘„จ๐‘„š๐‘„จ ๐‘„ƒ๐‘„ฌ๐‘„ฅ๐‘„ด๐‘„‡๐‘„ช๐‘„“๐‘„ฎ"},"symbol":"GWE","narrow":"GWE"},"GWP":{"displayName":{"other":"๐‘„‰๐‘„จ๐‘„š๐‘„จ ๐‘„ฅ๐‘„จ๐‘„ฅ๐‘„…๐‘„ช ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"GWP","narrow":"GWP"},"GYD":{"displayName":{"other":"๐‘„‰๐‘„ญ๐‘„ ๐‘„ฌ๐‘„š ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"GYD","narrow":"$"},"HKD":{"displayName":{"other":"๐‘„ฆ๐‘„ง๐‘„๐‘„‡๐‘„ง๐‘„ ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"HK$","narrow":"$"},"HNL":{"displayName":{"other":"๐‘„ฆ๐‘„ช๐‘„š๐‘„ด๐‘„“๐‘„ช๐‘„ข๐‘„ฅ๐‘„ด ๐‘„ฃ๐‘„ฌ๐‘„Ÿ๐‘„ด๐‘„›๐‘„จ๐‘„ข"},"symbol":"HNL","narrow":"L"},"HRD":{"displayName":{"other":"๐‘„‡๐‘„ณ๐‘„ข๐‘„ฎ๐‘„ ๐‘„ฌ๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"HRD","narrow":"HRD"},"HRK":{"displayName":{"other":"๐‘„‡๐‘„ณ๐‘„ข๐‘„ฎ๐‘„ ๐‘„ฌ๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ช๐‘„š"},"symbol":"HRK","narrow":"kn"},"HTG":{"displayName":{"other":"๐‘„ฆ๐‘„ญ๐‘„–๐‘„จ ๐‘„‰๐‘„ฏ๐‘„ข๐‘„ด๐‘„˜๐‘„ฌ"},"symbol":"HTG","narrow":"HTG"},"HUF":{"displayName":{"other":"๐‘„ฆ๐‘„‹๐‘„ด๐‘„‰๐‘„ฌ๐‘„ข๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„œ๐‘„ฎ๐‘„ข๐‘„จ๐‘„š๐‘„ณ๐‘„‘๐‘„ด"},"symbol":"HUF","narrow":"Ft"},"IDR":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„˜๐‘„ฎ๐‘„š๐‘„ฌ๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„›๐‘„จ๐‘„ ๐‘„ณ๐‘„ฆ๐‘„ด"},"symbol":"IDR","narrow":"Rp"},"IEP":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ข๐‘„จ๐‘„Œ๐‘„ด ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"IEP","narrow":"IEP"},"ILP":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ฅ๐‘„ณ๐‘„ข๐‘„ญ๐‘„ฃ๐‘„จ ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"ILP","narrow":"ILP"},"ILR":{"displayName":{"other":"ILR"},"symbol":"ILR","narrow":"ILR"},"ILS":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ฅ๐‘„ณ๐‘„ข๐‘„ญ๐‘„ฃ๐‘„จ ๐‘„š๐‘„ฑ ๐‘„ฅ๐‘„ฌ๐‘„‡๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"โ‚ช","narrow":"โ‚ช"},"INR":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„˜๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„›๐‘„จ"},"symbol":"โ‚น","narrow":"โ‚น"},"IQD":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ข๐‘„‡๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"IQD","narrow":"IQD"},"IRR":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ข๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„จ๐‘„ ๐‘„ฃ๐‘„ด"},"symbol":"IRR","narrow":"IRR"},"ISJ":{"displayName":{"other":"ISJ"},"symbol":"ISJ","narrow":"ISJ"},"ISK":{"displayName":{"other":"๐‘„ƒ๐‘„ญ๐‘„ฅ๐‘„ด๐‘„ฃ๐‘„ณ๐‘„ ๐‘„š๐‘„ณ๐‘„“๐‘„ด ๐‘„‡๐‘„ณ๐‘„ข๐‘„ฏ๐‘„š๐‘„ด"},"symbol":"ISK","narrow":"kr"},"ITL":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„–๐‘„ฃ๐‘„จ๐‘„ ๐‘„ง ๐‘„ฃ๐‘„จ๐‘„ข"},"symbol":"ITL","narrow":"ITL"},"JMD":{"displayName":{"other":"๐‘„Ž๐‘„Ÿ๐‘„ญ๐‘„‡๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"JMD","narrow":"$"},"JOD":{"displayName":{"other":"๐‘„Ž๐‘„ง๐‘„ข๐‘„ด๐‘„“๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"JOD","narrow":"JOD"},"JPY":{"displayName":{"other":"๐‘„Ž๐‘„›๐‘„š๐‘„จ ๐‘„ƒ๐‘„จ๐‘„ ๐‘„ฌ๐‘„š๐‘„ด"},"symbol":"JPยฅ","narrow":"ยฅ"},"KES":{"displayName":{"other":"๐‘„‡๐‘„ฌ๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„จ๐‘„"},"symbol":"KES","narrow":"KES"},"KGS":{"displayName":{"other":"๐‘„‡๐‘„จ๐‘„ข๐‘„ด๐‘„‰๐‘„จ๐‘„Ž๐‘„ด๐‘„ƒ๐‘„จ๐‘„ฅ๐‘„ด๐‘„–๐‘„š๐‘„ด ๐‘„ฅ๐‘„ฎ๐‘„Ÿ๐‘„ด"},"symbol":"KGS","narrow":"KGS"},"KHR":{"displayName":{"other":"๐‘„‡๐‘„ง๐‘„Ÿ๐‘„ด๐‘„๐‘„ฎ๐‘„“๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„จ๐‘„ ๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"KHR","narrow":"แŸ›"},"KMF":{"displayName":{"other":"๐‘„‡๐‘„ง๐‘„Ÿ๐‘„ด๐‘„๐‘„ฎ๐‘„ข๐‘„ฎ ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"KMF","narrow":"CF"},"KPW":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„–๐‘„ด๐‘„–๐‘„ฎ๐‘„ข๐‘„ด ๐‘„‡๐‘„ฎ๐‘„ข๐‘„จ๐‘„ ๐‘„ข๐‘„ด ๐‘„ƒ๐‘„ฎ๐‘„š๐‘„ด"},"symbol":"KPW","narrow":"โ‚ฉ"},"KRH":{"displayName":{"other":"KRH"},"symbol":"KRH","narrow":"KRH"},"KRO":{"displayName":{"other":"KRO"},"symbol":"KRO","narrow":"KRO"},"KRW":{"displayName":{"other":"๐‘„˜๐‘„ง๐‘„‰๐‘„จ๐‘„š๐‘„ด ๐‘„‡๐‘„ฎ๐‘„ข๐‘„จ๐‘„ ๐‘„ข๐‘„ด ๐‘„ƒ๐‘„ฎ๐‘„š๐‘„ด"},"symbol":"โ‚ฉ","narrow":"โ‚ฉ"},"KWD":{"displayName":{"other":"๐‘„‡๐‘„ช๐‘„ ๐‘„ฌ๐‘„–๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"KWD","narrow":"KWD"},"KYD":{"displayName":{"other":"๐‘„‡๐‘„ฌ๐‘„Ÿ๐‘„ณ๐‘„ ๐‘„š๐‘„ด ๐‘„‰๐‘„ญ ๐‘„‰๐‘„ญ ๐‘„ž๐‘„จ๐‘„˜๐‘„ฌ๐‘„ข๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"KYD","narrow":"$"},"KZT":{"displayName":{"other":"๐‘„‡๐‘„Ž๐‘„ˆ๐‘„ฅ๐‘„ด๐‘„–๐‘„š๐‘„จ ๐‘„‘๐‘„ฌ๐‘„‹๐‘„ด๐‘„‰๐‘„ฌ"},"symbol":"KZT","narrow":"โ‚ธ"},"LAK":{"displayName":{"other":"๐‘„ฃ๐‘„ฌ๐‘„…๐‘„ช๐‘„ฅ๐‘„š๐‘„ด ๐‘„‡๐‘„จ๐‘„›๐‘„ด"},"symbol":"LAK","narrow":"โ‚ญ"},"LBP":{"displayName":{"other":"๐‘„ฃ๐‘„ฌ๐‘„๐‘„š๐‘„จ๐‘„Ž๐‘„ด ๐‘„›๐‘„…๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"LBP","narrow":"Lยฃ"},"LKR":{"displayName":{"other":"๐‘„ฅ๐‘„ณ๐‘„ข๐‘„จ๐‘„ฃ๐‘„ง๐‘„๐‘„‡๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„›๐‘„จ"},"symbol":"LKR","narrow":"Rs"},"LRD":{"displayName":{"other":"๐‘„ฃ๐‘„จ๐‘„๐‘„ฌ๐‘„ข๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"LRD","narrow":"$"},"LSL":{"displayName":{"other":"๐‘„ฃ๐‘„ฌ๐‘„ฅ๐‘„ช๐‘„‘๐‘„ช ๐‘„ฃ๐‘„ฎ๐‘„‘๐‘„จ"},"symbol":"LSL","narrow":"LSL"},"LTL":{"displayName":{"other":"๐‘„ฃ๐‘„จ๐‘„—๐‘„ญ๐‘„ช๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฃ๐‘„จ๐‘„‘"},"symbol":"LTL","narrow":"Lt"},"LTT":{"displayName":{"other":"๐‘„ฃ๐‘„จ๐‘„—๐‘„ญ๐‘„ช๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‘๐‘„ฃ๐‘„ฎ๐‘„š๐‘„ณ๐‘„ ๐‘„ฅ๐‘„ด"},"symbol":"LTT","narrow":"LTT"},"LUC":{"displayName":{"other":"๐‘„ฃ๐‘„ช๐‘„‡๐‘„ด๐‘„ฅ๐‘„ฌ๐‘„Ÿ๐‘„ด๐‘„๐‘„ข๐‘„ด๐‘„‰๐‘„ด ๐‘„๐‘„ฎ๐‘„˜๐‘„ฎ๐‘„ฃ๐‘„ฌ๐‘„๐‘„ข๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‡๐‘„ณ๐‘„‹๐‘„ด"},"symbol":"LUC","narrow":"LUC"},"LUF":{"displayName":{"other":"๐‘„ฃ๐‘„ช๐‘„‡๐‘„ด๐‘„ฅ๐‘„ฌ๐‘„Ÿ๐‘„ด๐‘„๐‘„ข๐‘„ด๐‘„‰๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‡๐‘„ณ๐‘„‹๐‘„ด"},"symbol":"LUF","narrow":"LUF"},"LUL":{"displayName":{"other":"๐‘„ฃ๐‘„ช๐‘„‡๐‘„ด๐‘„ฅ๐‘„ฌ๐‘„Ÿ๐‘„ด๐‘„๐‘„ข๐‘„ด๐‘„‰๐‘„ด ๐‘„œ๐‘„ญ๐‘„š๐‘„ฌ๐‘„š๐‘„ด๐‘„ฅ๐‘„จ๐‘„ ๐‘„ฃ๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‡๐‘„ณ๐‘„‹๐‘„ด"},"symbol":"LUL","narrow":"LUL"},"LVL":{"displayName":{"other":"๐‘„ฃ๐‘„ณ๐‘„ ๐‘„‘๐‘„ด๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฃ๐‘„ณ๐‘„ ๐‘„‘๐‘„ด๐‘„ฅ๐‘„ด"},"symbol":"LVL","narrow":"Ls"},"LVR":{"displayName":{"other":"๐‘„ฃ๐‘„ณ๐‘„ ๐‘„‘๐‘„ด๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„๐‘„ง๐‘„ฃ๐‘„ด"},"symbol":"LVR","narrow":"LVR"},"LYD":{"displayName":{"other":"๐‘„ฃ๐‘„จ๐‘„๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"LYD","narrow":"LYD"},"MAD":{"displayName":{"other":"๐‘„Ÿ๐‘„ฎ๐‘„ข๐‘„ฎ๐‘„‡๐‘„ณ๐‘„ฆ๐‘„š๐‘„ด ๐‘„˜๐‘„จ๐‘„ข๐‘„ด๐‘„ฆ๐‘„Ÿ๐‘„ด"},"symbol":"MAD","narrow":"MAD"},"MAF":{"displayName":{"other":"๐‘„Ÿ๐‘„ฎ๐‘„ข๐‘„ฎ๐‘„‡๐‘„ณ๐‘„ฆ๐‘„š๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"MAF","narrow":"MAF"},"MCF":{"displayName":{"other":"MCF"},"symbol":"MCF","narrow":"MCF"},"MDC":{"displayName":{"other":"MDC"},"symbol":"MDC","narrow":"MDC"},"MDL":{"displayName":{"other":"๐‘„Ÿ๐‘„ฎ๐‘„ฃ๐‘„ด๐‘„“๐‘„ฎ๐‘„ž๐‘„š๐‘„ด ๐‘„ฃ๐‘„ฌ๐‘„ ๐‘„ช"},"symbol":"MDL","narrow":"MDL"},"MGA":{"displayName":{"other":"๐‘„Ÿ๐‘„˜๐‘„‰๐‘„Œ๐‘„ด๐‘„‡๐‘„ข๐‘„ด ๐‘„ƒ๐‘„ข๐‘„จ๐‘„ ๐‘„ข๐‘„จ"},"symbol":"MGA","narrow":"Ar"},"MGF":{"displayName":{"other":"๐‘„Ÿ๐‘„˜๐‘„‰๐‘„Œ๐‘„ด๐‘„‡๐‘„ข๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"MGF","narrow":"MGF"},"MKD":{"displayName":{"other":"๐‘„Ÿ๐‘„ณ๐‘„ ๐‘„ฅ๐‘„ฌ๐‘„“๐‘„ฎ๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"MKD","narrow":"MKD"},"MKN":{"displayName":{"other":"MKN"},"symbol":"MKN","narrow":"MKN"},"MLF":{"displayName":{"other":"๐‘„Ÿ๐‘„ฃ๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"MLF","narrow":"MLF"},"MMK":{"displayName":{"other":"๐‘„Ÿ๐‘„ ๐‘„š๐‘„ด๐‘„Ÿ๐‘„ข๐‘„ด ๐‘„‡๐‘„จ๐‘„ ๐‘„–๐‘„ด"},"symbol":"MMK","narrow":"K"},"MNT":{"displayName":{"other":"๐‘„Ÿ๐‘„ง๐‘„‹๐‘„ด๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„–๐‘„ช๐‘„‡๐‘„ด๐‘„ข๐‘„จ๐‘„‡๐‘„ด"},"symbol":"MNT","narrow":"โ‚ฎ"},"MOP":{"displayName":{"other":"๐‘„Ÿ๐‘„ณ๐‘„ ๐‘„‡๐‘„ณ๐‘„ ๐‘„ƒ๐‘„ฎ ๐‘„›๐‘„‘๐‘„‡"},"symbol":"MOP","narrow":"MOP"},"MRO":{"displayName":{"other":"๐‘„Ÿ๐‘„ฏ๐‘„ข๐‘„จ๐‘„–๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ƒ๐‘„ฎ๐‘„ƒ๐‘„ช๐‘„‰๐‘„ญ๐‘„ช๐‘„ "},"symbol":"MRO","narrow":"MRO"},"MRU":{"displayName":{"other":"MRU"},"symbol":"MRU","narrow":"MRU"},"MTL":{"displayName":{"other":"๐‘„Ÿ๐‘„ฃ๐‘„ด๐‘„‘ ๐‘„ฃ๐‘„จ๐‘„ข"},"symbol":"MTL","narrow":"MTL"},"MTP":{"displayName":{"other":"๐‘„Ÿ๐‘„ฃ๐‘„ด๐‘„‘ ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"MTP","narrow":"MTP"},"MUR":{"displayName":{"other":"๐‘„Ÿ๐‘„ฏ๐‘„ข๐‘„จ๐‘„–๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„›๐‘„จ"},"symbol":"MUR","narrow":"Rs"},"MVP":{"displayName":{"other":"MVP"},"symbol":"MVP","narrow":"MVP"},"MVR":{"displayName":{"other":"๐‘„Ÿ๐‘„ฃ๐‘„ด๐‘„˜๐‘„จ๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„œ๐‘„จ๐‘„ "},"symbol":"MVR","narrow":"MVR"},"MWK":{"displayName":{"other":"๐‘„Ÿ๐‘„ฃ๐‘„ƒ๐‘„ช๐‘„ƒ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ง๐‘„ค๐‘„Œ๐‘„ด"},"symbol":"MWK","narrow":"MWK"},"MXN":{"displayName":{"other":"๐‘„Ÿ๐‘„ณ๐‘„ ๐‘„‡๐‘„ด๐‘„ฅ๐‘„จ๐‘„‡๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"MX$","narrow":"$"},"MXP":{"displayName":{"other":"๐‘„Ÿ๐‘„ณ๐‘„ ๐‘„‡๐‘„ด๐‘„ฅ๐‘„จ๐‘„‡๐‘„š๐‘„ด ๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„ด๐‘„ž๐‘„ข๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ (๐‘„ท๐‘„พ๐‘„ผ๐‘„ท-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ธ)"},"symbol":"MXP","narrow":"MXP"},"MXV":{"displayName":{"other":"๐‘„Ÿ๐‘„ฌ๐‘„‡๐‘„ด๐‘„ฅ๐‘„จ๐‘„‡๐‘„š๐‘„ด ๐‘„ƒ๐‘„ช๐‘„š๐‘„จ๐‘„˜๐‘„–๐‘„ด ๐‘„˜๐‘„จ ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„ž๐‘„ข๐‘„ด๐‘„ฅ๐‘„ง๐‘„š๐‘„ด(UDI)"},"symbol":"MXV","narrow":"MXV"},"MYR":{"displayName":{"other":"๐‘„Ÿ๐‘„ฃ๐‘„ด๐‘„ ๐‘„ฌ๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„จ๐‘„๐‘„‰๐‘„จ๐‘„–๐‘„ด"},"symbol":"MYR","narrow":"RM"},"MZE":{"displayName":{"other":"๐‘„Ÿ๐‘„ฎ๐‘„Ž๐‘„Ÿ๐‘„ด๐‘„๐‘„จ๐‘„‡๐‘„ด ๐‘„ƒ๐‘„ฌ๐‘„ฅ๐‘„ด๐‘„‡๐‘„ช๐‘„“๐‘„ฎ"},"symbol":"MZE","narrow":"MZE"},"MZM":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„ข๐‘„ฎ๐‘„š๐‘„จ ๐‘„Ÿ๐‘„ฎ๐‘„Ž๐‘„Ÿ๐‘„ด๐‘„๐‘„จ๐‘„‡๐‘„ด ๐‘„Ÿ๐‘„ฌ๐‘„‘๐‘„จ๐‘„‡๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"MZM","narrow":"MZM"},"MZN":{"displayName":{"other":"๐‘„Ÿ๐‘„ฎ๐‘„Ž๐‘„Ÿ๐‘„ด๐‘„๐‘„จ๐‘„‡๐‘„ด ๐‘„Ÿ๐‘„ฌ๐‘„‘๐‘„จ๐‘„‡๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"MZN","narrow":"MZN"},"NAD":{"displayName":{"other":"๐‘„š๐‘„Ÿ๐‘„จ๐‘„๐‘„จ๐‘„  ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"NAD","narrow":"$"},"NGN":{"displayName":{"other":"๐‘„š๐‘„ญ๐‘„Ž๐‘„ฌ๐‘„ข๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„š๐‘„ ๐‘„ด๐‘„ข"},"symbol":"NGN","narrow":"โ‚ฆ"},"NIC":{"displayName":{"other":"๐‘„š๐‘„จ๐‘„‡๐‘„ข๐‘„‰๐‘„ช๐‘„ ๐‘„š ๐‘„‡๐‘„ง๐‘„ข๐‘„ด๐‘„“๐‘„ฎ๐‘„(๐‘„ท๐‘„ฟ๐‘„พ๐‘„พ-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ท)"},"symbol":"NIC","narrow":"NIC"},"NIO":{"displayName":{"other":"๐‘„š๐‘„จ๐‘„‡๐‘„ข๐‘„‰๐‘„ช๐‘„ ๐‘„š ๐‘„‡๐‘„ง๐‘„ข๐‘„ด๐‘„“๐‘„ฎ๐‘„"},"symbol":"NIO","narrow":"C$"},"NLG":{"displayName":{"other":"๐‘„š๐‘„ฌ๐‘„˜๐‘„ข๐‘„ด๐‘„ฃ๐‘„ณ๐‘„ ๐‘„š๐‘„ณ๐‘„“๐‘„ด ๐‘„‰๐‘„ช๐‘„ฃ๐‘„ด๐‘„“๐‘„ฌ๐‘„ข๐‘„ด"},"symbol":"NLG","narrow":"NLG"},"NOK":{"displayName":{"other":"๐‘„š๐‘„ง๐‘„ข๐‘„ด๐‘„ƒ๐‘„ฎ๐‘„ ๐‘„ฌ ๐‘„‡๐‘„ณ๐‘„ข๐‘„ฏ๐‘„š๐‘„ด"},"symbol":"NOK","narrow":"kr"},"NPR":{"displayName":{"other":"๐‘„š๐‘„ฌ๐‘„›๐‘„ฃ๐‘„จ ๐‘„ข๐‘„ช๐‘„›๐‘„จ"},"symbol":"NPR","narrow":"Rs"},"NZD":{"displayName":{"other":"๐‘„š๐‘„จ๐‘„ƒ๐‘„ช๐‘„Ž๐‘„จ๐‘„ฃ๐‘„ณ๐‘„ ๐‘„š๐‘„ณ๐‘„“๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"NZ$","narrow":"$"},"OMR":{"displayName":{"other":"๐‘„ƒ๐‘„ฎ๐‘„Ÿ๐‘„š๐‘„จ ๐‘„ข๐‘„จ๐‘„ ๐‘„ฃ๐‘„ด"},"symbol":"OMR","narrow":"OMR"},"PAB":{"displayName":{"other":"๐‘„›๐‘„š๐‘„Ÿ ๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด๐‘„๐‘„ฎ๐‘„ "},"symbol":"PAB","narrow":"PAB"},"PEI":{"displayName":{"other":"๐‘„›๐‘„ฌ๐‘„ข๐‘„ช๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„–๐‘„จ"},"symbol":"PEI","narrow":"PEI"},"PEN":{"displayName":{"other":"๐‘„›๐‘„ฌ๐‘„ข๐‘„ช๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฅ๐‘„ฎ๐‘„ฃ๐‘„ด"},"symbol":"PEN","narrow":"PEN"},"PES":{"displayName":{"other":"๐‘„›๐‘„ฌ๐‘„ข๐‘„ช๐‘„ž๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ฅ๐‘„ฎ๐‘„ฃ๐‘„ด(๐‘„ท๐‘„พ๐‘„ผ๐‘„น-๐‘„ท๐‘„ฟ๐‘„ผ๐‘„ป)"},"symbol":"PES","narrow":"PES"},"PGK":{"displayName":{"other":"๐‘„›๐‘„›๐‘„ฑ ๐‘„š๐‘„จ๐‘„ƒ๐‘„ช ๐‘„‰๐‘„จ๐‘„š๐‘„จ ๐‘„‰๐‘„จ๐‘„š๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„จ๐‘„š"},"symbol":"PGK","narrow":"PGK"},"PHP":{"displayName":{"other":"๐‘„œ๐‘„จ๐‘„ฃ๐‘„จ๐‘„›๐‘„ญ๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"PHP","narrow":"โ‚ฑ"},"PKR":{"displayName":{"other":"๐‘„›๐‘„‡๐‘„จ๐‘„ฅ๐‘„ด๐‘„–๐‘„š๐‘„จ ๐‘„ข๐‘„ช๐‘„›๐‘„จ"},"symbol":"PKR","narrow":"Rs"},"PLN":{"displayName":{"other":"๐‘„›๐‘„ฎ๐‘„ฃ๐‘„จ๐‘„Œ๐‘„ด ๐‘„Ž๐‘„ง๐‘„ฃ๐‘„ฎ๐‘„‘๐‘„จ"},"symbol":"PLN","narrow":"zล‚"},"PLZ":{"displayName":{"other":"๐‘„›๐‘„ฎ๐‘„ฃ๐‘„จ๐‘„Œ๐‘„ด ๐‘„Ž๐‘„ง๐‘„ฃ๐‘„ฎ๐‘„‘๐‘„จ(๐‘„ท๐‘„ฟ๐‘„ป๐‘„ถ-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ป)"},"symbol":"PLZ","narrow":"PLZ"},"PTE":{"displayName":{"other":"๐‘„›๐‘„ง๐‘„ข๐‘„ด๐‘„–๐‘„ช๐‘„‰๐‘„จ๐‘„Œ๐‘„ด ๐‘„ƒ๐‘„ฌ๐‘„ฅ๐‘„ด๐‘„‡๐‘„ช๐‘„“๐‘„ฎ"},"symbol":"PTE","narrow":"PTE"},"PYG":{"displayName":{"other":"๐‘„›๐‘„ณ๐‘„ ๐‘„ข๐‘„‰๐‘„ช๐‘„ ๐‘„š๐‘„ด ๐‘„‰๐‘„ช๐‘„ ๐‘„ข๐‘„š๐‘„จ"},"symbol":"PYG","narrow":"โ‚ฒ"},"QAR":{"displayName":{"other":"๐‘„‡๐‘„–๐‘„ข๐‘„ด ๐‘„ข๐‘„จ๐‘„ ๐‘„ณ๐‘„ ๐‘„ฃ๐‘„ด"},"symbol":"QAR","narrow":"QAR"},"RHD":{"displayName":{"other":"๐‘„ข๐‘„ฎ๐‘„“๐‘„ฌ๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"RHD","narrow":"RHD"},"ROL":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„ข๐‘„ฎ๐‘„š๐‘„จ ๐‘„ข๐‘„ช๐‘„Ÿ๐‘„š๐‘„จ๐‘„  ๐‘„ฃ๐‘„ฌ๐‘„ ๐‘„ช"},"symbol":"ROL","narrow":"ROL"},"RON":{"displayName":{"other":"๐‘„ข๐‘„ช๐‘„Ÿ๐‘„š๐‘„จ๐‘„  ๐‘„ฃ๐‘„ฌ๐‘„ ๐‘„ช"},"symbol":"RON","narrow":"lei"},"RSD":{"displayName":{"other":"๐‘„ฅ๐‘„ข๐‘„ด๐‘„๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"RSD","narrow":"RSD"},"RUB":{"displayName":{"other":"๐‘„ข๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„๐‘„ฌ๐‘„ฃ๐‘„ด"},"symbol":"RUB","narrow":"โ‚ฝ"},"RUR":{"displayName":{"other":"๐‘„ข๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„๐‘„ง๐‘„ฃ๐‘„ด(๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„ท-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„พ)"},"symbol":"RUR","narrow":"RUR"},"RWF":{"displayName":{"other":"๐‘„ข๐‘„ช๐‘„ ๐‘„š๐‘„ด๐‘„“๐‘„š๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"RWF","narrow":"RF"},"SAR":{"displayName":{"other":"๐‘„ฅ๐‘„ฏ๐‘„˜๐‘„จ ๐‘„ข๐‘„จ๐‘„ ๐‘„ฃ๐‘„ด"},"symbol":"SAR","narrow":"SAR"},"SBD":{"displayName":{"other":"๐‘„ฅ๐‘„ง๐‘„ฃ๐‘„ฎ๐‘„Ÿ๐‘„ง๐‘„š๐‘„ด ๐‘„‰๐‘„ญ ๐‘„‰๐‘„ญ ๐‘„ž๐‘„จ๐‘„˜๐‘„ฌ๐‘„ข๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"SBD","narrow":"$"},"SCR":{"displayName":{"other":"๐‘„ฅ๐‘„ฌ๐‘„ ๐‘„ง๐‘„ฅ๐‘„ฌ๐‘„ฃ๐‘„ด๐‘„ฃ๐‘„ฎ๐‘„ƒ๐‘„จ๐‘„Œ๐‘„ด ๐‘„ข๐‘„ช๐‘„›๐‘„จ"},"symbol":"SCR","narrow":"SCR"},"SDD":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„ข๐‘„ฎ๐‘„š๐‘„จ ๐‘„ฅ๐‘„ช๐‘„˜๐‘„š๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"SDD","narrow":"SDD"},"SDG":{"displayName":{"other":"๐‘„ฅ๐‘„ช๐‘„˜๐‘„š๐‘„จ ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"SDG","narrow":"SDG"},"SDP":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„ข๐‘„ฎ๐‘„š๐‘„จ ๐‘„ฅ๐‘„ช๐‘„˜๐‘„š๐‘„จ ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"SDP","narrow":"SDP"},"SEK":{"displayName":{"other":"๐‘„ฅ๐‘„ญ๐‘„ช๐‘„“๐‘„จ๐‘„ฅ๐‘„ด ๐‘„‡๐‘„ณ๐‘„ข๐‘„ฎ๐‘„š"},"symbol":"SEK","narrow":"kr"},"SGD":{"displayName":{"other":"๐‘„ฅ๐‘„จ๐‘„๐‘„‰๐‘„›๐‘„ช๐‘„ข๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"SGD","narrow":"$"},"SHP":{"displayName":{"other":"๐‘„ฅ๐‘„ฌ๐‘„š๐‘„ด ๐‘„ฆ๐‘„ฌ๐‘„ฃ๐‘„ฌ๐‘„š ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"SHP","narrow":"ยฃ"},"SIT":{"displayName":{"other":"๐‘„ฅ๐‘„ณ๐‘„ฃ๐‘„ฎ๐‘„ž๐‘„š๐‘„จ๐‘„  ๐‘„‘๐‘„ฎ๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"SIT","narrow":"SIT"},"SKK":{"displayName":{"other":"๐‘„ฅ๐‘„ณ๐‘„ฃ๐‘„ฎ๐‘„ž๐‘„‡๐‘„ด ๐‘„‡๐‘„ฎ๐‘„ข๐‘„ช๐‘„š"},"symbol":"SKK","narrow":"SKK"},"SLL":{"displayName":{"other":"๐‘„ฅ๐‘„จ๐‘„ ๐‘„ฌ๐‘„ข๐‘„ฃ๐‘„จ๐‘„ ๐‘„ง๐‘„š๐‘„ด ๐‘„ฃ๐‘„จ๐‘„ ๐‘„ง๐‘„š๐‘„ด"},"symbol":"SLL","narrow":"SLL"},"SOS":{"displayName":{"other":"๐‘„ฅ๐‘„ฎ๐‘„Ÿ๐‘„ฃ๐‘„จ ๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„จ๐‘„"},"symbol":"SOS","narrow":"SOS"},"SRD":{"displayName":{"other":"๐‘„ฅ๐‘„ช๐‘„ข๐‘„จ๐‘„š๐‘„Ÿ๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"SRD","narrow":"$"},"SRG":{"displayName":{"other":"๐‘„ฅ๐‘„ช๐‘„ข๐‘„จ๐‘„š๐‘„Ÿ๐‘„ด ๐‘„‰๐‘„จ๐‘„ฃ๐‘„ด๐‘„“๐‘„ข๐‘„ด"},"symbol":"SRG","narrow":"SRG"},"SSP":{"displayName":{"other":"๐‘„˜๐‘„ง๐‘„‰๐‘„จ๐‘„š๐‘„ด ๐‘„ฅ๐‘„ช๐‘„˜๐‘„š๐‘„จ ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"SSP","narrow":"ยฃ"},"STD":{"displayName":{"other":"๐‘„ฅ๐‘„ƒ๐‘„ฎ ๐‘„‘๐‘„ฎ๐‘„Ÿ๐‘„ฌ ๐‘„ƒ๐‘„ณ๐‘„ƒ ๐‘„›๐‘„ณ๐‘„ข๐‘„จ๐‘„š๐‘„ด๐‘„ฅ๐‘„จ๐‘„›๐‘„ฌ ๐‘„“๐‘„ฎ๐‘„›๐‘„ด๐‘„ข"},"symbol":"STD","narrow":"Db"},"STN":{"displayName":{"other":"STN"},"symbol":"STN","narrow":"Db"},"SUR":{"displayName":{"other":"๐‘„ฅ๐‘„ฎ๐‘„ฃ๐‘„จ๐‘„ ๐‘„ฌ๐‘„–๐‘„ด ๐‘„ข๐‘„ช๐‘„๐‘„ง๐‘„ฃ๐‘„ด"},"symbol":"SUR","narrow":"SUR"},"SVC":{"displayName":{"other":"๐‘„ƒ๐‘„ฌ๐‘„ฃ๐‘„ด ๐‘„ฅ๐‘„ณ๐‘„ ๐‘„ฃ๐‘„ด๐‘„ž๐‘„ฎ๐‘„“๐‘„ฎ๐‘„ข๐‘„ด ๐‘„‡๐‘„ฎ๐‘„ฃ๐‘„ฎ๐‘„š๐‘„ด"},"symbol":"SVC","narrow":"SVC"},"SYP":{"displayName":{"other":"๐‘„ฅ๐‘„จ๐‘„ข๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„›๐‘„ƒ๐‘„ช๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"SYP","narrow":"ยฃ"},"SZL":{"displayName":{"other":"๐‘„ฅ๐‘„ฎ๐‘„ ๐‘„Ž๐‘„จ๐‘„ฃ๐‘„ณ๐‘„ ๐‘„š๐‘„ณ๐‘„“๐‘„ด ๐‘„ฃ๐‘„จ๐‘„ฃ๐‘„‹๐‘„ด๐‘„‰๐‘„ฌ๐‘„š๐‘„จ"},"symbol":"SZL","narrow":"SZL"},"THB":{"displayName":{"other":"๐‘„—๐‘„ญ ๐‘„๐‘„–๐‘„ด"},"symbol":"เธฟ","narrow":"เธฟ"},"TJR":{"displayName":{"other":"๐‘„–๐‘„Ž๐‘„จ๐‘„‡๐‘„จ๐‘„Œ๐‘„ด๐‘„–๐‘„š๐‘„ด ๐‘„ข๐‘„ช๐‘„๐‘„ง๐‘„ฃ๐‘„ด"},"symbol":"TJR","narrow":"TJR"},"TJS":{"displayName":{"other":"๐‘„–๐‘„Ž๐‘„จ๐‘„‡๐‘„จ๐‘„Œ๐‘„ด๐‘„–๐‘„š๐‘„ด ๐‘„ฅ๐‘„ฎ๐‘„Ÿ๐‘„ฎ๐‘„š๐‘„จ"},"symbol":"TJS","narrow":"TJS"},"TMM":{"displayName":{"other":"๐‘„–๐‘„ช๐‘„ข๐‘„ด๐‘„‡๐‘„ง๐‘„Ÿ๐‘„ฌ๐‘„š๐‘„จ๐‘„Œ๐‘„ด๐‘„–๐‘„š๐‘„จ ๐‘„Ÿ๐‘„š๐‘„–๐‘„ด (1993โ€“2009)"},"symbol":"TMM","narrow":"TMM"},"TMT":{"displayName":{"other":"๐‘„–๐‘„ช๐‘„ข๐‘„ด๐‘„‡๐‘„ง๐‘„Ÿ๐‘„ฌ๐‘„š๐‘„จ๐‘„Œ๐‘„ด๐‘„–๐‘„š๐‘„จ ๐‘„Ÿ๐‘„š๐‘„–๐‘„ด"},"symbol":"TMT","narrow":"TMT"},"TND":{"displayName":{"other":"๐‘„–๐‘„จ๐‘„ƒ๐‘„ช๐‘„š๐‘„ฌ๐‘„ฅ๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"TND","narrow":"TND"},"TOP":{"displayName":{"other":"๐‘„‘๐‘„ฎ๐‘„‹๐‘„ด๐‘„‰ ๐‘„›๐‘„ณ๐‘„ƒ ๐‘„ƒ๐‘„‹๐‘„ด๐‘„‰"},"symbol":"TOP","narrow":"T$"},"TPE":{"displayName":{"other":"๐‘„–๐‘„จ๐‘„Ÿ๐‘„ช๐‘„ข๐‘„ด ๐‘„ƒ๐‘„ฌ๐‘„Œ๐‘„ด๐‘„‡๐‘„ช๐‘„“๐‘„ฎ"},"symbol":"TPE","narrow":"TPE"},"TRL":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„ข๐‘„ฎ๐‘„š๐‘„ด ๐‘„–๐‘„ช๐‘„ข๐‘„ด๐‘„‡๐‘„จ ๐‘„ฃ๐‘„จ๐‘„ข"},"symbol":"TRL","narrow":"TRL"},"TRY":{"displayName":{"other":"๐‘„–๐‘„ช๐‘„ข๐‘„ด๐‘„‡๐‘„จ ๐‘„ฃ๐‘„จ๐‘„ข"},"symbol":"TRY","narrow":"โ‚บ"},"TTD":{"displayName":{"other":"๐‘„–๐‘„ณ๐‘„ข๐‘„จ๐‘„š๐‘„จ๐‘„˜๐‘„–๐‘„ด ๐‘„ƒ๐‘„ณ๐‘„ƒ ๐‘„‘๐‘„ฎ๐‘„๐‘„‰๐‘„ฎ ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"TTD","narrow":"$"},"TWD":{"displayName":{"other":"๐‘„š๐‘„ฑ ๐‘„ฆ๐‘„ญ๐‘„ค๐‘„š๐‘„ด๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"NT$","narrow":"NT$"},"TZS":{"displayName":{"other":"๐‘„–๐‘„š๐‘„ด๐‘„Ž๐‘„š๐‘„จ๐‘„  ๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„จ๐‘„"},"symbol":"TZS","narrow":"TZS"},"UAH":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ƒ๐‘„ช๐‘„‡๐‘„ณ๐‘„ข๐‘„ญ๐‘„š๐‘„ด ๐‘„ข๐‘„จ๐‘„›๐‘„ด๐‘„š๐‘„จ๐‘„ "},"symbol":"UAH","narrow":"โ‚ด"},"UAK":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ƒ๐‘„ช๐‘„‡๐‘„ณ๐‘„ข๐‘„ญ๐‘„š๐‘„ด ๐‘„‡๐‘„ข๐‘„ด๐‘„๐‘„ฎ๐‘„ž๐‘„ณ๐‘„ ๐‘„š๐‘„ด๐‘„‘๐‘„ง๐‘„Œ๐‘„ด"},"symbol":"UAK","narrow":"UAK"},"UGS":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„‰๐‘„š๐‘„ด๐‘„“๐‘„š๐‘„ด ๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„จ๐‘„ (๐‘„ท๐‘„ฟ๐‘„ผ๐‘„ผ-๐‘„ท๐‘„ฟ๐‘„พ๐‘„ฝ)"},"symbol":"UGS","narrow":"UGS"},"UGX":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„‰๐‘„š๐‘„ด๐‘„“๐‘„š๐‘„ด ๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„จ๐‘„"},"symbol":"UGX","narrow":"UGX"},"USD":{"displayName":{"other":"๐‘„Ÿ๐‘„ข๐‘„ด๐‘„‡๐‘„จ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"US$","narrow":"$"},"USN":{"displayName":{"other":"๐‘„Ÿ๐‘„ข๐‘„ด๐‘„‡๐‘„จ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด (๐‘„›๐‘„ง๐‘„ข๐‘„ฌ ๐‘„˜๐‘„จ๐‘„š๐‘„ด)"},"symbol":"USN","narrow":"USN"},"USS":{"displayName":{"other":"๐‘„Ÿ๐‘„ข๐‘„ด๐‘„‡๐‘„จ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด (๐‘„ƒ๐‘„ฌ๐‘„‡๐‘„ด๐‘„‡๐‘„ฐ๐‘„ช ๐‘„˜๐‘„จ๐‘„š๐‘„ด)"},"symbol":"USS","narrow":"USS"},"UYI":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„ข๐‘„ช๐‘„‰๐‘„ช๐‘„ ๐‘„š๐‘„ด ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ ๐‘„ƒ๐‘„ฌ๐‘„š๐‘„ด ๐‘„ƒ๐‘„ช๐‘„š๐‘„จ๐‘„˜๐‘„˜๐‘„ฌ๐‘„Œ๐‘„ด ๐‘„ƒ๐‘„จ๐‘„š๐‘„ด๐‘„“๐‘„ฌ๐‘„‡๐‘„ด๐‘„ฅ๐‘„ฌ๐‘„“๐‘„ฅ๐‘„ด"},"symbol":"UYI","narrow":"UYI"},"UYP":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„ข๐‘„ช๐‘„‰๐‘„ช๐‘„ ๐‘„ฌ ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ (๐‘„ท๐‘„ฟ๐‘„ฝ๐‘„ป-๐‘„ท๐‘„ฟ๐‘„ฟ๐‘„น)"},"symbol":"UYP","narrow":"UYP"},"UYU":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„ข๐‘„ช๐‘„‰๐‘„ช๐‘„ ๐‘„ฌ ๐‘„›๐‘„ฌ๐‘„ฅ๐‘„ฎ"},"symbol":"UYU","narrow":"$"},"UYW":{"displayName":{"other":"UYW"},"symbol":"UYW","narrow":"UYW"},"UZS":{"displayName":{"other":"๐‘„ƒ๐‘„ช๐‘„Œ๐‘„ด๐‘„๐‘„ฌ๐‘„‡๐‘„จ๐‘„Œ๐‘„ด๐‘„–๐‘„š๐‘„จ ๐‘„ฅ๐‘„ฎ๐‘„Ÿ๐‘„ด"},"symbol":"UZS","narrow":"UZS"},"VEB":{"displayName":{"other":"๐‘„ž๐‘„ฌ๐‘„š๐‘„จ๐‘„Ž๐‘„ช๐‘„”๐‘„ฎ๐‘„ฃ๐‘„š๐‘„ด ๐‘„๐‘„ง๐‘„ฃ๐‘„จ๐‘„ž๐‘„ข๐‘„ด(๐‘„ท๐‘„พ๐‘„ฝ๐‘„ท-๐‘„ธ๐‘„ถ๐‘„ถ๐‘„พ)"},"symbol":"VEB","narrow":"VEB"},"VEF":{"displayName":{"other":"๐‘„ž๐‘„ฌ๐‘„š๐‘„จ๐‘„Ž๐‘„ช๐‘„”๐‘„ฎ๐‘„ฃ๐‘„š๐‘„ด ๐‘„๐‘„ง๐‘„ฃ๐‘„จ๐‘„ž๐‘„ข๐‘„ด"},"symbol":"VEF","narrow":"Bs"},"VES":{"displayName":{"other":"VES"},"symbol":"VES","narrow":"VES"},"VND":{"displayName":{"other":"๐‘„ž๐‘„จ๐‘„ ๐‘„ฌ๐‘„–๐‘„ด๐‘„š๐‘„Ÿ๐‘„จ ๐‘„“๐‘„ง๐‘„‹๐‘„ด๐‘„‰๐‘„ง"},"symbol":"โ‚ซ","narrow":"โ‚ซ"},"VNN":{"displayName":{"other":"VNN"},"symbol":"VNN","narrow":"VNN"},"VUV":{"displayName":{"other":"๐‘„ž๐‘„š๐‘„ช๐‘„ ๐‘„–๐‘„ช ๐‘„ž๐‘„–๐‘„ช"},"symbol":"VUV","narrow":"VUV"},"WST":{"displayName":{"other":"๐‘„ฅ๐‘„Ÿ๐‘„ฎ๐‘„ ๐‘„š๐‘„ด ๐‘„‘๐‘„ฃ"},"symbol":"WST","narrow":"WST"},"XAF":{"displayName":{"other":"๐‘„Ÿ๐‘„ง๐‘„–๐‘„ด๐‘„™๐‘„ณ๐‘„  ๐‘„ƒ๐‘„œ๐‘„ณ๐‘„ข๐‘„จ๐‘„‡๐‘„š๐‘„ด[CFA] ๐‘„œ๐‘„ณ๐‘„ข๐‘„ณ๐‘„ ๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"FCFA","narrow":"FCFA"},"XAG":{"displayName":{"other":"๐‘„ฅ๐‘„จ๐‘„ฃ๐‘„ด๐‘„ž๐‘„ข๐‘„ด"},"symbol":"XAG","narrow":"XAG"},"XAU":{"displayName":{"other":"๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„ณ๐‘„“๐‘„ด"},"symbol":"XAU","narrow":"XAU"},"XBA":{"displayName":{"other":"XBA"},"symbol":"XBA","narrow":"XBA"},"XBB":{"displayName":{"other":"XBB"},"symbol":"XBB","narrow":"XBB"},"XBC":{"displayName":{"other":"XBC"},"symbol":"XBC","narrow":"XBC"},"XBD":{"displayName":{"other":"XBD"},"symbol":"XBD","narrow":"XBD"},"XCD":{"displayName":{"other":"๐‘„›๐‘„ช๐‘„‰๐‘„ฌ๐‘„˜๐‘„จ ๐‘„‡๐‘„ณ๐‘„ ๐‘„ข๐‘„๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด"},"symbol":"EC$","narrow":"$"},"XDR":{"displayName":{"other":"XDR"},"symbol":"XDR","narrow":"XDR"},"XEU":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ƒ๐‘„ช๐‘„ข๐‘„ฎ๐‘„›๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‘๐‘„ฌ๐‘„‹๐‘„ข๐‘„ด ๐‘„ƒ๐‘„ฌ๐‘„‡๐‘„ง๐‘„‡๐‘„ด"},"symbol":"XEU","narrow":"XEU"},"XFO":{"displayName":{"other":"๐‘„œ๐‘„ง๐‘„ข๐‘„ฅ๐‘„จ ๐‘„‰๐‘„ฎ๐‘„ฃ๐‘„ณ๐‘„“๐‘„ด ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"XFO","narrow":"XFO"},"XFU":{"displayName":{"other":"๐‘„œ๐‘„ง๐‘„ข๐‘„ฅ๐‘„จ ๐‘„ƒ๐‘„จ๐‘„ƒ๐‘„ช๐‘„ƒ๐‘„ญ๐‘„ฅ๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"XFU","narrow":"XFU"},"XOF":{"displayName":{"other":"๐‘„›๐‘„ง๐‘„Ž๐‘„จ๐‘„Ÿ๐‘„ด ๐‘„ƒ๐‘„œ๐‘„ณ๐‘„ข๐‘„จ๐‘„‡๐‘„š๐‘„ด [CFA] ๐‘„œ๐‘„ณ๐‘„ข๐‘„ณ๐‘„ ๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"Fโ€ฏCFA","narrow":"Fโ€ฏCFA"},"XPD":{"displayName":{"other":"๐‘„›๐‘„ณ๐‘„ ๐‘„ฃ๐‘„ฌ๐‘„“๐‘„จ๐‘„ ๐‘„Ÿ๐‘„ด"},"symbol":"XPD","narrow":"XPD"},"XPF":{"displayName":{"other":"๐‘„ฅ๐‘„จ๐‘„ƒ๐‘„ฌ๐‘„›๐‘„ด๐‘„›๐‘„จ ๐‘„œ๐‘„ณ๐‘„ข๐‘„ณ๐‘„ ๐‘„‹๐‘„ณ๐‘„‡๐‘„ด"},"symbol":"CFPF","narrow":"CFPF"},"XPT":{"displayName":{"other":"๐‘„›๐‘„ณ๐‘„ฃ๐‘„‘๐‘„จ๐‘„š๐‘„Ÿ๐‘„ด"},"symbol":"XPT","narrow":"XPT"},"XRE":{"displayName":{"other":"XRE"},"symbol":"XRE","narrow":"XRE"},"XSU":{"displayName":{"other":"XSU"},"symbol":"XSU","narrow":"XSU"},"XTS":{"displayName":{"other":"XTS"},"symbol":"XTS","narrow":"XTS"},"XUA":{"displayName":{"other":"XUA"},"symbol":"XUA","narrow":"XUA"},"XXX":{"displayName":{"other":"๐‘„ฆ๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด ๐‘„š๐‘„ง๐‘„›๐‘„ฌ๐‘„ ๐‘„ฌ ๐‘„‘๐‘„ฌ๐‘„‹","one":"๐‘„ฆ๐‘„ง๐‘„๐‘„ง๐‘„ข๐‘„ด ๐‘„š๐‘„ง๐‘„›๐‘„ฌ๐‘„ ๐‘„ฌ ๐‘„ƒ๐‘„ณ๐‘„ƒ ๐‘„ž๐‘„ช๐‘„ฃ๐‘„ด ๐‘„‘๐‘„ฌ๐‘„‹"},"symbol":"ยค","narrow":"ยค"},"YDD":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ ๐‘„ฌ๐‘„Ÿ๐‘„ฌ๐‘„š๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"YDD","narrow":"YDD"},"YER":{"displayName":{"other":"๐‘„ƒ๐‘„จ๐‘„ ๐‘„ฌ๐‘„Ÿ๐‘„ฌ๐‘„š๐‘„จ ๐‘„ข๐‘„จ๐‘„ ๐‘„ฃ๐‘„ด"},"symbol":"YER","narrow":"YER"},"YUD":{"displayName":{"other":"๐‘„ก๐‘„ช๐‘„‰๐‘„ฎ๐‘„ฅ๐‘„ณ๐‘„ฃ๐‘„ž๐‘„จ๐‘„ ๐‘„ง ๐‘„ฆ๐‘„ข๐‘„ด๐‘„“๐‘„ด ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"YUD","narrow":"YUD"},"YUM":{"displayName":{"other":"๐‘„ก๐‘„ช๐‘„‰๐‘„ฎ๐‘„ฅ๐‘„ณ๐‘„ฃ๐‘„ž๐‘„จ๐‘„ ๐‘„ง ๐‘„š๐‘„ฎ๐‘„ž๐‘„จ ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"YUM","narrow":"YUM"},"YUN":{"displayName":{"other":"๐‘„ก๐‘„ช๐‘„‰๐‘„ฎ๐‘„ฅ๐‘„ณ๐‘„ฃ๐‘„ž๐‘„จ๐‘„ ๐‘„ง ๐‘„๐‘„ฎ๐‘„˜๐‘„ฎ๐‘„ฃ๐‘„ฌ๐‘„ญ๐‘„›๐‘„ข๐‘„ฌ ๐‘„˜๐‘„จ๐‘„š๐‘„ข๐‘„ด"},"symbol":"YUN","narrow":"YUN"},"YUR":{"displayName":{"other":"YUR"},"symbol":"YUR","narrow":"YUR"},"ZAL":{"displayName":{"other":"ZAL"},"symbol":"ZAL","narrow":"ZAL"},"ZAR":{"displayName":{"other":"๐‘„˜๐‘„ง๐‘„‰๐‘„จ๐‘„š๐‘„ด ๐‘„ƒ๐‘„œ๐‘„ณ๐‘„ข๐‘„จ๐‘„‡๐‘„š๐‘„ด ๐‘„ข๐‘„ณ๐‘„ ๐‘„š๐‘„ณ๐‘„“๐‘„ด"},"symbol":"ZAR","narrow":"R"},"ZMK":{"displayName":{"other":"๐‘„Ž๐‘„Ÿ๐‘„ด๐‘„๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ง๐‘„ค๐‘„Œ (๐‘„ท๐‘„ฟ๐‘„ผ๐‘„พ-๐‘„ธ๐‘„ถ๐‘„ท๐‘„ธ)"},"symbol":"ZMK","narrow":"ZMK"},"ZMW":{"displayName":{"other":"๐‘„Ž๐‘„Ÿ๐‘„ด๐‘„๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„‡๐‘„ง๐‘„ค๐‘„Œ"},"symbol":"ZMW","narrow":"ZK"},"ZRN":{"displayName":{"other":"๐‘„Ž๐‘„ญ๐‘„ข๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„š๐‘„จ๐‘„…๐‘„ช ๐‘„Ž๐‘„ญ๐‘„ข๐‘„ฌ (1993โ€“1998)"},"symbol":"ZRN","narrow":"ZRN"},"ZRZ":{"displayName":{"other":"๐‘„Ž๐‘„ญ๐‘„ข๐‘„จ๐‘„ ๐‘„š๐‘„ด ๐‘„š๐‘„จ๐‘„…๐‘„ช ๐‘„Ž๐‘„ญ๐‘„ข๐‘„ฌ (1971โ€“1993)"},"symbol":"ZRZ","narrow":"ZRZ"},"ZWD":{"displayName":{"other":"๐‘„Ž๐‘„จ๐‘„Ÿ๐‘„ด๐‘„๐‘„๐‘„ช๐‘„ ๐‘„ฌ ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด (๐‘„ท๐‘„ฟ๐‘„พ๐‘„ถ-๐‘„ธ๐‘„ถ๐‘„ถ๐‘„พ)"},"symbol":"ZWD","narrow":"ZWD"},"ZWL":{"displayName":{"other":"๐‘„Ž๐‘„จ๐‘„Ÿ๐‘„ด๐‘„๐‘„๐‘„ช๐‘„ ๐‘„ฌ ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด (๐‘„ธ๐‘„ถ๐‘„ถ๐‘„ฟ)"},"symbol":"ZWL","narrow":"ZWL"},"ZWR":{"displayName":{"other":"๐‘„Ž๐‘„จ๐‘„Ÿ๐‘„ด๐‘„๐‘„๐‘„ช๐‘„ ๐‘„ฌ ๐‘„“๐‘„ง๐‘„ฃ๐‘„ข๐‘„ด (๐‘„ธ๐‘„ถ๐‘„ถ๐‘„พ)"},"symbol":"ZWR","narrow":"ZWR"}},"numbers":{"nu":["cakm","latn"],"symbols":{"cakm":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","approximatelySign":"~","exponential":"E","superscriptingExponent":"ร—","perMille":"โ€ฐ","infinity":"โˆž","nan":"NaN","timeSeparator":":"},"latn":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","approximatelySign":"~","exponential":"E","superscriptingExponent":"ร—","perMille":"โ€ฐ","infinity":"โˆž","nan":"NaN","timeSeparator":":"}},"percent":{"cakm":"#,##0%","latn":"#,##,##0%"},"decimal":{"cakm":{"standard":"#,##,##0.###","long":{"1000":{"other":"0K"},"10000":{"other":"00K"},"100000":{"other":"000K"},"1000000":{"other":"0M"},"10000000":{"other":"00M"},"100000000":{"other":"000M"},"1000000000":{"other":"0G"},"10000000000":{"other":"00G"},"100000000000":{"other":"000G"},"1000000000000":{"other":"0T"},"10000000000000":{"other":"00T"},"100000000000000":{"other":"000T"}},"short":{"1000":{"other":"0K"},"10000":{"other":"00K"},"100000":{"other":"000K"},"1000000":{"other":"0M"},"10000000":{"other":"00M"},"100000000":{"other":"000M"},"1000000000":{"other":"0G"},"10000000000":{"other":"00G"},"100000000000":{"other":"000G"},"1000000000000":{"other":"0T"},"10000000000000":{"other":"00T"},"100000000000000":{"other":"000T"}}},"latn":{"standard":"#,##,##0.###","long":{"1000":{"other":"0K"},"10000":{"other":"00K"},"100000":{"other":"000K"},"1000000":{"other":"0M"},"10000000":{"other":"00M"},"100000000":{"other":"000M"},"1000000000":{"other":"0G"},"10000000000":{"other":"00G"},"100000000000":{"other":"000G"},"1000000000000":{"other":"0T"},"10000000000000":{"other":"00T"},"100000000000000":{"other":"000T"}},"short":{"1000":{"other":"0K"},"10000":{"other":"00K"},"100000":{"other":"000K"},"1000000":{"other":"0M"},"10000000":{"other":"00M"},"100000000":{"other":"000M"},"1000000000":{"other":"0G"},"10000000000":{"other":"00G"},"100000000000":{"other":"000G"},"1000000000000":{"other":"0T"},"10000000000000":{"other":"00T"},"100000000000000":{"other":"000T"}}}},"currency":{"cakm":{"currencySpacing":{"beforeInsertBetween":"ย ","afterInsertBetween":"ย "},"standard":"#,##,##0.00ยค","accounting":"#,##,##0.00ยค;(#,##,##0.00ยค)","unitPattern":"{0} {1}","short":{"1000":{"other":"ยคย 0K"},"10000":{"other":"ยคย 00K"},"100000":{"other":"ยคย 000K"},"1000000":{"other":"ยคย 0M"},"10000000":{"other":"ยคย 00M"},"100000000":{"other":"ยคย 000M"},"1000000000":{"other":"ยคย 0G"},"10000000000":{"other":"ยคย 00G"},"100000000000":{"other":"ยคย 000G"},"1000000000000":{"other":"ยคย 0T"},"10000000000000":{"other":"ยคย 00T"},"100000000000000":{"other":"ยคย 000T"}}},"latn":{"currencySpacing":{"beforeInsertBetween":"ย ","afterInsertBetween":"ย "},"standard":"#,##,##0.00ยค","accounting":"#,##,##0.00ยค;(#,##,##0.00ยค)","unitPattern":"{0} {1}","short":{"1000":{"other":"ยคย 0K"},"10000":{"other":"ยคย 00K"},"100000":{"other":"ยคย 000K"},"1000000":{"other":"ยคย 0M"},"10000000":{"other":"ยคย 00M"},"100000000":{"other":"ยคย 000M"},"1000000000":{"other":"ยคย 0G"},"10000000000":{"other":"ยคย 00G"},"100000000000":{"other":"ยคย 000G"},"1000000000000":{"other":"ยคย 0T"},"10000000000000":{"other":"ยคย 00T"},"100000000000000":{"other":"ยคย 000T"}}}}},"nu":["cakm","latn"]},"locale":"ccp-IN"}
5
- )
6
- }
@@ -1 +0,0 @@
1
- export {}