mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 10:01:02 +00:00
1 line
29 KiB
Plaintext
1 line
29 KiB
Plaintext
{"dependencies":[{"name":"expo-modules-core","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":57,"index":57}}],"key":"fU8WLIPqoAGygnPbZ/QJiQQfXEY=","exportNames":["*"],"imports":1}},{"name":"fontfaceobserver","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":58},"end":{"line":2,"column":44,"index":102}}],"key":"lGu76V8RISdu7s/yI5G3mTCgZXY=","exportNames":["*"],"imports":1}},{"name":"./Font.types","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":103},"end":{"line":3,"column":43,"index":146}}],"key":"iwvcxaVgfIXdww6iPrKSgtcaZy8=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return _default;\n }\n });\n exports._createWebFontTemplate = _createWebFontTemplate;\n var _expoModulesCore = require(_dependencyMap[0], \"expo-modules-core\");\n var _fontfaceobserver = require(_dependencyMap[1], \"fontfaceobserver\");\n var FontObserver = _interopDefault(_fontfaceobserver);\n var _FontTypes = require(_dependencyMap[2], \"./Font.types\");\n function getFontFaceStyleSheet() {\n if (!_expoModulesCore.Platform.isDOMAvailable) {\n return null;\n }\n const styleSheet = getStyleElement();\n return styleSheet.sheet ? styleSheet.sheet : null;\n }\n function getFontFaceRules() {\n const sheet = getFontFaceStyleSheet();\n if (sheet) {\n // @ts-ignore: rule iterator\n const rules = [...sheet.cssRules];\n const items = [];\n for (let i = 0; i < rules.length; i++) {\n const rule = rules[i];\n if (rule instanceof CSSFontFaceRule) {\n items.push({\n rule,\n index: i\n });\n }\n }\n return items;\n }\n return [];\n }\n function getFontFaceRulesMatchingResource(fontFamilyName, options) {\n const rules = getFontFaceRules();\n return rules.filter(({\n rule\n }) => {\n return rule.style.fontFamily === fontFamilyName && (options && options.display ? options.display === rule.style.fontDisplay : true);\n });\n }\n const serverContext = new Set();\n function getHeadElements() {\n const entries = [...serverContext.entries()];\n if (!entries.length) {\n return [];\n }\n const css = entries.map(([{\n css\n }]) => css).join('\\n');\n const links = entries.map(([{\n resourceId\n }]) => resourceId);\n // TODO: Maybe return nothing if no fonts were loaded.\n return [{\n $$type: 'style',\n children: css,\n id: ID,\n type: 'text/css'\n }, ...links.map(resourceId => ({\n $$type: 'link',\n rel: 'preload',\n href: resourceId,\n as: 'font',\n crossorigin: ''\n }))];\n }\n var _default = {\n async unloadAllAsync() {\n if (!_expoModulesCore.Platform.isDOMAvailable) return;\n const element = document.getElementById(ID);\n if (element && element instanceof HTMLStyleElement) {\n document.removeChild(element);\n }\n },\n async unloadAsync(fontFamilyName, options) {\n const sheet = getFontFaceStyleSheet();\n if (!sheet) return;\n const items = getFontFaceRulesMatchingResource(fontFamilyName, options);\n for (const item of items) {\n sheet.deleteRule(item.index);\n }\n },\n getServerResources() {\n const elements = getHeadElements();\n return elements.map(element => {\n switch (element.$$type) {\n case 'style':\n return `<style id=\"${element.id}\" type=\"${element.type}\">${element.children}</style>`;\n case 'link':\n return `<link rel=\"${element.rel}\" href=\"${element.href}\" as=\"${element.as}\" crossorigin=\"${element.crossorigin}\" />`;\n default:\n return '';\n }\n }).filter(Boolean);\n },\n resetServerContext() {\n serverContext.clear();\n },\n getLoadedFonts() {\n if (typeof window === 'undefined') {\n return [...serverContext.values()].map(({\n name\n }) => name);\n }\n const rules = getFontFaceRules();\n return rules.map(({\n rule\n }) => rule.style.fontFamily);\n },\n isLoaded(fontFamilyName, resource = {}) {\n if (typeof window === 'undefined') {\n return !![...serverContext.values()].find(asset => {\n return asset.name === fontFamilyName;\n });\n }\n return getFontFaceRulesMatchingResource(fontFamilyName, resource)?.length > 0;\n },\n // NOTE(EvanBacon): No async keyword! This cannot return a promise in Node environments.\n loadAsync(fontFamilyName, resource) {\n if (typeof window === 'undefined') {\n serverContext.add({\n name: fontFamilyName,\n css: _createWebFontTemplate(fontFamilyName, resource),\n // @ts-expect-error: typeof string\n resourceId: resource.uri\n });\n return Promise.resolve();\n }\n const canInjectStyle = document.head && typeof document.head.appendChild === 'function';\n if (!canInjectStyle) {\n throw new _expoModulesCore.CodedError('ERR_WEB_ENVIRONMENT', `The browser's \\`document.head\\` element doesn't support injecting fonts.`);\n }\n const style = getStyleElement();\n document.head.appendChild(style);\n const res = getFontFaceRulesMatchingResource(fontFamilyName, resource);\n if (!res.length) {\n _createWebStyle(fontFamilyName, resource);\n }\n if (!isFontLoadingListenerSupported()) {\n return Promise.resolve();\n }\n return new FontObserver.default(fontFamilyName, {\n // @ts-expect-error: TODO(@kitten): Typings indicate that the polyfill may not support this?\n display: resource.display\n }).load(null, 6000);\n }\n };\n const ID = 'expo-generated-fonts';\n function getStyleElement() {\n const element = document.getElementById(ID);\n if (element && element instanceof HTMLStyleElement) {\n return element;\n }\n const styleElement = document.createElement('style');\n styleElement.id = ID;\n styleElement.type = 'text/css';\n return styleElement;\n }\n function _createWebFontTemplate(fontFamily, resource) {\n return `@font-face{font-family:${fontFamily};src:url(${resource.uri});font-display:${resource.display || _FontTypes.FontDisplay.AUTO}}`;\n }\n function _createWebStyle(fontFamily, resource) {\n const fontStyle = _createWebFontTemplate(fontFamily, resource);\n const styleElement = getStyleElement();\n // @ts-ignore: TypeScript does not define HTMLStyleElement::styleSheet. This is just for IE and\n // possibly can be removed if it's unnecessary on IE 11.\n if (styleElement.styleSheet) {\n const styleElementIE = styleElement;\n styleElementIE.styleSheet.cssText = styleElementIE.styleSheet.cssText ? styleElementIE.styleSheet.cssText + fontStyle : fontStyle;\n } else {\n const textNode = document.createTextNode(fontStyle);\n styleElement.appendChild(textNode);\n }\n return styleElement;\n }\n function isFontLoadingListenerSupported() {\n const {\n userAgent\n } = window.navigator;\n // WebKit is broken https://github.com/bramstein/fontfaceobserver/issues/95\n const isIOS = !!userAgent.match(/iPad|iPhone/i);\n const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);\n // Edge is broken https://github.com/bramstein/fontfaceobserver/issues/109#issuecomment-333356795\n const isEdge = userAgent.includes('Edge');\n // Internet Explorer\n const isIE = userAgent.includes('Trident');\n // Firefox\n const isFirefox = userAgent.includes('Firefox');\n return !isSafari && !isIOS && !isEdge && !isIE && !isFirefox;\n }\n});","lineCount":207,"map":[[12,2,59,0,"Object"],[12,8,59,0],[12,9,59,0,"defineProperty"],[12,23,59,0],[12,24,59,0,"exports"],[12,31,59,0],[13,4,59,0,"enumerable"],[13,14,59,0],[14,4,59,0,"get"],[14,7,59,0],[14,18,59,0,"get"],[14,19,59,0],[15,6,59,0],[15,13,59,0,"_default"],[15,21,59,0],[16,4,59,0],[17,2,59,0],[18,2,151,0,"exports"],[18,9,151,0],[18,10,151,0,"_createWebFontTemplate"],[18,32,151,0],[18,35,151,0,"_createWebFontTemplate"],[18,57,151,0],[19,2,1,0],[19,6,1,0,"_expoModulesCore"],[19,22,1,0],[19,25,1,0,"require"],[19,32,1,0],[19,33,1,0,"_dependencyMap"],[19,47,1,0],[20,2,2,0],[20,6,2,0,"_fontfaceobserver"],[20,23,2,0],[20,26,2,0,"require"],[20,33,2,0],[20,34,2,0,"_dependencyMap"],[20,48,2,0],[21,2,2,0],[21,6,2,0,"FontObserver"],[21,18,2,0],[21,21,2,0,"_interopDefault"],[21,36,2,0],[21,37,2,0,"_fontfaceobserver"],[21,54,2,0],[22,2,3,0],[22,6,3,0,"_FontTypes"],[22,16,3,0],[22,19,3,0,"require"],[22,26,3,0],[22,27,3,0,"_dependencyMap"],[22,41,3,0],[23,2,4,0],[23,11,4,9,"getFontFaceStyleSheet"],[23,32,4,30,"getFontFaceStyleSheet"],[23,33,4,30],[23,35,4,33],[24,4,5,4],[24,8,5,8],[24,9,5,9,"Platform"],[24,25,5,17],[24,26,5,17,"Platform"],[24,34,5,17],[24,35,5,18,"isDOMAvailable"],[24,49,5,32],[24,51,5,34],[25,6,6,8],[25,13,6,15],[25,17,6,19],[26,4,7,4],[27,4,8,4],[27,10,8,10,"styleSheet"],[27,20,8,20],[27,23,8,23,"getStyleElement"],[27,38,8,38],[27,39,8,39],[27,40,8,40],[28,4,9,4],[28,11,9,11,"styleSheet"],[28,21,9,21],[28,22,9,22,"sheet"],[28,27,9,27],[28,30,9,30,"styleSheet"],[28,40,9,40],[28,41,9,41,"sheet"],[28,46,9,46],[28,49,9,49],[28,53,9,53],[29,2,10,0],[30,2,11,0],[30,11,11,9,"getFontFaceRules"],[30,27,11,25,"getFontFaceRules"],[30,28,11,25],[30,30,11,28],[31,4,12,4],[31,10,12,10,"sheet"],[31,15,12,15],[31,18,12,18,"getFontFaceStyleSheet"],[31,39,12,39],[31,40,12,40],[31,41,12,41],[32,4,13,4],[32,8,13,8,"sheet"],[32,13,13,13],[32,15,13,15],[33,6,14,8],[34,6,15,8],[34,12,15,14,"rules"],[34,17,15,19],[34,20,15,22],[34,21,15,23],[34,24,15,26,"sheet"],[34,29,15,31],[34,30,15,32,"cssRules"],[34,38,15,40],[34,39,15,41],[35,6,16,8],[35,12,16,14,"items"],[35,17,16,19],[35,20,16,22],[35,22,16,24],[36,6,17,8],[36,11,17,13],[36,15,17,17,"i"],[36,16,17,18],[36,19,17,21],[36,20,17,22],[36,22,17,24,"i"],[36,23,17,25],[36,26,17,28,"rules"],[36,31,17,33],[36,32,17,34,"length"],[36,38,17,40],[36,40,17,42,"i"],[36,41,17,43],[36,43,17,45],[36,45,17,47],[37,8,18,12],[37,14,18,18,"rule"],[37,18,18,22],[37,21,18,25,"rules"],[37,26,18,30],[37,27,18,31,"i"],[37,28,18,32],[37,29,18,33],[38,8,19,12],[38,12,19,16,"rule"],[38,16,19,20],[38,28,19,32,"CSSFontFaceRule"],[38,43,19,47],[38,45,19,49],[39,10,20,16,"items"],[39,15,20,21],[39,16,20,22,"push"],[39,20,20,26],[39,21,20,27],[40,12,20,29,"rule"],[40,16,20,33],[41,12,20,35,"index"],[41,17,20,40],[41,19,20,42,"i"],[42,10,20,44],[42,11,20,45],[42,12,20,46],[43,8,21,12],[44,6,22,8],[45,6,23,8],[45,13,23,15,"items"],[45,18,23,20],[46,4,24,4],[47,4,25,4],[47,11,25,11],[47,13,25,13],[48,2,26,0],[49,2,27,0],[49,11,27,9,"getFontFaceRulesMatchingResource"],[49,43,27,41,"getFontFaceRulesMatchingResource"],[49,44,27,42,"fontFamilyName"],[49,58,27,56],[49,60,27,58,"options"],[49,67,27,65],[49,69,27,67],[50,4,28,4],[50,10,28,10,"rules"],[50,15,28,15],[50,18,28,18,"getFontFaceRules"],[50,34,28,34],[50,35,28,35],[50,36,28,36],[51,4,29,4],[51,11,29,11,"rules"],[51,16,29,16],[51,17,29,17,"filter"],[51,23,29,23],[51,24,29,24],[51,25,29,25],[52,6,29,27,"rule"],[53,4,29,32],[53,5,29,33],[53,10,29,38],[54,6,30,8],[54,13,30,16,"rule"],[54,17,30,20],[54,18,30,21,"style"],[54,23,30,26],[54,24,30,27,"fontFamily"],[54,34,30,37],[54,39,30,42,"fontFamilyName"],[54,53,30,56],[54,58,31,13,"options"],[54,65,31,20],[54,69,31,24,"options"],[54,76,31,31],[54,77,31,32,"display"],[54,84,31,39],[54,87,31,42,"options"],[54,94,31,49],[54,95,31,50,"display"],[54,102,31,57],[54,107,31,62,"rule"],[54,111,31,66],[54,112,31,67,"style"],[54,117,31,72],[54,118,31,73,"fontDisplay"],[54,129,31,84],[54,132,31,87],[54,136,31,91],[54,137,31,92],[55,4,32,4],[55,5,32,5],[55,6,32,6],[56,2,33,0],[57,2,34,0],[57,8,34,6,"serverContext"],[57,21,34,19],[57,24,34,22],[57,28,34,26,"Set"],[57,31,34,29],[57,32,34,30],[57,33,34,31],[58,2,35,0],[58,11,35,9,"getHeadElements"],[58,26,35,24,"getHeadElements"],[58,27,35,24],[58,29,35,27],[59,4,36,4],[59,10,36,10,"entries"],[59,17,36,17],[59,20,36,20],[59,21,36,21],[59,24,36,24,"serverContext"],[59,37,36,37],[59,38,36,38,"entries"],[59,45,36,45],[59,46,36,46],[59,47,36,47],[59,48,36,48],[60,4,37,4],[60,8,37,8],[60,9,37,9,"entries"],[60,16,37,16],[60,17,37,17,"length"],[60,23,37,23],[60,25,37,25],[61,6,38,8],[61,13,38,15],[61,15,38,17],[62,4,39,4],[63,4,40,4],[63,10,40,10,"css"],[63,13,40,13],[63,16,40,16,"entries"],[63,23,40,23],[63,24,40,24,"map"],[63,27,40,27],[63,28,40,28],[63,29,40,29],[63,30,40,30],[64,6,40,32,"css"],[65,4,40,36],[65,5,40,37],[65,6,40,38],[65,11,40,43,"css"],[65,14,40,46],[65,15,40,47],[65,16,40,48,"join"],[65,20,40,52],[65,21,40,53],[65,25,40,57],[65,26,40,58],[66,4,41,4],[66,10,41,10,"links"],[66,15,41,15],[66,18,41,18,"entries"],[66,25,41,25],[66,26,41,26,"map"],[66,29,41,29],[66,30,41,30],[66,31,41,31],[66,32,41,32],[67,6,41,34,"resourceId"],[68,4,41,45],[68,5,41,46],[68,6,41,47],[68,11,41,52,"resourceId"],[68,21,41,62],[68,22,41,63],[69,4,42,4],[70,4,43,4],[70,11,43,11],[70,12,44,8],[71,6,45,12,"$$type"],[71,12,45,18],[71,14,45,20],[71,21,45,27],[72,6,46,12,"children"],[72,14,46,20],[72,16,46,22,"css"],[72,19,46,25],[73,6,47,12,"id"],[73,8,47,14],[73,10,47,16,"ID"],[73,12,47,18],[74,6,48,12,"type"],[74,10,48,16],[74,12,48,18],[75,4,49,8],[75,5,49,9],[75,7,50,8],[75,10,50,11,"links"],[75,15,50,16],[75,16,50,17,"map"],[75,19,50,20],[75,20,50,22,"resourceId"],[75,30,50,32],[75,35,50,38],[76,6,51,12,"$$type"],[76,12,51,18],[76,14,51,20],[76,20,51,26],[77,6,52,12,"rel"],[77,9,52,15],[77,11,52,17],[77,20,52,26],[78,6,53,12,"href"],[78,10,53,16],[78,12,53,18,"resourceId"],[78,22,53,28],[79,6,54,12,"as"],[79,8,54,14],[79,10,54,16],[79,16,54,22],[80,6,55,12,"crossorigin"],[80,17,55,23],[80,19,55,25],[81,4,56,8],[81,5,56,9],[81,6,56,10],[81,7,56,11],[81,8,57,5],[82,2,58,0],[83,2,59,0],[83,6,59,0,"_default"],[83,14,59,0],[83,17,59,15],[84,4,60,4],[84,10,60,10,"unloadAllAsync"],[84,24,60,24,"unloadAllAsync"],[84,25,60,24],[84,27,60,27],[85,6,61,8],[85,10,61,12],[85,11,61,13,"Platform"],[85,27,61,21],[85,28,61,21,"Platform"],[85,36,61,21],[85,37,61,22,"isDOMAvailable"],[85,51,61,36],[85,53,62,12],[86,6,63,8],[86,12,63,14,"element"],[86,19,63,21],[86,22,63,24,"document"],[86,30,63,32],[86,31,63,33,"getElementById"],[86,45,63,47],[86,46,63,48,"ID"],[86,48,63,50],[86,49,63,51],[87,6,64,8],[87,10,64,12,"element"],[87,17,64,19],[87,21,64,23,"element"],[87,28,64,30],[87,40,64,42,"HTMLStyleElement"],[87,56,64,58],[87,58,64,60],[88,8,65,12,"document"],[88,16,65,20],[88,17,65,21,"removeChild"],[88,28,65,32],[88,29,65,33,"element"],[88,36,65,40],[88,37,65,41],[89,6,66,8],[90,4,67,4],[90,5,67,5],[91,4,68,4],[91,10,68,10,"unloadAsync"],[91,21,68,21,"unloadAsync"],[91,22,68,22,"fontFamilyName"],[91,36,68,36],[91,38,68,38,"options"],[91,45,68,45],[91,47,68,47],[92,6,69,8],[92,12,69,14,"sheet"],[92,17,69,19],[92,20,69,22,"getFontFaceStyleSheet"],[92,41,69,43],[92,42,69,44],[92,43,69,45],[93,6,70,8],[93,10,70,12],[93,11,70,13,"sheet"],[93,16,70,18],[93,18,71,12],[94,6,72,8],[94,12,72,14,"items"],[94,17,72,19],[94,20,72,22,"getFontFaceRulesMatchingResource"],[94,52,72,54],[94,53,72,55,"fontFamilyName"],[94,67,72,69],[94,69,72,71,"options"],[94,76,72,78],[94,77,72,79],[95,6,73,8],[95,11,73,13],[95,17,73,19,"item"],[95,21,73,23],[95,25,73,27,"items"],[95,30,73,32],[95,32,73,34],[96,8,74,12,"sheet"],[96,13,74,17],[96,14,74,18,"deleteRule"],[96,24,74,28],[96,25,74,29,"item"],[96,29,74,33],[96,30,74,34,"index"],[96,35,74,39],[96,36,74,40],[97,6,75,8],[98,4,76,4],[98,5,76,5],[99,4,77,4,"getServerResources"],[99,22,77,22,"getServerResources"],[99,23,77,22],[99,25,77,25],[100,6,78,8],[100,12,78,14,"elements"],[100,20,78,22],[100,23,78,25,"getHeadElements"],[100,38,78,40],[100,39,78,41],[100,40,78,42],[101,6,79,8],[101,13,79,15,"elements"],[101,21,79,23],[101,22,80,13,"map"],[101,25,80,16],[101,26,80,18,"element"],[101,33,80,25],[101,37,80,30],[102,8,81,12],[102,16,81,20,"element"],[102,23,81,27],[102,24,81,28,"$$type"],[102,30,81,34],[103,10,82,16],[103,15,82,21],[103,22,82,28],[104,12,83,20],[104,19,83,27],[104,33,83,41,"element"],[104,40,83,48],[104,41,83,49,"id"],[104,43,83,51],[104,54,83,62,"element"],[104,61,83,69],[104,62,83,70,"type"],[104,66,83,74],[104,71,83,79,"element"],[104,78,83,86],[104,79,83,87,"children"],[104,87,83,95],[104,97,83,105],[105,10,84,16],[105,15,84,21],[105,21,84,27],[106,12,85,20],[106,19,85,27],[106,33,85,41,"element"],[106,40,85,48],[106,41,85,49,"rel"],[106,44,85,52],[106,55,85,63,"element"],[106,62,85,70],[106,63,85,71,"href"],[106,67,85,75],[106,76,85,84,"element"],[106,83,85,91],[106,84,85,92,"as"],[106,86,85,94],[106,104,85,112,"element"],[106,111,85,119],[106,112,85,120,"crossorigin"],[106,123,85,131],[106,129,85,137],[107,10,86,16],[108,12,87,20],[108,19,87,27],[108,21,87,29],[109,8,88,12],[110,6,89,8],[110,7,89,9],[110,8,89,10],[110,9,90,13,"filter"],[110,15,90,19],[110,16,90,20,"Boolean"],[110,23,90,27],[110,24,90,28],[111,4,91,4],[111,5,91,5],[112,4,92,4,"resetServerContext"],[112,22,92,22,"resetServerContext"],[112,23,92,22],[112,25,92,25],[113,6,93,8,"serverContext"],[113,19,93,21],[113,20,93,22,"clear"],[113,25,93,27],[113,26,93,28],[113,27,93,29],[114,4,94,4],[114,5,94,5],[115,4,95,4,"getLoadedFonts"],[115,18,95,18,"getLoadedFonts"],[115,19,95,18],[115,21,95,21],[116,6,96,8],[116,10,96,12],[116,17,96,19,"window"],[116,23,96,25],[116,28,96,30],[116,39,96,41],[116,41,96,43],[117,8,97,12],[117,15,97,19],[117,16,97,20],[117,19,97,23,"serverContext"],[117,32,97,36],[117,33,97,37,"values"],[117,39,97,43],[117,40,97,44],[117,41,97,45],[117,42,97,46],[117,43,97,47,"map"],[117,46,97,50],[117,47,97,51],[117,48,97,52],[118,10,97,54,"name"],[119,8,97,59],[119,9,97,60],[119,14,97,65,"name"],[119,18,97,69],[119,19,97,70],[120,6,98,8],[121,6,99,8],[121,12,99,14,"rules"],[121,17,99,19],[121,20,99,22,"getFontFaceRules"],[121,36,99,38],[121,37,99,39],[121,38,99,40],[122,6,100,8],[122,13,100,15,"rules"],[122,18,100,20],[122,19,100,21,"map"],[122,22,100,24],[122,23,100,25],[122,24,100,26],[123,8,100,28,"rule"],[124,6,100,33],[124,7,100,34],[124,12,100,39,"rule"],[124,16,100,43],[124,17,100,44,"style"],[124,22,100,49],[124,23,100,50,"fontFamily"],[124,33,100,60],[124,34,100,61],[125,4,101,4],[125,5,101,5],[126,4,102,4,"isLoaded"],[126,12,102,12,"isLoaded"],[126,13,102,13,"fontFamilyName"],[126,27,102,27],[126,29,102,29,"resource"],[126,37,102,37],[126,40,102,40],[126,41,102,41],[126,42,102,42],[126,44,102,44],[127,6,103,8],[127,10,103,12],[127,17,103,19,"window"],[127,23,103,25],[127,28,103,30],[127,39,103,41],[127,41,103,43],[128,8,104,12],[128,15,104,19],[128,16,104,20],[128,17,104,21],[128,18,104,22],[128,21,104,25,"serverContext"],[128,34,104,38],[128,35,104,39,"values"],[128,41,104,45],[128,42,104,46],[128,43,104,47],[128,44,104,48],[128,45,104,49,"find"],[128,49,104,53],[128,50,104,55,"asset"],[128,55,104,60],[128,59,104,65],[129,10,105,16],[129,17,105,23,"asset"],[129,22,105,28],[129,23,105,29,"name"],[129,27,105,33],[129,32,105,38,"fontFamilyName"],[129,46,105,52],[130,8,106,12],[130,9,106,13],[130,10,106,14],[131,6,107,8],[132,6,108,8],[132,13,108,15,"getFontFaceRulesMatchingResource"],[132,45,108,47],[132,46,108,48,"fontFamilyName"],[132,60,108,62],[132,62,108,64,"resource"],[132,70,108,72],[132,71,108,73],[132,73,108,75,"length"],[132,79,108,81],[132,82,108,84],[132,83,108,85],[133,4,109,4],[133,5,109,5],[134,4,110,4],[135,4,111,4,"loadAsync"],[135,13,111,13,"loadAsync"],[135,14,111,14,"fontFamilyName"],[135,28,111,28],[135,30,111,30,"resource"],[135,38,111,38],[135,40,111,40],[136,6,112,8],[136,10,112,12],[136,17,112,19,"window"],[136,23,112,25],[136,28,112,30],[136,39,112,41],[136,41,112,43],[137,8,113,12,"serverContext"],[137,21,113,25],[137,22,113,26,"add"],[137,25,113,29],[137,26,113,30],[138,10,114,16,"name"],[138,14,114,20],[138,16,114,22,"fontFamilyName"],[138,30,114,36],[139,10,115,16,"css"],[139,13,115,19],[139,15,115,21,"_createWebFontTemplate"],[139,37,115,43],[139,38,115,44,"fontFamilyName"],[139,52,115,58],[139,54,115,60,"resource"],[139,62,115,68],[139,63,115,69],[140,10,116,16],[141,10,117,16,"resourceId"],[141,20,117,26],[141,22,117,28,"resource"],[141,30,117,36],[141,31,117,37,"uri"],[142,8,118,12],[142,9,118,13],[142,10,118,14],[143,8,119,12],[143,15,119,19,"Promise"],[143,22,119,26],[143,23,119,27,"resolve"],[143,30,119,34],[143,31,119,35],[143,32,119,36],[144,6,120,8],[145,6,121,8],[145,12,121,14,"canInjectStyle"],[145,26,121,28],[145,29,121,31,"document"],[145,37,121,39],[145,38,121,40,"head"],[145,42,121,44],[145,46,121,48],[145,53,121,55,"document"],[145,61,121,63],[145,62,121,64,"head"],[145,66,121,68],[145,67,121,69,"appendChild"],[145,78,121,80],[145,83,121,85],[145,93,121,95],[146,6,122,8],[146,10,122,12],[146,11,122,13,"canInjectStyle"],[146,25,122,27],[146,27,122,29],[147,8,123,12],[147,14,123,18],[147,18,123,22,"CodedError"],[147,34,123,32],[147,35,123,32,"CodedError"],[147,45,123,32],[147,46,123,33],[147,67,123,54],[147,69,123,56],[147,143,123,130],[147,144,123,131],[148,6,124,8],[149,6,125,8],[149,12,125,14,"style"],[149,17,125,19],[149,20,125,22,"getStyleElement"],[149,35,125,37],[149,36,125,38],[149,37,125,39],[150,6,126,8,"document"],[150,14,126,16],[150,15,126,17,"head"],[150,19,126,21],[150,20,126,22,"appendChild"],[150,31,126,33],[150,32,126,34,"style"],[150,37,126,39],[150,38,126,40],[151,6,127,8],[151,12,127,14,"res"],[151,15,127,17],[151,18,127,20,"getFontFaceRulesMatchingResource"],[151,50,127,52],[151,51,127,53,"fontFamilyName"],[151,65,127,67],[151,67,127,69,"resource"],[151,75,127,77],[151,76,127,78],[152,6,128,8],[152,10,128,12],[152,11,128,13,"res"],[152,14,128,16],[152,15,128,17,"length"],[152,21,128,23],[152,23,128,25],[153,8,129,12,"_createWebStyle"],[153,23,129,27],[153,24,129,28,"fontFamilyName"],[153,38,129,42],[153,40,129,44,"resource"],[153,48,129,52],[153,49,129,53],[154,6,130,8],[155,6,131,8],[155,10,131,12],[155,11,131,13,"isFontLoadingListenerSupported"],[155,41,131,43],[155,42,131,44],[155,43,131,45],[155,45,131,47],[156,8,132,12],[156,15,132,19,"Promise"],[156,22,132,26],[156,23,132,27,"resolve"],[156,30,132,34],[156,31,132,35],[156,32,132,36],[157,6,133,8],[158,6,134,8],[158,13,134,15],[158,17,134,19,"FontObserver"],[158,29,134,31],[158,30,134,31,"default"],[158,37,134,31],[158,38,134,32,"fontFamilyName"],[158,52,134,46],[158,54,134,48],[159,8,135,12],[160,8,136,12,"display"],[160,15,136,19],[160,17,136,21,"resource"],[160,25,136,29],[160,26,136,30,"display"],[161,6,137,8],[161,7,137,9],[161,8,137,10],[161,9,137,11,"load"],[161,13,137,15],[161,14,137,16],[161,18,137,20],[161,20,137,22],[161,24,137,26],[161,25,137,27],[162,4,138,4],[163,2,139,0],[163,3,139,1],[164,2,140,0],[164,8,140,6,"ID"],[164,10,140,8],[164,13,140,11],[164,35,140,33],[165,2,141,0],[165,11,141,9,"getStyleElement"],[165,26,141,24,"getStyleElement"],[165,27,141,24],[165,29,141,27],[166,4,142,4],[166,10,142,10,"element"],[166,17,142,17],[166,20,142,20,"document"],[166,28,142,28],[166,29,142,29,"getElementById"],[166,43,142,43],[166,44,142,44,"ID"],[166,46,142,46],[166,47,142,47],[167,4,143,4],[167,8,143,8,"element"],[167,15,143,15],[167,19,143,19,"element"],[167,26,143,26],[167,38,143,38,"HTMLStyleElement"],[167,54,143,54],[167,56,143,56],[168,6,144,8],[168,13,144,15,"element"],[168,20,144,22],[169,4,145,4],[170,4,146,4],[170,10,146,10,"styleElement"],[170,22,146,22],[170,25,146,25,"document"],[170,33,146,33],[170,34,146,34,"createElement"],[170,47,146,47],[170,48,146,48],[170,55,146,55],[170,56,146,56],[171,4,147,4,"styleElement"],[171,16,147,16],[171,17,147,17,"id"],[171,19,147,19],[171,22,147,22,"ID"],[171,24,147,24],[172,4,148,4,"styleElement"],[172,16,148,16],[172,17,148,17,"type"],[172,21,148,21],[172,24,148,24],[172,34,148,34],[173,4,149,4],[173,11,149,11,"styleElement"],[173,23,149,23],[174,2,150,0],[175,2,151,7],[175,11,151,16,"_createWebFontTemplate"],[175,33,151,38,"_createWebFontTemplate"],[175,34,151,39,"fontFamily"],[175,44,151,49],[175,46,151,51,"resource"],[175,54,151,59],[175,56,151,61],[176,4,152,4],[176,11,152,11],[176,37,152,37,"fontFamily"],[176,47,152,47],[176,59,152,59,"resource"],[176,67,152,67],[176,68,152,68,"uri"],[176,71,152,71],[176,89,152,89,"resource"],[176,97,152,97],[176,98,152,98,"display"],[176,105,152,105],[176,109,152,109,"FontDisplay"],[176,119,152,120],[176,120,152,120,"FontDisplay"],[176,131,152,120],[176,132,152,121,"AUTO"],[176,136,152,125],[176,139,152,128],[177,2,153,0],[178,2,154,0],[178,11,154,9,"_createWebStyle"],[178,26,154,24,"_createWebStyle"],[178,27,154,25,"fontFamily"],[178,37,154,35],[178,39,154,37,"resource"],[178,47,154,45],[178,49,154,47],[179,4,155,4],[179,10,155,10,"fontStyle"],[179,19,155,19],[179,22,155,22,"_createWebFontTemplate"],[179,44,155,44],[179,45,155,45,"fontFamily"],[179,55,155,55],[179,57,155,57,"resource"],[179,65,155,65],[179,66,155,66],[180,4,156,4],[180,10,156,10,"styleElement"],[180,22,156,22],[180,25,156,25,"getStyleElement"],[180,40,156,40],[180,41,156,41],[180,42,156,42],[181,4,157,4],[182,4,158,4],[183,4,159,4],[183,8,159,8,"styleElement"],[183,20,159,20],[183,21,159,21,"styleSheet"],[183,31,159,31],[183,33,159,33],[184,6,160,8],[184,12,160,14,"styleElementIE"],[184,26,160,28],[184,29,160,31,"styleElement"],[184,41,160,43],[185,6,161,8,"styleElementIE"],[185,20,161,22],[185,21,161,23,"styleSheet"],[185,31,161,33],[185,32,161,34,"cssText"],[185,39,161,41],[185,42,161,44,"styleElementIE"],[185,56,161,58],[185,57,161,59,"styleSheet"],[185,67,161,69],[185,68,161,70,"cssText"],[185,75,161,77],[185,78,162,14,"styleElementIE"],[185,92,162,28],[185,93,162,29,"styleSheet"],[185,103,162,39],[185,104,162,40,"cssText"],[185,111,162,47],[185,114,162,50,"fontStyle"],[185,123,162,59],[185,126,163,14,"fontStyle"],[185,135,163,23],[186,4,164,4],[186,5,164,5],[186,11,165,9],[187,6,166,8],[187,12,166,14,"textNode"],[187,20,166,22],[187,23,166,25,"document"],[187,31,166,33],[187,32,166,34,"createTextNode"],[187,46,166,48],[187,47,166,49,"fontStyle"],[187,56,166,58],[187,57,166,59],[188,6,167,8,"styleElement"],[188,18,167,20],[188,19,167,21,"appendChild"],[188,30,167,32],[188,31,167,33,"textNode"],[188,39,167,41],[188,40,167,42],[189,4,168,4],[190,4,169,4],[190,11,169,11,"styleElement"],[190,23,169,23],[191,2,170,0],[192,2,171,0],[192,11,171,9,"isFontLoadingListenerSupported"],[192,41,171,39,"isFontLoadingListenerSupported"],[192,42,171,39],[192,44,171,42],[193,4,172,4],[193,10,172,10],[194,6,172,12,"userAgent"],[195,4,172,22],[195,5,172,23],[195,8,172,26,"window"],[195,14,172,32],[195,15,172,33,"navigator"],[195,24,172,42],[196,4,173,4],[197,4,174,4],[197,10,174,10,"isIOS"],[197,15,174,15],[197,18,174,18],[197,19,174,19],[197,20,174,20,"userAgent"],[197,29,174,29],[197,30,174,30,"match"],[197,35,174,35],[197,36,174,36],[197,50,174,50],[197,51,174,51],[198,4,175,4],[198,10,175,10,"isSafari"],[198,18,175,18],[198,21,175,21],[198,53,175,53],[198,54,175,54,"test"],[198,58,175,58],[198,59,175,59,"navigator"],[198,68,175,68],[198,69,175,69,"userAgent"],[198,78,175,78],[198,79,175,79],[199,4,176,4],[200,4,177,4],[200,10,177,10,"isEdge"],[200,16,177,16],[200,19,177,19,"userAgent"],[200,28,177,28],[200,29,177,29,"includes"],[200,37,177,37],[200,38,177,38],[200,44,177,44],[200,45,177,45],[201,4,178,4],[202,4,179,4],[202,10,179,10,"isIE"],[202,14,179,14],[202,17,179,17,"userAgent"],[202,26,179,26],[202,27,179,27,"includes"],[202,35,179,35],[202,36,179,36],[202,45,179,45],[202,46,179,46],[203,4,180,4],[204,4,181,4],[204,10,181,10,"isFirefox"],[204,19,181,19],[204,22,181,22,"userAgent"],[204,31,181,31],[204,32,181,32,"includes"],[204,40,181,40],[204,41,181,41],[204,50,181,50],[204,51,181,51],[205,4,182,4],[205,11,182,11],[205,12,182,12,"isSafari"],[205,20,182,20],[205,24,182,24],[205,25,182,25,"isIOS"],[205,30,182,30],[205,34,182,34],[205,35,182,35,"isEdge"],[205,41,182,41],[205,45,182,45],[205,46,182,46,"isIE"],[205,50,182,50],[205,54,182,54],[205,55,182,55,"isFirefox"],[205,64,182,64],[206,2,183,0],[207,0,183,1],[207,3]],"functionMap":{"names":["<global>","getFontFaceStyleSheet","getFontFaceRules","getFontFaceRulesMatchingResource","rules.filter$argument_0","getHeadElements","entries.map$argument_0","links.map$argument_0","default.unloadAllAsync","default.unloadAsync","default.getServerResources","elements.map$argument_0","default.resetServerContext","default.getLoadedFonts","map$argument_0","rules.map$argument_0","default.isLoaded","find$argument_0","default.loadAsync","getStyleElement","_createWebFontTemplate","_createWebStyle","isFontLoadingListenerSupported"],"mappings":"AAA;ACG;CDM;AEC;CFe;AGC;wBCE;KDG;CHC;AKE;4BCK,kBD;8BCC,gCD;qBES;UFM;CLE;IQE;KRO;ISC;KTQ;IUC;iBCG;SDS;KVE;IYC;KZE;IaC;mDCE,kBD;yBEG,mCF;KbC;IgBC;sDCE;aDE;KhBG;IkBE;KlB2B;AmBG;CnBS;OoBC;CpBE;AqBC;CrBgB;AsBC;CtBY"},"hasCjsExports":false},"type":"js/module"}]} |