@formatjs/intl-numberformat 8.0.4 โ 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.
- package/BUILD +933 -0
- package/CHANGELOG.md +844 -0
- package/LICENSE.md +0 -0
- package/README.md +0 -0
- package/index.ts +1 -0
- package/package.json +9 -4
- package/polyfill-force.ts +13 -0
- package/polyfill.ts +16 -0
- package/scripts/cldr-raw.ts +42 -0
- package/scripts/cldr.ts +31 -0
- package/scripts/currency-digits.ts +18 -0
- package/scripts/extract-currencies.ts +89 -0
- package/scripts/extract-numbers.ts +151 -0
- package/scripts/extract-units.ts +91 -0
- package/scripts/numbering-systems.ts +18 -0
- package/scripts/test-locale-data-gen.ts +20 -0
- package/scripts/test262-main-gen.ts +28 -0
- package/scripts/units-constants.ts +20 -0
- package/scripts/utils.ts +25 -0
- package/should-polyfill.ts +59 -0
- package/src/core.ts +279 -0
- package/src/currency-digits.generated.ts +1 -0
- package/src/get_internal_slots.ts +16 -0
- package/src/numbering-systems.generated.ts +1 -0
- package/src/to_locale_string.ts +16 -0
- package/src/types.ts +36 -0
- package/supported-locales.generated.ts +1 -0
- package/test262-main.ts +23 -0
- package/tests/__snapshots__/currency-compact.test.ts.snap +8449 -0
- package/tests/__snapshots__/currency.test.ts.snap +25345 -0
- package/tests/__snapshots__/decimal.test.ts.snap +13169 -0
- package/tests/__snapshots__/percent.test.ts.snap +17393 -0
- package/tests/__snapshots__/unit.test.ts.snap +162545 -0
- package/tests/currency-code.test.ts +23 -0
- package/tests/currency-compact.test.ts +104 -0
- package/tests/currency.test.ts +110 -0
- package/tests/decimal.test.ts +83 -0
- package/tests/format_to_parts.test.ts +513 -0
- package/tests/legacy.test.ts +13 -0
- package/tests/locale-data/ar-SS.json +1 -0
- package/tests/locale-data/bn.json +1 -0
- package/tests/locale-data/da.json +1 -0
- package/tests/locale-data/de.json +1 -0
- package/tests/locale-data/en-BS.json +1 -0
- package/tests/locale-data/en-GB.json +1 -0
- package/tests/locale-data/en.json +1 -0
- package/tests/locale-data/es.json +1 -0
- package/tests/locale-data/fr.json +1 -0
- package/tests/locale-data/hi.json +1 -0
- package/tests/locale-data/id.json +1 -0
- package/tests/locale-data/it.json +1 -0
- package/tests/locale-data/ja.json +1 -0
- package/tests/locale-data/ko.json +1 -0
- package/tests/locale-data/ms.json +1 -0
- package/tests/locale-data/nb.json +1 -0
- package/tests/locale-data/nl.json +1 -0
- package/tests/locale-data/pl.json +1 -0
- package/tests/locale-data/pt.json +1 -0
- package/tests/locale-data/ru.json +1 -0
- package/tests/locale-data/sv.json +1 -0
- package/tests/locale-data/sw.json +1 -0
- package/tests/locale-data/th.json +1 -0
- package/tests/locale-data/tr.json +1 -0
- package/tests/locale-data/uk.json +1 -0
- package/tests/locale-data/zh-Hans.json +1 -0
- package/tests/locale-data/zh-Hant.json +1 -0
- package/tests/locale-data/zh.json +1 -0
- package/tests/misc.test.ts +278 -0
- package/tests/notation-compact-ko-KR.test.ts +96 -0
- package/tests/notation-compact-zh-TW.test.ts +48 -0
- package/tests/percent.test.ts +83 -0
- package/tests/signDisplay-currency-zh-TW.test.ts +85 -0
- package/tests/signDisplay-zh-TW.test.ts +53 -0
- package/tests/unit-zh-TW.test.ts +162 -0
- package/tests/unit.test.ts +113 -0
- package/tests/value-tonumber.test.ts +24 -0
- package/tsconfig.json +5 -0
- package/index.d.ts +0 -2
- package/index.d.ts.map +0 -1
- package/index.js +0 -4
- package/lib/index.d.ts +0 -2
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js +0 -1
- package/lib/polyfill-force.d.ts +0 -2
- package/lib/polyfill-force.d.ts.map +0 -1
- package/lib/polyfill-force.js +0 -9
- package/lib/polyfill.d.ts +0 -2
- package/lib/polyfill.d.ts.map +0 -1
- package/lib/polyfill.js +0 -12
- package/lib/should-polyfill.d.ts +0 -2
- package/lib/should-polyfill.d.ts.map +0 -1
- package/lib/should-polyfill.js +0 -53
- package/lib/src/core.d.ts +0 -7
- package/lib/src/core.d.ts.map +0 -1
- package/lib/src/core.js +0 -227
- package/lib/src/currency-digits.generated.d.ts +0 -2
- package/lib/src/currency-digits.generated.d.ts.map +0 -1
- package/lib/src/currency-digits.generated.js +0 -1
- package/lib/src/get_internal_slots.d.ts +0 -3
- package/lib/src/get_internal_slots.d.ts.map +0 -1
- package/lib/src/get_internal_slots.js +0 -10
- package/lib/src/numbering-systems.generated.d.ts +0 -2
- package/lib/src/numbering-systems.generated.d.ts.map +0 -1
- package/lib/src/numbering-systems.generated.js +0 -1
- package/lib/src/to_locale_string.d.ts +0 -7
- package/lib/src/to_locale_string.d.ts.map +0 -1
- package/lib/src/to_locale_string.js +0 -10
- package/lib/src/types.d.ts +0 -19
- package/lib/src/types.d.ts.map +0 -1
- package/lib/src/types.js +0 -1
- package/lib/supported-locales.d.ts +0 -2
- package/lib/supported-locales.d.ts.map +0 -1
- package/lib/supported-locales.js +0 -2
- package/locale-data/af-NA.d.ts +0 -1
- package/locale-data/af-NA.js +0 -6
- package/locale-data/af.d.ts +0 -1
- package/locale-data/af.js +0 -6
- package/locale-data/agq.d.ts +0 -1
- package/locale-data/agq.js +0 -6
- package/locale-data/ak.d.ts +0 -1
- package/locale-data/ak.js +0 -6
- package/locale-data/am.d.ts +0 -1
- package/locale-data/am.js +0 -6
- package/locale-data/ar-AE.d.ts +0 -1
- package/locale-data/ar-AE.js +0 -6
- package/locale-data/ar-BH.d.ts +0 -1
- package/locale-data/ar-BH.js +0 -6
- package/locale-data/ar-DJ.d.ts +0 -1
- package/locale-data/ar-DJ.js +0 -6
- package/locale-data/ar-DZ.d.ts +0 -1
- package/locale-data/ar-DZ.js +0 -6
- package/locale-data/ar-EG.d.ts +0 -1
- package/locale-data/ar-EG.js +0 -6
- package/locale-data/ar-EH.d.ts +0 -1
- package/locale-data/ar-EH.js +0 -6
- package/locale-data/ar-ER.d.ts +0 -1
- package/locale-data/ar-ER.js +0 -6
- package/locale-data/ar-IL.d.ts +0 -1
- package/locale-data/ar-IL.js +0 -6
- package/locale-data/ar-IQ.d.ts +0 -1
- package/locale-data/ar-IQ.js +0 -6
- package/locale-data/ar-JO.d.ts +0 -1
- package/locale-data/ar-JO.js +0 -6
- package/locale-data/ar-KM.d.ts +0 -1
- package/locale-data/ar-KM.js +0 -6
- package/locale-data/ar-KW.d.ts +0 -1
- package/locale-data/ar-KW.js +0 -6
- package/locale-data/ar-LB.d.ts +0 -1
- package/locale-data/ar-LB.js +0 -6
- package/locale-data/ar-LY.d.ts +0 -1
- package/locale-data/ar-LY.js +0 -6
- package/locale-data/ar-MA.d.ts +0 -1
- package/locale-data/ar-MA.js +0 -6
- package/locale-data/ar-MR.d.ts +0 -1
- package/locale-data/ar-MR.js +0 -6
- package/locale-data/ar-OM.d.ts +0 -1
- package/locale-data/ar-OM.js +0 -6
- package/locale-data/ar-PS.d.ts +0 -1
- package/locale-data/ar-PS.js +0 -6
- package/locale-data/ar-QA.d.ts +0 -1
- package/locale-data/ar-QA.js +0 -6
- package/locale-data/ar-SA.d.ts +0 -1
- package/locale-data/ar-SA.js +0 -6
- package/locale-data/ar-SD.d.ts +0 -1
- package/locale-data/ar-SD.js +0 -6
- package/locale-data/ar-SO.d.ts +0 -1
- package/locale-data/ar-SO.js +0 -6
- package/locale-data/ar-SS.d.ts +0 -1
- package/locale-data/ar-SS.js +0 -6
- package/locale-data/ar-SY.d.ts +0 -1
- package/locale-data/ar-SY.js +0 -6
- package/locale-data/ar-TD.d.ts +0 -1
- package/locale-data/ar-TD.js +0 -6
- package/locale-data/ar-TN.d.ts +0 -1
- package/locale-data/ar-TN.js +0 -6
- package/locale-data/ar-YE.d.ts +0 -1
- package/locale-data/ar-YE.js +0 -6
- package/locale-data/ar.d.ts +0 -1
- package/locale-data/ar.js +0 -6
- package/locale-data/as.d.ts +0 -1
- package/locale-data/as.js +0 -6
- package/locale-data/asa.d.ts +0 -1
- package/locale-data/asa.js +0 -6
- package/locale-data/ast.d.ts +0 -1
- package/locale-data/ast.js +0 -6
- package/locale-data/az-Cyrl.d.ts +0 -1
- package/locale-data/az-Cyrl.js +0 -6
- package/locale-data/az-Latn.d.ts +0 -1
- package/locale-data/az-Latn.js +0 -6
- package/locale-data/az.d.ts +0 -1
- package/locale-data/az.js +0 -6
- package/locale-data/bas.d.ts +0 -1
- package/locale-data/bas.js +0 -6
- package/locale-data/be-tarask.d.ts +0 -1
- package/locale-data/be-tarask.js +0 -6
- package/locale-data/be.d.ts +0 -1
- package/locale-data/be.js +0 -6
- package/locale-data/bem.d.ts +0 -1
- package/locale-data/bem.js +0 -6
- package/locale-data/bez.d.ts +0 -1
- package/locale-data/bez.js +0 -6
- package/locale-data/bg.d.ts +0 -1
- package/locale-data/bg.js +0 -6
- package/locale-data/bm.d.ts +0 -1
- package/locale-data/bm.js +0 -6
- package/locale-data/bn-IN.d.ts +0 -1
- package/locale-data/bn-IN.js +0 -6
- package/locale-data/bn.d.ts +0 -1
- package/locale-data/bn.js +0 -6
- package/locale-data/bo-IN.d.ts +0 -1
- package/locale-data/bo-IN.js +0 -6
- package/locale-data/bo.d.ts +0 -1
- package/locale-data/bo.js +0 -6
- package/locale-data/br.d.ts +0 -1
- package/locale-data/br.js +0 -6
- package/locale-data/brx.d.ts +0 -1
- package/locale-data/brx.js +0 -6
- package/locale-data/bs-Cyrl.d.ts +0 -1
- package/locale-data/bs-Cyrl.js +0 -6
- package/locale-data/bs-Latn.d.ts +0 -1
- package/locale-data/bs-Latn.js +0 -6
- package/locale-data/bs.d.ts +0 -1
- package/locale-data/bs.js +0 -6
- package/locale-data/ca-AD.d.ts +0 -1
- package/locale-data/ca-AD.js +0 -6
- package/locale-data/ca-ES-valencia.d.ts +0 -1
- package/locale-data/ca-ES-valencia.js +0 -6
- package/locale-data/ca-FR.d.ts +0 -1
- package/locale-data/ca-FR.js +0 -6
- package/locale-data/ca-IT.d.ts +0 -1
- package/locale-data/ca-IT.js +0 -6
- package/locale-data/ca.d.ts +0 -1
- package/locale-data/ca.js +0 -6
- package/locale-data/ccp-IN.d.ts +0 -1
- package/locale-data/ccp-IN.js +0 -6
- package/locale-data/ccp.d.ts +0 -1
- package/locale-data/ccp.js +0 -6
- package/locale-data/ce.d.ts +0 -1
- package/locale-data/ce.js +0 -6
- package/locale-data/ceb.d.ts +0 -1
- package/locale-data/ceb.js +0 -6
- package/locale-data/cgg.d.ts +0 -1
- package/locale-data/cgg.js +0 -6
- package/locale-data/chr.d.ts +0 -1
- package/locale-data/chr.js +0 -6
- package/locale-data/ckb-IR.d.ts +0 -1
- package/locale-data/ckb-IR.js +0 -6
- package/locale-data/ckb.d.ts +0 -1
- package/locale-data/ckb.js +0 -6
- package/locale-data/cs.d.ts +0 -1
- package/locale-data/cs.js +0 -6
- package/locale-data/cy.d.ts +0 -1
- package/locale-data/cy.js +0 -6
- package/locale-data/da-GL.d.ts +0 -1
- package/locale-data/da-GL.js +0 -6
- package/locale-data/da.d.ts +0 -1
- package/locale-data/da.js +0 -6
- package/locale-data/dav.d.ts +0 -1
- package/locale-data/dav.js +0 -6
- package/locale-data/de-AT.d.ts +0 -1
- package/locale-data/de-AT.js +0 -6
- package/locale-data/de-BE.d.ts +0 -1
- package/locale-data/de-BE.js +0 -6
- package/locale-data/de-CH.d.ts +0 -1
- package/locale-data/de-CH.js +0 -6
- package/locale-data/de-IT.d.ts +0 -1
- package/locale-data/de-IT.js +0 -6
- package/locale-data/de-LI.d.ts +0 -1
- package/locale-data/de-LI.js +0 -6
- package/locale-data/de-LU.d.ts +0 -1
- package/locale-data/de-LU.js +0 -6
- package/locale-data/de.d.ts +0 -1
- package/locale-data/de.js +0 -6
- package/locale-data/dje.d.ts +0 -1
- package/locale-data/dje.js +0 -6
- package/locale-data/doi.d.ts +0 -1
- package/locale-data/doi.js +0 -6
- package/locale-data/dsb.d.ts +0 -1
- package/locale-data/dsb.js +0 -6
- package/locale-data/dua.d.ts +0 -1
- package/locale-data/dua.js +0 -6
- package/locale-data/dyo.d.ts +0 -1
- package/locale-data/dyo.js +0 -6
- package/locale-data/dz.d.ts +0 -1
- package/locale-data/dz.js +0 -6
- package/locale-data/ebu.d.ts +0 -1
- package/locale-data/ebu.js +0 -6
- package/locale-data/ee-TG.d.ts +0 -1
- package/locale-data/ee-TG.js +0 -6
- package/locale-data/ee.d.ts +0 -1
- package/locale-data/ee.js +0 -6
- package/locale-data/el-CY.d.ts +0 -1
- package/locale-data/el-CY.js +0 -6
- package/locale-data/el.d.ts +0 -1
- package/locale-data/el.js +0 -6
- package/locale-data/en-001.d.ts +0 -1
- package/locale-data/en-001.js +0 -6
- package/locale-data/en-150.d.ts +0 -1
- package/locale-data/en-150.js +0 -6
- package/locale-data/en-AE.d.ts +0 -1
- package/locale-data/en-AE.js +0 -6
- package/locale-data/en-AG.d.ts +0 -1
- package/locale-data/en-AG.js +0 -6
- package/locale-data/en-AI.d.ts +0 -1
- package/locale-data/en-AI.js +0 -6
- package/locale-data/en-AS.d.ts +0 -1
- package/locale-data/en-AS.js +0 -6
- package/locale-data/en-AT.d.ts +0 -1
- package/locale-data/en-AT.js +0 -6
- package/locale-data/en-AU.d.ts +0 -1
- package/locale-data/en-AU.js +0 -6
- package/locale-data/en-BB.d.ts +0 -1
- package/locale-data/en-BB.js +0 -6
- package/locale-data/en-BE.d.ts +0 -1
- package/locale-data/en-BE.js +0 -6
- package/locale-data/en-BI.d.ts +0 -1
- package/locale-data/en-BI.js +0 -6
- package/locale-data/en-BM.d.ts +0 -1
- package/locale-data/en-BM.js +0 -6
- package/locale-data/en-BS.d.ts +0 -1
- package/locale-data/en-BS.js +0 -6
- package/locale-data/en-BW.d.ts +0 -1
- package/locale-data/en-BW.js +0 -6
- package/locale-data/en-BZ.d.ts +0 -1
- package/locale-data/en-BZ.js +0 -6
- package/locale-data/en-CA.d.ts +0 -1
- package/locale-data/en-CA.js +0 -6
- package/locale-data/en-CC.d.ts +0 -1
- package/locale-data/en-CC.js +0 -6
- package/locale-data/en-CH.d.ts +0 -1
- package/locale-data/en-CH.js +0 -6
- package/locale-data/en-CK.d.ts +0 -1
- package/locale-data/en-CK.js +0 -6
- package/locale-data/en-CM.d.ts +0 -1
- package/locale-data/en-CM.js +0 -6
- package/locale-data/en-CX.d.ts +0 -1
- package/locale-data/en-CX.js +0 -6
- package/locale-data/en-CY.d.ts +0 -1
- package/locale-data/en-CY.js +0 -6
- package/locale-data/en-DE.d.ts +0 -1
- package/locale-data/en-DE.js +0 -6
- package/locale-data/en-DG.d.ts +0 -1
- package/locale-data/en-DG.js +0 -6
- package/locale-data/en-DK.d.ts +0 -1
- package/locale-data/en-DK.js +0 -6
- package/locale-data/en-DM.d.ts +0 -1
- package/locale-data/en-DM.js +0 -6
- package/locale-data/en-ER.d.ts +0 -1
- package/locale-data/en-ER.js +0 -6
- package/locale-data/en-FI.d.ts +0 -1
- package/locale-data/en-FI.js +0 -6
- package/locale-data/en-FJ.d.ts +0 -1
- package/locale-data/en-FJ.js +0 -6
- package/locale-data/en-FK.d.ts +0 -1
- package/locale-data/en-FK.js +0 -6
- package/locale-data/en-FM.d.ts +0 -1
- package/locale-data/en-FM.js +0 -6
- package/locale-data/en-GB.d.ts +0 -1
- package/locale-data/en-GB.js +0 -6
- package/locale-data/en-GD.d.ts +0 -1
- package/locale-data/en-GD.js +0 -6
- package/locale-data/en-GG.d.ts +0 -1
- package/locale-data/en-GG.js +0 -6
- package/locale-data/en-GH.d.ts +0 -1
- package/locale-data/en-GH.js +0 -6
- package/locale-data/en-GI.d.ts +0 -1
- package/locale-data/en-GI.js +0 -6
- package/locale-data/en-GM.d.ts +0 -1
- package/locale-data/en-GM.js +0 -6
- package/locale-data/en-GU.d.ts +0 -1
- package/locale-data/en-GU.js +0 -6
- package/locale-data/en-GY.d.ts +0 -1
- package/locale-data/en-GY.js +0 -6
- package/locale-data/en-HK.d.ts +0 -1
- package/locale-data/en-HK.js +0 -6
- package/locale-data/en-IE.d.ts +0 -1
- package/locale-data/en-IE.js +0 -6
- package/locale-data/en-IL.d.ts +0 -1
- package/locale-data/en-IL.js +0 -6
- package/locale-data/en-IM.d.ts +0 -1
- package/locale-data/en-IM.js +0 -6
- package/locale-data/en-IN.d.ts +0 -1
- package/locale-data/en-IN.js +0 -6
- package/locale-data/en-IO.d.ts +0 -1
- package/locale-data/en-IO.js +0 -6
- package/locale-data/en-JE.d.ts +0 -1
- package/locale-data/en-JE.js +0 -6
- package/locale-data/en-JM.d.ts +0 -1
- package/locale-data/en-JM.js +0 -6
- package/locale-data/en-KE.d.ts +0 -1
- package/locale-data/en-KE.js +0 -6
- package/locale-data/en-KI.d.ts +0 -1
- package/locale-data/en-KI.js +0 -6
- package/locale-data/en-KN.d.ts +0 -1
- package/locale-data/en-KN.js +0 -6
- package/locale-data/en-KY.d.ts +0 -1
- package/locale-data/en-KY.js +0 -6
- package/locale-data/en-LC.d.ts +0 -1
- package/locale-data/en-LC.js +0 -6
- package/locale-data/en-LR.d.ts +0 -1
- package/locale-data/en-LR.js +0 -6
- package/locale-data/en-LS.d.ts +0 -1
- package/locale-data/en-LS.js +0 -6
- package/locale-data/en-MG.d.ts +0 -1
- package/locale-data/en-MG.js +0 -6
- package/locale-data/en-MH.d.ts +0 -1
- package/locale-data/en-MH.js +0 -6
- package/locale-data/en-MO.d.ts +0 -1
- package/locale-data/en-MO.js +0 -6
- package/locale-data/en-MP.d.ts +0 -1
- package/locale-data/en-MP.js +0 -6
- package/locale-data/en-MS.d.ts +0 -1
- package/locale-data/en-MS.js +0 -6
- package/locale-data/en-MT.d.ts +0 -1
- package/locale-data/en-MT.js +0 -6
- package/locale-data/en-MU.d.ts +0 -1
- package/locale-data/en-MU.js +0 -6
- package/locale-data/en-MW.d.ts +0 -1
- package/locale-data/en-MW.js +0 -6
- package/locale-data/en-MY.d.ts +0 -1
- package/locale-data/en-MY.js +0 -6
- package/locale-data/en-NA.d.ts +0 -1
- package/locale-data/en-NA.js +0 -6
- package/locale-data/en-NF.d.ts +0 -1
- package/locale-data/en-NF.js +0 -6
- package/locale-data/en-NG.d.ts +0 -1
- package/locale-data/en-NG.js +0 -6
- package/locale-data/en-NL.d.ts +0 -1
- package/locale-data/en-NL.js +0 -6
- package/locale-data/en-NR.d.ts +0 -1
- package/locale-data/en-NR.js +0 -6
- package/locale-data/en-NU.d.ts +0 -1
- package/locale-data/en-NU.js +0 -6
- package/locale-data/en-NZ.d.ts +0 -1
- package/locale-data/en-NZ.js +0 -6
- package/locale-data/en-PG.d.ts +0 -1
- package/locale-data/en-PG.js +0 -6
- package/locale-data/en-PH.d.ts +0 -1
- package/locale-data/en-PH.js +0 -6
- package/locale-data/en-PK.d.ts +0 -1
- package/locale-data/en-PK.js +0 -6
- package/locale-data/en-PN.d.ts +0 -1
- package/locale-data/en-PN.js +0 -6
- package/locale-data/en-PR.d.ts +0 -1
- package/locale-data/en-PR.js +0 -6
- package/locale-data/en-PW.d.ts +0 -1
- package/locale-data/en-PW.js +0 -6
- package/locale-data/en-RW.d.ts +0 -1
- package/locale-data/en-RW.js +0 -6
- package/locale-data/en-SB.d.ts +0 -1
- package/locale-data/en-SB.js +0 -6
- package/locale-data/en-SC.d.ts +0 -1
- package/locale-data/en-SC.js +0 -6
- package/locale-data/en-SD.d.ts +0 -1
- package/locale-data/en-SD.js +0 -6
- package/locale-data/en-SE.d.ts +0 -1
- package/locale-data/en-SE.js +0 -6
- package/locale-data/en-SG.d.ts +0 -1
- package/locale-data/en-SG.js +0 -6
- package/locale-data/en-SH.d.ts +0 -1
- package/locale-data/en-SH.js +0 -6
- package/locale-data/en-SI.d.ts +0 -1
- package/locale-data/en-SI.js +0 -6
- package/locale-data/en-SL.d.ts +0 -1
- package/locale-data/en-SL.js +0 -6
- package/locale-data/en-SS.d.ts +0 -1
- package/locale-data/en-SS.js +0 -6
- package/locale-data/en-SX.d.ts +0 -1
- package/locale-data/en-SX.js +0 -6
- package/locale-data/en-SZ.d.ts +0 -1
- package/locale-data/en-SZ.js +0 -6
- package/locale-data/en-TC.d.ts +0 -1
- package/locale-data/en-TC.js +0 -6
- package/locale-data/en-TK.d.ts +0 -1
- package/locale-data/en-TK.js +0 -6
- package/locale-data/en-TO.d.ts +0 -1
- package/locale-data/en-TO.js +0 -6
- package/locale-data/en-TT.d.ts +0 -1
- package/locale-data/en-TT.js +0 -6
- package/locale-data/en-TV.d.ts +0 -1
- package/locale-data/en-TV.js +0 -6
- package/locale-data/en-TZ.d.ts +0 -1
- package/locale-data/en-TZ.js +0 -6
- package/locale-data/en-UG.d.ts +0 -1
- package/locale-data/en-UG.js +0 -6
- package/locale-data/en-UM.d.ts +0 -1
- package/locale-data/en-UM.js +0 -6
- package/locale-data/en-VC.d.ts +0 -1
- package/locale-data/en-VC.js +0 -6
- package/locale-data/en-VG.d.ts +0 -1
- package/locale-data/en-VG.js +0 -6
- package/locale-data/en-VI.d.ts +0 -1
- package/locale-data/en-VI.js +0 -6
- package/locale-data/en-VU.d.ts +0 -1
- package/locale-data/en-VU.js +0 -6
- package/locale-data/en-WS.d.ts +0 -1
- package/locale-data/en-WS.js +0 -6
- package/locale-data/en-ZA.d.ts +0 -1
- package/locale-data/en-ZA.js +0 -6
- package/locale-data/en-ZM.d.ts +0 -1
- package/locale-data/en-ZM.js +0 -6
- package/locale-data/en-ZW.d.ts +0 -1
- package/locale-data/en-ZW.js +0 -6
- package/locale-data/en.d.ts +0 -1
- package/locale-data/en.js +0 -6
- package/locale-data/eo.d.ts +0 -1
- package/locale-data/eo.js +0 -6
- package/locale-data/es-419.d.ts +0 -1
- package/locale-data/es-419.js +0 -6
- package/locale-data/es-AR.d.ts +0 -1
- package/locale-data/es-AR.js +0 -6
- package/locale-data/es-BO.d.ts +0 -1
- package/locale-data/es-BO.js +0 -6
- package/locale-data/es-BR.d.ts +0 -1
- package/locale-data/es-BR.js +0 -6
- package/locale-data/es-BZ.d.ts +0 -1
- package/locale-data/es-BZ.js +0 -6
- package/locale-data/es-CL.d.ts +0 -1
- package/locale-data/es-CL.js +0 -6
- package/locale-data/es-CO.d.ts +0 -1
- package/locale-data/es-CO.js +0 -6
- package/locale-data/es-CR.d.ts +0 -1
- package/locale-data/es-CR.js +0 -6
- package/locale-data/es-CU.d.ts +0 -1
- package/locale-data/es-CU.js +0 -6
- package/locale-data/es-DO.d.ts +0 -1
- package/locale-data/es-DO.js +0 -6
- package/locale-data/es-EA.d.ts +0 -1
- package/locale-data/es-EA.js +0 -6
- package/locale-data/es-EC.d.ts +0 -1
- package/locale-data/es-EC.js +0 -6
- package/locale-data/es-GQ.d.ts +0 -1
- package/locale-data/es-GQ.js +0 -6
- package/locale-data/es-GT.d.ts +0 -1
- package/locale-data/es-GT.js +0 -6
- package/locale-data/es-HN.d.ts +0 -1
- package/locale-data/es-HN.js +0 -6
- package/locale-data/es-IC.d.ts +0 -1
- package/locale-data/es-IC.js +0 -6
- package/locale-data/es-MX.d.ts +0 -1
- package/locale-data/es-MX.js +0 -6
- package/locale-data/es-NI.d.ts +0 -1
- package/locale-data/es-NI.js +0 -6
- package/locale-data/es-PA.d.ts +0 -1
- package/locale-data/es-PA.js +0 -6
- package/locale-data/es-PE.d.ts +0 -1
- package/locale-data/es-PE.js +0 -6
- package/locale-data/es-PH.d.ts +0 -1
- package/locale-data/es-PH.js +0 -6
- package/locale-data/es-PR.d.ts +0 -1
- package/locale-data/es-PR.js +0 -6
- package/locale-data/es-PY.d.ts +0 -1
- package/locale-data/es-PY.js +0 -6
- package/locale-data/es-SV.d.ts +0 -1
- package/locale-data/es-SV.js +0 -6
- package/locale-data/es-US.d.ts +0 -1
- package/locale-data/es-US.js +0 -6
- package/locale-data/es-UY.d.ts +0 -1
- package/locale-data/es-UY.js +0 -6
- package/locale-data/es-VE.d.ts +0 -1
- package/locale-data/es-VE.js +0 -6
- package/locale-data/es.d.ts +0 -1
- package/locale-data/es.js +0 -6
- package/locale-data/et.d.ts +0 -1
- package/locale-data/et.js +0 -6
- package/locale-data/eu.d.ts +0 -1
- package/locale-data/eu.js +0 -6
- package/locale-data/ewo.d.ts +0 -1
- package/locale-data/ewo.js +0 -6
- package/locale-data/fa-AF.d.ts +0 -1
- package/locale-data/fa-AF.js +0 -6
- package/locale-data/fa.d.ts +0 -1
- package/locale-data/fa.js +0 -6
- package/locale-data/ff-Adlm-BF.d.ts +0 -1
- package/locale-data/ff-Adlm-BF.js +0 -6
- package/locale-data/ff-Adlm-CM.d.ts +0 -1
- package/locale-data/ff-Adlm-CM.js +0 -6
- package/locale-data/ff-Adlm-GH.d.ts +0 -1
- package/locale-data/ff-Adlm-GH.js +0 -6
- package/locale-data/ff-Adlm-GM.d.ts +0 -1
- package/locale-data/ff-Adlm-GM.js +0 -6
- package/locale-data/ff-Adlm-GW.d.ts +0 -1
- package/locale-data/ff-Adlm-GW.js +0 -6
- package/locale-data/ff-Adlm-LR.d.ts +0 -1
- package/locale-data/ff-Adlm-LR.js +0 -6
- package/locale-data/ff-Adlm-MR.d.ts +0 -1
- package/locale-data/ff-Adlm-MR.js +0 -6
- package/locale-data/ff-Adlm-NE.d.ts +0 -1
- package/locale-data/ff-Adlm-NE.js +0 -6
- package/locale-data/ff-Adlm-NG.d.ts +0 -1
- package/locale-data/ff-Adlm-NG.js +0 -6
- package/locale-data/ff-Adlm-SL.d.ts +0 -1
- package/locale-data/ff-Adlm-SL.js +0 -6
- package/locale-data/ff-Adlm-SN.d.ts +0 -1
- package/locale-data/ff-Adlm-SN.js +0 -6
- package/locale-data/ff-Adlm.d.ts +0 -1
- package/locale-data/ff-Adlm.js +0 -6
- package/locale-data/ff-Latn-BF.d.ts +0 -1
- package/locale-data/ff-Latn-BF.js +0 -6
- package/locale-data/ff-Latn-CM.d.ts +0 -1
- package/locale-data/ff-Latn-CM.js +0 -6
- package/locale-data/ff-Latn-GH.d.ts +0 -1
- package/locale-data/ff-Latn-GH.js +0 -6
- package/locale-data/ff-Latn-GM.d.ts +0 -1
- package/locale-data/ff-Latn-GM.js +0 -6
- package/locale-data/ff-Latn-GN.d.ts +0 -1
- package/locale-data/ff-Latn-GN.js +0 -6
- package/locale-data/ff-Latn-GW.d.ts +0 -1
- package/locale-data/ff-Latn-GW.js +0 -6
- package/locale-data/ff-Latn-LR.d.ts +0 -1
- package/locale-data/ff-Latn-LR.js +0 -6
- package/locale-data/ff-Latn-MR.d.ts +0 -1
- package/locale-data/ff-Latn-MR.js +0 -6
- package/locale-data/ff-Latn-NE.d.ts +0 -1
- package/locale-data/ff-Latn-NE.js +0 -6
- package/locale-data/ff-Latn-NG.d.ts +0 -1
- package/locale-data/ff-Latn-NG.js +0 -6
- package/locale-data/ff-Latn-SL.d.ts +0 -1
- package/locale-data/ff-Latn-SL.js +0 -6
- package/locale-data/ff-Latn.d.ts +0 -1
- package/locale-data/ff-Latn.js +0 -6
- package/locale-data/ff.d.ts +0 -1
- package/locale-data/ff.js +0 -6
- package/locale-data/fi.d.ts +0 -1
- package/locale-data/fi.js +0 -6
- package/locale-data/fil.d.ts +0 -1
- package/locale-data/fil.js +0 -6
- package/locale-data/fo-DK.d.ts +0 -1
- package/locale-data/fo-DK.js +0 -6
- package/locale-data/fo.d.ts +0 -1
- package/locale-data/fo.js +0 -6
- package/locale-data/fr-BE.d.ts +0 -1
- package/locale-data/fr-BE.js +0 -6
- package/locale-data/fr-BF.d.ts +0 -1
- package/locale-data/fr-BF.js +0 -6
- package/locale-data/fr-BI.d.ts +0 -1
- package/locale-data/fr-BI.js +0 -6
- package/locale-data/fr-BJ.d.ts +0 -1
- package/locale-data/fr-BJ.js +0 -6
- package/locale-data/fr-BL.d.ts +0 -1
- package/locale-data/fr-BL.js +0 -6
- package/locale-data/fr-CA.d.ts +0 -1
- package/locale-data/fr-CA.js +0 -6
- package/locale-data/fr-CD.d.ts +0 -1
- package/locale-data/fr-CD.js +0 -6
- package/locale-data/fr-CF.d.ts +0 -1
- package/locale-data/fr-CF.js +0 -6
- package/locale-data/fr-CG.d.ts +0 -1
- package/locale-data/fr-CG.js +0 -6
- package/locale-data/fr-CH.d.ts +0 -1
- package/locale-data/fr-CH.js +0 -6
- package/locale-data/fr-CI.d.ts +0 -1
- package/locale-data/fr-CI.js +0 -6
- package/locale-data/fr-CM.d.ts +0 -1
- package/locale-data/fr-CM.js +0 -6
- package/locale-data/fr-DJ.d.ts +0 -1
- package/locale-data/fr-DJ.js +0 -6
- package/locale-data/fr-DZ.d.ts +0 -1
- package/locale-data/fr-DZ.js +0 -6
- package/locale-data/fr-GA.d.ts +0 -1
- package/locale-data/fr-GA.js +0 -6
- package/locale-data/fr-GF.d.ts +0 -1
- package/locale-data/fr-GF.js +0 -6
- package/locale-data/fr-GN.d.ts +0 -1
- package/locale-data/fr-GN.js +0 -6
- package/locale-data/fr-GP.d.ts +0 -1
- package/locale-data/fr-GP.js +0 -6
- package/locale-data/fr-GQ.d.ts +0 -1
- package/locale-data/fr-GQ.js +0 -6
- package/locale-data/fr-HT.d.ts +0 -1
- package/locale-data/fr-HT.js +0 -6
- package/locale-data/fr-KM.d.ts +0 -1
- package/locale-data/fr-KM.js +0 -6
- package/locale-data/fr-LU.d.ts +0 -1
- package/locale-data/fr-LU.js +0 -6
- package/locale-data/fr-MA.d.ts +0 -1
- package/locale-data/fr-MA.js +0 -6
- package/locale-data/fr-MC.d.ts +0 -1
- package/locale-data/fr-MC.js +0 -6
- package/locale-data/fr-MF.d.ts +0 -1
- package/locale-data/fr-MF.js +0 -6
- package/locale-data/fr-MG.d.ts +0 -1
- package/locale-data/fr-MG.js +0 -6
- package/locale-data/fr-ML.d.ts +0 -1
- package/locale-data/fr-ML.js +0 -6
- package/locale-data/fr-MQ.d.ts +0 -1
- package/locale-data/fr-MQ.js +0 -6
- package/locale-data/fr-MR.d.ts +0 -1
- package/locale-data/fr-MR.js +0 -6
- package/locale-data/fr-MU.d.ts +0 -1
- package/locale-data/fr-MU.js +0 -6
- package/locale-data/fr-NC.d.ts +0 -1
- package/locale-data/fr-NC.js +0 -6
- package/locale-data/fr-NE.d.ts +0 -1
- package/locale-data/fr-NE.js +0 -6
- package/locale-data/fr-PF.d.ts +0 -1
- package/locale-data/fr-PF.js +0 -6
- package/locale-data/fr-PM.d.ts +0 -1
- package/locale-data/fr-PM.js +0 -6
- package/locale-data/fr-RE.d.ts +0 -1
- package/locale-data/fr-RE.js +0 -6
- package/locale-data/fr-RW.d.ts +0 -1
- package/locale-data/fr-RW.js +0 -6
- package/locale-data/fr-SC.d.ts +0 -1
- package/locale-data/fr-SC.js +0 -6
- package/locale-data/fr-SN.d.ts +0 -1
- package/locale-data/fr-SN.js +0 -6
- package/locale-data/fr-SY.d.ts +0 -1
- package/locale-data/fr-SY.js +0 -6
- package/locale-data/fr-TD.d.ts +0 -1
- package/locale-data/fr-TD.js +0 -6
- package/locale-data/fr-TG.d.ts +0 -1
- package/locale-data/fr-TG.js +0 -6
- package/locale-data/fr-TN.d.ts +0 -1
- package/locale-data/fr-TN.js +0 -6
- package/locale-data/fr-VU.d.ts +0 -1
- package/locale-data/fr-VU.js +0 -6
- package/locale-data/fr-WF.d.ts +0 -1
- package/locale-data/fr-WF.js +0 -6
- package/locale-data/fr-YT.d.ts +0 -1
- package/locale-data/fr-YT.js +0 -6
- package/locale-data/fr.d.ts +0 -1
- package/locale-data/fr.js +0 -6
- package/locale-data/fur.d.ts +0 -1
- package/locale-data/fur.js +0 -6
- package/locale-data/fy.d.ts +0 -1
- package/locale-data/fy.js +0 -6
- package/locale-data/ga-GB.d.ts +0 -1
- package/locale-data/ga-GB.js +0 -6
- package/locale-data/ga.d.ts +0 -1
- package/locale-data/ga.js +0 -6
- package/locale-data/gd.d.ts +0 -1
- package/locale-data/gd.js +0 -6
- package/locale-data/gl.d.ts +0 -1
- package/locale-data/gl.js +0 -6
- package/locale-data/gsw-FR.d.ts +0 -1
- package/locale-data/gsw-FR.js +0 -6
- package/locale-data/gsw-LI.d.ts +0 -1
- package/locale-data/gsw-LI.js +0 -6
- package/locale-data/gsw.d.ts +0 -1
- package/locale-data/gsw.js +0 -6
- package/locale-data/gu.d.ts +0 -1
- package/locale-data/gu.js +0 -6
- package/locale-data/guz.d.ts +0 -1
- package/locale-data/guz.js +0 -6
- package/locale-data/gv.d.ts +0 -1
- package/locale-data/gv.js +0 -6
- package/locale-data/ha-GH.d.ts +0 -1
- package/locale-data/ha-GH.js +0 -6
- package/locale-data/ha-NE.d.ts +0 -1
- package/locale-data/ha-NE.js +0 -6
- package/locale-data/ha.d.ts +0 -1
- package/locale-data/ha.js +0 -6
- package/locale-data/haw.d.ts +0 -1
- package/locale-data/haw.js +0 -6
- package/locale-data/he.d.ts +0 -1
- package/locale-data/he.js +0 -6
- package/locale-data/hi.d.ts +0 -1
- package/locale-data/hi.js +0 -6
- package/locale-data/hr-BA.d.ts +0 -1
- package/locale-data/hr-BA.js +0 -6
- package/locale-data/hr.d.ts +0 -1
- package/locale-data/hr.js +0 -6
- package/locale-data/hsb.d.ts +0 -1
- package/locale-data/hsb.js +0 -6
- package/locale-data/hu.d.ts +0 -1
- package/locale-data/hu.js +0 -6
- package/locale-data/hy.d.ts +0 -1
- package/locale-data/hy.js +0 -6
- package/locale-data/ia.d.ts +0 -1
- package/locale-data/ia.js +0 -6
- package/locale-data/id.d.ts +0 -1
- package/locale-data/id.js +0 -6
- package/locale-data/ig.d.ts +0 -1
- package/locale-data/ig.js +0 -6
- package/locale-data/ii.d.ts +0 -1
- package/locale-data/ii.js +0 -6
- package/locale-data/is.d.ts +0 -1
- package/locale-data/is.js +0 -6
- package/locale-data/it-CH.d.ts +0 -1
- package/locale-data/it-CH.js +0 -6
- package/locale-data/it-SM.d.ts +0 -1
- package/locale-data/it-SM.js +0 -6
- package/locale-data/it-VA.d.ts +0 -1
- package/locale-data/it-VA.js +0 -6
- package/locale-data/it.d.ts +0 -1
- package/locale-data/it.js +0 -6
- package/locale-data/ja.d.ts +0 -1
- package/locale-data/ja.js +0 -6
- package/locale-data/jgo.d.ts +0 -1
- package/locale-data/jgo.js +0 -6
- package/locale-data/jmc.d.ts +0 -1
- package/locale-data/jmc.js +0 -6
- package/locale-data/jv.d.ts +0 -1
- package/locale-data/jv.js +0 -6
- package/locale-data/ka.d.ts +0 -1
- package/locale-data/ka.js +0 -6
- package/locale-data/kab.d.ts +0 -1
- package/locale-data/kab.js +0 -6
- package/locale-data/kam.d.ts +0 -1
- package/locale-data/kam.js +0 -6
- package/locale-data/kde.d.ts +0 -1
- package/locale-data/kde.js +0 -6
- package/locale-data/kea.d.ts +0 -1
- package/locale-data/kea.js +0 -6
- package/locale-data/kgp.d.ts +0 -1
- package/locale-data/kgp.js +0 -6
- package/locale-data/khq.d.ts +0 -1
- package/locale-data/khq.js +0 -6
- package/locale-data/ki.d.ts +0 -1
- package/locale-data/ki.js +0 -6
- package/locale-data/kk.d.ts +0 -1
- package/locale-data/kk.js +0 -6
- package/locale-data/kkj.d.ts +0 -1
- package/locale-data/kkj.js +0 -6
- package/locale-data/kl.d.ts +0 -1
- package/locale-data/kl.js +0 -6
- package/locale-data/kln.d.ts +0 -1
- package/locale-data/kln.js +0 -6
- package/locale-data/km.d.ts +0 -1
- package/locale-data/km.js +0 -6
- package/locale-data/kn.d.ts +0 -1
- package/locale-data/kn.js +0 -6
- package/locale-data/ko-KP.d.ts +0 -1
- package/locale-data/ko-KP.js +0 -6
- package/locale-data/ko.d.ts +0 -1
- package/locale-data/ko.js +0 -6
- package/locale-data/kok.d.ts +0 -1
- package/locale-data/kok.js +0 -6
- package/locale-data/ks-Arab.d.ts +0 -1
- package/locale-data/ks-Arab.js +0 -6
- package/locale-data/ks.d.ts +0 -1
- package/locale-data/ks.js +0 -6
- package/locale-data/ksb.d.ts +0 -1
- package/locale-data/ksb.js +0 -6
- package/locale-data/ksf.d.ts +0 -1
- package/locale-data/ksf.js +0 -6
- package/locale-data/ksh.d.ts +0 -1
- package/locale-data/ksh.js +0 -6
- package/locale-data/ku.d.ts +0 -1
- package/locale-data/ku.js +0 -6
- package/locale-data/kw.d.ts +0 -1
- package/locale-data/kw.js +0 -6
- package/locale-data/ky.d.ts +0 -1
- package/locale-data/ky.js +0 -6
- package/locale-data/lag.d.ts +0 -1
- package/locale-data/lag.js +0 -6
- package/locale-data/lb.d.ts +0 -1
- package/locale-data/lb.js +0 -6
- package/locale-data/lg.d.ts +0 -1
- package/locale-data/lg.js +0 -6
- package/locale-data/lkt.d.ts +0 -1
- package/locale-data/lkt.js +0 -6
- package/locale-data/ln-AO.d.ts +0 -1
- package/locale-data/ln-AO.js +0 -6
- package/locale-data/ln-CF.d.ts +0 -1
- package/locale-data/ln-CF.js +0 -6
- package/locale-data/ln-CG.d.ts +0 -1
- package/locale-data/ln-CG.js +0 -6
- package/locale-data/ln.d.ts +0 -1
- package/locale-data/ln.js +0 -6
- package/locale-data/lo.d.ts +0 -1
- package/locale-data/lo.js +0 -6
- package/locale-data/lrc-IQ.d.ts +0 -1
- package/locale-data/lrc-IQ.js +0 -6
- package/locale-data/lrc.d.ts +0 -1
- package/locale-data/lrc.js +0 -6
- package/locale-data/lt.d.ts +0 -1
- package/locale-data/lt.js +0 -6
- package/locale-data/lu.d.ts +0 -1
- package/locale-data/lu.js +0 -6
- package/locale-data/luo.d.ts +0 -1
- package/locale-data/luo.js +0 -6
- package/locale-data/luy.d.ts +0 -1
- package/locale-data/luy.js +0 -6
- package/locale-data/lv.d.ts +0 -1
- package/locale-data/lv.js +0 -6
- package/locale-data/mai.d.ts +0 -1
- package/locale-data/mai.js +0 -6
- package/locale-data/mas-TZ.d.ts +0 -1
- package/locale-data/mas-TZ.js +0 -6
- package/locale-data/mas.d.ts +0 -1
- package/locale-data/mas.js +0 -6
- package/locale-data/mer.d.ts +0 -1
- package/locale-data/mer.js +0 -6
- package/locale-data/mfe.d.ts +0 -1
- package/locale-data/mfe.js +0 -6
- package/locale-data/mg.d.ts +0 -1
- package/locale-data/mg.js +0 -6
- package/locale-data/mgh.d.ts +0 -1
- package/locale-data/mgh.js +0 -6
- package/locale-data/mgo.d.ts +0 -1
- package/locale-data/mgo.js +0 -6
- package/locale-data/mi.d.ts +0 -1
- package/locale-data/mi.js +0 -6
- package/locale-data/mk.d.ts +0 -1
- package/locale-data/mk.js +0 -6
- package/locale-data/ml.d.ts +0 -1
- package/locale-data/ml.js +0 -6
- package/locale-data/mn.d.ts +0 -1
- package/locale-data/mn.js +0 -6
- package/locale-data/mni-Beng.d.ts +0 -1
- package/locale-data/mni-Beng.js +0 -6
- package/locale-data/mni.d.ts +0 -1
- package/locale-data/mni.js +0 -6
- package/locale-data/mr.d.ts +0 -1
- package/locale-data/mr.js +0 -6
- package/locale-data/ms-BN.d.ts +0 -1
- package/locale-data/ms-BN.js +0 -6
- package/locale-data/ms-ID.d.ts +0 -1
- package/locale-data/ms-ID.js +0 -6
- package/locale-data/ms-SG.d.ts +0 -1
- package/locale-data/ms-SG.js +0 -6
- package/locale-data/ms.d.ts +0 -1
- package/locale-data/ms.js +0 -6
- package/locale-data/mt.d.ts +0 -1
- package/locale-data/mt.js +0 -6
- package/locale-data/mua.d.ts +0 -1
- package/locale-data/mua.js +0 -6
- package/locale-data/my.d.ts +0 -1
- package/locale-data/my.js +0 -6
- package/locale-data/mzn.d.ts +0 -1
- package/locale-data/mzn.js +0 -6
- package/locale-data/naq.d.ts +0 -1
- package/locale-data/naq.js +0 -6
- package/locale-data/nb-SJ.d.ts +0 -1
- package/locale-data/nb-SJ.js +0 -6
- package/locale-data/nb.d.ts +0 -1
- package/locale-data/nb.js +0 -6
- package/locale-data/nd.d.ts +0 -1
- package/locale-data/nd.js +0 -6
- package/locale-data/nds-NL.d.ts +0 -1
- package/locale-data/nds-NL.js +0 -6
- package/locale-data/nds.d.ts +0 -1
- package/locale-data/nds.js +0 -6
- package/locale-data/ne-IN.d.ts +0 -1
- package/locale-data/ne-IN.js +0 -6
- package/locale-data/ne.d.ts +0 -1
- package/locale-data/ne.js +0 -6
- package/locale-data/nl-AW.d.ts +0 -1
- package/locale-data/nl-AW.js +0 -6
- package/locale-data/nl-BE.d.ts +0 -1
- package/locale-data/nl-BE.js +0 -6
- package/locale-data/nl-BQ.d.ts +0 -1
- package/locale-data/nl-BQ.js +0 -6
- package/locale-data/nl-CW.d.ts +0 -1
- package/locale-data/nl-CW.js +0 -6
- package/locale-data/nl-SR.d.ts +0 -1
- package/locale-data/nl-SR.js +0 -6
- package/locale-data/nl-SX.d.ts +0 -1
- package/locale-data/nl-SX.js +0 -6
- package/locale-data/nl.d.ts +0 -1
- package/locale-data/nl.js +0 -6
- package/locale-data/nmg.d.ts +0 -1
- package/locale-data/nmg.js +0 -6
- package/locale-data/nn.d.ts +0 -1
- package/locale-data/nn.js +0 -6
- package/locale-data/nnh.d.ts +0 -1
- package/locale-data/nnh.js +0 -6
- package/locale-data/no.d.ts +0 -1
- package/locale-data/no.js +0 -6
- package/locale-data/nus.d.ts +0 -1
- package/locale-data/nus.js +0 -6
- package/locale-data/nyn.d.ts +0 -1
- package/locale-data/nyn.js +0 -6
- package/locale-data/om-KE.d.ts +0 -1
- package/locale-data/om-KE.js +0 -6
- package/locale-data/om.d.ts +0 -1
- package/locale-data/om.js +0 -6
- package/locale-data/or.d.ts +0 -1
- package/locale-data/or.js +0 -6
- package/locale-data/os-RU.d.ts +0 -1
- package/locale-data/os-RU.js +0 -6
- package/locale-data/os.d.ts +0 -1
- package/locale-data/os.js +0 -6
- package/locale-data/pa-Arab.d.ts +0 -1
- package/locale-data/pa-Arab.js +0 -6
- package/locale-data/pa-Guru.d.ts +0 -1
- package/locale-data/pa-Guru.js +0 -6
- package/locale-data/pa.d.ts +0 -1
- package/locale-data/pa.js +0 -6
- package/locale-data/pcm.d.ts +0 -1
- package/locale-data/pcm.js +0 -6
- package/locale-data/pl.d.ts +0 -1
- package/locale-data/pl.js +0 -6
- package/locale-data/ps-PK.d.ts +0 -1
- package/locale-data/ps-PK.js +0 -6
- package/locale-data/ps.d.ts +0 -1
- package/locale-data/ps.js +0 -6
- package/locale-data/pt-AO.d.ts +0 -1
- package/locale-data/pt-AO.js +0 -6
- package/locale-data/pt-CH.d.ts +0 -1
- package/locale-data/pt-CH.js +0 -6
- package/locale-data/pt-CV.d.ts +0 -1
- package/locale-data/pt-CV.js +0 -6
- package/locale-data/pt-GQ.d.ts +0 -1
- package/locale-data/pt-GQ.js +0 -6
- package/locale-data/pt-GW.d.ts +0 -1
- package/locale-data/pt-GW.js +0 -6
- package/locale-data/pt-LU.d.ts +0 -1
- package/locale-data/pt-LU.js +0 -6
- package/locale-data/pt-MO.d.ts +0 -1
- package/locale-data/pt-MO.js +0 -6
- package/locale-data/pt-MZ.d.ts +0 -1
- package/locale-data/pt-MZ.js +0 -6
- package/locale-data/pt-PT.d.ts +0 -1
- package/locale-data/pt-PT.js +0 -6
- package/locale-data/pt-ST.d.ts +0 -1
- package/locale-data/pt-ST.js +0 -6
- package/locale-data/pt-TL.d.ts +0 -1
- package/locale-data/pt-TL.js +0 -6
- package/locale-data/pt.d.ts +0 -1
- package/locale-data/pt.js +0 -6
- package/locale-data/qu-BO.d.ts +0 -1
- package/locale-data/qu-BO.js +0 -6
- package/locale-data/qu-EC.d.ts +0 -1
- package/locale-data/qu-EC.js +0 -6
- package/locale-data/qu.d.ts +0 -1
- package/locale-data/qu.js +0 -6
- package/locale-data/rm.d.ts +0 -1
- package/locale-data/rm.js +0 -6
- package/locale-data/rn.d.ts +0 -1
- package/locale-data/rn.js +0 -6
- package/locale-data/ro-MD.d.ts +0 -1
- package/locale-data/ro-MD.js +0 -6
- package/locale-data/ro.d.ts +0 -1
- package/locale-data/ro.js +0 -6
- package/locale-data/rof.d.ts +0 -1
- package/locale-data/rof.js +0 -6
- package/locale-data/ru-BY.d.ts +0 -1
- package/locale-data/ru-BY.js +0 -6
- package/locale-data/ru-KG.d.ts +0 -1
- package/locale-data/ru-KG.js +0 -6
- package/locale-data/ru-KZ.d.ts +0 -1
- package/locale-data/ru-KZ.js +0 -6
- package/locale-data/ru-MD.d.ts +0 -1
- package/locale-data/ru-MD.js +0 -6
- package/locale-data/ru-UA.d.ts +0 -1
- package/locale-data/ru-UA.js +0 -6
- package/locale-data/ru.d.ts +0 -1
- package/locale-data/ru.js +0 -6
- package/locale-data/rw.d.ts +0 -1
- package/locale-data/rw.js +0 -6
- package/locale-data/rwk.d.ts +0 -1
- package/locale-data/rwk.js +0 -6
- package/locale-data/sa.d.ts +0 -1
- package/locale-data/sa.js +0 -6
- package/locale-data/sah.d.ts +0 -1
- package/locale-data/sah.js +0 -6
- package/locale-data/saq.d.ts +0 -1
- package/locale-data/saq.js +0 -6
- package/locale-data/sat-Olck.d.ts +0 -1
- package/locale-data/sat-Olck.js +0 -6
- package/locale-data/sat.d.ts +0 -1
- package/locale-data/sat.js +0 -6
- package/locale-data/sbp.d.ts +0 -1
- package/locale-data/sbp.js +0 -6
- package/locale-data/sc.d.ts +0 -1
- package/locale-data/sc.js +0 -6
- package/locale-data/sd-Arab.d.ts +0 -1
- package/locale-data/sd-Arab.js +0 -6
- package/locale-data/sd-Deva.d.ts +0 -1
- package/locale-data/sd-Deva.js +0 -6
- package/locale-data/sd.d.ts +0 -1
- package/locale-data/sd.js +0 -6
- package/locale-data/se-FI.d.ts +0 -1
- package/locale-data/se-FI.js +0 -6
- package/locale-data/se-SE.d.ts +0 -1
- package/locale-data/se-SE.js +0 -6
- package/locale-data/se.d.ts +0 -1
- package/locale-data/se.js +0 -6
- package/locale-data/seh.d.ts +0 -1
- package/locale-data/seh.js +0 -6
- package/locale-data/ses.d.ts +0 -1
- package/locale-data/ses.js +0 -6
- package/locale-data/sg.d.ts +0 -1
- package/locale-data/sg.js +0 -6
- package/locale-data/shi-Latn.d.ts +0 -1
- package/locale-data/shi-Latn.js +0 -6
- package/locale-data/shi-Tfng.d.ts +0 -1
- package/locale-data/shi-Tfng.js +0 -6
- package/locale-data/shi.d.ts +0 -1
- package/locale-data/shi.js +0 -6
- package/locale-data/si.d.ts +0 -1
- package/locale-data/si.js +0 -6
- package/locale-data/sk.d.ts +0 -1
- package/locale-data/sk.js +0 -6
- package/locale-data/sl.d.ts +0 -1
- package/locale-data/sl.js +0 -6
- package/locale-data/smn.d.ts +0 -1
- package/locale-data/smn.js +0 -6
- package/locale-data/sn.d.ts +0 -1
- package/locale-data/sn.js +0 -6
- package/locale-data/so-DJ.d.ts +0 -1
- package/locale-data/so-DJ.js +0 -6
- package/locale-data/so-ET.d.ts +0 -1
- package/locale-data/so-ET.js +0 -6
- package/locale-data/so-KE.d.ts +0 -1
- package/locale-data/so-KE.js +0 -6
- package/locale-data/so.d.ts +0 -1
- package/locale-data/so.js +0 -6
- package/locale-data/sq-MK.d.ts +0 -1
- package/locale-data/sq-MK.js +0 -6
- package/locale-data/sq-XK.d.ts +0 -1
- package/locale-data/sq-XK.js +0 -6
- package/locale-data/sq.d.ts +0 -1
- package/locale-data/sq.js +0 -6
- package/locale-data/sr-Cyrl-BA.d.ts +0 -1
- package/locale-data/sr-Cyrl-BA.js +0 -6
- package/locale-data/sr-Cyrl-ME.d.ts +0 -1
- package/locale-data/sr-Cyrl-ME.js +0 -6
- package/locale-data/sr-Cyrl-XK.d.ts +0 -1
- package/locale-data/sr-Cyrl-XK.js +0 -6
- package/locale-data/sr-Cyrl.d.ts +0 -1
- package/locale-data/sr-Cyrl.js +0 -6
- package/locale-data/sr-Latn-BA.d.ts +0 -1
- package/locale-data/sr-Latn-BA.js +0 -6
- package/locale-data/sr-Latn-ME.d.ts +0 -1
- package/locale-data/sr-Latn-ME.js +0 -6
- package/locale-data/sr-Latn-XK.d.ts +0 -1
- package/locale-data/sr-Latn-XK.js +0 -6
- package/locale-data/sr-Latn.d.ts +0 -1
- package/locale-data/sr-Latn.js +0 -6
- package/locale-data/sr.d.ts +0 -1
- package/locale-data/sr.js +0 -6
- package/locale-data/su-Latn.d.ts +0 -1
- package/locale-data/su-Latn.js +0 -6
- package/locale-data/su.d.ts +0 -1
- package/locale-data/su.js +0 -6
- package/locale-data/sv-AX.d.ts +0 -1
- package/locale-data/sv-AX.js +0 -6
- package/locale-data/sv-FI.d.ts +0 -1
- package/locale-data/sv-FI.js +0 -6
- package/locale-data/sv.d.ts +0 -1
- package/locale-data/sv.js +0 -6
- package/locale-data/sw-CD.d.ts +0 -1
- package/locale-data/sw-CD.js +0 -6
- package/locale-data/sw-KE.d.ts +0 -1
- package/locale-data/sw-KE.js +0 -6
- package/locale-data/sw-UG.d.ts +0 -1
- package/locale-data/sw-UG.js +0 -6
- package/locale-data/sw.d.ts +0 -1
- package/locale-data/sw.js +0 -6
- package/locale-data/ta-LK.d.ts +0 -1
- package/locale-data/ta-LK.js +0 -6
- package/locale-data/ta-MY.d.ts +0 -1
- package/locale-data/ta-MY.js +0 -6
- package/locale-data/ta-SG.d.ts +0 -1
- package/locale-data/ta-SG.js +0 -6
- package/locale-data/ta.d.ts +0 -1
- package/locale-data/ta.js +0 -6
- package/locale-data/te.d.ts +0 -1
- package/locale-data/te.js +0 -6
- package/locale-data/teo-KE.d.ts +0 -1
- package/locale-data/teo-KE.js +0 -6
- package/locale-data/teo.d.ts +0 -1
- package/locale-data/teo.js +0 -6
- package/locale-data/tg.d.ts +0 -1
- package/locale-data/tg.js +0 -6
- package/locale-data/th.d.ts +0 -1
- package/locale-data/th.js +0 -6
- package/locale-data/ti-ER.d.ts +0 -1
- package/locale-data/ti-ER.js +0 -6
- package/locale-data/ti.d.ts +0 -1
- package/locale-data/ti.js +0 -6
- package/locale-data/tk.d.ts +0 -1
- package/locale-data/tk.js +0 -6
- package/locale-data/to.d.ts +0 -1
- package/locale-data/to.js +0 -6
- package/locale-data/tr-CY.d.ts +0 -1
- package/locale-data/tr-CY.js +0 -6
- package/locale-data/tr.d.ts +0 -1
- package/locale-data/tr.js +0 -6
- package/locale-data/tt.d.ts +0 -1
- package/locale-data/tt.js +0 -6
- package/locale-data/twq.d.ts +0 -1
- package/locale-data/twq.js +0 -6
- package/locale-data/tzm.d.ts +0 -1
- package/locale-data/tzm.js +0 -6
- package/locale-data/ug.d.ts +0 -1
- package/locale-data/ug.js +0 -6
- package/locale-data/uk.d.ts +0 -1
- package/locale-data/uk.js +0 -6
- package/locale-data/und.d.ts +0 -1
- package/locale-data/und.js +0 -6
- package/locale-data/ur-IN.d.ts +0 -1
- package/locale-data/ur-IN.js +0 -6
- package/locale-data/ur.d.ts +0 -1
- package/locale-data/ur.js +0 -6
- package/locale-data/uz-Arab.d.ts +0 -1
- package/locale-data/uz-Arab.js +0 -6
- package/locale-data/uz-Cyrl.d.ts +0 -1
- package/locale-data/uz-Cyrl.js +0 -6
- package/locale-data/uz-Latn.d.ts +0 -1
- package/locale-data/uz-Latn.js +0 -6
- package/locale-data/uz.d.ts +0 -1
- package/locale-data/uz.js +0 -6
- package/locale-data/vai-Latn.d.ts +0 -1
- package/locale-data/vai-Latn.js +0 -6
- package/locale-data/vai-Vaii.d.ts +0 -1
- package/locale-data/vai-Vaii.js +0 -6
- package/locale-data/vai.d.ts +0 -1
- package/locale-data/vai.js +0 -6
- package/locale-data/vi.d.ts +0 -1
- package/locale-data/vi.js +0 -6
- package/locale-data/vun.d.ts +0 -1
- package/locale-data/vun.js +0 -6
- package/locale-data/wae.d.ts +0 -1
- package/locale-data/wae.js +0 -6
- package/locale-data/wo.d.ts +0 -1
- package/locale-data/wo.js +0 -6
- package/locale-data/xh.d.ts +0 -1
- package/locale-data/xh.js +0 -6
- package/locale-data/xog.d.ts +0 -1
- package/locale-data/xog.js +0 -6
- package/locale-data/yav.d.ts +0 -1
- package/locale-data/yav.js +0 -6
- package/locale-data/yi.d.ts +0 -1
- package/locale-data/yi.js +0 -6
- package/locale-data/yo-BJ.d.ts +0 -1
- package/locale-data/yo-BJ.js +0 -6
- package/locale-data/yo.d.ts +0 -1
- package/locale-data/yo.js +0 -6
- package/locale-data/yrl-CO.d.ts +0 -1
- package/locale-data/yrl-CO.js +0 -6
- package/locale-data/yrl-VE.d.ts +0 -1
- package/locale-data/yrl-VE.js +0 -6
- package/locale-data/yrl.d.ts +0 -1
- package/locale-data/yrl.js +0 -6
- package/locale-data/yue-Hans.d.ts +0 -1
- package/locale-data/yue-Hans.js +0 -6
- package/locale-data/yue-Hant.d.ts +0 -1
- package/locale-data/yue-Hant.js +0 -6
- package/locale-data/yue.d.ts +0 -1
- package/locale-data/yue.js +0 -6
- package/locale-data/zgh.d.ts +0 -1
- package/locale-data/zgh.js +0 -6
- package/locale-data/zh-Hans-HK.d.ts +0 -1
- package/locale-data/zh-Hans-HK.js +0 -6
- package/locale-data/zh-Hans-MO.d.ts +0 -1
- package/locale-data/zh-Hans-MO.js +0 -6
- package/locale-data/zh-Hans-SG.d.ts +0 -1
- package/locale-data/zh-Hans-SG.js +0 -6
- package/locale-data/zh-Hans.d.ts +0 -1
- package/locale-data/zh-Hans.js +0 -6
- package/locale-data/zh-Hant-HK.d.ts +0 -1
- package/locale-data/zh-Hant-HK.js +0 -6
- package/locale-data/zh-Hant-MO.d.ts +0 -1
- package/locale-data/zh-Hant-MO.js +0 -6
- package/locale-data/zh-Hant.d.ts +0 -1
- package/locale-data/zh-Hant.js +0 -6
- package/locale-data/zh.d.ts +0 -1
- package/locale-data/zh.js +0 -6
- package/locale-data/zu.d.ts +0 -1
- package/locale-data/zu.js +0 -6
- package/polyfill-force.d.ts +0 -2
- package/polyfill-force.d.ts.map +0 -1
- package/polyfill-force.js +0 -11
- package/polyfill.d.ts +0 -2
- package/polyfill.d.ts.map +0 -1
- package/polyfill.iife.js +0 -2787
- package/polyfill.js +0 -14
- package/should-polyfill.d.ts +0 -2
- package/should-polyfill.d.ts.map +0 -1
- package/should-polyfill.js +0 -57
- package/src/core.d.ts +0 -7
- package/src/core.d.ts.map +0 -1
- package/src/core.js +0 -231
- package/src/currency-digits.generated.d.ts +0 -2
- package/src/currency-digits.generated.d.ts.map +0 -1
- package/src/currency-digits.generated.js +0 -4
- package/src/get_internal_slots.d.ts +0 -3
- package/src/get_internal_slots.d.ts.map +0 -1
- package/src/get_internal_slots.js +0 -13
- package/src/numbering-systems.generated.d.ts +0 -2
- package/src/numbering-systems.generated.d.ts.map +0 -1
- package/src/numbering-systems.generated.js +0 -4
- package/src/to_locale_string.d.ts +0 -7
- package/src/to_locale_string.d.ts.map +0 -1
- package/src/to_locale_string.js +0 -14
- package/src/types.d.ts +0 -19
- package/src/types.d.ts.map +0 -1
- package/src/types.js +0 -2
- package/supported-locales.d.ts +0 -2
- package/supported-locales.d.ts.map +0 -1
- package/supported-locales.js +0 -5
package/locale-data/ca.d.ts
DELETED
|
@@ -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
|
-
}
|
package/locale-data/ccp-IN.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {}
|
package/locale-data/ccp-IN.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} ๐๐จ๐๐ณ๐ข๐ฉ"},"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
|
-
}
|
package/locale-data/ccp.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {}
|