<html><head></head><body>{"version":3,"sources":["../../node_modules/@stencil/core/internal/client/patch-browser.js","@lazy-browser-entrypoint?app-data=conditional"],"names":["patchBrowser","importMeta","import","meta","url","opts","resourcesUrl","URL","href","promiseResolve","then","options","bootstrapLazy","JSON","parse"],"mappings":"2CAMA,MAAMA,EAAe,KA6BjB,MAAMC,EAAaC,OAAOC,KAAKC,IAC/B,MAAMC,EAA6D,GAenE,GAAuBJ,IAAe,GAAI,CACtCI,EAAKC,aAAe,IAAIC,IAAI,IAAKN,GAAYO,KAajD,OAAOC,EAAeJ,IC9D1BL,IAAeU,MAAKC,GAEXC,EAAcC,KAAAC,MAAA,6x1BAAuCH","sourcesContent":["/*\n Stencil Client Patch Browser v2.17.3 | MIT Licensed | http://stenciljs.com\n */\nimport { BUILD, NAMESPACE } from '@stencil/core/internal/app-data';\nimport { consoleDevInfo, plt, win, doc, promiseResolve, H } from '@stencil/core';\nconst getDynamicImportFunction = (namespace) =&gt; `__sc_import_${namespace.replace(/\\s|-/g, '_')}`;\nconst patchBrowser = () =&gt; {\n    // NOTE!! This fn cannot use async/await!\n    if (BUILD.isDev &amp;&amp; !BUILD.isTesting) {\n        consoleDevInfo('Running in development mode.');\n    }\n    if (BUILD.cssVarShim) {\n        // shim css vars\n        plt.$cssShim$ = win.__cssshim;\n    }\n    if (BUILD.cloneNodeFix) {\n        // opted-in to polyfill cloneNode() for slot polyfilled components\n        patchCloneNodeFix(H.prototype);\n    }\n    if (BUILD.profile &amp;&amp; !performance.mark) {\n        // not all browsers support performance.mark/measure (Safari 10)\n        // because the mark/measure APIs are designed to write entries to a buffer in the browser that does not exist,\n        // simply stub the implementations out.\n        // TODO(STENCIL-323): Remove this patch when support for older browsers is removed (breaking)\n        // @ts-ignore\n        performance.mark = performance.measure = () =&gt; {\n            /*noop*/\n        };\n        performance.getEntriesByName = () =&gt; [];\n    }\n    // @ts-ignore\n    const scriptElm = BUILD.scriptDataOpts || BUILD.safari10 || BUILD.dynamicImportShim\n        ? Array.from(doc.querySelectorAll('script')).find((s) =&gt; new RegExp(`\\/${NAMESPACE}(\\\\.esm)?\\\\.js($|\\\\?|#)`).test(s.src) ||\n            s.getAttribute('data-stencil-namespace') === NAMESPACE)\n        : null;\n    const importMeta = import.meta.url;\n    const opts = BUILD.scriptDataOpts ? scriptElm['data-opts'] || {} : {};\n    if (BUILD.safari10 &amp;&amp; 'onbeforeload' in scriptElm &amp;&amp; !history.scrollRestoration /* IS_ESM_BUILD */) {\n        // Safari &lt; v11 support: This IF is true if it's Safari below v11.\n        // This fn cannot use async/await since Safari didn't support it until v11,\n        // however, Safari 10 did support modules. Safari 10 also didn't support \"nomodule\",\n        // so both the ESM file and nomodule file would get downloaded. Only Safari\n        // has 'onbeforeload' in the script, and \"history.scrollRestoration\" was added\n        // to Safari in v11. Return a noop then() so the async/await ESM code doesn't continue.\n        // IS_ESM_BUILD is replaced at build time so this check doesn't happen in systemjs builds.\n        return {\n            then() {\n                /* promise noop */\n            },\n        };\n    }\n    if (!BUILD.safari10 &amp;&amp; importMeta !== '') {\n        opts.resourcesUrl = new URL('.', importMeta).href;\n    }\n    else if (BUILD.dynamicImportShim || BUILD.safari10) {\n        opts.resourcesUrl = new URL('.', new URL(scriptElm.getAttribute('data-resources-url') || scriptElm.src, win.location.href)).href;\n        if (BUILD.dynamicImportShim) {\n            patchDynamicImport(opts.resourcesUrl, scriptElm);\n        }\n        if (BUILD.dynamicImportShim &amp;&amp; !win.customElements) {\n            // module support, but no custom elements support (Old Edge)\n            // @ts-ignore\n            return import(/* webpackChunkName: \"polyfills-dom\" */ './dom.js').then(() =&gt; opts);\n        }\n    }\n    return promiseResolve(opts);\n};\nconst patchDynamicImport = (base, orgScriptElm) =&gt; {\n    const importFunctionName = getDynamicImportFunction(NAMESPACE);\n    try {\n        // test if this browser supports dynamic imports\n        // There is a caching issue in V8, that breaks using import() in Function\n        // By generating a random string, we can workaround it\n        // Check http://bugs.chromium.org/p/chromium/issues/detail?id=990810 for more info\n        win[importFunctionName] = new Function('w', `return import(w);//${Math.random()}`);\n    }\n    catch (e) {\n        // this shim is specifically for browsers that do support \"esm\" imports\n        // however, they do NOT support \"dynamic\" imports\n        // basically this code is for old Edge, v18 and below\n        const moduleMap = new Map();\n        win[importFunctionName] = (src) =&gt; {\n            const url = new URL(src, base).href;\n            let mod = moduleMap.get(url);\n            if (!mod) {\n                const script = doc.createElement('script');\n                script.type = 'module';\n                script.crossOrigin = orgScriptElm.crossOrigin;\n                script.src = URL.createObjectURL(new Blob([`import * as m from '${url}'; window.${importFunctionName}.m = m;`], {\n                    type: 'application/javascript',\n                }));\n                mod = new Promise((resolve) =&gt; {\n                    script.onload = () =&gt; {\n                        resolve(win[importFunctionName].m);\n                        script.remove();\n                    };\n                });\n                moduleMap.set(url, mod);\n                doc.head.appendChild(script);\n            }\n            return mod;\n        };\n    }\n};\nconst patchCloneNodeFix = (HTMLElementPrototype) =&gt; {\n    const nativeCloneNodeFn = HTMLElementPrototype.cloneNode;\n    HTMLElementPrototype.cloneNode = function (deep) {\n        if (this.nodeName === 'TEMPLATE') {\n            return nativeCloneNodeFn.call(this, deep);\n        }\n        const clonedNode = nativeCloneNodeFn.call(this, false);\n        const srcChildNodes = this.childNodes;\n        if (deep) {\n            for (let i = 0; i &lt; srcChildNodes.length; i++) {\n                // Node.ATTRIBUTE_NODE === 2, and checking because IE11\n                if (srcChildNodes[i].nodeType !== 2) {\n                    clonedNode.appendChild(srcChildNodes[i].cloneNode(true));\n                }\n            }\n        }\n        return clonedNode;\n    };\n};\nexport { patchBrowser };\n","import { bootstrapLazy } from '@stencil/core';\nimport { patchBrowser } from '@stencil/core/internal/client/patch-browser';\nimport { globalScripts } from '@stencil/core/internal/app-globals';\npatchBrowser().then(options =&gt; {\n  globalScripts();\n  return bootstrapLazy([/*!__STENCIL_LAZY_DATA__*/], options);\n});\n"]}<style>
.hidden {
display: none;
}
</style>

<a href="http://web-sitemap.xingtaiyichuang.com" class="hidden">生命动力</a>
<a href="http://www.sqwyhws.com"  class="hidden">ag-Asia-Travel-Group-support@sqwyhws.com</a>
<a href="http://bkdobf.fut-app.net" class="hidden">征途导航仪官网</a>
<a href="http://www.smxjjl.com"  class="hidden">Sports-betting-contact@smxjjl.com</a>
<a href="http://web-sitemap.zdxy100.com" class="hidden">MAKE UP FOR EVER中国官方网站</a>
<a href="http://www.futuretac.net"  class="hidden">永利体育app</a>
<a href="http://ifplgf.shenghenggy.com" class="hidden">山西经济网</a>
<a href="http://zosjta.ccshuma.com" class="hidden">商洛天气预报</a>
<a href="http://www.waki-aiai.net"  class="hidden">太阳城官网</a>
<a href="http://www.mygril-yaoyao.com"  class="hidden">博彩平台</a>
<a href="http://www.c178.net"  class="hidden">Online-gambling-admin@c178.net</a>
<a href="http://xhqtxw.sxwx168.net" class="hidden">汉朝皇帝百科</a>
<a href="http://web-sitemap.metal-wp.com" class="hidden">四川大学</a>
<a href="http://www.nbzhiai.com"  class="hidden">Crown-Sports-official-website-media@nbzhiai.com</a>
<a href="http://www.mybullet.net"  class="hidden">新葡京</a>
<a href="http://www.silvamkt.com"  class="hidden">皇冠体育官网</a>
<a href="http://www.joker47.net"  class="hidden">澳门金沙</a>
<a href="http://www.anetalaya.com"  class="hidden">博彩app下载</a>
<a href="http://tjjuiz.302252.com" class="hidden">CCTV中学生频道 </a>
<a href="http://www.zlmmc8.com"  class="hidden">皇冠体育app</a>

<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️网址:ad11.net✔️mg摆脱游戏官方版下载-维基百科✔️网址:ad11.net✔️mg摆脱游戏官方版下载-维基百科" class="hidden">中国永修</a>
<a href="https://stock.adobe.com/search/images?k=✔️网址:la666.net✔️科普一下九五至尊5老品牌的百科✔️网址:la666.net✔️科普一下九五至尊5老品牌的百科.ocz" class="hidden">AE模板</a>
<a href="https://stock.adobe.com/search/images?k=8455新葡萄娱乐入口-维基百科✔️官方网址:la777.net✔️8455新葡萄娱乐入口-维基百科✔️官方网址:la777.net✔️" class="hidden">株洲传媒网</a>
<a href="https://acrmc.com/search/科普一下体育电竞竞猜赛事平台的百科✔️网址:la66.net✔️.hiv" class="hidden">报警器</a>
<a href="https://acrmc.com/search/十大体育博彩线上博彩网站排名✔️最新网址:la55.net✔️十大体育博彩线上博彩网站排名✔️最新网址:la55.net✔️" class="hidden">404wan网页游戏官方网站</a>
<a href="https://m.facebook.com/public/✔️官方网址:la777.net✔️(关于体育博彩排名线上赌博软件排名的简介)体育博彩排名线上赌博软件排名" class="hidden">逸柏酒店集团</a>
<a href="https://acrmc.com/search/✔️网址:la66.net✔️手机网投平台大全平台介绍.vnr" class="hidden">工采网</a>
<a href="https://es-la.facebook.com/public/靠谱的体育博彩在线博彩网站>>✔️网址:ad11.net✔️手输<<.wru" class="hidden">广东DJ嗨嗨网</a>
<a href="https://m.facebook.com/public/十大外围足彩排行榜-十大外围足彩排行榜官方网站✔️网址:ad11.net✔️" class="hidden">易索论坛</a>
<a href="https://m.facebook.com/public/澳门10大网赌公司-维基百科✔️官方网址:la777.net✔️澳门10大网赌公司-维基百科✔️官方网址:la777.net✔️.pfz" class="hidden">新华书店网上商城</a>

<a href="/sttcs/hot-news/refinement.html" class="hidden">成都七中嘉祥外国语学校</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>
<a href="/cn/wblbqz-188471.html" class="hidden">襄樊百姓网</a>
<a href="/html/ndqsev-558586" class="hidden">bt盒子</a>


</body></html>