@formatjs/intl-supportedvaluesof 2.3.8 → 2.3.10

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/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../memoize.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/calendars.js","../get-supported-calendars.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/collations.js","../get-supported-collations.ts","../../ecma402-abstract/utils.js","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/currencies.js","../get-supported-currencies.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.number@0.0.0/node_modules/@formatjs_generated/cldr.number/numbering-systems.js","../get-supported-numbering-systems.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/timezones.js","../get-supported-timezones.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/units.js","../get-supported-units.ts","../should-polyfill.ts","../index.ts"],"sourcesContent":["import {memoize, strategies} from '@formatjs/fast-memoize'\n\n/**\n * Implementation: Memoized factory for Intl.DateTimeFormat instances\n *\n * Creates and caches DateTimeFormat instances to avoid repeated instantiation overhead.\n * This is critical for performance since we test many candidate values against formatters.\n *\n * Uses variadic memoization strategy to handle varying numbers of constructor arguments.\n */\nexport const createMemoizedDateTimeFormat: (\n ...args: ConstructorParameters<typeof Intl.DateTimeFormat>\n) => Intl.DateTimeFormat = memoize(\n (...args: ConstructorParameters<typeof Intl.DateTimeFormat>) =>\n new Intl.DateTimeFormat(...args),\n {\n strategy: strategies.variadic,\n }\n)\n","/* @generated */\n// prettier-ignore\nexport const calendars = [\n\t\"buddhist\",\n\t\"chinese\",\n\t\"coptic\",\n\t\"dangi\",\n\t\"ethioaa\",\n\t\"ethiopic\",\n\t\"gregory\",\n\t\"hebrew\",\n\t\"indian\",\n\t\"islamic\",\n\t\"islamic-civil\",\n\t\"islamic-rgsa\",\n\t\"islamic-tbla\",\n\t\"islamic-umalqura\",\n\t\"islamicc\",\n\t\"iso8601\",\n\t\"japanese\",\n\t\"persian\",\n\t\"roc\"\n];\n","import {createMemoizedDateTimeFormat} from '#packages/intl-supportedvaluesof/memoize.js'\nimport type {Calendar} from '@formatjs_generated/cldr.supported-values/calendars.js'\nimport {calendars} from '@formatjs_generated/cldr.supported-values/calendars.js'\n\n/**\n * Implementation: Tests if a calendar is supported by attempting to create\n * a DateTimeFormat with that calendar and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR calendar types\n */\nfunction isSupportedCalendar(item: Calendar): boolean {\n try {\n // Always use 'en' for testing\n const dateTimeFormat = createMemoizedDateTimeFormat(`en-u-ca-${item}`)\n const options = dateTimeFormat.resolvedOptions().calendar\n\n // Verify the calendar was actually accepted (resolved calendar matches requested)\n return options === item\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported calendar identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedCalendars(): Calendar[] {\n return calendars.filter(isSupportedCalendar).sort()\n}\n","/* @generated */\n// prettier-ignore\nexport const collations = [\n\t\"big5han\",\n\t\"compat\",\n\t\"dict\",\n\t\"direct\",\n\t\"ducet\",\n\t\"emoji\",\n\t\"eor\",\n\t\"gb2312\",\n\t\"phonebk\",\n\t\"phonetic\",\n\t\"pinyin\",\n\t\"reformed\",\n\t\"search\",\n\t\"searchjl\",\n\t\"standard\",\n\t\"stroke\",\n\t\"trad\",\n\t\"unihan\",\n\t\"zhuyin\"\n];\n","import type {Collation} from '@formatjs_generated/cldr.supported-values/collations.js'\nimport {collations} from '@formatjs_generated/cldr.supported-values/collations.js'\n\n/**\n * Implementation: Tests if a collation is supported by attempting to create\n * a Collator with that collation and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR collation types\n */\nfunction isSupportedCollation(collation: Collation): boolean {\n try {\n // Always use 'en' for testing\n return (\n Intl.Collator(`en-u-co-${collation}`).resolvedOptions().collation ===\n collation\n )\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported collation identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedCollations(): Collation[] {\n return collations.filter(isSupportedCollation).sort()\n}\n","import { memoize, strategies } from \"@formatjs/fast-memoize\";\nexport function repeat(s, times) {\n\tif (typeof s.repeat === \"function\") {\n\t\treturn s.repeat(times);\n\t}\n\tconst arr = Array.from({ length: times });\n\tfor (let i = 0; i < arr.length; i++) {\n\t\tarr[i] = s;\n\t}\n\treturn arr.join(\"\");\n}\nexport function setInternalSlot(map, pl, field, value) {\n\tif (!map.get(pl)) {\n\t\tmap.set(pl, Object.create(null));\n\t}\n\tconst slots = map.get(pl);\n\tslots[field] = value;\n}\nexport function getInternalSlot(map, pl, field) {\n\treturn getMultiInternalSlots(map, pl, field)[field];\n}\nexport function getMultiInternalSlots(map, pl, ...fields) {\n\tconst slots = map.get(pl);\n\tif (!slots) {\n\t\tthrow new TypeError(`${pl} InternalSlot has not been initialized`);\n\t}\n\treturn fields.reduce((all, f) => {\n\t\tall[f] = slots[f];\n\t\treturn all;\n\t}, Object.create(null));\n}\nexport function isLiteralPart(patternPart) {\n\treturn patternPart.type === \"literal\";\n}\n/*\n17 ECMAScript Standard Built-in Objects:\nEvery built-in Function object, including constructors, that is not\nidentified as an anonymous function has a name property whose value\nis a String.\n\nUnless otherwise specified, the name property of a built-in Function\nobject, if it exists, has the attributes { [[Writable]]: false,\n[[Enumerable]]: false, [[Configurable]]: true }.\n*/\nexport function defineProperty(target, name, { value }) {\n\tObject.defineProperty(target, name, {\n\t\tconfigurable: true,\n\t\tenumerable: false,\n\t\twritable: true,\n\t\tvalue\n\t});\n}\nexport function ensureIntl() {\n\tif (typeof Intl === \"undefined\") {\n\t\tObject.defineProperty(globalThis, \"Intl\", {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\twritable: true,\n\t\t\tvalue: {}\n\t\t});\n\t}\n\treturn Intl;\n}\n/**\n* 7.3.5 CreateDataProperty\n* @param target\n* @param name\n* @param value\n*/\nexport function createDataProperty(target, name, value) {\n\tObject.defineProperty(target, name, {\n\t\tconfigurable: true,\n\t\tenumerable: true,\n\t\twritable: true,\n\t\tvalue\n\t});\n}\nexport function invariant(condition, message, Err = Error) {\n\tif (!condition) {\n\t\tthrow new Err(message);\n\t}\n}\nexport const createMemoizedNumberFormat = memoize((...args) => new Intl.NumberFormat(...args), { strategy: strategies.variadic });\nexport const createMemoizedPluralRules = memoize((...args) => new Intl.PluralRules(...args), { strategy: strategies.variadic });\nexport const createMemoizedListFormat = memoize((...args) => new Intl.ListFormat(...args), { strategy: strategies.variadic });\n","/* @generated */\n// prettier-ignore\nexport const currencies = [\n\t\"ADP\",\n\t\"AED\",\n\t\"AFA\",\n\t\"AFN\",\n\t\"ALK\",\n\t\"ALL\",\n\t\"AMD\",\n\t\"ANG\",\n\t\"AOA\",\n\t\"AOK\",\n\t\"AON\",\n\t\"AOR\",\n\t\"ARA\",\n\t\"ARL\",\n\t\"ARM\",\n\t\"ARP\",\n\t\"ARS\",\n\t\"ATS\",\n\t\"AUD\",\n\t\"AWG\",\n\t\"AZM\",\n\t\"AZN\",\n\t\"BAD\",\n\t\"BAM\",\n\t\"BAN\",\n\t\"BBD\",\n\t\"BDT\",\n\t\"BEC\",\n\t\"BEF\",\n\t\"BEL\",\n\t\"BGL\",\n\t\"BGM\",\n\t\"BGN\",\n\t\"BGO\",\n\t\"BHD\",\n\t\"BIF\",\n\t\"BMD\",\n\t\"BND\",\n\t\"BOB\",\n\t\"BOL\",\n\t\"BOP\",\n\t\"BOV\",\n\t\"BRB\",\n\t\"BRC\",\n\t\"BRE\",\n\t\"BRL\",\n\t\"BRN\",\n\t\"BRR\",\n\t\"BRZ\",\n\t\"BSD\",\n\t\"BTN\",\n\t\"BUK\",\n\t\"BWP\",\n\t\"BYB\",\n\t\"BYN\",\n\t\"BYR\",\n\t\"BZD\",\n\t\"CAD\",\n\t\"CDF\",\n\t\"CHE\",\n\t\"CHF\",\n\t\"CHW\",\n\t\"CLE\",\n\t\"CLF\",\n\t\"CLP\",\n\t\"CNH\",\n\t\"CNX\",\n\t\"CNY\",\n\t\"COP\",\n\t\"COU\",\n\t\"CRC\",\n\t\"CSD\",\n\t\"CSK\",\n\t\"CUC\",\n\t\"CUP\",\n\t\"CVE\",\n\t\"CYP\",\n\t\"CZK\",\n\t\"DDM\",\n\t\"DEM\",\n\t\"DJF\",\n\t\"DKK\",\n\t\"DOP\",\n\t\"DZD\",\n\t\"ECS\",\n\t\"ECV\",\n\t\"EEK\",\n\t\"EGP\",\n\t\"ERN\",\n\t\"ESA\",\n\t\"ESB\",\n\t\"ESP\",\n\t\"ETB\",\n\t\"EUR\",\n\t\"FIM\",\n\t\"FJD\",\n\t\"FKP\",\n\t\"FRF\",\n\t\"GBP\",\n\t\"GEK\",\n\t\"GEL\",\n\t\"GHC\",\n\t\"GHS\",\n\t\"GIP\",\n\t\"GMD\",\n\t\"GNF\",\n\t\"GNS\",\n\t\"GQE\",\n\t\"GRD\",\n\t\"GTQ\",\n\t\"GWE\",\n\t\"GWP\",\n\t\"GYD\",\n\t\"HKD\",\n\t\"HNL\",\n\t\"HRD\",\n\t\"HRK\",\n\t\"HTG\",\n\t\"HUF\",\n\t\"IDR\",\n\t\"IEP\",\n\t\"ILP\",\n\t\"ILR\",\n\t\"ILS\",\n\t\"INR\",\n\t\"IQD\",\n\t\"IRR\",\n\t\"ISJ\",\n\t\"ISK\",\n\t\"ITL\",\n\t\"JMD\",\n\t\"JOD\",\n\t\"JPY\",\n\t\"KES\",\n\t\"KGS\",\n\t\"KHR\",\n\t\"KMF\",\n\t\"KPW\",\n\t\"KRH\",\n\t\"KRO\",\n\t\"KRW\",\n\t\"KWD\",\n\t\"KYD\",\n\t\"KZT\",\n\t\"LAK\",\n\t\"LBP\",\n\t\"LKR\",\n\t\"LRD\",\n\t\"LSL\",\n\t\"LTL\",\n\t\"LTT\",\n\t\"LUC\",\n\t\"LUF\",\n\t\"LUL\",\n\t\"LVL\",\n\t\"LVR\",\n\t\"LYD\",\n\t\"MAD\",\n\t\"MAF\",\n\t\"MCF\",\n\t\"MDC\",\n\t\"MDL\",\n\t\"MGA\",\n\t\"MGF\",\n\t\"MKD\",\n\t\"MKN\",\n\t\"MLF\",\n\t\"MMK\",\n\t\"MNT\",\n\t\"MOP\",\n\t\"MRO\",\n\t\"MRU\",\n\t\"MTL\",\n\t\"MTP\",\n\t\"MUR\",\n\t\"MVP\",\n\t\"MVR\",\n\t\"MWK\",\n\t\"MXN\",\n\t\"MXP\",\n\t\"MXV\",\n\t\"MYR\",\n\t\"MZE\",\n\t\"MZM\",\n\t\"MZN\",\n\t\"NAD\",\n\t\"NGN\",\n\t\"NIC\",\n\t\"NIO\",\n\t\"NLG\",\n\t\"NOK\",\n\t\"NPR\",\n\t\"NZD\",\n\t\"OMR\",\n\t\"PAB\",\n\t\"PEI\",\n\t\"PEN\",\n\t\"PES\",\n\t\"PGK\",\n\t\"PHP\",\n\t\"PKR\",\n\t\"PLN\",\n\t\"PLZ\",\n\t\"PTE\",\n\t\"PYG\",\n\t\"QAR\",\n\t\"RHD\",\n\t\"ROL\",\n\t\"RON\",\n\t\"RSD\",\n\t\"RUB\",\n\t\"RUR\",\n\t\"RWF\",\n\t\"SAR\",\n\t\"SBD\",\n\t\"SCR\",\n\t\"SDD\",\n\t\"SDG\",\n\t\"SDP\",\n\t\"SEK\",\n\t\"SGD\",\n\t\"SHP\",\n\t\"SIT\",\n\t\"SKK\",\n\t\"SLE\",\n\t\"SLL\",\n\t\"SOS\",\n\t\"SRD\",\n\t\"SRG\",\n\t\"SSP\",\n\t\"STD\",\n\t\"STN\",\n\t\"SUR\",\n\t\"SVC\",\n\t\"SYP\",\n\t\"SZL\",\n\t\"THB\",\n\t\"TJR\",\n\t\"TJS\",\n\t\"TMM\",\n\t\"TMT\",\n\t\"TND\",\n\t\"TOP\",\n\t\"TPE\",\n\t\"TRL\",\n\t\"TRY\",\n\t\"TTD\",\n\t\"TWD\",\n\t\"TZS\",\n\t\"UAH\",\n\t\"UAK\",\n\t\"UGS\",\n\t\"UGX\",\n\t\"USD\",\n\t\"USN\",\n\t\"USS\",\n\t\"UYI\",\n\t\"UYP\",\n\t\"UYU\",\n\t\"UYW\",\n\t\"UZS\",\n\t\"VEB\",\n\t\"VED\",\n\t\"VEF\",\n\t\"VES\",\n\t\"VND\",\n\t\"VNN\",\n\t\"VUV\",\n\t\"WST\",\n\t\"XAF\",\n\t\"XAG\",\n\t\"XAU\",\n\t\"XBA\",\n\t\"XBB\",\n\t\"XBC\",\n\t\"XBD\",\n\t\"XCD\",\n\t\"XCG\",\n\t\"XDR\",\n\t\"XEU\",\n\t\"XFO\",\n\t\"XFU\",\n\t\"XOF\",\n\t\"XPD\",\n\t\"XPF\",\n\t\"XPT\",\n\t\"XRE\",\n\t\"XSU\",\n\t\"XTS\",\n\t\"XUA\",\n\t\"XXX\",\n\t\"YDD\",\n\t\"YER\",\n\t\"YUD\",\n\t\"YUM\",\n\t\"YUN\",\n\t\"YUR\",\n\t\"ZAL\",\n\t\"ZAR\",\n\t\"ZMK\",\n\t\"ZMW\",\n\t\"ZRN\",\n\t\"ZRZ\",\n\t\"ZWD\",\n\t\"ZWG\",\n\t\"ZWL\",\n\t\"ZWR\"\n];\n","import {createMemoizedNumberFormat} from '#packages/ecma402-abstract/utils.js'\nimport type {Currency} from '@formatjs_generated/cldr.supported-values/currencies.js'\nimport {currencies} from '@formatjs_generated/cldr.supported-values/currencies.js'\n\n/**\n * Implementation: Tests if a currency is supported by attempting to create\n * a NumberFormat with that currency and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR currency codes (ISO 4217)\n */\nfunction isSupportedCurrency(currency: Currency): boolean {\n try {\n // Always use 'en' for testing\n const numberFormat = createMemoizedNumberFormat('en', {\n style: 'currency',\n currencyDisplay: 'name',\n currency,\n })\n\n const format = numberFormat.format(123)\n\n if (\n format.substring(0, 3) !== currency &&\n format.substring(format.length - 3) !== currency\n ) {\n return true\n }\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported currency identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedCurrencies(): Currency[] {\n const ATOZ = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'\n const supportedCurrencies: Currency[] = []\n\n for (const currency of currencies) {\n if (currency.length === 3) {\n if (isSupportedCurrency(currency)) {\n supportedCurrencies.push(currency)\n }\n } else if (currency.length === 5 && currency[3] === '~') {\n const start = ATOZ.indexOf(currency[2])\n const end = ATOZ.indexOf(currency[4])\n\n for (let i = start; i <= end; i++) {\n const currentCurrency = (currency.substring(0, 2) + ATOZ[i]) as Currency\n if (isSupportedCurrency(currentCurrency)) {\n supportedCurrencies.push(currentCurrency)\n }\n }\n }\n }\n\n return supportedCurrencies.sort()\n}\n","export const numberingSystemNames = [\n\t\"adlm\",\n\t\"ahom\",\n\t\"arab\",\n\t\"arabext\",\n\t\"armn\",\n\t\"armnlow\",\n\t\"bali\",\n\t\"beng\",\n\t\"bhks\",\n\t\"brah\",\n\t\"cakm\",\n\t\"cham\",\n\t\"cyrl\",\n\t\"deva\",\n\t\"diak\",\n\t\"ethi\",\n\t\"fullwide\",\n\t\"gara\",\n\t\"geor\",\n\t\"gong\",\n\t\"gonm\",\n\t\"grek\",\n\t\"greklow\",\n\t\"gujr\",\n\t\"gukh\",\n\t\"guru\",\n\t\"hanidays\",\n\t\"hanidec\",\n\t\"hans\",\n\t\"hansfin\",\n\t\"hant\",\n\t\"hantfin\",\n\t\"hebr\",\n\t\"hmng\",\n\t\"hmnp\",\n\t\"java\",\n\t\"jpan\",\n\t\"jpanfin\",\n\t\"jpanyear\",\n\t\"kali\",\n\t\"kawi\",\n\t\"khmr\",\n\t\"knda\",\n\t\"krai\",\n\t\"lana\",\n\t\"lanatham\",\n\t\"laoo\",\n\t\"latn\",\n\t\"lepc\",\n\t\"limb\",\n\t\"mathbold\",\n\t\"mathdbl\",\n\t\"mathmono\",\n\t\"mathsanb\",\n\t\"mathsans\",\n\t\"mlym\",\n\t\"modi\",\n\t\"mong\",\n\t\"mroo\",\n\t\"mtei\",\n\t\"mymr\",\n\t\"mymrepka\",\n\t\"mymrpao\",\n\t\"mymrshan\",\n\t\"mymrtlng\",\n\t\"nagm\",\n\t\"newa\",\n\t\"nkoo\",\n\t\"olck\",\n\t\"onao\",\n\t\"orya\",\n\t\"osma\",\n\t\"outlined\",\n\t\"rohg\",\n\t\"roman\",\n\t\"romanlow\",\n\t\"saur\",\n\t\"segment\",\n\t\"shrd\",\n\t\"sind\",\n\t\"sinh\",\n\t\"sora\",\n\t\"sund\",\n\t\"sunu\",\n\t\"takr\",\n\t\"talu\",\n\t\"taml\",\n\t\"tamldec\",\n\t\"telu\",\n\t\"thai\",\n\t\"tibt\",\n\t\"tirh\",\n\t\"tnsa\",\n\t\"tols\",\n\t\"vaii\",\n\t\"wara\",\n\t\"wcho\"\n];\n","import {createMemoizedNumberFormat} from '#packages/ecma402-abstract/utils.js'\nimport {numberingSystemNames} from '@formatjs_generated/cldr.number/numbering-systems.js'\n\n/**\n * Implementation: Tests if a numbering system is supported by attempting to create\n * a NumberFormat with that numbering system and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR numbering system types\n */\nfunction isSupportedNumberingSystem(system: string): boolean {\n try {\n // Always use 'en' for testing\n const numberFormat = createMemoizedNumberFormat(`en-u-nu-${system}`)\n const options = numberFormat.resolvedOptions().numberingSystem\n\n if (\n (options === system && system === 'latn') ||\n numberFormat.format(123) !== '123'\n ) {\n return true\n }\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported numbering system identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedNumberingSystems(): string[] {\n return numberingSystemNames.filter(isSupportedNumberingSystem).sort()\n}\n","/* @generated */\n// prettier-ignore\nexport const timezones = [\n\t\"Africa/Abidjan\",\n\t\"Africa/Accra\",\n\t\"Africa/Addis_Ababa\",\n\t\"Africa/Algiers\",\n\t\"Africa/Asmara\",\n\t\"Africa/Bamako\",\n\t\"Africa/Bangui\",\n\t\"Africa/Banjul\",\n\t\"Africa/Bissau\",\n\t\"Africa/Blantyre\",\n\t\"Africa/Brazzaville\",\n\t\"Africa/Bujumbura\",\n\t\"Africa/Cairo\",\n\t\"Africa/Casablanca\",\n\t\"Africa/Ceuta\",\n\t\"Africa/Conakry\",\n\t\"Africa/Dakar\",\n\t\"Africa/Dar_es_Salaam\",\n\t\"Africa/Djibouti\",\n\t\"Africa/Douala\",\n\t\"Africa/El_Aaiun\",\n\t\"Africa/Freetown\",\n\t\"Africa/Gaborone\",\n\t\"Africa/Harare\",\n\t\"Africa/Johannesburg\",\n\t\"Africa/Juba\",\n\t\"Africa/Kampala\",\n\t\"Africa/Khartoum\",\n\t\"Africa/Kigali\",\n\t\"Africa/Kinshasa\",\n\t\"Africa/Lagos\",\n\t\"Africa/Libreville\",\n\t\"Africa/Lome\",\n\t\"Africa/Luanda\",\n\t\"Africa/Lubumbashi\",\n\t\"Africa/Lusaka\",\n\t\"Africa/Malabo\",\n\t\"Africa/Maputo\",\n\t\"Africa/Maseru\",\n\t\"Africa/Mbabane\",\n\t\"Africa/Mogadishu\",\n\t\"Africa/Monrovia\",\n\t\"Africa/Nairobi\",\n\t\"Africa/Ndjamena\",\n\t\"Africa/Niamey\",\n\t\"Africa/Nouakchott\",\n\t\"Africa/Ouagadougou\",\n\t\"Africa/Porto-Novo\",\n\t\"Africa/Sao_Tome\",\n\t\"Africa/Tripoli\",\n\t\"Africa/Tunis\",\n\t\"Africa/Windhoek\",\n\t\"America/Adak\",\n\t\"America/Anchorage\",\n\t\"America/Anguilla\",\n\t\"America/Antigua\",\n\t\"America/Araguaina\",\n\t\"America/Argentina/Buenos_Aires\",\n\t\"America/Argentina/Catamarca\",\n\t\"America/Argentina/Cordoba\",\n\t\"America/Argentina/Jujuy\",\n\t\"America/Argentina/La_Rioja\",\n\t\"America/Argentina/Mendoza\",\n\t\"America/Argentina/Rio_Gallegos\",\n\t\"America/Argentina/Salta\",\n\t\"America/Argentina/San_Juan\",\n\t\"America/Argentina/San_Luis\",\n\t\"America/Argentina/Tucuman\",\n\t\"America/Argentina/Ushuaia\",\n\t\"America/Aruba\",\n\t\"America/Asuncion\",\n\t\"America/Atikokan\",\n\t\"America/Bahia_Banderas\",\n\t\"America/Bahia\",\n\t\"America/Barbados\",\n\t\"America/Belem\",\n\t\"America/Belize\",\n\t\"America/Blanc-Sablon\",\n\t\"America/Boa_Vista\",\n\t\"America/Bogota\",\n\t\"America/Boise\",\n\t\"America/Cambridge_Bay\",\n\t\"America/Campo_Grande\",\n\t\"America/Cancun\",\n\t\"America/Caracas\",\n\t\"America/Cayenne\",\n\t\"America/Cayman\",\n\t\"America/Chicago\",\n\t\"America/Chihuahua\",\n\t\"America/Ciudad_Juarez\",\n\t\"America/Costa_Rica\",\n\t\"America/Coyhaique\",\n\t\"America/Creston\",\n\t\"America/Cuiaba\",\n\t\"America/Curacao\",\n\t\"America/Danmarkshavn\",\n\t\"America/Dawson_Creek\",\n\t\"America/Dawson\",\n\t\"America/Denver\",\n\t\"America/Detroit\",\n\t\"America/Dominica\",\n\t\"America/Edmonton\",\n\t\"America/Eirunepe\",\n\t\"America/El_Salvador\",\n\t\"America/Fort_Nelson\",\n\t\"America/Fortaleza\",\n\t\"America/Glace_Bay\",\n\t\"America/Goose_Bay\",\n\t\"America/Grand_Turk\",\n\t\"America/Grenada\",\n\t\"America/Guadeloupe\",\n\t\"America/Guatemala\",\n\t\"America/Guayaquil\",\n\t\"America/Guyana\",\n\t\"America/Halifax\",\n\t\"America/Havana\",\n\t\"America/Hermosillo\",\n\t\"America/Indiana/Indianapolis\",\n\t\"America/Indiana/Knox\",\n\t\"America/Indiana/Marengo\",\n\t\"America/Indiana/Petersburg\",\n\t\"America/Indiana/Tell_City\",\n\t\"America/Indiana/Vevay\",\n\t\"America/Indiana/Vincennes\",\n\t\"America/Indiana/Winamac\",\n\t\"America/Inuvik\",\n\t\"America/Iqaluit\",\n\t\"America/Jamaica\",\n\t\"America/Juneau\",\n\t\"America/Kentucky/Louisville\",\n\t\"America/Kentucky/Monticello\",\n\t\"America/Kralendijk\",\n\t\"America/La_Paz\",\n\t\"America/Lima\",\n\t\"America/Los_Angeles\",\n\t\"America/Lower_Princes\",\n\t\"America/Maceio\",\n\t\"America/Managua\",\n\t\"America/Manaus\",\n\t\"America/Marigot\",\n\t\"America/Martinique\",\n\t\"America/Matamoros\",\n\t\"America/Mazatlan\",\n\t\"America/Menominee\",\n\t\"America/Merida\",\n\t\"America/Metlakatla\",\n\t\"America/Mexico_City\",\n\t\"America/Miquelon\",\n\t\"America/Moncton\",\n\t\"America/Monterrey\",\n\t\"America/Montevideo\",\n\t\"America/Montserrat\",\n\t\"America/Nassau\",\n\t\"America/New_York\",\n\t\"America/Nipigon\",\n\t\"America/Nome\",\n\t\"America/Noronha\",\n\t\"America/North_Dakota/Beulah\",\n\t\"America/North_Dakota/Center\",\n\t\"America/North_Dakota/New_Salem\",\n\t\"America/Nuuk\",\n\t\"America/Ojinaga\",\n\t\"America/Panama\",\n\t\"America/Pangnirtung\",\n\t\"America/Paramaribo\",\n\t\"America/Phoenix\",\n\t\"America/Port_of_Spain\",\n\t\"America/Port-au-Prince\",\n\t\"America/Porto_Velho\",\n\t\"America/Puerto_Rico\",\n\t\"America/Punta_Arenas\",\n\t\"America/Rainy_River\",\n\t\"America/Rankin_Inlet\",\n\t\"America/Recife\",\n\t\"America/Regina\",\n\t\"America/Resolute\",\n\t\"America/Rio_Branco\",\n\t\"America/Santarem\",\n\t\"America/Santiago\",\n\t\"America/Santo_Domingo\",\n\t\"America/Sao_Paulo\",\n\t\"America/Scoresbysund\",\n\t\"America/Sitka\",\n\t\"America/St_Barthelemy\",\n\t\"America/St_Johns\",\n\t\"America/St_Kitts\",\n\t\"America/St_Lucia\",\n\t\"America/St_Thomas\",\n\t\"America/St_Vincent\",\n\t\"America/Swift_Current\",\n\t\"America/Tegucigalpa\",\n\t\"America/Thule\",\n\t\"America/Thunder_Bay\",\n\t\"America/Tijuana\",\n\t\"America/Toronto\",\n\t\"America/Tortola\",\n\t\"America/Vancouver\",\n\t\"America/Whitehorse\",\n\t\"America/Winnipeg\",\n\t\"America/Yakutat\",\n\t\"America/Yellowknife\",\n\t\"Antarctica/Casey\",\n\t\"Antarctica/Davis\",\n\t\"Antarctica/DumontDUrville\",\n\t\"Antarctica/Macquarie\",\n\t\"Antarctica/Mawson\",\n\t\"Antarctica/McMurdo\",\n\t\"Antarctica/Palmer\",\n\t\"Antarctica/Rothera\",\n\t\"Antarctica/Syowa\",\n\t\"Antarctica/Troll\",\n\t\"Antarctica/Vostok\",\n\t\"Arctic/Longyearbyen\",\n\t\"Asia/Aden\",\n\t\"Asia/Almaty\",\n\t\"Asia/Amman\",\n\t\"Asia/Anadyr\",\n\t\"Asia/Aqtau\",\n\t\"Asia/Aqtobe\",\n\t\"Asia/Ashgabat\",\n\t\"Asia/Atyrau\",\n\t\"Asia/Baghdad\",\n\t\"Asia/Bahrain\",\n\t\"Asia/Baku\",\n\t\"Asia/Bangkok\",\n\t\"Asia/Barnaul\",\n\t\"Asia/Beirut\",\n\t\"Asia/Bishkek\",\n\t\"Asia/Brunei\",\n\t\"Asia/Chita\",\n\t\"Asia/Choibalsan\",\n\t\"Asia/Colombo\",\n\t\"Asia/Damascus\",\n\t\"Asia/Dhaka\",\n\t\"Asia/Dili\",\n\t\"Asia/Dubai\",\n\t\"Asia/Dushanbe\",\n\t\"Asia/Famagusta\",\n\t\"Asia/Gaza\",\n\t\"Asia/Hebron\",\n\t\"Asia/Ho_Chi_Minh\",\n\t\"Asia/Hong_Kong\",\n\t\"Asia/Hovd\",\n\t\"Asia/Irkutsk\",\n\t\"Asia/Jakarta\",\n\t\"Asia/Jayapura\",\n\t\"Asia/Jerusalem\",\n\t\"Asia/Kabul\",\n\t\"Asia/Kamchatka\",\n\t\"Asia/Karachi\",\n\t\"Asia/Kathmandu\",\n\t\"Asia/Khandyga\",\n\t\"Asia/Kolkata\",\n\t\"Asia/Krasnoyarsk\",\n\t\"Asia/Kuala_Lumpur\",\n\t\"Asia/Kuching\",\n\t\"Asia/Kuwait\",\n\t\"Asia/Macau\",\n\t\"Asia/Magadan\",\n\t\"Asia/Makassar\",\n\t\"Asia/Manila\",\n\t\"Asia/Muscat\",\n\t\"Asia/Nicosia\",\n\t\"Asia/Novokuznetsk\",\n\t\"Asia/Novosibirsk\",\n\t\"Asia/Omsk\",\n\t\"Asia/Oral\",\n\t\"Asia/Phnom_Penh\",\n\t\"Asia/Pontianak\",\n\t\"Asia/Pyongyang\",\n\t\"Asia/Qatar\",\n\t\"Asia/Qostanay\",\n\t\"Asia/Qyzylorda\",\n\t\"Asia/Riyadh\",\n\t\"Asia/Sakhalin\",\n\t\"Asia/Samarkand\",\n\t\"Asia/Seoul\",\n\t\"Asia/Shanghai\",\n\t\"Asia/Singapore\",\n\t\"Asia/Srednekolymsk\",\n\t\"Asia/Taipei\",\n\t\"Asia/Tashkent\",\n\t\"Asia/Tbilisi\",\n\t\"Asia/Tehran\",\n\t\"Asia/Thimphu\",\n\t\"Asia/Tokyo\",\n\t\"Asia/Tomsk\",\n\t\"Asia/Ulaanbaatar\",\n\t\"Asia/Urumqi\",\n\t\"Asia/Ust-Nera\",\n\t\"Asia/Vientiane\",\n\t\"Asia/Vladivostok\",\n\t\"Asia/Yakutsk\",\n\t\"Asia/Yangon\",\n\t\"Asia/Yekaterinburg\",\n\t\"Asia/Yerevan\",\n\t\"Atlantic/Azores\",\n\t\"Atlantic/Bermuda\",\n\t\"Atlantic/Canary\",\n\t\"Atlantic/Cape_Verde\",\n\t\"Atlantic/Faroe\",\n\t\"Atlantic/Madeira\",\n\t\"Atlantic/Reykjavik\",\n\t\"Atlantic/South_Georgia\",\n\t\"Atlantic/St_Helena\",\n\t\"Atlantic/Stanley\",\n\t\"Australia/Adelaide\",\n\t\"Australia/Brisbane\",\n\t\"Australia/Broken_Hill\",\n\t\"Australia/Currie\",\n\t\"Australia/Darwin\",\n\t\"Australia/Eucla\",\n\t\"Australia/Hobart\",\n\t\"Australia/Lindeman\",\n\t\"Australia/Lord_Howe\",\n\t\"Australia/Melbourne\",\n\t\"Australia/Perth\",\n\t\"Australia/Sydney\",\n\t\"Europe/Amsterdam\",\n\t\"Europe/Andorra\",\n\t\"Europe/Astrakhan\",\n\t\"Europe/Athens\",\n\t\"Europe/Belgrade\",\n\t\"Europe/Berlin\",\n\t\"Europe/Bratislava\",\n\t\"Europe/Brussels\",\n\t\"Europe/Bucharest\",\n\t\"Europe/Budapest\",\n\t\"Europe/Busingen\",\n\t\"Europe/Chisinau\",\n\t\"Europe/Copenhagen\",\n\t\"Europe/Dublin\",\n\t\"Europe/Gibraltar\",\n\t\"Europe/Guernsey\",\n\t\"Europe/Helsinki\",\n\t\"Europe/Isle_of_Man\",\n\t\"Europe/Istanbul\",\n\t\"Europe/Jersey\",\n\t\"Europe/Kaliningrad\",\n\t\"Europe/Kyiv\",\n\t\"Europe/Kirov\",\n\t\"Europe/Lisbon\",\n\t\"Europe/Ljubljana\",\n\t\"Europe/London\",\n\t\"Europe/Luxembourg\",\n\t\"Europe/Madrid\",\n\t\"Europe/Malta\",\n\t\"Europe/Mariehamn\",\n\t\"Europe/Minsk\",\n\t\"Europe/Monaco\",\n\t\"Europe/Moscow\",\n\t\"Europe/Oslo\",\n\t\"Europe/Paris\",\n\t\"Europe/Podgorica\",\n\t\"Europe/Prague\",\n\t\"Europe/Riga\",\n\t\"Europe/Rome\",\n\t\"Europe/Samara\",\n\t\"Europe/San_Marino\",\n\t\"Europe/Sarajevo\",\n\t\"Europe/Saratov\",\n\t\"Europe/Simferopol\",\n\t\"Europe/Skopje\",\n\t\"Europe/Sofia\",\n\t\"Europe/Stockholm\",\n\t\"Europe/Tallinn\",\n\t\"Europe/Tirane\",\n\t\"Europe/Ulyanovsk\",\n\t\"Europe/Uzhgorod\",\n\t\"Europe/Vaduz\",\n\t\"Europe/Vatican\",\n\t\"Europe/Vienna\",\n\t\"Europe/Vilnius\",\n\t\"Europe/Volgograd\",\n\t\"Europe/Warsaw\",\n\t\"Europe/Zagreb\",\n\t\"Europe/Zaporozhye\",\n\t\"Europe/Zurich\",\n\t\"Indian/Antananarivo\",\n\t\"Indian/Chagos\",\n\t\"Indian/Christmas\",\n\t\"Indian/Cocos\",\n\t\"Indian/Comoro\",\n\t\"Indian/Kerguelen\",\n\t\"Indian/Mahe\",\n\t\"Indian/Maldives\",\n\t\"Indian/Mauritius\",\n\t\"Indian/Mayotte\",\n\t\"Indian/Reunion\",\n\t\"Pacific/Apia\",\n\t\"Pacific/Auckland\",\n\t\"Pacific/Bougainville\",\n\t\"Pacific/Chatham\",\n\t\"Pacific/Chuuk\",\n\t\"Pacific/Easter\",\n\t\"Pacific/Efate\",\n\t\"Pacific/Kanton\",\n\t\"Pacific/Fakaofo\",\n\t\"Pacific/Fiji\",\n\t\"Pacific/Funafuti\",\n\t\"Pacific/Galapagos\",\n\t\"Pacific/Gambier\",\n\t\"Pacific/Guadalcanal\",\n\t\"Pacific/Guam\",\n\t\"Pacific/Honolulu\",\n\t\"Pacific/Kiritimati\",\n\t\"Pacific/Kosrae\",\n\t\"Pacific/Kwajalein\",\n\t\"Pacific/Majuro\",\n\t\"Pacific/Marquesas\",\n\t\"Pacific/Midway\",\n\t\"Pacific/Nauru\",\n\t\"Pacific/Niue\",\n\t\"Pacific/Norfolk\",\n\t\"Pacific/Noumea\",\n\t\"Pacific/Pago_Pago\",\n\t\"Pacific/Palau\",\n\t\"Pacific/Pitcairn\",\n\t\"Pacific/Pohnpei\",\n\t\"Pacific/Port_Moresby\",\n\t\"Pacific/Rarotonga\",\n\t\"Pacific/Saipan\",\n\t\"Pacific/Tahiti\",\n\t\"Pacific/Tarawa\",\n\t\"Pacific/Tongatapu\",\n\t\"Pacific/Wake\",\n\t\"Pacific/Wallis\"\n];\n","import {createMemoizedDateTimeFormat} from '#packages/intl-supportedvaluesof/memoize.js'\nimport type {Timezone} from '@formatjs_generated/cldr.supported-values/timezones.js'\nimport {timezones} from '@formatjs_generated/cldr.supported-values/timezones.js'\n\n/**\n * Implementation: Tests if a timezone is supported by attempting to create\n * a DateTimeFormat with that timezone and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from IANA Time Zone Database\n */\nfunction isSupportedTimeZone(timeZone: Timezone): boolean {\n try {\n // Always use 'en' for testing\n const formatter = createMemoizedDateTimeFormat('en', {timeZone})\n return formatter.resolvedOptions().timeZone === timeZone\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported timezone identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedTimeZones(): Timezone[] {\n return timezones.filter(isSupportedTimeZone).sort()\n}\n","/* @generated */\n// prettier-ignore\nexport const units = [\n\t\"degree\",\n\t\"acre\",\n\t\"hectare\",\n\t\"percent\",\n\t\"bit\",\n\t\"byte\",\n\t\"gigabit\",\n\t\"gigabyte\",\n\t\"kilobit\",\n\t\"kilobyte\",\n\t\"megabit\",\n\t\"megabyte\",\n\t\"petabyte\",\n\t\"terabit\",\n\t\"terabyte\",\n\t\"day\",\n\t\"hour\",\n\t\"millisecond\",\n\t\"minute\",\n\t\"month\",\n\t\"second\",\n\t\"week\",\n\t\"year\",\n\t\"centimeter\",\n\t\"foot\",\n\t\"inch\",\n\t\"kilometer\",\n\t\"meter\",\n\t\"mile-scandinavian\",\n\t\"mile\",\n\t\"millimeter\",\n\t\"yard\",\n\t\"gram\",\n\t\"kilogram\",\n\t\"ounce\",\n\t\"pound\",\n\t\"stone\",\n\t\"celsius\",\n\t\"fahrenheit\",\n\t\"fluid-ounce\",\n\t\"gallon\",\n\t\"liter\",\n\t\"milliliter\"\n];\n","import {createMemoizedNumberFormat} from '#packages/ecma402-abstract/utils.js'\nimport type {Unit} from '@formatjs_generated/cldr.supported-values/units.js'\nimport {units} from '@formatjs_generated/cldr.supported-values/units.js'\n\n/**\n * Implementation: Tests if a unit is supported by attempting to create\n * a NumberFormat with that unit and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR unit types\n */\nfunction isSupportedUnit(unit: Unit): boolean {\n try {\n // Always use 'en' for testing\n const formatter = createMemoizedNumberFormat('en', {style: 'unit', unit})\n return formatter.resolvedOptions().unit === unit\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported unit identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedUnits(): (\n | 'degree'\n | 'acre'\n | 'hectare'\n | 'percent'\n | 'bit'\n | 'byte'\n | 'gigabit'\n | 'gigabyte'\n | 'kilobit'\n | 'kilobyte'\n | 'megabit'\n | 'megabyte'\n | 'petabyte'\n | 'terabit'\n | 'terabyte'\n | 'day'\n | 'hour'\n | 'millisecond'\n | 'minute'\n | 'month'\n | 'second'\n | 'week'\n | 'year'\n | 'centimeter'\n | 'foot'\n | 'inch'\n | 'kilometer'\n | 'meter'\n | 'mile-scandinavian'\n | 'mile'\n | 'millimeter'\n | 'yard'\n | 'gram'\n | 'kilogram'\n | 'ounce'\n | 'pound'\n | 'stone'\n | 'celsius'\n | 'fahrenheit'\n | 'fluid-ounce'\n | 'gallon'\n | 'liter'\n | 'milliliter'\n)[] {\n return units.filter(isSupportedUnit).sort()\n}\n","export function shouldPolyfill(): boolean {\n return typeof Intl === 'undefined' || !('supportedValuesOf' in Intl)\n}\n","import {getSupportedCalendars} from '#packages/intl-supportedvaluesof/get-supported-calendars.js'\nimport {getSupportedCollations} from '#packages/intl-supportedvaluesof/get-supported-collations.js'\nimport {getSupportedCurrencies} from '#packages/intl-supportedvaluesof/get-supported-currencies.js'\nimport {getSupportedNumberingSystems} from '#packages/intl-supportedvaluesof/get-supported-numbering-systems.js'\nimport {getSupportedTimeZones} from '#packages/intl-supportedvaluesof/get-supported-timezones.js'\nimport {getSupportedUnits} from '#packages/intl-supportedvaluesof/get-supported-units.js'\n\nexport type {Calendar} from '@formatjs_generated/cldr.supported-values/calendars.js'\nexport type {Collation} from '@formatjs_generated/cldr.supported-values/collations.js'\nexport type {Currency} from '@formatjs_generated/cldr.supported-values/currencies.js'\nexport type {Timezone} from '@formatjs_generated/cldr.supported-values/timezones.js'\nexport type {Unit} from '@formatjs_generated/cldr.supported-values/units.js'\n\nexport {shouldPolyfill} from '#packages/intl-supportedvaluesof/should-polyfill.js'\n\n/**\n * ECMA-402 Spec: Intl.supportedValuesOf\n * https://tc39.es/ecma402/#sec-intl.supportedvaluesof\n */\ndeclare global {\n namespace Intl {\n /**\n * Returns an array containing the supported values for the given key.\n * @param key - The category of values to return\n * @returns A sorted array of strings\n */\n function supportedValuesOf(\n key:\n | 'calendar'\n | 'collation'\n | 'currency'\n | 'numberingSystem'\n | 'timeZone'\n | 'unit'\n ): string[]\n }\n}\n\n/**\n * ECMA-402 Spec: Supported value categories\n */\nexport type SupportedValuesOf =\n | 'calendar'\n | 'collation'\n | 'currency'\n | 'numberingSystem'\n | 'timeZone'\n | 'unit'\n\n/**\n * ECMA-402 Spec: Intl.supportedValuesOf(key)\n * https://tc39.es/ecma402/#sec-intl.supportedvaluesof\n *\n * Returns an array containing the supported calendar, collation, currency,\n * numbering systems, time zone, or unit values supported by the implementation.\n *\n * Implementation: We validate candidate values from CLDR against the actual\n * Intl formatters to determine runtime support rather than using static lists.\n * This ensures accuracy across different JavaScript engines and runtimes.\n *\n * @param key - The category of values to return\n * @returns A sorted array of unique string values\n */\nexport function supportedValuesOf(key: SupportedValuesOf): string[] {\n // ECMA-402 Spec: Dispatch to appropriate getter based on key\n switch (key) {\n case 'calendar':\n return getSupportedCalendars()\n case 'collation':\n return getSupportedCollations()\n case 'currency':\n return getSupportedCurrencies()\n case 'numberingSystem':\n return getSupportedNumberingSystems()\n case 'timeZone':\n return getSupportedTimeZones()\n case 'unit':\n return getSupportedUnits()\n default:\n // ECMA-402 Spec: Throw RangeError for invalid keys\n throw RangeError('Invalid key: ' + key)\n }\n}\n"],"x_google_ignoreList":[1,3,6,8,10,12],"mappings":";;;;;;;;;;AAUA,MAAa,+BAEc,SACxB,GAAG,SACF,IAAI,KAAK,eAAe,GAAG,IAAI,GACjC,EACE,UAAU,WAAW,SACvB,CACF;;;AChBA,MAAa,YAAY;CACxB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACZA,SAAS,oBAAoB,MAAyB;CACpD,IAAI;EAMF,OAJuB,6BAA6B,WAAW,MAClC,EAAE,gBAAgB,EAAE,aAG9B;CACrB,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,wBAAoC;CAClD,OAAO,UAAU,OAAO,mBAAmB,EAAE,KAAK;AACpD;;;AC7BA,MAAa,aAAa;CACzB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACbA,SAAS,qBAAqB,WAA+B;CAC3D,IAAI;EAEF,OACE,KAAK,SAAS,WAAW,WAAW,EAAE,gBAAgB,EAAE,cACxD;CAEJ,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,yBAAsC;CACpD,OAAO,WAAW,OAAO,oBAAoB,EAAE,KAAK;AACtD;;;ACqDA,MAAa,6BAA6B,SAAS,GAAG,SAAS,IAAI,KAAK,aAAa,GAAG,IAAI,GAAG,EAAE,UAAU,WAAW,SAAS,CAAC;AACvF,SAAS,GAAG,SAAS,IAAI,KAAK,YAAY,GAAG,IAAI,GAAG,EAAE,UAAU,WAAW,SAAS,CAAC;AACtF,SAAS,GAAG,SAAS,IAAI,KAAK,WAAW,GAAG,IAAI,GAAG,EAAE,UAAU,WAAW,SAAS,CAAC;;;AClF5H,MAAa,aAAa;CACzB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;AC5SA,SAAS,oBAAoB,UAA6B;CACxD,IAAI;EAQF,MAAM,SANe,2BAA2B,MAAM;GACpD,OAAO;GACP,iBAAiB;GACjB;EACF,CAE0B,EAAE,OAAO,GAAG;EAEtC,IACE,OAAO,UAAU,GAAG,CAAC,MAAM,YAC3B,OAAO,UAAU,OAAO,SAAS,CAAC,MAAM,UAExC,OAAO;CAEX,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,yBAAqC;CACnD,MAAM,OAAO;CACb,MAAM,sBAAkC,CAAC;CAEzC,KAAK,MAAM,YAAY,YACrB,IAAI,SAAS,WAAW;MAClB,oBAAoB,QAAQ,GAC9B,oBAAoB,KAAK,QAAQ;CAAA,OAE9B,IAAI,SAAS,WAAW,KAAK,SAAS,OAAO,KAAK;EACvD,MAAM,QAAQ,KAAK,QAAQ,SAAS,EAAE;EACtC,MAAM,MAAM,KAAK,QAAQ,SAAS,EAAE;EAEpC,KAAK,IAAI,IAAI,OAAO,KAAK,KAAK,KAAK;GACjC,MAAM,kBAAmB,SAAS,UAAU,GAAG,CAAC,IAAI,KAAK;GACzD,IAAI,oBAAoB,eAAe,GACrC,oBAAoB,KAAK,eAAe;EAE5C;CACF;CAGF,OAAO,oBAAoB,KAAK;AAClC;;;AC7DA,MAAa,uBAAuB;CACnC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACzFA,SAAS,2BAA2B,QAAyB;CAC3D,IAAI;EAEF,MAAM,eAAe,2BAA2B,WAAW,QAAQ;EAGnE,IAFgB,aAAa,gBAAgB,EAAE,oBAGhC,UAAU,WAAW,UAClC,aAAa,OAAO,GAAG,MAAM,OAE7B,OAAO;CAEX,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,+BAAyC;CACvD,OAAO,qBAAqB,OAAO,0BAA0B,EAAE,KAAK;AACtE;;;AChCA,MAAa,YAAY;CACxB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACpaA,SAAS,oBAAoB,UAA6B;CACxD,IAAI;EAGF,OADkB,6BAA6B,MAAM,EAAC,SAAQ,CAC/C,EAAE,gBAAgB,EAAE,aAAa;CAClD,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,wBAAoC;CAClD,OAAO,UAAU,OAAO,mBAAmB,EAAE,KAAK;AACpD;;;AC1BA,MAAa,QAAQ;CACpB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACpCA,SAAS,gBAAgB,MAAqB;CAC5C,IAAI;EAGF,OADkB,2BAA2B,MAAM;GAAC,OAAO;GAAQ;EAAI,CACxD,EAAE,gBAAgB,EAAE,SAAS;CAC9C,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,oBA4CZ;CACF,OAAO,MAAM,OAAO,eAAe,EAAE,KAAK;AAC5C;;;ACxEA,SAAgB,iBAA0B;CACxC,OAAO,OAAO,SAAS,eAAe,EAAE,uBAAuB;AACjE;;;;;;;;;;;;;;;;;AC6DA,SAAgB,kBAAkB,KAAkC;CAElE,QAAQ,KAAR;EACE,KAAK,YACH,OAAO,sBAAsB;EAC/B,KAAK,aACH,OAAO,uBAAuB;EAChC,KAAK,YACH,OAAO,uBAAuB;EAChC,KAAK,mBACH,OAAO,6BAA6B;EACtC,KAAK,YACH,OAAO,sBAAsB;EAC/B,KAAK,QACH,OAAO,kBAAkB;EAC3B,SAEE,MAAM,WAAW,kBAAkB,GAAG;CAC1C;AACF"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../ecma262-abstract/ToString.js","../memoize.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/calendars.js","../get-supported-calendars.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/collations.js","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.collation@0.0.0/node_modules/@formatjs_generated/cldr.collation/locale-data.js","../get-supported-collations.ts","../../ecma402-abstract/utils.js","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/currencies.js","../get-supported-currencies.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.number@0.0.0/node_modules/@formatjs_generated/cldr.number/numbering-systems.js","../get-supported-numbering-systems.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/timezones.js","../get-supported-timezones.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-values@0.0.0/node_modules/@formatjs_generated/cldr.supported-values/units.js","../get-supported-units.ts","../should-polyfill.ts","../index.ts"],"sourcesContent":["/**\n* https://tc39.es/ecma262/#sec-tostring\n*/\nexport function ToString(o) {\n\tif (typeof o === \"symbol\") {\n\t\tthrow TypeError(\"Cannot convert a Symbol value to a string\");\n\t}\n\treturn String(o);\n}\n","import {memoize, strategies} from '@formatjs/fast-memoize'\n\n/**\n * Implementation: Memoized factory for Intl.DateTimeFormat instances\n *\n * Creates and caches DateTimeFormat instances to avoid repeated instantiation overhead.\n * This is critical for performance since we test many candidate values against formatters.\n *\n * Uses variadic memoization strategy to handle varying numbers of constructor arguments.\n */\nexport const createMemoizedDateTimeFormat: (\n ...args: ConstructorParameters<typeof Intl.DateTimeFormat>\n) => Intl.DateTimeFormat = memoize(\n (...args: ConstructorParameters<typeof Intl.DateTimeFormat>) =>\n new Intl.DateTimeFormat(...args),\n {\n strategy: strategies.variadic,\n }\n)\n","/* @generated */\n// prettier-ignore\nexport const calendars = [\n\t\"buddhist\",\n\t\"chinese\",\n\t\"coptic\",\n\t\"dangi\",\n\t\"ethioaa\",\n\t\"ethiopic\",\n\t\"gregory\",\n\t\"hebrew\",\n\t\"indian\",\n\t\"islamic\",\n\t\"islamic-civil\",\n\t\"islamic-rgsa\",\n\t\"islamic-tbla\",\n\t\"islamic-umalqura\",\n\t\"islamicc\",\n\t\"iso8601\",\n\t\"japanese\",\n\t\"persian\",\n\t\"roc\"\n];\n","import {createMemoizedDateTimeFormat} from '#packages/intl-supportedvaluesof/memoize.js'\nimport type {Calendar} from '@formatjs_generated/cldr.supported-values/calendars.js'\nimport {calendars} from '@formatjs_generated/cldr.supported-values/calendars.js'\n\n/**\n * Implementation: Tests if a calendar is supported by attempting to create\n * a DateTimeFormat with that calendar and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR calendar types\n */\nfunction isSupportedCalendar(item: Calendar): boolean {\n try {\n // Always use 'en' for testing\n const dateTimeFormat = createMemoizedDateTimeFormat(`en-u-ca-${item}`)\n const options = dateTimeFormat.resolvedOptions().calendar\n\n // Verify the calendar was actually accepted (resolved calendar matches requested)\n return options === item\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported calendar identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedCalendars(): Calendar[] {\n return calendars.filter(isSupportedCalendar).sort()\n}\n","/* @generated */\n// prettier-ignore\nexport const collations = [\n\t\"big5han\",\n\t\"compat\",\n\t\"dict\",\n\t\"direct\",\n\t\"ducet\",\n\t\"emoji\",\n\t\"eor\",\n\t\"gb2312\",\n\t\"phonebk\",\n\t\"phonetic\",\n\t\"pinyin\",\n\t\"reformed\",\n\t\"search\",\n\t\"searchjl\",\n\t\"standard\",\n\t\"stroke\",\n\t\"trad\",\n\t\"unihan\",\n\t\"zhuyin\"\n];\n","// @generated by packages/intl-collator/scripts/generate-locale-data.ts\n// CLDR locale collation metadata generated from common/collation/*.xml.\nexport const availableCollationLocales = [\n\t\"aa\",\n\t\"af\",\n\t\"am\",\n\t\"ar\",\n\t\"as\",\n\t\"az\",\n\t\"bal\",\n\t\"bal-Latn\",\n\t\"be\",\n\t\"bg\",\n\t\"blo\",\n\t\"bn\",\n\t\"bo\",\n\t\"br\",\n\t\"bs\",\n\t\"bs-Cyrl\",\n\t\"ca\",\n\t\"ceb\",\n\t\"chr\",\n\t\"cs\",\n\t\"cu\",\n\t\"cy\",\n\t\"da\",\n\t\"de\",\n\t\"de-AT\",\n\t\"dsb\",\n\t\"dz\",\n\t\"ee\",\n\t\"el\",\n\t\"en\",\n\t\"en-US\",\n\t\"en-US-POSIX\",\n\t\"eo\",\n\t\"es\",\n\t\"et\",\n\t\"fa\",\n\t\"fa-AF\",\n\t\"ff\",\n\t\"ff-Adlm\",\n\t\"fi\",\n\t\"fil\",\n\t\"fo\",\n\t\"fr\",\n\t\"fr-CA\",\n\t\"fy\",\n\t\"ga\",\n\t\"gl\",\n\t\"gu\",\n\t\"ha\",\n\t\"haw\",\n\t\"he\",\n\t\"hi\",\n\t\"hr\",\n\t\"hsb\",\n\t\"hu\",\n\t\"hy\",\n\t\"id\",\n\t\"ig\",\n\t\"is\",\n\t\"it\",\n\t\"ja\",\n\t\"ka\",\n\t\"kk\",\n\t\"kk-Arab\",\n\t\"kl\",\n\t\"km\",\n\t\"kn\",\n\t\"ko\",\n\t\"kok\",\n\t\"ku\",\n\t\"ky\",\n\t\"lb\",\n\t\"lij\",\n\t\"lkt\",\n\t\"ln\",\n\t\"lo\",\n\t\"lt\",\n\t\"lv\",\n\t\"mk\",\n\t\"ml\",\n\t\"mn\",\n\t\"mr\",\n\t\"ms\",\n\t\"mt\",\n\t\"my\",\n\t\"nb\",\n\t\"ne\",\n\t\"nl\",\n\t\"nn\",\n\t\"no\",\n\t\"nso\",\n\t\"om\",\n\t\"or\",\n\t\"pa\",\n\t\"pl\",\n\t\"ps\",\n\t\"pt\",\n\t\"ro\",\n\t\"ru\",\n\t\"sa\",\n\t\"se\",\n\t\"sgs\",\n\t\"si\",\n\t\"sk\",\n\t\"sl\",\n\t\"smn\",\n\t\"sq\",\n\t\"sr\",\n\t\"sr-Latn\",\n\t\"ssy\",\n\t\"st\",\n\t\"sv\",\n\t\"sw\",\n\t\"ta\",\n\t\"te\",\n\t\"th\",\n\t\"tk\",\n\t\"tn\",\n\t\"to\",\n\t\"tr\",\n\t\"ug\",\n\t\"uk\",\n\t\"ur\",\n\t\"uz\",\n\t\"vi\",\n\t\"vo\",\n\t\"wae\",\n\t\"wo\",\n\t\"xh\",\n\t\"yi\",\n\t\"yo\",\n\t\"zh\",\n\t\"zh-Hant\",\n\t\"zu\"\n];\nexport const collationLocaleData = {\n\t\"aa\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"af\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"am\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ar\": {\n\t\t\"co\": [\"compat\", \"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"as\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"az\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"bal\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"bal-Latn\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"be\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"bg\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"blo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"bn\": {\n\t\t\"co\": [\"default\", \"trad\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"bo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"br\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"bs\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"bs-Cyrl\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ca\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ceb\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"chr\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"cs\": {\n\t\t\"co\": [\"default\", \"digits-after\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"cu\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"cy\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"da\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"de\": {\n\t\t\"co\": [\n\t\t\t\"default\",\n\t\t\t\"eor\",\n\t\t\t\"phonebk\"\n\t\t],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"de-AT\": {\n\t\t\"co\": [\"default\", \"phonebk\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"dsb\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"dz\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ee\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"el\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"en\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"en-US\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"en-US-POSIX\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"eo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"es\": {\n\t\t\"co\": [\"default\", \"trad\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"et\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fa\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fa-AF\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ff\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ff-Adlm\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fi\": {\n\t\t\"co\": [\"default\", \"trad\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fil\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fr\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fr-CA\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"fy\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ga\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"gl\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"gu\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ha\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"haw\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"he\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"hi\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"hr\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"hsb\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"hu\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"hy\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"id\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ig\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"is\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"it\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ja\": {\n\t\t\"co\": [\n\t\t\t\"default\",\n\t\t\t\"private-kana\",\n\t\t\t\"unihan\"\n\t\t],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ka\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"kk\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"kk-Arab\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"kl\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"km\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"kn\": {\n\t\t\"co\": [\"default\", \"trad\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ko\": {\n\t\t\"co\": [\n\t\t\t\"default\",\n\t\t\t\"searchjl\",\n\t\t\t\"unihan\"\n\t\t],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"kok\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ku\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ky\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"lb\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"lij\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"lkt\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ln\": {\n\t\t\"co\": [\"default\", \"phonetic\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"lo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"lt\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"lv\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"mk\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ml\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"mn\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"mr\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ms\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"mt\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"my\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"nb\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ne\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"nl\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"nn\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"no\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"nso\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"om\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"or\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"pa\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"pl\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ps\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"pt\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ro\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"root\": {\n\t\t\"co\": [\n\t\t\t\"default\",\n\t\t\t\"emoji\",\n\t\t\t\"eor\",\n\t\t\t\"private-unihan\"\n\t\t],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ru\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sa\": {\n\t\t\"co\": [\"default\", \"trad\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"se\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sgs\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"si\": {\n\t\t\"co\": [\"default\", \"dict\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sk\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sl\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"smn\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sq\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sr\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sr-Latn\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ssy\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"st\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sv\": {\n\t\t\"co\": [\"default\", \"trad\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"sw\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ta\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"te\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"th\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": true\n\t},\n\t\"tk\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"tn\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"to\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"tr\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ug\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"uk\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"ur\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"uz\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"vi\": {\n\t\t\"co\": [\"default\", \"trad\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"vo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"wae\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"wo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"xh\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"yi\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"yo\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"zh\": {\n\t\t\"co\": [\n\t\t\t\"default\",\n\t\t\t\"pinyin\",\n\t\t\t\"private-pinyin\",\n\t\t\t\"stroke\",\n\t\t\t\"unihan\",\n\t\t\t\"zhuyin\"\n\t\t],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"pinyin\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"zh-Hant\": {\n\t\t\"co\": [\"default\", \"stroke\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"stroke\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t},\n\t\"zu\": {\n\t\t\"co\": [\"default\"],\n\t\t\"kn\": [\"false\", \"true\"],\n\t\t\"kf\": [\n\t\t\t\"false\",\n\t\t\t\"upper\",\n\t\t\t\"lower\"\n\t\t],\n\t\t\"defaultCollation\": \"standard\",\n\t\t\"sensitivity\": \"variant\",\n\t\t\"ignorePunctuation\": false\n\t}\n};\nexport const collationCandidateLocales = {\n\t\"compat\": [\"ar\"],\n\t\"trad\": [\n\t\t\"bn\",\n\t\t\"es\",\n\t\t\"fi\",\n\t\t\"kn\",\n\t\t\"sa\",\n\t\t\"sv\",\n\t\t\"vi\"\n\t],\n\t\"digits-after\": [\"cs\"],\n\t\"eor\": [\n\t\t\"de\",\n\t\t\"de-AT\",\n\t\t\"en\"\n\t],\n\t\"phonebk\": [\"de\", \"de-AT\"],\n\t\"private-kana\": [\"ja\"],\n\t\"unihan\": [\n\t\t\"ja\",\n\t\t\"ko\",\n\t\t\"zh\",\n\t\t\"zh-Hant\"\n\t],\n\t\"searchjl\": [\"ko\"],\n\t\"phonetic\": [\"ln\"],\n\t\"emoji\": [\"en\"],\n\t\"private-unihan\": [\"en\"],\n\t\"dict\": [\"si\"],\n\t\"pinyin\": [\"zh\", \"zh-Hant\"],\n\t\"private-pinyin\": [\"zh\", \"zh-Hant\"],\n\t\"stroke\": [\"zh\", \"zh-Hant\"],\n\t\"zhuyin\": [\"zh\", \"zh-Hant\"]\n};\n","import type {Collation} from '@formatjs_generated/cldr.supported-values/collations.js'\nimport {collations} from '@formatjs_generated/cldr.supported-values/collations.js'\nimport {collationCandidateLocales} from '@formatjs_generated/cldr.collation/locale-data.js'\n\nfunction isSupportedCollation(collation: Collation): boolean {\n // ECMA-402 §6.8.1 AvailableCanonicalCollations describes support across\n // the implementation, including collations unavailable for English.\n // This is an implementation-defined operation, with no numbered steps.\n // https://tc39.es/ecma402/#sec-availablecanonicalcollations\n // https://github.com/tc39/ecma402/blob/b1c961988b9a07894b1dc3dc2b5626ea48387d61/spec/locales-currencies-tz.html#L509-L514\n const candidates = (\n collationCandidateLocales as Record<string, readonly string[]>\n )[collation] || ['en']\n for (const locale of candidates) {\n try {\n if (\n new Intl.Collator(`${locale}-u-co-${collation}`).resolvedOptions()\n .collation === collation\n ) {\n return true\n }\n } catch {}\n }\n return false\n}\n\nexport function getSupportedCollations(): Collation[] {\n return collations.filter(isSupportedCollation).sort()\n}\n","import { memoize, strategies } from \"@formatjs/fast-memoize\";\nexport function repeat(s, times) {\n\tif (typeof s.repeat === \"function\") {\n\t\treturn s.repeat(times);\n\t}\n\tconst arr = Array.from({ length: times });\n\tfor (let i = 0; i < arr.length; i++) {\n\t\tarr[i] = s;\n\t}\n\treturn arr.join(\"\");\n}\nexport function setInternalSlot(map, pl, field, value) {\n\tif (!map.get(pl)) {\n\t\tmap.set(pl, Object.create(null));\n\t}\n\tconst slots = map.get(pl);\n\tslots[field] = value;\n}\nexport function getInternalSlot(map, pl, field) {\n\treturn getMultiInternalSlots(map, pl, field)[field];\n}\nexport function getMultiInternalSlots(map, pl, ...fields) {\n\tconst slots = map.get(pl);\n\tif (!slots) {\n\t\tthrow new TypeError(`${pl} InternalSlot has not been initialized`);\n\t}\n\treturn fields.reduce((all, f) => {\n\t\tall[f] = slots[f];\n\t\treturn all;\n\t}, Object.create(null));\n}\nexport function isLiteralPart(patternPart) {\n\treturn patternPart.type === \"literal\";\n}\n/*\n17 ECMAScript Standard Built-in Objects:\nEvery built-in Function object, including constructors, that is not\nidentified as an anonymous function has a name property whose value\nis a String.\n\nUnless otherwise specified, the name property of a built-in Function\nobject, if it exists, has the attributes { [[Writable]]: false,\n[[Enumerable]]: false, [[Configurable]]: true }.\n*/\nexport function defineProperty(target, name, { value }) {\n\tObject.defineProperty(target, name, {\n\t\tconfigurable: true,\n\t\tenumerable: false,\n\t\twritable: true,\n\t\tvalue\n\t});\n}\nexport function ensureIntl() {\n\tif (typeof Intl === \"undefined\") {\n\t\tObject.defineProperty(globalThis, \"Intl\", {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\twritable: true,\n\t\t\tvalue: {}\n\t\t});\n\t}\n\treturn Intl;\n}\n/**\n* 7.3.5 CreateDataProperty\n* @param target\n* @param name\n* @param value\n*/\nexport function createDataProperty(target, name, value) {\n\tObject.defineProperty(target, name, {\n\t\tconfigurable: true,\n\t\tenumerable: true,\n\t\twritable: true,\n\t\tvalue\n\t});\n}\nexport function invariant(condition, message, Err = Error) {\n\tif (!condition) {\n\t\tthrow new Err(message);\n\t}\n}\nexport const createMemoizedNumberFormat = memoize((...args) => new Intl.NumberFormat(...args), { strategy: strategies.variadic });\nexport const createMemoizedPluralRules = memoize((...args) => new Intl.PluralRules(...args), { strategy: strategies.variadic });\nexport const createMemoizedListFormat = memoize((...args) => new Intl.ListFormat(...args), { strategy: strategies.variadic });\n","/* @generated */\n// prettier-ignore\nexport const currencies = [\n\t\"ADP\",\n\t\"AED\",\n\t\"AFA\",\n\t\"AFN\",\n\t\"ALK\",\n\t\"ALL\",\n\t\"AMD\",\n\t\"ANG\",\n\t\"AOA\",\n\t\"AOK\",\n\t\"AON\",\n\t\"AOR\",\n\t\"ARA\",\n\t\"ARL\",\n\t\"ARM\",\n\t\"ARP\",\n\t\"ARS\",\n\t\"ATS\",\n\t\"AUD\",\n\t\"AWG\",\n\t\"AZM\",\n\t\"AZN\",\n\t\"BAD\",\n\t\"BAM\",\n\t\"BAN\",\n\t\"BBD\",\n\t\"BDT\",\n\t\"BEC\",\n\t\"BEF\",\n\t\"BEL\",\n\t\"BGL\",\n\t\"BGM\",\n\t\"BGN\",\n\t\"BGO\",\n\t\"BHD\",\n\t\"BIF\",\n\t\"BMD\",\n\t\"BND\",\n\t\"BOB\",\n\t\"BOL\",\n\t\"BOP\",\n\t\"BOV\",\n\t\"BRB\",\n\t\"BRC\",\n\t\"BRE\",\n\t\"BRL\",\n\t\"BRN\",\n\t\"BRR\",\n\t\"BRZ\",\n\t\"BSD\",\n\t\"BTN\",\n\t\"BUK\",\n\t\"BWP\",\n\t\"BYB\",\n\t\"BYN\",\n\t\"BYR\",\n\t\"BZD\",\n\t\"CAD\",\n\t\"CDF\",\n\t\"CHE\",\n\t\"CHF\",\n\t\"CHW\",\n\t\"CLE\",\n\t\"CLF\",\n\t\"CLP\",\n\t\"CNH\",\n\t\"CNX\",\n\t\"CNY\",\n\t\"COP\",\n\t\"COU\",\n\t\"CRC\",\n\t\"CSD\",\n\t\"CSK\",\n\t\"CUC\",\n\t\"CUP\",\n\t\"CVE\",\n\t\"CYP\",\n\t\"CZK\",\n\t\"DDM\",\n\t\"DEM\",\n\t\"DJF\",\n\t\"DKK\",\n\t\"DOP\",\n\t\"DZD\",\n\t\"ECS\",\n\t\"ECV\",\n\t\"EEK\",\n\t\"EGP\",\n\t\"ERN\",\n\t\"ESA\",\n\t\"ESB\",\n\t\"ESP\",\n\t\"ETB\",\n\t\"EUR\",\n\t\"FIM\",\n\t\"FJD\",\n\t\"FKP\",\n\t\"FRF\",\n\t\"GBP\",\n\t\"GEK\",\n\t\"GEL\",\n\t\"GHC\",\n\t\"GHS\",\n\t\"GIP\",\n\t\"GMD\",\n\t\"GNF\",\n\t\"GNS\",\n\t\"GQE\",\n\t\"GRD\",\n\t\"GTQ\",\n\t\"GWE\",\n\t\"GWP\",\n\t\"GYD\",\n\t\"HKD\",\n\t\"HNL\",\n\t\"HRD\",\n\t\"HRK\",\n\t\"HTG\",\n\t\"HUF\",\n\t\"IDR\",\n\t\"IEP\",\n\t\"ILP\",\n\t\"ILR\",\n\t\"ILS\",\n\t\"INR\",\n\t\"IQD\",\n\t\"IRR\",\n\t\"ISJ\",\n\t\"ISK\",\n\t\"ITL\",\n\t\"JMD\",\n\t\"JOD\",\n\t\"JPY\",\n\t\"KES\",\n\t\"KGS\",\n\t\"KHR\",\n\t\"KMF\",\n\t\"KPW\",\n\t\"KRH\",\n\t\"KRO\",\n\t\"KRW\",\n\t\"KWD\",\n\t\"KYD\",\n\t\"KZT\",\n\t\"LAK\",\n\t\"LBP\",\n\t\"LKR\",\n\t\"LRD\",\n\t\"LSL\",\n\t\"LTL\",\n\t\"LTT\",\n\t\"LUC\",\n\t\"LUF\",\n\t\"LUL\",\n\t\"LVL\",\n\t\"LVR\",\n\t\"LYD\",\n\t\"MAD\",\n\t\"MAF\",\n\t\"MCF\",\n\t\"MDC\",\n\t\"MDL\",\n\t\"MGA\",\n\t\"MGF\",\n\t\"MKD\",\n\t\"MKN\",\n\t\"MLF\",\n\t\"MMK\",\n\t\"MNT\",\n\t\"MOP\",\n\t\"MRO\",\n\t\"MRU\",\n\t\"MTL\",\n\t\"MTP\",\n\t\"MUR\",\n\t\"MVP\",\n\t\"MVR\",\n\t\"MWK\",\n\t\"MXN\",\n\t\"MXP\",\n\t\"MXV\",\n\t\"MYR\",\n\t\"MZE\",\n\t\"MZM\",\n\t\"MZN\",\n\t\"NAD\",\n\t\"NGN\",\n\t\"NIC\",\n\t\"NIO\",\n\t\"NLG\",\n\t\"NOK\",\n\t\"NPR\",\n\t\"NZD\",\n\t\"OMR\",\n\t\"PAB\",\n\t\"PEI\",\n\t\"PEN\",\n\t\"PES\",\n\t\"PGK\",\n\t\"PHP\",\n\t\"PKR\",\n\t\"PLN\",\n\t\"PLZ\",\n\t\"PTE\",\n\t\"PYG\",\n\t\"QAR\",\n\t\"RHD\",\n\t\"ROL\",\n\t\"RON\",\n\t\"RSD\",\n\t\"RUB\",\n\t\"RUR\",\n\t\"RWF\",\n\t\"SAR\",\n\t\"SBD\",\n\t\"SCR\",\n\t\"SDD\",\n\t\"SDG\",\n\t\"SDP\",\n\t\"SEK\",\n\t\"SGD\",\n\t\"SHP\",\n\t\"SIT\",\n\t\"SKK\",\n\t\"SLE\",\n\t\"SLL\",\n\t\"SOS\",\n\t\"SRD\",\n\t\"SRG\",\n\t\"SSP\",\n\t\"STD\",\n\t\"STN\",\n\t\"SUR\",\n\t\"SVC\",\n\t\"SYP\",\n\t\"SZL\",\n\t\"THB\",\n\t\"TJR\",\n\t\"TJS\",\n\t\"TMM\",\n\t\"TMT\",\n\t\"TND\",\n\t\"TOP\",\n\t\"TPE\",\n\t\"TRL\",\n\t\"TRY\",\n\t\"TTD\",\n\t\"TWD\",\n\t\"TZS\",\n\t\"UAH\",\n\t\"UAK\",\n\t\"UGS\",\n\t\"UGX\",\n\t\"USD\",\n\t\"USN\",\n\t\"USS\",\n\t\"UYI\",\n\t\"UYP\",\n\t\"UYU\",\n\t\"UYW\",\n\t\"UZS\",\n\t\"VEB\",\n\t\"VED\",\n\t\"VEF\",\n\t\"VES\",\n\t\"VND\",\n\t\"VNN\",\n\t\"VUV\",\n\t\"WST\",\n\t\"XAF\",\n\t\"XAG\",\n\t\"XAU\",\n\t\"XBA\",\n\t\"XBB\",\n\t\"XBC\",\n\t\"XBD\",\n\t\"XCD\",\n\t\"XCG\",\n\t\"XDR\",\n\t\"XEU\",\n\t\"XFO\",\n\t\"XFU\",\n\t\"XOF\",\n\t\"XPD\",\n\t\"XPF\",\n\t\"XPT\",\n\t\"XRE\",\n\t\"XSU\",\n\t\"XTS\",\n\t\"XUA\",\n\t\"XXX\",\n\t\"YDD\",\n\t\"YER\",\n\t\"YUD\",\n\t\"YUM\",\n\t\"YUN\",\n\t\"YUR\",\n\t\"ZAL\",\n\t\"ZAR\",\n\t\"ZMK\",\n\t\"ZMW\",\n\t\"ZRN\",\n\t\"ZRZ\",\n\t\"ZWD\",\n\t\"ZWG\",\n\t\"ZWL\",\n\t\"ZWR\"\n];\n","import {createMemoizedNumberFormat} from '#packages/ecma402-abstract/utils.js'\nimport type {Currency} from '@formatjs_generated/cldr.supported-values/currencies.js'\nimport {currencies} from '@formatjs_generated/cldr.supported-values/currencies.js'\n\n/**\n * Implementation: Tests if a currency is supported by attempting to create\n * a NumberFormat with that currency and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR currency codes (ISO 4217)\n */\nfunction isSupportedCurrency(currency: Currency): boolean {\n try {\n // Always use 'en' for testing\n const numberFormat = createMemoizedNumberFormat('en', {\n style: 'currency',\n currencyDisplay: 'name',\n currency,\n })\n\n const format = numberFormat.format(123)\n\n if (\n format.substring(0, 3) !== currency &&\n format.substring(format.length - 3) !== currency\n ) {\n return true\n }\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported currency identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedCurrencies(): Currency[] {\n const ATOZ = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'\n const supportedCurrencies: Currency[] = []\n\n for (const currency of currencies) {\n if (currency.length === 3) {\n if (isSupportedCurrency(currency)) {\n supportedCurrencies.push(currency)\n }\n } else if (currency.length === 5 && currency[3] === '~') {\n const start = ATOZ.indexOf(currency[2])\n const end = ATOZ.indexOf(currency[4])\n\n for (let i = start; i <= end; i++) {\n const currentCurrency = (currency.substring(0, 2) + ATOZ[i]) as Currency\n if (isSupportedCurrency(currentCurrency)) {\n supportedCurrencies.push(currentCurrency)\n }\n }\n }\n }\n\n return supportedCurrencies.sort()\n}\n","export const numberingSystemNames = [\n\t\"adlm\",\n\t\"ahom\",\n\t\"arab\",\n\t\"arabext\",\n\t\"armn\",\n\t\"armnlow\",\n\t\"bali\",\n\t\"beng\",\n\t\"bhks\",\n\t\"brah\",\n\t\"cakm\",\n\t\"cham\",\n\t\"cyrl\",\n\t\"deva\",\n\t\"diak\",\n\t\"ethi\",\n\t\"fullwide\",\n\t\"gara\",\n\t\"geor\",\n\t\"gong\",\n\t\"gonm\",\n\t\"grek\",\n\t\"greklow\",\n\t\"gujr\",\n\t\"gukh\",\n\t\"guru\",\n\t\"hanidays\",\n\t\"hanidec\",\n\t\"hans\",\n\t\"hansfin\",\n\t\"hant\",\n\t\"hantfin\",\n\t\"hebr\",\n\t\"hmng\",\n\t\"hmnp\",\n\t\"java\",\n\t\"jpan\",\n\t\"jpanfin\",\n\t\"jpanyear\",\n\t\"kali\",\n\t\"kawi\",\n\t\"khmr\",\n\t\"knda\",\n\t\"krai\",\n\t\"lana\",\n\t\"lanatham\",\n\t\"laoo\",\n\t\"latn\",\n\t\"lepc\",\n\t\"limb\",\n\t\"mathbold\",\n\t\"mathdbl\",\n\t\"mathmono\",\n\t\"mathsanb\",\n\t\"mathsans\",\n\t\"mlym\",\n\t\"modi\",\n\t\"mong\",\n\t\"mroo\",\n\t\"mtei\",\n\t\"mymr\",\n\t\"mymrepka\",\n\t\"mymrpao\",\n\t\"mymrshan\",\n\t\"mymrtlng\",\n\t\"nagm\",\n\t\"newa\",\n\t\"nkoo\",\n\t\"olck\",\n\t\"onao\",\n\t\"orya\",\n\t\"osma\",\n\t\"outlined\",\n\t\"rohg\",\n\t\"roman\",\n\t\"romanlow\",\n\t\"saur\",\n\t\"segment\",\n\t\"shrd\",\n\t\"sind\",\n\t\"sinh\",\n\t\"sora\",\n\t\"sund\",\n\t\"sunu\",\n\t\"takr\",\n\t\"talu\",\n\t\"taml\",\n\t\"tamldec\",\n\t\"telu\",\n\t\"thai\",\n\t\"tibt\",\n\t\"tirh\",\n\t\"tnsa\",\n\t\"tols\",\n\t\"vaii\",\n\t\"wara\",\n\t\"wcho\"\n];\n","import {createMemoizedNumberFormat} from '#packages/ecma402-abstract/utils.js'\nimport {numberingSystemNames} from '@formatjs_generated/cldr.number/numbering-systems.js'\n\n/**\n * Implementation: Tests if a numbering system is supported by attempting to create\n * a NumberFormat with that numbering system and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR numbering system types\n */\nfunction isSupportedNumberingSystem(system: string): boolean {\n try {\n // Always use 'en' for testing\n const numberFormat = createMemoizedNumberFormat(`en-u-nu-${system}`)\n const options = numberFormat.resolvedOptions().numberingSystem\n\n if (\n (options === system && system === 'latn') ||\n numberFormat.format(123) !== '123'\n ) {\n return true\n }\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported numbering system identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedNumberingSystems(): string[] {\n return numberingSystemNames.filter(isSupportedNumberingSystem).sort()\n}\n","/* @generated */\n// prettier-ignore\nexport const timezones = [\n\t\"Africa/Abidjan\",\n\t\"Africa/Accra\",\n\t\"Africa/Addis_Ababa\",\n\t\"Africa/Algiers\",\n\t\"Africa/Asmara\",\n\t\"Africa/Bamako\",\n\t\"Africa/Bangui\",\n\t\"Africa/Banjul\",\n\t\"Africa/Bissau\",\n\t\"Africa/Blantyre\",\n\t\"Africa/Brazzaville\",\n\t\"Africa/Bujumbura\",\n\t\"Africa/Cairo\",\n\t\"Africa/Casablanca\",\n\t\"Africa/Ceuta\",\n\t\"Africa/Conakry\",\n\t\"Africa/Dakar\",\n\t\"Africa/Dar_es_Salaam\",\n\t\"Africa/Djibouti\",\n\t\"Africa/Douala\",\n\t\"Africa/El_Aaiun\",\n\t\"Africa/Freetown\",\n\t\"Africa/Gaborone\",\n\t\"Africa/Harare\",\n\t\"Africa/Johannesburg\",\n\t\"Africa/Juba\",\n\t\"Africa/Kampala\",\n\t\"Africa/Khartoum\",\n\t\"Africa/Kigali\",\n\t\"Africa/Kinshasa\",\n\t\"Africa/Lagos\",\n\t\"Africa/Libreville\",\n\t\"Africa/Lome\",\n\t\"Africa/Luanda\",\n\t\"Africa/Lubumbashi\",\n\t\"Africa/Lusaka\",\n\t\"Africa/Malabo\",\n\t\"Africa/Maputo\",\n\t\"Africa/Maseru\",\n\t\"Africa/Mbabane\",\n\t\"Africa/Mogadishu\",\n\t\"Africa/Monrovia\",\n\t\"Africa/Nairobi\",\n\t\"Africa/Ndjamena\",\n\t\"Africa/Niamey\",\n\t\"Africa/Nouakchott\",\n\t\"Africa/Ouagadougou\",\n\t\"Africa/Porto-Novo\",\n\t\"Africa/Sao_Tome\",\n\t\"Africa/Tripoli\",\n\t\"Africa/Tunis\",\n\t\"Africa/Windhoek\",\n\t\"America/Adak\",\n\t\"America/Anchorage\",\n\t\"America/Anguilla\",\n\t\"America/Antigua\",\n\t\"America/Araguaina\",\n\t\"America/Argentina/Buenos_Aires\",\n\t\"America/Argentina/Catamarca\",\n\t\"America/Argentina/Cordoba\",\n\t\"America/Argentina/Jujuy\",\n\t\"America/Argentina/La_Rioja\",\n\t\"America/Argentina/Mendoza\",\n\t\"America/Argentina/Rio_Gallegos\",\n\t\"America/Argentina/Salta\",\n\t\"America/Argentina/San_Juan\",\n\t\"America/Argentina/San_Luis\",\n\t\"America/Argentina/Tucuman\",\n\t\"America/Argentina/Ushuaia\",\n\t\"America/Aruba\",\n\t\"America/Asuncion\",\n\t\"America/Atikokan\",\n\t\"America/Bahia\",\n\t\"America/Bahia_Banderas\",\n\t\"America/Barbados\",\n\t\"America/Belem\",\n\t\"America/Belize\",\n\t\"America/Blanc-Sablon\",\n\t\"America/Boa_Vista\",\n\t\"America/Bogota\",\n\t\"America/Boise\",\n\t\"America/Cambridge_Bay\",\n\t\"America/Campo_Grande\",\n\t\"America/Cancun\",\n\t\"America/Caracas\",\n\t\"America/Cayenne\",\n\t\"America/Cayman\",\n\t\"America/Chicago\",\n\t\"America/Chihuahua\",\n\t\"America/Ciudad_Juarez\",\n\t\"America/Costa_Rica\",\n\t\"America/Coyhaique\",\n\t\"America/Creston\",\n\t\"America/Cuiaba\",\n\t\"America/Curacao\",\n\t\"America/Danmarkshavn\",\n\t\"America/Dawson\",\n\t\"America/Dawson_Creek\",\n\t\"America/Denver\",\n\t\"America/Detroit\",\n\t\"America/Dominica\",\n\t\"America/Edmonton\",\n\t\"America/Eirunepe\",\n\t\"America/El_Salvador\",\n\t\"America/Fort_Nelson\",\n\t\"America/Fortaleza\",\n\t\"America/Glace_Bay\",\n\t\"America/Goose_Bay\",\n\t\"America/Grand_Turk\",\n\t\"America/Grenada\",\n\t\"America/Guadeloupe\",\n\t\"America/Guatemala\",\n\t\"America/Guayaquil\",\n\t\"America/Guyana\",\n\t\"America/Halifax\",\n\t\"America/Havana\",\n\t\"America/Hermosillo\",\n\t\"America/Indiana/Indianapolis\",\n\t\"America/Indiana/Knox\",\n\t\"America/Indiana/Marengo\",\n\t\"America/Indiana/Petersburg\",\n\t\"America/Indiana/Tell_City\",\n\t\"America/Indiana/Vevay\",\n\t\"America/Indiana/Vincennes\",\n\t\"America/Indiana/Winamac\",\n\t\"America/Inuvik\",\n\t\"America/Iqaluit\",\n\t\"America/Jamaica\",\n\t\"America/Juneau\",\n\t\"America/Kentucky/Louisville\",\n\t\"America/Kentucky/Monticello\",\n\t\"America/Kralendijk\",\n\t\"America/La_Paz\",\n\t\"America/Lima\",\n\t\"America/Los_Angeles\",\n\t\"America/Lower_Princes\",\n\t\"America/Maceio\",\n\t\"America/Managua\",\n\t\"America/Manaus\",\n\t\"America/Marigot\",\n\t\"America/Martinique\",\n\t\"America/Matamoros\",\n\t\"America/Mazatlan\",\n\t\"America/Menominee\",\n\t\"America/Merida\",\n\t\"America/Metlakatla\",\n\t\"America/Mexico_City\",\n\t\"America/Miquelon\",\n\t\"America/Moncton\",\n\t\"America/Monterrey\",\n\t\"America/Montevideo\",\n\t\"America/Montserrat\",\n\t\"America/Nassau\",\n\t\"America/New_York\",\n\t\"America/Nipigon\",\n\t\"America/Nome\",\n\t\"America/Noronha\",\n\t\"America/North_Dakota/Beulah\",\n\t\"America/North_Dakota/Center\",\n\t\"America/North_Dakota/New_Salem\",\n\t\"America/Nuuk\",\n\t\"America/Ojinaga\",\n\t\"America/Panama\",\n\t\"America/Pangnirtung\",\n\t\"America/Paramaribo\",\n\t\"America/Phoenix\",\n\t\"America/Port-au-Prince\",\n\t\"America/Port_of_Spain\",\n\t\"America/Porto_Velho\",\n\t\"America/Puerto_Rico\",\n\t\"America/Punta_Arenas\",\n\t\"America/Rainy_River\",\n\t\"America/Rankin_Inlet\",\n\t\"America/Recife\",\n\t\"America/Regina\",\n\t\"America/Resolute\",\n\t\"America/Rio_Branco\",\n\t\"America/Santarem\",\n\t\"America/Santiago\",\n\t\"America/Santo_Domingo\",\n\t\"America/Sao_Paulo\",\n\t\"America/Scoresbysund\",\n\t\"America/Sitka\",\n\t\"America/St_Barthelemy\",\n\t\"America/St_Johns\",\n\t\"America/St_Kitts\",\n\t\"America/St_Lucia\",\n\t\"America/St_Thomas\",\n\t\"America/St_Vincent\",\n\t\"America/Swift_Current\",\n\t\"America/Tegucigalpa\",\n\t\"America/Thule\",\n\t\"America/Thunder_Bay\",\n\t\"America/Tijuana\",\n\t\"America/Toronto\",\n\t\"America/Tortola\",\n\t\"America/Vancouver\",\n\t\"America/Whitehorse\",\n\t\"America/Winnipeg\",\n\t\"America/Yakutat\",\n\t\"America/Yellowknife\",\n\t\"Antarctica/Casey\",\n\t\"Antarctica/Davis\",\n\t\"Antarctica/DumontDUrville\",\n\t\"Antarctica/Macquarie\",\n\t\"Antarctica/Mawson\",\n\t\"Antarctica/McMurdo\",\n\t\"Antarctica/Palmer\",\n\t\"Antarctica/Rothera\",\n\t\"Antarctica/Syowa\",\n\t\"Antarctica/Troll\",\n\t\"Antarctica/Vostok\",\n\t\"Arctic/Longyearbyen\",\n\t\"Asia/Aden\",\n\t\"Asia/Almaty\",\n\t\"Asia/Amman\",\n\t\"Asia/Anadyr\",\n\t\"Asia/Aqtau\",\n\t\"Asia/Aqtobe\",\n\t\"Asia/Ashgabat\",\n\t\"Asia/Atyrau\",\n\t\"Asia/Baghdad\",\n\t\"Asia/Bahrain\",\n\t\"Asia/Baku\",\n\t\"Asia/Bangkok\",\n\t\"Asia/Barnaul\",\n\t\"Asia/Beirut\",\n\t\"Asia/Bishkek\",\n\t\"Asia/Brunei\",\n\t\"Asia/Chita\",\n\t\"Asia/Choibalsan\",\n\t\"Asia/Colombo\",\n\t\"Asia/Damascus\",\n\t\"Asia/Dhaka\",\n\t\"Asia/Dili\",\n\t\"Asia/Dubai\",\n\t\"Asia/Dushanbe\",\n\t\"Asia/Famagusta\",\n\t\"Asia/Gaza\",\n\t\"Asia/Hebron\",\n\t\"Asia/Ho_Chi_Minh\",\n\t\"Asia/Hong_Kong\",\n\t\"Asia/Hovd\",\n\t\"Asia/Irkutsk\",\n\t\"Asia/Jakarta\",\n\t\"Asia/Jayapura\",\n\t\"Asia/Jerusalem\",\n\t\"Asia/Kabul\",\n\t\"Asia/Kamchatka\",\n\t\"Asia/Karachi\",\n\t\"Asia/Kathmandu\",\n\t\"Asia/Khandyga\",\n\t\"Asia/Kolkata\",\n\t\"Asia/Krasnoyarsk\",\n\t\"Asia/Kuala_Lumpur\",\n\t\"Asia/Kuching\",\n\t\"Asia/Kuwait\",\n\t\"Asia/Macau\",\n\t\"Asia/Magadan\",\n\t\"Asia/Makassar\",\n\t\"Asia/Manila\",\n\t\"Asia/Muscat\",\n\t\"Asia/Nicosia\",\n\t\"Asia/Novokuznetsk\",\n\t\"Asia/Novosibirsk\",\n\t\"Asia/Omsk\",\n\t\"Asia/Oral\",\n\t\"Asia/Phnom_Penh\",\n\t\"Asia/Pontianak\",\n\t\"Asia/Pyongyang\",\n\t\"Asia/Qatar\",\n\t\"Asia/Qostanay\",\n\t\"Asia/Qyzylorda\",\n\t\"Asia/Riyadh\",\n\t\"Asia/Sakhalin\",\n\t\"Asia/Samarkand\",\n\t\"Asia/Seoul\",\n\t\"Asia/Shanghai\",\n\t\"Asia/Singapore\",\n\t\"Asia/Srednekolymsk\",\n\t\"Asia/Taipei\",\n\t\"Asia/Tashkent\",\n\t\"Asia/Tbilisi\",\n\t\"Asia/Tehran\",\n\t\"Asia/Thimphu\",\n\t\"Asia/Tokyo\",\n\t\"Asia/Tomsk\",\n\t\"Asia/Ulaanbaatar\",\n\t\"Asia/Urumqi\",\n\t\"Asia/Ust-Nera\",\n\t\"Asia/Vientiane\",\n\t\"Asia/Vladivostok\",\n\t\"Asia/Yakutsk\",\n\t\"Asia/Yangon\",\n\t\"Asia/Yekaterinburg\",\n\t\"Asia/Yerevan\",\n\t\"Atlantic/Azores\",\n\t\"Atlantic/Bermuda\",\n\t\"Atlantic/Canary\",\n\t\"Atlantic/Cape_Verde\",\n\t\"Atlantic/Faroe\",\n\t\"Atlantic/Madeira\",\n\t\"Atlantic/Reykjavik\",\n\t\"Atlantic/South_Georgia\",\n\t\"Atlantic/St_Helena\",\n\t\"Atlantic/Stanley\",\n\t\"Australia/Adelaide\",\n\t\"Australia/Brisbane\",\n\t\"Australia/Broken_Hill\",\n\t\"Australia/Currie\",\n\t\"Australia/Darwin\",\n\t\"Australia/Eucla\",\n\t\"Australia/Hobart\",\n\t\"Australia/Lindeman\",\n\t\"Australia/Lord_Howe\",\n\t\"Australia/Melbourne\",\n\t\"Australia/Perth\",\n\t\"Australia/Sydney\",\n\t\"Etc/GMT\",\n\t\"Etc/GMT+1\",\n\t\"Etc/GMT+10\",\n\t\"Etc/GMT+11\",\n\t\"Etc/GMT+12\",\n\t\"Etc/GMT+2\",\n\t\"Etc/GMT+3\",\n\t\"Etc/GMT+4\",\n\t\"Etc/GMT+5\",\n\t\"Etc/GMT+6\",\n\t\"Etc/GMT+7\",\n\t\"Etc/GMT+8\",\n\t\"Etc/GMT+9\",\n\t\"Etc/GMT-1\",\n\t\"Etc/GMT-10\",\n\t\"Etc/GMT-11\",\n\t\"Etc/GMT-12\",\n\t\"Etc/GMT-13\",\n\t\"Etc/GMT-14\",\n\t\"Etc/GMT-2\",\n\t\"Etc/GMT-3\",\n\t\"Etc/GMT-4\",\n\t\"Etc/GMT-5\",\n\t\"Etc/GMT-6\",\n\t\"Etc/GMT-7\",\n\t\"Etc/GMT-8\",\n\t\"Etc/GMT-9\",\n\t\"Etc/UTC\",\n\t\"Europe/Amsterdam\",\n\t\"Europe/Andorra\",\n\t\"Europe/Astrakhan\",\n\t\"Europe/Athens\",\n\t\"Europe/Belgrade\",\n\t\"Europe/Berlin\",\n\t\"Europe/Bratislava\",\n\t\"Europe/Brussels\",\n\t\"Europe/Bucharest\",\n\t\"Europe/Budapest\",\n\t\"Europe/Busingen\",\n\t\"Europe/Chisinau\",\n\t\"Europe/Copenhagen\",\n\t\"Europe/Dublin\",\n\t\"Europe/Gibraltar\",\n\t\"Europe/Guernsey\",\n\t\"Europe/Helsinki\",\n\t\"Europe/Isle_of_Man\",\n\t\"Europe/Istanbul\",\n\t\"Europe/Jersey\",\n\t\"Europe/Kaliningrad\",\n\t\"Europe/Kirov\",\n\t\"Europe/Kyiv\",\n\t\"Europe/Lisbon\",\n\t\"Europe/Ljubljana\",\n\t\"Europe/London\",\n\t\"Europe/Luxembourg\",\n\t\"Europe/Madrid\",\n\t\"Europe/Malta\",\n\t\"Europe/Mariehamn\",\n\t\"Europe/Minsk\",\n\t\"Europe/Monaco\",\n\t\"Europe/Moscow\",\n\t\"Europe/Oslo\",\n\t\"Europe/Paris\",\n\t\"Europe/Podgorica\",\n\t\"Europe/Prague\",\n\t\"Europe/Riga\",\n\t\"Europe/Rome\",\n\t\"Europe/Samara\",\n\t\"Europe/San_Marino\",\n\t\"Europe/Sarajevo\",\n\t\"Europe/Saratov\",\n\t\"Europe/Simferopol\",\n\t\"Europe/Skopje\",\n\t\"Europe/Sofia\",\n\t\"Europe/Stockholm\",\n\t\"Europe/Tallinn\",\n\t\"Europe/Tirane\",\n\t\"Europe/Ulyanovsk\",\n\t\"Europe/Uzhgorod\",\n\t\"Europe/Vaduz\",\n\t\"Europe/Vatican\",\n\t\"Europe/Vienna\",\n\t\"Europe/Vilnius\",\n\t\"Europe/Volgograd\",\n\t\"Europe/Warsaw\",\n\t\"Europe/Zagreb\",\n\t\"Europe/Zaporozhye\",\n\t\"Europe/Zurich\",\n\t\"Indian/Antananarivo\",\n\t\"Indian/Chagos\",\n\t\"Indian/Christmas\",\n\t\"Indian/Cocos\",\n\t\"Indian/Comoro\",\n\t\"Indian/Kerguelen\",\n\t\"Indian/Mahe\",\n\t\"Indian/Maldives\",\n\t\"Indian/Mauritius\",\n\t\"Indian/Mayotte\",\n\t\"Indian/Reunion\",\n\t\"Pacific/Apia\",\n\t\"Pacific/Auckland\",\n\t\"Pacific/Bougainville\",\n\t\"Pacific/Chatham\",\n\t\"Pacific/Chuuk\",\n\t\"Pacific/Easter\",\n\t\"Pacific/Efate\",\n\t\"Pacific/Fakaofo\",\n\t\"Pacific/Fiji\",\n\t\"Pacific/Funafuti\",\n\t\"Pacific/Galapagos\",\n\t\"Pacific/Gambier\",\n\t\"Pacific/Guadalcanal\",\n\t\"Pacific/Guam\",\n\t\"Pacific/Honolulu\",\n\t\"Pacific/Kanton\",\n\t\"Pacific/Kiritimati\",\n\t\"Pacific/Kosrae\",\n\t\"Pacific/Kwajalein\",\n\t\"Pacific/Majuro\",\n\t\"Pacific/Marquesas\",\n\t\"Pacific/Midway\",\n\t\"Pacific/Nauru\",\n\t\"Pacific/Niue\",\n\t\"Pacific/Norfolk\",\n\t\"Pacific/Noumea\",\n\t\"Pacific/Pago_Pago\",\n\t\"Pacific/Palau\",\n\t\"Pacific/Pitcairn\",\n\t\"Pacific/Pohnpei\",\n\t\"Pacific/Port_Moresby\",\n\t\"Pacific/Rarotonga\",\n\t\"Pacific/Saipan\",\n\t\"Pacific/Tahiti\",\n\t\"Pacific/Tarawa\",\n\t\"Pacific/Tongatapu\",\n\t\"Pacific/Wake\",\n\t\"Pacific/Wallis\",\n\t\"UTC\"\n];\n","import {createMemoizedDateTimeFormat} from '#packages/intl-supportedvaluesof/memoize.js'\nimport type {Timezone} from '@formatjs_generated/cldr.supported-values/timezones.js'\nimport {timezones} from '@formatjs_generated/cldr.supported-values/timezones.js'\n\n/**\n * Implementation: Tests if a timezone is supported by attempting to create\n * a DateTimeFormat with that timezone and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from IANA Time Zone Database\n */\nfunction isSupportedTimeZone(timeZone: Timezone): boolean {\n try {\n // Always use 'en' for testing\n const formatter = createMemoizedDateTimeFormat('en', {timeZone})\n return formatter.resolvedOptions().timeZone === timeZone\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported timezone identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedTimeZones(): Timezone[] {\n return timezones.filter(isSupportedTimeZone).sort()\n}\n","/* @generated */\n// prettier-ignore\nexport const units = [\n\t\"degree\",\n\t\"acre\",\n\t\"hectare\",\n\t\"percent\",\n\t\"bit\",\n\t\"byte\",\n\t\"gigabit\",\n\t\"gigabyte\",\n\t\"kilobit\",\n\t\"kilobyte\",\n\t\"megabit\",\n\t\"megabyte\",\n\t\"petabyte\",\n\t\"terabit\",\n\t\"terabyte\",\n\t\"day\",\n\t\"hour\",\n\t\"microsecond\",\n\t\"millisecond\",\n\t\"minute\",\n\t\"month\",\n\t\"nanosecond\",\n\t\"second\",\n\t\"week\",\n\t\"year\",\n\t\"centimeter\",\n\t\"foot\",\n\t\"inch\",\n\t\"kilometer\",\n\t\"meter\",\n\t\"mile-scandinavian\",\n\t\"mile\",\n\t\"millimeter\",\n\t\"yard\",\n\t\"gram\",\n\t\"kilogram\",\n\t\"ounce\",\n\t\"pound\",\n\t\"stone\",\n\t\"celsius\",\n\t\"fahrenheit\",\n\t\"fluid-ounce\",\n\t\"gallon\",\n\t\"liter\",\n\t\"milliliter\"\n];\n","import {createMemoizedNumberFormat} from '#packages/ecma402-abstract/utils.js'\nimport type {Unit} from '@formatjs_generated/cldr.supported-values/units.js'\nimport {units} from '@formatjs_generated/cldr.supported-values/units.js'\n\n/**\n * Implementation: Tests if a unit is supported by attempting to create\n * a NumberFormat with that unit and verifying it was accepted.\n *\n * CLDR Data: Candidate values come from CLDR unit types\n */\nfunction isSupportedUnit(unit: Unit): boolean {\n try {\n // Always use 'en' for testing\n const formatter = createMemoizedNumberFormat('en', {style: 'unit', unit})\n return formatter.resolvedOptions().unit === unit\n } catch {}\n\n return false\n}\n\n/**\n * ECMA-402 Spec: Returns supported unit identifiers\n * ECMA-402 Spec: Results must be sorted lexicographically\n *\n * Implementation: Filters CLDR list against actual runtime support\n */\nexport function getSupportedUnits(): Unit[] {\n return units.filter(isSupportedUnit).sort()\n}\n","export function shouldPolyfill(): boolean {\n return typeof Intl === 'undefined' || !('supportedValuesOf' in Intl)\n}\n","import {ToString} from '#packages/ecma262-abstract/ToString.js'\nimport {getSupportedCalendars} from '#packages/intl-supportedvaluesof/get-supported-calendars.js'\nimport {getSupportedCollations} from '#packages/intl-supportedvaluesof/get-supported-collations.js'\nimport {getSupportedCurrencies} from '#packages/intl-supportedvaluesof/get-supported-currencies.js'\nimport {getSupportedNumberingSystems} from '#packages/intl-supportedvaluesof/get-supported-numbering-systems.js'\nimport {getSupportedTimeZones} from '#packages/intl-supportedvaluesof/get-supported-timezones.js'\nimport {getSupportedUnits} from '#packages/intl-supportedvaluesof/get-supported-units.js'\n\nexport type {Calendar} from '@formatjs_generated/cldr.supported-values/calendars.js'\nexport type {Collation} from '@formatjs_generated/cldr.supported-values/collations.js'\nexport type {Currency} from '@formatjs_generated/cldr.supported-values/currencies.js'\nexport type {Timezone} from '@formatjs_generated/cldr.supported-values/timezones.js'\nexport type {Unit} from '@formatjs_generated/cldr.supported-values/units.js'\n\nexport {shouldPolyfill} from '#packages/intl-supportedvaluesof/should-polyfill.js'\n\n/**\n * ECMA-402 Spec: Intl.supportedValuesOf\n * ECMA-402 §8.3.2 Intl.supportedValuesOf, step 1.\n * https://tc39.es/ecma402/#sec-intl.supportedvaluesof\n * https://github.com/tc39/ecma402/blob/b1c961988b9a07894b1dc3dc2b5626ea48387d61/spec/intl.html#L103\n */\ndeclare global {\n namespace Intl {\n /**\n * Returns an array containing the supported values for the given key.\n * @param key - The category of values to return\n * @returns A sorted array of strings\n */\n function supportedValuesOf(\n key:\n | 'calendar'\n | 'collation'\n | 'currency'\n | 'numberingSystem'\n | 'timeZone'\n | 'unit'\n ): string[]\n }\n}\n\n/**\n * ECMA-402 Spec: Supported value categories\n */\nexport type SupportedValuesOf =\n | 'calendar'\n | 'collation'\n | 'currency'\n | 'numberingSystem'\n | 'timeZone'\n | 'unit'\n\n/**\n * ECMA-402 Spec: Intl.supportedValuesOf(key)\n * ECMA-402 §8.3.2 Intl.supportedValuesOf, step 1.\n * https://tc39.es/ecma402/#sec-intl.supportedvaluesof\n * https://github.com/tc39/ecma402/blob/b1c961988b9a07894b1dc3dc2b5626ea48387d61/spec/intl.html#L103\n *\n * Returns an array containing the supported calendar, collation, currency,\n * numbering systems, time zone, or unit values supported by the implementation.\n *\n * Implementation: We validate candidate values from CLDR against the actual\n * Intl formatters to determine runtime support rather than using static lists.\n * This ensures accuracy across different JavaScript engines and runtimes.\n *\n * @param key - The category of values to return\n * @returns A sorted array of unique string values\n */\n// ECMA-262 §17, built-in function objects: non-constructors lack [[Construct]]\n// and an own prototype property (these requirements are not algorithm steps).\n// https://tc39.es/ecma262/#sec-ecmascript-standard-built-in-objects\n// https://github.com/tc39/ecma262/blob/b7865f0eed2021720f84d561289401bc414874d0/spec.html#L30375-L30376\nexport const supportedValuesOf: (key: SupportedValuesOf) => string[] = {\n supportedValuesOf(key: SupportedValuesOf): string[] {\n // ECMA-402 §8.3.2 Intl.supportedValuesOf, step 1.\n // Coerce the key before dispatch: https://tc39.es/ecma402/#sec-intl.supportedvaluesof\n // https://github.com/tc39/ecma402/blob/b1c961988b9a07894b1dc3dc2b5626ea48387d61/spec/intl.html#L103\n key = ToString(key) as SupportedValuesOf\n switch (key) {\n case 'calendar':\n return getSupportedCalendars()\n case 'collation':\n return getSupportedCollations()\n case 'currency':\n return getSupportedCurrencies()\n case 'numberingSystem':\n return getSupportedNumberingSystems()\n case 'timeZone':\n return getSupportedTimeZones()\n case 'unit':\n return getSupportedUnits()\n default:\n // ECMA-402 Spec: Throw RangeError for invalid keys\n throw RangeError('Invalid key: ' + key)\n }\n },\n}.supportedValuesOf\n"],"x_google_ignoreList":[2,4,5,8,10,12,14],"mappings":";;;;;AAGA,SAAgB,SAAS,GAAG;CAC3B,IAAI,OAAO,MAAM,UAChB,MAAM,UAAU,2CAA2C;CAE5D,OAAO,OAAO,CAAC;AAChB;;;;;;;;;;;ACEA,MAAa,+BAEc,SACxB,GAAG,SACF,IAAI,KAAK,eAAe,GAAG,IAAI,GACjC,EACE,UAAU,WAAW,SACvB,CACF;;;AChBA,MAAa,YAAY;CACxB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACZA,SAAS,oBAAoB,MAAyB;CACpD,IAAI;EAMF,OAJuB,6BAA6B,WAAW,MAClC,CAAC,CAAC,gBAAgB,CAAC,CAAC,aAG9B;CACrB,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,wBAAoC;CAClD,OAAO,UAAU,OAAO,mBAAmB,CAAC,CAAC,KAAK;AACpD;;;AC7BA,MAAa,aAAa;CACzB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;ACkuDA,MAAa,4BAA4B;CACxC,UAAU,CAAC,IAAI;CACf,QAAQ;EACP;EACA;EACA;EACA;EACA;EACA;EACA;CACD;CACA,gBAAgB,CAAC,IAAI;CACrB,OAAO;EACN;EACA;EACA;CACD;CACA,WAAW,CAAC,MAAM,OAAO;CACzB,gBAAgB,CAAC,IAAI;CACrB,UAAU;EACT;EACA;EACA;EACA;CACD;CACA,YAAY,CAAC,IAAI;CACjB,YAAY,CAAC,IAAI;CACjB,SAAS,CAAC,IAAI;CACd,kBAAkB,CAAC,IAAI;CACvB,QAAQ,CAAC,IAAI;CACb,UAAU,CAAC,MAAM,SAAS;CAC1B,kBAAkB,CAAC,MAAM,SAAS;CAClC,UAAU,CAAC,MAAM,SAAS;CAC1B,UAAU,CAAC,MAAM,SAAS;AAC3B;;;ACtxDA,SAAS,qBAAqB,WAA+B;CAM3D,MAAM,aACJ,0BACA,cAAc,CAAC,IAAI;CACrB,KAAK,MAAM,UAAU,YACnB,IAAI;EACF,IACE,IAAI,KAAK,SAAS,GAAG,OAAO,QAAQ,WAAW,CAAC,CAAC,gBAAgB,CAAC,CAC/D,cAAc,WAEjB,OAAO;CAEX,QAAQ,CAAC;CAEX,OAAO;AACT;AAEA,SAAgB,yBAAsC;CACpD,OAAO,WAAW,OAAO,oBAAoB,CAAC,CAAC,KAAK;AACtD;;;ACsDA,MAAa,6BAA6B,SAAS,GAAG,SAAS,IAAI,KAAK,aAAa,GAAG,IAAI,GAAG,EAAE,UAAU,WAAW,SAAS,CAAC;AACvF,SAAS,GAAG,SAAS,IAAI,KAAK,YAAY,GAAG,IAAI,GAAG,EAAE,UAAU,WAAW,SAAS,CAAC;AACtF,SAAS,GAAG,SAAS,IAAI,KAAK,WAAW,GAAG,IAAI,GAAG,EAAE,UAAU,WAAW,SAAS,CAAC;;;AClF5H,MAAa,aAAa;CACzB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;AC5SA,SAAS,oBAAoB,UAA6B;CACxD,IAAI;EAQF,MAAM,SANe,2BAA2B,MAAM;GACpD,OAAO;GACP,iBAAiB;GACjB;EACF,CAE0B,CAAC,CAAC,OAAO,GAAG;EAEtC,IACE,OAAO,UAAU,GAAG,CAAC,MAAM,YAC3B,OAAO,UAAU,OAAO,SAAS,CAAC,MAAM,UAExC,OAAO;CAEX,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,yBAAqC;CACnD,MAAM,OAAO;CACb,MAAM,sBAAkC,CAAC;CAEzC,KAAK,MAAM,YAAY,YACrB,IAAI,SAAS,WAAW,GAClB;MAAA,oBAAoB,QAAQ,GAC9B,oBAAoB,KAAK,QAAQ;CAAA,OAE9B,IAAI,SAAS,WAAW,KAAK,SAAS,OAAO,KAAK;EACvD,MAAM,QAAQ,KAAK,QAAQ,SAAS,EAAE;EACtC,MAAM,MAAM,KAAK,QAAQ,SAAS,EAAE;EAEpC,KAAK,IAAI,IAAI,OAAO,KAAK,KAAK,KAAK;GACjC,MAAM,kBAAmB,SAAS,UAAU,GAAG,CAAC,IAAI,KAAK;GACzD,IAAI,oBAAoB,eAAe,GACrC,oBAAoB,KAAK,eAAe;EAE5C;CACF;CAGF,OAAO,oBAAoB,KAAK;AAClC;;;AC7DA,MAAa,uBAAuB;CACnC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACzFA,SAAS,2BAA2B,QAAyB;CAC3D,IAAI;EAEF,MAAM,eAAe,2BAA2B,WAAW,QAAQ;EAGnE,IAFgB,aAAa,gBAAgB,CAAC,CAAC,oBAGhC,UAAU,WAAW,UAClC,aAAa,OAAO,GAAG,MAAM,OAE7B,OAAO;CAEX,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,+BAAyC;CACvD,OAAO,qBAAqB,OAAO,0BAA0B,CAAC,CAAC,KAAK;AACtE;;;AChCA,MAAa,YAAY;CACxB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACjcA,SAAS,oBAAoB,UAA6B;CACxD,IAAI;EAGF,OADkB,6BAA6B,MAAM,EAAC,SAAQ,CAC/C,CAAC,CAAC,gBAAgB,CAAC,CAAC,aAAa;CAClD,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,wBAAoC;CAClD,OAAO,UAAU,OAAO,mBAAmB,CAAC,CAAC,KAAK;AACpD;;;AC1BA,MAAa,QAAQ;CACpB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACD;;;;;;;;;ACtCA,SAAS,gBAAgB,MAAqB;CAC5C,IAAI;EAGF,OADkB,2BAA2B,MAAM;GAAC,OAAO;GAAQ;EAAI,CACxD,CAAC,CAAC,gBAAgB,CAAC,CAAC,SAAS;CAC9C,QAAQ,CAAC;CAET,OAAO;AACT;;;;;;;AAQA,SAAgB,oBAA4B;CAC1C,OAAO,MAAM,OAAO,eAAe,CAAC,CAAC,KAAK;AAC5C;;;AC5BA,SAAgB,iBAA0B;CACxC,OAAO,OAAO,SAAS,eAAe,EAAE,uBAAuB;AACjE;;;;;;;;;;;;;;;;;;;ACsEA,MAAa,oBAA0D,EACrE,kBAAkB,KAAkC;CAIlD,MAAM,SAAS,GAAG;CAClB,QAAQ,KAAR;EACE,KAAK,YACH,OAAO,sBAAsB;EAC/B,KAAK,aACH,OAAO,uBAAuB;EAChC,KAAK,YACH,OAAO,uBAAuB;EAChC,KAAK,mBACH,OAAO,6BAA6B;EACtC,KAAK,YACH,OAAO,sBAAsB;EAC/B,KAAK,QACH,OAAO,kBAAkB;EAC3B,SAEE,MAAM,WAAW,kBAAkB,GAAG;CAC1C;AACF,EACF,EAAE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formatjs/intl-supportedvaluesof",
3
- "version": "2.3.8",
3
+ "version": "2.3.10",
4
4
  "description": "Intl.supportedValuesOf polyfill",
5
5
  "keywords": [
6
6
  "ecma402",
@@ -16,7 +16,10 @@
16
16
  "bugs": "https://github.com/formatjs/formatjs/issues",
17
17
  "license": "MIT",
18
18
  "author": "Michele Riva <ciao@micheleriva.it>",
19
- "repository": "formatjs/formatjs.git",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "formatjs/formatjs.git"
22
+ },
20
23
  "type": "module",
21
24
  "types": "index.d.ts",
22
25
  "exports": {
@@ -26,6 +29,6 @@
26
29
  "./should-polyfill.js": "./should-polyfill.js"
27
30
  },
28
31
  "dependencies": {
29
- "@formatjs/fast-memoize": "3.1.6"
32
+ "@formatjs/fast-memoize": "3.1.7"
30
33
  }
31
34
  }
@@ -1 +1 @@
1
- export { };
1
+ export {}