@formatjs/intl-listformat 8.3.12 → 8.3.14

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/polyfill.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"polyfill.js","names":[],"sources":["../../ecma402-abstract/CanonicalizeLocaleList.js","../../ecma262-abstract/ToString.js","../../ecma402-abstract/GetOption.js","../../ecma402-abstract/GetOptionsObject.js","../../../node_modules/.aspect_rules_js/@formatjs+fast-memoize@0.0.0/node_modules/@formatjs/fast-memoize/index.js","../../ecma402-abstract/utils.js","../../ecma402-abstract/PartitionPattern.js","../../ecma262-abstract/ToObject.js","../../ecma402-abstract/SupportedLocales.js","../index.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-locales@0.0.0/node_modules/@formatjs_generated/cldr.supported-locales/intl-listformat.js","../should-polyfill.ts","../polyfill.ts"],"sourcesContent":["/**\n* http://ecma-international.org/ecma-402/7.0/index.html#sec-canonicalizelocalelist\n* @param locales\n*/\nexport function CanonicalizeLocaleList(locales) {\n\t// TODO\n\treturn Intl.getCanonicalLocales(locales);\n}\n","/**\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 { ToString } from \"#packages/ecma262-abstract/ToString.js\";\n/**\n* https://tc39.es/ecma402/#sec-getoption\n* @param opts\n* @param prop\n* @param type\n* @param values\n* @param fallback\n*/\nexport function GetOption(opts, prop, type, values, fallback) {\n\tif (typeof opts !== \"object\") {\n\t\tthrow new TypeError(\"Options must be an object\");\n\t}\n\tlet value = opts[prop];\n\tif (value !== undefined) {\n\t\tif (type !== \"boolean\" && type !== \"string\") {\n\t\t\tthrow new TypeError(\"invalid type\");\n\t\t}\n\t\tif (type === \"boolean\") {\n\t\t\tvalue = Boolean(value);\n\t\t}\n\t\tif (type === \"string\") {\n\t\t\tvalue = ToString(value);\n\t\t}\n\t\tif (values !== undefined && !values.filter((val) => val == value).length) {\n\t\t\tthrow new RangeError(`${value} is not within ${values.join(\", \")}`);\n\t\t}\n\t\treturn value;\n\t}\n\treturn fallback;\n}\n","/**\n* https://tc39.es/ecma402/#sec-getoptionsobject\n* @param options\n* @returns\n*/\nexport function GetOptionsObject(options) {\n\tif (typeof options === \"undefined\") {\n\t\treturn Object.create(null);\n\t}\n\tif (typeof options === \"object\") {\n\t\treturn options;\n\t}\n\tthrow new TypeError(\"Options must be an object\");\n}\n","//#region packages/fast-memoize/index.ts\nfunction memoize(fn, options) {\n\tconst cache = options && options.cache ? options.cache : cacheDefault;\n\tconst serializer = options && options.serializer ? options.serializer : serializerDefault;\n\treturn (options && options.strategy ? options.strategy : strategyDefault)(fn, {\n\t\tcache,\n\t\tserializer\n\t});\n}\nfunction isPrimitive(value) {\n\treturn value == null || typeof value === \"number\" || typeof value === \"boolean\";\n}\nfunction monadic(fn, cache, serializer, arg) {\n\tconst cacheKey = isPrimitive(arg) ? arg : serializer(arg);\n\tlet computedValue = cache.get(cacheKey);\n\tif (typeof computedValue === \"undefined\") {\n\t\tcomputedValue = fn.call(this, arg);\n\t\tcache.set(cacheKey, computedValue);\n\t}\n\treturn computedValue;\n}\nfunction variadic(fn, cache, serializer) {\n\tconst args = Array.prototype.slice.call(arguments, 3);\n\tconst cacheKey = serializer(args);\n\tlet computedValue = cache.get(cacheKey);\n\tif (typeof computedValue === \"undefined\") {\n\t\tcomputedValue = fn.apply(this, args);\n\t\tcache.set(cacheKey, computedValue);\n\t}\n\treturn computedValue;\n}\nfunction assemble(fn, context, strategy, cache, serialize) {\n\treturn strategy.bind(context, fn, cache, serialize);\n}\nfunction strategyDefault(fn, options) {\n\tconst strategy = fn.length === 1 ? monadic : variadic;\n\treturn assemble(fn, this, strategy, options.cache.create(), options.serializer);\n}\nfunction strategyVariadic(fn, options) {\n\treturn assemble(fn, this, variadic, options.cache.create(), options.serializer);\n}\nfunction strategyMonadic(fn, options) {\n\treturn assemble(fn, this, monadic, options.cache.create(), options.serializer);\n}\nconst serializerDefault = function() {\n\treturn JSON.stringify(arguments);\n};\nvar ObjectWithoutPrototypeCache = class {\n\tconstructor() {\n\t\tthis.cache = Object.create(null);\n\t}\n\tget(key) {\n\t\treturn this.cache[key];\n\t}\n\tset(key, value) {\n\t\tthis.cache[key] = value;\n\t}\n};\nconst cacheDefault = { create: function create() {\n\treturn new ObjectWithoutPrototypeCache();\n} };\nconst strategies = {\n\tvariadic: strategyVariadic,\n\tmonadic: strategyMonadic\n};\n//#endregion\nexport { memoize, strategies };\n\n//# sourceMappingURL=index.js.map","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","import { invariant } from \"#packages/ecma402-abstract/utils.js\";\n/**\n* Partition a pattern into a list of literals and placeholders\n* https://tc39.es/ecma402/#sec-partitionpattern\n* @param pattern\n*/\nexport function PartitionPattern(pattern) {\n\tconst result = [];\n\tlet beginIndex = pattern.indexOf(\"{\");\n\tlet endIndex = 0;\n\tlet nextIndex = 0;\n\tconst length = pattern.length;\n\twhile (beginIndex < pattern.length && beginIndex > -1) {\n\t\tendIndex = pattern.indexOf(\"}\", beginIndex);\n\t\tinvariant(endIndex > beginIndex, `Invalid pattern ${pattern}`);\n\t\tif (beginIndex > nextIndex) {\n\t\t\tresult.push({\n\t\t\t\ttype: \"literal\",\n\t\t\t\tvalue: pattern.substring(nextIndex, beginIndex)\n\t\t\t});\n\t\t}\n\t\tresult.push({\n\t\t\ttype: pattern.substring(beginIndex + 1, endIndex),\n\t\t\tvalue: undefined\n\t\t});\n\t\tnextIndex = endIndex + 1;\n\t\tbeginIndex = pattern.indexOf(\"{\", nextIndex);\n\t}\n\tif (nextIndex < length) {\n\t\tresult.push({\n\t\t\ttype: \"literal\",\n\t\t\tvalue: pattern.substring(nextIndex, length)\n\t\t});\n\t}\n\treturn result;\n}\n","/**\n* https://tc39.es/ecma262/#sec-toobject\n*/\nexport function ToObject(arg) {\n\tif (arg == null) {\n\t\tthrow new TypeError(\"undefined/null cannot be converted to object\");\n\t}\n\treturn Object(arg);\n}\n","import { LookupSupportedLocales } from \"@formatjs/intl-localematcher\";\nimport { ToObject } from \"#packages/ecma262-abstract/ToObject.js\";\nimport { GetOption } from \"#packages/ecma402-abstract/GetOption.js\";\n/**\n* https://tc39.es/ecma402/#sec-supportedlocales\n* @param availableLocales\n* @param requestedLocales\n* @param options\n*/\nexport function SupportedLocales(availableLocales, requestedLocales, options) {\n\tlet matcher = \"best fit\";\n\tif (options !== undefined) {\n\t\toptions = ToObject(options);\n\t\tmatcher = GetOption(options, \"localeMatcher\", \"string\", [\"lookup\", \"best fit\"], \"best fit\");\n\t}\n\tif (matcher === \"best fit\") {\n\t\treturn LookupSupportedLocales(Array.from(availableLocales), requestedLocales);\n\t}\n\treturn LookupSupportedLocales(Array.from(availableLocales), requestedLocales);\n}\n","import {CanonicalizeLocaleList} from '#packages/ecma402-abstract/CanonicalizeLocaleList.js'\nimport {GetOption} from '#packages/ecma402-abstract/GetOption.js'\nimport {GetOptionsObject} from '#packages/ecma402-abstract/GetOptionsObject.js'\nimport {PartitionPattern} from '#packages/ecma402-abstract/PartitionPattern.js'\nimport {SupportedLocales} from '#packages/ecma402-abstract/SupportedLocales.js'\nimport {\n type ListPatternData,\n type ListPatternFieldsData,\n type ListPatternLocaleData,\n} from '#packages/ecma402-abstract/types/list.js'\nimport {\n type LiteralPart,\n getInternalSlot,\n invariant,\n isLiteralPart,\n setInternalSlot,\n} from '#packages/ecma402-abstract/utils.js'\nimport {ResolveLocale} from '@formatjs/intl-localematcher'\n\nexport interface IntlListFormatOptions {\n /**\n * The locale matching algorithm to use.\n * Possible values are \"lookup\" and \"best fit\"; the default is \"best fit\".\n * For information about this option, see\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation.\n */\n localeMatcher?: 'best fit' | 'lookup'\n /**\n * The format of output message.\n * Possible values are :\n * - \"conjunction\" that stands for \"and\"-based lists (default, e.g., \"A, B, and C\")\n * - \"disjunction\" that stands for \"or\"-based lists (e.g., \"A, B, or C\").\n * - \"unit\" stands for lists of values with units (e.g., \"5 pounds, 12 ounces\").\n */\n type?: 'conjunction' | 'disjunction' | 'unit'\n /**\n * The length of the formatted message.\n * Possible values are:\n * - \"long\" (default, e.g., \"A, B, and C\");\n * - \"short\" (e.g., \"A, B, C\"), or\n * - \"narrow\" (e.g., \"A B C\").\n * When style is \"short\" or \"narrow\", \"unit\" is the only allowed value for the type option.\n */\n style?: 'long' | 'short' | 'narrow'\n}\n\nexport interface ResolvedIntlListFormatOptions {\n /**\n * A string with a BCP 47 language tag, or an array of such strings.\n * For the general form and interpretation of the locales argument,\n * see the [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation) page.\n */\n locale: string\n /**\n * The format of output message.\n * Possible values are :\n * - \"conjunction\" that stands for \"and\"-based lists (default, e.g., \"A, B, and C\")\n * - \"disjunction\" that stands for \"or\"-based lists (e.g., \"A, B, or C\").\n * - \"unit\" stands for lists of values with units (e.g., \"5 pounds, 12 ounces\").\n */\n type: 'conjunction' | 'disjunction' | 'unit'\n /**\n * The length of the formatted message.\n * Possible values are:\n * - \"long\" (default, e.g., \"A, B, and C\");\n * - \"short\" (e.g., \"A, B, C\"), or\n * - \"narrow\" (e.g., \"A B C\").\n * When style is \"short\" or \"narrow\", \"unit\" is the only allowed value for the type option.\n */\n style: 'long' | 'short' | 'narrow'\n}\n\nexport type Part<T = string> = LiteralPart | ElementPart | ElementPart<T>\n\nexport interface ElementPart<T = string> {\n type: 'element'\n value: T\n}\n\ninterface Placeable {\n type: string\n value: string\n}\n\ninterface ListFormatInternal {\n style: IntlListFormatOptions['style']\n type: IntlListFormatOptions['type']\n locale: string\n templatePair: string\n templateStart: string\n templateEnd: string\n templateMiddle: string\n initializedListFormat: boolean\n}\n\nfunction validateInstance(instance: any, method: string) {\n if (!(instance instanceof ListFormat)) {\n throw new TypeError(\n `Method Intl.ListFormat.prototype.${method} called on incompatible receiver ${String(\n instance\n )}`\n )\n }\n}\n\n/**\n * https://tc39.es/proposal-intl-list-format/#sec-createstringlistfromiterable\n * @param iterable list\n */\nfunction stringListFromIterable(iterable: Iterable<unknown>): string[] {\n if (typeof iterable !== 'object') return []\n const elements: string[] = []\n const iterator = iterable[Symbol.iterator]()\n let result: IteratorResult<unknown>\n while (true) {\n result = iterator.next()\n if (result.done) break\n if (typeof result.value !== 'string') {\n const nextValue = result.value\n throw new TypeError(`Iterable yielded ${nextValue} which is not a string`)\n }\n elements.push(result.value)\n }\n return elements\n}\n\nfunction createPartsFromList(\n internalSlotMap: WeakMap<ListFormat, ListFormatInternal>,\n lf: ListFormat,\n list: string[]\n) {\n const size = list.length\n if (size === 0) {\n return []\n }\n if (size === 2) {\n const pattern = getInternalSlot(internalSlotMap, lf, 'templatePair')\n const first = {type: 'element', value: list[0]}\n const second = {type: 'element', value: list[1]}\n return deconstructPattern(pattern, {'0': first, '1': second})\n }\n const last = {\n type: 'element',\n value: list[size - 1],\n }\n let parts: Placeable[] | Placeable = last\n let i = size - 2\n while (i >= 0) {\n let pattern\n if (i === 0) {\n pattern = getInternalSlot(internalSlotMap, lf, 'templateStart')\n } else if (i < size - 2) {\n pattern = getInternalSlot(internalSlotMap, lf, 'templateMiddle')\n } else {\n pattern = getInternalSlot(internalSlotMap, lf, 'templateEnd')\n }\n const head = {type: 'element', value: list[i]}\n parts = deconstructPattern(pattern, {'0': head, '1': parts})\n i--\n }\n return parts\n}\n\nfunction deconstructPattern(\n pattern: string,\n placeables: Record<string, Placeable | Placeable[]>\n) {\n const patternParts = PartitionPattern(pattern)\n const result: Placeable[] = []\n for (const patternPart of patternParts) {\n const {type: part} = patternPart\n if (isLiteralPart(patternPart)) {\n result.push({\n type: 'literal',\n value: patternPart.value,\n })\n } else {\n invariant(part in placeables, `${part} is missing from placables`)\n const subst = placeables[part]\n if (Array.isArray(subst)) {\n result.push(...subst)\n } else {\n result.push(subst)\n }\n }\n }\n return result\n}\n\nexport default class ListFormat {\n constructor(locales?: string | string[], options?: IntlListFormatOptions) {\n // test262/test/intl402/ListFormat/constructor/constructor/newtarget-undefined.js\n // Cannot use `new.target` bc of IE11 & TS transpiles it to something else\n const newTarget =\n this && this instanceof ListFormat ? this.constructor : void 0\n if (!newTarget) {\n throw new TypeError(\"Intl.ListFormat must be called with 'new'\")\n }\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'initializedListFormat',\n true\n )\n const requestedLocales = CanonicalizeLocaleList(locales)\n const opt: any = Object.create(null)\n const opts = GetOptionsObject(options)\n const matcher = GetOption(\n opts,\n 'localeMatcher',\n 'string',\n ['best fit', 'lookup'],\n 'best fit'\n )\n opt.localeMatcher = matcher\n const {localeData} = ListFormat\n const r = ResolveLocale(\n ListFormat.availableLocales,\n requestedLocales,\n opt,\n ListFormat.relevantExtensionKeys,\n localeData,\n ListFormat.getDefaultLocale\n )\n setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale', r.locale)\n const type: keyof ListPatternFieldsData = GetOption(\n opts,\n 'type',\n 'string',\n ['conjunction', 'disjunction', 'unit'],\n 'conjunction'\n )\n setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type', type)\n const style: keyof ListPatternData = GetOption(\n opts,\n 'style',\n 'string',\n ['long', 'short', 'narrow'],\n 'long'\n )\n setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style', style)\n const {dataLocale} = r\n const dataLocaleData = localeData[dataLocale]\n invariant(!!dataLocaleData, `Missing locale data for ${dataLocale}`)\n const dataLocaleTypes = dataLocaleData[type]\n const templates = dataLocaleTypes![style]!\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templatePair',\n templates.pair\n )\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templateStart',\n templates.start\n )\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templateMiddle',\n templates.middle\n )\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templateEnd',\n templates.end\n )\n }\n format(elements: Iterable<string>): string {\n validateInstance(this, 'format')\n let result = ''\n const parts = createPartsFromList(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n stringListFromIterable(elements)\n )\n if (!Array.isArray(parts)) {\n return parts.value\n }\n for (const p of parts) {\n result += p.value\n }\n return result\n }\n formatToParts(elements: Iterable<string>): Part[] {\n validateInstance(this, 'format')\n const parts = createPartsFromList(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n stringListFromIterable(elements)\n )\n if (!Array.isArray(parts)) {\n return [parts as Part]\n }\n const result: Part[] = []\n for (const part of parts) {\n result.push({...part} as Part)\n }\n return result\n }\n\n resolvedOptions(): ResolvedIntlListFormatOptions {\n validateInstance(this, 'resolvedOptions')\n return {\n locale: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale'),\n type: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type')!,\n style: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style')!,\n }\n }\n\n public static supportedLocalesOf(\n locales: string | string[],\n options?: Pick<IntlListFormatOptions, 'localeMatcher'>\n ): string[] {\n // test262/test/intl402/ListFormat/constructor/supportedLocalesOf/result-type.js\n return SupportedLocales(\n ListFormat.availableLocales,\n CanonicalizeLocaleList(locales),\n options\n )\n }\n\n public static __addLocaleData(...data: ListPatternLocaleData[]): void {\n for (const {data: d, locale} of data) {\n const minimizedLocale = new (Intl as any).Locale(locale)\n .minimize()\n .toString()\n ListFormat.localeData[locale] = ListFormat.localeData[minimizedLocale] = d\n ListFormat.availableLocales.add(minimizedLocale)\n ListFormat.availableLocales.add(locale)\n if (!ListFormat.__defaultLocale) {\n ListFormat.__defaultLocale = minimizedLocale\n }\n }\n }\n static localeData: Record<string, ListPatternFieldsData | undefined> = {}\n private static availableLocales = new Set<string>()\n private static __defaultLocale = ''\n private static getDefaultLocale() {\n return ListFormat.__defaultLocale\n }\n private static relevantExtensionKeys = []\n public static polyfilled = true\n private static readonly __INTERNAL_SLOT_MAP__ = new WeakMap<\n ListFormat,\n ListFormatInternal\n >()\n}\n\ntry {\n // IE11 does not have Symbol\n if (typeof Symbol !== 'undefined') {\n Object.defineProperty(ListFormat.prototype, Symbol.toStringTag, {\n value: 'Intl.ListFormat',\n writable: false,\n enumerable: false,\n configurable: true,\n })\n }\n\n // https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/length.js\n Object.defineProperty(ListFormat.prototype.constructor, 'length', {\n value: 0,\n writable: false,\n enumerable: false,\n configurable: true,\n })\n // https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/supportedLocalesOf/length.js\n Object.defineProperty(ListFormat.supportedLocalesOf, 'length', {\n value: 1,\n writable: false,\n enumerable: false,\n configurable: true,\n })\n} catch {\n // Meta fix so we're test262-compliant, not important\n}\n","export const supportedLocales = [\n\t\"aa\",\n\t\"aa-DJ\",\n\t\"aa-ER\",\n\t\"ab\",\n\t\"af\",\n\t\"af-NA\",\n\t\"agq\",\n\t\"ak\",\n\t\"am\",\n\t\"an\",\n\t\"ann\",\n\t\"apc\",\n\t\"ar\",\n\t\"ar-AE\",\n\t\"ar-BH\",\n\t\"ar-DJ\",\n\t\"ar-DZ\",\n\t\"ar-EG\",\n\t\"ar-EH\",\n\t\"ar-ER\",\n\t\"ar-IL\",\n\t\"ar-IQ\",\n\t\"ar-JO\",\n\t\"ar-KM\",\n\t\"ar-KW\",\n\t\"ar-LB\",\n\t\"ar-LY\",\n\t\"ar-MA\",\n\t\"ar-MR\",\n\t\"ar-OM\",\n\t\"ar-PS\",\n\t\"ar-QA\",\n\t\"ar-SA\",\n\t\"ar-SD\",\n\t\"ar-SO\",\n\t\"ar-SS\",\n\t\"ar-SY\",\n\t\"ar-TD\",\n\t\"ar-TN\",\n\t\"ar-YE\",\n\t\"arn\",\n\t\"as\",\n\t\"asa\",\n\t\"ast\",\n\t\"az\",\n\t\"az-Arab\",\n\t\"az-Arab-IQ\",\n\t\"az-Arab-TR\",\n\t\"az-Cyrl\",\n\t\"az-Latn\",\n\t\"ba\",\n\t\"bal\",\n\t\"bal-Arab\",\n\t\"bal-Latn\",\n\t\"bas\",\n\t\"be\",\n\t\"be-tarask\",\n\t\"bem\",\n\t\"bew\",\n\t\"bez\",\n\t\"bg\",\n\t\"bgc\",\n\t\"bgn\",\n\t\"bgn-AE\",\n\t\"bgn-AF\",\n\t\"bgn-IR\",\n\t\"bgn-OM\",\n\t\"bho\",\n\t\"blo\",\n\t\"blt\",\n\t\"bm\",\n\t\"bm-Nkoo\",\n\t\"bn\",\n\t\"bn-IN\",\n\t\"bo\",\n\t\"bo-IN\",\n\t\"bqi\",\n\t\"br\",\n\t\"brx\",\n\t\"bs\",\n\t\"bs-Cyrl\",\n\t\"bs-Latn\",\n\t\"bss\",\n\t\"bua\",\n\t\"byn\",\n\t\"ca\",\n\t\"ca-AD\",\n\t\"ca-ES-valencia\",\n\t\"ca-FR\",\n\t\"ca-IT\",\n\t\"cad\",\n\t\"cch\",\n\t\"ccp\",\n\t\"ccp-IN\",\n\t\"ce\",\n\t\"ceb\",\n\t\"cgg\",\n\t\"cho\",\n\t\"chr\",\n\t\"cic\",\n\t\"ckb\",\n\t\"ckb-IR\",\n\t\"co\",\n\t\"cop\",\n\t\"cs\",\n\t\"csw\",\n\t\"cu\",\n\t\"cv\",\n\t\"cy\",\n\t\"da\",\n\t\"da-GL\",\n\t\"dav\",\n\t\"de\",\n\t\"de-AT\",\n\t\"de-BE\",\n\t\"de-CH\",\n\t\"de-IT\",\n\t\"de-LI\",\n\t\"de-LU\",\n\t\"dje\",\n\t\"doi\",\n\t\"dsb\",\n\t\"dua\",\n\t\"dv\",\n\t\"dyo\",\n\t\"dz\",\n\t\"ebu\",\n\t\"ee\",\n\t\"ee-TG\",\n\t\"el\",\n\t\"el-CY\",\n\t\"el-polyton\",\n\t\"en\",\n\t\"en-001\",\n\t\"en-150\",\n\t\"en-AE\",\n\t\"en-AG\",\n\t\"en-AI\",\n\t\"en-AS\",\n\t\"en-AT\",\n\t\"en-AU\",\n\t\"en-BB\",\n\t\"en-BE\",\n\t\"en-BI\",\n\t\"en-BM\",\n\t\"en-BS\",\n\t\"en-BW\",\n\t\"en-BZ\",\n\t\"en-CA\",\n\t\"en-CC\",\n\t\"en-CH\",\n\t\"en-CK\",\n\t\"en-CM\",\n\t\"en-CX\",\n\t\"en-CY\",\n\t\"en-CZ\",\n\t\"en-DE\",\n\t\"en-DG\",\n\t\"en-DK\",\n\t\"en-DM\",\n\t\"en-Dsrt\",\n\t\"en-EE\",\n\t\"en-ER\",\n\t\"en-ES\",\n\t\"en-FI\",\n\t\"en-FJ\",\n\t\"en-FK\",\n\t\"en-FM\",\n\t\"en-FR\",\n\t\"en-GB\",\n\t\"en-GD\",\n\t\"en-GE\",\n\t\"en-GG\",\n\t\"en-GH\",\n\t\"en-GI\",\n\t\"en-GM\",\n\t\"en-GS\",\n\t\"en-GU\",\n\t\"en-GY\",\n\t\"en-HK\",\n\t\"en-HU\",\n\t\"en-ID\",\n\t\"en-IE\",\n\t\"en-IL\",\n\t\"en-IM\",\n\t\"en-IN\",\n\t\"en-IO\",\n\t\"en-IT\",\n\t\"en-JE\",\n\t\"en-JM\",\n\t\"en-JP\",\n\t\"en-KE\",\n\t\"en-KI\",\n\t\"en-KN\",\n\t\"en-KY\",\n\t\"en-LC\",\n\t\"en-LR\",\n\t\"en-LS\",\n\t\"en-LT\",\n\t\"en-LV\",\n\t\"en-MG\",\n\t\"en-MH\",\n\t\"en-MO\",\n\t\"en-MP\",\n\t\"en-MS\",\n\t\"en-MT\",\n\t\"en-MU\",\n\t\"en-MV\",\n\t\"en-MW\",\n\t\"en-MY\",\n\t\"en-NA\",\n\t\"en-NF\",\n\t\"en-NG\",\n\t\"en-NL\",\n\t\"en-NO\",\n\t\"en-NR\",\n\t\"en-NU\",\n\t\"en-NZ\",\n\t\"en-PG\",\n\t\"en-PH\",\n\t\"en-PK\",\n\t\"en-PL\",\n\t\"en-PN\",\n\t\"en-PR\",\n\t\"en-PT\",\n\t\"en-PW\",\n\t\"en-RO\",\n\t\"en-RW\",\n\t\"en-SB\",\n\t\"en-SC\",\n\t\"en-SD\",\n\t\"en-SE\",\n\t\"en-SG\",\n\t\"en-SH\",\n\t\"en-SI\",\n\t\"en-SK\",\n\t\"en-SL\",\n\t\"en-SS\",\n\t\"en-SX\",\n\t\"en-SZ\",\n\t\"en-Shaw\",\n\t\"en-TC\",\n\t\"en-TK\",\n\t\"en-TO\",\n\t\"en-TT\",\n\t\"en-TV\",\n\t\"en-TZ\",\n\t\"en-UA\",\n\t\"en-UG\",\n\t\"en-UM\",\n\t\"en-VC\",\n\t\"en-VG\",\n\t\"en-VI\",\n\t\"en-VU\",\n\t\"en-WS\",\n\t\"en-ZA\",\n\t\"en-ZM\",\n\t\"en-ZW\",\n\t\"eo\",\n\t\"es\",\n\t\"es-419\",\n\t\"es-AR\",\n\t\"es-BO\",\n\t\"es-BR\",\n\t\"es-BZ\",\n\t\"es-CL\",\n\t\"es-CO\",\n\t\"es-CR\",\n\t\"es-CU\",\n\t\"es-DO\",\n\t\"es-EA\",\n\t\"es-EC\",\n\t\"es-GQ\",\n\t\"es-GT\",\n\t\"es-HN\",\n\t\"es-IC\",\n\t\"es-MX\",\n\t\"es-NI\",\n\t\"es-PA\",\n\t\"es-PE\",\n\t\"es-PH\",\n\t\"es-PR\",\n\t\"es-PY\",\n\t\"es-SV\",\n\t\"es-US\",\n\t\"es-UY\",\n\t\"es-VE\",\n\t\"et\",\n\t\"eu\",\n\t\"ewo\",\n\t\"fa\",\n\t\"fa-AF\",\n\t\"ff\",\n\t\"ff-Adlm\",\n\t\"ff-Adlm-BF\",\n\t\"ff-Adlm-CM\",\n\t\"ff-Adlm-GH\",\n\t\"ff-Adlm-GM\",\n\t\"ff-Adlm-GW\",\n\t\"ff-Adlm-LR\",\n\t\"ff-Adlm-MR\",\n\t\"ff-Adlm-NE\",\n\t\"ff-Adlm-NG\",\n\t\"ff-Adlm-SL\",\n\t\"ff-Adlm-SN\",\n\t\"ff-Latn\",\n\t\"ff-Latn-BF\",\n\t\"ff-Latn-CM\",\n\t\"ff-Latn-GH\",\n\t\"ff-Latn-GM\",\n\t\"ff-Latn-GN\",\n\t\"ff-Latn-GW\",\n\t\"ff-Latn-LR\",\n\t\"ff-Latn-MR\",\n\t\"ff-Latn-NE\",\n\t\"ff-Latn-NG\",\n\t\"ff-Latn-SL\",\n\t\"fi\",\n\t\"fil\",\n\t\"fo\",\n\t\"fo-DK\",\n\t\"fr\",\n\t\"fr-BE\",\n\t\"fr-BF\",\n\t\"fr-BI\",\n\t\"fr-BJ\",\n\t\"fr-BL\",\n\t\"fr-CA\",\n\t\"fr-CD\",\n\t\"fr-CF\",\n\t\"fr-CG\",\n\t\"fr-CH\",\n\t\"fr-CI\",\n\t\"fr-CM\",\n\t\"fr-DJ\",\n\t\"fr-DZ\",\n\t\"fr-GA\",\n\t\"fr-GF\",\n\t\"fr-GN\",\n\t\"fr-GP\",\n\t\"fr-GQ\",\n\t\"fr-HT\",\n\t\"fr-KM\",\n\t\"fr-LU\",\n\t\"fr-MA\",\n\t\"fr-MC\",\n\t\"fr-MF\",\n\t\"fr-MG\",\n\t\"fr-ML\",\n\t\"fr-MQ\",\n\t\"fr-MR\",\n\t\"fr-MU\",\n\t\"fr-NC\",\n\t\"fr-NE\",\n\t\"fr-PF\",\n\t\"fr-PM\",\n\t\"fr-RE\",\n\t\"fr-RW\",\n\t\"fr-SC\",\n\t\"fr-SN\",\n\t\"fr-SY\",\n\t\"fr-TD\",\n\t\"fr-TG\",\n\t\"fr-TN\",\n\t\"fr-VU\",\n\t\"fr-WF\",\n\t\"fr-YT\",\n\t\"frr\",\n\t\"fur\",\n\t\"fy\",\n\t\"ga\",\n\t\"ga-GB\",\n\t\"gaa\",\n\t\"gd\",\n\t\"gez\",\n\t\"gez-ER\",\n\t\"gl\",\n\t\"gn\",\n\t\"gsw\",\n\t\"gsw-FR\",\n\t\"gsw-LI\",\n\t\"gu\",\n\t\"guz\",\n\t\"gv\",\n\t\"ha\",\n\t\"ha-Arab\",\n\t\"ha-Arab-SD\",\n\t\"ha-GH\",\n\t\"ha-NE\",\n\t\"haw\",\n\t\"he\",\n\t\"hi\",\n\t\"hi-Latn\",\n\t\"hnj\",\n\t\"hnj-Hmnp\",\n\t\"hr\",\n\t\"hr-BA\",\n\t\"hsb\",\n\t\"ht\",\n\t\"hu\",\n\t\"hy\",\n\t\"ia\",\n\t\"id\",\n\t\"ie\",\n\t\"ig\",\n\t\"ii\",\n\t\"io\",\n\t\"is\",\n\t\"it\",\n\t\"it-CH\",\n\t\"it-SM\",\n\t\"it-VA\",\n\t\"iu\",\n\t\"iu-Latn\",\n\t\"ja\",\n\t\"jbo\",\n\t\"jgo\",\n\t\"jmc\",\n\t\"jv\",\n\t\"ka\",\n\t\"kaa\",\n\t\"kaa-Cyrl\",\n\t\"kaa-Latn\",\n\t\"kab\",\n\t\"kaj\",\n\t\"kam\",\n\t\"kcg\",\n\t\"kde\",\n\t\"kea\",\n\t\"kek\",\n\t\"ken\",\n\t\"kgp\",\n\t\"khq\",\n\t\"ki\",\n\t\"kk\",\n\t\"kk-Arab\",\n\t\"kk-Cyrl\",\n\t\"kk-KZ\",\n\t\"kkj\",\n\t\"kl\",\n\t\"kln\",\n\t\"km\",\n\t\"kn\",\n\t\"ko\",\n\t\"ko-CN\",\n\t\"ko-KP\",\n\t\"kok\",\n\t\"kok-Deva\",\n\t\"kok-Latn\",\n\t\"kpe\",\n\t\"kpe-GN\",\n\t\"ks\",\n\t\"ks-Arab\",\n\t\"ks-Deva\",\n\t\"ksb\",\n\t\"ksf\",\n\t\"ksh\",\n\t\"ku\",\n\t\"ku-Arab\",\n\t\"ku-Arab-IR\",\n\t\"ku-Latn\",\n\t\"ku-Latn-IQ\",\n\t\"ku-Latn-SY\",\n\t\"ku-TR\",\n\t\"kw\",\n\t\"kxv\",\n\t\"kxv-Deva\",\n\t\"kxv-Latn\",\n\t\"kxv-Orya\",\n\t\"kxv-Telu\",\n\t\"ky\",\n\t\"la\",\n\t\"lag\",\n\t\"lb\",\n\t\"lg\",\n\t\"lij\",\n\t\"lkt\",\n\t\"lld\",\n\t\"lmo\",\n\t\"ln\",\n\t\"ln-AO\",\n\t\"ln-CF\",\n\t\"ln-CG\",\n\t\"lo\",\n\t\"lrc\",\n\t\"lrc-IQ\",\n\t\"lt\",\n\t\"ltg\",\n\t\"lu\",\n\t\"luo\",\n\t\"luy\",\n\t\"lv\",\n\t\"lzz\",\n\t\"mai\",\n\t\"mas\",\n\t\"mas-TZ\",\n\t\"mdf\",\n\t\"mer\",\n\t\"mfe\",\n\t\"mg\",\n\t\"mgh\",\n\t\"mgo\",\n\t\"mhn\",\n\t\"mi\",\n\t\"mic\",\n\t\"mk\",\n\t\"ml\",\n\t\"mn\",\n\t\"mn-Mong\",\n\t\"mn-Mong-MN\",\n\t\"mni\",\n\t\"mni-Beng\",\n\t\"mni-Mtei\",\n\t\"moh\",\n\t\"mr\",\n\t\"ms\",\n\t\"ms-Arab\",\n\t\"ms-Arab-BN\",\n\t\"ms-BN\",\n\t\"ms-ID\",\n\t\"ms-SG\",\n\t\"mt\",\n\t\"mua\",\n\t\"mus\",\n\t\"mww\",\n\t\"mww-Hmnp\",\n\t\"my\",\n\t\"myv\",\n\t\"mzn\",\n\t\"naq\",\n\t\"nb\",\n\t\"nb-SJ\",\n\t\"nd\",\n\t\"nds\",\n\t\"nds-NL\",\n\t\"ne\",\n\t\"ne-IN\",\n\t\"nl\",\n\t\"nl-AW\",\n\t\"nl-BE\",\n\t\"nl-BQ\",\n\t\"nl-CW\",\n\t\"nl-SR\",\n\t\"nl-SX\",\n\t\"nmg\",\n\t\"nn\",\n\t\"nnh\",\n\t\"no\",\n\t\"nqo\",\n\t\"nr\",\n\t\"nso\",\n\t\"nus\",\n\t\"nv\",\n\t\"ny\",\n\t\"nyn\",\n\t\"oc\",\n\t\"oc-ES\",\n\t\"oka\",\n\t\"oka-US\",\n\t\"om\",\n\t\"om-KE\",\n\t\"or\",\n\t\"os\",\n\t\"os-RU\",\n\t\"osa\",\n\t\"pa\",\n\t\"pa-Arab\",\n\t\"pa-Guru\",\n\t\"pap\",\n\t\"pap-AW\",\n\t\"pcm\",\n\t\"pi\",\n\t\"pi-Latn\",\n\t\"pis\",\n\t\"pl\",\n\t\"pms\",\n\t\"prg\",\n\t\"ps\",\n\t\"ps-PK\",\n\t\"pt\",\n\t\"pt-AO\",\n\t\"pt-CH\",\n\t\"pt-CV\",\n\t\"pt-GQ\",\n\t\"pt-GW\",\n\t\"pt-LU\",\n\t\"pt-MO\",\n\t\"pt-MZ\",\n\t\"pt-PT\",\n\t\"pt-ST\",\n\t\"pt-TL\",\n\t\"qu\",\n\t\"qu-BO\",\n\t\"qu-EC\",\n\t\"quc\",\n\t\"raj\",\n\t\"rhg\",\n\t\"rhg-Rohg\",\n\t\"rhg-Rohg-BD\",\n\t\"rif\",\n\t\"rm\",\n\t\"rn\",\n\t\"ro\",\n\t\"ro-MD\",\n\t\"rof\",\n\t\"ru\",\n\t\"ru-BY\",\n\t\"ru-KG\",\n\t\"ru-KZ\",\n\t\"ru-MD\",\n\t\"ru-UA\",\n\t\"rw\",\n\t\"rwk\",\n\t\"sa\",\n\t\"sah\",\n\t\"saq\",\n\t\"sat\",\n\t\"sat-Deva\",\n\t\"sat-Olck\",\n\t\"sbp\",\n\t\"sc\",\n\t\"scn\",\n\t\"sd\",\n\t\"sd-Arab\",\n\t\"sd-Deva\",\n\t\"sdh\",\n\t\"sdh-IQ\",\n\t\"se\",\n\t\"se-FI\",\n\t\"se-SE\",\n\t\"seh\",\n\t\"ses\",\n\t\"sg\",\n\t\"sgs\",\n\t\"shi\",\n\t\"shi-Latn\",\n\t\"shi-Tfng\",\n\t\"shn\",\n\t\"shn-TH\",\n\t\"si\",\n\t\"sid\",\n\t\"sk\",\n\t\"skr\",\n\t\"sl\",\n\t\"sma\",\n\t\"sma-NO\",\n\t\"smj\",\n\t\"smj-NO\",\n\t\"smn\",\n\t\"sms\",\n\t\"sn\",\n\t\"so\",\n\t\"so-DJ\",\n\t\"so-ET\",\n\t\"so-KE\",\n\t\"sq\",\n\t\"sq-MK\",\n\t\"sq-XK\",\n\t\"sr\",\n\t\"sr-Cyrl\",\n\t\"sr-Cyrl-BA\",\n\t\"sr-Cyrl-ME\",\n\t\"sr-Cyrl-XK\",\n\t\"sr-Latn\",\n\t\"sr-Latn-BA\",\n\t\"sr-Latn-ME\",\n\t\"sr-Latn-XK\",\n\t\"ss\",\n\t\"ss-SZ\",\n\t\"ssy\",\n\t\"st\",\n\t\"st-LS\",\n\t\"su\",\n\t\"su-Latn\",\n\t\"suz\",\n\t\"suz-Deva\",\n\t\"suz-Sunu\",\n\t\"sv\",\n\t\"sv-AX\",\n\t\"sv-FI\",\n\t\"sw\",\n\t\"sw-CD\",\n\t\"sw-KE\",\n\t\"sw-UG\",\n\t\"syr\",\n\t\"syr-SY\",\n\t\"szl\",\n\t\"ta\",\n\t\"ta-LK\",\n\t\"ta-MY\",\n\t\"ta-SG\",\n\t\"te\",\n\t\"teo\",\n\t\"teo-KE\",\n\t\"tg\",\n\t\"th\",\n\t\"ti\",\n\t\"ti-ER\",\n\t\"tig\",\n\t\"tk\",\n\t\"tn\",\n\t\"tn-BW\",\n\t\"to\",\n\t\"tok\",\n\t\"tpi\",\n\t\"tr\",\n\t\"tr-CY\",\n\t\"trv\",\n\t\"trw\",\n\t\"ts\",\n\t\"tt\",\n\t\"twq\",\n\t\"tyv\",\n\t\"tzm\",\n\t\"ug\",\n\t\"uk\",\n\t\"und\",\n\t\"ur\",\n\t\"ur-IN\",\n\t\"uz\",\n\t\"uz-Arab\",\n\t\"uz-Cyrl\",\n\t\"uz-Latn\",\n\t\"vai\",\n\t\"vai-Latn\",\n\t\"vai-Vaii\",\n\t\"ve\",\n\t\"vec\",\n\t\"vi\",\n\t\"vmw\",\n\t\"vo\",\n\t\"vun\",\n\t\"wa\",\n\t\"wae\",\n\t\"wal\",\n\t\"wbp\",\n\t\"wo\",\n\t\"xh\",\n\t\"xnr\",\n\t\"xog\",\n\t\"yav\",\n\t\"yi\",\n\t\"yo\",\n\t\"yo-BJ\",\n\t\"yrl\",\n\t\"yrl-CO\",\n\t\"yrl-VE\",\n\t\"yue\",\n\t\"yue-Hans\",\n\t\"yue-Hant\",\n\t\"yue-Hant-CN\",\n\t\"yue-Hant-MO\",\n\t\"za\",\n\t\"zgh\",\n\t\"zh\",\n\t\"zh-Hans\",\n\t\"zh-Hans-HK\",\n\t\"zh-Hans-MO\",\n\t\"zh-Hans-MY\",\n\t\"zh-Hans-SG\",\n\t\"zh-Hant\",\n\t\"zh-Hant-HK\",\n\t\"zh-Hant-MO\",\n\t\"zh-Hant-MY\",\n\t\"zh-Latn\",\n\t\"zu\"\n];\n","import {match} from '@formatjs/intl-localematcher'\nimport {supportedLocales} from '@formatjs_generated/cldr.supported-locales/intl-listformat.js'\n\nfunction supportedLocalesOf(locale?: string | string[]) {\n if (!locale) {\n return true\n }\n const locales = Array.isArray(locale) ? locale : [locale]\n return (\n (Intl as any).ListFormat.supportedLocalesOf(locales).length ===\n locales.length\n )\n}\n\nexport function shouldPolyfill(locale = 'en'): string | undefined {\n if (\n typeof Intl === 'undefined' ||\n !('ListFormat' in Intl) ||\n !supportedLocalesOf(locale)\n ) {\n return locale ? match([locale], supportedLocales, 'en') : undefined\n }\n}\n","import ListFormat from '#packages/intl-listformat/index.js'\nimport {shouldPolyfill} from '#packages/intl-listformat/should-polyfill.js'\nimport {defineProperty, ensureIntl} from '#packages/ecma402-abstract/utils.js'\n\nconst intl = ensureIntl()\n\nif (shouldPolyfill()) {\n defineProperty(intl, 'ListFormat', {value: ListFormat})\n\n // Drain any locale data that was buffered before polyfill loaded\n const buf = (globalThis as Record<string, unknown>)\n .__FORMATJS_LISTFORMAT_DATA__ as\n | Parameters<(typeof ListFormat)['__addLocaleData']>[0][]\n | undefined\n if (buf) {\n for (const d of buf) ListFormat.__addLocaleData(d)\n delete (globalThis as Record<string, unknown>).__FORMATJS_LISTFORMAT_DATA__\n }\n}\n"],"x_google_ignoreList":[4,10],"mappings":"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CZ,SACA,SACU;EAEV,OAAO,iBACL,WAAW,kBACX,uBAAuB,OAAO,GAC9B,OACF;CACF;CAEA,OAAc,gBAAgB,GAAG,MAAqC;EACpE,KAAK,MAAM,EAAC,MAAM,GAAG,YAAW,MAAM;GACpC,MAAM,kBAAkB,IAAK,KAAa,OAAO,MAAM,CAAC,CACrD,SAAS,CAAC,CACV,SAAS;GACZ,WAAW,WAAW,UAAU,WAAW,WAAW,mBAAmB;GACzE,WAAW,iBAAiB,IAAI,eAAe;GAC/C,WAAW,iBAAiB,IAAI,MAAM;GACtC,IAAI,CAAC,WAAW,iBACd,WAAW,kBAAkB;EAEjC;CACF;;oBACuE,CAAC;;;0CACtC,IAAI,IAAY;;;yBACjB;;CACjC,OAAe,mBAAmB;EAChC,OAAO,WAAW;CACpB;;+BACuC,CAAC;;;oBACb;;;+CACqB,IAAI,QAGlD;;AACJ;AAEA,IAAI;CAEF,IAAI,OAAO,WAAW,aACpB,OAAO,eAAe,WAAW,WAAW,OAAO,aAAa;EAC9D,OAAO;EACP,UAAU;EACV,YAAY;EACZ,cAAc;CAChB,CAAC;CAIH,OAAO,eAAe,WAAW,UAAU,aAAa,UAAU;EAChE,OAAO;EACP,UAAU;EACV,YAAY;EACZ,cAAc;CAChB,CAAC;CAED,OAAO,eAAe,WAAW,oBAAoB,UAAU;EAC7D,OAAO;EACP,UAAU;EACV,YAAY;EACZ,cAAc;CAChB,CAAC;AACH,QAAQ,CAER;;;AC3XA,MAAa,mBAAmB;CAC/B;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;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;;;AC5vBA,SAAS,mBAAmB,QAA4B;CACtD,IAAI,CAAC,QACH,OAAO;CAET,MAAM,UAAU,MAAM,QAAQ,MAAM,IAAI,SAAS,CAAC,MAAM;CACxD,OACG,KAAa,WAAW,mBAAmB,OAAO,CAAC,CAAC,WACrD,QAAQ;AAEZ;AAEA,SAAgB,eAAe,SAAS,MAA0B;CAChE,IACE,OAAO,SAAS,eAChB,EAAE,gBAAgB,SAClB,CAAC,mBAAmB,MAAM,GAE1B,OAAO,SAAS,MAAM,CAAC,MAAM,GAAG,kBAAkB,IAAI,IAAI,KAAA;AAE9D;;;AClBA,MAAM,OAAO,WAAW;AAExB,IAAI,eAAe,GAAG;CACpB,eAAe,MAAM,cAAc,EAAC,OAAO,WAAU,CAAC;CAGtD,MAAM,MAAO,WACV;CAGH,IAAI,KAAK;EACP,KAAK,MAAM,KAAK,KAAK,WAAW,gBAAgB,CAAC;EACjD,OAAQ,WAAuC;CACjD;AACF"}
1
+ {"version":3,"file":"polyfill.js","names":[],"sources":["../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-locales@0.0.0/node_modules/@formatjs_generated/cldr.supported-locales/default-content.js","../../ecma402-abstract/registerLocaleData.js","../../ecma402-abstract/CanonicalizeLocaleList.js","../../ecma262-abstract/ToString.js","../../ecma402-abstract/GetOption.js","../../ecma402-abstract/GetOptionsObject.js","../../../node_modules/.aspect_rules_js/@formatjs+fast-memoize@0.0.0/node_modules/@formatjs/fast-memoize/index.js","../../ecma402-abstract/utils.js","../../ecma402-abstract/PartitionPattern.js","../../ecma262-abstract/ToObject.js","../../ecma402-abstract/SupportedLocales.js","../index.ts","../../../node_modules/.aspect_rules_js/@formatjs_generated+cldr.supported-locales@0.0.0/node_modules/@formatjs_generated/cldr.supported-locales/intl-listformat.js","../should-polyfill.ts","../polyfill.ts"],"sourcesContent":["export const defaultContent = {\n\t\"aa\": [\"aa-ET\"],\n\t\"ab\": [\"ab-GE\"],\n\t\"af\": [\"af-ZA\"],\n\t\"agq\": [\"agq-CM\"],\n\t\"ak\": [\"ak-GH\"],\n\t\"am\": [\"am-ET\"],\n\t\"an\": [\"an-ES\"],\n\t\"ann\": [\"ann-NG\"],\n\t\"apc\": [\"apc-SY\"],\n\t\"ar\": [\"ar-001\"],\n\t\"arn\": [\"arn-CL\"],\n\t\"as\": [\"as-IN\"],\n\t\"asa\": [\"asa-TZ\"],\n\t\"ast\": [\"ast-ES\"],\n\t\"az-Arab\": [\"az-Arab-IR\"],\n\t\"az-Cyrl\": [\"az-Cyrl-AZ\"],\n\t\"az-Latn\": [\"az-Latn-AZ\"],\n\t\"ba\": [\"ba-RU\"],\n\t\"bal-Arab\": [\"bal-Arab-PK\"],\n\t\"bal-Latn\": [\"bal-Latn-PK\"],\n\t\"bas\": [\"bas-CM\"],\n\t\"be\": [\"be-BY\"],\n\t\"bem\": [\"bem-ZM\"],\n\t\"bew\": [\"bew-ID\"],\n\t\"bez\": [\"bez-TZ\"],\n\t\"bg\": [\"bg-BG\"],\n\t\"bgc\": [\"bgc-IN\"],\n\t\"bgn\": [\"bgn-PK\"],\n\t\"bho\": [\"bho-IN\"],\n\t\"blo\": [\"blo-BJ\"],\n\t\"blt\": [\"blt-VN\"],\n\t\"bm\": [\"bm-ML\"],\n\t\"bm-Nkoo\": [\"bm-Nkoo-ML\"],\n\t\"bn\": [\"bn-BD\"],\n\t\"bo\": [\"bo-CN\"],\n\t\"bqi\": [\"bqi-IR\"],\n\t\"br\": [\"br-FR\"],\n\t\"brx\": [\"brx-IN\"],\n\t\"bs-Cyrl\": [\"bs-Cyrl-BA\"],\n\t\"bs-Latn\": [\"bs-Latn-BA\"],\n\t\"bss\": [\"bss-CM\"],\n\t\"bua\": [\"bua-RU\"],\n\t\"byn\": [\"byn-ER\"],\n\t\"ca\": [\"ca-ES\"],\n\t\"cad\": [\"cad-US\"],\n\t\"cch\": [\"cch-NG\"],\n\t\"ccp\": [\"ccp-BD\"],\n\t\"ce\": [\"ce-RU\"],\n\t\"ceb\": [\"ceb-PH\"],\n\t\"cgg\": [\"cgg-UG\"],\n\t\"cho\": [\"cho-US\"],\n\t\"chr\": [\"chr-US\"],\n\t\"cic\": [\"cic-US\"],\n\t\"ckb\": [\"ckb-IQ\"],\n\t\"co\": [\"co-FR\"],\n\t\"cop\": [\"cop-EG\"],\n\t\"cs\": [\"cs-CZ\"],\n\t\"csw\": [\"csw-CA\"],\n\t\"cu\": [\"cu-RU\"],\n\t\"cv\": [\"cv-RU\"],\n\t\"cy\": [\"cy-GB\"],\n\t\"da\": [\"da-DK\"],\n\t\"dav\": [\"dav-KE\"],\n\t\"de\": [\"de-DE\"],\n\t\"dje\": [\"dje-NE\"],\n\t\"doi\": [\"doi-IN\"],\n\t\"dsb\": [\"dsb-DE\"],\n\t\"dua\": [\"dua-CM\"],\n\t\"dv\": [\"dv-MV\"],\n\t\"dyo\": [\"dyo-SN\"],\n\t\"dz\": [\"dz-BT\"],\n\t\"ebu\": [\"ebu-KE\"],\n\t\"ee\": [\"ee-GH\"],\n\t\"el\": [\"el-GR\"],\n\t\"en-Dsrt\": [\"en-Dsrt-US\"],\n\t\"en-Shaw\": [\"en-Shaw-GB\"],\n\t\"en\": [\"en-US\"],\n\t\"eo\": [\"eo-001\"],\n\t\"es\": [\"es-ES\"],\n\t\"et\": [\"et-EE\"],\n\t\"eu\": [\"eu-ES\"],\n\t\"ewo\": [\"ewo-CM\"],\n\t\"fa\": [\"fa-IR\"],\n\t\"ff-Adlm\": [\"ff-Adlm-GN\"],\n\t\"ff-Latn\": [\"ff-Latn-SN\"],\n\t\"fi\": [\"fi-FI\"],\n\t\"fil\": [\"fil-PH\"],\n\t\"fo\": [\"fo-FO\"],\n\t\"fr\": [\"fr-FR\"],\n\t\"frr\": [\"frr-DE\"],\n\t\"fur\": [\"fur-IT\"],\n\t\"fy\": [\"fy-NL\"],\n\t\"ga\": [\"ga-IE\"],\n\t\"gaa\": [\"gaa-GH\"],\n\t\"gd\": [\"gd-GB\"],\n\t\"gez\": [\"gez-ET\"],\n\t\"gl\": [\"gl-ES\"],\n\t\"gn\": [\"gn-PY\"],\n\t\"gsw\": [\"gsw-CH\"],\n\t\"gu\": [\"gu-IN\"],\n\t\"guz\": [\"guz-KE\"],\n\t\"gv\": [\"gv-IM\"],\n\t\"ha-Arab\": [\"ha-Arab-NG\"],\n\t\"ha\": [\"ha-NG\"],\n\t\"haw\": [\"haw-US\"],\n\t\"he\": [\"he-IL\"],\n\t\"hi\": [\"hi-IN\"],\n\t\"hi-Latn\": [\"hi-Latn-IN\"],\n\t\"hnj-Hmnp\": [\"hnj-Hmnp-US\"],\n\t\"hr\": [\"hr-HR\"],\n\t\"hsb\": [\"hsb-DE\"],\n\t\"ht\": [\"ht-HT\"],\n\t\"hu\": [\"hu-HU\"],\n\t\"hy\": [\"hy-AM\"],\n\t\"ia\": [\"ia-001\"],\n\t\"id\": [\"id-ID\"],\n\t\"ie\": [\"ie-EE\"],\n\t\"ig\": [\"ig-NG\"],\n\t\"ii\": [\"ii-CN\"],\n\t\"io\": [\"io-001\"],\n\t\"is\": [\"is-IS\"],\n\t\"it\": [\"it-IT\"],\n\t\"iu\": [\"iu-CA\"],\n\t\"iu-Latn\": [\"iu-Latn-CA\"],\n\t\"ja\": [\"ja-JP\"],\n\t\"jbo\": [\"jbo-001\"],\n\t\"jgo\": [\"jgo-CM\"],\n\t\"jmc\": [\"jmc-TZ\"],\n\t\"jv\": [\"jv-ID\"],\n\t\"ka\": [\"ka-GE\"],\n\t\"kaa-Cyrl\": [\"kaa-Cyrl-UZ\"],\n\t\"kaa-Latn\": [\"kaa-Latn-UZ\"],\n\t\"kab\": [\"kab-DZ\"],\n\t\"kaj\": [\"kaj-NG\"],\n\t\"kam\": [\"kam-KE\"],\n\t\"kcg\": [\"kcg-NG\"],\n\t\"kde\": [\"kde-TZ\"],\n\t\"kea\": [\"kea-CV\"],\n\t\"kek\": [\"kek-GT\"],\n\t\"ken\": [\"ken-CM\"],\n\t\"kgp\": [\"kgp-BR\"],\n\t\"khq\": [\"khq-ML\"],\n\t\"ki\": [\"ki-KE\"],\n\t\"kk-Arab\": [\"kk-Arab-CN\"],\n\t\"kk-Cyrl\": [\"kk-Cyrl-KZ\"],\n\t\"kkj\": [\"kkj-CM\"],\n\t\"kl\": [\"kl-GL\"],\n\t\"kln\": [\"kln-KE\"],\n\t\"km\": [\"km-KH\"],\n\t\"kn\": [\"kn-IN\"],\n\t\"ko\": [\"ko-KR\"],\n\t\"kok-Deva\": [\"kok-Deva-IN\"],\n\t\"kok-Latn\": [\"kok-Latn-IN\"],\n\t\"kpe\": [\"kpe-LR\"],\n\t\"ks-Arab\": [\"ks-Arab-IN\"],\n\t\"ks-Deva\": [\"ks-Deva-IN\"],\n\t\"ksb\": [\"ksb-TZ\"],\n\t\"ksf\": [\"ksf-CM\"],\n\t\"ksh\": [\"ksh-DE\"],\n\t\"ku-Arab\": [\"ku-Arab-IQ\"],\n\t\"ku-Latn\": [\"ku-Latn-TR\"],\n\t\"kw\": [\"kw-GB\"],\n\t\"kxv-Deva\": [\"kxv-Deva-IN\"],\n\t\"kxv-Latn\": [\"kxv-Latn-IN\"],\n\t\"kxv-Orya\": [\"kxv-Orya-IN\"],\n\t\"kxv-Telu\": [\"kxv-Telu-IN\"],\n\t\"ky\": [\"ky-KG\"],\n\t\"la\": [\"la-VA\"],\n\t\"lag\": [\"lag-TZ\"],\n\t\"lb\": [\"lb-LU\"],\n\t\"lg\": [\"lg-UG\"],\n\t\"lij\": [\"lij-IT\"],\n\t\"lkt\": [\"lkt-US\"],\n\t\"lld\": [\"lld-IT\"],\n\t\"lmo\": [\"lmo-IT\"],\n\t\"ln\": [\"ln-CD\"],\n\t\"lo\": [\"lo-LA\"],\n\t\"lrc\": [\"lrc-IR\"],\n\t\"lt\": [\"lt-LT\"],\n\t\"ltg\": [\"ltg-LV\"],\n\t\"lu\": [\"lu-CD\"],\n\t\"luo\": [\"luo-KE\"],\n\t\"luy\": [\"luy-KE\"],\n\t\"lv\": [\"lv-LV\"],\n\t\"lzz\": [\"lzz-TR\"],\n\t\"mai\": [\"mai-IN\"],\n\t\"mas\": [\"mas-KE\"],\n\t\"mdf\": [\"mdf-RU\"],\n\t\"mer\": [\"mer-KE\"],\n\t\"mfe\": [\"mfe-MU\"],\n\t\"mg\": [\"mg-MG\"],\n\t\"mgh\": [\"mgh-MZ\"],\n\t\"mgo\": [\"mgo-CM\"],\n\t\"mhn\": [\"mhn-IT\"],\n\t\"mi\": [\"mi-NZ\"],\n\t\"mic\": [\"mic-CA\"],\n\t\"mk\": [\"mk-MK\"],\n\t\"ml\": [\"ml-IN\"],\n\t\"mn\": [\"mn-MN\"],\n\t\"mn-Mong\": [\"mn-Mong-CN\"],\n\t\"mni-Beng\": [\"mni-Beng-IN\"],\n\t\"mni-Mtei\": [\"mni-Mtei-IN\"],\n\t\"moh\": [\"moh-CA\"],\n\t\"mr\": [\"mr-IN\"],\n\t\"ms-Arab\": [\"ms-Arab-MY\"],\n\t\"ms\": [\"ms-MY\"],\n\t\"mt\": [\"mt-MT\"],\n\t\"mua\": [\"mua-CM\"],\n\t\"mus\": [\"mus-US\"],\n\t\"mww-Hmnp\": [\"mww-Hmnp-US\"],\n\t\"my\": [\"my-MM\"],\n\t\"myv\": [\"myv-RU\"],\n\t\"mzn\": [\"mzn-IR\"],\n\t\"naq\": [\"naq-NA\"],\n\t\"nb\": [\"nb-NO\"],\n\t\"nd\": [\"nd-ZW\"],\n\t\"nds\": [\"nds-DE\"],\n\t\"ne\": [\"ne-NP\"],\n\t\"nl\": [\"nl-NL\"],\n\t\"nmg\": [\"nmg-CM\"],\n\t\"nn\": [\"nn-NO\"],\n\t\"nnh\": [\"nnh-CM\"],\n\t\"nqo\": [\"nqo-GN\"],\n\t\"nr\": [\"nr-ZA\"],\n\t\"nso\": [\"nso-ZA\"],\n\t\"nus\": [\"nus-SS\"],\n\t\"nv\": [\"nv-US\"],\n\t\"ny\": [\"ny-MW\"],\n\t\"nyn\": [\"nyn-UG\"],\n\t\"oc\": [\"oc-FR\"],\n\t\"oka\": [\"oka-CA\"],\n\t\"om\": [\"om-ET\"],\n\t\"or\": [\"or-IN\"],\n\t\"os\": [\"os-GE\"],\n\t\"osa\": [\"osa-US\"],\n\t\"pa-Arab\": [\"pa-Arab-PK\"],\n\t\"pa-Guru\": [\"pa-Guru-IN\"],\n\t\"pap\": [\"pap-CW\"],\n\t\"pcm\": [\"pcm-NG\"],\n\t\"pi-Latn\": [\"pi-Latn-GB\"],\n\t\"pis\": [\"pis-SB\"],\n\t\"pl\": [\"pl-PL\"],\n\t\"pms\": [\"pms-IT\"],\n\t\"prg\": [\"prg-PL\"],\n\t\"ps\": [\"ps-AF\"],\n\t\"pt\": [\"pt-BR\"],\n\t\"qu\": [\"qu-PE\"],\n\t\"quc\": [\"quc-GT\"],\n\t\"raj\": [\"raj-IN\"],\n\t\"rhg-Rohg\": [\"rhg-Rohg-MM\"],\n\t\"rif\": [\"rif-MA\"],\n\t\"rm\": [\"rm-CH\"],\n\t\"rn\": [\"rn-BI\"],\n\t\"ro\": [\"ro-RO\"],\n\t\"rof\": [\"rof-TZ\"],\n\t\"ru\": [\"ru-RU\"],\n\t\"rw\": [\"rw-RW\"],\n\t\"rwk\": [\"rwk-TZ\"],\n\t\"sa\": [\"sa-IN\"],\n\t\"sah\": [\"sah-RU\"],\n\t\"saq\": [\"saq-KE\"],\n\t\"sat-Deva\": [\"sat-Deva-IN\"],\n\t\"sat-Olck\": [\"sat-Olck-IN\"],\n\t\"sbp\": [\"sbp-TZ\"],\n\t\"sc\": [\"sc-IT\"],\n\t\"scn\": [\"scn-IT\"],\n\t\"sd-Arab\": [\"sd-Arab-PK\"],\n\t\"sd-Deva\": [\"sd-Deva-IN\"],\n\t\"sdh\": [\"sdh-IR\"],\n\t\"se\": [\"se-NO\"],\n\t\"seh\": [\"seh-MZ\"],\n\t\"ses\": [\"ses-ML\"],\n\t\"sg\": [\"sg-CF\"],\n\t\"sgs\": [\"sgs-LT\"],\n\t\"shi-Latn\": [\"shi-Latn-MA\"],\n\t\"shi-Tfng\": [\"shi-Tfng-MA\"],\n\t\"shn\": [\"shn-MM\"],\n\t\"si\": [\"si-LK\"],\n\t\"sid\": [\"sid-ET\"],\n\t\"sk\": [\"sk-SK\"],\n\t\"skr\": [\"skr-PK\"],\n\t\"sl\": [\"sl-SI\"],\n\t\"sma\": [\"sma-SE\"],\n\t\"smj\": [\"smj-SE\"],\n\t\"smn\": [\"smn-FI\"],\n\t\"sms\": [\"sms-FI\"],\n\t\"sn\": [\"sn-ZW\"],\n\t\"so\": [\"so-SO\"],\n\t\"sq\": [\"sq-AL\"],\n\t\"sr-Cyrl\": [\"sr-Cyrl-RS\"],\n\t\"sr-Latn\": [\"sr-Latn-RS\"],\n\t\"ss\": [\"ss-ZA\"],\n\t\"ssy\": [\"ssy-ER\"],\n\t\"st\": [\"st-ZA\"],\n\t\"su-Latn\": [\"su-Latn-ID\"],\n\t\"suz-Deva\": [\"suz-Deva-NP\"],\n\t\"suz-Sunu\": [\"suz-Sunu-NP\"],\n\t\"sv\": [\"sv-SE\"],\n\t\"sw\": [\"sw-TZ\"],\n\t\"syr\": [\"syr-IQ\"],\n\t\"szl\": [\"szl-PL\"],\n\t\"ta\": [\"ta-IN\"],\n\t\"te\": [\"te-IN\"],\n\t\"teo\": [\"teo-UG\"],\n\t\"tg\": [\"tg-TJ\"],\n\t\"th\": [\"th-TH\"],\n\t\"ti\": [\"ti-ET\"],\n\t\"tig\": [\"tig-ER\"],\n\t\"tk\": [\"tk-TM\"],\n\t\"tn\": [\"tn-ZA\"],\n\t\"to\": [\"to-TO\"],\n\t\"tok\": [\"tok-001\"],\n\t\"tpi\": [\"tpi-PG\"],\n\t\"tr\": [\"tr-TR\"],\n\t\"trv\": [\"trv-TW\"],\n\t\"trw\": [\"trw-PK\"],\n\t\"ts\": [\"ts-ZA\"],\n\t\"tt\": [\"tt-RU\"],\n\t\"twq\": [\"twq-NE\"],\n\t\"tyv\": [\"tyv-RU\"],\n\t\"tzm\": [\"tzm-MA\"],\n\t\"ug\": [\"ug-CN\"],\n\t\"uk\": [\"uk-UA\"],\n\t\"ur\": [\"ur-PK\"],\n\t\"uz-Arab\": [\"uz-Arab-AF\"],\n\t\"uz-Cyrl\": [\"uz-Cyrl-UZ\"],\n\t\"uz-Latn\": [\"uz-Latn-UZ\"],\n\t\"vai-Latn\": [\"vai-Latn-LR\"],\n\t\"vai-Vaii\": [\"vai-Vaii-LR\"],\n\t\"ve\": [\"ve-ZA\"],\n\t\"vec\": [\"vec-IT\"],\n\t\"vi\": [\"vi-VN\"],\n\t\"vmw\": [\"vmw-MZ\"],\n\t\"vo\": [\"vo-001\"],\n\t\"vun\": [\"vun-TZ\"],\n\t\"wa\": [\"wa-BE\"],\n\t\"wae\": [\"wae-CH\"],\n\t\"wal\": [\"wal-ET\"],\n\t\"wbp\": [\"wbp-AU\"],\n\t\"wo\": [\"wo-SN\"],\n\t\"xh\": [\"xh-ZA\"],\n\t\"xnr\": [\"xnr-IN\"],\n\t\"xog\": [\"xog-UG\"],\n\t\"yav\": [\"yav-CM\"],\n\t\"yi\": [\"yi-UA\"],\n\t\"yo\": [\"yo-NG\"],\n\t\"yrl\": [\"yrl-BR\"],\n\t\"yue-Hans\": [\"yue-Hans-CN\"],\n\t\"yue-Hant\": [\"yue-Hant-HK\"],\n\t\"za\": [\"za-CN\"],\n\t\"zgh\": [\"zgh-MA\"],\n\t\"zh-Hans\": [\"zh-Hans-CN\"],\n\t\"zh-Hant\": [\"zh-Hant-TW\"],\n\t\"zh-Latn\": [\"zh-Latn-CN\"],\n\t\"zu\": [\"zu-ZA\"]\n};\nexport const availableLocales = [\n\t\"aa\",\n\t\"aa-DJ\",\n\t\"aa-ER\",\n\t\"aa-ET\",\n\t\"ab\",\n\t\"ab-GE\",\n\t\"af\",\n\t\"af-NA\",\n\t\"af-ZA\",\n\t\"agq\",\n\t\"agq-CM\",\n\t\"ak\",\n\t\"ak-GH\",\n\t\"am\",\n\t\"am-ET\",\n\t\"an\",\n\t\"an-ES\",\n\t\"ann\",\n\t\"ann-NG\",\n\t\"apc\",\n\t\"apc-SY\",\n\t\"ar\",\n\t\"ar-001\",\n\t\"ar-AE\",\n\t\"ar-BH\",\n\t\"ar-DJ\",\n\t\"ar-DZ\",\n\t\"ar-EG\",\n\t\"ar-EH\",\n\t\"ar-ER\",\n\t\"ar-IL\",\n\t\"ar-IQ\",\n\t\"ar-JO\",\n\t\"ar-KM\",\n\t\"ar-KW\",\n\t\"ar-LB\",\n\t\"ar-LY\",\n\t\"ar-MA\",\n\t\"ar-MR\",\n\t\"ar-OM\",\n\t\"ar-PS\",\n\t\"ar-QA\",\n\t\"ar-SA\",\n\t\"ar-SD\",\n\t\"ar-SO\",\n\t\"ar-SS\",\n\t\"ar-SY\",\n\t\"ar-TD\",\n\t\"ar-TN\",\n\t\"ar-YE\",\n\t\"arn\",\n\t\"arn-CL\",\n\t\"as\",\n\t\"as-IN\",\n\t\"asa\",\n\t\"asa-TZ\",\n\t\"ast\",\n\t\"ast-ES\",\n\t\"az\",\n\t\"az-AZ\",\n\t\"az-Arab\",\n\t\"az-Arab-IQ\",\n\t\"az-Arab-IR\",\n\t\"az-Arab-TR\",\n\t\"az-Cyrl\",\n\t\"az-Cyrl-AZ\",\n\t\"az-IQ\",\n\t\"az-IR\",\n\t\"az-Latn\",\n\t\"az-Latn-AZ\",\n\t\"az-TR\",\n\t\"ba\",\n\t\"ba-RU\",\n\t\"bal\",\n\t\"bal-Arab\",\n\t\"bal-Arab-PK\",\n\t\"bal-Latn\",\n\t\"bal-Latn-PK\",\n\t\"bal-PK\",\n\t\"bas\",\n\t\"bas-CM\",\n\t\"be\",\n\t\"be-BY\",\n\t\"be-tarask\",\n\t\"bem\",\n\t\"bem-ZM\",\n\t\"bew\",\n\t\"bew-ID\",\n\t\"bez\",\n\t\"bez-TZ\",\n\t\"bg\",\n\t\"bg-BG\",\n\t\"bgc\",\n\t\"bgc-IN\",\n\t\"bgn\",\n\t\"bgn-AE\",\n\t\"bgn-AF\",\n\t\"bgn-IR\",\n\t\"bgn-OM\",\n\t\"bgn-PK\",\n\t\"bho\",\n\t\"bho-IN\",\n\t\"blo\",\n\t\"blo-BJ\",\n\t\"blt\",\n\t\"blt-VN\",\n\t\"bm\",\n\t\"bm-ML\",\n\t\"bm-Nkoo\",\n\t\"bm-Nkoo-ML\",\n\t\"bn\",\n\t\"bn-BD\",\n\t\"bn-IN\",\n\t\"bo\",\n\t\"bo-CN\",\n\t\"bo-IN\",\n\t\"bqi\",\n\t\"bqi-IR\",\n\t\"br\",\n\t\"br-FR\",\n\t\"brx\",\n\t\"brx-IN\",\n\t\"bs\",\n\t\"bs-BA\",\n\t\"bs-Cyrl\",\n\t\"bs-Cyrl-BA\",\n\t\"bs-Latn\",\n\t\"bs-Latn-BA\",\n\t\"bss\",\n\t\"bss-CM\",\n\t\"bua\",\n\t\"bua-RU\",\n\t\"byn\",\n\t\"byn-ER\",\n\t\"ca\",\n\t\"ca-AD\",\n\t\"ca-ES\",\n\t\"ca-ES-valencia\",\n\t\"ca-FR\",\n\t\"ca-IT\",\n\t\"cad\",\n\t\"cad-US\",\n\t\"cch\",\n\t\"cch-NG\",\n\t\"ccp\",\n\t\"ccp-BD\",\n\t\"ccp-IN\",\n\t\"ce\",\n\t\"ce-RU\",\n\t\"ceb\",\n\t\"ceb-PH\",\n\t\"cgg\",\n\t\"cgg-UG\",\n\t\"cho\",\n\t\"cho-US\",\n\t\"chr\",\n\t\"chr-US\",\n\t\"cic\",\n\t\"cic-US\",\n\t\"ckb\",\n\t\"ckb-IQ\",\n\t\"ckb-IR\",\n\t\"co\",\n\t\"co-FR\",\n\t\"cop\",\n\t\"cop-EG\",\n\t\"cs\",\n\t\"cs-CZ\",\n\t\"csw\",\n\t\"csw-CA\",\n\t\"cu\",\n\t\"cu-RU\",\n\t\"cv\",\n\t\"cv-RU\",\n\t\"cy\",\n\t\"cy-GB\",\n\t\"da\",\n\t\"da-DK\",\n\t\"da-GL\",\n\t\"dav\",\n\t\"dav-KE\",\n\t\"de\",\n\t\"de-AT\",\n\t\"de-BE\",\n\t\"de-CH\",\n\t\"de-DE\",\n\t\"de-IT\",\n\t\"de-LI\",\n\t\"de-LU\",\n\t\"dje\",\n\t\"dje-NE\",\n\t\"doi\",\n\t\"doi-IN\",\n\t\"dsb\",\n\t\"dsb-DE\",\n\t\"dua\",\n\t\"dua-CM\",\n\t\"dv\",\n\t\"dv-MV\",\n\t\"dyo\",\n\t\"dyo-SN\",\n\t\"dz\",\n\t\"dz-BT\",\n\t\"ebu\",\n\t\"ebu-KE\",\n\t\"ee\",\n\t\"ee-GH\",\n\t\"ee-TG\",\n\t\"el\",\n\t\"el-CY\",\n\t\"el-GR\",\n\t\"el-polyton\",\n\t\"en\",\n\t\"en-001\",\n\t\"en-150\",\n\t\"en-AE\",\n\t\"en-AG\",\n\t\"en-AI\",\n\t\"en-AS\",\n\t\"en-AT\",\n\t\"en-AU\",\n\t\"en-BB\",\n\t\"en-BE\",\n\t\"en-BI\",\n\t\"en-BM\",\n\t\"en-BS\",\n\t\"en-BW\",\n\t\"en-BZ\",\n\t\"en-CA\",\n\t\"en-CC\",\n\t\"en-CH\",\n\t\"en-CK\",\n\t\"en-CM\",\n\t\"en-CX\",\n\t\"en-CY\",\n\t\"en-CZ\",\n\t\"en-DE\",\n\t\"en-DG\",\n\t\"en-DK\",\n\t\"en-DM\",\n\t\"en-Dsrt\",\n\t\"en-Dsrt-US\",\n\t\"en-EE\",\n\t\"en-ER\",\n\t\"en-ES\",\n\t\"en-FI\",\n\t\"en-FJ\",\n\t\"en-FK\",\n\t\"en-FM\",\n\t\"en-FR\",\n\t\"en-GB\",\n\t\"en-GD\",\n\t\"en-GE\",\n\t\"en-GG\",\n\t\"en-GH\",\n\t\"en-GI\",\n\t\"en-GM\",\n\t\"en-GS\",\n\t\"en-GU\",\n\t\"en-GY\",\n\t\"en-HK\",\n\t\"en-HU\",\n\t\"en-ID\",\n\t\"en-IE\",\n\t\"en-IL\",\n\t\"en-IM\",\n\t\"en-IN\",\n\t\"en-IO\",\n\t\"en-IT\",\n\t\"en-JE\",\n\t\"en-JM\",\n\t\"en-JP\",\n\t\"en-KE\",\n\t\"en-KI\",\n\t\"en-KN\",\n\t\"en-KY\",\n\t\"en-LC\",\n\t\"en-LR\",\n\t\"en-LS\",\n\t\"en-LT\",\n\t\"en-LV\",\n\t\"en-MG\",\n\t\"en-MH\",\n\t\"en-MO\",\n\t\"en-MP\",\n\t\"en-MS\",\n\t\"en-MT\",\n\t\"en-MU\",\n\t\"en-MV\",\n\t\"en-MW\",\n\t\"en-MY\",\n\t\"en-NA\",\n\t\"en-NF\",\n\t\"en-NG\",\n\t\"en-NL\",\n\t\"en-NO\",\n\t\"en-NR\",\n\t\"en-NU\",\n\t\"en-NZ\",\n\t\"en-PG\",\n\t\"en-PH\",\n\t\"en-PK\",\n\t\"en-PL\",\n\t\"en-PN\",\n\t\"en-PR\",\n\t\"en-PT\",\n\t\"en-PW\",\n\t\"en-RO\",\n\t\"en-RW\",\n\t\"en-SB\",\n\t\"en-SC\",\n\t\"en-SD\",\n\t\"en-SE\",\n\t\"en-SG\",\n\t\"en-SH\",\n\t\"en-SI\",\n\t\"en-SK\",\n\t\"en-SL\",\n\t\"en-SS\",\n\t\"en-SX\",\n\t\"en-SZ\",\n\t\"en-Shaw\",\n\t\"en-Shaw-GB\",\n\t\"en-TC\",\n\t\"en-TK\",\n\t\"en-TO\",\n\t\"en-TT\",\n\t\"en-TV\",\n\t\"en-TZ\",\n\t\"en-UA\",\n\t\"en-UG\",\n\t\"en-UM\",\n\t\"en-US\",\n\t\"en-VC\",\n\t\"en-VG\",\n\t\"en-VI\",\n\t\"en-VU\",\n\t\"en-WS\",\n\t\"en-ZA\",\n\t\"en-ZM\",\n\t\"en-ZW\",\n\t\"eo\",\n\t\"eo-001\",\n\t\"es\",\n\t\"es-419\",\n\t\"es-AR\",\n\t\"es-BO\",\n\t\"es-BR\",\n\t\"es-BZ\",\n\t\"es-CL\",\n\t\"es-CO\",\n\t\"es-CR\",\n\t\"es-CU\",\n\t\"es-DO\",\n\t\"es-EA\",\n\t\"es-EC\",\n\t\"es-ES\",\n\t\"es-GQ\",\n\t\"es-GT\",\n\t\"es-HN\",\n\t\"es-IC\",\n\t\"es-MX\",\n\t\"es-NI\",\n\t\"es-PA\",\n\t\"es-PE\",\n\t\"es-PH\",\n\t\"es-PR\",\n\t\"es-PY\",\n\t\"es-SV\",\n\t\"es-US\",\n\t\"es-UY\",\n\t\"es-VE\",\n\t\"et\",\n\t\"et-EE\",\n\t\"eu\",\n\t\"eu-ES\",\n\t\"ewo\",\n\t\"ewo-CM\",\n\t\"fa\",\n\t\"fa-AF\",\n\t\"fa-IR\",\n\t\"ff\",\n\t\"ff-Adlm\",\n\t\"ff-Adlm-BF\",\n\t\"ff-Adlm-CM\",\n\t\"ff-Adlm-GH\",\n\t\"ff-Adlm-GM\",\n\t\"ff-Adlm-GN\",\n\t\"ff-Adlm-GW\",\n\t\"ff-Adlm-LR\",\n\t\"ff-Adlm-MR\",\n\t\"ff-Adlm-NE\",\n\t\"ff-Adlm-NG\",\n\t\"ff-Adlm-SL\",\n\t\"ff-Adlm-SN\",\n\t\"ff-BF\",\n\t\"ff-CM\",\n\t\"ff-GH\",\n\t\"ff-GM\",\n\t\"ff-GN\",\n\t\"ff-GW\",\n\t\"ff-LR\",\n\t\"ff-Latn\",\n\t\"ff-Latn-BF\",\n\t\"ff-Latn-CM\",\n\t\"ff-Latn-GH\",\n\t\"ff-Latn-GM\",\n\t\"ff-Latn-GN\",\n\t\"ff-Latn-GW\",\n\t\"ff-Latn-LR\",\n\t\"ff-Latn-MR\",\n\t\"ff-Latn-NE\",\n\t\"ff-Latn-NG\",\n\t\"ff-Latn-SL\",\n\t\"ff-Latn-SN\",\n\t\"ff-MR\",\n\t\"ff-NE\",\n\t\"ff-NG\",\n\t\"ff-SL\",\n\t\"ff-SN\",\n\t\"fi\",\n\t\"fi-FI\",\n\t\"fil\",\n\t\"fil-PH\",\n\t\"fo\",\n\t\"fo-DK\",\n\t\"fo-FO\",\n\t\"fr\",\n\t\"fr-BE\",\n\t\"fr-BF\",\n\t\"fr-BI\",\n\t\"fr-BJ\",\n\t\"fr-BL\",\n\t\"fr-CA\",\n\t\"fr-CD\",\n\t\"fr-CF\",\n\t\"fr-CG\",\n\t\"fr-CH\",\n\t\"fr-CI\",\n\t\"fr-CM\",\n\t\"fr-DJ\",\n\t\"fr-DZ\",\n\t\"fr-FR\",\n\t\"fr-GA\",\n\t\"fr-GF\",\n\t\"fr-GN\",\n\t\"fr-GP\",\n\t\"fr-GQ\",\n\t\"fr-HT\",\n\t\"fr-KM\",\n\t\"fr-LU\",\n\t\"fr-MA\",\n\t\"fr-MC\",\n\t\"fr-MF\",\n\t\"fr-MG\",\n\t\"fr-ML\",\n\t\"fr-MQ\",\n\t\"fr-MR\",\n\t\"fr-MU\",\n\t\"fr-NC\",\n\t\"fr-NE\",\n\t\"fr-PF\",\n\t\"fr-PM\",\n\t\"fr-RE\",\n\t\"fr-RW\",\n\t\"fr-SC\",\n\t\"fr-SN\",\n\t\"fr-SY\",\n\t\"fr-TD\",\n\t\"fr-TG\",\n\t\"fr-TN\",\n\t\"fr-VU\",\n\t\"fr-WF\",\n\t\"fr-YT\",\n\t\"frr\",\n\t\"frr-DE\",\n\t\"fur\",\n\t\"fur-IT\",\n\t\"fy\",\n\t\"fy-NL\",\n\t\"ga\",\n\t\"ga-GB\",\n\t\"ga-IE\",\n\t\"gaa\",\n\t\"gaa-GH\",\n\t\"gd\",\n\t\"gd-GB\",\n\t\"gez\",\n\t\"gez-ER\",\n\t\"gez-ET\",\n\t\"gl\",\n\t\"gl-ES\",\n\t\"gn\",\n\t\"gn-PY\",\n\t\"gsw\",\n\t\"gsw-CH\",\n\t\"gsw-FR\",\n\t\"gsw-LI\",\n\t\"gu\",\n\t\"gu-IN\",\n\t\"guz\",\n\t\"guz-KE\",\n\t\"gv\",\n\t\"gv-IM\",\n\t\"ha\",\n\t\"ha-Arab\",\n\t\"ha-Arab-NG\",\n\t\"ha-Arab-SD\",\n\t\"ha-GH\",\n\t\"ha-NE\",\n\t\"ha-NG\",\n\t\"ha-SD\",\n\t\"haw\",\n\t\"haw-US\",\n\t\"he\",\n\t\"he-IL\",\n\t\"hi\",\n\t\"hi-IN\",\n\t\"hi-Latn\",\n\t\"hi-Latn-IN\",\n\t\"hnj\",\n\t\"hnj-Hmnp\",\n\t\"hnj-Hmnp-US\",\n\t\"hnj-US\",\n\t\"hr\",\n\t\"hr-BA\",\n\t\"hr-HR\",\n\t\"hsb\",\n\t\"hsb-DE\",\n\t\"ht\",\n\t\"ht-HT\",\n\t\"hu\",\n\t\"hu-HU\",\n\t\"hy\",\n\t\"hy-AM\",\n\t\"ia\",\n\t\"ia-001\",\n\t\"id\",\n\t\"id-ID\",\n\t\"ie\",\n\t\"ie-EE\",\n\t\"ig\",\n\t\"ig-NG\",\n\t\"ii\",\n\t\"ii-CN\",\n\t\"io\",\n\t\"io-001\",\n\t\"is\",\n\t\"is-IS\",\n\t\"it\",\n\t\"it-CH\",\n\t\"it-IT\",\n\t\"it-SM\",\n\t\"it-VA\",\n\t\"iu\",\n\t\"iu-CA\",\n\t\"iu-Latn\",\n\t\"iu-Latn-CA\",\n\t\"ja\",\n\t\"ja-JP\",\n\t\"jbo\",\n\t\"jbo-001\",\n\t\"jgo\",\n\t\"jgo-CM\",\n\t\"jmc\",\n\t\"jmc-TZ\",\n\t\"jv\",\n\t\"jv-ID\",\n\t\"ka\",\n\t\"ka-GE\",\n\t\"kaa\",\n\t\"kaa-Cyrl\",\n\t\"kaa-Cyrl-UZ\",\n\t\"kaa-Latn\",\n\t\"kaa-Latn-UZ\",\n\t\"kaa-UZ\",\n\t\"kab\",\n\t\"kab-DZ\",\n\t\"kaj\",\n\t\"kaj-NG\",\n\t\"kam\",\n\t\"kam-KE\",\n\t\"kcg\",\n\t\"kcg-NG\",\n\t\"kde\",\n\t\"kde-TZ\",\n\t\"kea\",\n\t\"kea-CV\",\n\t\"kek\",\n\t\"kek-GT\",\n\t\"ken\",\n\t\"ken-CM\",\n\t\"kgp\",\n\t\"kgp-BR\",\n\t\"khq\",\n\t\"khq-ML\",\n\t\"ki\",\n\t\"ki-KE\",\n\t\"kk\",\n\t\"kk-Arab\",\n\t\"kk-Arab-CN\",\n\t\"kk-CN\",\n\t\"kk-Cyrl\",\n\t\"kk-Cyrl-KZ\",\n\t\"kk-KZ\",\n\t\"kkj\",\n\t\"kkj-CM\",\n\t\"kl\",\n\t\"kl-GL\",\n\t\"kln\",\n\t\"kln-KE\",\n\t\"km\",\n\t\"km-KH\",\n\t\"kn\",\n\t\"kn-IN\",\n\t\"ko\",\n\t\"ko-CN\",\n\t\"ko-KP\",\n\t\"ko-KR\",\n\t\"kok\",\n\t\"kok-Deva\",\n\t\"kok-Deva-IN\",\n\t\"kok-IN\",\n\t\"kok-Latn\",\n\t\"kok-Latn-IN\",\n\t\"kpe\",\n\t\"kpe-GN\",\n\t\"kpe-LR\",\n\t\"ks\",\n\t\"ks-Arab\",\n\t\"ks-Arab-IN\",\n\t\"ks-Deva\",\n\t\"ks-Deva-IN\",\n\t\"ks-IN\",\n\t\"ksb\",\n\t\"ksb-TZ\",\n\t\"ksf\",\n\t\"ksf-CM\",\n\t\"ksh\",\n\t\"ksh-DE\",\n\t\"ku\",\n\t\"ku-Arab\",\n\t\"ku-Arab-IQ\",\n\t\"ku-Arab-IR\",\n\t\"ku-IQ\",\n\t\"ku-IR\",\n\t\"ku-Latn\",\n\t\"ku-Latn-IQ\",\n\t\"ku-Latn-SY\",\n\t\"ku-Latn-TR\",\n\t\"ku-SY\",\n\t\"ku-TR\",\n\t\"kw\",\n\t\"kw-GB\",\n\t\"kxv\",\n\t\"kxv-Deva\",\n\t\"kxv-Deva-IN\",\n\t\"kxv-IN\",\n\t\"kxv-Latn\",\n\t\"kxv-Latn-IN\",\n\t\"kxv-Orya\",\n\t\"kxv-Orya-IN\",\n\t\"kxv-Telu\",\n\t\"kxv-Telu-IN\",\n\t\"ky\",\n\t\"ky-KG\",\n\t\"la\",\n\t\"la-VA\",\n\t\"lag\",\n\t\"lag-TZ\",\n\t\"lb\",\n\t\"lb-LU\",\n\t\"lg\",\n\t\"lg-UG\",\n\t\"lij\",\n\t\"lij-IT\",\n\t\"lkt\",\n\t\"lkt-US\",\n\t\"lld\",\n\t\"lld-IT\",\n\t\"lmo\",\n\t\"lmo-IT\",\n\t\"ln\",\n\t\"ln-AO\",\n\t\"ln-CD\",\n\t\"ln-CF\",\n\t\"ln-CG\",\n\t\"lo\",\n\t\"lo-LA\",\n\t\"lrc\",\n\t\"lrc-IQ\",\n\t\"lrc-IR\",\n\t\"lt\",\n\t\"lt-LT\",\n\t\"ltg\",\n\t\"ltg-LV\",\n\t\"lu\",\n\t\"lu-CD\",\n\t\"luo\",\n\t\"luo-KE\",\n\t\"luy\",\n\t\"luy-KE\",\n\t\"lv\",\n\t\"lv-LV\",\n\t\"lzz\",\n\t\"lzz-TR\",\n\t\"mai\",\n\t\"mai-IN\",\n\t\"mas\",\n\t\"mas-KE\",\n\t\"mas-TZ\",\n\t\"mdf\",\n\t\"mdf-RU\",\n\t\"mer\",\n\t\"mer-KE\",\n\t\"mfe\",\n\t\"mfe-MU\",\n\t\"mg\",\n\t\"mg-MG\",\n\t\"mgh\",\n\t\"mgh-MZ\",\n\t\"mgo\",\n\t\"mgo-CM\",\n\t\"mhn\",\n\t\"mhn-IT\",\n\t\"mi\",\n\t\"mi-NZ\",\n\t\"mic\",\n\t\"mic-CA\",\n\t\"mk\",\n\t\"mk-MK\",\n\t\"ml\",\n\t\"ml-IN\",\n\t\"mn\",\n\t\"mn-CN\",\n\t\"mn-MN\",\n\t\"mn-Mong\",\n\t\"mn-Mong-CN\",\n\t\"mn-Mong-MN\",\n\t\"mni\",\n\t\"mni-Beng\",\n\t\"mni-Beng-IN\",\n\t\"mni-IN\",\n\t\"mni-Mtei\",\n\t\"mni-Mtei-IN\",\n\t\"moh\",\n\t\"moh-CA\",\n\t\"mr\",\n\t\"mr-IN\",\n\t\"ms\",\n\t\"ms-Arab\",\n\t\"ms-Arab-BN\",\n\t\"ms-Arab-MY\",\n\t\"ms-BN\",\n\t\"ms-ID\",\n\t\"ms-MY\",\n\t\"ms-SG\",\n\t\"mt\",\n\t\"mt-MT\",\n\t\"mua\",\n\t\"mua-CM\",\n\t\"mus\",\n\t\"mus-US\",\n\t\"mww\",\n\t\"mww-Hmnp\",\n\t\"mww-Hmnp-US\",\n\t\"mww-US\",\n\t\"my\",\n\t\"my-MM\",\n\t\"myv\",\n\t\"myv-RU\",\n\t\"mzn\",\n\t\"mzn-IR\",\n\t\"naq\",\n\t\"naq-NA\",\n\t\"nb\",\n\t\"nb-NO\",\n\t\"nb-SJ\",\n\t\"nd\",\n\t\"nd-ZW\",\n\t\"nds\",\n\t\"nds-DE\",\n\t\"nds-NL\",\n\t\"ne\",\n\t\"ne-IN\",\n\t\"ne-NP\",\n\t\"nl\",\n\t\"nl-AW\",\n\t\"nl-BE\",\n\t\"nl-BQ\",\n\t\"nl-CW\",\n\t\"nl-NL\",\n\t\"nl-SR\",\n\t\"nl-SX\",\n\t\"nmg\",\n\t\"nmg-CM\",\n\t\"nn\",\n\t\"nn-NO\",\n\t\"nnh\",\n\t\"nnh-CM\",\n\t\"no\",\n\t\"nqo\",\n\t\"nqo-GN\",\n\t\"nr\",\n\t\"nr-ZA\",\n\t\"nso\",\n\t\"nso-ZA\",\n\t\"nus\",\n\t\"nus-SS\",\n\t\"nv\",\n\t\"nv-US\",\n\t\"ny\",\n\t\"ny-MW\",\n\t\"nyn\",\n\t\"nyn-UG\",\n\t\"oc\",\n\t\"oc-ES\",\n\t\"oc-FR\",\n\t\"oka\",\n\t\"oka-CA\",\n\t\"oka-US\",\n\t\"om\",\n\t\"om-ET\",\n\t\"om-KE\",\n\t\"or\",\n\t\"or-IN\",\n\t\"os\",\n\t\"os-GE\",\n\t\"os-RU\",\n\t\"osa\",\n\t\"osa-US\",\n\t\"pa\",\n\t\"pa-Arab\",\n\t\"pa-Arab-PK\",\n\t\"pa-Guru\",\n\t\"pa-Guru-IN\",\n\t\"pa-IN\",\n\t\"pa-PK\",\n\t\"pap\",\n\t\"pap-AW\",\n\t\"pap-CW\",\n\t\"pcm\",\n\t\"pcm-NG\",\n\t\"pi\",\n\t\"pi-GB\",\n\t\"pi-Latn\",\n\t\"pi-Latn-GB\",\n\t\"pis\",\n\t\"pis-SB\",\n\t\"pl\",\n\t\"pl-PL\",\n\t\"pms\",\n\t\"pms-IT\",\n\t\"prg\",\n\t\"prg-PL\",\n\t\"ps\",\n\t\"ps-AF\",\n\t\"ps-PK\",\n\t\"pt\",\n\t\"pt-AO\",\n\t\"pt-BR\",\n\t\"pt-CH\",\n\t\"pt-CV\",\n\t\"pt-GQ\",\n\t\"pt-GW\",\n\t\"pt-LU\",\n\t\"pt-MO\",\n\t\"pt-MZ\",\n\t\"pt-PT\",\n\t\"pt-ST\",\n\t\"pt-TL\",\n\t\"qu\",\n\t\"qu-BO\",\n\t\"qu-EC\",\n\t\"qu-PE\",\n\t\"quc\",\n\t\"quc-GT\",\n\t\"raj\",\n\t\"raj-IN\",\n\t\"rhg\",\n\t\"rhg-BD\",\n\t\"rhg-MM\",\n\t\"rhg-Rohg\",\n\t\"rhg-Rohg-BD\",\n\t\"rhg-Rohg-MM\",\n\t\"rif\",\n\t\"rif-MA\",\n\t\"rm\",\n\t\"rm-CH\",\n\t\"rn\",\n\t\"rn-BI\",\n\t\"ro\",\n\t\"ro-MD\",\n\t\"ro-RO\",\n\t\"rof\",\n\t\"rof-TZ\",\n\t\"ru\",\n\t\"ru-BY\",\n\t\"ru-KG\",\n\t\"ru-KZ\",\n\t\"ru-MD\",\n\t\"ru-RU\",\n\t\"ru-UA\",\n\t\"rw\",\n\t\"rw-RW\",\n\t\"rwk\",\n\t\"rwk-TZ\",\n\t\"sa\",\n\t\"sa-IN\",\n\t\"sah\",\n\t\"sah-RU\",\n\t\"saq\",\n\t\"saq-KE\",\n\t\"sat\",\n\t\"sat-Deva\",\n\t\"sat-Deva-IN\",\n\t\"sat-IN\",\n\t\"sat-Olck\",\n\t\"sat-Olck-IN\",\n\t\"sbp\",\n\t\"sbp-TZ\",\n\t\"sc\",\n\t\"sc-IT\",\n\t\"scn\",\n\t\"scn-IT\",\n\t\"sd\",\n\t\"sd-Arab\",\n\t\"sd-Arab-PK\",\n\t\"sd-Deva\",\n\t\"sd-Deva-IN\",\n\t\"sd-IN\",\n\t\"sd-PK\",\n\t\"sdh\",\n\t\"sdh-IQ\",\n\t\"sdh-IR\",\n\t\"se\",\n\t\"se-FI\",\n\t\"se-NO\",\n\t\"se-SE\",\n\t\"seh\",\n\t\"seh-MZ\",\n\t\"ses\",\n\t\"ses-ML\",\n\t\"sg\",\n\t\"sg-CF\",\n\t\"sgs\",\n\t\"sgs-LT\",\n\t\"shi\",\n\t\"shi-Latn\",\n\t\"shi-Latn-MA\",\n\t\"shi-MA\",\n\t\"shi-Tfng\",\n\t\"shi-Tfng-MA\",\n\t\"shn\",\n\t\"shn-MM\",\n\t\"shn-TH\",\n\t\"si\",\n\t\"si-LK\",\n\t\"sid\",\n\t\"sid-ET\",\n\t\"sk\",\n\t\"sk-SK\",\n\t\"skr\",\n\t\"skr-PK\",\n\t\"sl\",\n\t\"sl-SI\",\n\t\"sma\",\n\t\"sma-NO\",\n\t\"sma-SE\",\n\t\"smj\",\n\t\"smj-NO\",\n\t\"smj-SE\",\n\t\"smn\",\n\t\"smn-FI\",\n\t\"sms\",\n\t\"sms-FI\",\n\t\"sn\",\n\t\"sn-ZW\",\n\t\"so\",\n\t\"so-DJ\",\n\t\"so-ET\",\n\t\"so-KE\",\n\t\"so-SO\",\n\t\"sq\",\n\t\"sq-AL\",\n\t\"sq-MK\",\n\t\"sq-XK\",\n\t\"sr\",\n\t\"sr-BA\",\n\t\"sr-Cyrl\",\n\t\"sr-Cyrl-BA\",\n\t\"sr-Cyrl-ME\",\n\t\"sr-Cyrl-RS\",\n\t\"sr-Cyrl-XK\",\n\t\"sr-Latn\",\n\t\"sr-Latn-BA\",\n\t\"sr-Latn-ME\",\n\t\"sr-Latn-RS\",\n\t\"sr-Latn-XK\",\n\t\"sr-ME\",\n\t\"sr-RS\",\n\t\"sr-XK\",\n\t\"ss\",\n\t\"ss-SZ\",\n\t\"ss-ZA\",\n\t\"ssy\",\n\t\"ssy-ER\",\n\t\"st\",\n\t\"st-LS\",\n\t\"st-ZA\",\n\t\"su\",\n\t\"su-ID\",\n\t\"su-Latn\",\n\t\"su-Latn-ID\",\n\t\"suz\",\n\t\"suz-Deva\",\n\t\"suz-Deva-NP\",\n\t\"suz-NP\",\n\t\"suz-Sunu\",\n\t\"suz-Sunu-NP\",\n\t\"sv\",\n\t\"sv-AX\",\n\t\"sv-FI\",\n\t\"sv-SE\",\n\t\"sw\",\n\t\"sw-CD\",\n\t\"sw-KE\",\n\t\"sw-TZ\",\n\t\"sw-UG\",\n\t\"syr\",\n\t\"syr-IQ\",\n\t\"syr-SY\",\n\t\"szl\",\n\t\"szl-PL\",\n\t\"ta\",\n\t\"ta-IN\",\n\t\"ta-LK\",\n\t\"ta-MY\",\n\t\"ta-SG\",\n\t\"te\",\n\t\"te-IN\",\n\t\"teo\",\n\t\"teo-KE\",\n\t\"teo-UG\",\n\t\"tg\",\n\t\"tg-TJ\",\n\t\"th\",\n\t\"th-TH\",\n\t\"ti\",\n\t\"ti-ER\",\n\t\"ti-ET\",\n\t\"tig\",\n\t\"tig-ER\",\n\t\"tk\",\n\t\"tk-TM\",\n\t\"tn\",\n\t\"tn-BW\",\n\t\"tn-ZA\",\n\t\"to\",\n\t\"to-TO\",\n\t\"tok\",\n\t\"tok-001\",\n\t\"tpi\",\n\t\"tpi-PG\",\n\t\"tr\",\n\t\"tr-CY\",\n\t\"tr-TR\",\n\t\"trv\",\n\t\"trv-TW\",\n\t\"trw\",\n\t\"trw-PK\",\n\t\"ts\",\n\t\"ts-ZA\",\n\t\"tt\",\n\t\"tt-RU\",\n\t\"twq\",\n\t\"twq-NE\",\n\t\"tyv\",\n\t\"tyv-RU\",\n\t\"tzm\",\n\t\"tzm-MA\",\n\t\"ug\",\n\t\"ug-CN\",\n\t\"uk\",\n\t\"uk-UA\",\n\t\"und\",\n\t\"ur\",\n\t\"ur-IN\",\n\t\"ur-PK\",\n\t\"uz\",\n\t\"uz-AF\",\n\t\"uz-Arab\",\n\t\"uz-Arab-AF\",\n\t\"uz-Cyrl\",\n\t\"uz-Cyrl-UZ\",\n\t\"uz-Latn\",\n\t\"uz-Latn-UZ\",\n\t\"uz-UZ\",\n\t\"vai\",\n\t\"vai-LR\",\n\t\"vai-Latn\",\n\t\"vai-Latn-LR\",\n\t\"vai-Vaii\",\n\t\"vai-Vaii-LR\",\n\t\"ve\",\n\t\"ve-ZA\",\n\t\"vec\",\n\t\"vec-IT\",\n\t\"vi\",\n\t\"vi-VN\",\n\t\"vmw\",\n\t\"vmw-MZ\",\n\t\"vo\",\n\t\"vo-001\",\n\t\"vun\",\n\t\"vun-TZ\",\n\t\"wa\",\n\t\"wa-BE\",\n\t\"wae\",\n\t\"wae-CH\",\n\t\"wal\",\n\t\"wal-ET\",\n\t\"wbp\",\n\t\"wbp-AU\",\n\t\"wo\",\n\t\"wo-SN\",\n\t\"xh\",\n\t\"xh-ZA\",\n\t\"xnr\",\n\t\"xnr-IN\",\n\t\"xog\",\n\t\"xog-UG\",\n\t\"yav\",\n\t\"yav-CM\",\n\t\"yi\",\n\t\"yi-UA\",\n\t\"yo\",\n\t\"yo-BJ\",\n\t\"yo-NG\",\n\t\"yrl\",\n\t\"yrl-BR\",\n\t\"yrl-CO\",\n\t\"yrl-VE\",\n\t\"yue\",\n\t\"yue-CN\",\n\t\"yue-HK\",\n\t\"yue-Hans\",\n\t\"yue-Hans-CN\",\n\t\"yue-Hant\",\n\t\"yue-Hant-CN\",\n\t\"yue-Hant-HK\",\n\t\"yue-Hant-MO\",\n\t\"yue-MO\",\n\t\"za\",\n\t\"za-CN\",\n\t\"zgh\",\n\t\"zgh-MA\",\n\t\"zh\",\n\t\"zh-CN\",\n\t\"zh-HK\",\n\t\"zh-Hans\",\n\t\"zh-Hans-CN\",\n\t\"zh-Hans-HK\",\n\t\"zh-Hans-MO\",\n\t\"zh-Hans-MY\",\n\t\"zh-Hans-SG\",\n\t\"zh-Hant\",\n\t\"zh-Hant-HK\",\n\t\"zh-Hant-MO\",\n\t\"zh-Hant-MY\",\n\t\"zh-Hant-TW\",\n\t\"zh-Latn\",\n\t\"zh-Latn-CN\",\n\t\"zh-MO\",\n\t\"zh-MY\",\n\t\"zh-SG\",\n\t\"zh-TW\",\n\t\"zu\",\n\t\"zu-ZA\"\n];\n","import { defaultContent } from \"@formatjs_generated/cldr.supported-locales/default-content.js\";\nconst explicitLocales = new WeakMap();\n// ECMA-402 §9.1 [[AvailableLocales]] requires fallback tags, including the\n// scriptless language-region tag. Fill missing fallbacks without replacing\n// explicitly loaded locale data with another locale's likely-subtag alias.\n// https://tc39.es/ecma402/#sec-internal-slots\n// https://github.com/tc39/ecma402/blob/b1c961988b9a07894b1dc3dc2b5626ea48387d61/spec/negotiation.html#L18-L26\nexport function registerLocaleData(locale, data, localeData, availableLocales) {\n\tlet loaded = explicitLocales.get(localeData);\n\tif (!loaded) {\n\t\tloaded = new Set();\n\t\texplicitLocales.set(localeData, loaded);\n\t}\n\tloaded.add(locale);\n\tconst locales = [locale, ...defaultContent[locale] || []];\n\tfor (const tag of locales) {\n\t\tif (tag === locale || !loaded.has(tag) || localeData[tag] === undefined) {\n\t\t\tlocaleData[tag] = data;\n\t\t}\n\t\tavailableLocales.add(tag);\n\t}\n\tfor (const tag of locales) {\n\t\tconst parts = tag.split(\"-\");\n\t\tconst fallbacks = [];\n\t\twhile (parts.length > 1) {\n\t\t\tif (parts.length > 2 && parts[1].length === 4) {\n\t\t\t\tfallbacks.push([parts[0], ...parts.slice(2)].join(\"-\"));\n\t\t\t}\n\t\t\tparts.pop();\n\t\t\tfallbacks.push(parts.join(\"-\"));\n\t\t}\n\t\tfor (const fallback of fallbacks) {\n\t\t\tif (localeData[fallback] === undefined) localeData[fallback] = localeData[tag];\n\t\t\tavailableLocales.add(fallback);\n\t\t}\n\t}\n}\n","/**\n* http://ecma-international.org/ecma-402/7.0/index.html#sec-canonicalizelocalelist\n* @param locales\n*/\nexport function CanonicalizeLocaleList(locales) {\n\t// TODO\n\treturn Intl.getCanonicalLocales(locales);\n}\n","/**\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 { ToString } from \"#packages/ecma262-abstract/ToString.js\";\n/**\n* https://tc39.es/ecma402/#sec-getoption\n* @param opts\n* @param prop\n* @param type\n* @param values\n* @param fallback\n*/\nexport function GetOption(opts, prop, type, values, fallback) {\n\t// ECMA-402 §9.2.11 GetOption, step 1: Get accepts callable Objects too.\n\t// https://tc39.es/ecma402/#sec-getoption\n\t// https://github.com/tc39/ecma402/blob/b1c961988b9a07894b1dc3dc2b5626ea48387d61/spec/negotiation.html#L384\n\tif (opts === null || typeof opts !== \"object\" && typeof opts !== \"function\") {\n\t\tthrow new TypeError(\"Options must be an object\");\n\t}\n\tlet value = opts[prop];\n\tif (value !== undefined) {\n\t\tif (type !== \"boolean\" && type !== \"string\") {\n\t\t\tthrow new TypeError(\"invalid type\");\n\t\t}\n\t\tif (type === \"boolean\") {\n\t\t\tvalue = Boolean(value);\n\t\t}\n\t\tif (type === \"string\") {\n\t\t\tvalue = ToString(value);\n\t\t}\n\t\tif (values !== undefined && !values.filter((val) => val == value).length) {\n\t\t\tthrow new RangeError(`${value} is not within ${values.join(\", \")}`);\n\t\t}\n\t\treturn value;\n\t}\n\treturn fallback;\n}\n","/**\n* ECMA-262 §7.3.36 GetOptionsObject, steps 2–3.\n* https://tc39.es/ecma262/#sec-getoptionsobject\n* https://github.com/tc39/ecma262/blob/dcf59856a8184792a9e42f0ffb7dc064094a5dcc/spec.html#L7008-L7010\n* @param options\n* @returns\n*/\nexport function GetOptionsObject(options) {\n\tif (typeof options === \"undefined\") {\n\t\treturn Object.create(null);\n\t}\n\t// Functions are Objects; null is not.\n\tif (options !== null && (typeof options === \"object\" || typeof options === \"function\")) {\n\t\treturn options;\n\t}\n\tthrow new TypeError(\"Options must be an object\");\n}\n","//#region packages/fast-memoize/index.ts\nfunction memoize(fn, options) {\n\tconst cache = options && options.cache ? options.cache : cacheDefault;\n\tconst serializer = options && options.serializer ? options.serializer : serializerDefault;\n\treturn (options && options.strategy ? options.strategy : strategyDefault)(fn, {\n\t\tcache,\n\t\tserializer\n\t});\n}\nfunction isPrimitive(value) {\n\treturn value == null || typeof value === \"number\" || typeof value === \"boolean\";\n}\nfunction monadic(fn, cache, serializer, arg) {\n\tconst cacheKey = isPrimitive(arg) ? arg : serializer(arg);\n\tlet computedValue = cache.get(cacheKey);\n\tif (typeof computedValue === \"undefined\") {\n\t\tcomputedValue = fn.call(this, arg);\n\t\tcache.set(cacheKey, computedValue);\n\t}\n\treturn computedValue;\n}\nfunction variadic(fn, cache, serializer) {\n\tconst args = Array.prototype.slice.call(arguments, 3);\n\tconst cacheKey = serializer(args);\n\tlet computedValue = cache.get(cacheKey);\n\tif (typeof computedValue === \"undefined\") {\n\t\tcomputedValue = fn.apply(this, args);\n\t\tcache.set(cacheKey, computedValue);\n\t}\n\treturn computedValue;\n}\nfunction assemble(fn, context, strategy, cache, serialize) {\n\treturn strategy.bind(context, fn, cache, serialize);\n}\nfunction strategyDefault(fn, options) {\n\tconst strategy = fn.length === 1 ? monadic : variadic;\n\treturn assemble(fn, this, strategy, options.cache.create(), options.serializer);\n}\nfunction strategyVariadic(fn, options) {\n\treturn assemble(fn, this, variadic, options.cache.create(), options.serializer);\n}\nfunction strategyMonadic(fn, options) {\n\treturn assemble(fn, this, monadic, options.cache.create(), options.serializer);\n}\nconst serializerDefault = function() {\n\treturn JSON.stringify(arguments);\n};\nvar ObjectWithoutPrototypeCache = class {\n\tconstructor() {\n\t\tthis.cache = Object.create(null);\n\t}\n\tget(key) {\n\t\treturn this.cache[key];\n\t}\n\tset(key, value) {\n\t\tthis.cache[key] = value;\n\t}\n};\nconst cacheDefault = { create: function create() {\n\treturn new ObjectWithoutPrototypeCache();\n} };\nconst strategies = {\n\tvariadic: strategyVariadic,\n\tmonadic: strategyMonadic\n};\n//#endregion\nexport { memoize, strategies };\n\n//# sourceMappingURL=index.js.map","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","import { invariant } from \"#packages/ecma402-abstract/utils.js\";\n/**\n* Partition a pattern into a list of literals and placeholders\n* https://tc39.es/ecma402/#sec-partitionpattern\n* @param pattern\n*/\nexport function PartitionPattern(pattern) {\n\tconst result = [];\n\tlet beginIndex = pattern.indexOf(\"{\");\n\tlet endIndex = 0;\n\tlet nextIndex = 0;\n\tconst length = pattern.length;\n\twhile (beginIndex < pattern.length && beginIndex > -1) {\n\t\tendIndex = pattern.indexOf(\"}\", beginIndex);\n\t\tinvariant(endIndex > beginIndex, `Invalid pattern ${pattern}`);\n\t\tif (beginIndex > nextIndex) {\n\t\t\tresult.push({\n\t\t\t\ttype: \"literal\",\n\t\t\t\tvalue: pattern.substring(nextIndex, beginIndex)\n\t\t\t});\n\t\t}\n\t\tresult.push({\n\t\t\ttype: pattern.substring(beginIndex + 1, endIndex),\n\t\t\tvalue: undefined\n\t\t});\n\t\tnextIndex = endIndex + 1;\n\t\tbeginIndex = pattern.indexOf(\"{\", nextIndex);\n\t}\n\tif (nextIndex < length) {\n\t\tresult.push({\n\t\t\ttype: \"literal\",\n\t\t\tvalue: pattern.substring(nextIndex, length)\n\t\t});\n\t}\n\treturn result;\n}\n","/**\n* https://tc39.es/ecma262/#sec-toobject\n*/\nexport function ToObject(arg) {\n\tif (arg == null) {\n\t\tthrow new TypeError(\"undefined/null cannot be converted to object\");\n\t}\n\treturn Object(arg);\n}\n","import { LookupSupportedLocales } from \"@formatjs/intl-localematcher\";\nimport { ToObject } from \"#packages/ecma262-abstract/ToObject.js\";\nimport { GetOption } from \"#packages/ecma402-abstract/GetOption.js\";\n/**\n* https://tc39.es/ecma402/#sec-supportedlocales\n* @param availableLocales\n* @param requestedLocales\n* @param options\n*/\nexport function SupportedLocales(availableLocales, requestedLocales, options) {\n\tlet matcher = \"best fit\";\n\tif (options !== undefined) {\n\t\toptions = ToObject(options);\n\t\tmatcher = GetOption(options, \"localeMatcher\", \"string\", [\"lookup\", \"best fit\"], \"best fit\");\n\t}\n\tif (matcher === \"best fit\") {\n\t\treturn LookupSupportedLocales(Array.from(availableLocales), requestedLocales);\n\t}\n\treturn LookupSupportedLocales(Array.from(availableLocales), requestedLocales);\n}\n","import {registerLocaleData} from '#packages/ecma402-abstract/registerLocaleData.js'\nimport {CanonicalizeLocaleList} from '#packages/ecma402-abstract/CanonicalizeLocaleList.js'\nimport {GetOption} from '#packages/ecma402-abstract/GetOption.js'\nimport {GetOptionsObject} from '#packages/ecma402-abstract/GetOptionsObject.js'\nimport {PartitionPattern} from '#packages/ecma402-abstract/PartitionPattern.js'\nimport {SupportedLocales} from '#packages/ecma402-abstract/SupportedLocales.js'\nimport {\n type ListPatternData,\n type ListPatternFieldsData,\n type ListPatternLocaleData,\n} from '#packages/ecma402-abstract/types/list.js'\nimport {\n type LiteralPart,\n getInternalSlot,\n invariant,\n isLiteralPart,\n setInternalSlot,\n} from '#packages/ecma402-abstract/utils.js'\nimport {ResolveLocale} from '@formatjs/intl-localematcher'\n\nexport interface IntlListFormatOptions {\n /**\n * The locale matching algorithm to use.\n * Possible values are \"lookup\" and \"best fit\"; the default is \"best fit\".\n * For information about this option, see\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation.\n */\n localeMatcher?: 'best fit' | 'lookup'\n /**\n * The format of output message.\n * Possible values are :\n * - \"conjunction\" that stands for \"and\"-based lists (default, e.g., \"A, B, and C\")\n * - \"disjunction\" that stands for \"or\"-based lists (e.g., \"A, B, or C\").\n * - \"unit\" stands for lists of values with units (e.g., \"5 pounds, 12 ounces\").\n */\n type?: 'conjunction' | 'disjunction' | 'unit'\n /**\n * The length of the formatted message.\n * Possible values are:\n * - \"long\" (default, e.g., \"A, B, and C\");\n * - \"short\" (e.g., \"A, B, C\"), or\n * - \"narrow\" (e.g., \"A B C\").\n * When style is \"short\" or \"narrow\", \"unit\" is the only allowed value for the type option.\n */\n style?: 'long' | 'short' | 'narrow'\n}\n\nexport interface ResolvedIntlListFormatOptions {\n /**\n * A string with a BCP 47 language tag, or an array of such strings.\n * For the general form and interpretation of the locales argument,\n * see the [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation) page.\n */\n locale: string\n /**\n * The format of output message.\n * Possible values are :\n * - \"conjunction\" that stands for \"and\"-based lists (default, e.g., \"A, B, and C\")\n * - \"disjunction\" that stands for \"or\"-based lists (e.g., \"A, B, or C\").\n * - \"unit\" stands for lists of values with units (e.g., \"5 pounds, 12 ounces\").\n */\n type: 'conjunction' | 'disjunction' | 'unit'\n /**\n * The length of the formatted message.\n * Possible values are:\n * - \"long\" (default, e.g., \"A, B, and C\");\n * - \"short\" (e.g., \"A, B, C\"), or\n * - \"narrow\" (e.g., \"A B C\").\n * When style is \"short\" or \"narrow\", \"unit\" is the only allowed value for the type option.\n */\n style: 'long' | 'short' | 'narrow'\n}\n\nexport type Part<T = string> = LiteralPart | ElementPart | ElementPart<T>\n\nexport interface ElementPart<T = string> {\n type: 'element'\n value: T\n}\n\ninterface Placeable {\n type: string\n value: string\n}\n\ninterface ListFormatInternal {\n style: IntlListFormatOptions['style']\n type: IntlListFormatOptions['type']\n locale: string\n templatePair: string\n templateStart: string\n templateEnd: string\n templateMiddle: string\n initializedListFormat: boolean\n}\n\nfunction validateInstance(instance: any, method: string) {\n if (!(instance instanceof ListFormat)) {\n throw new TypeError(\n `Method Intl.ListFormat.prototype.${method} called on incompatible receiver ${String(\n instance\n )}`\n )\n }\n}\n\n/**\n * https://tc39.es/proposal-intl-list-format/#sec-createstringlistfromiterable\n * @param iterable list\n */\nfunction stringListFromIterable(iterable: Iterable<unknown>): string[] {\n if (iterable === undefined) return []\n const elements: string[] = []\n // StringListFromIterable uses GetIterator and closes on a non-string value.\n // ECMA-402 §14.5.5 StringListFromIterable, steps 2–4.c.ii.\n // for-of provides those semantics: https://tc39.es/ecma402/#sec-createstringlistfromiterable\n // https://github.com/tc39/ecma402/blob/b1c961988b9a07894b1dc3dc2b5626ea48387d61/spec/listformat.html#L359-L367\n for (const value of iterable) {\n if (typeof value !== 'string') {\n throw new TypeError('Iterable yielded a non-string value')\n }\n elements.push(value)\n }\n return elements\n}\n\nfunction createPartsFromList(\n internalSlotMap: WeakMap<ListFormat, ListFormatInternal>,\n lf: ListFormat,\n list: string[]\n) {\n const size = list.length\n if (size === 0) {\n return []\n }\n if (size === 2) {\n const pattern = getInternalSlot(internalSlotMap, lf, 'templatePair')\n const first = {type: 'element', value: list[0]}\n const second = {type: 'element', value: list[1]}\n return deconstructPattern(pattern, {'0': first, '1': second})\n }\n const last = {\n type: 'element',\n value: list[size - 1],\n }\n let parts: Placeable[] | Placeable = last\n let i = size - 2\n while (i >= 0) {\n let pattern\n if (i === 0) {\n pattern = getInternalSlot(internalSlotMap, lf, 'templateStart')\n } else if (i < size - 2) {\n pattern = getInternalSlot(internalSlotMap, lf, 'templateMiddle')\n } else {\n pattern = getInternalSlot(internalSlotMap, lf, 'templateEnd')\n }\n const head = {type: 'element', value: list[i]}\n parts = deconstructPattern(pattern, {'0': head, '1': parts})\n i--\n }\n return parts\n}\n\nfunction deconstructPattern(\n pattern: string,\n placeables: Record<string, Placeable | Placeable[]>\n) {\n const patternParts = PartitionPattern(pattern)\n const result: Placeable[] = []\n for (const patternPart of patternParts) {\n const {type: part} = patternPart\n if (isLiteralPart(patternPart)) {\n result.push({\n type: 'literal',\n value: patternPart.value,\n })\n } else {\n invariant(part in placeables, `${part} is missing from placables`)\n const subst = placeables[part]\n if (Array.isArray(subst)) {\n result.push(...subst)\n } else {\n result.push(subst)\n }\n }\n }\n return result\n}\n\nexport default class ListFormat {\n constructor(locales?: string | string[], options?: IntlListFormatOptions) {\n // test262/test/intl402/ListFormat/constructor/constructor/newtarget-undefined.js\n // Cannot use `new.target` bc of IE11 & TS transpiles it to something else\n const newTarget =\n this && this instanceof ListFormat ? this.constructor : void 0\n if (!newTarget) {\n throw new TypeError(\"Intl.ListFormat must be called with 'new'\")\n }\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'initializedListFormat',\n true\n )\n const requestedLocales = CanonicalizeLocaleList(locales)\n const opt: any = Object.create(null)\n const opts = GetOptionsObject(options)\n const matcher = GetOption(\n opts,\n 'localeMatcher',\n 'string',\n ['best fit', 'lookup'],\n 'best fit'\n )\n opt.localeMatcher = matcher\n const {localeData} = ListFormat\n const r = ResolveLocale(\n ListFormat.availableLocales,\n requestedLocales,\n opt,\n ListFormat.relevantExtensionKeys,\n localeData,\n ListFormat.getDefaultLocale\n )\n setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale', r.locale)\n const type: keyof ListPatternFieldsData = GetOption(\n opts,\n 'type',\n 'string',\n ['conjunction', 'disjunction', 'unit'],\n 'conjunction'\n )\n setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type', type)\n const style: keyof ListPatternData = GetOption(\n opts,\n 'style',\n 'string',\n ['long', 'short', 'narrow'],\n 'long'\n )\n setInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style', style)\n const {dataLocale} = r\n const dataLocaleData = localeData[dataLocale]\n invariant(!!dataLocaleData, `Missing locale data for ${dataLocale}`)\n const dataLocaleTypes = dataLocaleData[type]\n const templates = dataLocaleTypes![style]!\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templatePair',\n templates.pair\n )\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templateStart',\n templates.start\n )\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templateMiddle',\n templates.middle\n )\n setInternalSlot(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n 'templateEnd',\n templates.end\n )\n }\n format(elements: Iterable<string>): string {\n validateInstance(this, 'format')\n let result = ''\n const parts = createPartsFromList(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n stringListFromIterable(elements)\n )\n if (!Array.isArray(parts)) {\n return parts.value\n }\n for (const p of parts) {\n result += p.value\n }\n return result\n }\n formatToParts(elements: Iterable<string>): Part[] {\n validateInstance(this, 'format')\n const parts = createPartsFromList(\n ListFormat.__INTERNAL_SLOT_MAP__,\n this,\n stringListFromIterable(elements)\n )\n if (!Array.isArray(parts)) {\n return [parts as Part]\n }\n const result: Part[] = []\n for (const part of parts) {\n result.push({...part} as Part)\n }\n return result\n }\n\n resolvedOptions(): ResolvedIntlListFormatOptions {\n validateInstance(this, 'resolvedOptions')\n return {\n locale: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale'),\n type: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type')!,\n style: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style')!,\n }\n }\n\n public static supportedLocalesOf(\n locales: string | string[],\n options?: Pick<IntlListFormatOptions, 'localeMatcher'>\n ): string[] {\n // test262/test/intl402/ListFormat/constructor/supportedLocalesOf/result-type.js\n return SupportedLocales(\n ListFormat.availableLocales,\n CanonicalizeLocaleList(locales),\n options\n )\n }\n\n public static __addLocaleData(...data: ListPatternLocaleData[]): void {\n for (const {data: d, locale} of data) {\n registerLocaleData(\n locale,\n d,\n ListFormat.localeData,\n ListFormat.availableLocales\n )\n if (!ListFormat.__defaultLocale) {\n ListFormat.__defaultLocale = locale\n }\n }\n }\n static localeData: Record<string, ListPatternFieldsData | undefined> = {}\n private static availableLocales = new Set<string>()\n private static __defaultLocale = ''\n private static getDefaultLocale() {\n return ListFormat.__defaultLocale\n }\n private static relevantExtensionKeys = []\n public static polyfilled = true\n private static readonly __INTERNAL_SLOT_MAP__ = new WeakMap<\n ListFormat,\n ListFormatInternal\n >()\n}\n\ntry {\n // IE11 does not have Symbol\n if (typeof Symbol !== 'undefined') {\n Object.defineProperty(ListFormat.prototype, Symbol.toStringTag, {\n value: 'Intl.ListFormat',\n writable: false,\n enumerable: false,\n configurable: true,\n })\n }\n\n // https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/length.js\n Object.defineProperty(ListFormat.prototype.constructor, 'length', {\n value: 0,\n writable: false,\n enumerable: false,\n configurable: true,\n })\n // https://github.com/tc39/test262/blob/master/test/intl402/ListFormat/constructor/supportedLocalesOf/length.js\n Object.defineProperty(ListFormat.supportedLocalesOf, 'length', {\n value: 1,\n writable: false,\n enumerable: false,\n configurable: true,\n })\n} catch {\n // Meta fix so we're test262-compliant, not important\n}\n","export const supportedLocales = [\n\t\"aa\",\n\t\"aa-DJ\",\n\t\"aa-ER\",\n\t\"ab\",\n\t\"af\",\n\t\"af-NA\",\n\t\"agq\",\n\t\"ak\",\n\t\"am\",\n\t\"an\",\n\t\"ann\",\n\t\"apc\",\n\t\"ar\",\n\t\"ar-AE\",\n\t\"ar-BH\",\n\t\"ar-DJ\",\n\t\"ar-DZ\",\n\t\"ar-EG\",\n\t\"ar-EH\",\n\t\"ar-ER\",\n\t\"ar-IL\",\n\t\"ar-IQ\",\n\t\"ar-JO\",\n\t\"ar-KM\",\n\t\"ar-KW\",\n\t\"ar-LB\",\n\t\"ar-LY\",\n\t\"ar-MA\",\n\t\"ar-MR\",\n\t\"ar-OM\",\n\t\"ar-PS\",\n\t\"ar-QA\",\n\t\"ar-SA\",\n\t\"ar-SD\",\n\t\"ar-SO\",\n\t\"ar-SS\",\n\t\"ar-SY\",\n\t\"ar-TD\",\n\t\"ar-TN\",\n\t\"ar-YE\",\n\t\"arn\",\n\t\"as\",\n\t\"asa\",\n\t\"ast\",\n\t\"az\",\n\t\"az-Arab\",\n\t\"az-Arab-IQ\",\n\t\"az-Arab-TR\",\n\t\"az-Cyrl\",\n\t\"az-Latn\",\n\t\"ba\",\n\t\"bal\",\n\t\"bal-Arab\",\n\t\"bal-Latn\",\n\t\"bas\",\n\t\"be\",\n\t\"be-tarask\",\n\t\"bem\",\n\t\"bew\",\n\t\"bez\",\n\t\"bg\",\n\t\"bgc\",\n\t\"bgn\",\n\t\"bgn-AE\",\n\t\"bgn-AF\",\n\t\"bgn-IR\",\n\t\"bgn-OM\",\n\t\"bho\",\n\t\"blo\",\n\t\"blt\",\n\t\"bm\",\n\t\"bm-Nkoo\",\n\t\"bn\",\n\t\"bn-IN\",\n\t\"bo\",\n\t\"bo-IN\",\n\t\"bqi\",\n\t\"br\",\n\t\"brx\",\n\t\"bs\",\n\t\"bs-Cyrl\",\n\t\"bs-Latn\",\n\t\"bss\",\n\t\"bua\",\n\t\"byn\",\n\t\"ca\",\n\t\"ca-AD\",\n\t\"ca-ES-valencia\",\n\t\"ca-FR\",\n\t\"ca-IT\",\n\t\"cad\",\n\t\"cch\",\n\t\"ccp\",\n\t\"ccp-IN\",\n\t\"ce\",\n\t\"ceb\",\n\t\"cgg\",\n\t\"cho\",\n\t\"chr\",\n\t\"cic\",\n\t\"ckb\",\n\t\"ckb-IR\",\n\t\"co\",\n\t\"cop\",\n\t\"cs\",\n\t\"csw\",\n\t\"cu\",\n\t\"cv\",\n\t\"cy\",\n\t\"da\",\n\t\"da-GL\",\n\t\"dav\",\n\t\"de\",\n\t\"de-AT\",\n\t\"de-BE\",\n\t\"de-CH\",\n\t\"de-IT\",\n\t\"de-LI\",\n\t\"de-LU\",\n\t\"dje\",\n\t\"doi\",\n\t\"dsb\",\n\t\"dua\",\n\t\"dv\",\n\t\"dyo\",\n\t\"dz\",\n\t\"ebu\",\n\t\"ee\",\n\t\"ee-TG\",\n\t\"el\",\n\t\"el-CY\",\n\t\"el-polyton\",\n\t\"en\",\n\t\"en-001\",\n\t\"en-150\",\n\t\"en-AE\",\n\t\"en-AG\",\n\t\"en-AI\",\n\t\"en-AS\",\n\t\"en-AT\",\n\t\"en-AU\",\n\t\"en-BB\",\n\t\"en-BE\",\n\t\"en-BI\",\n\t\"en-BM\",\n\t\"en-BS\",\n\t\"en-BW\",\n\t\"en-BZ\",\n\t\"en-CA\",\n\t\"en-CC\",\n\t\"en-CH\",\n\t\"en-CK\",\n\t\"en-CM\",\n\t\"en-CX\",\n\t\"en-CY\",\n\t\"en-CZ\",\n\t\"en-DE\",\n\t\"en-DG\",\n\t\"en-DK\",\n\t\"en-DM\",\n\t\"en-Dsrt\",\n\t\"en-EE\",\n\t\"en-ER\",\n\t\"en-ES\",\n\t\"en-FI\",\n\t\"en-FJ\",\n\t\"en-FK\",\n\t\"en-FM\",\n\t\"en-FR\",\n\t\"en-GB\",\n\t\"en-GD\",\n\t\"en-GE\",\n\t\"en-GG\",\n\t\"en-GH\",\n\t\"en-GI\",\n\t\"en-GM\",\n\t\"en-GS\",\n\t\"en-GU\",\n\t\"en-GY\",\n\t\"en-HK\",\n\t\"en-HU\",\n\t\"en-ID\",\n\t\"en-IE\",\n\t\"en-IL\",\n\t\"en-IM\",\n\t\"en-IN\",\n\t\"en-IO\",\n\t\"en-IT\",\n\t\"en-JE\",\n\t\"en-JM\",\n\t\"en-JP\",\n\t\"en-KE\",\n\t\"en-KI\",\n\t\"en-KN\",\n\t\"en-KY\",\n\t\"en-LC\",\n\t\"en-LR\",\n\t\"en-LS\",\n\t\"en-LT\",\n\t\"en-LV\",\n\t\"en-MG\",\n\t\"en-MH\",\n\t\"en-MO\",\n\t\"en-MP\",\n\t\"en-MS\",\n\t\"en-MT\",\n\t\"en-MU\",\n\t\"en-MV\",\n\t\"en-MW\",\n\t\"en-MY\",\n\t\"en-NA\",\n\t\"en-NF\",\n\t\"en-NG\",\n\t\"en-NL\",\n\t\"en-NO\",\n\t\"en-NR\",\n\t\"en-NU\",\n\t\"en-NZ\",\n\t\"en-PG\",\n\t\"en-PH\",\n\t\"en-PK\",\n\t\"en-PL\",\n\t\"en-PN\",\n\t\"en-PR\",\n\t\"en-PT\",\n\t\"en-PW\",\n\t\"en-RO\",\n\t\"en-RW\",\n\t\"en-SB\",\n\t\"en-SC\",\n\t\"en-SD\",\n\t\"en-SE\",\n\t\"en-SG\",\n\t\"en-SH\",\n\t\"en-SI\",\n\t\"en-SK\",\n\t\"en-SL\",\n\t\"en-SS\",\n\t\"en-SX\",\n\t\"en-SZ\",\n\t\"en-Shaw\",\n\t\"en-TC\",\n\t\"en-TK\",\n\t\"en-TO\",\n\t\"en-TT\",\n\t\"en-TV\",\n\t\"en-TZ\",\n\t\"en-UA\",\n\t\"en-UG\",\n\t\"en-UM\",\n\t\"en-VC\",\n\t\"en-VG\",\n\t\"en-VI\",\n\t\"en-VU\",\n\t\"en-WS\",\n\t\"en-ZA\",\n\t\"en-ZM\",\n\t\"en-ZW\",\n\t\"eo\",\n\t\"es\",\n\t\"es-419\",\n\t\"es-AR\",\n\t\"es-BO\",\n\t\"es-BR\",\n\t\"es-BZ\",\n\t\"es-CL\",\n\t\"es-CO\",\n\t\"es-CR\",\n\t\"es-CU\",\n\t\"es-DO\",\n\t\"es-EA\",\n\t\"es-EC\",\n\t\"es-GQ\",\n\t\"es-GT\",\n\t\"es-HN\",\n\t\"es-IC\",\n\t\"es-MX\",\n\t\"es-NI\",\n\t\"es-PA\",\n\t\"es-PE\",\n\t\"es-PH\",\n\t\"es-PR\",\n\t\"es-PY\",\n\t\"es-SV\",\n\t\"es-US\",\n\t\"es-UY\",\n\t\"es-VE\",\n\t\"et\",\n\t\"eu\",\n\t\"ewo\",\n\t\"fa\",\n\t\"fa-AF\",\n\t\"ff\",\n\t\"ff-Adlm\",\n\t\"ff-Adlm-BF\",\n\t\"ff-Adlm-CM\",\n\t\"ff-Adlm-GH\",\n\t\"ff-Adlm-GM\",\n\t\"ff-Adlm-GW\",\n\t\"ff-Adlm-LR\",\n\t\"ff-Adlm-MR\",\n\t\"ff-Adlm-NE\",\n\t\"ff-Adlm-NG\",\n\t\"ff-Adlm-SL\",\n\t\"ff-Adlm-SN\",\n\t\"ff-Latn\",\n\t\"ff-Latn-BF\",\n\t\"ff-Latn-CM\",\n\t\"ff-Latn-GH\",\n\t\"ff-Latn-GM\",\n\t\"ff-Latn-GN\",\n\t\"ff-Latn-GW\",\n\t\"ff-Latn-LR\",\n\t\"ff-Latn-MR\",\n\t\"ff-Latn-NE\",\n\t\"ff-Latn-NG\",\n\t\"ff-Latn-SL\",\n\t\"fi\",\n\t\"fil\",\n\t\"fo\",\n\t\"fo-DK\",\n\t\"fr\",\n\t\"fr-BE\",\n\t\"fr-BF\",\n\t\"fr-BI\",\n\t\"fr-BJ\",\n\t\"fr-BL\",\n\t\"fr-CA\",\n\t\"fr-CD\",\n\t\"fr-CF\",\n\t\"fr-CG\",\n\t\"fr-CH\",\n\t\"fr-CI\",\n\t\"fr-CM\",\n\t\"fr-DJ\",\n\t\"fr-DZ\",\n\t\"fr-GA\",\n\t\"fr-GF\",\n\t\"fr-GN\",\n\t\"fr-GP\",\n\t\"fr-GQ\",\n\t\"fr-HT\",\n\t\"fr-KM\",\n\t\"fr-LU\",\n\t\"fr-MA\",\n\t\"fr-MC\",\n\t\"fr-MF\",\n\t\"fr-MG\",\n\t\"fr-ML\",\n\t\"fr-MQ\",\n\t\"fr-MR\",\n\t\"fr-MU\",\n\t\"fr-NC\",\n\t\"fr-NE\",\n\t\"fr-PF\",\n\t\"fr-PM\",\n\t\"fr-RE\",\n\t\"fr-RW\",\n\t\"fr-SC\",\n\t\"fr-SN\",\n\t\"fr-SY\",\n\t\"fr-TD\",\n\t\"fr-TG\",\n\t\"fr-TN\",\n\t\"fr-VU\",\n\t\"fr-WF\",\n\t\"fr-YT\",\n\t\"frr\",\n\t\"fur\",\n\t\"fy\",\n\t\"ga\",\n\t\"ga-GB\",\n\t\"gaa\",\n\t\"gd\",\n\t\"gez\",\n\t\"gez-ER\",\n\t\"gl\",\n\t\"gn\",\n\t\"gsw\",\n\t\"gsw-FR\",\n\t\"gsw-LI\",\n\t\"gu\",\n\t\"guz\",\n\t\"gv\",\n\t\"ha\",\n\t\"ha-Arab\",\n\t\"ha-Arab-SD\",\n\t\"ha-GH\",\n\t\"ha-NE\",\n\t\"haw\",\n\t\"he\",\n\t\"hi\",\n\t\"hi-Latn\",\n\t\"hnj\",\n\t\"hnj-Hmnp\",\n\t\"hr\",\n\t\"hr-BA\",\n\t\"hsb\",\n\t\"ht\",\n\t\"hu\",\n\t\"hy\",\n\t\"ia\",\n\t\"id\",\n\t\"ie\",\n\t\"ig\",\n\t\"ii\",\n\t\"io\",\n\t\"is\",\n\t\"it\",\n\t\"it-CH\",\n\t\"it-SM\",\n\t\"it-VA\",\n\t\"iu\",\n\t\"iu-Latn\",\n\t\"ja\",\n\t\"jbo\",\n\t\"jgo\",\n\t\"jmc\",\n\t\"jv\",\n\t\"ka\",\n\t\"kaa\",\n\t\"kaa-Cyrl\",\n\t\"kaa-Latn\",\n\t\"kab\",\n\t\"kaj\",\n\t\"kam\",\n\t\"kcg\",\n\t\"kde\",\n\t\"kea\",\n\t\"kek\",\n\t\"ken\",\n\t\"kgp\",\n\t\"khq\",\n\t\"ki\",\n\t\"kk\",\n\t\"kk-Arab\",\n\t\"kk-Cyrl\",\n\t\"kk-KZ\",\n\t\"kkj\",\n\t\"kl\",\n\t\"kln\",\n\t\"km\",\n\t\"kn\",\n\t\"ko\",\n\t\"ko-CN\",\n\t\"ko-KP\",\n\t\"kok\",\n\t\"kok-Deva\",\n\t\"kok-Latn\",\n\t\"kpe\",\n\t\"kpe-GN\",\n\t\"ks\",\n\t\"ks-Arab\",\n\t\"ks-Deva\",\n\t\"ksb\",\n\t\"ksf\",\n\t\"ksh\",\n\t\"ku\",\n\t\"ku-Arab\",\n\t\"ku-Arab-IR\",\n\t\"ku-Latn\",\n\t\"ku-Latn-IQ\",\n\t\"ku-Latn-SY\",\n\t\"ku-TR\",\n\t\"kw\",\n\t\"kxv\",\n\t\"kxv-Deva\",\n\t\"kxv-Latn\",\n\t\"kxv-Orya\",\n\t\"kxv-Telu\",\n\t\"ky\",\n\t\"la\",\n\t\"lag\",\n\t\"lb\",\n\t\"lg\",\n\t\"lij\",\n\t\"lkt\",\n\t\"lld\",\n\t\"lmo\",\n\t\"ln\",\n\t\"ln-AO\",\n\t\"ln-CF\",\n\t\"ln-CG\",\n\t\"lo\",\n\t\"lrc\",\n\t\"lrc-IQ\",\n\t\"lt\",\n\t\"ltg\",\n\t\"lu\",\n\t\"luo\",\n\t\"luy\",\n\t\"lv\",\n\t\"lzz\",\n\t\"mai\",\n\t\"mas\",\n\t\"mas-TZ\",\n\t\"mdf\",\n\t\"mer\",\n\t\"mfe\",\n\t\"mg\",\n\t\"mgh\",\n\t\"mgo\",\n\t\"mhn\",\n\t\"mi\",\n\t\"mic\",\n\t\"mk\",\n\t\"ml\",\n\t\"mn\",\n\t\"mn-Mong\",\n\t\"mn-Mong-MN\",\n\t\"mni\",\n\t\"mni-Beng\",\n\t\"mni-Mtei\",\n\t\"moh\",\n\t\"mr\",\n\t\"ms\",\n\t\"ms-Arab\",\n\t\"ms-Arab-BN\",\n\t\"ms-BN\",\n\t\"ms-ID\",\n\t\"ms-SG\",\n\t\"mt\",\n\t\"mua\",\n\t\"mus\",\n\t\"mww\",\n\t\"mww-Hmnp\",\n\t\"my\",\n\t\"myv\",\n\t\"mzn\",\n\t\"naq\",\n\t\"nb\",\n\t\"nb-SJ\",\n\t\"nd\",\n\t\"nds\",\n\t\"nds-NL\",\n\t\"ne\",\n\t\"ne-IN\",\n\t\"nl\",\n\t\"nl-AW\",\n\t\"nl-BE\",\n\t\"nl-BQ\",\n\t\"nl-CW\",\n\t\"nl-SR\",\n\t\"nl-SX\",\n\t\"nmg\",\n\t\"nn\",\n\t\"nnh\",\n\t\"no\",\n\t\"nqo\",\n\t\"nr\",\n\t\"nso\",\n\t\"nus\",\n\t\"nv\",\n\t\"ny\",\n\t\"nyn\",\n\t\"oc\",\n\t\"oc-ES\",\n\t\"oka\",\n\t\"oka-US\",\n\t\"om\",\n\t\"om-KE\",\n\t\"or\",\n\t\"os\",\n\t\"os-RU\",\n\t\"osa\",\n\t\"pa\",\n\t\"pa-Arab\",\n\t\"pa-Guru\",\n\t\"pap\",\n\t\"pap-AW\",\n\t\"pcm\",\n\t\"pi\",\n\t\"pi-Latn\",\n\t\"pis\",\n\t\"pl\",\n\t\"pms\",\n\t\"prg\",\n\t\"ps\",\n\t\"ps-PK\",\n\t\"pt\",\n\t\"pt-AO\",\n\t\"pt-CH\",\n\t\"pt-CV\",\n\t\"pt-GQ\",\n\t\"pt-GW\",\n\t\"pt-LU\",\n\t\"pt-MO\",\n\t\"pt-MZ\",\n\t\"pt-PT\",\n\t\"pt-ST\",\n\t\"pt-TL\",\n\t\"qu\",\n\t\"qu-BO\",\n\t\"qu-EC\",\n\t\"quc\",\n\t\"raj\",\n\t\"rhg\",\n\t\"rhg-Rohg\",\n\t\"rhg-Rohg-BD\",\n\t\"rif\",\n\t\"rm\",\n\t\"rn\",\n\t\"ro\",\n\t\"ro-MD\",\n\t\"rof\",\n\t\"ru\",\n\t\"ru-BY\",\n\t\"ru-KG\",\n\t\"ru-KZ\",\n\t\"ru-MD\",\n\t\"ru-UA\",\n\t\"rw\",\n\t\"rwk\",\n\t\"sa\",\n\t\"sah\",\n\t\"saq\",\n\t\"sat\",\n\t\"sat-Deva\",\n\t\"sat-Olck\",\n\t\"sbp\",\n\t\"sc\",\n\t\"scn\",\n\t\"sd\",\n\t\"sd-Arab\",\n\t\"sd-Deva\",\n\t\"sdh\",\n\t\"sdh-IQ\",\n\t\"se\",\n\t\"se-FI\",\n\t\"se-SE\",\n\t\"seh\",\n\t\"ses\",\n\t\"sg\",\n\t\"sgs\",\n\t\"shi\",\n\t\"shi-Latn\",\n\t\"shi-Tfng\",\n\t\"shn\",\n\t\"shn-TH\",\n\t\"si\",\n\t\"sid\",\n\t\"sk\",\n\t\"skr\",\n\t\"sl\",\n\t\"sma\",\n\t\"sma-NO\",\n\t\"smj\",\n\t\"smj-NO\",\n\t\"smn\",\n\t\"sms\",\n\t\"sn\",\n\t\"so\",\n\t\"so-DJ\",\n\t\"so-ET\",\n\t\"so-KE\",\n\t\"sq\",\n\t\"sq-MK\",\n\t\"sq-XK\",\n\t\"sr\",\n\t\"sr-Cyrl\",\n\t\"sr-Cyrl-BA\",\n\t\"sr-Cyrl-ME\",\n\t\"sr-Cyrl-XK\",\n\t\"sr-Latn\",\n\t\"sr-Latn-BA\",\n\t\"sr-Latn-ME\",\n\t\"sr-Latn-XK\",\n\t\"ss\",\n\t\"ss-SZ\",\n\t\"ssy\",\n\t\"st\",\n\t\"st-LS\",\n\t\"su\",\n\t\"su-Latn\",\n\t\"suz\",\n\t\"suz-Deva\",\n\t\"suz-Sunu\",\n\t\"sv\",\n\t\"sv-AX\",\n\t\"sv-FI\",\n\t\"sw\",\n\t\"sw-CD\",\n\t\"sw-KE\",\n\t\"sw-UG\",\n\t\"syr\",\n\t\"syr-SY\",\n\t\"szl\",\n\t\"ta\",\n\t\"ta-LK\",\n\t\"ta-MY\",\n\t\"ta-SG\",\n\t\"te\",\n\t\"teo\",\n\t\"teo-KE\",\n\t\"tg\",\n\t\"th\",\n\t\"ti\",\n\t\"ti-ER\",\n\t\"tig\",\n\t\"tk\",\n\t\"tn\",\n\t\"tn-BW\",\n\t\"to\",\n\t\"tok\",\n\t\"tpi\",\n\t\"tr\",\n\t\"tr-CY\",\n\t\"trv\",\n\t\"trw\",\n\t\"ts\",\n\t\"tt\",\n\t\"twq\",\n\t\"tyv\",\n\t\"tzm\",\n\t\"ug\",\n\t\"uk\",\n\t\"und\",\n\t\"ur\",\n\t\"ur-IN\",\n\t\"uz\",\n\t\"uz-Arab\",\n\t\"uz-Cyrl\",\n\t\"uz-Latn\",\n\t\"vai\",\n\t\"vai-Latn\",\n\t\"vai-Vaii\",\n\t\"ve\",\n\t\"vec\",\n\t\"vi\",\n\t\"vmw\",\n\t\"vo\",\n\t\"vun\",\n\t\"wa\",\n\t\"wae\",\n\t\"wal\",\n\t\"wbp\",\n\t\"wo\",\n\t\"xh\",\n\t\"xnr\",\n\t\"xog\",\n\t\"yav\",\n\t\"yi\",\n\t\"yo\",\n\t\"yo-BJ\",\n\t\"yrl\",\n\t\"yrl-CO\",\n\t\"yrl-VE\",\n\t\"yue\",\n\t\"yue-Hans\",\n\t\"yue-Hant\",\n\t\"yue-Hant-CN\",\n\t\"yue-Hant-MO\",\n\t\"za\",\n\t\"zgh\",\n\t\"zh\",\n\t\"zh-Hans\",\n\t\"zh-Hans-HK\",\n\t\"zh-Hans-MO\",\n\t\"zh-Hans-MY\",\n\t\"zh-Hans-SG\",\n\t\"zh-Hant\",\n\t\"zh-Hant-HK\",\n\t\"zh-Hant-MO\",\n\t\"zh-Hant-MY\",\n\t\"zh-Latn\",\n\t\"zu\"\n];\n","import {match} from '@formatjs/intl-localematcher'\nimport {supportedLocales} from '@formatjs_generated/cldr.supported-locales/intl-listformat.js'\n\nfunction supportedLocalesOf(locale?: string | string[]) {\n if (!locale) {\n return true\n }\n const locales = Array.isArray(locale) ? locale : [locale]\n return (\n (Intl as any).ListFormat.supportedLocalesOf(locales).length ===\n locales.length\n )\n}\n\nexport function shouldPolyfill(locale = 'en'): string | undefined {\n if (\n typeof Intl === 'undefined' ||\n !('ListFormat' in Intl) ||\n !supportedLocalesOf(locale)\n ) {\n return locale ? match([locale], supportedLocales, 'en') : undefined\n }\n}\n","import ListFormat from '#packages/intl-listformat/index.js'\nimport {shouldPolyfill} from '#packages/intl-listformat/should-polyfill.js'\nimport {defineProperty, ensureIntl} from '#packages/ecma402-abstract/utils.js'\n\nconst intl = ensureIntl()\n\nif (shouldPolyfill()) {\n defineProperty(intl, 'ListFormat', {value: ListFormat})\n\n // Drain any locale data that was buffered before polyfill loaded\n const buf = (globalThis as Record<string, unknown>)\n .__FORMATJS_LISTFORMAT_DATA__ as\n | Parameters<(typeof ListFormat)['__addLocaleData']>[0][]\n | undefined\n if (buf) {\n for (const d of buf) ListFormat.__addLocaleData(d)\n delete (globalThis as Record<string, unknown>).__FORMATJS_LISTFORMAT_DATA__\n }\n}\n"],"x_google_ignoreList":[0,6,12],"mappings":"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;;EACb,KAAA,aAAA;;;EACqB,KAAA,wCAAA,IAAI,QAGlD;;AACJ;AAEA,IAAI;CAEF,IAAI,OAAO,WAAW,aACpB,OAAO,eAAe,WAAW,WAAW,OAAO,aAAa;EAC9D,OAAO;EACP,UAAU;EACV,YAAY;EACZ,cAAc;CAChB,CAAC;CAIH,OAAO,eAAe,WAAW,UAAU,aAAa,UAAU;EAChE,OAAO;EACP,UAAU;EACV,YAAY;EACZ,cAAc;CAChB,CAAC;CAED,OAAO,eAAe,WAAW,oBAAoB,UAAU;EAC7D,OAAO;EACP,UAAU;EACV,YAAY;EACZ,cAAc;CAChB,CAAC;AACH,QAAQ,CAER;;;AC3XA,MAAa,mBAAmB;CAC/B;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;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;;;AC5vBA,SAAS,mBAAmB,QAA4B;CACtD,IAAI,CAAC,QACH,OAAO;CAET,MAAM,UAAU,MAAM,QAAQ,MAAM,IAAI,SAAS,CAAC,MAAM;CACxD,OACG,KAAa,WAAW,mBAAmB,OAAO,CAAC,CAAC,WACrD,QAAQ;AAEZ;AAEA,SAAgB,eAAe,SAAS,MAA0B;CAChE,IACE,OAAO,SAAS,eAChB,EAAE,gBAAgB,SAClB,CAAC,mBAAmB,MAAM,GAE1B,OAAO,SAAS,MAAM,CAAC,MAAM,GAAG,kBAAkB,IAAI,IAAI,KAAA;AAE9D;;;AClBA,MAAM,OAAO,WAAW;AAExB,IAAI,eAAe,GAAG;CACpB,eAAe,MAAM,cAAc,EAAC,OAAO,WAAU,CAAC;CAGtD,MAAM,MAAO,WACV;CAGH,IAAI,KAAK;EACP,KAAK,MAAM,KAAK,KAAK,WAAW,gBAAgB,CAAC;EACjD,OAAQ,WAAuC;CACjD;AACF"}
@@ -1,5 +1,4 @@
1
1
  //#region packages/intl-listformat/should-polyfill.d.ts
2
- declare function shouldPolyfill(locale?: string): string | undefined;
2
+ export declare function shouldPolyfill(locale?: string): string | undefined;
3
3
  //#endregion
4
- export { shouldPolyfill };
5
4
  //# sourceMappingURL=should-polyfill.d.ts.map