From 017a6259fdf31cd62f51b42a9b417be6231ab0b3 Mon Sep 17 00:00:00 2001 From: strukturart Date: Sat, 23 Nov 2024 19:01:12 +0100 Subject: [PATCH] contiune playing audio --- application/assets/css/main.css | 1 + application/assets/js/helper.js | 8 +- application/index.js | 142 ++++++++++++++++++++++++------- application/manifest.webmanifest | 2 +- application/sw.js | 2 +- docs/index.339e55c4.js | 6 +- docs/index.63982eba.css | 2 +- docs/index.f0337e49.js | 6 +- docs/manifest.webmanifest | 2 +- docs/sw.js | 2 +- 10 files changed, 127 insertions(+), 46 deletions(-) diff --git a/application/assets/css/main.css b/application/assets/css/main.css index 6d1c512..b48323a 100644 --- a/application/assets/css/main.css +++ b/application/assets/css/main.css @@ -477,6 +477,7 @@ div.nickname { width: fit-content; position: absolute; right: 0; + transition: padding 0.3s ease; } /*/ ////////////////////////// ///VIEWS////////////////*/ diff --git a/application/assets/js/helper.js b/application/assets/js/helper.js index 17005c6..1288e68 100644 --- a/application/assets/js/helper.js +++ b/application/assets/js/helper.js @@ -201,8 +201,8 @@ export function share(url) { if (navigator.share) { navigator .share({ - title: "Flop P2P-Messenger", - text: "Flop P2P-Messenger", + title: "Feedolin", + text: "Feedolin", url: url, }) .then(() => { @@ -234,10 +234,6 @@ export function detectMobileOS() { return "Android"; } - if ("b2g" in navigator || "b2g" in navigator) { - // return "KaiOS"; - } - // Other mobile OS or not a mobile device return false; } diff --git a/application/index.js b/application/index.js index 7674ad7..f7d61f3 100644 --- a/application/index.js +++ b/application/index.js @@ -44,7 +44,6 @@ function stopTimer() { } worker.onmessage = function (event) { - console.log(event.data.remaining); if (event.data.action === "stop") { globalAudioElement.pause(); status.sleepTimer = false; @@ -65,13 +64,10 @@ export let status = { local_opml: [], }; -if (typeof window !== "undefined") { - status.notKaiOS = window.innerWidth > 300 ? true : false; -} else { - // Fallback logic if window is not available - const userAgent = navigator.userAgent || ""; - status.notKaiOS = !userAgent.includes("KaiOS"); -} +if ("b2g" in navigator || "navigator.mozApps" in navigator) + status.notKaiOS = false; + +console.log(status); let current_article = ""; const proxy = "https://corsproxy.io/?"; @@ -136,9 +132,6 @@ function add_read_article(id) { let xml_parser = new DOMParser(); -if ("b2g" in navigator || "navigator.mozApps" in navigator) - status.notKaiOS = false; - if (!status.notKaiOS) { const scripts = [ "http://127.0.0.1/api/v1/shared/core.js", @@ -1446,6 +1439,42 @@ if ("b2g" in navigator) { } } +let hasPlayedAudio = []; + +try { + localforage.getItem("hasPlayedAudio").then((value) => { + hasPlayedAudio = value || []; // If no data, initialize as an empty array + console.log("Loaded hasPlayedAudio:", hasPlayedAudio); + }); +} catch (error) { + console.error("Failed to load hasPlayedAudio:", error); +} + +// Function to play and update audio +let playedAudio = async (url, time) => { + const index = hasPlayedAudio.findIndex((e) => e.url === url); + + if (index !== -1) { + // If the URL exists, update the time + hasPlayedAudio[index].time = time; + } else { + // If the URL does not exist, push a new object + hasPlayedAudio.push({ url, time }); + } + + // Save the updated hasPlayedAudio array to localforage + localforage.setItem("hasPlayedAudio", hasPlayedAudio).then(() => { + console.log(hasPlayedAudio); + }); +}; + +let startX = 0; // Initial X position +let startY = 0; // Initial Y position +let currentX = 0; // Current X position +let currentY = 0; // Current Y position +let isSwiping = false; // Track if the user is actively swiping +let seekInterval = null; + const AudioPlayerView = { audioDuration: 0, // Store audio duration currentTime: 0, // Store current time of the audio @@ -1456,19 +1485,31 @@ const AudioPlayerView = { // Load the audio URL if it changes if (attrs.url && globalAudioElement.src !== attrs.url) { globalAudioElement.src = attrs.url; - globalAudioElement.play().catch(() => {}); // Handle play promise rejection + globalAudioElement.play().catch(() => {}); AudioPlayerView.isPlaying = true; + + hasPlayedAudio.map((e) => { + if (e.url === globalAudioElement.src) { + if (confirm("contiune playing ?") == true) { + globalAudioElement.currentTime = e.time; + } + } + }); } // Set up event listeners globalAudioElement.onloadedmetadata = () => { AudioPlayerView.audioDuration = globalAudioElement.duration; - m.redraw(); // Force a redraw to update the UI with the duration + m.redraw(); }; globalAudioElement.ontimeupdate = () => { AudioPlayerView.currentTime = globalAudioElement.currentTime; - m.redraw(); // Update UI with the current time and progress + + //store audio url to contiune to play + playedAudio(globalAudioElement.src, globalAudioElement.currentTime); + + m.redraw(); }; // Restore play/pause state @@ -1479,8 +1520,6 @@ const AudioPlayerView = { }, oncreate: () => { - status.player = true; - top_bar("", "", ""); bottom_bar("", "", ""); if (settings.sleepTimer) { @@ -1509,25 +1548,69 @@ const AudioPlayerView = { AudioPlayerView.togglePlayPause(); }); - document.addEventListener("swiped-left", () => { - let r = m.route.get(); + const threshold = 30; - if (r.startsWith("Audio")) { - AudioPlayerView.seek("left"); - } + document.addEventListener("touchstart", (event) => { + const touch = event.touches[0]; + startX = touch.clientX; + startY = touch.clientY; }); - document.addEventListener("swiped-right", () => { - AudioPlayerView.seek("right"); + document.addEventListener("touchmove", (event) => { + const touch = event.touches[0]; + currentX = touch.clientX; + currentY = touch.clientY; + + const diffX = currentX - startX; + const diffY = currentY - startY; + + // Determine swipe direction based on the larger movement + if (Math.abs(diffX) > Math.abs(diffY)) { + if (diffX > threshold) { + startContinuousSeek("right"); + isSwiping = true; + } else if (diffX < -threshold) { + startContinuousSeek("left"); + isSwiping = true; + } + } else { + if (diffY > threshold) { + console.log("Swiping down (not used in this context)"); + } else if (diffY < -threshold) { + console.log("Swiping up (not used in this context)"); + } + } + }); - if (r.startsWith("Audio")) { - AudioPlayerView.seek("right"); + document.addEventListener("touchend", () => { + if (isSwiping) { + isSwiping = false; + stopContinuousSeek(); + } else { } }); + + function startContinuousSeek(direction) { + if (seekInterval) return; // Prevent multiple intervals + AudioPlayerView.seek(direction); + + // Start a repeating interval for continuous seeking + seekInterval = setInterval(() => { + AudioPlayerView.seek(direction); + document.querySelector(".audio-info").style.padding = "20px"; + }, 1000); + } + + function stopContinuousSeek() { + if (seekInterval) { + clearInterval(seekInterval); + seekInterval = null; + document.querySelector(".audio-info").style.padding = "10px"; + } + } }, onremove: () => { - // Remove the keydown listener when the view is removed document.removeEventListener("keydown", AudioPlayerView.handleKeydown); }, @@ -2172,7 +2255,7 @@ document.addEventListener("DOMContentLoaded", function (e) { "touchstart", function (e) { startX = e.touches[0].pageX; - document.querySelector("body").style.opacity = 1; // Start with full opacity + document.querySelector("body").style.opacity = 1; }, false ); @@ -2185,8 +2268,9 @@ document.addEventListener("DOMContentLoaded", function (e) { // Calculate the inverted opacity based on swipe distance let opacity = 1 - Math.min(diffX / maxSwipeDistance, 1); - // Apply opacity to the body (or any other element) - document.querySelector("body").style.opacity = opacity; + let r = m.route.get(); + if (r.startsWith("/article")) + document.querySelector("body").style.opacity = opacity; }, false ); diff --git a/application/manifest.webmanifest b/application/manifest.webmanifest index a3ed8a2..e52d740 100644 --- a/application/manifest.webmanifest +++ b/application/manifest.webmanifest @@ -24,7 +24,7 @@ ], "b2g_features": { - "version": "1.8.111", + "version": "1.8.112", "id": "feedolin", "subtitle": "RSS Reader and Mastodon Reader", "core": true, diff --git a/application/sw.js b/application/sw.js index 8c0b4f7..66ec1db 100644 --- a/application/sw.js +++ b/application/sw.js @@ -31,7 +31,7 @@ self.addEventListener("systemmessage", async (evt) => { const userAgent = navigator.userAgent || ""; if (userAgent && !userAgent.includes("KAIOS")) { - const CACHE_NAME = "pwa-cache-v0.1161"; + const CACHE_NAME = "pwa-cache-v0.1169"; const FILE_LIST_URL = "/file-list.json"; // URL of the JSON file containing the array of files self.addEventListener("install", (event) => { diff --git a/docs/index.339e55c4.js b/docs/index.339e55c4.js index 0178881..af6a678 100644 --- a/docs/index.339e55c4.js +++ b/docs/index.339e55c4.js @@ -1,13 +1,13 @@ -!function(){function e(e,t,n,i){Object.defineProperty(e,t,{get:n,set:i,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,M,R,B,q,U,j,F,V,$,z,H,W,G,Y,K,Z,Q,J,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eM,eR,eB,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},ez={},eH=eV.parcelRequire5393;null==eH&&((eH=function(e){if(e in e$)return e$[e].exports;if(e in ez){var t=ez[e];delete ez[e];var n={id:e,exports:{}};return e$[e]=n,t.call(n.exports,n,n.exports),n.exports}var i=Error("Cannot find module '"+e+"'");throw i.code="MODULE_NOT_FOUND",i}).register=function(e,t){ez[e]=t},eV.parcelRequire5393=eH);var eW=eH.register;function eG(e,t,n,i,o,a,s){try{var u=e[a](s),c=u.value}catch(e){n(e);return}u.done?t(c):Promise.resolve(c).then(i,o)}function eY(e){return function(){var t=this,n=arguments;return new Promise(function(i,o){var a=e.apply(t,n);function s(e){eG(a,i,o,s,u,"next",e)}function u(e){eG(a,i,o,s,u,"throw",e)}s(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var n=this.s.return;return void 0===n?Promise.resolve({value:e,done:!0}):t(n.apply(this.s,arguments))},throw:function(e){var n=this.s.return;return void 0===n?Promise.reject(e):t(n.apply(this.s,arguments))}},new eK(e)}eW("ilwPy",function(e,t){function n(e,t,n,i,o,a){return{tag:e,key:t,attrs:n,children:i,text:o,dom:a,domSize:void 0,state:void 0,events:void 0,instance:void 0}}n.normalize=function(e){return Array.isArray(e)?n("[",void 0,void 0,n.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:n("#",void 0,void 0,String(e),void 0,void 0)},n.normalizeChildren=function(e){var t=[];if(e.length){for(var i=null!=e[0]&&null!=e[0].key,o=1;o'+t.children+"",s=s.firstChild):s.innerHTML=t.children,t.dom=s.firstChild,t.domSize=s.childNodes.length;for(var c=u(e).createDocumentFragment();o=s.firstChild;)c.appendChild(o);E(e,c,i)}function g(e,t,n,i,o,a){if(t!==n&&(null!=t||null!=n)){if(null==t||0===t.length)h(e,n,0,n.length,i,o,a);else if(null==n||0===n.length)k(e,t,0,t.length);else{var s=null!=t[0]&&null!=t[0].key,u=null!=n[0]&&null!=n[0].key,c=0,l=0;if(!s)for(;l=l&&I>=c&&(v=t[S],g=n[I],v.key===g.key);)v!==g&&y(e,v,g,i,o,a),null!=g.dom&&(o=g.dom),S--,I--;for(;S>=l&&I>=c&&(d=t[l],m=n[c],d.key===m.key);)l++,c++,d!==m&&y(e,d,m,i,w(t,l,o),a);for(;S>=l&&I>=c&&c!==I&&d.key===g.key&&v.key===m.key;)x(e,v,E=w(t,l,o)),v!==m&&y(e,v,m,i,E,a),++c<=--I&&x(e,d,o),d!==g&&y(e,d,g,i,o,a),null!=g.dom&&(o=g.dom),l++,v=t[--S],g=n[I],d=t[l],m=n[c];for(;S>=l&&I>=c&&v.key===g.key;)v!==g&&y(e,v,g,i,o,a),null!=g.dom&&(o=g.dom),S--,I--,v=t[S],g=n[I];if(c>I)k(e,t,l,S+1);else if(l>S)h(e,n,c,I+1,i,o,a);else{var f,T,N=o,O=I-c+1,_=Array(O),C=0,P=0,L=0x7fffffff,D=0;for(P=0;P=c;P--){null==f&&(f=function(e,t,n){for(var i=Object.create(null);t>>1)+(i>>>1)+(n&i&1);e[t[u]]0&&(b[o]=t[n-1]),t[n]=o)}for(n=t.length,i=t[n-1];n-- >0;)t[n]=i,i=b[i];return b.length=0,t}(_)).length-1,P=I;P>=c;P--)m=n[P],-1===_[P-c]?p(e,m,i,a,o):T[C]===P-c?C--:x(e,m,o),null!=m.dom&&(o=n[P].dom);else for(P=I;P>=c;P--)m=n[P],-1===_[P-c]&&p(e,m,i,a,o),null!=m.dom&&(o=n[P].dom)}}else{var R=t.lengthR&&k(e,t,c,t.length),n.length>R&&h(e,n,c,n.length,i,o,a)}}}}function y(e,t,i,o,a,s){var u,l,h=t.tag;if(h===i.tag){if(i.state=t.state,i.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var n=f.call(e.attrs.onbeforeupdate,e,t);if(void 0!==n&&!n)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var n=f.call(e.state.onbeforeupdate,e,t);if(void 0!==n&&!n)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(i,t))return;if("string"==typeof h)switch(null!=i.attrs&&q(i.attrs,i,o),h){case"#":t.children.toString()!==i.children.toString()&&(t.dom.nodeValue=i.children),i.dom=t.dom;break;case"<":t.children!==i.children?(I(e,t,void 0),v(e,i,s,a)):(i.dom=t.dom,i.domSize=t.domSize);break;case"[":(function(e,t,n,i,o,a){g(e,t.children,n.children,i,o,a);var s=0,u=n.children;if(n.dom=null,null!=u){for(var c=0;c-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var C=/[A-Z]/g;function P(e){return"-"+e.toLowerCase()}function L(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(C,P)}function D(e,t,n){if(t===n);else if(null==n)e.style="";else if("object"!=typeof n)e.style=n;else if(null==t||"object"!=typeof t)for(var i in e.style.cssText="",n){var o=n[i];null!=o&&e.style.setProperty(L(i),String(o))}else{for(var i in n){var o=n[i];null!=o&&(o=String(o))!==String(t[i])&&e.style.setProperty(L(i),o)}for(var i in t)null!=t[i]&&null==n[i]&&e.style.removeProperty(L(i))}}function M(){this._=e}function R(t,n,i){null!=t.events?(t.events._=e,t.events[n]!==i&&(null!=i&&("function"==typeof i||"object"==typeof i)?(null==t.events[n]&&t.dom.addEventListener(n.slice(2),t.events,!1),t.events[n]=i):(null!=t.events[n]&&t.dom.removeEventListener(n.slice(2),t.events,!1),t.events[n]=void 0))):null!=i&&("function"==typeof i||"object"==typeof i)&&(t.events=new M,t.dom.addEventListener(n.slice(2),t.events,!1),t.events[n]=i)}function B(e,t,n){"function"==typeof e.oninit&&f.call(e.oninit,t),"function"==typeof e.oncreate&&n.push(f.bind(e.oncreate,t))}function q(e,t,n){"function"==typeof e.onupdate&&n.push(f.bind(e.onupdate,t))}return M.prototype=Object.create(null),M.prototype.handleEvent=function(e){var t,n=this["on"+e.type];"function"==typeof n?t=n.call(e.currentTarget,e):"function"==typeof n.handleEvent&&n.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(o,a,s){if(!o)throw TypeError("DOM element being rendered to does not exist.");if(null!=i&&o.contains(i))throw TypeError("Node is currently being rendered to and thus is locked.");var u=e,c=i,l=[],f=d(o),h=o.namespaceURI;i=o,e="function"==typeof s?s:void 0,t={};try{null==o.vnodes&&(o.textContent=""),a=n.normalizeChildren(Array.isArray(a)?a:[a]),g(o,o.vnodes,a,l,null,"http://www.w3.org/1999/xhtml"===h?void 0:h),o.vnodes=a,null!=f&&d(o)!==f&&"function"==typeof f.focus&&f.focus();for(var p=0;p1&&void 0!==c[1]?c[1]:{},o=e.dom,a=e.domSize,s=t.generation,!(null!=o))return[3,5];n.label=1;case 1:if(u=o.nextSibling,i.get(o)!==s)return[3,3];return[4,o];case 2:n.sent(),a--,n.label=3;case 3:o=u,n.label=4;case 4:if(a)return[3,1];n.label=5;case 5:return[2]}})}}}),eW("bgUiC",function(t,n){function i(e,t){var n,i,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},s=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return s.next=u(0),s.throw=u(1),s.return=u(2),"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function u(u){return function(c){return function(u){if(n)throw TypeError("Generator is already executing.");for(;s&&(s=0,u[0]&&(a=0)),a;)try{if(n=1,i&&(o=2&u[0]?i.return:u[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,u[1])).done)return o;switch(i=0,o&&(u=[2&u[0],o.value]),u[0]){case 0:case 1:o=u;break;case 4:return a.label++,{value:u[1],done:!1};case 5:a.label++,i=u[1],u=[0];continue;case 7:u=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===u[0]||2===u[0])){a=0;continue}if(3===u[0]&&(!o||u[1]>o[0]&&u[1]=e.length&&(e=void 0),{value:e&&e[i++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return i}),e(t.exports,"__values",function(){return o}),eH("2L7Ke"),"function"==typeof SuppressedError&&SuppressedError}),eW("2L7Ke",function(t,n){e(t.exports,"_",function(){return i});function i(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("8IMbs",function(e,t){var n=eH("ilwPy");e.exports=function(e,t,i){var o=[],a=!1,s=-1;function u(){for(s=0;s=0&&(o.splice(a,2),a<=s&&(s-=2),e(t,[])),null!=i&&(o.push(t,i),e(t,n(i),c))},redraw:c}}}),eW("ar5FS",function(e,t){var n=eH("gOSId"),i=eH("7KoNz");e.exports=function(e,t){function o(e){return new Promise(e)}function a(e,t){for(var n in e.headers)if(i.call(e.headers,n)&&n.toLowerCase()===t)return!0;return!1}return o.prototype=Promise.prototype,o.__proto__=Promise,{request:function(s,u){"string"!=typeof s?(u=s,s=s.url):null==u&&(u={});var c,l,f=(c=s,l=u,new Promise(function(t,o){c=n(c,l.params);var s,u=null!=l.method?l.method.toUpperCase():"GET",f=l.body,d=(null==l.serialize||l.serialize===JSON.serialize)&&!(f instanceof e.FormData||f instanceof e.URLSearchParams),h=l.responseType||("function"==typeof l.extract?"":"json"),p=new e.XMLHttpRequest,m=!1,v=!1,g=p,y=p.abort;for(var b in p.abort=function(){m=!0,y.call(this)},p.open(u,c,!1!==l.async,"string"==typeof l.user?l.user:void 0,"string"==typeof l.password?l.password:void 0),d&&null!=f&&!a(l,"content-type")&&p.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof l.deserialize||a(l,"accept")||p.setRequestHeader("Accept","application/json, text/*"),l.withCredentials&&(p.withCredentials=l.withCredentials),l.timeout&&(p.timeout=l.timeout),p.responseType=h,l.headers)i.call(l.headers,b)&&p.setRequestHeader(b,l.headers[b]);p.onreadystatechange=function(e){if(!m&&4===e.target.readyState)try{var n,i=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(c),a=e.target.response;if("json"===h){if(!e.target.responseType&&"function"!=typeof l.extract)try{a=JSON.parse(e.target.responseText)}catch(e){a=null}}else h&&"text"!==h||null!=a||(a=e.target.responseText);if("function"==typeof l.extract?(a=l.extract(e.target,l),i=!0):"function"==typeof l.deserialize&&(a=l.deserialize(a)),i){if("function"==typeof l.type){if(Array.isArray(a))for(var s=0;s=0&&(p+=e.slice(o,s)),f>=0&&(p+=(o<0?"?":"&")+l.slice(f,h));var m=n(c);return m&&(p+=(o<0&&f<0?"?":"&")+m),a>=0&&(p+=e.slice(a)),d>=0&&(p+=(a<0?"":"&")+l.slice(d)),p}}),eW("4L5Fm",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var n in e)(function e(n,i){if(Array.isArray(i))for(var o=0;o0&&(o.className=i.join(" ")),s[e]={tag:n,attrs:o}}(e),t):(t.tag=e,t)}}),eW("a26rS",function(e,t){var n=eH("goS5k");e.exports=function(e){var t=e.indexOf("?"),i=e.indexOf("#"),o=i<0?e.length:i,a=e.slice(0,t<0?o:t).replace(/\/{2,}/g,"/");return a?"/"!==a[0]&&(a="/"+a):a="/",{path:a,params:t<0?{}:n(e.slice(t+1,o))}}}),eW("goS5k",function(e,t){function n(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),i={},o={},a=0;a-1&&l.pop();for(var d=0;dt.indexOf(a)&&(o[a]=e[a]);else for(var a in e)n.call(e,a)&&!i.test(a)&&(o[a]=e[a]);return o}}),eW("bWx8M",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("9PbbU",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("izz4O",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var n,i=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function o(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=i.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(n=String.fromCodePoint)&&void 0!==n?n:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=o,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(o(t))}});var eZ=(eH("bgUiC"),eH("bgUiC")),eQ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eJ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eQ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var n=navigator.getDeviceStorage("sdcard").enumerate();n.onsuccess=function(){if(this.result||console.log("finished"),null!==n.result.name){var i=n.result,o=i.name.split(".");o[o.length-1]==e&&t(i.name),this.continue()}},n.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var i=navigator.b2g.getDeviceStorage("sdcard").enumerate();function o(){return(o=eY(function(){var n,o,a,s,u,c,l,f;return(0,eZ.__generator)(this,function(d){switch(d.label){case 0:n=!1,o=!1,d.label=1;case 1:d.trys.push([1,6,7,12]),s=function(e){var t,n,i,o=2;for("undefined"!=typeof Symbol&&(n=Symbol.asyncIterator,i=Symbol.iterator);o--;){if(n&&null!=(t=e[n]))return t.call(e);if(i&&null!=(t=e[i]))return new eK(t.call(e));n="@@asyncIterator",i="@@iterator"}throw TypeError("Object is not async iterable")}(i),d.label=2;case 2:return[4,s.next()];case 3:if(!(n=!(u=d.sent()).done))return[3,5];(l=(c=u.value).name.split("."))[l.length-1]==e&&t(c.name),d.label=4;case 4:return n=!1,[3,2];case 5:return[3,12];case 6:return f=d.sent(),o=!0,a=f,[3,12];case 7:if(d.trys.push([7,,10,11]),!(n&&null!=s.return))return[3,9];return[4,s.return()];case 8:d.sent(),d.label=9;case 9:return[3,11];case 10:if(o)throw a;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){o.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,n={};navigator.volumeManager=null,n.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},n.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",n,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(n){var i=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),i.onerror=function(e){console.log(e)},i.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(i.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},i.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var n=document.querySelector("div#side-toast");n.style.opacity="100",n.innerHTML=e5[0].text,n.style.transform="translate(0vh, 0vw)",setTimeout(function(){n.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,n){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=n,""==e&&""==t&&""==n?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,n){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=n,""==e&&""==t&&""==n?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var n=document.createElement("input");n.type="file",n.accept=".opml,application/xml",n.style.display="none",document.body.appendChild(n),n.click(),n.addEventListener("change",function(t){var n=t.target.files[0];n&&e({blob:n,filename:n.name,filetype:n.type})})}},eZ=eH("bgUiC"),te=(q=eY(function(e,t){var n;return(0,eZ.__generator)(this,function(i){switch(i.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(n=i.sent()).ok||console.log("Network response was not OK"),[4,n.json()];case 2:return[2,i.sent()]}})}),function(e,t){return q.apply(this,arguments)}),tt={},tr=eH("2L7Ke");tt=(function e(t,n,i){function o(s,u){if(!n[s]){if(!t[s]){var c=void 0;if(!u&&c)return c(s,!0);if(a)return a(s,!0);var l=Error("Cannot find module '"+s+"'");throw l.code="MODULE_NOT_FOUND",l}var f=n[s]={exports:{}};t[s][0].call(f.exports,function(e){return o(t[s][1][e]||e)},f,f.exports,e,t,n,i)}return n[s].exports}for(var a=void 0,s=0;se.db.version;if(i&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),o||n){if(n){var a=e.db.version+1;a>e.version&&(e.version=a)}return!0}return!1}function S(e){return a([function(e){for(var t=e.length,n=new ArrayBuffer(t),i=new Uint8Array(n),o=0;o0&&(!e.db||"InvalidStateError"===o.name||"NotFoundError"===o.name))return s.resolve().then(function(){if(!e.db||"NotFoundError"===o.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),x(e,!0)}).then(function(){return(function(e){y(e);for(var t=p[e.name],n=t.forages,i=0;i=43)}}).catch(function(){return!1}).then(function(e){return h=e})).then(function(e){return e?t:new s(function(e,n){var i=new FileReader;i.onerror=n,i.onloadend=function(n){e({__local_forage_encoded_blob:!0,data:btoa(n.target.result||""),type:t.type})},i.readAsBinaryString(t)})}):t}).then(function(t){I(i._dbInfo,g,function(a,s){if(a)return o(a);try{var u=s.objectStore(i._dbInfo.storeName);null===t&&(t=void 0);var c=u.put(t,e);s.oncomplete=function(){void 0===t&&(t=null),n(t)},s.onabort=s.onerror=function(){var e=c.error?c.error:c.transaction.error;o(e)}}catch(e){o(e)}})}).catch(o)});return u(o,n),o},removeItem:function(e,t){var n=this;e=l(e);var i=new s(function(t,i){n.ready().then(function(){I(n._dbInfo,g,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName).delete(e);a.oncomplete=function(){t()},a.onerror=function(){i(s.error)},a.onabort=function(){var e=s.error?s.error:s.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return u(i,t),i},clear:function(e){var t=this,n=new s(function(e,n){t.ready().then(function(){I(t._dbInfo,g,function(i,o){if(i)return n(i);try{var a=o.objectStore(t._dbInfo.storeName).clear();o.oncomplete=function(){e()},o.onabort=o.onerror=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return u(n,e),n},length:function(e){var t=this,n=new s(function(e,n){t.ready().then(function(){I(t._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(t._dbInfo.storeName).count();a.onsuccess=function(){e(a.result)},a.onerror=function(){n(a.error)}}catch(e){n(e)}})}).catch(n)});return u(n,e),n},key:function(e,t){var n=this,i=new s(function(t,i){if(e<0){t(null);return}n.ready().then(function(){I(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName),u=!1,c=s.openKeyCursor();c.onsuccess=function(){var n=c.result;if(!n){t(null);return}0===e?t(n.key):u?t(n.key):(u=!0,n.advance(e))},c.onerror=function(){i(c.error)}}catch(e){i(e)}})}).catch(i)});return u(i,t),i},keys:function(e){var t=this,n=new s(function(e,n){t.ready().then(function(){I(t._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(t._dbInfo.storeName).openKeyCursor(),s=[];a.onsuccess=function(){var t=a.result;if(!t){e(s);return}s.push(t.key),t.continue()},a.onerror=function(){n(a.error)}}catch(e){n(e)}})}).catch(n)});return u(n,e),n},dropInstance:function(e,t){t=f.apply(this,arguments);var n,i=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||i.name,e.storeName=e.storeName||i.storeName),e.name){var a=e.name===i.name&&this._dbInfo.db?s.resolve(this._dbInfo.db):x(e,!1).then(function(t){var n=p[e.name],i=n.forages;n.db=t;for(var o=0;o>4,f[c++]=(15&i)<<4|o>>2,f[c++]=(3&o)<<6|63&a;return l}function G(e){var t,n=new Uint8Array(e),i="";for(t=0;t>2],i+=O[(3&n[t])<<4|n[t+1]>>4],i+=O[(15&n[t+1])<<2|n[t+2]>>6],i+=O[63&n[t+2]];return n.length%3==2?i=i.substring(0,i.length-1)+"=":n.length%3==1&&(i=i.substring(0,i.length-2)+"=="),i}var Y={serialize:function(e,t){var n="";if(e&&(n=H.call(e)),e&&("[object ArrayBuffer]"===n||e.buffer&&"[object ArrayBuffer]"===H.call(e.buffer))){var i,o=C;e instanceof ArrayBuffer?(i=e,o+=L):(i=e.buffer,"[object Int8Array]"===n?o+=M:"[object Uint8Array]"===n?o+=R:"[object Uint8ClampedArray]"===n?o+=B:"[object Int16Array]"===n?o+=q:"[object Uint16Array]"===n?o+=j:"[object Int32Array]"===n?o+=U:"[object Uint32Array]"===n?o+=F:"[object Float32Array]"===n?o+=V:"[object Float64Array]"===n?o+=$:t(Error("Failed to get type for BinaryArray"))),t(o+G(i))}else if("[object Blob]"===n){var a=new FileReader;a.onload=function(){t(C+D+("~~local_forage_type~"+e.type)+"~"+G(this.result))},a.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(n){console.error("Couldn't convert value into a JSON string: ",e),t(null,n)}},deserialize:function(e){if(e.substring(0,P)!==C)return JSON.parse(e);var t,n=e.substring(z),i=e.substring(P,z);if(i===D&&_.test(n)){var o=n.match(_);t=o[1],n=n.substring(o[0].length)}var s=W(n);switch(i){case L:return s;case D:return a([s],{type:t});case M:return new Int8Array(s);case R:return new Uint8Array(s);case B:return new Uint8ClampedArray(s);case q:return new Int16Array(s);case j:return new Uint16Array(s);case U:return new Int32Array(s);case F:return new Uint32Array(s);case V:return new Float32Array(s);case $:return new Float64Array(s);default:throw Error("Unkown type: "+i)}},stringToBuffer:W,bufferToString:G};function K(e,t,n,i){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],n,i)}function Z(e,t,n,i,o,a){e.executeSql(n,i,o,function(e,s){s.code===s.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,u){u.rows.length?a(e,s):K(e,t,function(){e.executeSql(n,i,o,a)},a)},a):a(e,s)},a)}function Q(e,t,n,i){var o=this;e=l(e);var a=new s(function(a,s){o.ready().then(function(){void 0===t&&(t=null);var u=t,c=o._dbInfo;c.serializer.serialize(t,function(t,l){l?s(l):c.db.transaction(function(n){Z(n,c,"INSERT OR REPLACE INTO "+c.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){a(u)},function(e,t){s(t)})},function(t){if(t.code===t.QUOTA_ERR){if(i>0){a(Q.apply(o,[e,u,n,i-1]));return}s(t)}})})}).catch(s)});return u(a,n),a}var J={_driver:"webSQLStorage",_initStorage:function(e){var t=this,n={db:null};if(e)for(var i in e)n[i]="string"!=typeof e[i]?e[i].toString():e[i];var o=new s(function(e,i){try{n.db=openDatabase(n.name,String(n.version),n.description,n.size)}catch(e){return i(e)}n.db.transaction(function(o){K(o,n,function(){t._dbInfo=n,e()},function(e,t){i(t)})},i)});return n.serializer=Y,o},_support:"function"==typeof openDatabase,iterate:function(e,t){var n=this,i=new s(function(t,i){n.ready().then(function(){var o=n._dbInfo;o.db.transaction(function(n){Z(n,o,"SELECT * FROM "+o.storeName,[],function(n,i){for(var a=i.rows,s=a.length,u=0;u '__WebKitDatabaseInfoTable__'",[],function(t,i){for(var o=[],a=0;a0)?(this._dbInfo=t,t.serializer=Y,s.resolve()):s.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var n=this,i=n.ready().then(function(){for(var t=n._dbInfo,i=t.keyPrefix,o=i.length,a=localStorage.length,s=1,u=0;u=0;n--){var i=localStorage.key(n);0===i.indexOf(e)&&localStorage.removeItem(i)}});return u(n,e),n},length:function(e){var t=this.keys().then(function(e){return e.length});return u(t,e),t},key:function(e,t){var n=this,i=n.ready().then(function(){var t,i=n._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(i.keyPrefix.length)),t});return u(i,t),i},keys:function(e){var t=this,n=t.ready().then(function(){for(var e=t._dbInfo,n=localStorage.length,i=[],o=0;o=0;t--){var n=localStorage.key(t);0===n.indexOf(e)&&localStorage.removeItem(n)}}):s.reject("Invalid arguments"),t),n}},et=function(e,t){for(var n,i=e.length,o=0;o=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return eH("izz4O").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return eH("izz4O").fromCodePoint}}),(U=ea||(ea={}))[U.NUM=35]="NUM",U[U.SEMI=59]="SEMI",U[U.EQUALS=61]="EQUALS",U[U.ZERO=48]="ZERO",U[U.NINE=57]="NINE",U[U.LOWER_A=97]="LOWER_A",U[U.LOWER_F=102]="LOWER_F",U[U.LOWER_X=120]="LOWER_X",U[U.LOWER_Z=122]="LOWER_Z",U[U.UPPER_A=65]="UPPER_A",U[U.UPPER_F=70]="UPPER_F",U[U.UPPER_Z=90]="UPPER_Z",(j=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[j.VALUE_LENGTH=49152]="VALUE_LENGTH",j[j.BRANCH_LENGTH=16256]="BRANCH_LENGTH",j[j.JUMP_TABLE=127]="JUMP_TABLE",(F=eu||(eu={}))[F.EntityStart=0]="EntityStart",F[F.NumericStart=1]="NumericStart",F[F.NumericDecimal=2]="NumericDecimal",F[F.NumericHex=3]="NumericHex",F[F.NamedEntity=4]="NamedEntity",(V=ec=tp.DecodingMode||(tp.DecodingMode={}))[V.Legacy=0]="Legacy",V[V.Strict=1]="Strict",V[V.Attribute=2]="Attribute";var tS=function(){function e(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,n,i){if(t!==n){var o=n-t;this.result=this.result*Math.pow(i,o)+parseInt(e.substr(t,o),i),this.consumed+=o}},e.prototype.stateNumericHex=function(e,t){for(var n=t;t=ea.UPPER_A)||!(i<=ea.UPPER_F))&&(!(i>=ea.LOWER_A)||!(i<=ea.LOWER_F)))return this.addToNumericResult(e,n,t,16),this.emitNumericEntity(o,3);t+=1}return this.addToNumericResult(e,n,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var n=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(a))?0:this.emitNotTerminatedNamedEntity();if(0!=(o=((i=n[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(a===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,o,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,n=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,n){var i=this.decodeTree;return this.emitCodePoint(1===t?i[e]&~es.VALUE_LENGTH:i[e+1],n),3===t&&this.emitCodePoint(i[e+2],n),n},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",n=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,i){for(var o=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(o,a),n.startEntity(i);var s=n.write(e,a+1);if(s<0){o=a+n.end();break}o=a+s,a=0===s?o+1:o}var u=t+e.slice(o);return t="",u}}function tA(e,t,n,i){var o=(t&es.BRANCH_LENGTH)>>7,a=t&es.JUMP_TABLE;if(0===o)return 0!==a&&i===a?n:-1;if(a){var s=i-a;return s<0||s>=o?-1:e[n+s]-1}for(var u=n,c=u+o-1;u<=c;){var l=u+c>>>1,f=e[l];if(fi))return e[l+o];c=l-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},($=el||(el={}))[$.Tab=9]="Tab",$[$.NewLine=10]="NewLine",$[$.FormFeed=12]="FormFeed",$[$.CarriageReturn=13]="CarriageReturn",$[$.Space=32]="Space",$[$.ExclamationMark=33]="ExclamationMark",$[$.Number=35]="Number",$[$.Amp=38]="Amp",$[$.SingleQuote=39]="SingleQuote",$[$.DoubleQuote=34]="DoubleQuote",$[$.Dash=45]="Dash",$[$.Slash=47]="Slash",$[$.Zero=48]="Zero",$[$.Nine=57]="Nine",$[$.Semi=59]="Semi",$[$.Lt=60]="Lt",$[$.Eq=61]="Eq",$[$.Gt=62]="Gt",$[$.Questionmark=63]="Questionmark",$[$.UpperA=65]="UpperA",$[$.LowerA=97]="LowerA",$[$.UpperF=70]="UpperF",$[$.LowerF=102]="LowerF",$[$.UpperZ=90]="UpperZ",$[$.LowerZ=122]="LowerZ",$[$.LowerX=120]="LowerX",$[$.OpeningSquareBracket=91]="OpeningSquareBracket",(z=ef||(ef={}))[z.Text=1]="Text",z[z.BeforeTagName=2]="BeforeTagName",z[z.InTagName=3]="InTagName",z[z.InSelfClosingTag=4]="InSelfClosingTag",z[z.BeforeClosingTagName=5]="BeforeClosingTagName",z[z.InClosingTagName=6]="InClosingTagName",z[z.AfterClosingTagName=7]="AfterClosingTagName",z[z.BeforeAttributeName=8]="BeforeAttributeName",z[z.InAttributeName=9]="InAttributeName",z[z.AfterAttributeName=10]="AfterAttributeName",z[z.BeforeAttributeValue=11]="BeforeAttributeValue",z[z.InAttributeValueDq=12]="InAttributeValueDq",z[z.InAttributeValueSq=13]="InAttributeValueSq",z[z.InAttributeValueNq=14]="InAttributeValueNq",z[z.BeforeDeclaration=15]="BeforeDeclaration",z[z.InDeclaration=16]="InDeclaration",z[z.InProcessingInstruction=17]="InProcessingInstruction",z[z.BeforeComment=18]="BeforeComment",z[z.CDATASequence=19]="CDATASequence",z[z.InSpecialComment=20]="InSpecialComment",z[z.InCommentLike=21]="InCommentLike",z[z.BeforeSpecialS=22]="BeforeSpecialS",z[z.SpecialStartSequence=23]="SpecialStartSequence",z[z.InSpecialTag=24]="InSpecialTag",z[z.BeforeEntity=25]="BeforeEntity",z[z.BeforeNumericEntity=26]="BeforeNumericEntity",z[z.InNamedEntity=27]="InNamedEntity",z[z.InNumericEntity=28]="InNumericEntity",z[z.InHexEntity=29]="InHexEntity",(H=ed||(ed={}))[H.NoValue=0]="NoValue",H[H.Unquoted=1]="Unquoted",H[H.Single=2]="Single",H[H.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,n){var i=t.xmlMode,o=void 0!==i&&i,a=t.decodeEntities;tf(this,e),this.cbs=n,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=o,this.decodeEntities=void 0===a||a,this.entityTrie=o?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var n=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var i=this.index-this.entityExcess+1;i>this.sectionStart&&this.emitPartial(this.sectionStart,i),this.entityResult=this.trieIndex,this.trieIndex+=n,this.entityExcess=0,this.sectionStart=this.index+1,0===n&&this.emitNamedEntity()}else this.trieIndex+=n}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=u,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(n=u.lowerCaseTags)&&void 0!==n?n:!u.xmlMode,this.lowerCaseAttributeNames=null!==(i=u.lowerCaseAttributeNames)&&void 0!==i?i:!u.xmlMode,this.tokenizer=new(null!==(o=u.Tokenizer)&&void 0!==o?o:tP)(this.options,this),null===(s=(a=this.cbs).onparserinit)||void 0===s||s.call(a,this)}return th(e,[{key:"ontext",value:function(e,t){var n,i,o=this.getSlice(e,t);this.endIndex=t-1,null===(i=(n=this.cbs).ontext)||void 0===i||i.call(n,o),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,n,i=this.tokenizer.getSectionStart();this.endIndex=i-1,null===(n=(t=this.cbs).ontext)||void 0===n||n.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=i}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var n=this.getSlice(e,t);this.lowerCaseTagNames&&(n=n.toLowerCase()),this.emitOpenTag(n)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,n,i,o,a=!this.options.xmlMode&&tq.get(e);if(a)for(;this.stack.length>0&&a.has(this.stack[this.stack.length-1]);){var s=this.stack.pop();null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,s,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(o=(i=this.cbs).onopentagname)||void 0===o||o.call(i,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,n;this.startIndex=this.openTagStart,this.attribs&&(null===(n=(t=this.cbs).onopentag)||void 0===n||n.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var n,i,o,a,s,u,c=this.getSlice(e,t);if(this.lowerCaseTagNames&&(c=c.toLowerCase()),(tj.has(c)||tF.has(c))&&this.foreignContext.pop(),this.isVoidElement(c))this.options.xmlMode||"br"!==c||(null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,"br"),null===(a=(o=this.cbs).onopentag)||void 0===a||a.call(o,"br",{},!0),null===(u=(s=this.cbs).onclosetag)||void 0===u||u.call(s,"br",!1));else{var l=this.stack.lastIndexOf(c);if(-1!==l){if(this.cbs.onclosetag)for(var f=this.stack.length-l;f--;)this.cbs.onclosetag(this.stack.pop(),0!==f);else this.stack.length=l}else this.options.xmlMode||"p"!==c||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,n,i=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===i&&(null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,i,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var n=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?n.toLowerCase():n}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var n,i;this.endIndex=t,null===(i=(n=this.cbs).onattribute)||void 0===i||i.call(n,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),n=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(n=n.toLowerCase()),n}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var i=this.getInstructionName(n);this.cbs.onprocessinginstruction("!".concat(i),"!".concat(n))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var i=this.getInstructionName(n);this.cbs.onprocessinginstruction("?".concat(i),"?".concat(n))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,n){var i,o,a,s;this.endIndex=t,null===(o=(i=this.cbs).oncomment)||void 0===o||o.call(i,this.getSlice(e,t-n)),null===(s=(a=this.cbs).oncommentend)||void 0===s||s.call(a),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,n){this.endIndex=t;var i,o,a,s,u,c,l,f,d,h,p=this.getSlice(e,t-n);this.options.xmlMode||this.options.recognizeCDATA?(null===(o=(i=this.cbs).oncdatastart)||void 0===o||o.call(i),null===(s=(a=this.cbs).ontext)||void 0===s||s.call(a,p),null===(c=(u=this.cbs).oncdataend)||void 0===c||c.call(u)):(null===(f=(l=this.cbs).oncomment)||void 0===f||f.call(l,"[CDATA[".concat(p,"]]")),null===(h=(d=this.cbs).oncommentend)||void 0===h||h.call(d)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var n=this.stack.length;n>0;this.cbs.onclosetag(this.stack[--n],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,n,i;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(i=(n=this.cbs).onparserinit)||void 0===i||i.call(n,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var n=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),n+=this.buffers[0].slice(0,t-this.bufferOffset);return n}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,n;if(this.ended){null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,n;if(this.ended){null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this)).data=e,i}return th(n,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),n}(tQ(t0)),t3=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(n,[{key:"nodeType",get:function(){return 3}}]),n}(t1),t2=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(n,[{key:"nodeType",get:function(){return 8}}]),n}(t1),t5=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e,i){var o;return tf(this,n),(o=t.call(this,i)).name=e,o.type=eh.Directive,o}return th(n,[{key:"nodeType",get:function(){return 1}}]),n}(t1),t8=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this)).children=e,i}return th(n,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),n}(tQ(t0)),t6=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(n,[{key:"nodeType",get:function(){return 4}}]),n}(t8),t4=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(n,[{key:"nodeType",get:function(){return 9}}]),n}(t8),t9=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e,i){var o,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,n),(o=t.call(this,a)).name=e,o.attribs=i,o.type=s,o}return th(n,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var n,i;return{name:t,value:e.attribs[t],namespace:null===(n=e["x-attribsNamespace"])||void 0===n?void 0:n[t],prefix:null===(i=e["x-attribsPrefix"])||void 0===i?void 0:i[t]}})}}]),n}(t8);function t7(e){var t,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var i=n?re(e.children):[],o=new t9(e.name,tG({},e.attribs),i);i.forEach(function(e){return e.parent=o}),null!=e.namespace&&(o.namespace=e.namespace),e["x-attribsNamespace"]&&(o["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(o["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=o}else if(e.type===eh.CDATA){var a=n?re(e.children):[],s=new t6(a);a.forEach(function(e){return e.parent=s}),t=s}else if(e.type===eh.Root){var u=n?re(e.children):[],c=new t4(u);u.forEach(function(e){return e.parent=c}),e["x-mode"]&&(c["x-mode"]=e["x-mode"]),t=c}else if(e.type===eh.Directive){var l=new t5(e.name,e.data);null!=e["x-name"]&&(l["x-name"]=e["x-name"],l["x-publicId"]=e["x-publicId"],l["x-systemId"]=e["x-systemId"]),t=l}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),n=1;n䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(G=em||(em={}))[G.NUM=35]="NUM",G[G.SEMI=59]="SEMI",G[G.EQUALS=61]="EQUALS",G[G.ZERO=48]="ZERO",G[G.NINE=57]="NINE",G[G.LOWER_A=97]="LOWER_A",G[G.LOWER_F=102]="LOWER_F",G[G.LOWER_X=120]="LOWER_X",G[G.LOWER_Z=122]="LOWER_Z",G[G.UPPER_A=65]="UPPER_A",G[G.UPPER_F=70]="UPPER_F",G[G.UPPER_Z=90]="UPPER_Z",(Y=ev||(ev={}))[Y.VALUE_LENGTH=49152]="VALUE_LENGTH",Y[Y.BRANCH_LENGTH=16256]="BRANCH_LENGTH",Y[Y.JUMP_TABLE=127]="JUMP_TABLE",(K=eg||(eg={}))[K.EntityStart=0]="EntityStart",K[K.NumericStart=1]="NumericStart",K[K.NumericDecimal=2]="NumericDecimal",K[K.NumericHex=3]="NumericHex",K[K.NamedEntity=4]="NamedEntity",(Z=ey||(ey={}))[Z.Legacy=0]="Legacy",Z[Z.Strict=1]="Strict",Z[Z.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,n,i){tf(this,e),this.decodeTree=t,this.emitCodePoint=n,this.errors=i,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,n,i){if(t!==n){var o=n-t;this.result=this.result*Math.pow(i,o)+parseInt(e.substr(t,o),i),this.consumed+=o}}},{key:"stateNumericHex",value:function(e,t){for(var n=t;t=em.UPPER_A)||!(i<=em.UPPER_F))&&(!(i>=em.LOWER_A)||!(i<=em.LOWER_F)))return this.addToNumericResult(e,n,t,16),this.emitNumericEntity(o,3);t+=1}return this.addToNumericResult(e,n,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var n=t;t=55296&&i<=57343||i>1114111?65533:null!==(o=ri.get(i))&&void 0!==o?o:i,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var n=this.decodeTree,i=n[this.treeIndex],o=(i&ev.VALUE_LENGTH)>>14;t>7,a=t&ev.JUMP_TABLE;if(0===o)return 0!==a&&i===a?n:-1;if(a){var s=i-a;return s<0||s>=o?-1:e[n+s]-1}for(var u=n,c=u+o-1;u<=c;){var l=u+c>>>1,f=e[l];if(fi))return e[l+o];c=l-1}}return -1}(n,i,this.treeIndex+Math.max(1,o),a),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===o||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(a))?0:this.emitNotTerminatedNamedEntity();if(0!=(o=((i=n[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(a===em.SEMI)return this.emitNamedEntityData(this.treeIndex,o,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,n=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,n){var i=this.decodeTree;return this.emitCodePoint(1===t?i[e]&~ev.VALUE_LENGTH:i[e+1],n),3===t&&this.emitCodePoint(i[e+2],n),n}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",n=new rs(e,function(e){return t+=ro(e)});return function(e,i){for(var o=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(o,a),n.startEntity(i);var s=n.write(e,a+1);if(s<0){o=a+n.end();break}o=a+s,a=0===s?o+1:o}var u=t+e.slice(o);return t="",u}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(n){for(var i,o=0,a="";i=e.exec(n);)o!==i.index&&(a+=n.substring(o,i.index)),a+=t.get(i[0].charCodeAt(0)),o=i.index+1;return a+n.substring(o)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Q=eb||(eb={}))[Q.XML=0]="XML",Q[Q.HTML=1]="HTML",(J=ew||(ew={}))[J.UTF8=0]="UTF8",J[J.ASCII=1]="ASCII",J[J.Extensive=2]="Extensive",J[J.Attribute=3]="Attribute",J[J.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(X=ex||(ex={}))[X.DISCONNECTED=1]="DISCONNECTED",X[X.PRECEDING=2]="PRECEDING",X[X.FOLLOWING=4]="FOLLOWING",X[X.CONTAINS=8]="CONTAINS",X[X.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! +!function(){function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,M,R,B,q,U,j,F,V,$,z,H,W,G,Y,K,Z,Q,J,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eM,eR,eB,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},ez={},eH=eV.parcelRequire5393;null==eH&&((eH=function(e){if(e in e$)return e$[e].exports;if(e in ez){var t=ez[e];delete ez[e];var r={id:e,exports:{}};return e$[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){ez[e]=t},eV.parcelRequire5393=eH);var eW=eH.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eY(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eK(e)}eW("ilwPy",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,T=i,N=A-u+1,O=Array(N),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var M=t.lengthM&&S(e,t,u,t.length),r.length>M&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&B(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function M(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function B(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eW("bgUiC",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),eH("2L7Ke"),"function"==typeof SuppressedError&&SuppressedError}),eW("2L7Ke",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("8IMbs",function(e,t){var r=eH("ilwPy");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eW("ar5FS",function(e,t){var r=eH("gOSId"),n=eH("7KoNz");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eW("4L5Fm",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eW("a26rS",function(e,t){var r=eH("goS5k");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eW("goS5k",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eW("bWx8M",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("9PbbU",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("izz4O",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eZ=(eH("bgUiC"),eH("bgUiC")),eQ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eJ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eQ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eY(function(){var r,i,o,a,s,u,c,l;return(0,eZ.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eK(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e5[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eZ=eH("bgUiC"),te=(B=eY(function(e,t){var r;return(0,eZ.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return B.apply(this,arguments)}),tt={},tr=eH("2L7Ke");tt=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=N[(3&r[t])<<4|r[t+1]>>4],n+=N[(15&r[t+1])<<2|r[t+2]>>6],n+=N[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=z.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===z.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=M:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=B:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=H(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case M:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case B:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:H,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function Z(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(Z.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Q={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return eH("izz4O").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return eH("izz4O").fromCodePoint}}),(q=ea||(ea={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=eu||(eu={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=ec=tp.DecodingMode||(tp.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tS=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=ea.UPPER_A)||!(n<=ea.UPPER_F))&&(!(n>=ea.LOWER_A)||!(n<=ea.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(o===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~es.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",r=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tA(e,t,r,n){var i=(t&es.BRANCH_LENGTH)>>7,o=t&es.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},(V=el||(el={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=ef||(ef={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(z=ed||(ed={}))[z.NoValue=0]="NoValue",z[z.Unquoted=1]="Unquoted",z[z.Single=2]="Single",z[z.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tf(this,e),this.cbs=r,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tP)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return th(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tq.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tj.has(u)||tF.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).data=e,n}return th(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tQ(t0)),t3=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(r,[{key:"nodeType",get:function(){return 3}}]),r}(t1),t2=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(r,[{key:"nodeType",get:function(){return 8}}]),r}(t1),t5=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e,n){var i;return tf(this,r),(i=t.call(this,n)).name=e,i.type=eh.Directive,i}return th(r,[{key:"nodeType",get:function(){return 1}}]),r}(t1),t8=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).children=e,n}return th(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tQ(t0)),t6=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(r,[{key:"nodeType",get:function(){return 4}}]),r}(t8),t4=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(r,[{key:"nodeType",get:function(){return 9}}]),r}(t8),t9=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return th(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t8);function t7(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var n=r?re(e.children):[],i=new t9(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===eh.CDATA){var o=r?re(e.children):[],a=new t6(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===eh.Root){var s=r?re(e.children):[],u=new t4(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===eh.Directive){var c=new t5(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(W=em||(em={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=ev||(ev={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=eg||(eg={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=ey||(ey={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=em.UPPER_A)||!(n<=em.UPPER_F))&&(!(n>=em.LOWER_A)||!(n<=em.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=ri.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&ev.VALUE_LENGTH)>>14;t>7,o=t&ev.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===i||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(o===em.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ev.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",r=new rs(e,function(e){return t+=ro(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Z=eb||(eb={}))[Z.XML=0]="XML",Z[Z.HTML=1]="HTML",(Q=ew||(ew={}))[Q.UTF8=0]="UTF8",Q[Q.ASCII=1]="ASCII",Q[Q.Extensive=2]="Extensive",Q[Q.Attribute=3]="Attribute",Q[Q.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(J=ex||(ex={}))[J.DISCONNECTED=1]="DISCONNECTED",J[J.PRECEDING=2]="PRECEDING",J[J.FOLLOWING=4]="FOLLOWING",J[J.CONTAINS=8]="CONTAINS",J[J.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! * is-plain-object * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. - */function rd(e){return"[object Object]"===Object.prototype.toString.call(e)}rf=function(e){if("string"!=typeof e)throw TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")};var rh=function(e){var t,n;return!1!==rd(e)&&(void 0===(t=e.constructor)||!1!==rd(n=t.prototype)&&!1!==n.hasOwnProperty("isPrototypeOf"))},rp={},rm=function(e){var t;return!!e&&"object"==typeof e&&"[object RegExp]"!==(t=Object.prototype.toString.call(e))&&"[object Date]"!==t&&e.$$typeof!==rv},rv="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function rg(e,t){return!1!==t.clone&&t.isMergeableObject(e)?rx(Array.isArray(e)?[]:{},e,t):e}function ry(e,t,n){return e.concat(t).map(function(e){return rg(e,n)})}function rb(e){return Object.keys(e).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter(function(t){return Object.propertyIsEnumerable.call(e,t)}):[])}function rw(e,t){try{return t in e}catch(e){return!1}}function rx(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||ry,n.isMergeableObject=n.isMergeableObject||rm,n.cloneUnlessOtherwiseSpecified=rg;var i,o,a=Array.isArray(t);return a!==Array.isArray(e)?rg(t,n):a?n.arrayMerge(e,t,n):(o={},(i=n).isMergeableObject(e)&&rb(e).forEach(function(t){o[t]=rg(e[t],i)}),rb(t).forEach(function(n){rw(e,n)&&!(Object.hasOwnProperty.call(e,n)&&Object.propertyIsEnumerable.call(e,n))||(rw(e,n)&&i.isMergeableObject(t[n])?o[n]=(function(e,t){if(!t.customMerge)return rx;var n=t.customMerge(e);return"function"==typeof n?n:rx})(n,i)(e[n],t[n],i):o[n]=rg(t[n],i))}),o)}rx.all=function(e,t){if(!Array.isArray(e))throw Error("first argument should be an array");return e.reduce(function(e,n){return rx(e,n,t)},{})},rp=rx;var rE={};ee=rE,et=function(){return function(e){function t(e){return" "===e||" "===e||"\n"===e||"\f"===e||"\r"===e}function n(t){var n,i=t.exec(e.substring(v));if(i)return n=i[0],v+=n.length,n}for(var i,o,a,s,u,c=e.length,l=/^[ \t\n\r\u000c]+/,f=/^[, \t\n\r\u000c]+/,d=/^[^ \t\n\r\u000c]+/,h=/[,]+$/,p=/^\d+$/,m=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,v=0,g=[];;){if(n(f),v>=c)return g;i=n(d),o=[],","===i.slice(-1)?(i=i.replace(h,""),y()):function(){for(n(l),a="",s="in descriptor";;){if(u=e.charAt(v),"in descriptor"===s){if(t(u))a&&(o.push(a),a="",s="after descriptor");else if(","===u){v+=1,a&&o.push(a),y();return}else if("("===u)a+=u,s="in parens";else if(""===u){a&&o.push(a),y();return}else a+=u}else if("in parens"===s){if(")"===u)a+=u,s="in descriptor";else if(""===u){o.push(a),y();return}else a+=u}else if("after descriptor"===s){if(t(u));else if(""===u){y();return}else s="in descriptor",v-=1}v+=1}}()}function y(){var t,n,a,s,u,c,l,f,d,h=!1,v={};for(s=0;se.length)&&(t=e.length);for(var n=0,i=Array(t);n",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var n=this.source;null==e&&(e=rL.isColorSupported);var i=function(e){return e},o=function(e){return e},a=function(e){return e};if(e){var s=rL.createColors(!0),u=s.bold,c=s.gray,l=s.red;o=function(e){return u(l(e))},i=function(e){return c(e)},rR&&(a=function(e){return rR(e)})}var f=n.split(/\r?\n/),d=Math.max(this.line-3,0),h=Math.min(this.line+2,f.length),p=String(h).length;return f.slice(d,h).map(function(e,n){var s=d+1+n,u=" "+(" "+s).slice(-p)+" | ";if(s===t.line){if(e.length>160){var c=Math.max(0,t.column-20),l=Math.max(t.column+20,t.endColumn+20),f=e.slice(c,l),h=i(u.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return o(">")+i(u)+a(f)+"\n "+h+o("^")}var m=i(u.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return o(">")+i(u)+a(e)+"\n "+m+o("^")}return" "+i(u)+a(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),n}(tQ(Error));rP=rB,rB.default=rB;var rq={},rU={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rj=/*#__PURE__*/function(){function e(t){tf(this,e),this.builder=t}return th(e,[{key:"atrule",value:function(e,t){var n="@"+e.name,i=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?n+=e.raws.afterName:i&&(n+=" "),e.nodes)this.block(e,n+i);else{var o=(e.raws.between||"")+(t?";":"");this.builder(n+i+o,e)}}},{key:"beforeAfter",value:function(e,t){n="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var n,i=e.parent,o=0;i&&"root"!==i.type;)o+=1,i=i.parent;if(n.includes("\n")){var a=this.raw(e,null,"indent");if(a.length)for(var s=0;s0&&"comment"===e.nodes[t].type;)t-=1;for(var n=this.raw(e,"semicolon"),i=0;i0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var n;return e.walkComments(function(e){if(void 0!==e.raws.before)return(n=e.raws.before).includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1}),void 0===n?n=this.raw(t,null,"beforeDecl"):n&&(n=n.replace(/\S/g,"")),n}},{key:"rawBeforeDecl",value:function(e,t){var n;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(n=e.raws.before).includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1}),void 0===n?n=this.raw(t,null,"beforeRule"):n&&(n=n.replace(/\S/g,"")),n}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(n){if(n.nodes&&(n.parent!==e||e.first!==n)&&void 0!==n.raws.before)return(t=n.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(n){var i=n.parent;if(i&&i!==e&&i.parent&&i.parent===e&&void 0!==n.raws.before){var o=n.raws.before.split("\n");return t=(t=o[o.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var n=e[t],i=e.raws[t];return i&&i.value===n?i.raw:n}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rq=rj,rj.default=rj;var rF={};function rV(e,t){new rq(t).stringify(e)}rF=rV,rV.default=rV,eE=Symbol("isClean"),eS=Symbol("my");var r$=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var n in tf(this,e),this.raws={},this[eE]=!1,this[eS]=!0,t)if("nodes"===n){this.nodes=[];var i=!0,o=!1,a=void 0;try{for(var s,u=t[n][Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value;"function"==typeof c.clone?this.append(c.clone()):this.append(c)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}else this[n]=t[n]}return th(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,n){var i=new t.constructor;for(var o in t)if(Object.prototype.hasOwnProperty.call(t,o)&&"proxyCache"!==o){var a=t[o],s=void 0===a?"undefined":(0,tr._)(a);"parent"===o&&"object"===s?n&&(i[o]=n):"source"===o?i[o]=a:Array.isArray(a)?i[o]=a.map(function(t){return e(t,i)}):("object"===s&&null!==a&&(a=e(a)),i[o]=a)}return i}(this);for(var n in e)t[n]=e[n];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var n=this.rangeBy(t),i=n.end,o=n.start;return this.source.input.error(e,{column:o.column,line:o.line},{column:i.column,line:i.line},t)}return new rP(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,n){return e[t]===n||(e[t]=n,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[eE]=!0}},{key:"markDirty",value:function(){if(this[eE]){this[eE]=!1;for(var e=this;e=e.parent;)e[eE]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var n=this.source.start;if(e.index)n=this.positionInside(e.index,t);else if(e.word){var i=(t=this.toString()).indexOf(e.word);-1!==i&&(n=this.positionInside(i,t))}return n}},{key:"positionInside",value:function(e,t){for(var n=t||this.toString(),i=this.source.start.column,o=this.source.start.line,a=0;a0&&void 0!==arguments[0]?arguments[0]:rF;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,n){var i={node:this};for(var o in n)i[o]=n[o];return e.warn(t,i)}},{key:"proxyOf",get:function(){return this}}]),e}();rC=r$,r$.default=r$;var rz=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this,e)).type="comment",i}return n}(tQ(rC));r_=rz,rz.default=rz;var rH={},rW=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e){var i;return tf(this,n),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=rt(tG({},e),{value:String(e.value)})),(i=t.call(this,e)).type="decl",i}return th(n,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),n}(tQ(rC));rH=rW,rW.default=rW;var rG=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(){return tf(this,n),t.apply(this,arguments)}return th(n,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),n=0;n1?t-1:0),o=1;o=e&&(this.indexes[n]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,n){return n||(n=t,t={}),this.walkDecls(function(i){(!t.props||t.props.includes(i.prop))&&(!t.fast||i.value.includes(t.fast))&&(i.value=i.value.replace(e,n))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,n){var i;try{i=e(t,n)}catch(e){throw t.addToError(e)}return!1!==i&&t.walk&&(i=t.walk(e)),i})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(n,i){if("atrule"===n.type&&e.test(n.name))return t(n,i)}):this.walk(function(n,i){if("atrule"===n.type&&n.name===e)return t(n,i)}):(t=e,this.walk(function(e,n){if("atrule"===e.type)return t(e,n)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,n){if("comment"===t.type)return e(t,n)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(n,i){if("decl"===n.type&&e.test(n.prop))return t(n,i)}):this.walk(function(n,i){if("decl"===n.type&&n.prop===e)return t(n,i)}):(t=e,this.walk(function(e,n){if("decl"===e.type)return t(e,n)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(n,i){if("rule"===n.type&&e.test(n.selector))return t(n,i)}):this.walk(function(n,i){if("rule"===n.type&&n.selector===e)return t(n,i)}):(t=e,this.walk(function(e,n){if("rule"===e.type)return t(e,n)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),n}(tQ(rC));rG.registerParse=function(e){eA=e},rG.registerRule=function(e){eT=e},rG.registerAtRule=function(e){ek=e},rG.registerRoot=function(e){eI=e},rO=rG,rG.default=rG,rG.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,ek.prototype):"rule"===e.type?Object.setPrototypeOf(e,eT.prototype):"decl"===e.type?Object.setPrototypeOf(e,rH.prototype):"comment"===e.type?Object.setPrototypeOf(e,r_.prototype):"root"===e.type&&Object.setPrototypeOf(e,eI.prototype),e[eS]=!0,e.nodes&&e.nodes.forEach(function(e){rG.rebuild(e)})};var rY=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this,e)).type="atrule",i}return th(n,[{key:"append",value:function(){for(var e,t=arguments.length,i=Array(t),o=0;o0&&void 0!==arguments[0]?arguments[0]:{};return new eN(new eO,this,e).stringify()}}]),n}(rO);rZ.registerLazyResult=function(e){eN=e},rZ.registerProcessor=function(e){eO=e},rK=rZ,rZ.default=rZ;var rQ={};function rJ(e,t){if(null==e)return{};var n,i,o=function(e,t){if(null==e)return{};var n,i,o={},a=Object.keys(e);for(i=0;i=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(i=0;i=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var rX={},r0=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",n=e;n--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r1=rR.isAbsolute,r3=rR.resolve,r2=rR.SourceMapConsumer,r5=rR.SourceMapGenerator,r8=rR.fileURLToPath,r6=rR.pathToFileURL,r4={},tr=eH("2L7Ke");e_=function(e){var t,n,i=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");-1===n&&(n=t);var i=n===t?0:4-n%4;return[n,i]}(e),o=i[0],a=i[1],s=new ne((o+a)*3/4-a),u=0,c=a>0?o-4:o;for(n=0;n>16&255,s[u++]=t>>8&255,s[u++]=255&t;return 2===a&&(t=r7[e.charCodeAt(n)]<<2|r7[e.charCodeAt(n+1)]>>4,s[u++]=255&t),1===a&&(t=r7[e.charCodeAt(n)]<<10|r7[e.charCodeAt(n+1)]<<4|r7[e.charCodeAt(n+2)]>>2,s[u++]=t>>8&255,s[u++]=255&t),s},eC=function(e){for(var t,n=e.length,i=n%3,o=[],a=0,s=n-i;a>18&63]+r9[i>>12&63]+r9[i>>6&63]+r9[63&i]);return o.join("")}(e,a,a+16383>s?s:a+16383));return 1===i?o.push(r9[(t=e[n-1])>>2]+r9[t<<4&63]+"=="):2===i&&o.push(r9[(t=(e[n-2]<<8)+e[n-1])>>10]+r9[t>>4&63]+r9[t<<2&63]+"="),o.join("")};for(var r9=[],r7=[],ne="undefined"!=typeof Uint8Array?Uint8Array:Array,nt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nr=0,nn=nt.length;nr>1,f=-7,d=n?o-1:0,h=n?-1:1,p=e[t+d];for(d+=h,a=p&(1<<-f)-1,p>>=-f,f+=u;f>0;a=256*a+e[t+d],d+=h,f-=8);for(s=a&(1<<-f)-1,a>>=-f,f+=i;f>0;s=256*s+e[t+d],d+=h,f-=8);if(0===a)a=1-l;else{if(a===c)return s?NaN:1/0*(p?-1:1);s+=Math.pow(2,i),a-=l}return(p?-1:1)*s*Math.pow(2,a-i)},eL=function(e,t,n,i,o,a){var s,u,c,l=8*a-o-1,f=(1<>1,h=23===o?5960464477539062e-23:0,p=i?0:a-1,m=i?1:-1,v=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(u=isNaN(t)?1:0,s=f):(s=Math.floor(Math.log(t)/Math.LN2),t*(c=Math.pow(2,-s))<1&&(s--,c*=2),s+d>=1?t+=h/c:t+=h*Math.pow(2,1-d),t*c>=2&&(s++,c/=2),s+d>=f?(u=0,s=f):s+d>=1?(u=(t*c-1)*Math.pow(2,o),s+=d):(u=t*Math.pow(2,d-1)*Math.pow(2,o),s=0));o>=8;e[n+p]=255&u,p+=m,u/=256,o-=8);for(s=s<0;e[n+p]=255&s,p+=m,s/=256,l-=8);e[n+p-m]|=128*v};var ni="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function no(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,na.prototype),t}function na(e,t,n){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nc(e)}return ns(e,t,n)}function ns(e,t,n){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!na.isEncoding(t))throw TypeError("Unknown encoding: "+t);var n=0|nh(e,t),i=no(n),o=i.write(e,t);return o!==n&&(i=i.slice(0,o)),i}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nR(e,Uint8Array)){var t=new Uint8Array(e);return nf(t.buffer,t.byteOffset,t.byteLength)}return nl(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)));if(nR(e,ArrayBuffer)||e&&nR(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nR(e,SharedArrayBuffer)||e&&nR(e.buffer,SharedArrayBuffer)))return nf(e,t,n);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var i=e.valueOf&&e.valueOf();if(null!=i&&i!==e)return na.from(i,t,n);var o=function(e){if(na.isBuffer(e)){var t,n=0|nd(e.length),i=no(n);return 0===i.length||e.copy(i,0,0,n),i}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?no(0):nl(e):"Buffer"===e.type&&Array.isArray(e.data)?nl(e.data):void 0}(e);if(o)return o;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return na.from(e[Symbol.toPrimitive]("string"),t,n);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)))}function nu(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nc(e){return nu(e),no(e<0?0:0|nd(e))}function nl(e){for(var t=e.length<0?0:0|nd(e.length),n=no(t),i=0;i=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nh(e,t){if(na.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nR(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tr._)(e)));var n=e.length,i=arguments.length>2&&!0===arguments[2];if(!i&&0===n)return 0;for(var o=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return nL(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return nD(e).length;default:if(o)return i?-1:nL(e).length;t=(""+t).toLowerCase(),o=!0}}function np(e,t,n){var i,o,a=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===n||n>this.length)&&(n=this.length),n<=0||(n>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,n){var i=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>i)&&(n=i);for(var o="",a=t;a0x7fffffff?n=0x7fffffff:n<-0x80000000&&(n=-0x80000000),(a=n=+n)!=a&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return -1;n=e.length-1}else if(n<0){if(!o)return -1;n=0}if("string"==typeof t&&(t=na.from(t,i)),na.isBuffer(t))return 0===t.length?-1:ng(e,t,n,i,o);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):ng(e,[t],n,i,o);throw TypeError("val must be string, number or Buffer")}function ng(e,t,n,i,o){var a,s=1,u=e.length,c=t.length;if(void 0!==i&&("ucs2"===(i=String(i).toLowerCase())||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(e.length<2||t.length<2)return -1;s=2,u/=2,c/=2,n/=2}function l(e,t){return 1===s?e[t]:e.readUInt16BE(t*s)}if(o){var f=-1;for(a=n;au&&(n=u-c),a=n;a>=0;a--){for(var d=!0,h=0;h239?4:a>223?3:a>191?2:1;if(o+u<=n){var c=void 0,l=void 0,f=void 0,d=void 0;switch(u){case 1:a<128&&(s=a);break;case 2:(192&(c=e[o+1]))==128&&(d=(31&a)<<6|63&c)>127&&(s=d);break;case 3:c=e[o+1],l=e[o+2],(192&c)==128&&(192&l)==128&&(d=(15&a)<<12|(63&c)<<6|63&l)>2047&&(d<55296||d>57343)&&(s=d);break;case 4:c=e[o+1],l=e[o+2],f=e[o+3],(192&c)==128&&(192&l)==128&&(192&f)==128&&(d=(15&a)<<18|(63&c)<<12|(63&l)<<6|63&f)>65535&&d<1114112&&(s=d)}}null===s?(s=65533,u=1):s>65535&&(s-=65536,i.push(s>>>10&1023|55296),s=56320|1023&s),i.push(s),o+=u}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var n="",i=0;in)throw RangeError("Trying to access beyond buffer length")}function nw(e,t,n,i,o,a){if(!na.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw RangeError("Index out of range")}function nx(e,t,n,i,o){nO(t,i,o,e,n,7);var a=Number(t&BigInt(0xffffffff));e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a;var s=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[n++]=s,s>>=8,e[n++]=s,s>>=8,e[n++]=s,s>>=8,e[n++]=s,n}function nE(e,t,n,i,o){nO(t,i,o,e,n,7);var a=Number(t&BigInt(0xffffffff));e[n+7]=a,a>>=8,e[n+6]=a,a>>=8,e[n+5]=a,a>>=8,e[n+4]=a;var s=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[n+3]=s,s>>=8,e[n+2]=s,s>>=8,e[n+1]=s,s>>=8,e[n]=s,n+8}function nS(e,t,n,i,o,a){if(n+i>e.length||n<0)throw RangeError("Index out of range")}function nk(e,t,n,i,o){return t=+t,n>>>=0,o||nS(e,t,n,4,34028234663852886e22,-34028234663852886e22),eL(e,t,n,i,23,4),n+4}function nA(e,t,n,i,o){return t=+t,n>>>=0,o||nS(e,t,n,8,17976931348623157e292,-17976931348623157e292),eL(e,t,n,i,52,8),n+8}na.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),na.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(na.prototype,"parent",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.buffer}}),Object.defineProperty(na.prototype,"offset",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.byteOffset}}),na.poolSize=8192,na.from=function(e,t,n){return ns(e,t,n)},Object.setPrototypeOf(na.prototype,Uint8Array.prototype),Object.setPrototypeOf(na,Uint8Array),na.alloc=function(e,t,n){return(nu(e),e<=0)?no(e):void 0!==t?"string"==typeof n?no(e).fill(t,n):no(e).fill(t):no(e)},na.allocUnsafe=function(e){return nc(e)},na.allocUnsafeSlow=function(e){return nc(e)},na.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==na.prototype},na.compare=function(e,t){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),nR(t,Uint8Array)&&(t=na.from(t,t.offset,t.byteLength)),!na.isBuffer(e)||!na.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var n=e.length,i=t.length,o=0,a=Math.min(n,i);oi.length?(na.isBuffer(a)||(a=na.from(a)),a.copy(i,o)):Uint8Array.prototype.set.call(i,a,o);else if(na.isBuffer(a))a.copy(i,o);else throw TypeError('"list" argument must be an Array of Buffers');o+=a.length}return i},na.byteLength=nh,na.prototype._isBuffer=!0,na.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},ni&&(na.prototype[ni]=na.prototype.inspect),na.prototype.compare=function(e,t,n,i,o){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),!na.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tr._)(e)));if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===i&&(i=0),void 0===o&&(o=this.length),t<0||n>e.length||i<0||o>this.length)throw RangeError("out of range index");if(i>=o&&t>=n)return 0;if(i>=o)return -1;if(t>=n)return 1;if(t>>>=0,n>>>=0,i>>>=0,o>>>=0,this===e)return 0;for(var a=o-i,s=n-t,u=Math.min(a,s),c=this.slice(i,o),l=e.slice(t,n),f=0;f>>=0,isFinite(n)?(n>>>=0,void 0===i&&(i="utf8")):(i=n,n=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var o,a,s,u,c,l,f,d,h=this.length-t;if((void 0===n||n>h)&&(n=h),e.length>0&&(n<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var p=!1;;)switch(i){case"hex":return function(e,t,n,i){n=Number(n)||0;var o,a=e.length-n;i?(i=Number(i))>a&&(i=a):i=a;var s=t.length;for(i>s/2&&(i=s/2),o=0;o>8,o.push(n%256),o.push(i);return o}(e,this.length-f),this,f,d);default:if(p)throw TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),p=!0}},na.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},na.prototype.slice=function(e,t){var n=this.length;e=~~e,t=void 0===t?n:~~t,e<0?(e+=n)<0&&(e=0):e>n&&(e=n),t<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=this[e],o=1,a=0;++a>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=this[e+--t],o=1;t>0&&(o*=256);)i+=this[e+--t]*o;return i},na.prototype.readUint8=na.prototype.readUInt8=function(e,t){return e>>>=0,t||nb(e,1,this.length),this[e]},na.prototype.readUint16LE=na.prototype.readUInt16LE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]|this[e+1]<<8},na.prototype.readUint16BE=na.prototype.readUInt16BE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]<<8|this[e+1]},na.prototype.readUint32LE=na.prototype.readUInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},na.prototype.readUint32BE=na.prototype.readUInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},na.prototype.readBigUInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],n=this[e+7];(void 0===t||void 0===n)&&nC(e,this.length-8);var i=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],o=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*n;return BigInt(i)+(BigInt(o)<>>=0,"offset");var t=this[e],n=this[e+7];(void 0===t||void 0===n)&&nC(e,this.length-8);var i=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],o=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+n;return(BigInt(i)<>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=this[e],o=1,a=0;++a=(o*=128)&&(i-=Math.pow(2,8*t)),i},na.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=t,o=1,a=this[e+--i];i>0&&(o*=256);)a+=this[e+--i]*o;return a>=(o*=128)&&(a-=Math.pow(2,8*t)),a},na.prototype.readInt8=function(e,t){return(e>>>=0,t||nb(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},na.prototype.readInt16LE=function(e,t){e>>>=0,t||nb(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?0xffff0000|n:n},na.prototype.readInt16BE=function(e,t){e>>>=0,t||nb(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?0xffff0000|n:n},na.prototype.readInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},na.prototype.readInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},na.prototype.readBigInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],n=this[e+7];return(void 0===t||void 0===n)&&nC(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(n<<24))<>>=0,"offset");var t=this[e],n=this[e+7];return(void 0===t||void 0===n)&&nC(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||nb(e,4,this.length),eP(this,e,!0,23,4)},na.prototype.readFloatBE=function(e,t){return e>>>=0,t||nb(e,4,this.length),eP(this,e,!1,23,4)},na.prototype.readDoubleLE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!0,52,8)},na.prototype.readDoubleBE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!1,52,8)},na.prototype.writeUintLE=na.prototype.writeUIntLE=function(e,t,n,i){if(e=+e,t>>>=0,n>>>=0,!i){var o=Math.pow(2,8*n)-1;nw(this,e,t,n,o,0)}var a=1,s=0;for(this[t]=255&e;++s>>=0,n>>>=0,!i){var o=Math.pow(2,8*n)-1;nw(this,e,t,n,o,0)}var a=n-1,s=1;for(this[t+a]=255&e;--a>=0&&(s*=256);)this[t+a]=e/s&255;return t+n},na.prototype.writeUint8=na.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,1,255,0),this[t]=255&e,t+1},na.prototype.writeUint16LE=na.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeUint16BE=na.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeUint32LE=na.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},na.prototype.writeUint32BE=na.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigUInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeBigUInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeIntLE=function(e,t,n,i){if(e=+e,t>>>=0,!i){var o=Math.pow(2,8*n-1);nw(this,e,t,n,o-1,-o)}var a=0,s=1,u=0;for(this[t]=255&e;++a>0)-u&255;return t+n},na.prototype.writeIntBE=function(e,t,n,i){if(e=+e,t>>>=0,!i){var o=Math.pow(2,8*n-1);nw(this,e,t,n,o-1,-o)}var a=n-1,s=1,u=0;for(this[t+a]=255&e;--a>=0&&(s*=256);)e<0&&0===u&&0!==this[t+a+1]&&(u=1),this[t+a]=(e/s>>0)-u&255;return t+n},na.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},na.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},na.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeBigInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeFloatLE=function(e,t,n){return nk(this,e,t,!0,n)},na.prototype.writeFloatBE=function(e,t,n){return nk(this,e,t,!1,n)},na.prototype.writeDoubleLE=function(e,t,n){return nA(this,e,t,!0,n)},na.prototype.writeDoubleBE=function(e,t,n){return nA(this,e,t,!1,n)},na.prototype.copy=function(e,t,n,i){if(!na.isBuffer(e))throw TypeError("argument should be a Buffer");if(n||(n=0),i||0===i||(i=this.length),t>=e.length&&(t=e.length),t||(t=0),i>0&&i=this.length)throw RangeError("Index out of range");if(i<0)throw RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o=i+4;n-=3)t="_".concat(e.slice(n-3,n)).concat(t);return"".concat(e.slice(0,n)).concat(t)}function nO(e,t,n,i,o,a){if(e>n||e3?0===t||t===BigInt(0)?">= 0".concat(u," and < 2").concat(u," ** ").concat((a+1)*8).concat(u):">= -(2".concat(u," ** ").concat((a+1)*8-1).concat(u,") and < 2 ** ")+"".concat((a+1)*8-1).concat(u):">= ".concat(t).concat(u," and <= ").concat(n).concat(u),new nI.ERR_OUT_OF_RANGE("value",s,e)}n_(o,"offset"),(void 0===i[o]||void 0===i[o+a])&&nC(o,i.length-(a+1))}function n_(e,t){if("number"!=typeof e)throw new nI.ERR_INVALID_ARG_TYPE(t,"number",e)}function nC(e,t,n){if(Math.floor(e)!==e)throw n_(e,n),new nI.ERR_OUT_OF_RANGE(n||"offset","an integer",e);if(t<0)throw new nI.ERR_BUFFER_OUT_OF_BOUNDS;throw new nI.ERR_OUT_OF_RANGE(n||"offset",">= ".concat(n?1:0," and <= ").concat(t),e)}nT("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nT("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tr._)(t))},TypeError),nT("ERR_OUT_OF_RANGE",function(e,t,n){var i='The value of "'.concat(e,'" is out of range.'),o=n;return Number.isInteger(n)&&Math.abs(n)>0x100000000?o=nN(String(n)):(void 0===n?"undefined":(0,tr._)(n))==="bigint"&&(o=String(n),(n>Math.pow(BigInt(2),BigInt(32))||n<-Math.pow(BigInt(2),BigInt(32)))&&(o=nN(o)),o+="n"),i+=" It must be ".concat(t,". Received ").concat(o)},RangeError);var nP=/[^+/0-9A-Za-z-_]/g;function nL(e,t){t=t||1/0;for(var n,i=e.length,o=null,a=[],s=0;s55295&&n<57344){if(!o){if(n>56319||s+1===i){(t-=3)>-1&&a.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&a.push(239,191,189),o=n;continue}n=(o-55296<<10|n-56320)+65536}else o&&(t-=3)>-1&&a.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;a.push(n)}else if(n<2048){if((t-=2)<0)break;a.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;a.push(n>>12|224,n>>6&63|128,63&n|128)}else if(n<1114112){if((t-=4)<0)break;a.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}else throw Error("Invalid code point")}return a}function nD(e){return e_(function(e){if((e=(e=e.split("=")[0]).trim().replace(nP,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nM(e,t,n,i){var o;for(o=0;o=t.length)&&!(o>=e.length);++o)t[o+n]=e[o];return o}function nR(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nB=function(){for(var e="0123456789abcdef",t=Array(256),n=0;n<16;++n)for(var i=16*n,o=0;o<16;++o)t[i+o]=e[n]+e[o];return t}();function nq(e){return"undefined"==typeof BigInt?nU:e}function nU(){throw Error("BigInt not supported")}var nj=rR.existsSync,nF=rR.readFileSync,nV=rR.dirname,n$=rR.join,nz=rR.SourceMapConsumer,nH=rR.SourceMapGenerator,nW=/*#__PURE__*/function(){function e(t,n){if(tf(this,e),!1!==n.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var i=n.map?n.map.prev:void 0,o=this.loadMap(n.from,i);!this.mapFile&&n.from&&(this.mapFile=n.from),this.mapFile&&(this.root=nV(this.mapFile)),o&&(this.text=o)}}return th(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new nz(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,n=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(n)return decodeURIComponent(e.substr(n[0].length));var i=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(i)return t=e.substr(i[0].length),na?na.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var n=e.lastIndexOf(t.pop()),i=e.indexOf("*/",n);n>-1&&i>-1&&(this.annotation=this.getAnnotationURL(e.substring(n,i)))}}},{key:"loadFile",value:function(e){if(this.root=nV(e),nj(e))return this.mapFile=e,nF(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var n=t(e);if(n){var i=this.loadFile(n);if(!i)throw Error("Unable to load previous source map: "+n.toString());return i}}else if(t instanceof nz)return nH.fromSourceMap(t).toString();else if(t instanceof nH)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var o=this.annotation;return e&&(o=n$(nV(e),o)),this.loadFile(o)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r4=nW,nW.default=nW;var nG=Symbol("fromOffsetCache"),nY=!!(r2&&r5),nK=!!(r3&&r1),nZ=/*#__PURE__*/function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,n.from&&(!nK||/^\w+:\/\//.test(n.from)||r1(n.from)?this.file=n.from:this.file=r3(n.from)),nK&&nY){var i=new r4(this.css,n);if(i.text){this.map=i;var o=i.consumer().file;!this.file&&o&&(this.file=this.mapResolve(o))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return th(e,[{key:"error",value:function(e,t,n){var i,o,a,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var u=t,c=n;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);t=l.line,n=l.col}else t=u.line,n=u.column;if("number"==typeof c.offset){var f=this.fromOffset(c.offset);o=f.line,i=f.col}else o=c.line,i=c.column}else if(!n){var d=this.fromOffset(t);t=d.line,n=d.col}var h=this.origin(t,n,o,i);return(a=h?new rP(e,void 0===h.endLine?h.line:{column:h.column,line:h.line},void 0===h.endLine?h.column:{column:h.endColumn,line:h.endLine},h.source,h.file,s.plugin):new rP(e,void 0===o?t:{column:n,line:t},void 0===o?n:{column:i,line:o},this.css,this.file,s.plugin)).input={column:n,endColumn:i,endLine:o,line:t,source:this.css},this.file&&(r6&&(a.input.url=r6(this.file).toString()),a.input.file=this.file),a}},{key:"fromOffset",value:function(e){if(this[nG])u=this[nG];else{var t=this.css.split("\n");u=Array(t.length);for(var n=0,i=0,o=t.length;i=s)a=u.length-1;else for(var s,u,c,l=u.length-2;a>1)])l=c-1;else if(e>=u[c+1])a=c+1;else{a=c;break}return{col:e-u[a]+1,line:a+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r3(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,n,i){if(!this.map)return!1;var o,a,s=this.map.consumer(),u=s.originalPositionFor({column:t,line:e});if(!u.source)return!1;"number"==typeof n&&(o=s.originalPositionFor({column:i,line:n})),a=r1(u.source)?r6(u.source):new URL(u.source,this.map.consumer().sourceRoot||r6(this.map.mapFile));var c={column:u.column,endColumn:o&&o.column,endLine:o&&o.line,line:u.line,url:a.toString()};if("file:"===a.protocol){if(r8)c.file=r8(a);else throw Error("file: protocol is not available in this PostCSS build")}var l=s.sourceContentFor(u.source);return l&&(c.source=l),c}},{key:"toJSON",value:function(){for(var e={},t=0,n=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var c,l=o[Symbol.iterator]();!(a=(c=l.next()).done);a=!0)c.value.raws.before=t.raws.before}catch(e){s=!0,u=e}finally{try{a||null==l.return||l.return()}finally{if(s)throw u}}}return o}},{key:"removeChild",value:function(e,t){var i=this.index(e);return!t&&0===i&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[i].raws.before),rN(tZ(n.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eD(new eM,this,e).stringify()}}]),n}(rO);nJ.registerLazyResult=function(e){eD=e},nJ.registerProcessor=function(e){eM=e},nQ=nJ,nJ.default=nJ,rO.registerRoot(nJ);var nX={},n0={},n1={comma:function(e){return n1.split(e,[","],!0)},space:function(e){return n1.split(e,[" ","\n"," "])},split:function(e,t,n){var i=[],o="",a=!1,s=0,u=!1,c="",l=!1,f=!0,d=!1,h=void 0;try{for(var p,m=e[Symbol.iterator]();!(f=(p=m.next()).done);f=!0){var v=p.value;l?l=!1:"\\"===v?l=!0:u?v===c&&(u=!1):'"'===v||"'"===v?(u=!0,c=v):"("===v?s+=1:")"===v?s>0&&(s-=1):0===s&&t.includes(v)&&(a=!0),a?(""!==o&&i.push(o.trim()),o="",a=!1):o+=v}}catch(e){d=!0,h=e}finally{try{f||null==m.return||m.return()}finally{if(d)throw h}}return(n||""!==o)&&i.push(o.trim()),i}};n0=n1,n1.default=n1;var n3=/*#__PURE__*/function(e){tH(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this,e)).type="rule",i.nodes||(i.nodes=[]),i}return th(n,[{key:"selectors",get:function(){return n0.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,n=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(n)}}]),n}(rO);function n2(e,t){if(Array.isArray(e))return e.map(function(e){return n2(e)});var n=e.inputs,i=rJ(e,["inputs"]);if(n){t=[];var o=!0,a=!1,s=void 0;try{for(var u,c=n[Symbol.iterator]();!(o=(u=c.next()).done);o=!0){var l=u.value,f=rt(tG({},l),{__proto__:rX.prototype});f.map&&(f.map=rt(tG({},f.map),{__proto__:r4.prototype})),t.push(f)}}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}if(i.nodes&&(i.nodes=e.nodes.map(function(e){return n2(e,t)})),i.source){var d=i.source,h=d.inputId,p=rJ(d,["inputId"]);i.source=p,null!=h&&(i.source.input=t[h])}if("root"===i.type)return new nQ(i);if("decl"===i.type)return new rH(i);if("rule"===i.type)return new nX(i);if("comment"===i.type)return new r_(i);if("atrule"===i.type)return new rT(i);throw Error("Unknown node type: "+e.type)}nX=n3,n3.default=n3,rO.registerRule(n3),rQ=n2,n2.default=n2;var n5={};function n8(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,i,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],s=!0,u=!1;try{for(o=o.call(e);!(s=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);s=!0);}catch(e){u=!0,i=e}finally{try{s||null==o.return||o.return()}finally{if(u)throw i}}return a}}(e,t)||rA(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eZ=(eH("bgUiC"),eH("bgUiC")),n6={},n4=rR.dirname,n9=rR.relative,n7=rR.resolve,ie=rR.sep,it=rR.SourceMapConsumer,ir=rR.SourceMapGenerator,ii=rR.pathToFileURL,io=!!(it&&ir),ia=!!(n4&&n7&&n9&&ie);n6=/*#__PURE__*/function(){function e(t,n,i,o){tf(this,e),this.stringify=t,this.mapOpts=i.map||{},this.root=n,this.opts=i,this.css=o,this.originalCSS=o,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return th(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,n=void 0;try{for(var i,o=this.previous()[Symbol.iterator]();!(e=(i=o.next()).done);e=!0){var a=i.value,s=this.toUrl(this.path(a.file)),u=a.root||n4(a.file),c=void 0;!1===this.mapOpts.sourcesContent?(c=new it(a.text)).sourcesContent&&(c.sourcesContent=null):c=a.consumer(),this.map.applySourceMap(c,s,this.toUrl(this.path(u)))}}catch(e){t=!0,n=e}finally{try{e||null==o.return||o.return()}finally{if(t)throw n}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),ia&&io&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=ir.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,n=this;this.css="",this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0});var i=1,o=1,a="",s={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(u,c,l){if(n.css+=u,c&&"end"!==l&&(s.generated.line=i,s.generated.column=o-1,c.source&&c.source.start?(s.source=n.sourcePath(c),s.original.line=c.source.start.line,s.original.column=c.source.start.column-1):(s.source=a,s.original.line=1,s.original.column=0),n.map.addMapping(s)),(t=u.match(/\n/g))?(i+=t.length,e=u.lastIndexOf("\n"),o=u.length-e):o+=u.length,c&&"start"!==l){var f=c.parent||{raws:{}};(!("decl"===c.type||"atrule"===c.type&&!c.nodes)||c!==f.last||f.raws.semicolon)&&(c.source&&c.source.end?(s.source=n.sourcePath(c),s.original.line=c.source.end.line,s.original.column=c.source.end.column-1,s.generated.line=i,s.generated.column=o-2):(s.source=a,s.original.line=1,s.original.column=0,s.generated.line=i,s.generated.column=o-1),n.map.addMapping(s))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var n=this.opts.to?n4(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(n=n4(n7(n,this.mapOpts.annotation)));var i=n9(n,e);return this.memoizedPaths.set(e,i),i}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var n=t.source.input.map;e.previousMaps.includes(n)||e.previousMaps.push(n)}});else{var t=new rX(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(n){if(n.source){var i=n.source.input.from;if(i&&!t[i]){t[i]=!0;var o=e.usesFileUrls?e.toFileUrl(i):e.toUrl(e.path(i));e.map.setSourceContent(o,n.source.input.css)}}});else if(this.css){var n=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(n,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return na?na.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ii){var n=ii(e).toString();return this.memoizedFileURLs.set(e,n),n}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===ie&&(e=e.replace(/\\/g,"/"));var n=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,n),n}}]),e}();var is={},iu={},ic={},il=/[\t\n\f\r "#'()/;[\\\]{}]/g,id=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,ih=/.[\r\n"'(/\\]/,ip=/[\da-f]/i;ic=function(e){var t,n,i,o,a,s,u,c,l,f,d=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},h=e.css.valueOf(),p=d.ignoreErrors,m=h.length,v=0,g=[],y=[];function b(t){throw e.error("Unclosed "+t,v)}return{back:function(e){y.push(e)},endOfFile:function(){return 0===y.length&&v>=m},nextToken:function(e){if(y.length)return y.pop();if(!(v>=m)){var d=!!e&&e.ignoreUnclosed;switch(t=h.charCodeAt(v)){case 10:case 32:case 9:case 13:case 12:o=v;do o+=1,t=h.charCodeAt(o);while(32===t||10===t||9===t||13===t||12===t)s=["space",h.slice(v,o)],v=o-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var w=String.fromCharCode(t);s=[w,w,v];break;case 40:if(f=g.length?g.pop()[1]:"",l=h.charCodeAt(v+1),"url"===f&&39!==l&&34!==l&&32!==l&&10!==l&&9!==l&&12!==l&&13!==l){o=v;do{if(u=!1,-1===(o=h.indexOf(")",o+1))){if(p||d){o=v;break}b("bracket")}for(c=o;92===h.charCodeAt(c-1);)c-=1,u=!u}while(u)s=["brackets",h.slice(v,o+1),v,o],v=o}else o=h.indexOf(")",v+1),n=h.slice(v,o+1),-1===o||ih.test(n)?s=["(","(",v]:(s=["brackets",n,v,o],v=o);break;case 39:case 34:a=39===t?"'":'"',o=v;do{if(u=!1,-1===(o=h.indexOf(a,o+1))){if(p||d){o=v+1;break}b("string")}for(c=o;92===h.charCodeAt(c-1);)c-=1,u=!u}while(u)s=["string",h.slice(v,o+1),v,o],v=o;break;case 64:il.lastIndex=v+1,il.test(h),o=0===il.lastIndex?h.length-1:il.lastIndex-2,s=["at-word",h.slice(v,o+1),v,o],v=o;break;case 92:for(o=v,i=!0;92===h.charCodeAt(o+1);)o+=1,i=!i;if(t=h.charCodeAt(o+1),i&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(o+=1,ip.test(h.charAt(o)))){for(;ip.test(h.charAt(o+1));)o+=1;32===h.charCodeAt(o+1)&&(o+=1)}s=["word",h.slice(v,o+1),v,o],v=o;break;default:47===t&&42===h.charCodeAt(v+1)?(0===(o=h.indexOf("*/",v+2)+1)&&(p||d?o=h.length:b("comment")),s=["comment",h.slice(v,o+1),v,o]):(id.lastIndex=v+1,id.test(h),o=0===id.lastIndex?h.length-1:id.lastIndex-2,s=["word",h.slice(v,o+1),v,o],g.push(s)),v=o}return v++,s}},position:function(){return v}}};var im={empty:!0,space:!0};function iv(e,t){var n=new rX(e,t),i=new iu(n);try{i.parse()}catch(e){throw e}return i.root}iu=/*#__PURE__*/function(){function e(t){tf(this,e),this.input=t,this.root=new nQ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return th(e,[{key:"atrule",value:function(e){var t,n,i,o=new rT;o.name=e[1].slice(1),""===o.name&&this.unnamedAtrule(o,e),this.init(o,e[2]);for(var a=!1,s=!1,u=[],c=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?c.push("("===t?")":"]"):"{"===t&&c.length>0?c.push("}"):t===c[c.length-1]&&c.pop(),0===c.length){if(";"===t){o.source.end=this.getPosition(e[2]),o.source.end.offset++,this.semicolon=!0;break}if("{"===t){s=!0;break}if("}"===t){if(u.length>0){for(i=u.length-1,n=u[i];n&&"space"===n[0];)n=u[--i];n&&(o.source.end=this.getPosition(n[3]||n[2]),o.source.end.offset++)}this.end(e);break}u.push(e)}else u.push(e);if(this.tokenizer.endOfFile()){a=!0;break}}o.raws.between=this.spacesAndCommentsFromEnd(u),u.length?(o.raws.afterName=this.spacesAndCommentsFromStart(u),this.raw(o,"params",u),a&&(e=u[u.length-1],o.source.end=this.getPosition(e[3]||e[2]),o.source.end.offset++,this.spaces=o.raws.between,o.raws.between="")):(o.raws.afterName="",o.params=""),s&&(o.nodes=[],this.current=o)}},{key:"checkMissedSemicolon",value:function(e){var t,n=this.colon(e);if(!1!==n){for(var i=0,o=n-1;o>=0&&("space"===(t=e[o])[0]||2!==(i+=1));o--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,n=!0,i=!1,o=void 0;try{for(var a,s,u,c=e.entries()[Symbol.iterator]();!(n=(u=c.next()).done);n=!0){var l=n8(u.value,2),f=l[0],d=l[1];if(s=d[0],"("===s&&(t+=1),")"===s&&(t-=1),0===t&&":"===s){if(a){if("word"===a[0]&&"progid"===a[1])continue;return f}this.doubleColon(d)}a=d}}catch(e){i=!0,o=e}finally{try{n||null==c.return||c.return()}finally{if(i)throw o}}return!1}},{key:"comment",value:function(e){var t=new r_;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var n=e[1].slice(2,-2);if(/^\s*$/.test(n))t.text="",t.raws.left=n,t.raws.right="";else{var i=n.match(/^(\s*)([^]*\S)(\s*)$/);t.text=i[2],t.raws.left=i[1],t.raws.right=i[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=ic(this.input)}},{key:"decl",value:function(e,t){var n,i,o=new rH;this.init(o,e[0][2]);var a=e[e.length-1];for(";"===a[0]&&(this.semicolon=!0,e.pop()),o.source.end=this.getPosition(a[3]||a[2]||function(e){for(var t=e.length-1;t>=0;t--){var n=e[t],i=n[3]||n[2];if(i)return i}}(e)),o.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),o.raws.before+=e.shift()[1];for(o.source.start=this.getPosition(e[0][2]),o.prop="";e.length;){var s=e[0][0];if(":"===s||"space"===s||"comment"===s)break;o.prop+=e.shift()[1]}for(o.raws.between="";e.length;){if(":"===(n=e.shift())[0]){o.raws.between+=n[1];break}"word"===n[0]&&/\w/.test(n[1])&&this.unknownWord([n]),o.raws.between+=n[1]}("_"===o.prop[0]||"*"===o.prop[0])&&(o.raws.before+=o.prop[0],o.prop=o.prop.slice(1));for(var u=[];e.length&&("space"===(i=e[0][0])||"comment"===i);)u.push(e.shift());this.precheckMissedSemicolon(e);for(var c=e.length-1;c>=0;c--){if("!important"===(n=e[c])[1].toLowerCase()){o.important=!0;var l=this.stringFrom(e,c);" !important"!==(l=this.spacesFromEnd(e)+l)&&(o.raws.important=l);break}if("important"===n[1].toLowerCase()){for(var f=e.slice(0),d="",h=c;h>0;h--){var p=f[h][0];if(d.trim().startsWith("!")&&"space"!==p)break;d=f.pop()[1]+d}d.trim().startsWith("!")&&(o.important=!0,o.raws.important=d,e=f)}if("space"!==n[0]&&"comment"!==n[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(o.raws.between+=u.map(function(e){return e[1]}).join(""),u=[]),this.raw(o,"value",u.concat(e),t),o.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nX;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,n=null,i=!1,o=null,a=[],s=e[1].startsWith("--"),u=[],c=e;c;){if(n=c[0],u.push(c),"("===n||"["===n)o||(o=c),a.push("("===n?")":"]");else if(s&&i&&"{"===n)o||(o=c),a.push("}");else if(0===a.length){if(";"===n){if(i){this.decl(u,s);return}break}if("{"===n){this.rule(u);return}if("}"===n){this.tokenizer.back(u.pop()),t=!0;break}":"===n&&(i=!0)}else n===a[a.length-1]&&(a.pop(),0===a.length&&(o=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),a.length>0&&this.unclosedBracket(o),t&&i){if(!s)for(;u.length&&("space"===(c=u[u.length-1][0])||"comment"===c);)this.tokenizer.back(u.pop());this.decl(u,s)}else this.unknownWord(u)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,n,i){for(var o,a,s,u,c=n.length,l="",f=!0,d=0;d1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),this.type="warning",this.text=t,n.node&&n.node.source){var i=n.node.rangeBy(n);this.line=i.start.line,this.column=i.start.column,this.endLine=i.end.line,this.endColumn=i.end.column}for(var o in n)this[o]=n[o]}return th(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();iy=ib,ib.default=ib;var iw=/*#__PURE__*/function(){function e(t,n,i){tf(this,e),this.processor=t,this.messages=[],this.root=n,this.opts=i,this.css=void 0,this.map=void 0}return th(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var n=new iy(e,t);return this.messages.push(n),n}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();ig=iw,iw.default=iw;var ix={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},iE={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iS={Once:!0,postcssPlugin:!0,prepare:!0};function ik(e){return"object"==typeof e&&"function"==typeof e.then}function iA(e){var t=!1,n=ix[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[n,n+"-"+t,0,n+"Exit",n+"Exit-"+t]:t?[n,n+"-"+t,n+"Exit",n+"Exit-"+t]:e.append?[n,0,n+"Exit"]:[n,n+"Exit"]}function iI(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:iA(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iT(e){return e[eE]=!1,e.nodes&&e.nodes.forEach(function(e){return iT(e)}),e}var iN={},iO=/*#__PURE__*/function(){function e(t,n,i){var o,a=this;if(tf(this,e),this.stringified=!1,this.processed=!1,"object"==typeof n&&null!==n&&("root"===n.type||"document"===n.type))o=iT(n);else if(n instanceof e||n instanceof ig)o=iT(n.root),n.map&&(void 0===i.map&&(i.map={}),i.map.inline||(i.map.inline=!1),i.map.prev=n.map);else{var s=is;i.syntax&&(s=i.syntax.parse),i.parser&&(s=i.parser),s.parse&&(s=s.parse);try{o=s(n,i)}catch(e){this.processed=!0,this.error=e}o&&!o[eS]&&rO.rebuild(o)}this.result=new ig(t,o,i),this.helpers=rt(tG({},iN),{postcss:iN,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tG({},e,e.prepare(a.result)):e})}return th(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var n=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?n.postcssVersion:(e.plugin=n.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,n,i){e.listeners[n]||(e.listeners[n]=[]),e.listeners[n].push([t,i])},n=!0,i=!1,o=void 0;try{for(var a,s=this.plugins[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;if("object"==typeof u)for(var c in u){if(!iE[c]&&/^[A-Z]/.test(c))throw Error("Unknown event ".concat(c," in ").concat(u.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iS[c]){if("object"==typeof u[c])for(var l in u[c])t(u,"*"===l?c:c+"-"+l.toLowerCase(),u[c][l]);else"function"==typeof u[c]&&t(u,c,u[c])}}}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eY(function(){var t,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g;return(0,eZ.__generator)(this,function(y){switch(y.label){case 0:e.plugin=0,t=0,y.label=1;case 1:if(!(t0))return[3,13];if(!ik(u=e.visitTick(s)))return[3,12];y.label=9;case 9:return y.trys.push([9,11,,12]),[4,u];case 10:return y.sent(),[3,12];case 11:throw c=y.sent(),l=s[s.length-1].node,e.handleError(c,l);case 12:return[3,8];case 13:return[3,7];case 14:if(f=!0,d=!1,h=void 0,!e.listeners.OnceExit)return[3,22];y.label=15;case 15:y.trys.push([15,20,21,22]),p=function(){var t,n,i,o;return(0,eZ.__generator)(this,function(s){switch(s.label){case 0:n=(t=n8(v.value,2))[0],i=t[1],e.result.lastPlugin=n,s.label=1;case 1:if(s.trys.push([1,6,,7]),"document"!==a.type)return[3,3];return[4,Promise.all(a.nodes.map(function(t){return i(t,e.helpers)}))];case 2:return s.sent(),[3,5];case 3:return[4,i(a,e.helpers)];case 4:s.sent(),s.label=5;case 5:return[3,7];case 6:throw o=s.sent(),e.handleError(o);case 7:return[2]}})},m=e.listeners.OnceExit[Symbol.iterator](),y.label=16;case 16:if(f=(v=m.next()).done)return[3,19];return[5,(0,eZ.__values)(p())];case 17:y.sent(),y.label=18;case 18:return f=!0,[3,16];case 19:return[3,22];case 20:return g=y.sent(),d=!0,h=g,[3,22];case 21:try{f||null==m.return||m.return()}finally{if(d)throw h}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var n=this.result.root.nodes.map(function(n){return e.Once(n,t.helpers)});if(ik(n[0]))return Promise.all(n);return n}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rF;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var n=new n6(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,n=void 0;try{for(var i,o=this.plugins[Symbol.iterator]();!(e=(i=o.next()).done);e=!0){var a=i.value,s=this.runOnRoot(a);if(ik(s))throw this.getAsyncError()}}catch(e){t=!0,n=e}finally{try{e||null==o.return||o.return()}finally{if(t)throw n}}if(this.prepareVisitors(),this.hasListener){for(var u=this.result.root;!u[eE];)u[eE]=!0,this.walkSync(u);if(this.listeners.OnceExit){var c=!0,l=!1,f=void 0;if("document"===u.type)try{for(var d,h=u.nodes[Symbol.iterator]();!(c=(d=h.next()).done);c=!0){var p=d.value;this.visitSync(this.listeners.OnceExit,p)}}catch(e){l=!0,f=e}finally{try{c||null==h.return||h.return()}finally{if(l)throw f}}else this.visitSync(this.listeners.OnceExit,u)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=n8(a.value,2),c=u[0],l=u[1];this.result.lastPlugin=c;var f=void 0;try{f=l(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(ik(f))throw this.getAsyncError()}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],n=t.node,i=t.visitors;if("root"!==n.type&&"document"!==n.type&&!n.parent){e.pop();return}if(i.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tf(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return th(e,[{key:"normalize",value:function(e){var t=[],n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;if(!0===u.postcss?u=u():u.postcss&&(u=u.postcss),"object"==typeof u&&Array.isArray(u.plugins))t=t.concat(u.plugins);else if("object"==typeof u&&u.postcssPlugin)t.push(u);else if("function"==typeof u)t.push(u);else if("object"==typeof u&&(u.parse||u.stringify));else throw Error(u+" is not a PostCSS plugin")}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n5(this,e,t):new iC(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iD(){for(var e=arguments.length,t=Array(e),n=0;n]+$/;function iV(e,t,n){if(null==e)return"";"number"==typeof e&&(e=e.toString());var i,o,a,s,u,c,l,f,d,h="",p="";function m(e,t){var n=this;this.tag=e,this.attribs=t||{},this.tagPosition=h.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(u.length){var e=u[u.length-1];e.text+=n.text}},this.updateParentNodeMediaChildren=function(){u.length&&iR.includes(this.tag)&&u[u.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iV.defaults,t)).parser=Object.assign({},i$,t.parser);var v=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iB.forEach(function(e){v(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var g=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(i={},o={},iq(t.allowedAttributes,function(e,t){i[t]=[];var n=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(rf(e).replace(/\\\*/g,".*")):i[t].push(e)}),n.length&&(o[t]=RegExp("^("+n.join("|")+")$"))}));var y={},b={},w={};iq(t.allowedClasses,function(e,t){if(i&&(iU(i,t)||(i[t]=[]),i[t].push("class")),y[t]=e,Array.isArray(e)){var n=[];y[t]=[],w[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(rf(e).replace(/\\\*/g,".*")):e instanceof RegExp?w[t].push(e):y[t].push(e)}),n.length&&(b[t]=RegExp("^("+n.join("|")+")$"))}});var x={};iq(t.transformTags,function(e,t){var n;"function"==typeof e?n=e:"string"==typeof e&&(n=iV.simpleTransform(e)),"*"===t?a=n:x[t]=n});var E=!1;k();var S=new t$({onopentag:function(e,n){if(t.enforceHtmlBoundary&&"html"===e&&k(),f){d++;return}var S,O=new m(e,n);u.push(O);var _=!1,C=!!O.text;if(iU(x,e)&&(S=x[e](e,n),O.attribs=n=S.attribs,void 0!==S.text&&(O.innerText=S.text),e!==S.tagName&&(O.name=e=S.tagName,l[s]=S.tagName)),a&&(S=a(e,n),O.attribs=n=S.attribs,e!==S.tagName&&(O.name=e=S.tagName,l[s]=S.tagName)),(!v(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iU(e,t))return!1;return!0}(c)||null!=t.nestingLimit&&s>=t.nestingLimit)&&(_=!0,c[s]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==g.indexOf(e)&&(f=!0,d=1),c[s]=!0),s++,_){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;p=h,h=""}h+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(O.innerText=""),(!i||iU(i,e)||i["*"])&&iq(n,function(n,a){if(!iF.test(a)||""===n&&!t.allowedEmptyAttributes.includes(a)&&(t.nonBooleanAttributes.includes(a)||t.nonBooleanAttributes.includes("*"))){delete O.attribs[a];return}var s=!1;if(!i||iU(i,e)&&-1!==i[e].indexOf(a)||i["*"]&&-1!==i["*"].indexOf(a)||iU(o,e)&&o[e].test(a)||o["*"]&&o["*"].test(a))s=!0;else if(i&&i[e]){var u=!0,c=!1,l=void 0;try{for(var f,d=i[e][Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var p=f.value;if(rh(p)&&p.name&&p.name===a){s=!0;var m="";if(!0===p.multiple){var v=n.split(" "),g=!0,x=!1,E=void 0;try{for(var S,k=v[Symbol.iterator]();!(g=(S=k.next()).done);g=!0){var _=S.value;-1!==p.values.indexOf(_)&&(""===m?m=_:m+=" "+_)}}catch(e){x=!0,E=e}finally{try{g||null==k.return||k.return()}finally{if(x)throw E}}}else p.values.indexOf(n)>=0&&(m=n);n=m}}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}}if(s){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(a)&&I(e,n)){delete O.attribs[a];return}if("script"===e&&"src"===a){var C=!0;try{var P=T(n);if(t.allowedScriptHostnames||t.allowedScriptDomains){var L=(t.allowedScriptHostnames||[]).find(function(e){return e===P.url.hostname}),D=(t.allowedScriptDomains||[]).find(function(e){return P.url.hostname===e||P.url.hostname.endsWith(".".concat(e))});C=L||D}}catch(e){C=!1}if(!C){delete O.attribs[a];return}}if("iframe"===e&&"src"===a){var M=!0;try{var R=T(n);if(R.isRelativeUrl)M=iU(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var B=(t.allowedIframeHostnames||[]).find(function(e){return e===R.url.hostname}),q=(t.allowedIframeDomains||[]).find(function(e){return R.url.hostname===e||R.url.hostname.endsWith(".".concat(e))});M=B||q}}catch(e){M=!1}if(!M){delete O.attribs[a];return}}if("srcset"===a)try{var U=rE(n);if(U.forEach(function(e){I("srcset",e.url)&&(e.evil=!0)}),(U=ij(U,function(e){return!e.evil})).length)n=ij(U,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),O.attribs[a]=n;else{delete O.attribs[a];return}}catch(e){delete O.attribs[a];return}if("class"===a){var j=y[e],F=y["*"],V=b[e],$=w[e],z=w["*"],H=[V,b["*"]].concat($,z).filter(function(e){return e});if(!(n=j&&F?N(n,rp(j,F),H):N(n,j||F,H)).length){delete O.attribs[a];return}}if("style"===a){if(t.parseStyleAttributes)try{var W=iM(e+" {"+n+"}",{map:!1});if(n=(function(e,t){if(!t)return e;var n,i=e.nodes[0];return(n=t[i.selector]&&t["*"]?rp(t[i.selector],t["*"]):t[i.selector]||t["*"])&&(e.nodes[0].nodes=i.nodes.reduce(function(e,t){return iU(n,t.prop)&&n[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(W,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===n.length){delete O.attribs[a];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+n+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete O.attribs[a];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}h+=" "+a,n&&n.length?h+='="'+A(n,!0)+'"':t.allowedEmptyAttributes.includes(a)&&(h+='=""')}else delete O.attribs[a]}),-1!==t.selfClosing.indexOf(e)?h+=" />":(h+=">",!O.innerText||C||t.textFilter||(h+=A(O.innerText),E=!0)),_&&(h=p+A(h),p="")},ontext:function(e){if(!f){var n,i=u[u.length-1];if(i&&(n=i.tag,e=void 0!==i.innerText?i.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||v(n)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===n||"style"===n))h+=e;else{var o=A(e,!1);t.textFilter&&!E?h+=t.textFilter(o,n):E||(h+=o)}}else e="";if(u.length){var a=u[u.length-1];a.text+=e}}},onclosetag:function(e,n){if(f){if(--d)return;f=!1}var i=u.pop();if(i){if(i.tag!==e){u.push(i);return}f=!!t.enforceHtmlBoundary&&"html"===e;var o=c[--s];if(o){if(delete c[s],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){i.updateParentNodeText();return}p=h,h=""}if(l[s]&&(e=l[s],delete l[s]),t.exclusiveFilter&&t.exclusiveFilter(i)){h=h.substr(0,i.tagPosition);return}if(i.updateParentNodeMediaChildren(),i.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||n&&!v(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){o&&(h=p,p="");return}h+="",o&&(h=p+A(h),p=""),E=!1}}},t.parser);return S.write(e),S.end(),h;function k(){h="",s=0,u=[],c={},l={},f=!1,d=0}function A(e,n){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),n&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),n&&(e=e.replace(/"/g,""")),e}function I(e,n){for(n=n.replace(/[\x00-\x20]+/g,"");;){var i=n.indexOf("",i+4);if(-1===o)break;n=n.substring(0,i)+n.substring(o+3)}var a=n.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!a)return!!n.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var s=a[1].toLowerCase();return iU(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(s):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(s)}function T(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",n=0;n<100;n++)t+="/".concat(n);var i=new URL(e,t);return{isRelativeUrl:i&&"relative-site"===i.hostname&&"relative:"===i.protocol,url:i}}function N(e,t,n){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||n.some(function(t){return t.test(e)})}).join(" "):e}}var i$={decodeEntities:!0};iV.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iV.simpleTransform=function(e,t,n){return n=void 0===n||n,t=t||{},function(i,o){var a;if(n)for(a in t)o[a]=t[a];else o=t;return{tagName:e,attribs:o}}};var iz={};n="millisecond",i="second",o="minute",a="hour",s="week",u="month",c="quarter",l="year",f="date",d="Invalid Date",h=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,p=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,m=function(e,t,n){var i=String(e);return!i||i.length>=t?e:""+Array(t+1-i.length).join(n)+e},(g={})[v="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],n=e%100;return"["+e+(t[(n-20)%10]||t[n]||"th")+"]"}},y="$isDayjsObject",b=function(e){return e instanceof S||!(!e||!e[y])},w=function e(t,n,i){var o;if(!t)return v;if("string"==typeof t){var a=t.toLowerCase();g[a]&&(o=a),n&&(g[a]=n,o=a);var s=t.split("-");if(!o&&s.length>1)return e(s[0])}else{var u=t.name;g[u]=t,o=u}return!i&&o&&(v=o),o||!i&&v},x=function(e,t){if(b(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new S(n)},(E={s:m,z:function(e){var t=-e.utcOffset(),n=Math.abs(t);return(t<=0?"+":"-")+m(Math.floor(n/60),2,"0")+":"+m(n%60,2,"0")},m:function e(t,n){if(t.date()=u)return v;n=r(f),i=[],","===n.slice(-1)?(n=n.replace(d,""),g()):function(){for(r(c),o="",a="in descriptor";;){if(s=e.charAt(m),"in descriptor"===a){if(t(s))o&&(i.push(o),o="",a="after descriptor");else if(","===s){m+=1,o&&i.push(o),g();return}else if("("===s)o+=s,a="in parens";else if(""===s){o&&i.push(o),g();return}else o+=s}else if("in parens"===a){if(")"===s)o+=s,a="in descriptor";else if(""===s){i.push(o),g();return}else o+=s}else if("after descriptor"===a){if(t(s));else if(""===s){g();return}else a="in descriptor",m-=1}m+=1}}()}function g(){var t,r,o,a,s,u,c,l,f,d=!1,m={};for(a=0;ae.length)&&(t=e.length);for(var r=0,n=Array(t);r",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var r=this.source;null==e&&(e=rL.isColorSupported);var n=function(e){return e},i=function(e){return e},o=function(e){return e};if(e){var a=rL.createColors(!0),s=a.bold,u=a.gray,c=a.red;i=function(e){return s(c(e))},n=function(e){return u(e)},rR&&(o=function(e){return rR(e)})}var l=r.split(/\r?\n/),f=Math.max(this.line-3,0),d=Math.min(this.line+2,l.length),h=String(d).length;return l.slice(f,d).map(function(e,r){var a=f+1+r,s=" "+(" "+a).slice(-h)+" | ";if(a===t.line){if(e.length>160){var u=Math.max(0,t.column-20),c=Math.max(t.column+20,t.endColumn+20),l=e.slice(u,c),d=n(s.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return i(">")+n(s)+o(l)+"\n "+d+i("^")}var p=n(s.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return i(">")+n(s)+o(e)+"\n "+p+i("^")}return" "+n(s)+o(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),r}(tQ(Error));rP=rB,rB.default=rB;var rq={},rU={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rj=/*#__PURE__*/function(){function e(t){tf(this,e),this.builder=t}return th(e,[{key:"atrule",value:function(e,t){var r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{var i=(e.raws.between||"")+(t?";":"");this.builder(r+n+i,e)}}},{key:"beforeAfter",value:function(e,t){r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r,n=e.parent,i=0;n&&"root"!==n.type;)i+=1,n=n.parent;if(r.includes("\n")){var o=this.raw(e,null,"indent");if(o.length)for(var a=0;a0&&"comment"===e.nodes[t].type;)t-=1;for(var r=this.raw(e,"semicolon"),n=0;n0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var r;return e.walkComments(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeDecl",value:function(e,t){var r;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(r){if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return(t=r.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(r){var n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){var i=r.raws.before.split("\n");return t=(t=i[i.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rq=rj,rj.default=rj;var rF={};function rV(e,t){new rq(t).stringify(e)}rF=rV,rV.default=rV,eE=Symbol("isClean"),eS=Symbol("my");var r$=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var r in tf(this,e),this.raws={},this[eE]=!1,this[eS]=!0,t)if("nodes"===r){this.nodes=[];var n=!0,i=!1,o=void 0;try{for(var a,s=t[r][Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;"function"==typeof u.clone?this.append(u.clone()):this.append(u)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}else this[r]=t[r]}return th(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,r){var n=new t.constructor;for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&"proxyCache"!==i){var o=t[i],a=void 0===o?"undefined":(0,tr._)(o);"parent"===i&&"object"===a?r&&(n[i]=r):"source"===i?n[i]=o:Array.isArray(o)?n[i]=o.map(function(t){return e(t,n)}):("object"===a&&null!==o&&(o=e(o)),n[i]=o)}return n}(this);for(var r in e)t[r]=e[r];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var r=this.rangeBy(t),n=r.end,i=r.start;return this.source.input.error(e,{column:i.column,line:i.line},{column:n.column,line:n.line},t)}return new rP(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,r){return e[t]===r||(e[t]=r,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[eE]=!0}},{key:"markDirty",value:function(){if(this[eE]){this[eE]=!1;for(var e=this;e=e.parent;)e[eE]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var r=this.source.start;if(e.index)r=this.positionInside(e.index,t);else if(e.word){var n=(t=this.toString()).indexOf(e.word);-1!==n&&(r=this.positionInside(n,t))}return r}},{key:"positionInside",value:function(e,t){for(var r=t||this.toString(),n=this.source.start.column,i=this.source.start.line,o=0;o0&&void 0!==arguments[0]?arguments[0]:rF;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,r){var n={node:this};for(var i in r)n[i]=r[i];return e.warn(t,n)}},{key:"proxyOf",get:function(){return this}}]),e}();rC=r$,r$.default=r$;var rz=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this,e)).type="comment",n}return r}(tQ(rC));r_=rz,rz.default=rz;var rH={},rW=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=rt(tG({},e),{value:String(e.value)})),(n=t.call(this,e)).type="decl",n}return th(r,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),r}(tQ(rC));rH=rW,rW.default=rW;var rG=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){return tf(this,r),t.apply(this,arguments)}return th(r,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),r=0;r1?t-1:0),i=1;i=e&&(this.indexes[r]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,r){return r||(r=t,t={}),this.walkDecls(function(n){(!t.props||t.props.includes(n.prop))&&(!t.fast||n.value.includes(t.fast))&&(n.value=n.value.replace(e,r))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,r){var n;try{n=e(t,r)}catch(e){throw t.addToError(e)}return!1!==n&&t.walk&&(n=t.walk(e)),n})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("atrule"===r.type&&e.test(r.name))return t(r,n)}):this.walk(function(r,n){if("atrule"===r.type&&r.name===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("atrule"===e.type)return t(e,r)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,r){if("comment"===t.type)return e(t,r)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("decl"===r.type&&e.test(r.prop))return t(r,n)}):this.walk(function(r,n){if("decl"===r.type&&r.prop===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("decl"===e.type)return t(e,r)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("rule"===r.type&&e.test(r.selector))return t(r,n)}):this.walk(function(r,n){if("rule"===r.type&&r.selector===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("rule"===e.type)return t(e,r)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),r}(tQ(rC));rG.registerParse=function(e){eA=e},rG.registerRule=function(e){eT=e},rG.registerAtRule=function(e){ek=e},rG.registerRoot=function(e){eI=e},rO=rG,rG.default=rG,rG.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,ek.prototype):"rule"===e.type?Object.setPrototypeOf(e,eT.prototype):"decl"===e.type?Object.setPrototypeOf(e,rH.prototype):"comment"===e.type?Object.setPrototypeOf(e,r_.prototype):"root"===e.type&&Object.setPrototypeOf(e,eI.prototype),e[eS]=!0,e.nodes&&e.nodes.forEach(function(e){rG.rebuild(e)})};var rY=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this,e)).type="atrule",n}return th(r,[{key:"append",value:function(){for(var e,t=arguments.length,n=Array(t),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return new eN(new eO,this,e).stringify()}}]),r}(rO);rZ.registerLazyResult=function(e){eN=e},rZ.registerProcessor=function(e){eO=e},rK=rZ,rZ.default=rZ;var rQ={};function rJ(e,t){if(null==e)return{};var r,n,i=function(e,t){if(null==e)return{};var r,n,i={},o=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}var rX={},r0=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",r=e;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r1=rR.isAbsolute,r3=rR.resolve,r2=rR.SourceMapConsumer,r5=rR.SourceMapGenerator,r8=rR.fileURLToPath,r6=rR.pathToFileURL,r4={},tr=eH("2L7Ke");e_=function(e){var t,r,n=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");-1===r&&(r=t);var n=r===t?0:4-r%4;return[r,n]}(e),i=n[0],o=n[1],a=new ne((i+o)*3/4-o),s=0,u=o>0?i-4:i;for(r=0;r>16&255,a[s++]=t>>8&255,a[s++]=255&t;return 2===o&&(t=r7[e.charCodeAt(r)]<<2|r7[e.charCodeAt(r+1)]>>4,a[s++]=255&t),1===o&&(t=r7[e.charCodeAt(r)]<<10|r7[e.charCodeAt(r+1)]<<4|r7[e.charCodeAt(r+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t),a},eC=function(e){for(var t,r=e.length,n=r%3,i=[],o=0,a=r-n;o>18&63]+r9[n>>12&63]+r9[n>>6&63]+r9[63&n]);return i.join("")}(e,o,o+16383>a?a:o+16383));return 1===n?i.push(r9[(t=e[r-1])>>2]+r9[t<<4&63]+"=="):2===n&&i.push(r9[(t=(e[r-2]<<8)+e[r-1])>>10]+r9[t>>4&63]+r9[t<<2&63]+"="),i.join("")};for(var r9=[],r7=[],ne="undefined"!=typeof Uint8Array?Uint8Array:Array,nt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nr=0,nn=nt.length;nr>1,l=-7,f=r?i-1:0,d=r?-1:1,h=e[t+f];for(f+=d,o=h&(1<<-l)-1,h>>=-l,l+=s;l>0;o=256*o+e[t+f],f+=d,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+e[t+f],f+=d,l-=8);if(0===o)o=1-c;else{if(o===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),o-=c}return(h?-1:1)*a*Math.pow(2,o-n)},eL=function(e,t,r,n,i,o){var a,s,u,c=8*o-i-1,l=(1<>1,d=23===i?5960464477539062e-23:0,h=n?0:o-1,p=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(s=isNaN(t)?1:0,a=l):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),a+f>=1?t+=d/u:t+=d*Math.pow(2,1-f),t*u>=2&&(a++,u/=2),a+f>=l?(s=0,a=l):a+f>=1?(s=(t*u-1)*Math.pow(2,i),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),a=0));i>=8;e[r+h]=255&s,h+=p,s/=256,i-=8);for(a=a<0;e[r+h]=255&a,h+=p,a/=256,c-=8);e[r+h-p]|=128*m};var ni="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function no(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,na.prototype),t}function na(e,t,r){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nc(e)}return ns(e,t,r)}function ns(e,t,r){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!na.isEncoding(t))throw TypeError("Unknown encoding: "+t);var r=0|nh(e,t),n=no(r),i=n.write(e,t);return i!==r&&(n=n.slice(0,i)),n}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nR(e,Uint8Array)){var t=new Uint8Array(e);return nf(t.buffer,t.byteOffset,t.byteLength)}return nl(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)));if(nR(e,ArrayBuffer)||e&&nR(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nR(e,SharedArrayBuffer)||e&&nR(e.buffer,SharedArrayBuffer)))return nf(e,t,r);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var n=e.valueOf&&e.valueOf();if(null!=n&&n!==e)return na.from(n,t,r);var i=function(e){if(na.isBuffer(e)){var t,r=0|nd(e.length),n=no(r);return 0===n.length||e.copy(n,0,0,r),n}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?no(0):nl(e):"Buffer"===e.type&&Array.isArray(e.data)?nl(e.data):void 0}(e);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return na.from(e[Symbol.toPrimitive]("string"),t,r);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)))}function nu(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nc(e){return nu(e),no(e<0?0:0|nd(e))}function nl(e){for(var t=e.length<0?0:0|nd(e.length),r=no(t),n=0;n=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nh(e,t){if(na.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nR(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tr._)(e)));var r=e.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return nL(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return nD(e).length;default:if(i)return n?-1:nL(e).length;t=(""+t).toLowerCase(),i=!0}}function np(e,t,r){var n,i,o=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===r||r>this.length)&&(r=this.length),r<=0||(r>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,r){var n=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=t;o0x7fffffff?r=0x7fffffff:r<-0x80000000&&(r=-0x80000000),(o=r=+r)!=o&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return -1;r=e.length-1}else if(r<0){if(!i)return -1;r=0}if("string"==typeof t&&(t=na.from(t,n)),na.isBuffer(t))return 0===t.length?-1:ng(e,t,r,n,i);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):ng(e,[t],r,n,i);throw TypeError("val must be string, number or Buffer")}function ng(e,t,r,n,i){var o,a=1,s=e.length,u=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return -1;a=2,s/=2,u/=2,r/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var l=-1;for(o=r;os&&(r=s-u),o=r;o>=0;o--){for(var f=!0,d=0;d239?4:o>223?3:o>191?2:1;if(i+s<=r){var u=void 0,c=void 0,l=void 0,f=void 0;switch(s){case 1:o<128&&(a=o);break;case 2:(192&(u=e[i+1]))==128&&(f=(31&o)<<6|63&u)>127&&(a=f);break;case 3:u=e[i+1],c=e[i+2],(192&u)==128&&(192&c)==128&&(f=(15&o)<<12|(63&u)<<6|63&c)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[i+1],c=e[i+2],l=e[i+3],(192&u)==128&&(192&c)==128&&(192&l)==128&&(f=(15&o)<<18|(63&u)<<12|(63&c)<<6|63&l)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,n.push(a>>>10&1023|55296),a=56320|1023&a),n.push(a),i+=s}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var r="",n=0;nr)throw RangeError("Trying to access beyond buffer length")}function nw(e,t,r,n,i,o){if(!na.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw RangeError("Index out of range")}function nx(e,t,r,n,i){nO(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,r}function nE(e,t,r,n,i){nO(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r+7]=o,o>>=8,e[r+6]=o,o>>=8,e[r+5]=o,o>>=8,e[r+4]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r+3]=a,a>>=8,e[r+2]=a,a>>=8,e[r+1]=a,a>>=8,e[r]=a,r+8}function nS(e,t,r,n,i,o){if(r+n>e.length||r<0)throw RangeError("Index out of range")}function nk(e,t,r,n,i){return t=+t,r>>>=0,i||nS(e,t,r,4,34028234663852886e22,-34028234663852886e22),eL(e,t,r,n,23,4),r+4}function nA(e,t,r,n,i){return t=+t,r>>>=0,i||nS(e,t,r,8,17976931348623157e292,-17976931348623157e292),eL(e,t,r,n,52,8),r+8}na.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),na.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(na.prototype,"parent",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.buffer}}),Object.defineProperty(na.prototype,"offset",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.byteOffset}}),na.poolSize=8192,na.from=function(e,t,r){return ns(e,t,r)},Object.setPrototypeOf(na.prototype,Uint8Array.prototype),Object.setPrototypeOf(na,Uint8Array),na.alloc=function(e,t,r){return(nu(e),e<=0)?no(e):void 0!==t?"string"==typeof r?no(e).fill(t,r):no(e).fill(t):no(e)},na.allocUnsafe=function(e){return nc(e)},na.allocUnsafeSlow=function(e){return nc(e)},na.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==na.prototype},na.compare=function(e,t){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),nR(t,Uint8Array)&&(t=na.from(t,t.offset,t.byteLength)),!na.isBuffer(e)||!na.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var r=e.length,n=t.length,i=0,o=Math.min(r,n);in.length?(na.isBuffer(o)||(o=na.from(o)),o.copy(n,i)):Uint8Array.prototype.set.call(n,o,i);else if(na.isBuffer(o))o.copy(n,i);else throw TypeError('"list" argument must be an Array of Buffers');i+=o.length}return n},na.byteLength=nh,na.prototype._isBuffer=!0,na.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},ni&&(na.prototype[ni]=na.prototype.inspect),na.prototype.compare=function(e,t,r,n,i){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),!na.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tr._)(e)));if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),t<0||r>e.length||n<0||i>this.length)throw RangeError("out of range index");if(n>=i&&t>=r)return 0;if(n>=i)return -1;if(t>=r)return 1;if(t>>>=0,r>>>=0,n>>>=0,i>>>=0,this===e)return 0;for(var o=i-n,a=r-t,s=Math.min(o,a),u=this.slice(n,i),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var i,o,a,s,u,c,l,f,d=this.length-t;if((void 0===r||r>d)&&(r=d),e.length>0&&(r<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var h=!1;;)switch(n){case"hex":return function(e,t,r,n){r=Number(r)||0;var i,o=e.length-r;n?(n=Number(n))>o&&(n=o):n=o;var a=t.length;for(n>a/2&&(n=a/2),i=0;i>8,i.push(r%256),i.push(n);return i}(e,this.length-l),this,l,f);default:if(h)throw TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),h=!0}},na.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},na.prototype.slice=function(e,t){var r=this.length;e=~~e,t=void 0===t?r:~~t,e<0?(e+=r)<0&&(e=0):e>r&&(e=r),t<0?(t+=r)<0&&(t=0):t>r&&(t=r),t>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=this[e],i=1,o=0;++o>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=this[e+--t],i=1;t>0&&(i*=256);)n+=this[e+--t]*i;return n},na.prototype.readUint8=na.prototype.readUInt8=function(e,t){return e>>>=0,t||nb(e,1,this.length),this[e]},na.prototype.readUint16LE=na.prototype.readUInt16LE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]|this[e+1]<<8},na.prototype.readUint16BE=na.prototype.readUInt16BE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]<<8|this[e+1]},na.prototype.readUint32LE=na.prototype.readUInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},na.prototype.readUint32BE=na.prototype.readUInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},na.prototype.readBigUInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&nC(e,this.length-8);var n=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],i=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*r;return BigInt(n)+(BigInt(i)<>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&nC(e,this.length-8);var n=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],i=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+r;return(BigInt(n)<>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=this[e],i=1,o=0;++o=(i*=128)&&(n-=Math.pow(2,8*t)),n},na.prototype.readIntBE=function(e,t,r){e>>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=t,i=1,o=this[e+--n];n>0&&(i*=256);)o+=this[e+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},na.prototype.readInt8=function(e,t){return(e>>>=0,t||nb(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},na.prototype.readInt16LE=function(e,t){e>>>=0,t||nb(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?0xffff0000|r:r},na.prototype.readInt16BE=function(e,t){e>>>=0,t||nb(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?0xffff0000|r:r},na.prototype.readInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},na.prototype.readInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},na.prototype.readBigInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&nC(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(r<<24))<>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&nC(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||nb(e,4,this.length),eP(this,e,!0,23,4)},na.prototype.readFloatBE=function(e,t){return e>>>=0,t||nb(e,4,this.length),eP(this,e,!1,23,4)},na.prototype.readDoubleLE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!0,52,8)},na.prototype.readDoubleBE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!1,52,8)},na.prototype.writeUintLE=na.prototype.writeUIntLE=function(e,t,r,n){if(e=+e,t>>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nw(this,e,t,r,i,0)}var o=1,a=0;for(this[t]=255&e;++a>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nw(this,e,t,r,i,0)}var o=r-1,a=1;for(this[t+o]=255&e;--o>=0&&(a*=256);)this[t+o]=e/a&255;return t+r},na.prototype.writeUint8=na.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,1,255,0),this[t]=255&e,t+1},na.prototype.writeUint16LE=na.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeUint16BE=na.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeUint32LE=na.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},na.prototype.writeUint32BE=na.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigUInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeBigUInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nw(this,e,t,r,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+r},na.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nw(this,e,t,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+r},na.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},na.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},na.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeBigInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeFloatLE=function(e,t,r){return nk(this,e,t,!0,r)},na.prototype.writeFloatBE=function(e,t,r){return nk(this,e,t,!1,r)},na.prototype.writeDoubleLE=function(e,t,r){return nA(this,e,t,!0,r)},na.prototype.writeDoubleBE=function(e,t,r){return nA(this,e,t,!1,r)},na.prototype.copy=function(e,t,r,n){if(!na.isBuffer(e))throw TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw RangeError("Index out of range");if(n<0)throw RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(i=t;i=n+4;r-=3)t="_".concat(e.slice(r-3,r)).concat(t);return"".concat(e.slice(0,r)).concat(t)}function nO(e,t,r,n,i,o){if(e>r||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat((o+1)*8).concat(s):">= -(2".concat(s," ** ").concat((o+1)*8-1).concat(s,") and < 2 ** ")+"".concat((o+1)*8-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(r).concat(s),new nI.ERR_OUT_OF_RANGE("value",a,e)}n_(i,"offset"),(void 0===n[i]||void 0===n[i+o])&&nC(i,n.length-(o+1))}function n_(e,t){if("number"!=typeof e)throw new nI.ERR_INVALID_ARG_TYPE(t,"number",e)}function nC(e,t,r){if(Math.floor(e)!==e)throw n_(e,r),new nI.ERR_OUT_OF_RANGE(r||"offset","an integer",e);if(t<0)throw new nI.ERR_BUFFER_OUT_OF_BOUNDS;throw new nI.ERR_OUT_OF_RANGE(r||"offset",">= ".concat(r?1:0," and <= ").concat(t),e)}nT("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nT("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tr._)(t))},TypeError),nT("ERR_OUT_OF_RANGE",function(e,t,r){var n='The value of "'.concat(e,'" is out of range.'),i=r;return Number.isInteger(r)&&Math.abs(r)>0x100000000?i=nN(String(r)):(void 0===r?"undefined":(0,tr._)(r))==="bigint"&&(i=String(r),(r>Math.pow(BigInt(2),BigInt(32))||r<-Math.pow(BigInt(2),BigInt(32)))&&(i=nN(i)),i+="n"),n+=" It must be ".concat(t,". Received ").concat(i)},RangeError);var nP=/[^+/0-9A-Za-z-_]/g;function nL(e,t){t=t||1/0;for(var r,n=e.length,i=null,o=[],a=0;a55295&&r<57344){if(!i){if(r>56319||a+1===n){(t-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;o.push(r)}else if(r<2048){if((t-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else if(r<1114112){if((t-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}else throw Error("Invalid code point")}return o}function nD(e){return e_(function(e){if((e=(e=e.split("=")[0]).trim().replace(nP,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nM(e,t,r,n){var i;for(i=0;i=t.length)&&!(i>=e.length);++i)t[i+r]=e[i];return i}function nR(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nB=function(){for(var e="0123456789abcdef",t=Array(256),r=0;r<16;++r)for(var n=16*r,i=0;i<16;++i)t[n+i]=e[r]+e[i];return t}();function nq(e){return"undefined"==typeof BigInt?nU:e}function nU(){throw Error("BigInt not supported")}var nj=rR.existsSync,nF=rR.readFileSync,nV=rR.dirname,n$=rR.join,nz=rR.SourceMapConsumer,nH=rR.SourceMapGenerator,nW=/*#__PURE__*/function(){function e(t,r){if(tf(this,e),!1!==r.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var n=r.map?r.map.prev:void 0,i=this.loadMap(r.from,n);!this.mapFile&&r.from&&(this.mapFile=r.from),this.mapFile&&(this.root=nV(this.mapFile)),i&&(this.text=i)}}return th(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new nz(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,r=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(r)return decodeURIComponent(e.substr(r[0].length));var n=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(n)return t=e.substr(n[0].length),na?na.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var r=e.lastIndexOf(t.pop()),n=e.indexOf("*/",r);r>-1&&n>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,n)))}}},{key:"loadFile",value:function(e){if(this.root=nV(e),nj(e))return this.mapFile=e,nF(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var r=t(e);if(r){var n=this.loadFile(r);if(!n)throw Error("Unable to load previous source map: "+r.toString());return n}}else if(t instanceof nz)return nH.fromSourceMap(t).toString();else if(t instanceof nH)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var i=this.annotation;return e&&(i=n$(nV(e),i)),this.loadFile(i)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r4=nW,nW.default=nW;var nG=Symbol("fromOffsetCache"),nY=!!(r2&&r5),nK=!!(r3&&r1),nZ=/*#__PURE__*/function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,r.from&&(!nK||/^\w+:\/\//.test(r.from)||r1(r.from)?this.file=r.from:this.file=r3(r.from)),nK&&nY){var n=new r4(this.css,r);if(n.text){this.map=n;var i=n.consumer().file;!this.file&&i&&(this.file=this.mapResolve(i))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return th(e,[{key:"error",value:function(e,t,r){var n,i,o,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var s=t,u=r;if("number"==typeof s.offset){var c=this.fromOffset(s.offset);t=c.line,r=c.col}else t=s.line,r=s.column;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);i=l.line,n=l.col}else i=u.line,n=u.column}else if(!r){var f=this.fromOffset(t);t=f.line,r=f.col}var d=this.origin(t,r,i,n);return(o=d?new rP(e,void 0===d.endLine?d.line:{column:d.column,line:d.line},void 0===d.endLine?d.column:{column:d.endColumn,line:d.endLine},d.source,d.file,a.plugin):new rP(e,void 0===i?t:{column:r,line:t},void 0===i?r:{column:n,line:i},this.css,this.file,a.plugin)).input={column:r,endColumn:n,endLine:i,line:t,source:this.css},this.file&&(r6&&(o.input.url=r6(this.file).toString()),o.input.file=this.file),o}},{key:"fromOffset",value:function(e){if(this[nG])s=this[nG];else{var t=this.css.split("\n");s=Array(t.length);for(var r=0,n=0,i=t.length;n=a)o=s.length-1;else for(var a,s,u,c=s.length-2;o>1)])c=u-1;else if(e>=s[u+1])o=u+1;else{o=u;break}return{col:e-s[o]+1,line:o+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r3(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,r,n){if(!this.map)return!1;var i,o,a=this.map.consumer(),s=a.originalPositionFor({column:t,line:e});if(!s.source)return!1;"number"==typeof r&&(i=a.originalPositionFor({column:n,line:r})),o=r1(s.source)?r6(s.source):new URL(s.source,this.map.consumer().sourceRoot||r6(this.map.mapFile));var u={column:s.column,endColumn:i&&i.column,endLine:i&&i.line,line:s.line,url:o.toString()};if("file:"===o.protocol){if(r8)u.file=r8(o);else throw Error("file: protocol is not available in this PostCSS build")}var c=a.sourceContentFor(s.source);return c&&(u.source=c),u}},{key:"toJSON",value:function(){for(var e={},t=0,r=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var u,c=i[Symbol.iterator]();!(o=(u=c.next()).done);o=!0)u.value.raws.before=t.raws.before}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}return i}},{key:"removeChild",value:function(e,t){var n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),rN(tZ(r.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eD(new eM,this,e).stringify()}}]),r}(rO);nJ.registerLazyResult=function(e){eD=e},nJ.registerProcessor=function(e){eM=e},nQ=nJ,nJ.default=nJ,rO.registerRoot(nJ);var nX={},n0={},n1={comma:function(e){return n1.split(e,[","],!0)},space:function(e){return n1.split(e,[" ","\n"," "])},split:function(e,t,r){var n=[],i="",o=!1,a=0,s=!1,u="",c=!1,l=!0,f=!1,d=void 0;try{for(var h,p=e[Symbol.iterator]();!(l=(h=p.next()).done);l=!0){var m=h.value;c?c=!1:"\\"===m?c=!0:s?m===u&&(s=!1):'"'===m||"'"===m?(s=!0,u=m):"("===m?a+=1:")"===m?a>0&&(a-=1):0===a&&t.includes(m)&&(o=!0),o?(""!==i&&n.push(i.trim()),i="",o=!1):i+=m}}catch(e){f=!0,d=e}finally{try{l||null==p.return||p.return()}finally{if(f)throw d}}return(r||""!==i)&&n.push(i.trim()),n}};n0=n1,n1.default=n1;var n3=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this,e)).type="rule",n.nodes||(n.nodes=[]),n}return th(r,[{key:"selectors",get:function(){return n0.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}}]),r}(rO);function n2(e,t){if(Array.isArray(e))return e.map(function(e){return n2(e)});var r=e.inputs,n=rJ(e,["inputs"]);if(r){t=[];var i=!0,o=!1,a=void 0;try{for(var s,u=r[Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value,l=rt(tG({},c),{__proto__:rX.prototype});l.map&&(l.map=rt(tG({},l.map),{__proto__:r4.prototype})),t.push(l)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}if(n.nodes&&(n.nodes=e.nodes.map(function(e){return n2(e,t)})),n.source){var f=n.source,d=f.inputId,h=rJ(f,["inputId"]);n.source=h,null!=d&&(n.source.input=t[d])}if("root"===n.type)return new nQ(n);if("decl"===n.type)return new rH(n);if("rule"===n.type)return new nX(n);if("comment"===n.type)return new r_(n);if("atrule"===n.type)return new rT(n);throw Error("Unknown node type: "+e.type)}nX=n3,n3.default=n3,rO.registerRule(n3),rQ=n2,n2.default=n2;var n5={};function n8(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r,n,i=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=i){var o=[],a=!0,s=!1;try{for(i=i.call(e);!(a=(r=i.next()).done)&&(o.push(r.value),!t||o.length!==t);a=!0);}catch(e){s=!0,n=e}finally{try{a||null==i.return||i.return()}finally{if(s)throw n}}return o}}(e,t)||rA(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eZ=(eH("bgUiC"),eH("bgUiC")),n6={},n4=rR.dirname,n9=rR.relative,n7=rR.resolve,ie=rR.sep,it=rR.SourceMapConsumer,ir=rR.SourceMapGenerator,ii=rR.pathToFileURL,io=!!(it&&ir),ia=!!(n4&&n7&&n9&&ie);n6=/*#__PURE__*/function(){function e(t,r,n,i){tf(this,e),this.stringify=t,this.mapOpts=n.map||{},this.root=r,this.opts=n,this.css=i,this.originalCSS=i,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return th(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,r=void 0;try{for(var n,i=this.previous()[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.toUrl(this.path(o.file)),s=o.root||n4(o.file),u=void 0;!1===this.mapOpts.sourcesContent?(u=new it(o.text)).sourcesContent&&(u.sourcesContent=null):u=o.consumer(),this.map.applySourceMap(u,a,this.toUrl(this.path(s)))}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),ia&&io&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=ir.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,r=this;this.css="",this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0});var n=1,i=1,o="",a={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(s,u,c){if(r.css+=s,u&&"end"!==c&&(a.generated.line=n,a.generated.column=i-1,u.source&&u.source.start?(a.source=r.sourcePath(u),a.original.line=u.source.start.line,a.original.column=u.source.start.column-1):(a.source=o,a.original.line=1,a.original.column=0),r.map.addMapping(a)),(t=s.match(/\n/g))?(n+=t.length,e=s.lastIndexOf("\n"),i=s.length-e):i+=s.length,u&&"start"!==c){var l=u.parent||{raws:{}};(!("decl"===u.type||"atrule"===u.type&&!u.nodes)||u!==l.last||l.raws.semicolon)&&(u.source&&u.source.end?(a.source=r.sourcePath(u),a.original.line=u.source.end.line,a.original.column=u.source.end.column-1,a.generated.line=n,a.generated.column=i-2):(a.source=o,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=i-1),r.map.addMapping(a))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var r=this.opts.to?n4(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=n4(n7(r,this.mapOpts.annotation)));var n=n9(r,e);return this.memoizedPaths.set(e,n),n}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var r=t.source.input.map;e.previousMaps.includes(r)||e.previousMaps.push(r)}});else{var t=new rX(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(r){if(r.source){var n=r.source.input.from;if(n&&!t[n]){t[n]=!0;var i=e.usesFileUrls?e.toFileUrl(n):e.toUrl(e.path(n));e.map.setSourceContent(i,r.source.input.css)}}});else if(this.css){var r=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(r,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return na?na.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ii){var r=ii(e).toString();return this.memoizedFileURLs.set(e,r),r}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===ie&&(e=e.replace(/\\/g,"/"));var r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}]),e}();var is={},iu={},ic={},il=/[\t\n\f\r "#'()/;[\\\]{}]/g,id=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,ih=/.[\r\n"'(/\\]/,ip=/[\da-f]/i;ic=function(e){var t,r,n,i,o,a,s,u,c,l,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},d=e.css.valueOf(),h=f.ignoreErrors,p=d.length,m=0,v=[],g=[];function y(t){throw e.error("Unclosed "+t,m)}return{back:function(e){g.push(e)},endOfFile:function(){return 0===g.length&&m>=p},nextToken:function(e){if(g.length)return g.pop();if(!(m>=p)){var f=!!e&&e.ignoreUnclosed;switch(t=d.charCodeAt(m)){case 10:case 32:case 9:case 13:case 12:i=m;do i+=1,t=d.charCodeAt(i);while(32===t||10===t||9===t||13===t||12===t)a=["space",d.slice(m,i)],m=i-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var b=String.fromCharCode(t);a=[b,b,m];break;case 40:if(l=v.length?v.pop()[1]:"",c=d.charCodeAt(m+1),"url"===l&&39!==c&&34!==c&&32!==c&&10!==c&&9!==c&&12!==c&&13!==c){i=m;do{if(s=!1,-1===(i=d.indexOf(")",i+1))){if(h||f){i=m;break}y("bracket")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["brackets",d.slice(m,i+1),m,i],m=i}else i=d.indexOf(")",m+1),r=d.slice(m,i+1),-1===i||ih.test(r)?a=["(","(",m]:(a=["brackets",r,m,i],m=i);break;case 39:case 34:o=39===t?"'":'"',i=m;do{if(s=!1,-1===(i=d.indexOf(o,i+1))){if(h||f){i=m+1;break}y("string")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["string",d.slice(m,i+1),m,i],m=i;break;case 64:il.lastIndex=m+1,il.test(d),i=0===il.lastIndex?d.length-1:il.lastIndex-2,a=["at-word",d.slice(m,i+1),m,i],m=i;break;case 92:for(i=m,n=!0;92===d.charCodeAt(i+1);)i+=1,n=!n;if(t=d.charCodeAt(i+1),n&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(i+=1,ip.test(d.charAt(i)))){for(;ip.test(d.charAt(i+1));)i+=1;32===d.charCodeAt(i+1)&&(i+=1)}a=["word",d.slice(m,i+1),m,i],m=i;break;default:47===t&&42===d.charCodeAt(m+1)?(0===(i=d.indexOf("*/",m+2)+1)&&(h||f?i=d.length:y("comment")),a=["comment",d.slice(m,i+1),m,i]):(id.lastIndex=m+1,id.test(d),i=0===id.lastIndex?d.length-1:id.lastIndex-2,a=["word",d.slice(m,i+1),m,i],v.push(a)),m=i}return m++,a}},position:function(){return m}}};var im={empty:!0,space:!0};function iv(e,t){var r=new rX(e,t),n=new iu(r);try{n.parse()}catch(e){throw e}return n.root}iu=/*#__PURE__*/function(){function e(t){tf(this,e),this.input=t,this.root=new nQ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return th(e,[{key:"atrule",value:function(e){var t,r,n,i=new rT;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);for(var o=!1,a=!1,s=[],u=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),i.source.end.offset++,this.semicolon=!0;break}if("{"===t){a=!0;break}if("}"===t){if(s.length>0){for(n=s.length-1,r=s[n];r&&"space"===r[0];)r=s[--n];r&&(i.source.end=this.getPosition(r[3]||r[2]),i.source.end.offset++)}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),o&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),i.source.end.offset++,this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),a&&(i.nodes=[],this.current=i)}},{key:"checkMissedSemicolon",value:function(e){var t,r=this.colon(e);if(!1!==r){for(var n=0,i=r-1;i>=0&&("space"===(t=e[i])[0]||2!==(n+=1));i--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,r=!0,n=!1,i=void 0;try{for(var o,a,s,u=e.entries()[Symbol.iterator]();!(r=(s=u.next()).done);r=!0){var c=n8(s.value,2),l=c[0],f=c[1];if(a=f[0],"("===a&&(t+=1),")"===a&&(t-=1),0===t&&":"===a){if(o){if("word"===o[0]&&"progid"===o[1])continue;return l}this.doubleColon(f)}o=f}}catch(e){n=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(n)throw i}}return!1}},{key:"comment",value:function(e){var t=new r_;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{var n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=ic(this.input)}},{key:"decl",value:function(e,t){var r,n,i=new rH;this.init(i,e[0][2]);var o=e[e.length-1];for(";"===o[0]&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(o[3]||o[2]||function(e){for(var t=e.length-1;t>=0;t--){var r=e[t],n=r[3]||r[2];if(n)return n}}(e)),i.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){var a=e[0][0];if(":"===a||"space"===a||"comment"===a)break;i.prop+=e.shift()[1]}for(i.raws.between="";e.length;){if(":"===(r=e.shift())[0]){i.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),i.raws.between+=r[1]}("_"===i.prop[0]||"*"===i.prop[0])&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));for(var s=[];e.length&&("space"===(n=e[0][0])||"comment"===n);)s.push(e.shift());this.precheckMissedSemicolon(e);for(var u=e.length-1;u>=0;u--){if("!important"===(r=e[u])[1].toLowerCase()){i.important=!0;var c=this.stringFrom(e,u);" !important"!==(c=this.spacesFromEnd(e)+c)&&(i.raws.important=c);break}if("important"===r[1].toLowerCase()){for(var l=e.slice(0),f="",d=u;d>0;d--){var h=l[d][0];if(f.trim().startsWith("!")&&"space"!==h)break;f=l.pop()[1]+f}f.trim().startsWith("!")&&(i.important=!0,i.raws.important=f,e=l)}if("space"!==r[0]&&"comment"!==r[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(i.raws.between+=s.map(function(e){return e[1]}).join(""),s=[]),this.raw(i,"value",s.concat(e),t),i.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nX;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,r=null,n=!1,i=null,o=[],a=e[1].startsWith("--"),s=[],u=e;u;){if(r=u[0],s.push(u),"("===r||"["===r)i||(i=u),o.push("("===r?")":"]");else if(a&&n&&"{"===r)i||(i=u),o.push("}");else if(0===o.length){if(";"===r){if(n){this.decl(s,a);return}break}if("{"===r){this.rule(s);return}if("}"===r){this.tokenizer.back(s.pop()),t=!0;break}":"===r&&(n=!0)}else r===o[o.length-1]&&(o.pop(),0===o.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),o.length>0&&this.unclosedBracket(i),t&&n){if(!a)for(;s.length&&("space"===(u=s[s.length-1][0])||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,a)}else this.unknownWord(s)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,r,n){for(var i,o,a,s,u=r.length,c="",l=!0,f=0;f1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var n=r.node.rangeBy(r);this.line=n.start.line,this.column=n.start.column,this.endLine=n.end.line,this.endColumn=n.end.column}for(var i in r)this[i]=r[i]}return th(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();iy=ib,ib.default=ib;var iw=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.processor=t,this.messages=[],this.root=r,this.opts=n,this.css=void 0,this.map=void 0}return th(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var r=new iy(e,t);return this.messages.push(r),r}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();ig=iw,iw.default=iw;var ix={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},iE={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iS={Once:!0,postcssPlugin:!0,prepare:!0};function ik(e){return"object"==typeof e&&"function"==typeof e.then}function iA(e){var t=!1,r=ix[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function iI(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:iA(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iT(e){return e[eE]=!1,e.nodes&&e.nodes.forEach(function(e){return iT(e)}),e}var iN={},iO=/*#__PURE__*/function(){function e(t,r,n){var i,o=this;if(tf(this,e),this.stringified=!1,this.processed=!1,"object"==typeof r&&null!==r&&("root"===r.type||"document"===r.type))i=iT(r);else if(r instanceof e||r instanceof ig)i=iT(r.root),r.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=r.map);else{var a=is;n.syntax&&(a=n.syntax.parse),n.parser&&(a=n.parser),a.parse&&(a=a.parse);try{i=a(r,n)}catch(e){this.processed=!0,this.error=e}i&&!i[eS]&&rO.rebuild(i)}this.result=new ig(t,i,n),this.helpers=rt(tG({},iN),{postcss:iN,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tG({},e,e.prepare(o.result)):e})}return th(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,r,n){e.listeners[r]||(e.listeners[r]=[]),e.listeners[r].push([t,n])},r=!0,n=!1,i=void 0;try{for(var o,a=this.plugins[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("object"==typeof s)for(var u in s){if(!iE[u]&&/^[A-Z]/.test(u))throw Error("Unknown event ".concat(u," in ").concat(s.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iS[u]){if("object"==typeof s[u])for(var c in s[u])t(s,"*"===c?u:u+"-"+c.toLowerCase(),s[u][c]);else"function"==typeof s[u]&&t(s,u,s[u])}}}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eY(function(){var t,r,n,i,o,a,s,u,c,l,f,d,h,p,m,v;return(0,eZ.__generator)(this,function(g){switch(g.label){case 0:e.plugin=0,t=0,g.label=1;case 1:if(!(t0))return[3,13];if(!ik(s=e.visitTick(a)))return[3,12];g.label=9;case 9:return g.trys.push([9,11,,12]),[4,s];case 10:return g.sent(),[3,12];case 11:throw u=g.sent(),c=a[a.length-1].node,e.handleError(u,c);case 12:return[3,8];case 13:return[3,7];case 14:if(l=!0,f=!1,d=void 0,!e.listeners.OnceExit)return[3,22];g.label=15;case 15:g.trys.push([15,20,21,22]),h=function(){var t,r,n,i;return(0,eZ.__generator)(this,function(a){switch(a.label){case 0:r=(t=n8(m.value,2))[0],n=t[1],e.result.lastPlugin=r,a.label=1;case 1:if(a.trys.push([1,6,,7]),"document"!==o.type)return[3,3];return[4,Promise.all(o.nodes.map(function(t){return n(t,e.helpers)}))];case 2:return a.sent(),[3,5];case 3:return[4,n(o,e.helpers)];case 4:a.sent(),a.label=5;case 5:return[3,7];case 6:throw i=a.sent(),e.handleError(i);case 7:return[2]}})},p=e.listeners.OnceExit[Symbol.iterator](),g.label=16;case 16:if(l=(m=p.next()).done)return[3,19];return[5,(0,eZ.__values)(h())];case 17:g.sent(),g.label=18;case 18:return l=!0,[3,16];case 19:return[3,22];case 20:return v=g.sent(),f=!0,d=v,[3,22];case 21:try{l||null==p.return||p.return()}finally{if(f)throw d}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var r=this.result.root.nodes.map(function(r){return e.Once(r,t.helpers)});if(ik(r[0]))return Promise.all(r);return r}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rF;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var r=new n6(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,r=void 0;try{for(var n,i=this.plugins[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.runOnRoot(o);if(ik(a))throw this.getAsyncError()}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}if(this.prepareVisitors(),this.hasListener){for(var s=this.result.root;!s[eE];)s[eE]=!0,this.walkSync(s);if(this.listeners.OnceExit){var u=!0,c=!1,l=void 0;if("document"===s.type)try{for(var f,d=s.nodes[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var h=f.value;this.visitSync(this.listeners.OnceExit,h)}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}else this.visitSync(this.listeners.OnceExit,s)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=n8(o.value,2),u=s[0],c=s[1];this.result.lastPlugin=u;var l=void 0;try{l=c(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(ik(l))throw this.getAsyncError()}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],r=t.node,n=t.visitors;if("root"!==r.type&&"document"!==r.type&&!r.parent){e.pop();return}if(n.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tf(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return th(e,[{key:"normalize",value:function(e){var t=[],r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if(!0===s.postcss?s=s():s.postcss&&(s=s.postcss),"object"==typeof s&&Array.isArray(s.plugins))t=t.concat(s.plugins);else if("object"==typeof s&&s.postcssPlugin)t.push(s);else if("function"==typeof s)t.push(s);else if("object"==typeof s&&(s.parse||s.stringify));else throw Error(s+" is not a PostCSS plugin")}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n5(this,e,t):new iC(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iD(){for(var e=arguments.length,t=Array(e),r=0;r]+$/;function iV(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());var n,i,o,a,s,u,c,l,f,d="",h="";function p(e,t){var r=this;this.tag=e,this.attribs=t||{},this.tagPosition=d.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(s.length){var e=s[s.length-1];e.text+=r.text}},this.updateParentNodeMediaChildren=function(){s.length&&iR.includes(this.tag)&&s[s.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iV.defaults,t)).parser=Object.assign({},i$,t.parser);var m=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iB.forEach(function(e){m(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var v=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(n={},i={},iq(t.allowedAttributes,function(e,t){n[t]=[];var r=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rf(e).replace(/\\\*/g,".*")):n[t].push(e)}),r.length&&(i[t]=RegExp("^("+r.join("|")+")$"))}));var g={},y={},b={};iq(t.allowedClasses,function(e,t){if(n&&(iU(n,t)||(n[t]=[]),n[t].push("class")),g[t]=e,Array.isArray(e)){var r=[];g[t]=[],b[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rf(e).replace(/\\\*/g,".*")):e instanceof RegExp?b[t].push(e):g[t].push(e)}),r.length&&(y[t]=RegExp("^("+r.join("|")+")$"))}});var w={};iq(t.transformTags,function(e,t){var r;"function"==typeof e?r=e:"string"==typeof e&&(r=iV.simpleTransform(e)),"*"===t?o=r:w[t]=r});var x=!1;S();var E=new t$({onopentag:function(e,r){if(t.enforceHtmlBoundary&&"html"===e&&S(),l){f++;return}var E,N=new p(e,r);s.push(N);var O=!1,_=!!N.text;if(iU(w,e)&&(E=w[e](e,r),N.attribs=r=E.attribs,void 0!==E.text&&(N.innerText=E.text),e!==E.tagName&&(N.name=e=E.tagName,c[a]=E.tagName)),o&&(E=o(e,r),N.attribs=r=E.attribs,e!==E.tagName&&(N.name=e=E.tagName,c[a]=E.tagName)),(!m(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iU(e,t))return!1;return!0}(u)||null!=t.nestingLimit&&a>=t.nestingLimit)&&(O=!0,u[a]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==v.indexOf(e)&&(l=!0,f=1),u[a]=!0),a++,O){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;h=d,d=""}d+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(N.innerText=""),(!n||iU(n,e)||n["*"])&&iq(r,function(r,o){if(!iF.test(o)||""===r&&!t.allowedEmptyAttributes.includes(o)&&(t.nonBooleanAttributes.includes(o)||t.nonBooleanAttributes.includes("*"))){delete N.attribs[o];return}var a=!1;if(!n||iU(n,e)&&-1!==n[e].indexOf(o)||n["*"]&&-1!==n["*"].indexOf(o)||iU(i,e)&&i[e].test(o)||i["*"]&&i["*"].test(o))a=!0;else if(n&&n[e]){var s=!0,u=!1,c=void 0;try{for(var l,f=n[e][Symbol.iterator]();!(s=(l=f.next()).done);s=!0){var h=l.value;if(rh(h)&&h.name&&h.name===o){a=!0;var p="";if(!0===h.multiple){var m=r.split(" "),v=!0,w=!1,x=void 0;try{for(var E,S=m[Symbol.iterator]();!(v=(E=S.next()).done);v=!0){var O=E.value;-1!==h.values.indexOf(O)&&(""===p?p=O:p+=" "+O)}}catch(e){w=!0,x=e}finally{try{v||null==S.return||S.return()}finally{if(w)throw x}}}else h.values.indexOf(r)>=0&&(p=r);r=p}}}catch(e){u=!0,c=e}finally{try{s||null==f.return||f.return()}finally{if(u)throw c}}}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(o)&&A(e,r)){delete N.attribs[o];return}if("script"===e&&"src"===o){var _=!0;try{var C=I(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){var P=(t.allowedScriptHostnames||[]).find(function(e){return e===C.url.hostname}),L=(t.allowedScriptDomains||[]).find(function(e){return C.url.hostname===e||C.url.hostname.endsWith(".".concat(e))});_=P||L}}catch(e){_=!1}if(!_){delete N.attribs[o];return}}if("iframe"===e&&"src"===o){var D=!0;try{var M=I(r);if(M.isRelativeUrl)D=iU(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var R=(t.allowedIframeHostnames||[]).find(function(e){return e===M.url.hostname}),B=(t.allowedIframeDomains||[]).find(function(e){return M.url.hostname===e||M.url.hostname.endsWith(".".concat(e))});D=R||B}}catch(e){D=!1}if(!D){delete N.attribs[o];return}}if("srcset"===o)try{var q=rE(r);if(q.forEach(function(e){A("srcset",e.url)&&(e.evil=!0)}),(q=ij(q,function(e){return!e.evil})).length)r=ij(q,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),N.attribs[o]=r;else{delete N.attribs[o];return}}catch(e){delete N.attribs[o];return}if("class"===o){var U=g[e],j=g["*"],F=y[e],V=b[e],$=b["*"],z=[F,y["*"]].concat(V,$).filter(function(e){return e});if(!(r=U&&j?T(r,rp(U,j),z):T(r,U||j,z)).length){delete N.attribs[o];return}}if("style"===o){if(t.parseStyleAttributes)try{var H=iM(e+" {"+r+"}",{map:!1});if(r=(function(e,t){if(!t)return e;var r,n=e.nodes[0];return(r=t[n.selector]&&t["*"]?rp(t[n.selector],t["*"]):t[n.selector]||t["*"])&&(e.nodes[0].nodes=n.nodes.reduce(function(e,t){return iU(r,t.prop)&&r[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(H,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===r.length){delete N.attribs[o];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete N.attribs[o];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}d+=" "+o,r&&r.length?d+='="'+k(r,!0)+'"':t.allowedEmptyAttributes.includes(o)&&(d+='=""')}else delete N.attribs[o]}),-1!==t.selfClosing.indexOf(e)?d+=" />":(d+=">",!N.innerText||_||t.textFilter||(d+=k(N.innerText),x=!0)),O&&(d=h+k(d),h="")},ontext:function(e){if(!l){var r,n=s[s.length-1];if(n&&(r=n.tag,e=void 0!==n.innerText?n.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||m(r)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===r||"style"===r))d+=e;else{var i=k(e,!1);t.textFilter&&!x?d+=t.textFilter(i,r):x||(d+=i)}}else e="";if(s.length){var o=s[s.length-1];o.text+=e}}},onclosetag:function(e,r){if(l){if(--f)return;l=!1}var n=s.pop();if(n){if(n.tag!==e){s.push(n);return}l=!!t.enforceHtmlBoundary&&"html"===e;var i=u[--a];if(i){if(delete u[a],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){n.updateParentNodeText();return}h=d,d=""}if(c[a]&&(e=c[a],delete c[a]),t.exclusiveFilter&&t.exclusiveFilter(n)){d=d.substr(0,n.tagPosition);return}if(n.updateParentNodeMediaChildren(),n.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!m(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){i&&(d=h,h="");return}d+="",i&&(d=h+k(d),h=""),x=!1}}},t.parser);return E.write(e),E.end(),d;function S(){d="",a=0,s=[],u={},c={},l=!1,f=0}function k(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function A(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){var n=r.indexOf("",n+4);if(-1===i)break;r=r.substring(0,n)+r.substring(i+3)}var o=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!o)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var a=o[1].toLowerCase();return iU(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(a):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(a)}function I(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",r=0;r<100;r++)t+="/".concat(r);var n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function T(e,t,r){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||r.some(function(t){return t.test(e)})}).join(" "):e}}var i$={decodeEntities:!0};iV.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iV.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(n,i){var o;if(r)for(o in t)i[o]=t[o];else i=t;return{tagName:e,attribs:i}}};var iz={};r="millisecond",n="second",i="minute",o="hour",a="week",s="month",u="quarter",c="year",l="date",f="Invalid Date",d=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,p=function(e,t,r){var n=String(e);return!n||n.length>=t?e:""+Array(t+1-n.length).join(r)+e},(v={})[m="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],r=e%100;return"["+e+(t[(r-20)%10]||t[r]||"th")+"]"}},g="$isDayjsObject",y=function(e){return e instanceof E||!(!e||!e[g])},b=function e(t,r,n){var i;if(!t)return m;if("string"==typeof t){var o=t.toLowerCase();v[o]&&(i=o),r&&(v[o]=r,i=o);var a=t.split("-");if(!i&&a.length>1)return e(a[0])}else{var s=t.name;v[s]=t,i=s}return!n&&i&&(m=i),i||!n&&m},w=function(e,t){if(y(e))return e.clone();var r="object"==typeof t?t:{};return r.date=e,r.args=arguments,new E(r)},(x={s:p,z:function(e){var t=-e.utcOffset(),r=Math.abs(t);return(t<=0?"+":"-")+p(Math.floor(r/60),2,"0")+":"+p(r%60,2,"0")},m:function e(t,r){if(t.date() * @license MIT - */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,n){n=n||{bubbles:!1,cancelable:!1,detail:void 0};var i=t.createEvent("CustomEvent");return i.initCustomEvent(e,n.bubbles,n.cancelable,n.detail),i},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(u=e.target,s=Date.now(),n=e.touches[0].clientX,i=e.touches[0].clientY,o=0,a=0,c=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(n&&i){var t=e.touches[0].clientX,s=e.touches[0].clientY;o=n-t,a=i-s}},!1),t.addEventListener("touchend",function(e){if(u===e.target){var f=parseInt(l(u,"data-swipe-threshold","20"),10),d=l(u,"data-swipe-unit","px"),h=parseInt(l(u,"data-swipe-timeout","500"),10),p=Date.now()-s,m="",v=e.changedTouches||e.touches||[];if("vh"===d&&(f=Math.round(f/100*t.documentElement.clientHeight)),"vw"===d&&(f=Math.round(f/100*t.documentElement.clientWidth)),Math.abs(o)>Math.abs(a)?Math.abs(o)>f&&p0?"swiped-left":"swiped-right"):Math.abs(a)>f&&p0?"swiped-up":"swiped-down"),""!==m){var g={dir:m.replace(/swiped-/,""),touchType:(v[0]||{}).touchType||"direct",fingers:c,xStart:parseInt(n,10),xEnd:parseInt((v[0]||{}).clientX||-1,10),yStart:parseInt(i,10),yEnd:parseInt((v[0]||{}).clientY||-1,10)};u.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:g})),u.dispatchEvent(new CustomEvent(m,{bubbles:!0,cancelable:!0,detail:g}))}n=null,i=null,s=null}},!1);var n=null,i=null,o=null,a=null,s=null,u=null,c=0;function l(e,n,i){for(;e&&e!==t.documentElement;){var o=e.getAttribute(n);if(o)return o;e=e.parentNode}return i}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eB=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var n=[],i=t.exec(e);i;){var o=[];o.startIndex=t.lastIndex-i[0].length;for(var a=i.length,s=0;s5&&"xml"===i)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var n=1;for(t+=8;t"===e[t]&&0==--n)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iZ,t);var n=[],i=!1,o=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var a=0;a"!==e[a]&&" "!==e[a]&&" "!==e[a]&&"\n"!==e[a]&&"\r"!==e[a];a++)c+=e[a];if("/"===(c=c.trim())[c.length-1]&&(c=c.substring(0,c.length-1),a--),!eq(c))return i3("InvalidTag",0===c.trim().length?"Invalid space after '<'.":"Tag '"+c+"' is an invalid name.",i2(e,a));var l=function(e,t){for(var n="",i="",o=!1;t"===e[t]&&""===i){o=!0;break}n+=e[t]}return""===i&&{value:n,index:t,tagClosed:o}}(e,a);if(!1===l)return i3("InvalidAttr","Attributes for '"+c+"' have open quote.",i2(e,a));var f=l.value;if(a=l.index,"/"===f[f.length-1]){var d=a-f.length,h=i1(f=f.substring(0,f.length-1),t);if(!0!==h)return i3(h.err.code,h.err.msg,i2(e,d+h.err.line));i=!0}else if(u){if(!l.tagClosed)return i3("InvalidTag","Closing tag '"+c+"' doesn't have proper closing.",i2(e,a));if(f.trim().length>0)return i3("InvalidTag","Closing tag '"+c+"' can't have attributes or invalid starting.",i2(e,s));if(0===n.length)return i3("InvalidTag","Closing tag '"+c+"' has not been opened.",i2(e,s));var p=n.pop();if(c!==p.tagName){var m=i2(e,p.tagStartPos);return i3("InvalidTag","Expected closing tag '"+p.tagName+"' (opened in line "+m.line+", col "+m.col+") instead of closing tag '"+c+"'.",i2(e,s))}0==n.length&&(o=!0)}else{var v=i1(f,t);if(!0!==v)return i3(v.err.code,v.err.msg,i2(e,a-f.length+v.err.line));if(!0===o)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,a));-1!==t.unpairedTags.indexOf(c)||n.push({tagName:c,tagStartPos:s}),i=!0}for(a++;a0)||i3("InvalidXml","Invalid '"+JSON.stringify(n.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var n=eU(e,i0),i={},o=0;o0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var n={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var i,o,a,s,u,c,l,f,d,h=1,p=!1,m=!1;t"===e[t]){if(m?"-"===e[t-1]&&"-"===e[t-2]&&(m=!1,h--):h--,0===h)break}else"["===e[t]?p=!0:e[t]}else{if(p&&"!"===(i=e)[(o=t)+1]&&"E"===i[o+2]&&"N"===i[o+3]&&"T"===i[o+4]&&"I"===i[o+5]&&"T"===i[o+6]&&"Y"===i[o+7])t+=7,entityName=(d=n8(function(e,t){for(var n="";t1&&void 0!==arguments[1]?arguments[1]:{};if(n=Object.assign({},oi,n),!e||"string"!=typeof e)return e;var i=e.trim();if(void 0!==n.skipLike&&n.skipLike.test(i))return e;if(n.hex&&or.test(i))return Number.parseInt(i,16);var o=on.exec(i);if(!o)return e;var a=o[1],s=o[2],u=((t=o[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),c=o[4]||o[6];if(!n.leadingZeros&&s.length>0&&a&&"."!==i[2]||!n.leadingZeros&&s.length>0&&!a&&"."!==i[1])return e;var l=Number(i),f=""+l;return -1!==f.search(/[eE]/)||c?n.eNotation?l:e:-1!==i.indexOf(".")?"0"===f&&""===u?l:f===u?l:a&&f==="-"+u?l:e:s?u===f?l:a+u===f?l:e:i===f?l:i===a+f?l:e};var oo={};function oa(e){for(var t=Object.keys(e),n=0;n0)){s||(e=this.replaceEntitiesValue(e));var u=this.options.tagValueProcessor(t,e,n,o,a);return null==u?e:(void 0===u?"undefined":(0,tr._)(u))!==(void 0===e?"undefined":(0,tr._)(e))||u!==e?u:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),n="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=n+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;if("string"==typeof u&&t===u||u instanceof RegExp&&u.test(t))return!0}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,n){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var i=eU(e,oc),o=i.length,a={},s=0;s",a,"Closing Tag is not closed."),u=e.substring(a+2,s).trim();if(this.options.removeNSPrefix){var c=u.indexOf(":");-1!==c&&(u=u.substr(c+1))}this.options.transformTagName&&(u=this.options.transformTagName(u)),n&&(i=this.saveTextToParentTag(i,n,o));var l=o.substring(o.lastIndexOf(".")+1);if(u&&-1!==this.options.unpairedTags.indexOf(u))throw Error("Unpaired tag can not be used as closing tag: "));var f=0;l&&-1!==this.options.unpairedTags.indexOf(l)?(f=o.lastIndexOf(".",o.lastIndexOf(".")-1),this.tagsNodeStack.pop()):f=o.lastIndexOf("."),o=o.substring(0,f),n=this.tagsNodeStack.pop(),i="",a=s}else if("?"===e[a+1]){var d=og(e,a,!1,"?>");if(!d)throw Error("Pi Tag is not closed.");if(i=this.saveTextToParentTag(i,n,o),this.options.ignoreDeclaration&&"?xml"===d.tagName||this.options.ignorePiTags);else{var h=new i9(d.tagName);h.add(this.options.textNodeName,""),d.tagName!==d.tagExp&&d.attrExpPresent&&(h[":@"]=this.buildAttributesMap(d.tagExp,o,d.tagName)),this.addChild(n,h,o)}a=d.closeIndex+1}else if("!--"===e.substr(a+1,3)){var p=ov(e,"-->",a+4,"Comment is not closed.");if(this.options.commentPropName){var m=e.substring(a+4,p-2);i=this.saveTextToParentTag(i,n,o),n.add(this.options.commentPropName,[tW({},this.options.textNodeName,m)])}a=p}else if("!D"===e.substr(a+1,2)){var v=i7(e,a);this.docTypeEntities=v.entities,a=v.i}else if("!["===e.substr(a+1,2)){var g=ov(e,"]]>",a,"CDATA is not closed.")-2,y=e.substring(a+9,g);i=this.saveTextToParentTag(i,n,o);var b=this.parseTextData(y,n.tagname,o,!0,!1,!0,!0);void 0==b&&(b=""),this.options.cdataPropName?n.add(this.options.cdataPropName,[tW({},this.options.textNodeName,y)]):n.add(this.options.textNodeName,b),a=g+2}else{var w=og(e,a,this.options.removeNSPrefix),x=w.tagName,E=w.rawTagName,S=w.tagExp,k=w.attrExpPresent,A=w.closeIndex;this.options.transformTagName&&(x=this.options.transformTagName(x)),n&&i&&"!xml"!==n.tagname&&(i=this.saveTextToParentTag(i,n,o,!1));var I=n;if(I&&-1!==this.options.unpairedTags.indexOf(I.tagname)&&(n=this.tagsNodeStack.pop(),o=o.substring(0,o.lastIndexOf("."))),x!==t.tagname&&(o+=o?"."+x:x),this.isItStopNode(this.options.stopNodes,o,x)){var T="";if(S.length>0&&S.lastIndexOf("/")===S.length-1)"/"===x[x.length-1]?(x=x.substr(0,x.length-1),o=o.substr(0,o.length-1),S=x):S=S.substr(0,S.length-1),a=w.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(x))a=w.closeIndex;else{var N=this.readStopNodeData(e,E,A+1);if(!N)throw Error("Unexpected end of ".concat(E));a=N.i,T=N.tagContent}var O=new i9(x);x!==S&&k&&(O[":@"]=this.buildAttributesMap(S,o,x)),T&&(T=this.parseTextData(T,x,o,!0,k,!0,!0)),o=o.substr(0,o.lastIndexOf(".")),O.add(this.options.textNodeName,T),this.addChild(n,O,o)}else{if(S.length>0&&S.lastIndexOf("/")===S.length-1){"/"===x[x.length-1]?(x=x.substr(0,x.length-1),o=o.substr(0,o.length-1),S=x):S=S.substr(0,S.length-1),this.options.transformTagName&&(x=this.options.transformTagName(x));var _=new i9(x);x!==S&&k&&(_[":@"]=this.buildAttributesMap(S,o,x)),this.addChild(n,_,o),o=o.substr(0,o.lastIndexOf("."))}else{var C=new i9(x);this.tagsNodeStack.push(n),x!==S&&k&&(C[":@"]=this.buildAttributesMap(S,o,x)),this.addChild(n,C,o),n=C}i="",a=A}}}else i+=e[a];return t.child};function od(e,t,n){var i=this.options.updateTag(t.tagname,n,t[":@"]);!1===i||("string"==typeof i&&(t.tagname=i),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var n=this.docTypeEntities[t];e=e.replace(n.regx,n.val)}for(var i in this.lastEntities){var o=this.lastEntities[i];e=e.replace(o.regex,o.val)}if(this.options.htmlEntities)for(var a in this.htmlEntities){var s=this.htmlEntities[a];e=e.replace(s.regex,s.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,n,i){return e&&(void 0===i&&(i=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,n,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,i))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,n){var i="*."+n;for(var o in e){var a=e[o];if(i===a||t===a)return!0}return!1}function ov(e,t,n,i){var o=e.indexOf(t,n);if(-1!==o)return o+t.length-1;throw Error(i)}function og(e,t,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",o=function(e,t){for(var n,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",o="",a=t;a",n,"".concat(t," is not closed"));if(e.substring(n+2,a).trim()===t&&0==--o)return{tagContent:e.substring(i,n),i:a};n=a}else if("?"===e[n+1])n=ov(e,"?>",n+1,"StopNode is not closed.");else if("!--"===e.substr(n+1,3))n=ov(e,"-->",n+3,"StopNode is not closed.");else if("!["===e.substr(n+1,2))n=ov(e,"]]>",n,"StopNode is not closed.")-2;else{var s=og(e,n,">");s&&((s&&s.tagName)===t&&"/"!==s.tagExp[s.tagExp.length-1]&&o++,n=s.closeIndex)}}}function ob(e,t,n){if(t&&"string"==typeof e){var i=e.trim();return"true"===i||"false"!==i&&ot(e,n)}return eB(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,n,i){for(var o,a={},s=0;s0&&(a[n.textNodeName]=o):void 0!==o&&(a[n.textNodeName]=o),a}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var n=eR(e,t);if(!0!==n)throw Error("".concat(n.err.msg,":").concat(n.err.line,":").concat(n.err.col))}var i=new i4(this.options);i.addExternalEntities(this.externalEntities);var o=i.parseXml(e);return this.options.preserveOrder||void 0===o?o:eF(o,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var n="";if(e&&!t.ignoreAttributes){for(var i in e)if(e.hasOwnProperty(i)){var o=t.attributeValueProcessor(i,e[i]);!0===(o=oE(o,t))&&t.suppressBooleanAttributes?n+=" ".concat(i.substr(t.attributeNamePrefix.length)):n+=" ".concat(i.substr(t.attributeNamePrefix.length),'="').concat(o,'"')}}return n}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var n=0;n0&&(n="\n"),function e(t,n,i,o){for(var a="",s=!1,u=0;u"),s=!1;continue}if(l===n.commentPropName){a+=o+""),s=!0;continue}if("?"===l[0]){var h=ox(c[":@"],n),p="?xml"===l?"":o,m=c[l][0][n.textNodeName];m=0!==m.length?" "+m:"",a+=p+"<".concat(l).concat(m).concat(h,"?>"),s=!0;continue}var v=o;""!==v&&(v+=n.indentBy);var g=ox(c[":@"],n),y=o+"<".concat(l).concat(g),b=e(c[l],n,f,v);-1!==n.unpairedTags.indexOf(l)?n.suppressUnpairedNode?a+=y+">":a+=y+"/>":(!b||0===b.length)&&n.suppressEmptyNode?a+=y+"/>":b&&b.endsWith(">")?a+=y+">".concat(b).concat(o,""):(a+=y+">",b&&""!==o&&(b.includes("/>")||b.includes("")),s=!0}}return a}(e,t,"",n)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,n,i){var o=this.j2x(e,n+1,i.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,o.attrStr,n):this.buildObjectNode(o.val,t,o.attrStr,n)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,n){var i="",o="",a=n.join(".");for(var s in e)if(Object.prototype.hasOwnProperty.call(e,s)){if(void 0===e[s])this.isAttribute(s)&&(o+="");else if(null===e[s])this.isAttribute(s)?o+="":"?"===s[0]?o+=this.indentate(t)+"<"+s+"?"+this.tagEndChar:o+=this.indentate(t)+"<"+s+"/"+this.tagEndChar;else if(e[s]instanceof Date)o+=this.buildTextValNode(e[s],s,"",t);else if("object"!=typeof e[s]){var u=this.isAttribute(s);if(u&&!this.ignoreAttributesFn(u,a))i+=this.buildAttrPairStr(u,""+e[s]);else if(!u){if(s===this.options.textNodeName){var c=this.options.tagValueProcessor(s,""+e[s]);o+=this.replaceEntitiesValue(c)}else o+=this.buildTextValNode(e[s],s,"",t)}}else if(Array.isArray(e[s])){for(var l=e[s].length,f="",d="",h=0;h"+e+o:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===a.length?this.indentate(i)+"")+this.newLine:this.indentate(i)+"<"+t+n+a+this.tagEndChar+e+this.indentate(i)+o},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(i)+"")+this.newLine;if("?"===t[0])return this.indentate(i)+"<"+t+n+"?"+this.tagEndChar;var o=this.options.tagValueProcessor(t,e);return""===(o=this.replaceEntitiesValue(o))?this.indentate(i)+"<"+t+n+this.closeTag(t)+this.tagEndChar:this.indentate(i)+"<"+t+n+">"+o+"0&&this.options.processEntities)for(var t=0;t300;else{var oU=navigator.userAgent||"";oq.notKaiOS=!oU.includes("KaiOS")}var oj="",oF="https://corsproxy.io/?",oV={opml_url:"https://raw.githubusercontent.com/strukturart/feedolin/master/example.opml",opml_local:"",proxy_url:"https://corsproxy.io/?",cache_time:1e3},o$={},oz=[],oH=[];/*@__PURE__*/t(tt).getItem("read_articles").then(function(e){if(null===e)return oH=[],/*@__PURE__*/t(tt).setItem("read_articles",oH).then(function(){});oH=e}).catch(function(e){console.error("Error accessing localForage:",e)});var oW=function(){oK=[],e8("reload data",3e3),localStorage.setItem("last_channel_filter",o9),setTimeout(function(){o8()},3e3)};function oG(e){var n=[];oK.map(function(e,t){n.push(e.id)}),(oH=oH.filter(function(t){return n.includes(e)})).push(e),/*@__PURE__*/t(tt).setItem("read_articles",oH).then(function(){}).catch(function(e){console.error("Error updating localForage:",e)})}var oY=new DOMParser;("b2g"in navigator||"navigator.mozApps"in navigator)&&(oq.notKaiOS=!1),oq.notKaiOS||["http://127.0.0.1/api/v1/shared/core.js","http://127.0.0.1/api/v1/shared/session.js","http://127.0.0.1/api/v1/apps/service.js","http://127.0.0.1/api/v1/audiovolumemanager/service.js","./assets/js/kaiads.v5.min.js"].forEach(function(e){var t=document.createElement("script");t.type="text/javascript",t.src=e,document.head.appendChild(t)});var oK=[];oq.debug&&(window.onerror=function(e,t,n){return alert("Error message: "+e+"\nURL: "+t+"\nLine Number: "+n),!0});var oZ=function(){/*@__PURE__*/t(tt).getItem("settings").then(function(e){o$=e;var n=new URLSearchParams(window.location.href.split("?")[1]).get("code");if(n){var i=n.split("#")[0];if(n){/*@__PURE__*/t(tt).setItem("mastodon_code",i);var o=new Headers;o.append("Content-Type","application/x-www-form-urlencoded");var a=new URLSearchParams;a.append("code",i),a.append("scope","read"),a.append("grant_type","authorization_code"),a.append("redirect_uri","https://feedolin.strukturart.com"),a.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),a.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(o$.mastodon_server_url+"/oauth/token",{method:"POST",headers:o,body:a,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){o$.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",o$),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}}})};function oQ(e){for(var t=0,n=0;n0))return[3,5];o.label=1;case 1:return o.trys.push([1,3,,4]),[4,o2(n)];case 2:return o.sent(),o$.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",o$),[3,4];case 3:return o.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),o.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),o.label=8;case 8:return[2]}})}),function(e){return ei.apply(this,arguments)}),o3=function(e){var t=oY.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var n=t.querySelector("body");if(!n)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var i=0,o=n.querySelectorAll("outline"),a=[];return o.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var n=t.getAttribute("xmlUrl");n&&a.push({error:"",title:t.getAttribute("title")||"Untitled",url:n,index:i++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:a}},o2=(eo=eY(function(e){var n,i,o,a,s;return(0,eZ.__generator)(this,function(u){return n=0,i=e.length,o=!1,a=function(){o9=localStorage.getItem("last_channel_filter"),n===i&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oK).then(function(){console.log("feeds cached"),oK.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oz.indexOf(e.channel)&&e.channel&&oz.push(e.channel)}),oz.length>0&&!o&&(o9=localStorage.getItem("last_channel_filter")||oz[0],o=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},s=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,n){if(!(n>5)){var i={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?i.content+="
"):"video"===t.media_attachments[0].type?i.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(i.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(i.content=t.reblog.content,i.reblog=!0,i.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?i.content+="
"):"video"===t.reblog.media_attachments[0].type?i.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(i.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oK.push(i)}})}).catch(function(t){e.error=t}).finally(function(){n++,a()});else{var i=new XMLHttpRequest;new Date().getTime();var o=e.url;i.open("GET",oF+o,!0),i.onload=function(){if(200!==i.status){e.error=i.status,n++,a();return}var o=i.response;if(!o){e.error=i.status,n++,a();return}try{var u=oB.parse(o);u.feed&&u.feed.entry.forEach(function(n,i){if(i15)){var n={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?n.content+="
"):"video"===e.media_attachments[0].type?n.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(n.content=e.reblog.content,n.reblog=!0,n.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?n.content+="
"):"video"===e.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oK.push(n)}}),oz.push("Mastodon")})},o8=function(){o0(oF+o$.opml_url+"?time="+new Date),o$.opml_local&&o1(o$.opml_local),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o5()}).catch(function(e){alert(e)}),o9=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(o$=oV,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})),(o$=e).cache_time=o$.cache_time||1e3,o$.last_update?oq.last_update_duration=new Date/1e3-o$.last_update/1e3:oq.last_update_duration=3600,o$.opml_url||o$.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>o$.cache_time?(o8(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oK=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oz.indexOf(e.channel)&&e.channel&&oz.push(e.channel)}),oz.length&&(o9=localStorage.getItem("last_channel_filter")||oz[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),o0(oF+(o$=oV).opml_url),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})});var o6=document.getElementById("app"),o4=-1,o9=localStorage.getItem("last_channel_filter")||"",o7=0,ae=function(e){return /*@__PURE__*/t(iz).duration(e,"seconds").format("mm:ss")},at={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var n=e.attrs;oq.notKaiOS&&e9("","",""),at.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(at.videoElement);var i=n.url;i&&(at.videoElement.src=i,at.videoElement.play(),at.isPlaying=!0),at.videoElement.onloadedmetadata=function(){at.videoDuration=at.videoElement.duration,/*@__PURE__*/t(tn).redraw()},at.videoElement.ontimeupdate=function(){at.currentTime=at.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",at.handleKeydown)},onremove:function(){document.removeEventListener("keydown",at.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){at.isPlaying?at.videoElement.pause():at.videoElement.play(),at.isPlaying=!at.isPlaying},seek:function(e){var t=at.videoElement.currentTime;"left"===e?at.videoElement.currentTime=Math.max(0,t-at.seekAmount):"right"===e&&(at.videoElement.currentTime=Math.min(at.videoDuration,t+at.seekAmount))},view:function(e){e.attrs;var n=at.videoDuration>0?at.currentTime/at.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(ae(at.currentTime)," / ").concat(ae(at.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(n,"%")}})])])}},ar={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?ar.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:ar.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",ar.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?ar.togglePlayPause():"ArrowLeft"===e.key?ar.seek("left"):"ArrowRight"===e.key&&ar.seek("right")},togglePlayPause:function(){1===ar.player.getPlayerState()?ar.player.pauseVideo():ar.player.playVideo()},seek:function(e){var t=ar.player.getCurrentTime();"left"===e?ar.player.seekTo(Math.max(0,t-5),!0):"right"===e&&ar.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},an=document.createElement("audio");if(an.preload="auto","b2g"in navigator)try{an.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var ai={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var n=e.attrs;n.url&&an.src!==n.url&&(an.src=n.url,an.play().catch(function(){}),ai.isPlaying=!0),an.onloadedmetadata=function(){ai.audioDuration=an.duration,/*@__PURE__*/t(tn).redraw()},an.ontimeupdate=function(){ai.currentTime=an.currentTime,/*@__PURE__*/t(tn).redraw()},ai.isPlaying=!an.paused,document.addEventListener("keydown",ai.handleKeydown)},oncreate:function(){oq.player=!0,e9("","",""),e4("","",""),o$.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oM(6e4*o$.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){ai.togglePlayPause()}),document.addEventListener("swiped-left",function(){/*@__PURE__*/t(tn).route.get().startsWith("Audio")&&ai.seek("left")}),document.addEventListener("swiped-right",function(){ai.seek("right"),r.startsWith("Audio")&&ai.seek("right")})},onremove:function(){document.removeEventListener("keydown",ai.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ai.togglePlayPause():"ArrowLeft"===e.key?ai.seek("left"):"ArrowRight"===e.key&&ai.seek("right")},togglePlayPause:function(){ai.isPlaying?an.pause():an.play().catch(function(){}),ai.isPlaying=!ai.isPlaying},seek:function(e){var t=an.currentTime;"left"===e?an.currentTime=Math.max(0,t-ai.seekAmount):"right"===e&&(an.currentTime=Math.min(ai.audioDuration,t+ai.seekAmount))},view:function(e){e.attrs;var n=ai.audioDuration>0?ai.currentTime/ai.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oj.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(n,"%, white ").concat(n,"%)")}},["".concat(ae(ai.currentTime)," / ").concat(ae(ai.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(n,"%")}})])])}};function ao(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),n=t.top+t.height/2,i=e.parentNode;i;){if(i.scrollHeight>i.clientHeight||i.scrollWidth>i.clientWidth){var o=i.getBoundingClientRect();n=t.top-o.top+t.height/2;break}i=i.parentNode}i?i.scrollBy({left:0,top:n-i.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:n-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o6,"/intro",{"/article":{view:function(){var e=oK.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oj=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iz)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var n=t.dom;e.reblog&&n.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oX(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){aa()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:o$.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.opml_local_filename?(o$.opml_local="",o$.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var n=new FileReader;n.onload=function(){o3(n.result).error?e8("OPML file not valid",4e3):(o$.opml_local=n.result,o$.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3)}))},n.onerror=function(){e8("OPML file not valid",4e3)},n.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},o$.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",o$.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:o$.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(o$.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.mastodon_server_url="",o$.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",o$),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:o$.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",o$),o$.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=o$.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:o$.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),o$.opml_url=document.getElementById("url-opml").value,o$.proxy_url=document.getElementById("url-proxy").value;var e,n=document.getElementById("sleep-timer").value;n&&!isNaN(n)&&Number(n)>0?o$.sleepTimer=parseInt(n,10):o$.sleepTimer="",oq.mastodon_logged||(o$.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oZ()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oK.filter(function(e){return""===o9||o9===e.channel});return /*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o7=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o9),e.map(function(n,i){var o=oH.includes(n.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(o),"data-id":n.id,"data-type":n.type,oncreate:function(t){0==o7&&0==i?setTimeout(function(){t.dom.focus()},1200):n.id==o7&&setTimeout(function(){t.dom.focus(),ao()},1200),i==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+n.id),oG(n.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+n.id),oG(n.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},n.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iz)(n.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===n.reblog&&t.classList.add("reblog")}},oX(n.feed_title)),/*@__PURE__*/t(tn)("h3",oX(n.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ao()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eJ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,n){var i=e.split("/");return i=i[i.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:n,oncreate:function(e){0==n&&e.dom.focus()},onclick:function(){try{var n=navigator.b2g.getDeviceStorage("sdcard").get(e);n.onsuccess=function(){var e=new FileReader;e.onload=function(){o3(e.result).error?e8("OPML file not valid",4e3):(o$.opml_local=e.result,o$.opml_local_filename=i,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},n.onerror=function(e){}}catch(e){}}},i)}))}},"/AudioPlayerView":ai,"/VideoPlayerView":at,"/YouTubePlayerView":ar});var aa=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var n,i,o=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var n=document.activeElement.tabIndex+e,i=0;if(i=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;n<=i.length&&(0,i[n]).focus(),n>=i.length&&(0,i[0]).focus(),ao()};function a(e){l({key:e})}n=0,document.addEventListener("touchstart",function(e){n=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var t=1-Math.min(Math.abs(e.touches[0].pageX-n)/300,1);document.querySelector("body").style.opacity=t},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){a("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){a("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){a("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){a("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){a("*")});var s=!1;document.addEventListener("keydown",function(e){s||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(c=!1,i=setTimeout(function(){c=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oK=[],oW()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(c=!1),e.key),s=!0,setTimeout(function(){s=!1},300))});var u=!1;document.addEventListener("keyup",function(e){u||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(i),c||l(e)}(e),u=!0,setTimeout(function(){u=!1},300))}),document.addEventListener("swiped",function(e){var n=/*@__PURE__*/t(tn).route.get(),i=e.detail.dir;if("down"==i&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==i&&n.startsWith("/start")){--o4<1&&(o4=oz.length-1),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}if("left"==i&&n.startsWith("/start")){++o4>oz.length-1&&(o4=0),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var a=/*@__PURE__*/t(tn).route.param();a.index=0,/*@__PURE__*/t(tn).route.set("/start",a)}});var c=!1;function l(e){var n=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(n.startsWith("/start")){++o4>oz.length-1&&(o4=0),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ao()},500)}break;case"ArrowLeft":if(n.startsWith("/start")){--o4<0&&(o4=oz.length-1),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var a=/*@__PURE__*/t(tn).route.param();a.index=0,/*@__PURE__*/t(tn).route.set("/start",a),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ao()},500)}break;case"ArrowUp":o(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":o(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":n.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),n.startsWith("/article")&&("audio"==oj.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oj.enclosure["@_url"]))),"video"==oj.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oj.enclosure["@_url"]))),"youtube"==oj.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oj.youtubeid))));break;case"SoftLeft":case"Control":n.startsWith("/start")&&oW(),n.startsWith("/article")&&window.open(oj.url),n.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oM(6e4*o$.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(n.startsWith("/article")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(n.startsWith("/YouTubePlayerView")){var u=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+u)}if(n.startsWith("/localOPML")&&history.back(),n.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),n.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),n.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),n.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),n.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}n.startsWith("/Video")&&history.back(),n.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&o$.last_update?(oq.visibility=!0,new Date/1e3-o$.last_update/1e3>o$.cache_time&&(oK=[],e8("load new content",4e3),o8())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var n=window.performance.getEntriesByType("navigation"),i=window.performance.navigation?window.performance.navigation.type:null;(n.length&&"reload"===n[0].type||1===i)&&(e.preventDefault(),oK=[],e8("load new content",4e3),o8(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var as={};as=eH("MMwCY").getBundleURL("5Waqz")+"sw.js";try{navigator.serviceWorker.register(as).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var n=e.data.oauth_success;if(console.log(n),n){var i=new Headers;i.append("Content-Type","application/x-www-form-urlencoded");var o=new URLSearchParams;o.append("code",n),o.append("scope","read"),o.append("grant_type","authorization_code"),o.append("redirect_uri","https://feedolin.strukturart.com"),o.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),o.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(o$.mastodon_server_url+"/oauth/token",{method:"POST",headers:i,body:o,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){o$.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",o$),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}})}(); \ No newline at end of file + */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eB=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iZ,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eq(u))return i3("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i2(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i3("InvalidAttr","Attributes for '"+u+"' have open quote.",i2(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i1(l=l.substring(0,l.length-1),t);if(!0!==d)return i3(d.err.code,d.err.msg,i2(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i3("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i2(e,o));if(l.trim().length>0)return i3("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i2(e,a));if(0===r.length)return i3("InvalidTag","Closing tag '"+u+"' has not been opened.",i2(e,a));var h=r.pop();if(u!==h.tagName){var p=i2(e,h.tagStartPos);return i3("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i2(e,a))}0==r.length&&(i=!0)}else{var m=i1(l,t);if(!0!==m)return i3(m.err.code,m.err.msg,i2(e,o-l.length+m.err.line));if(!0===i)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i3("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var r=eU(e,i0),n={},i=0;i0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n8(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},oi,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&or.test(n))return Number.parseInt(n,16);var i=on.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oo={};function oa(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tr._)(s))!==(void 0===e?"undefined":(0,tr._)(e))||s!==e?s:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eU(e,oc),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=og(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i9(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=ov(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tW({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i7(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=ov(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tW({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=og(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var T=this.readStopNodeData(e,x,k+1);if(!T)throw Error("Unexpected end of ".concat(x));o=T.i,I=T.tagContent}var N=new i9(w);w!==E&&S&&(N[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),N.add(this.options.textNodeName,I),this.addChild(r,N,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i9(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i9(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function od(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function ov(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function og(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=ov(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=ov(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=ov(e,"]]>",r,"StopNode is not closed.")-2;else{var a=og(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function ob(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&ot(e,r)}return eB(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i4(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:eF(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=oE(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ox(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ox(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o3(r)];case 2:return i.sent(),oV.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",oV),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o1=function(e){var t=oG.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o3=(ei=eY(function(e){var r,n,i,o,a;return(0,eZ.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o4=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oY).then(function(){console.log("feeds cached"),oY.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length>0&&!i&&(o4=localStorage.getItem("last_channel_filter")||o$[0],i=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oY.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oB.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oY.push(r)}}),o$.push("Mastodon")})},o5=function(){oX(oj+oV.opml_url+"?time="+new Date),oV.opml_local&&o0(oV.opml_local),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o2()}).catch(function(e){alert(e)}),o4=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(oV=oF,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})),(oV=e).cache_time=oV.cache_time||1e3,oV.last_update?oq.last_update_duration=new Date/1e3-oV.last_update/1e3:oq.last_update_duration=3600,oV.opml_url||oV.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>oV.cache_time?(o5(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oY=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length&&(o4=localStorage.getItem("last_channel_filter")||o$[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),oX(oj+(oV=oF).opml_url),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})});var o8=document.getElementById("app"),o6=-1,o4=localStorage.getItem("last_channel_filter")||"",o9=0,o7=function(e){return /*@__PURE__*/t(iz).duration(e,"seconds").format("mm:ss")},ae={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oq.notKaiOS&&e9("","",""),ae.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(ae.videoElement);var n=r.url;n&&(ae.videoElement.src=n,ae.videoElement.play(),ae.isPlaying=!0),ae.videoElement.onloadedmetadata=function(){ae.videoDuration=ae.videoElement.duration,/*@__PURE__*/t(tn).redraw()},ae.videoElement.ontimeupdate=function(){ae.currentTime=ae.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",ae.handleKeydown)},onremove:function(){document.removeEventListener("keydown",ae.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ae.togglePlayPause():"ArrowLeft"===e.key?ae.seek("left"):"ArrowRight"===e.key&&ae.seek("right")},togglePlayPause:function(){ae.isPlaying?ae.videoElement.pause():ae.videoElement.play(),ae.isPlaying=!ae.isPlaying},seek:function(e){var t=ae.videoElement.currentTime;"left"===e?ae.videoElement.currentTime=Math.max(0,t-ae.seekAmount):"right"===e&&(ae.videoElement.currentTime=Math.min(ae.videoDuration,t+ae.seekAmount))},view:function(e){e.attrs;var r=ae.videoDuration>0?ae.currentTime/ae.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(o7(ae.currentTime)," / ").concat(o7(ae.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},at={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?at.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:at.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",at.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){1===at.player.getPlayerState()?at.player.pauseVideo():at.player.playVideo()},seek:function(e){var t=at.player.getCurrentTime();"left"===e?at.player.seekTo(Math.max(0,t-5),!0):"right"===e&&at.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},ar=document.createElement("audio");if(ar.preload="auto","b2g"in navigator)try{ar.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var an=[];try{/*@__PURE__*/t(tt).getItem("hasPlayedAudio").then(function(e){an=e||[],console.log("Loaded hasPlayedAudio:",an)})}catch(e){console.error("Failed to load hasPlayedAudio:",e)}var ai=(eo=eY(function(e,r){var n;return(0,eZ.__generator)(this,function(i){return -1!==(n=an.findIndex(function(t){return t.url===e}))?an[n].time=r:an.push({url:e,time:r}),/*@__PURE__*/t(tt).setItem("hasPlayedAudio",an).then(function(){console.log(an)}),[2]})}),function(e,t){return eo.apply(this,arguments)}),ao=0,aa=0,as=0,au=0,ac=!1,al=null,af={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&ar.src!==r.url&&(ar.src=r.url,ar.play().catch(function(){}),af.isPlaying=!0,an.map(function(e){e.url===ar.src&&!0==confirm("contiune playing ?")&&(ar.currentTime=e.time)})),ar.onloadedmetadata=function(){af.audioDuration=ar.duration,/*@__PURE__*/t(tn).redraw()},ar.ontimeupdate=function(){af.currentTime=ar.currentTime,ai(ar.src,ar.currentTime),/*@__PURE__*/t(tn).redraw()},af.isPlaying=!ar.paused,document.addEventListener("keydown",af.handleKeydown)},oncreate:function(){var e=function(e){al||(af.seek(e),al=setInterval(function(){af.seek(e),document.querySelector(".audio-info").style.padding="20px"},1e3))},t=function(){al&&(clearInterval(al),al=null,document.querySelector(".audio-info").style.padding="10px")};e9("","",""),e4("","",""),oV.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oM(6e4*oV.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){af.togglePlayPause()}),document.addEventListener("touchstart",function(e){var t=e.touches[0];ao=t.clientX,aa=t.clientY}),document.addEventListener("touchmove",function(t){var r=t.touches[0];as=r.clientX,au=r.clientY;var n=as-ao,i=au-aa;Math.abs(n)>Math.abs(i)?n>30?(e("right"),ac=!0):n<-30&&(e("left"),ac=!0):i>30?console.log("Swiping down (not used in this context)"):i<-30&&console.log("Swiping up (not used in this context)")}),document.addEventListener("touchend",function(){ac&&(ac=!1,t())})},onremove:function(){document.removeEventListener("keydown",af.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?af.togglePlayPause():"ArrowLeft"===e.key?af.seek("left"):"ArrowRight"===e.key&&af.seek("right")},togglePlayPause:function(){af.isPlaying?ar.pause():ar.play().catch(function(){}),af.isPlaying=!af.isPlaying},seek:function(e){var t=ar.currentTime;"left"===e?ar.currentTime=Math.max(0,t-af.seekAmount):"right"===e&&(ar.currentTime=Math.min(af.audioDuration,t+af.seekAmount))},view:function(e){e.attrs;var r=af.audioDuration>0?af.currentTime/af.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o7(af.currentTime)," / ").concat(o7(af.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ad(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o8,"/intro",{"/article":{view:function(){var e=oY.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iz)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oJ(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){ah()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:oV.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.opml_local_filename?(oV.opml_local="",oV.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var r=new FileReader;r.onload=function(){o1(r.result).error?e8("OPML file not valid",4e3):(oV.opml_local=r.result,oV.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3)}))},r.onerror=function(){e8("OPML file not valid",4e3)},r.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},oV.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",oV.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:oV.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(oV.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.mastodon_server_url="",oV.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",oV),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oV.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",oV),oV.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oV.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:oV.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),oV.opml_url=document.getElementById("url-opml").value,oV.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?oV.sleepTimer=parseInt(r,10):oV.sleepTimer="",oq.mastodon_logged||(oV.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oK()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oY.filter(function(e){return""===o4||o4===e.channel});return /*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o9=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o4),e.map(function(r,n){var i=oz.includes(r.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o9&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o9&&setTimeout(function(){t.dom.focus(),ad()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iz)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oJ(r.feed_title)),/*@__PURE__*/t(tn)("h3",oJ(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ad()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eJ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o1(e.result).error?e8("OPML file not valid",4e3):(oV.opml_local=e.result,oV.opml_local_filename=n,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":af,"/VideoPlayerView":ae,"/YouTubePlayerView":at});var ah=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ad()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var n=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);/*@__PURE__*/t(tn).route.get().startsWith("/article")&&(document.querySelector("body").style.opacity=n)},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oY=[],oH()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tn).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o6<1&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var n=/*@__PURE__*/t(tn).route.param();n.index=0,/*@__PURE__*/t(tn).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o6<0&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowUp":i(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"video"==oU.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oH(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oM(6e4*oV.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oV.last_update?(oq.visibility=!0,new Date/1e3-oV.last_update/1e3>oV.cache_time&&(oY=[],e8("load new content",4e3),o5())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oY=[],e8("load new content",4e3),o5(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var ap={};ap=eH("MMwCY").getBundleURL("5Waqz")+"sw.js";try{navigator.serviceWorker.register(ap).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var r=e.data.oauth_success;if(console.log(r),r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",oV),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}})}(); \ No newline at end of file diff --git a/docs/index.63982eba.css b/docs/index.63982eba.css index a26a2fb..fc1d51c 100644 --- a/docs/index.63982eba.css +++ b/docs/index.63982eba.css @@ -1 +1 @@ -:root{--color-one:black;--color-two:yellow;--color-three:silver;--color-four:#beb9b9;--color-five:rgba(214,225,228,.32);--color-seven:rgba(101,216,24,.286);--color-eight:rgba(47,82,196,.19)}@font-face{font-family:Roboto;src:url(Roboto-Regular.4f1a9903.ttf)}*,:before,:after{-moz-box-sizing:border-box;box-sizing:border-box;overflow-wrap:break-word;word-wrap:break-word;scroll-behavior:smooth;hyphens:auto;border:0;margin:0;padding:0;font-family:Roboto!important}::-webkit-scrollbar{display:none!important}:focus{outline:none}::-moz-focus-inner{border:0}.debug{outline:1px solid red}html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.15rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}#app{width:40vw;min-width:40vw;height:100%;position:relative;overflow:scroll}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:90vh;max-height:90vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.2rem}h2{width:100%;font-size:1.1rem}h2.reblog:before{content:"";background-image:url(reblog.a18be2b5.svg);background-size:cover;width:1.1rem;height:1.1rem;margin-right:5px;padding:3px 0 0;display:inline-block}h3{font-size:1rem}li{list-style:none}time{font-size:.8rem}p{margin:0 0 20px}label{font-weight:700}article img{width:100%;height:auto;padding:10px;display:block}img[src=""],img[src=\ ]{display:none}button{color:#000;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;min-width:93%;max-width:90%;min-height:40px;margin:0 0 15px 5px;padding:5px;font-size:1rem;font-weight:700;font-family:Roboto!important}button:focus,button:hover{background:orange;border:0 solid gray}a.button-style{color:#000;text-align:center;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;width:95%;min-height:40px;margin:10px 0 15px;padding:5px;font-size:1rem;font-weight:700;display:block;font-family:Roboto!important}a.button-style:focus{background:orange;border:0 solid gray}a{text-decoration:none}select{font:inherit;text-align:center;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:thin solid #383842;-moz-border-radius:4px;border-radius:4px;width:95%;margin:10px 5% 0;padding:10px;line-height:1.5em}textarea{border:1px solid silver;width:95%;height:30px;padding:3px}input{border:2px solid silver;-moz-border-radius:7px;border-radius:7px;width:95%;height:30px;margin:0 0 0 10px;padding:3px}label{text-align:center;min-width:100%;margin:0 0 10px;display:block}.input-parent{min-width:100%;margin:0 0 20px;padding:10px}.input-parent:focus{background:orange}article:focus{background:silver;padding:5px}div#intro{z-index:100000;background:#000;min-width:100vw;height:100%;position:fixed;top:0;left:0}div#intro img{width:120px;height:auto;margin-left:-60px;position:absolute;top:50px;left:50%}#intro #version-box{height:40px;position:absolute;bottom:50px}#intro #version-box kbd{letter-spacing:.05em;white-space:nowrap;color:#fff;border:2px solid pink;width:fit-content;height:20px;padding:3px 5px;font-size:.6em;font-weight:600;line-height:.85em;display:block;box-shadow:2px 2px pink}article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;min-width:100%}#start{min-width:100%;padding:20px 20px 60px;overflow:scroll}#start article{margin:30px 0 10px;position:relative}#start article.read{opacity:.6}#start article .type-indicator{border:2px solid #000;-moz-border-radius:8px;border-radius:8px;width:auto;padding:3px;font-size:.7rem;line-height:.4rem;position:absolute;right:5px}#start .channel{z-index:200;background:#fff;border:2px solid #000;-moz-border-radius:12px;border-radius:12px;width:fit-content;padding:8px;font-size:1rem;line-height:.7rem;display:block;position:fixed;top:10px;left:50%;transform:translate(-50%)}.channel:empty:before{content:"All feeds"}#article article:focus{background:#fff}#article time{margin:0 0 10px}h2.article-title{min-width:90vw;max-width:90vw;overflow-wrap:break-word!important}#article{padding:20px}#KaiOSAd{width:240px;height:200px}#KaiOSAds-Wrapper{padding:0}#KaiOSAds-Wrapper iframe{width:240px}.text{word-break:break-all;background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;padding:0 0 50px}#optionsView{margin:40px 0 0}#account_info{margin:0 0 20px;padding:20px}.page{margin:35px 0 0;padding:10px 10px 40px}#button-save-settings{margin:30px 0 0}#settings-page .seperation{width:100%;height:5px;margin:80px 0 0}div#toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;background:#000;min-width:100%;height:auto;padding:5px;transition:all .5s ease-in-out;position:fixed;top:0;transform:translateY(-100px)}div#side-toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;opacity:0;background:orange;-moz-border-top-right-radius:15px;border-top-right-radius:15px;-moz-border-bottom-right-radius:15px;border-bottom-right-radius:15px;max-width:100vw;height:auto;padding:8px;transition:all .5s ease-in-out;position:fixed;top:70vh}div#side-toast img{width:60px}div.nickname{font-weight:700}.audio-player{min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .cover-container{z-index:-1;background-position:50%;background-repeat:no-repeat;background-size:cover;min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px;position:absolute;right:0}div#options{z-index:4;height:92vh;padding:10px 0 0;display:none;position:absolute;top:0;overflow:hidden}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:100vw;height:50px;display:flex;position:fixed;bottom:20px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#bottom-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#bottom-bar div.button-center img{cursor:pointer;width:40px}div#bottom-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#bottom-bar div.button-left img,div#bottom-bar div.button-right img{width:40px}div#bottom-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#bottom-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}div#top-bar{z-index:2000;z-index:6;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:30px;display:flex;position:fixed;top:0;left:0}div#top-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#top-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img{width:40px}div#top-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#top-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#top-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}.loading-spinner{z-index:2147483647;width:60px;height:60px;margin-top:-40px;margin-left:-40px;display:none;position:fixed;top:50%;left:50%}.loading-spinner div{-moz-box-sizing:border-box;box-sizing:border-box;border:8px solid transparent;border-top-color:#ee1b1b;-moz-border-radius:50%;border-radius:50%;width:100%;height:100%;margin:8px;animation:1.2s cubic-bezier(.5,0,.5,1) infinite lds-ring;display:block;position:absolute}.loading-spinner div:first-child{animation-delay:-.45s}.loading-spinner div:nth-child(2){animation-delay:-.3s}.loading-spinner div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}video,#video-container,.video-player{max-width:100%}@media screen and (min-width:400px) and (max-width:900px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.1rem;font-weight:400;line-height:1.5rem;position:relative;overflow:hidden;font-family:Roboto!important}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.1rem}h2{width:100%;margin:0 0 10px;font-size:1.1rem}h3{font-size:1.1rem}time{font-size:.9rem}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}}@media screen and (min-width:0) and (max-width:400px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}h2,h3{font-size:.9rem}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}#article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:25px 25px;padding:0}#start article{min-width:100vw;margin:0 0 10px;padding:10px}#start{min-width:100%;padding:30px 0;overflow:hidden}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img,div#bottom-bar div.button-left img,div#bottom-bar div.button-right img,div#bottom-bar div.button-center img{width:25px}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:18px;display:flex;position:fixed;bottom:30px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:5px;display:flex;position:relative}div#intro img{width:80px;height:auto;margin-left:-40px;position:absolute;top:20px;left:50%}#start .channel{padding:6px;font-size:.9rem;line-height:.5rem}#settings-page .seperation{width:100%;height:5px;margin:20px 0 0}#settings-page{width:100vw;margin:10px 0 0}.input-parent{min-width:100vw}.page{margin:10px 0 0;padding:10px 10px 40px}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}} \ No newline at end of file +:root{--color-one:black;--color-two:yellow;--color-three:silver;--color-four:#beb9b9;--color-five:rgba(214,225,228,.32);--color-seven:rgba(101,216,24,.286);--color-eight:rgba(47,82,196,.19)}@font-face{font-family:Roboto;src:url(Roboto-Regular.4f1a9903.ttf)}*,:before,:after{-moz-box-sizing:border-box;box-sizing:border-box;overflow-wrap:break-word;word-wrap:break-word;scroll-behavior:smooth;hyphens:auto;border:0;margin:0;padding:0;font-family:Roboto!important}::-webkit-scrollbar{display:none!important}:focus{outline:none}::-moz-focus-inner{border:0}.debug{outline:1px solid red}html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.15rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}#app{width:40vw;min-width:40vw;height:100%;position:relative;overflow:scroll}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:90vh;max-height:90vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.2rem}h2{width:100%;font-size:1.1rem}h2.reblog:before{content:"";background-image:url(reblog.a18be2b5.svg);background-size:cover;width:1.1rem;height:1.1rem;margin-right:5px;padding:3px 0 0;display:inline-block}h3{font-size:1rem}li{list-style:none}time{font-size:.8rem}p{margin:0 0 20px}label{font-weight:700}article img{width:100%;height:auto;padding:10px;display:block}img[src=""],img[src=\ ]{display:none}button{color:#000;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;min-width:93%;max-width:90%;min-height:40px;margin:0 0 15px 5px;padding:5px;font-size:1rem;font-weight:700;font-family:Roboto!important}button:focus,button:hover{background:orange;border:0 solid gray}a.button-style{color:#000;text-align:center;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;width:95%;min-height:40px;margin:10px 0 15px;padding:5px;font-size:1rem;font-weight:700;display:block;font-family:Roboto!important}a.button-style:focus{background:orange;border:0 solid gray}a{text-decoration:none}select{font:inherit;text-align:center;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:thin solid #383842;-moz-border-radius:4px;border-radius:4px;width:95%;margin:10px 5% 0;padding:10px;line-height:1.5em}textarea{border:1px solid silver;width:95%;height:30px;padding:3px}input{border:2px solid silver;-moz-border-radius:7px;border-radius:7px;width:95%;height:30px;margin:0 0 0 10px;padding:3px}label{text-align:center;min-width:100%;margin:0 0 10px;display:block}.input-parent{min-width:100%;margin:0 0 20px;padding:10px}.input-parent:focus{background:orange}article:focus{background:silver;padding:5px}div#intro{z-index:100000;background:#000;min-width:100vw;height:100%;position:fixed;top:0;left:0}div#intro img{width:120px;height:auto;margin-left:-60px;position:absolute;top:50px;left:50%}#intro #version-box{height:40px;position:absolute;bottom:50px}#intro #version-box kbd{letter-spacing:.05em;white-space:nowrap;color:#fff;border:2px solid pink;width:fit-content;height:20px;padding:3px 5px;font-size:.6em;font-weight:600;line-height:.85em;display:block;box-shadow:2px 2px pink}article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;min-width:100%}#start{min-width:100%;padding:20px 20px 60px;overflow:scroll}#start article{margin:30px 0 10px;position:relative}#start article.read{opacity:.6}#start article .type-indicator{border:2px solid #000;-moz-border-radius:8px;border-radius:8px;width:auto;padding:3px;font-size:.7rem;line-height:.4rem;position:absolute;right:5px}#start .channel{z-index:200;background:#fff;border:2px solid #000;-moz-border-radius:12px;border-radius:12px;width:fit-content;padding:8px;font-size:1rem;line-height:.7rem;display:block;position:fixed;top:10px;left:50%;transform:translate(-50%)}.channel:empty:before{content:"All feeds"}#article article:focus{background:#fff}#article time{margin:0 0 10px}h2.article-title{min-width:90vw;max-width:90vw;overflow-wrap:break-word!important}#article{padding:20px}#KaiOSAd{width:240px;height:200px}#KaiOSAds-Wrapper{padding:0}#KaiOSAds-Wrapper iframe{width:240px}.text{word-break:break-all;background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;padding:0 0 50px}#optionsView{margin:40px 0 0}#account_info{margin:0 0 20px;padding:20px}.page{margin:35px 0 0;padding:10px 10px 40px}#button-save-settings{margin:30px 0 0}#settings-page .seperation{width:100%;height:5px;margin:80px 0 0}div#toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;background:#000;min-width:100%;height:auto;padding:5px;transition:all .5s ease-in-out;position:fixed;top:0;transform:translateY(-100px)}div#side-toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;opacity:0;background:orange;-moz-border-top-right-radius:15px;border-top-right-radius:15px;-moz-border-bottom-right-radius:15px;border-bottom-right-radius:15px;max-width:100vw;height:auto;padding:8px;transition:all .5s ease-in-out;position:fixed;top:70vh}div#side-toast img{width:60px}div.nickname{font-weight:700}.audio-player{min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .cover-container{z-index:-1;background-position:50%;background-repeat:no-repeat;background-size:cover;min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px;transition:padding .3s;position:absolute;right:0}div#options{z-index:4;height:92vh;padding:10px 0 0;display:none;position:absolute;top:0;overflow:hidden}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:100vw;height:50px;display:flex;position:fixed;bottom:20px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#bottom-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#bottom-bar div.button-center img{cursor:pointer;width:40px}div#bottom-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#bottom-bar div.button-left img,div#bottom-bar div.button-right img{width:40px}div#bottom-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#bottom-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}div#top-bar{z-index:2000;z-index:6;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:30px;display:flex;position:fixed;top:0;left:0}div#top-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#top-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img{width:40px}div#top-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#top-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#top-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}.loading-spinner{z-index:2147483647;width:60px;height:60px;margin-top:-40px;margin-left:-40px;display:none;position:fixed;top:50%;left:50%}.loading-spinner div{-moz-box-sizing:border-box;box-sizing:border-box;border:8px solid transparent;border-top-color:#ee1b1b;-moz-border-radius:50%;border-radius:50%;width:100%;height:100%;margin:8px;animation:1.2s cubic-bezier(.5,0,.5,1) infinite lds-ring;display:block;position:absolute}.loading-spinner div:first-child{animation-delay:-.45s}.loading-spinner div:nth-child(2){animation-delay:-.3s}.loading-spinner div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}video,#video-container,.video-player{max-width:100%}@media screen and (min-width:400px) and (max-width:900px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.1rem;font-weight:400;line-height:1.5rem;position:relative;overflow:hidden;font-family:Roboto!important}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.1rem}h2{width:100%;margin:0 0 10px;font-size:1.1rem}h3{font-size:1.1rem}time{font-size:.9rem}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}}@media screen and (min-width:0) and (max-width:400px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}h2,h3{font-size:.9rem}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}#article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:25px 25px;padding:0}#start article{min-width:100vw;margin:0 0 10px;padding:10px}#start{min-width:100%;padding:30px 0;overflow:hidden}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img,div#bottom-bar div.button-left img,div#bottom-bar div.button-right img,div#bottom-bar div.button-center img{width:25px}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:18px;display:flex;position:fixed;bottom:30px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:5px;display:flex;position:relative}div#intro img{width:80px;height:auto;margin-left:-40px;position:absolute;top:20px;left:50%}#start .channel{padding:6px;font-size:.9rem;line-height:.5rem}#settings-page .seperation{width:100%;height:5px;margin:20px 0 0}#settings-page{width:100vw;margin:10px 0 0}.input-parent{min-width:100vw}.page{margin:10px 0 0;padding:10px 10px 40px}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}} \ No newline at end of file diff --git a/docs/index.f0337e49.js b/docs/index.f0337e49.js index b8adab6..aeb49a4 100644 --- a/docs/index.f0337e49.js +++ b/docs/index.f0337e49.js @@ -1,13 +1,13 @@ -function e(e,t,n,i){Object.defineProperty(e,t,{get:n,set:i,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,B,R,M,q,U,j,F,V,$,H,z,W,G,Y,K,J,Z,Q,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eB,eR,eM,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},eH={},ez=eV.parcelRequire5393;null==ez&&((ez=function(e){if(e in e$)return e$[e].exports;if(e in eH){var t=eH[e];delete eH[e];var n={id:e,exports:{}};return e$[e]=n,t.call(n.exports,n,n.exports),n.exports}var i=Error("Cannot find module '"+e+"'");throw i.code="MODULE_NOT_FOUND",i}).register=function(e,t){eH[e]=t},eV.parcelRequire5393=ez);var eW=ez.register;function eG(e,t,n,i,o,a,s){try{var u=e[a](s),c=u.value}catch(e){n(e);return}u.done?t(c):Promise.resolve(c).then(i,o)}function eY(e){return function(){var t=this,n=arguments;return new Promise(function(i,o){var a=e.apply(t,n);function s(e){eG(a,i,o,s,u,"next",e)}function u(e){eG(a,i,o,s,u,"throw",e)}s(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var n=this.s.return;return void 0===n?Promise.resolve({value:e,done:!0}):t(n.apply(this.s,arguments))},throw:function(e){var n=this.s.return;return void 0===n?Promise.reject(e):t(n.apply(this.s,arguments))}},new eK(e)}eW("dH95r",function(e,t){function n(e,t,n,i,o,a){return{tag:e,key:t,attrs:n,children:i,text:o,dom:a,domSize:void 0,state:void 0,events:void 0,instance:void 0}}n.normalize=function(e){return Array.isArray(e)?n("[",void 0,void 0,n.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:n("#",void 0,void 0,String(e),void 0,void 0)},n.normalizeChildren=function(e){var t=[];if(e.length){for(var i=null!=e[0]&&null!=e[0].key,o=1;o'+t.children+"",s=s.firstChild):s.innerHTML=t.children,t.dom=s.firstChild,t.domSize=s.childNodes.length;for(var c=u(e).createDocumentFragment();o=s.firstChild;)c.appendChild(o);E(e,c,i)}function g(e,t,n,i,o,a){if(t!==n&&(null!=t||null!=n)){if(null==t||0===t.length)h(e,n,0,n.length,i,o,a);else if(null==n||0===n.length)k(e,t,0,t.length);else{var s=null!=t[0]&&null!=t[0].key,u=null!=n[0]&&null!=n[0].key,c=0,l=0;if(!s)for(;l=l&&I>=c&&(v=t[S],g=n[I],v.key===g.key);)v!==g&&y(e,v,g,i,o,a),null!=g.dom&&(o=g.dom),S--,I--;for(;S>=l&&I>=c&&(d=t[l],m=n[c],d.key===m.key);)l++,c++,d!==m&&y(e,d,m,i,w(t,l,o),a);for(;S>=l&&I>=c&&c!==I&&d.key===g.key&&v.key===m.key;)x(e,v,E=w(t,l,o)),v!==m&&y(e,v,m,i,E,a),++c<=--I&&x(e,d,o),d!==g&&y(e,d,g,i,o,a),null!=g.dom&&(o=g.dom),l++,v=t[--S],g=n[I],d=t[l],m=n[c];for(;S>=l&&I>=c&&v.key===g.key;)v!==g&&y(e,v,g,i,o,a),null!=g.dom&&(o=g.dom),S--,I--,v=t[S],g=n[I];if(c>I)k(e,t,l,S+1);else if(l>S)h(e,n,c,I+1,i,o,a);else{var f,T,N=o,O=I-c+1,_=Array(O),C=0,P=0,L=0x7fffffff,D=0;for(P=0;P=c;P--){null==f&&(f=function(e,t,n){for(var i=Object.create(null);t>>1)+(i>>>1)+(n&i&1);e[t[u]]0&&(b[o]=t[n-1]),t[n]=o)}for(n=t.length,i=t[n-1];n-- >0;)t[n]=i,i=b[i];return b.length=0,t}(_)).length-1,P=I;P>=c;P--)m=n[P],-1===_[P-c]?p(e,m,i,a,o):T[C]===P-c?C--:x(e,m,o),null!=m.dom&&(o=n[P].dom);else for(P=I;P>=c;P--)m=n[P],-1===_[P-c]&&p(e,m,i,a,o),null!=m.dom&&(o=n[P].dom)}}else{var R=t.lengthR&&k(e,t,c,t.length),n.length>R&&h(e,n,c,n.length,i,o,a)}}}}function y(e,t,i,o,a,s){var u,l,h=t.tag;if(h===i.tag){if(i.state=t.state,i.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var n=f.call(e.attrs.onbeforeupdate,e,t);if(void 0!==n&&!n)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var n=f.call(e.state.onbeforeupdate,e,t);if(void 0!==n&&!n)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(i,t))return;if("string"==typeof h)switch(null!=i.attrs&&q(i.attrs,i,o),h){case"#":t.children.toString()!==i.children.toString()&&(t.dom.nodeValue=i.children),i.dom=t.dom;break;case"<":t.children!==i.children?(I(e,t,void 0),v(e,i,s,a)):(i.dom=t.dom,i.domSize=t.domSize);break;case"[":(function(e,t,n,i,o,a){g(e,t.children,n.children,i,o,a);var s=0,u=n.children;if(n.dom=null,null!=u){for(var c=0;c-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var C=/[A-Z]/g;function P(e){return"-"+e.toLowerCase()}function L(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(C,P)}function D(e,t,n){if(t===n);else if(null==n)e.style="";else if("object"!=typeof n)e.style=n;else if(null==t||"object"!=typeof t)for(var i in e.style.cssText="",n){var o=n[i];null!=o&&e.style.setProperty(L(i),String(o))}else{for(var i in n){var o=n[i];null!=o&&(o=String(o))!==String(t[i])&&e.style.setProperty(L(i),o)}for(var i in t)null!=t[i]&&null==n[i]&&e.style.removeProperty(L(i))}}function B(){this._=e}function R(t,n,i){null!=t.events?(t.events._=e,t.events[n]!==i&&(null!=i&&("function"==typeof i||"object"==typeof i)?(null==t.events[n]&&t.dom.addEventListener(n.slice(2),t.events,!1),t.events[n]=i):(null!=t.events[n]&&t.dom.removeEventListener(n.slice(2),t.events,!1),t.events[n]=void 0))):null!=i&&("function"==typeof i||"object"==typeof i)&&(t.events=new B,t.dom.addEventListener(n.slice(2),t.events,!1),t.events[n]=i)}function M(e,t,n){"function"==typeof e.oninit&&f.call(e.oninit,t),"function"==typeof e.oncreate&&n.push(f.bind(e.oncreate,t))}function q(e,t,n){"function"==typeof e.onupdate&&n.push(f.bind(e.onupdate,t))}return B.prototype=Object.create(null),B.prototype.handleEvent=function(e){var t,n=this["on"+e.type];"function"==typeof n?t=n.call(e.currentTarget,e):"function"==typeof n.handleEvent&&n.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(o,a,s){if(!o)throw TypeError("DOM element being rendered to does not exist.");if(null!=i&&o.contains(i))throw TypeError("Node is currently being rendered to and thus is locked.");var u=e,c=i,l=[],f=d(o),h=o.namespaceURI;i=o,e="function"==typeof s?s:void 0,t={};try{null==o.vnodes&&(o.textContent=""),a=n.normalizeChildren(Array.isArray(a)?a:[a]),g(o,o.vnodes,a,l,null,"http://www.w3.org/1999/xhtml"===h?void 0:h),o.vnodes=a,null!=f&&d(o)!==f&&"function"==typeof f.focus&&f.focus();for(var p=0;p1&&void 0!==c[1]?c[1]:{},o=e.dom,a=e.domSize,s=t.generation,!(null!=o))return[3,5];n.label=1;case 1:if(u=o.nextSibling,i.get(o)!==s)return[3,3];return[4,o];case 2:n.sent(),a--,n.label=3;case 3:o=u,n.label=4;case 4:if(a)return[3,1];n.label=5;case 5:return[2]}})}}}),eW("h7Cmf",function(t,n){function i(e,t){var n,i,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},s=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return s.next=u(0),s.throw=u(1),s.return=u(2),"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function u(u){return function(c){return function(u){if(n)throw TypeError("Generator is already executing.");for(;s&&(s=0,u[0]&&(a=0)),a;)try{if(n=1,i&&(o=2&u[0]?i.return:u[0]?i.throw||((o=i.return)&&o.call(i),0):i.next)&&!(o=o.call(i,u[1])).done)return o;switch(i=0,o&&(u=[2&u[0],o.value]),u[0]){case 0:case 1:o=u;break;case 4:return a.label++,{value:u[1],done:!1};case 5:a.label++,i=u[1],u=[0];continue;case 7:u=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===u[0]||2===u[0])){a=0;continue}if(3===u[0]&&(!o||u[1]>o[0]&&u[1]=e.length&&(e=void 0),{value:e&&e[i++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return i}),e(t.exports,"__values",function(){return o}),ez("bbrsO"),"function"==typeof SuppressedError&&SuppressedError}),eW("bbrsO",function(t,n){e(t.exports,"_",function(){return i});function i(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("hz6ru",function(e,t){var n=ez("dH95r");e.exports=function(e,t,i){var o=[],a=!1,s=-1;function u(){for(s=0;s=0&&(o.splice(a,2),a<=s&&(s-=2),e(t,[])),null!=i&&(o.push(t,i),e(t,n(i),c))},redraw:c}}}),eW("bF6RK",function(e,t){var n=ez("ayCHi"),i=ez("c6nqe");e.exports=function(e,t){function o(e){return new Promise(e)}function a(e,t){for(var n in e.headers)if(i.call(e.headers,n)&&n.toLowerCase()===t)return!0;return!1}return o.prototype=Promise.prototype,o.__proto__=Promise,{request:function(s,u){"string"!=typeof s?(u=s,s=s.url):null==u&&(u={});var c,l,f=(c=s,l=u,new Promise(function(t,o){c=n(c,l.params);var s,u=null!=l.method?l.method.toUpperCase():"GET",f=l.body,d=(null==l.serialize||l.serialize===JSON.serialize)&&!(f instanceof e.FormData||f instanceof e.URLSearchParams),h=l.responseType||("function"==typeof l.extract?"":"json"),p=new e.XMLHttpRequest,m=!1,v=!1,g=p,y=p.abort;for(var b in p.abort=function(){m=!0,y.call(this)},p.open(u,c,!1!==l.async,"string"==typeof l.user?l.user:void 0,"string"==typeof l.password?l.password:void 0),d&&null!=f&&!a(l,"content-type")&&p.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof l.deserialize||a(l,"accept")||p.setRequestHeader("Accept","application/json, text/*"),l.withCredentials&&(p.withCredentials=l.withCredentials),l.timeout&&(p.timeout=l.timeout),p.responseType=h,l.headers)i.call(l.headers,b)&&p.setRequestHeader(b,l.headers[b]);p.onreadystatechange=function(e){if(!m&&4===e.target.readyState)try{var n,i=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(c),a=e.target.response;if("json"===h){if(!e.target.responseType&&"function"!=typeof l.extract)try{a=JSON.parse(e.target.responseText)}catch(e){a=null}}else h&&"text"!==h||null!=a||(a=e.target.responseText);if("function"==typeof l.extract?(a=l.extract(e.target,l),i=!0):"function"==typeof l.deserialize&&(a=l.deserialize(a)),i){if("function"==typeof l.type){if(Array.isArray(a))for(var s=0;s=0&&(p+=e.slice(o,s)),f>=0&&(p+=(o<0?"?":"&")+l.slice(f,h));var m=n(c);return m&&(p+=(o<0&&f<0?"?":"&")+m),a>=0&&(p+=e.slice(a)),d>=0&&(p+=(a<0?"":"&")+l.slice(d)),p}}),eW("2KJLy",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var n in e)(function e(n,i){if(Array.isArray(i))for(var o=0;o0&&(o.className=i.join(" ")),s[e]={tag:n,attrs:o}}(e),t):(t.tag=e,t)}}),eW("lJWab",function(e,t){var n=ez("5VK6y");e.exports=function(e){var t=e.indexOf("?"),i=e.indexOf("#"),o=i<0?e.length:i,a=e.slice(0,t<0?o:t).replace(/\/{2,}/g,"/");return a?"/"!==a[0]&&(a="/"+a):a="/",{path:a,params:t<0?{}:n(e.slice(t+1,o))}}}),eW("5VK6y",function(e,t){function n(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),i={},o={},a=0;a-1&&l.pop();for(var d=0;dt.indexOf(a)&&(o[a]=e[a]);else for(var a in e)n.call(e,a)&&!i.test(a)&&(o[a]=e[a]);return o}}),eW("c6lT5",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("fdYAD",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("7DjOf",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var n,i=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function o(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=i.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(n=String.fromCodePoint)&&void 0!==n?n:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=o,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(o(t))}});var eJ=(ez("h7Cmf"),ez("h7Cmf")),eZ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eQ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eZ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var n=navigator.getDeviceStorage("sdcard").enumerate();n.onsuccess=function(){if(this.result||console.log("finished"),null!==n.result.name){var i=n.result,o=i.name.split(".");o[o.length-1]==e&&t(i.name),this.continue()}},n.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var i=navigator.b2g.getDeviceStorage("sdcard").enumerate();function o(){return(o=eY(function(){var n,o,a,s,u,c,l,f;return(0,eJ.__generator)(this,function(d){switch(d.label){case 0:n=!1,o=!1,d.label=1;case 1:d.trys.push([1,6,7,12]),s=function(e){var t,n,i,o=2;for("undefined"!=typeof Symbol&&(n=Symbol.asyncIterator,i=Symbol.iterator);o--;){if(n&&null!=(t=e[n]))return t.call(e);if(i&&null!=(t=e[i]))return new eK(t.call(e));n="@@asyncIterator",i="@@iterator"}throw TypeError("Object is not async iterable")}(i),d.label=2;case 2:return[4,s.next()];case 3:if(!(n=!(u=d.sent()).done))return[3,5];(l=(c=u.value).name.split("."))[l.length-1]==e&&t(c.name),d.label=4;case 4:return n=!1,[3,2];case 5:return[3,12];case 6:return f=d.sent(),o=!0,a=f,[3,12];case 7:if(d.trys.push([7,,10,11]),!(n&&null!=s.return))return[3,9];return[4,s.return()];case 8:d.sent(),d.label=9;case 9:return[3,11];case 10:if(o)throw a;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){o.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,n={};navigator.volumeManager=null,n.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},n.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",n,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(n){var i=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),i.onerror=function(e){console.log(e)},i.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(i.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},i.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var n=document.querySelector("div#side-toast");n.style.opacity="100",n.innerHTML=e5[0].text,n.style.transform="translate(0vh, 0vw)",setTimeout(function(){n.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,n){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=n,""==e&&""==t&&""==n?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,n){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=n,""==e&&""==t&&""==n?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var n=document.createElement("input");n.type="file",n.accept=".opml,application/xml",n.style.display="none",document.body.appendChild(n),n.click(),n.addEventListener("change",function(t){var n=t.target.files[0];n&&e({blob:n,filename:n.name,filetype:n.type})})}},eJ=ez("h7Cmf"),te=(q=eY(function(e,t){var n;return(0,eJ.__generator)(this,function(i){switch(i.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(n=i.sent()).ok||console.log("Network response was not OK"),[4,n.json()];case 2:return[2,i.sent()]}})}),function(e,t){return q.apply(this,arguments)}),tt={},tr=ez("bbrsO");tt=(function e(t,n,i){function o(s,u){if(!n[s]){if(!t[s]){var c=void 0;if(!u&&c)return c(s,!0);if(a)return a(s,!0);var l=Error("Cannot find module '"+s+"'");throw l.code="MODULE_NOT_FOUND",l}var f=n[s]={exports:{}};t[s][0].call(f.exports,function(e){return o(t[s][1][e]||e)},f,f.exports,e,t,n,i)}return n[s].exports}for(var a=void 0,s=0;se.db.version;if(i&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),o||n){if(n){var a=e.db.version+1;a>e.version&&(e.version=a)}return!0}return!1}function S(e){return a([function(e){for(var t=e.length,n=new ArrayBuffer(t),i=new Uint8Array(n),o=0;o0&&(!e.db||"InvalidStateError"===o.name||"NotFoundError"===o.name))return s.resolve().then(function(){if(!e.db||"NotFoundError"===o.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),x(e,!0)}).then(function(){return(function(e){y(e);for(var t=p[e.name],n=t.forages,i=0;i=43)}}).catch(function(){return!1}).then(function(e){return h=e})).then(function(e){return e?t:new s(function(e,n){var i=new FileReader;i.onerror=n,i.onloadend=function(n){e({__local_forage_encoded_blob:!0,data:btoa(n.target.result||""),type:t.type})},i.readAsBinaryString(t)})}):t}).then(function(t){I(i._dbInfo,g,function(a,s){if(a)return o(a);try{var u=s.objectStore(i._dbInfo.storeName);null===t&&(t=void 0);var c=u.put(t,e);s.oncomplete=function(){void 0===t&&(t=null),n(t)},s.onabort=s.onerror=function(){var e=c.error?c.error:c.transaction.error;o(e)}}catch(e){o(e)}})}).catch(o)});return u(o,n),o},removeItem:function(e,t){var n=this;e=l(e);var i=new s(function(t,i){n.ready().then(function(){I(n._dbInfo,g,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName).delete(e);a.oncomplete=function(){t()},a.onerror=function(){i(s.error)},a.onabort=function(){var e=s.error?s.error:s.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return u(i,t),i},clear:function(e){var t=this,n=new s(function(e,n){t.ready().then(function(){I(t._dbInfo,g,function(i,o){if(i)return n(i);try{var a=o.objectStore(t._dbInfo.storeName).clear();o.oncomplete=function(){e()},o.onabort=o.onerror=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return u(n,e),n},length:function(e){var t=this,n=new s(function(e,n){t.ready().then(function(){I(t._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(t._dbInfo.storeName).count();a.onsuccess=function(){e(a.result)},a.onerror=function(){n(a.error)}}catch(e){n(e)}})}).catch(n)});return u(n,e),n},key:function(e,t){var n=this,i=new s(function(t,i){if(e<0){t(null);return}n.ready().then(function(){I(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName),u=!1,c=s.openKeyCursor();c.onsuccess=function(){var n=c.result;if(!n){t(null);return}0===e?t(n.key):u?t(n.key):(u=!0,n.advance(e))},c.onerror=function(){i(c.error)}}catch(e){i(e)}})}).catch(i)});return u(i,t),i},keys:function(e){var t=this,n=new s(function(e,n){t.ready().then(function(){I(t._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(t._dbInfo.storeName).openKeyCursor(),s=[];a.onsuccess=function(){var t=a.result;if(!t){e(s);return}s.push(t.key),t.continue()},a.onerror=function(){n(a.error)}}catch(e){n(e)}})}).catch(n)});return u(n,e),n},dropInstance:function(e,t){t=f.apply(this,arguments);var n,i=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||i.name,e.storeName=e.storeName||i.storeName),e.name){var a=e.name===i.name&&this._dbInfo.db?s.resolve(this._dbInfo.db):x(e,!1).then(function(t){var n=p[e.name],i=n.forages;n.db=t;for(var o=0;o>4,f[c++]=(15&i)<<4|o>>2,f[c++]=(3&o)<<6|63&a;return l}function G(e){var t,n=new Uint8Array(e),i="";for(t=0;t>2],i+=O[(3&n[t])<<4|n[t+1]>>4],i+=O[(15&n[t+1])<<2|n[t+2]>>6],i+=O[63&n[t+2]];return n.length%3==2?i=i.substring(0,i.length-1)+"=":n.length%3==1&&(i=i.substring(0,i.length-2)+"=="),i}var Y={serialize:function(e,t){var n="";if(e&&(n=z.call(e)),e&&("[object ArrayBuffer]"===n||e.buffer&&"[object ArrayBuffer]"===z.call(e.buffer))){var i,o=C;e instanceof ArrayBuffer?(i=e,o+=L):(i=e.buffer,"[object Int8Array]"===n?o+=B:"[object Uint8Array]"===n?o+=R:"[object Uint8ClampedArray]"===n?o+=M:"[object Int16Array]"===n?o+=q:"[object Uint16Array]"===n?o+=j:"[object Int32Array]"===n?o+=U:"[object Uint32Array]"===n?o+=F:"[object Float32Array]"===n?o+=V:"[object Float64Array]"===n?o+=$:t(Error("Failed to get type for BinaryArray"))),t(o+G(i))}else if("[object Blob]"===n){var a=new FileReader;a.onload=function(){t(C+D+("~~local_forage_type~"+e.type)+"~"+G(this.result))},a.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(n){console.error("Couldn't convert value into a JSON string: ",e),t(null,n)}},deserialize:function(e){if(e.substring(0,P)!==C)return JSON.parse(e);var t,n=e.substring(H),i=e.substring(P,H);if(i===D&&_.test(n)){var o=n.match(_);t=o[1],n=n.substring(o[0].length)}var s=W(n);switch(i){case L:return s;case D:return a([s],{type:t});case B:return new Int8Array(s);case R:return new Uint8Array(s);case M:return new Uint8ClampedArray(s);case q:return new Int16Array(s);case j:return new Uint16Array(s);case U:return new Int32Array(s);case F:return new Uint32Array(s);case V:return new Float32Array(s);case $:return new Float64Array(s);default:throw Error("Unkown type: "+i)}},stringToBuffer:W,bufferToString:G};function K(e,t,n,i){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],n,i)}function J(e,t,n,i,o,a){e.executeSql(n,i,o,function(e,s){s.code===s.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,u){u.rows.length?a(e,s):K(e,t,function(){e.executeSql(n,i,o,a)},a)},a):a(e,s)},a)}function Z(e,t,n,i){var o=this;e=l(e);var a=new s(function(a,s){o.ready().then(function(){void 0===t&&(t=null);var u=t,c=o._dbInfo;c.serializer.serialize(t,function(t,l){l?s(l):c.db.transaction(function(n){J(n,c,"INSERT OR REPLACE INTO "+c.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){a(u)},function(e,t){s(t)})},function(t){if(t.code===t.QUOTA_ERR){if(i>0){a(Z.apply(o,[e,u,n,i-1]));return}s(t)}})})}).catch(s)});return u(a,n),a}var Q={_driver:"webSQLStorage",_initStorage:function(e){var t=this,n={db:null};if(e)for(var i in e)n[i]="string"!=typeof e[i]?e[i].toString():e[i];var o=new s(function(e,i){try{n.db=openDatabase(n.name,String(n.version),n.description,n.size)}catch(e){return i(e)}n.db.transaction(function(o){K(o,n,function(){t._dbInfo=n,e()},function(e,t){i(t)})},i)});return n.serializer=Y,o},_support:"function"==typeof openDatabase,iterate:function(e,t){var n=this,i=new s(function(t,i){n.ready().then(function(){var o=n._dbInfo;o.db.transaction(function(n){J(n,o,"SELECT * FROM "+o.storeName,[],function(n,i){for(var a=i.rows,s=a.length,u=0;u '__WebKitDatabaseInfoTable__'",[],function(t,i){for(var o=[],a=0;a0)?(this._dbInfo=t,t.serializer=Y,s.resolve()):s.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var n=this,i=n.ready().then(function(){for(var t=n._dbInfo,i=t.keyPrefix,o=i.length,a=localStorage.length,s=1,u=0;u=0;n--){var i=localStorage.key(n);0===i.indexOf(e)&&localStorage.removeItem(i)}});return u(n,e),n},length:function(e){var t=this.keys().then(function(e){return e.length});return u(t,e),t},key:function(e,t){var n=this,i=n.ready().then(function(){var t,i=n._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(i.keyPrefix.length)),t});return u(i,t),i},keys:function(e){var t=this,n=t.ready().then(function(){for(var e=t._dbInfo,n=localStorage.length,i=[],o=0;o=0;t--){var n=localStorage.key(t);0===n.indexOf(e)&&localStorage.removeItem(n)}}):s.reject("Invalid arguments"),t),n}},et=function(e,t){for(var n,i=e.length,o=0;o=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").fromCodePoint}}),(U=ea||(ea={}))[U.NUM=35]="NUM",U[U.SEMI=59]="SEMI",U[U.EQUALS=61]="EQUALS",U[U.ZERO=48]="ZERO",U[U.NINE=57]="NINE",U[U.LOWER_A=97]="LOWER_A",U[U.LOWER_F=102]="LOWER_F",U[U.LOWER_X=120]="LOWER_X",U[U.LOWER_Z=122]="LOWER_Z",U[U.UPPER_A=65]="UPPER_A",U[U.UPPER_F=70]="UPPER_F",U[U.UPPER_Z=90]="UPPER_Z",(j=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[j.VALUE_LENGTH=49152]="VALUE_LENGTH",j[j.BRANCH_LENGTH=16256]="BRANCH_LENGTH",j[j.JUMP_TABLE=127]="JUMP_TABLE",(F=eu||(eu={}))[F.EntityStart=0]="EntityStart",F[F.NumericStart=1]="NumericStart",F[F.NumericDecimal=2]="NumericDecimal",F[F.NumericHex=3]="NumericHex",F[F.NamedEntity=4]="NamedEntity",(V=ec=tp.DecodingMode||(tp.DecodingMode={}))[V.Legacy=0]="Legacy",V[V.Strict=1]="Strict",V[V.Attribute=2]="Attribute";var tS=function(){function e(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,n,i){if(t!==n){var o=n-t;this.result=this.result*Math.pow(i,o)+parseInt(e.substr(t,o),i),this.consumed+=o}},e.prototype.stateNumericHex=function(e,t){for(var n=t;t=ea.UPPER_A)||!(i<=ea.UPPER_F))&&(!(i>=ea.LOWER_A)||!(i<=ea.LOWER_F)))return this.addToNumericResult(e,n,t,16),this.emitNumericEntity(o,3);t+=1}return this.addToNumericResult(e,n,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var n=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(a))?0:this.emitNotTerminatedNamedEntity();if(0!=(o=((i=n[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(a===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,o,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,n=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,n){var i=this.decodeTree;return this.emitCodePoint(1===t?i[e]&~es.VALUE_LENGTH:i[e+1],n),3===t&&this.emitCodePoint(i[e+2],n),n},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",n=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,i){for(var o=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(o,a),n.startEntity(i);var s=n.write(e,a+1);if(s<0){o=a+n.end();break}o=a+s,a=0===s?o+1:o}var u=t+e.slice(o);return t="",u}}function tA(e,t,n,i){var o=(t&es.BRANCH_LENGTH)>>7,a=t&es.JUMP_TABLE;if(0===o)return 0!==a&&i===a?n:-1;if(a){var s=i-a;return s<0||s>=o?-1:e[n+s]-1}for(var u=n,c=u+o-1;u<=c;){var l=u+c>>>1,f=e[l];if(fi))return e[l+o];c=l-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},($=el||(el={}))[$.Tab=9]="Tab",$[$.NewLine=10]="NewLine",$[$.FormFeed=12]="FormFeed",$[$.CarriageReturn=13]="CarriageReturn",$[$.Space=32]="Space",$[$.ExclamationMark=33]="ExclamationMark",$[$.Number=35]="Number",$[$.Amp=38]="Amp",$[$.SingleQuote=39]="SingleQuote",$[$.DoubleQuote=34]="DoubleQuote",$[$.Dash=45]="Dash",$[$.Slash=47]="Slash",$[$.Zero=48]="Zero",$[$.Nine=57]="Nine",$[$.Semi=59]="Semi",$[$.Lt=60]="Lt",$[$.Eq=61]="Eq",$[$.Gt=62]="Gt",$[$.Questionmark=63]="Questionmark",$[$.UpperA=65]="UpperA",$[$.LowerA=97]="LowerA",$[$.UpperF=70]="UpperF",$[$.LowerF=102]="LowerF",$[$.UpperZ=90]="UpperZ",$[$.LowerZ=122]="LowerZ",$[$.LowerX=120]="LowerX",$[$.OpeningSquareBracket=91]="OpeningSquareBracket",(H=ef||(ef={}))[H.Text=1]="Text",H[H.BeforeTagName=2]="BeforeTagName",H[H.InTagName=3]="InTagName",H[H.InSelfClosingTag=4]="InSelfClosingTag",H[H.BeforeClosingTagName=5]="BeforeClosingTagName",H[H.InClosingTagName=6]="InClosingTagName",H[H.AfterClosingTagName=7]="AfterClosingTagName",H[H.BeforeAttributeName=8]="BeforeAttributeName",H[H.InAttributeName=9]="InAttributeName",H[H.AfterAttributeName=10]="AfterAttributeName",H[H.BeforeAttributeValue=11]="BeforeAttributeValue",H[H.InAttributeValueDq=12]="InAttributeValueDq",H[H.InAttributeValueSq=13]="InAttributeValueSq",H[H.InAttributeValueNq=14]="InAttributeValueNq",H[H.BeforeDeclaration=15]="BeforeDeclaration",H[H.InDeclaration=16]="InDeclaration",H[H.InProcessingInstruction=17]="InProcessingInstruction",H[H.BeforeComment=18]="BeforeComment",H[H.CDATASequence=19]="CDATASequence",H[H.InSpecialComment=20]="InSpecialComment",H[H.InCommentLike=21]="InCommentLike",H[H.BeforeSpecialS=22]="BeforeSpecialS",H[H.SpecialStartSequence=23]="SpecialStartSequence",H[H.InSpecialTag=24]="InSpecialTag",H[H.BeforeEntity=25]="BeforeEntity",H[H.BeforeNumericEntity=26]="BeforeNumericEntity",H[H.InNamedEntity=27]="InNamedEntity",H[H.InNumericEntity=28]="InNumericEntity",H[H.InHexEntity=29]="InHexEntity",(z=ed||(ed={}))[z.NoValue=0]="NoValue",z[z.Unquoted=1]="Unquoted",z[z.Single=2]="Single",z[z.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,n){var i=t.xmlMode,o=void 0!==i&&i,a=t.decodeEntities;tf(this,e),this.cbs=n,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=o,this.decodeEntities=void 0===a||a,this.entityTrie=o?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var n=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var i=this.index-this.entityExcess+1;i>this.sectionStart&&this.emitPartial(this.sectionStart,i),this.entityResult=this.trieIndex,this.trieIndex+=n,this.entityExcess=0,this.sectionStart=this.index+1,0===n&&this.emitNamedEntity()}else this.trieIndex+=n}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=u,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(n=u.lowerCaseTags)&&void 0!==n?n:!u.xmlMode,this.lowerCaseAttributeNames=null!==(i=u.lowerCaseAttributeNames)&&void 0!==i?i:!u.xmlMode,this.tokenizer=new(null!==(o=u.Tokenizer)&&void 0!==o?o:tP)(this.options,this),null===(s=(a=this.cbs).onparserinit)||void 0===s||s.call(a,this)}return th(e,[{key:"ontext",value:function(e,t){var n,i,o=this.getSlice(e,t);this.endIndex=t-1,null===(i=(n=this.cbs).ontext)||void 0===i||i.call(n,o),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,n,i=this.tokenizer.getSectionStart();this.endIndex=i-1,null===(n=(t=this.cbs).ontext)||void 0===n||n.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=i}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var n=this.getSlice(e,t);this.lowerCaseTagNames&&(n=n.toLowerCase()),this.emitOpenTag(n)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,n,i,o,a=!this.options.xmlMode&&tq.get(e);if(a)for(;this.stack.length>0&&a.has(this.stack[this.stack.length-1]);){var s=this.stack.pop();null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,s,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(o=(i=this.cbs).onopentagname)||void 0===o||o.call(i,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,n;this.startIndex=this.openTagStart,this.attribs&&(null===(n=(t=this.cbs).onopentag)||void 0===n||n.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var n,i,o,a,s,u,c=this.getSlice(e,t);if(this.lowerCaseTagNames&&(c=c.toLowerCase()),(tj.has(c)||tF.has(c))&&this.foreignContext.pop(),this.isVoidElement(c))this.options.xmlMode||"br"!==c||(null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,"br"),null===(a=(o=this.cbs).onopentag)||void 0===a||a.call(o,"br",{},!0),null===(u=(s=this.cbs).onclosetag)||void 0===u||u.call(s,"br",!1));else{var l=this.stack.lastIndexOf(c);if(-1!==l){if(this.cbs.onclosetag)for(var f=this.stack.length-l;f--;)this.cbs.onclosetag(this.stack.pop(),0!==f);else this.stack.length=l}else this.options.xmlMode||"p"!==c||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,n,i=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===i&&(null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,i,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var n=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?n.toLowerCase():n}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var n,i;this.endIndex=t,null===(i=(n=this.cbs).onattribute)||void 0===i||i.call(n,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),n=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(n=n.toLowerCase()),n}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var i=this.getInstructionName(n);this.cbs.onprocessinginstruction("!".concat(i),"!".concat(n))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var i=this.getInstructionName(n);this.cbs.onprocessinginstruction("?".concat(i),"?".concat(n))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,n){var i,o,a,s;this.endIndex=t,null===(o=(i=this.cbs).oncomment)||void 0===o||o.call(i,this.getSlice(e,t-n)),null===(s=(a=this.cbs).oncommentend)||void 0===s||s.call(a),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,n){this.endIndex=t;var i,o,a,s,u,c,l,f,d,h,p=this.getSlice(e,t-n);this.options.xmlMode||this.options.recognizeCDATA?(null===(o=(i=this.cbs).oncdatastart)||void 0===o||o.call(i),null===(s=(a=this.cbs).ontext)||void 0===s||s.call(a,p),null===(c=(u=this.cbs).oncdataend)||void 0===c||c.call(u)):(null===(f=(l=this.cbs).oncomment)||void 0===f||f.call(l,"[CDATA[".concat(p,"]]")),null===(h=(d=this.cbs).oncommentend)||void 0===h||h.call(d)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var n=this.stack.length;n>0;this.cbs.onclosetag(this.stack[--n],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,n,i;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(i=(n=this.cbs).onparserinit)||void 0===i||i.call(n,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var n=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),n+=this.buffers[0].slice(0,t-this.bufferOffset);return n}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,n;if(this.ended){null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,n;if(this.ended){null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this)).data=e,i}return th(n,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),n}(tZ(t0)),t3=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(n,[{key:"nodeType",get:function(){return 3}}]),n}(t1),t2=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(n,[{key:"nodeType",get:function(){return 8}}]),n}(t1),t5=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e,i){var o;return tf(this,n),(o=t.call(this,i)).name=e,o.type=eh.Directive,o}return th(n,[{key:"nodeType",get:function(){return 1}}]),n}(t1),t8=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this)).children=e,i}return th(n,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),n}(tZ(t0)),t6=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(n,[{key:"nodeType",get:function(){return 4}}]),n}(t8),t4=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(){var e;return tf(this,n),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(n,[{key:"nodeType",get:function(){return 9}}]),n}(t8),t9=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e,i){var o,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,n),(o=t.call(this,a)).name=e,o.attribs=i,o.type=s,o}return th(n,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var n,i;return{name:t,value:e.attribs[t],namespace:null===(n=e["x-attribsNamespace"])||void 0===n?void 0:n[t],prefix:null===(i=e["x-attribsPrefix"])||void 0===i?void 0:i[t]}})}}]),n}(t8);function t7(e){var t,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var i=n?re(e.children):[],o=new t9(e.name,tG({},e.attribs),i);i.forEach(function(e){return e.parent=o}),null!=e.namespace&&(o.namespace=e.namespace),e["x-attribsNamespace"]&&(o["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(o["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=o}else if(e.type===eh.CDATA){var a=n?re(e.children):[],s=new t6(a);a.forEach(function(e){return e.parent=s}),t=s}else if(e.type===eh.Root){var u=n?re(e.children):[],c=new t4(u);u.forEach(function(e){return e.parent=c}),e["x-mode"]&&(c["x-mode"]=e["x-mode"]),t=c}else if(e.type===eh.Directive){var l=new t5(e.name,e.data);null!=e["x-name"]&&(l["x-name"]=e["x-name"],l["x-publicId"]=e["x-publicId"],l["x-systemId"]=e["x-systemId"]),t=l}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),n=1;n䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(G=em||(em={}))[G.NUM=35]="NUM",G[G.SEMI=59]="SEMI",G[G.EQUALS=61]="EQUALS",G[G.ZERO=48]="ZERO",G[G.NINE=57]="NINE",G[G.LOWER_A=97]="LOWER_A",G[G.LOWER_F=102]="LOWER_F",G[G.LOWER_X=120]="LOWER_X",G[G.LOWER_Z=122]="LOWER_Z",G[G.UPPER_A=65]="UPPER_A",G[G.UPPER_F=70]="UPPER_F",G[G.UPPER_Z=90]="UPPER_Z",(Y=ev||(ev={}))[Y.VALUE_LENGTH=49152]="VALUE_LENGTH",Y[Y.BRANCH_LENGTH=16256]="BRANCH_LENGTH",Y[Y.JUMP_TABLE=127]="JUMP_TABLE",(K=eg||(eg={}))[K.EntityStart=0]="EntityStart",K[K.NumericStart=1]="NumericStart",K[K.NumericDecimal=2]="NumericDecimal",K[K.NumericHex=3]="NumericHex",K[K.NamedEntity=4]="NamedEntity",(J=ey||(ey={}))[J.Legacy=0]="Legacy",J[J.Strict=1]="Strict",J[J.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,n,i){tf(this,e),this.decodeTree=t,this.emitCodePoint=n,this.errors=i,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,n,i){if(t!==n){var o=n-t;this.result=this.result*Math.pow(i,o)+parseInt(e.substr(t,o),i),this.consumed+=o}}},{key:"stateNumericHex",value:function(e,t){for(var n=t;t=em.UPPER_A)||!(i<=em.UPPER_F))&&(!(i>=em.LOWER_A)||!(i<=em.LOWER_F)))return this.addToNumericResult(e,n,t,16),this.emitNumericEntity(o,3);t+=1}return this.addToNumericResult(e,n,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var n=t;t=55296&&i<=57343||i>1114111?65533:null!==(o=ri.get(i))&&void 0!==o?o:i,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var n=this.decodeTree,i=n[this.treeIndex],o=(i&ev.VALUE_LENGTH)>>14;t>7,a=t&ev.JUMP_TABLE;if(0===o)return 0!==a&&i===a?n:-1;if(a){var s=i-a;return s<0||s>=o?-1:e[n+s]-1}for(var u=n,c=u+o-1;u<=c;){var l=u+c>>>1,f=e[l];if(fi))return e[l+o];c=l-1}}return -1}(n,i,this.treeIndex+Math.max(1,o),a),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===o||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(a))?0:this.emitNotTerminatedNamedEntity();if(0!=(o=((i=n[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(a===em.SEMI)return this.emitNamedEntityData(this.treeIndex,o,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,n=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,n){var i=this.decodeTree;return this.emitCodePoint(1===t?i[e]&~ev.VALUE_LENGTH:i[e+1],n),3===t&&this.emitCodePoint(i[e+2],n),n}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",n=new rs(e,function(e){return t+=ro(e)});return function(e,i){for(var o=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(o,a),n.startEntity(i);var s=n.write(e,a+1);if(s<0){o=a+n.end();break}o=a+s,a=0===s?o+1:o}var u=t+e.slice(o);return t="",u}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(n){for(var i,o=0,a="";i=e.exec(n);)o!==i.index&&(a+=n.substring(o,i.index)),a+=t.get(i[0].charCodeAt(0)),o=i.index+1;return a+n.substring(o)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Z=eb||(eb={}))[Z.XML=0]="XML",Z[Z.HTML=1]="HTML",(Q=ew||(ew={}))[Q.UTF8=0]="UTF8",Q[Q.ASCII=1]="ASCII",Q[Q.Extensive=2]="Extensive",Q[Q.Attribute=3]="Attribute",Q[Q.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(X=ex||(ex={}))[X.DISCONNECTED=1]="DISCONNECTED",X[X.PRECEDING=2]="PRECEDING",X[X.FOLLOWING=4]="FOLLOWING",X[X.CONTAINS=8]="CONTAINS",X[X.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! +function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,B,R,M,q,U,j,F,V,$,H,z,W,G,Y,K,J,Z,Q,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eB,eR,eM,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},eH={},ez=eV.parcelRequire5393;null==ez&&((ez=function(e){if(e in e$)return e$[e].exports;if(e in eH){var t=eH[e];delete eH[e];var r={id:e,exports:{}};return e$[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){eH[e]=t},eV.parcelRequire5393=ez);var eW=ez.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eY(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eK(e)}eW("dH95r",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,T=i,N=A-u+1,O=Array(N),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var B=t.lengthB&&S(e,t,u,t.length),r.length>B&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&M(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function B(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function M(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eW("h7Cmf",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),ez("bbrsO"),"function"==typeof SuppressedError&&SuppressedError}),eW("bbrsO",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("hz6ru",function(e,t){var r=ez("dH95r");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eW("bF6RK",function(e,t){var r=ez("ayCHi"),n=ez("c6nqe");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eW("2KJLy",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eW("lJWab",function(e,t){var r=ez("5VK6y");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eW("5VK6y",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eW("c6lT5",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("fdYAD",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("7DjOf",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eJ=(ez("h7Cmf"),ez("h7Cmf")),eZ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eQ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eZ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eY(function(){var r,i,o,a,s,u,c,l;return(0,eJ.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eK(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e5[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eJ=ez("h7Cmf"),te=(M=eY(function(e,t){var r;return(0,eJ.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return M.apply(this,arguments)}),tt={},tr=ez("bbrsO");tt=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=N[(3&r[t])<<4|r[t+1]>>4],n+=N[(15&r[t+1])<<2|r[t+2]>>6],n+=N[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=H.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===H.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=B:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=M:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=z(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case B:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case M:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:z,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function J(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(J.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Z={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").fromCodePoint}}),(q=ea||(ea={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=eu||(eu={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=ec=tp.DecodingMode||(tp.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tS=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=ea.UPPER_A)||!(n<=ea.UPPER_F))&&(!(n>=ea.LOWER_A)||!(n<=ea.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(o===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~es.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",r=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tA(e,t,r,n){var i=(t&es.BRANCH_LENGTH)>>7,o=t&es.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},(V=el||(el={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=ef||(ef={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(H=ed||(ed={}))[H.NoValue=0]="NoValue",H[H.Unquoted=1]="Unquoted",H[H.Single=2]="Single",H[H.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tf(this,e),this.cbs=r,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tP)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return th(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tq.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tj.has(u)||tF.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).data=e,n}return th(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tZ(t0)),t3=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(r,[{key:"nodeType",get:function(){return 3}}]),r}(t1),t2=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(r,[{key:"nodeType",get:function(){return 8}}]),r}(t1),t5=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e,n){var i;return tf(this,r),(i=t.call(this,n)).name=e,i.type=eh.Directive,i}return th(r,[{key:"nodeType",get:function(){return 1}}]),r}(t1),t8=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).children=e,n}return th(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tZ(t0)),t6=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(r,[{key:"nodeType",get:function(){return 4}}]),r}(t8),t4=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(r,[{key:"nodeType",get:function(){return 9}}]),r}(t8),t9=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return th(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t8);function t7(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var n=r?re(e.children):[],i=new t9(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===eh.CDATA){var o=r?re(e.children):[],a=new t6(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===eh.Root){var s=r?re(e.children):[],u=new t4(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===eh.Directive){var c=new t5(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(W=em||(em={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=ev||(ev={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=eg||(eg={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=ey||(ey={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=em.UPPER_A)||!(n<=em.UPPER_F))&&(!(n>=em.LOWER_A)||!(n<=em.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=ri.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&ev.VALUE_LENGTH)>>14;t>7,o=t&ev.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===i||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(o===em.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ev.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",r=new rs(e,function(e){return t+=ro(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(J=eb||(eb={}))[J.XML=0]="XML",J[J.HTML=1]="HTML",(Z=ew||(ew={}))[Z.UTF8=0]="UTF8",Z[Z.ASCII=1]="ASCII",Z[Z.Extensive=2]="Extensive",Z[Z.Attribute=3]="Attribute",Z[Z.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(Q=ex||(ex={}))[Q.DISCONNECTED=1]="DISCONNECTED",Q[Q.PRECEDING=2]="PRECEDING",Q[Q.FOLLOWING=4]="FOLLOWING",Q[Q.CONTAINS=8]="CONTAINS",Q[Q.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! * is-plain-object * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. - */function rd(e){return"[object Object]"===Object.prototype.toString.call(e)}rf=function(e){if("string"!=typeof e)throw TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")};var rh=function(e){var t,n;return!1!==rd(e)&&(void 0===(t=e.constructor)||!1!==rd(n=t.prototype)&&!1!==n.hasOwnProperty("isPrototypeOf"))},rp={},rm=function(e){var t;return!!e&&"object"==typeof e&&"[object RegExp]"!==(t=Object.prototype.toString.call(e))&&"[object Date]"!==t&&e.$$typeof!==rv},rv="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function rg(e,t){return!1!==t.clone&&t.isMergeableObject(e)?rx(Array.isArray(e)?[]:{},e,t):e}function ry(e,t,n){return e.concat(t).map(function(e){return rg(e,n)})}function rb(e){return Object.keys(e).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter(function(t){return Object.propertyIsEnumerable.call(e,t)}):[])}function rw(e,t){try{return t in e}catch(e){return!1}}function rx(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||ry,n.isMergeableObject=n.isMergeableObject||rm,n.cloneUnlessOtherwiseSpecified=rg;var i,o,a=Array.isArray(t);return a!==Array.isArray(e)?rg(t,n):a?n.arrayMerge(e,t,n):(o={},(i=n).isMergeableObject(e)&&rb(e).forEach(function(t){o[t]=rg(e[t],i)}),rb(t).forEach(function(n){rw(e,n)&&!(Object.hasOwnProperty.call(e,n)&&Object.propertyIsEnumerable.call(e,n))||(rw(e,n)&&i.isMergeableObject(t[n])?o[n]=(function(e,t){if(!t.customMerge)return rx;var n=t.customMerge(e);return"function"==typeof n?n:rx})(n,i)(e[n],t[n],i):o[n]=rg(t[n],i))}),o)}rx.all=function(e,t){if(!Array.isArray(e))throw Error("first argument should be an array");return e.reduce(function(e,n){return rx(e,n,t)},{})},rp=rx;var rE={};ee=rE,et=function(){return function(e){function t(e){return" "===e||" "===e||"\n"===e||"\f"===e||"\r"===e}function n(t){var n,i=t.exec(e.substring(v));if(i)return n=i[0],v+=n.length,n}for(var i,o,a,s,u,c=e.length,l=/^[ \t\n\r\u000c]+/,f=/^[, \t\n\r\u000c]+/,d=/^[^ \t\n\r\u000c]+/,h=/[,]+$/,p=/^\d+$/,m=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,v=0,g=[];;){if(n(f),v>=c)return g;i=n(d),o=[],","===i.slice(-1)?(i=i.replace(h,""),y()):function(){for(n(l),a="",s="in descriptor";;){if(u=e.charAt(v),"in descriptor"===s){if(t(u))a&&(o.push(a),a="",s="after descriptor");else if(","===u){v+=1,a&&o.push(a),y();return}else if("("===u)a+=u,s="in parens";else if(""===u){a&&o.push(a),y();return}else a+=u}else if("in parens"===s){if(")"===u)a+=u,s="in descriptor";else if(""===u){o.push(a),y();return}else a+=u}else if("after descriptor"===s){if(t(u));else if(""===u){y();return}else s="in descriptor",v-=1}v+=1}}()}function y(){var t,n,a,s,u,c,l,f,d,h=!1,v={};for(s=0;se.length)&&(t=e.length);for(var n=0,i=Array(t);n",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var n=this.source;null==e&&(e=rL.isColorSupported);var i=function(e){return e},o=function(e){return e},a=function(e){return e};if(e){var s=rL.createColors(!0),u=s.bold,c=s.gray,l=s.red;o=function(e){return u(l(e))},i=function(e){return c(e)},rR&&(a=function(e){return rR(e)})}var f=n.split(/\r?\n/),d=Math.max(this.line-3,0),h=Math.min(this.line+2,f.length),p=String(h).length;return f.slice(d,h).map(function(e,n){var s=d+1+n,u=" "+(" "+s).slice(-p)+" | ";if(s===t.line){if(e.length>160){var c=Math.max(0,t.column-20),l=Math.max(t.column+20,t.endColumn+20),f=e.slice(c,l),h=i(u.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return o(">")+i(u)+a(f)+"\n "+h+o("^")}var m=i(u.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return o(">")+i(u)+a(e)+"\n "+m+o("^")}return" "+i(u)+a(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),n}(tZ(Error));rP=rM,rM.default=rM;var rq={},rU={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rj=/*#__PURE__*/function(){function e(t){tf(this,e),this.builder=t}return th(e,[{key:"atrule",value:function(e,t){var n="@"+e.name,i=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?n+=e.raws.afterName:i&&(n+=" "),e.nodes)this.block(e,n+i);else{var o=(e.raws.between||"")+(t?";":"");this.builder(n+i+o,e)}}},{key:"beforeAfter",value:function(e,t){n="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var n,i=e.parent,o=0;i&&"root"!==i.type;)o+=1,i=i.parent;if(n.includes("\n")){var a=this.raw(e,null,"indent");if(a.length)for(var s=0;s0&&"comment"===e.nodes[t].type;)t-=1;for(var n=this.raw(e,"semicolon"),i=0;i0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var n;return e.walkComments(function(e){if(void 0!==e.raws.before)return(n=e.raws.before).includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1}),void 0===n?n=this.raw(t,null,"beforeDecl"):n&&(n=n.replace(/\S/g,"")),n}},{key:"rawBeforeDecl",value:function(e,t){var n;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(n=e.raws.before).includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1}),void 0===n?n=this.raw(t,null,"beforeRule"):n&&(n=n.replace(/\S/g,"")),n}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(n){if(n.nodes&&(n.parent!==e||e.first!==n)&&void 0!==n.raws.before)return(t=n.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(n){var i=n.parent;if(i&&i!==e&&i.parent&&i.parent===e&&void 0!==n.raws.before){var o=n.raws.before.split("\n");return t=(t=o[o.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var n=e[t],i=e.raws[t];return i&&i.value===n?i.raw:n}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rq=rj,rj.default=rj;var rF={};function rV(e,t){new rq(t).stringify(e)}rF=rV,rV.default=rV,eE=Symbol("isClean"),eS=Symbol("my");var r$=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var n in tf(this,e),this.raws={},this[eE]=!1,this[eS]=!0,t)if("nodes"===n){this.nodes=[];var i=!0,o=!1,a=void 0;try{for(var s,u=t[n][Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value;"function"==typeof c.clone?this.append(c.clone()):this.append(c)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}else this[n]=t[n]}return th(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,n){var i=new t.constructor;for(var o in t)if(Object.prototype.hasOwnProperty.call(t,o)&&"proxyCache"!==o){var a=t[o],s=void 0===a?"undefined":(0,tr._)(a);"parent"===o&&"object"===s?n&&(i[o]=n):"source"===o?i[o]=a:Array.isArray(a)?i[o]=a.map(function(t){return e(t,i)}):("object"===s&&null!==a&&(a=e(a)),i[o]=a)}return i}(this);for(var n in e)t[n]=e[n];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var n=this.rangeBy(t),i=n.end,o=n.start;return this.source.input.error(e,{column:o.column,line:o.line},{column:i.column,line:i.line},t)}return new rP(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,n){return e[t]===n||(e[t]=n,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[eE]=!0}},{key:"markDirty",value:function(){if(this[eE]){this[eE]=!1;for(var e=this;e=e.parent;)e[eE]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var n=this.source.start;if(e.index)n=this.positionInside(e.index,t);else if(e.word){var i=(t=this.toString()).indexOf(e.word);-1!==i&&(n=this.positionInside(i,t))}return n}},{key:"positionInside",value:function(e,t){for(var n=t||this.toString(),i=this.source.start.column,o=this.source.start.line,a=0;a0&&void 0!==arguments[0]?arguments[0]:rF;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,n){var i={node:this};for(var o in n)i[o]=n[o];return e.warn(t,i)}},{key:"proxyOf",get:function(){return this}}]),e}();rC=r$,r$.default=r$;var rH=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this,e)).type="comment",i}return n}(tZ(rC));r_=rH,rH.default=rH;var rz={},rW=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e){var i;return tf(this,n),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=rt(tG({},e),{value:String(e.value)})),(i=t.call(this,e)).type="decl",i}return th(n,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),n}(tZ(rC));rz=rW,rW.default=rW;var rG=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(){return tf(this,n),t.apply(this,arguments)}return th(n,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),n=0;n1?t-1:0),o=1;o=e&&(this.indexes[n]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,n){return n||(n=t,t={}),this.walkDecls(function(i){(!t.props||t.props.includes(i.prop))&&(!t.fast||i.value.includes(t.fast))&&(i.value=i.value.replace(e,n))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,n){var i;try{i=e(t,n)}catch(e){throw t.addToError(e)}return!1!==i&&t.walk&&(i=t.walk(e)),i})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(n,i){if("atrule"===n.type&&e.test(n.name))return t(n,i)}):this.walk(function(n,i){if("atrule"===n.type&&n.name===e)return t(n,i)}):(t=e,this.walk(function(e,n){if("atrule"===e.type)return t(e,n)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,n){if("comment"===t.type)return e(t,n)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(n,i){if("decl"===n.type&&e.test(n.prop))return t(n,i)}):this.walk(function(n,i){if("decl"===n.type&&n.prop===e)return t(n,i)}):(t=e,this.walk(function(e,n){if("decl"===e.type)return t(e,n)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(n,i){if("rule"===n.type&&e.test(n.selector))return t(n,i)}):this.walk(function(n,i){if("rule"===n.type&&n.selector===e)return t(n,i)}):(t=e,this.walk(function(e,n){if("rule"===e.type)return t(e,n)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),n}(tZ(rC));rG.registerParse=function(e){eA=e},rG.registerRule=function(e){eT=e},rG.registerAtRule=function(e){ek=e},rG.registerRoot=function(e){eI=e},rO=rG,rG.default=rG,rG.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,ek.prototype):"rule"===e.type?Object.setPrototypeOf(e,eT.prototype):"decl"===e.type?Object.setPrototypeOf(e,rz.prototype):"comment"===e.type?Object.setPrototypeOf(e,r_.prototype):"root"===e.type&&Object.setPrototypeOf(e,eI.prototype),e[eS]=!0,e.nodes&&e.nodes.forEach(function(e){rG.rebuild(e)})};var rY=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this,e)).type="atrule",i}return th(n,[{key:"append",value:function(){for(var e,t=arguments.length,i=Array(t),o=0;o0&&void 0!==arguments[0]?arguments[0]:{};return new eN(new eO,this,e).stringify()}}]),n}(rO);rJ.registerLazyResult=function(e){eN=e},rJ.registerProcessor=function(e){eO=e},rK=rJ,rJ.default=rJ;var rZ={};function rQ(e,t){if(null==e)return{};var n,i,o=function(e,t){if(null==e)return{};var n,i,o={},a=Object.keys(e);for(i=0;i=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(i=0;i=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var rX={},r0=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",n=e;n--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r1=rR.isAbsolute,r3=rR.resolve,r2=rR.SourceMapConsumer,r5=rR.SourceMapGenerator,r8=rR.fileURLToPath,r6=rR.pathToFileURL,r4={},tr=ez("bbrsO");e_=function(e){var t,n,i=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");-1===n&&(n=t);var i=n===t?0:4-n%4;return[n,i]}(e),o=i[0],a=i[1],s=new ne((o+a)*3/4-a),u=0,c=a>0?o-4:o;for(n=0;n>16&255,s[u++]=t>>8&255,s[u++]=255&t;return 2===a&&(t=r7[e.charCodeAt(n)]<<2|r7[e.charCodeAt(n+1)]>>4,s[u++]=255&t),1===a&&(t=r7[e.charCodeAt(n)]<<10|r7[e.charCodeAt(n+1)]<<4|r7[e.charCodeAt(n+2)]>>2,s[u++]=t>>8&255,s[u++]=255&t),s},eC=function(e){for(var t,n=e.length,i=n%3,o=[],a=0,s=n-i;a>18&63]+r9[i>>12&63]+r9[i>>6&63]+r9[63&i]);return o.join("")}(e,a,a+16383>s?s:a+16383));return 1===i?o.push(r9[(t=e[n-1])>>2]+r9[t<<4&63]+"=="):2===i&&o.push(r9[(t=(e[n-2]<<8)+e[n-1])>>10]+r9[t>>4&63]+r9[t<<2&63]+"="),o.join("")};for(var r9=[],r7=[],ne="undefined"!=typeof Uint8Array?Uint8Array:Array,nt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nr=0,nn=nt.length;nr>1,f=-7,d=n?o-1:0,h=n?-1:1,p=e[t+d];for(d+=h,a=p&(1<<-f)-1,p>>=-f,f+=u;f>0;a=256*a+e[t+d],d+=h,f-=8);for(s=a&(1<<-f)-1,a>>=-f,f+=i;f>0;s=256*s+e[t+d],d+=h,f-=8);if(0===a)a=1-l;else{if(a===c)return s?NaN:1/0*(p?-1:1);s+=Math.pow(2,i),a-=l}return(p?-1:1)*s*Math.pow(2,a-i)},eL=function(e,t,n,i,o,a){var s,u,c,l=8*a-o-1,f=(1<>1,h=23===o?5960464477539062e-23:0,p=i?0:a-1,m=i?1:-1,v=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(u=isNaN(t)?1:0,s=f):(s=Math.floor(Math.log(t)/Math.LN2),t*(c=Math.pow(2,-s))<1&&(s--,c*=2),s+d>=1?t+=h/c:t+=h*Math.pow(2,1-d),t*c>=2&&(s++,c/=2),s+d>=f?(u=0,s=f):s+d>=1?(u=(t*c-1)*Math.pow(2,o),s+=d):(u=t*Math.pow(2,d-1)*Math.pow(2,o),s=0));o>=8;e[n+p]=255&u,p+=m,u/=256,o-=8);for(s=s<0;e[n+p]=255&s,p+=m,s/=256,l-=8);e[n+p-m]|=128*v};var ni="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function no(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,na.prototype),t}function na(e,t,n){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nc(e)}return ns(e,t,n)}function ns(e,t,n){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!na.isEncoding(t))throw TypeError("Unknown encoding: "+t);var n=0|nh(e,t),i=no(n),o=i.write(e,t);return o!==n&&(i=i.slice(0,o)),i}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nR(e,Uint8Array)){var t=new Uint8Array(e);return nf(t.buffer,t.byteOffset,t.byteLength)}return nl(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)));if(nR(e,ArrayBuffer)||e&&nR(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nR(e,SharedArrayBuffer)||e&&nR(e.buffer,SharedArrayBuffer)))return nf(e,t,n);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var i=e.valueOf&&e.valueOf();if(null!=i&&i!==e)return na.from(i,t,n);var o=function(e){if(na.isBuffer(e)){var t,n=0|nd(e.length),i=no(n);return 0===i.length||e.copy(i,0,0,n),i}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?no(0):nl(e):"Buffer"===e.type&&Array.isArray(e.data)?nl(e.data):void 0}(e);if(o)return o;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return na.from(e[Symbol.toPrimitive]("string"),t,n);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)))}function nu(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nc(e){return nu(e),no(e<0?0:0|nd(e))}function nl(e){for(var t=e.length<0?0:0|nd(e.length),n=no(t),i=0;i=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nh(e,t){if(na.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nR(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tr._)(e)));var n=e.length,i=arguments.length>2&&!0===arguments[2];if(!i&&0===n)return 0;for(var o=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return nL(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return nD(e).length;default:if(o)return i?-1:nL(e).length;t=(""+t).toLowerCase(),o=!0}}function np(e,t,n){var i,o,a=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===n||n>this.length)&&(n=this.length),n<=0||(n>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,n){var i=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>i)&&(n=i);for(var o="",a=t;a0x7fffffff?n=0x7fffffff:n<-0x80000000&&(n=-0x80000000),(a=n=+n)!=a&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return -1;n=e.length-1}else if(n<0){if(!o)return -1;n=0}if("string"==typeof t&&(t=na.from(t,i)),na.isBuffer(t))return 0===t.length?-1:ng(e,t,n,i,o);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):ng(e,[t],n,i,o);throw TypeError("val must be string, number or Buffer")}function ng(e,t,n,i,o){var a,s=1,u=e.length,c=t.length;if(void 0!==i&&("ucs2"===(i=String(i).toLowerCase())||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(e.length<2||t.length<2)return -1;s=2,u/=2,c/=2,n/=2}function l(e,t){return 1===s?e[t]:e.readUInt16BE(t*s)}if(o){var f=-1;for(a=n;au&&(n=u-c),a=n;a>=0;a--){for(var d=!0,h=0;h239?4:a>223?3:a>191?2:1;if(o+u<=n){var c=void 0,l=void 0,f=void 0,d=void 0;switch(u){case 1:a<128&&(s=a);break;case 2:(192&(c=e[o+1]))==128&&(d=(31&a)<<6|63&c)>127&&(s=d);break;case 3:c=e[o+1],l=e[o+2],(192&c)==128&&(192&l)==128&&(d=(15&a)<<12|(63&c)<<6|63&l)>2047&&(d<55296||d>57343)&&(s=d);break;case 4:c=e[o+1],l=e[o+2],f=e[o+3],(192&c)==128&&(192&l)==128&&(192&f)==128&&(d=(15&a)<<18|(63&c)<<12|(63&l)<<6|63&f)>65535&&d<1114112&&(s=d)}}null===s?(s=65533,u=1):s>65535&&(s-=65536,i.push(s>>>10&1023|55296),s=56320|1023&s),i.push(s),o+=u}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var n="",i=0;in)throw RangeError("Trying to access beyond buffer length")}function nw(e,t,n,i,o,a){if(!na.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw RangeError("Index out of range")}function nx(e,t,n,i,o){nO(t,i,o,e,n,7);var a=Number(t&BigInt(0xffffffff));e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a;var s=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[n++]=s,s>>=8,e[n++]=s,s>>=8,e[n++]=s,s>>=8,e[n++]=s,n}function nE(e,t,n,i,o){nO(t,i,o,e,n,7);var a=Number(t&BigInt(0xffffffff));e[n+7]=a,a>>=8,e[n+6]=a,a>>=8,e[n+5]=a,a>>=8,e[n+4]=a;var s=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[n+3]=s,s>>=8,e[n+2]=s,s>>=8,e[n+1]=s,s>>=8,e[n]=s,n+8}function nS(e,t,n,i,o,a){if(n+i>e.length||n<0)throw RangeError("Index out of range")}function nk(e,t,n,i,o){return t=+t,n>>>=0,o||nS(e,t,n,4,34028234663852886e22,-34028234663852886e22),eL(e,t,n,i,23,4),n+4}function nA(e,t,n,i,o){return t=+t,n>>>=0,o||nS(e,t,n,8,17976931348623157e292,-17976931348623157e292),eL(e,t,n,i,52,8),n+8}na.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),na.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(na.prototype,"parent",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.buffer}}),Object.defineProperty(na.prototype,"offset",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.byteOffset}}),na.poolSize=8192,na.from=function(e,t,n){return ns(e,t,n)},Object.setPrototypeOf(na.prototype,Uint8Array.prototype),Object.setPrototypeOf(na,Uint8Array),na.alloc=function(e,t,n){return(nu(e),e<=0)?no(e):void 0!==t?"string"==typeof n?no(e).fill(t,n):no(e).fill(t):no(e)},na.allocUnsafe=function(e){return nc(e)},na.allocUnsafeSlow=function(e){return nc(e)},na.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==na.prototype},na.compare=function(e,t){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),nR(t,Uint8Array)&&(t=na.from(t,t.offset,t.byteLength)),!na.isBuffer(e)||!na.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var n=e.length,i=t.length,o=0,a=Math.min(n,i);oi.length?(na.isBuffer(a)||(a=na.from(a)),a.copy(i,o)):Uint8Array.prototype.set.call(i,a,o);else if(na.isBuffer(a))a.copy(i,o);else throw TypeError('"list" argument must be an Array of Buffers');o+=a.length}return i},na.byteLength=nh,na.prototype._isBuffer=!0,na.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},ni&&(na.prototype[ni]=na.prototype.inspect),na.prototype.compare=function(e,t,n,i,o){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),!na.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tr._)(e)));if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===i&&(i=0),void 0===o&&(o=this.length),t<0||n>e.length||i<0||o>this.length)throw RangeError("out of range index");if(i>=o&&t>=n)return 0;if(i>=o)return -1;if(t>=n)return 1;if(t>>>=0,n>>>=0,i>>>=0,o>>>=0,this===e)return 0;for(var a=o-i,s=n-t,u=Math.min(a,s),c=this.slice(i,o),l=e.slice(t,n),f=0;f>>=0,isFinite(n)?(n>>>=0,void 0===i&&(i="utf8")):(i=n,n=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var o,a,s,u,c,l,f,d,h=this.length-t;if((void 0===n||n>h)&&(n=h),e.length>0&&(n<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var p=!1;;)switch(i){case"hex":return function(e,t,n,i){n=Number(n)||0;var o,a=e.length-n;i?(i=Number(i))>a&&(i=a):i=a;var s=t.length;for(i>s/2&&(i=s/2),o=0;o>8,o.push(n%256),o.push(i);return o}(e,this.length-f),this,f,d);default:if(p)throw TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),p=!0}},na.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},na.prototype.slice=function(e,t){var n=this.length;e=~~e,t=void 0===t?n:~~t,e<0?(e+=n)<0&&(e=0):e>n&&(e=n),t<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=this[e],o=1,a=0;++a>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=this[e+--t],o=1;t>0&&(o*=256);)i+=this[e+--t]*o;return i},na.prototype.readUint8=na.prototype.readUInt8=function(e,t){return e>>>=0,t||nb(e,1,this.length),this[e]},na.prototype.readUint16LE=na.prototype.readUInt16LE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]|this[e+1]<<8},na.prototype.readUint16BE=na.prototype.readUInt16BE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]<<8|this[e+1]},na.prototype.readUint32LE=na.prototype.readUInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},na.prototype.readUint32BE=na.prototype.readUInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},na.prototype.readBigUInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],n=this[e+7];(void 0===t||void 0===n)&&nC(e,this.length-8);var i=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],o=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*n;return BigInt(i)+(BigInt(o)<>>=0,"offset");var t=this[e],n=this[e+7];(void 0===t||void 0===n)&&nC(e,this.length-8);var i=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],o=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+n;return(BigInt(i)<>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=this[e],o=1,a=0;++a=(o*=128)&&(i-=Math.pow(2,8*t)),i},na.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||nb(e,t,this.length);for(var i=t,o=1,a=this[e+--i];i>0&&(o*=256);)a+=this[e+--i]*o;return a>=(o*=128)&&(a-=Math.pow(2,8*t)),a},na.prototype.readInt8=function(e,t){return(e>>>=0,t||nb(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},na.prototype.readInt16LE=function(e,t){e>>>=0,t||nb(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?0xffff0000|n:n},na.prototype.readInt16BE=function(e,t){e>>>=0,t||nb(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?0xffff0000|n:n},na.prototype.readInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},na.prototype.readInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},na.prototype.readBigInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],n=this[e+7];return(void 0===t||void 0===n)&&nC(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(n<<24))<>>=0,"offset");var t=this[e],n=this[e+7];return(void 0===t||void 0===n)&&nC(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||nb(e,4,this.length),eP(this,e,!0,23,4)},na.prototype.readFloatBE=function(e,t){return e>>>=0,t||nb(e,4,this.length),eP(this,e,!1,23,4)},na.prototype.readDoubleLE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!0,52,8)},na.prototype.readDoubleBE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!1,52,8)},na.prototype.writeUintLE=na.prototype.writeUIntLE=function(e,t,n,i){if(e=+e,t>>>=0,n>>>=0,!i){var o=Math.pow(2,8*n)-1;nw(this,e,t,n,o,0)}var a=1,s=0;for(this[t]=255&e;++s>>=0,n>>>=0,!i){var o=Math.pow(2,8*n)-1;nw(this,e,t,n,o,0)}var a=n-1,s=1;for(this[t+a]=255&e;--a>=0&&(s*=256);)this[t+a]=e/s&255;return t+n},na.prototype.writeUint8=na.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,1,255,0),this[t]=255&e,t+1},na.prototype.writeUint16LE=na.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeUint16BE=na.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeUint32LE=na.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},na.prototype.writeUint32BE=na.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigUInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeBigUInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeIntLE=function(e,t,n,i){if(e=+e,t>>>=0,!i){var o=Math.pow(2,8*n-1);nw(this,e,t,n,o-1,-o)}var a=0,s=1,u=0;for(this[t]=255&e;++a>0)-u&255;return t+n},na.prototype.writeIntBE=function(e,t,n,i){if(e=+e,t>>>=0,!i){var o=Math.pow(2,8*n-1);nw(this,e,t,n,o-1,-o)}var a=n-1,s=1,u=0;for(this[t+a]=255&e;--a>=0&&(s*=256);)e<0&&0===u&&0!==this[t+a+1]&&(u=1),this[t+a]=(e/s>>0)-u&255;return t+n},na.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},na.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},na.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||nw(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeBigInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeFloatLE=function(e,t,n){return nk(this,e,t,!0,n)},na.prototype.writeFloatBE=function(e,t,n){return nk(this,e,t,!1,n)},na.prototype.writeDoubleLE=function(e,t,n){return nA(this,e,t,!0,n)},na.prototype.writeDoubleBE=function(e,t,n){return nA(this,e,t,!1,n)},na.prototype.copy=function(e,t,n,i){if(!na.isBuffer(e))throw TypeError("argument should be a Buffer");if(n||(n=0),i||0===i||(i=this.length),t>=e.length&&(t=e.length),t||(t=0),i>0&&i=this.length)throw RangeError("Index out of range");if(i<0)throw RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o=i+4;n-=3)t="_".concat(e.slice(n-3,n)).concat(t);return"".concat(e.slice(0,n)).concat(t)}function nO(e,t,n,i,o,a){if(e>n||e3?0===t||t===BigInt(0)?">= 0".concat(u," and < 2").concat(u," ** ").concat((a+1)*8).concat(u):">= -(2".concat(u," ** ").concat((a+1)*8-1).concat(u,") and < 2 ** ")+"".concat((a+1)*8-1).concat(u):">= ".concat(t).concat(u," and <= ").concat(n).concat(u),new nI.ERR_OUT_OF_RANGE("value",s,e)}n_(o,"offset"),(void 0===i[o]||void 0===i[o+a])&&nC(o,i.length-(a+1))}function n_(e,t){if("number"!=typeof e)throw new nI.ERR_INVALID_ARG_TYPE(t,"number",e)}function nC(e,t,n){if(Math.floor(e)!==e)throw n_(e,n),new nI.ERR_OUT_OF_RANGE(n||"offset","an integer",e);if(t<0)throw new nI.ERR_BUFFER_OUT_OF_BOUNDS;throw new nI.ERR_OUT_OF_RANGE(n||"offset",">= ".concat(n?1:0," and <= ").concat(t),e)}nT("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nT("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tr._)(t))},TypeError),nT("ERR_OUT_OF_RANGE",function(e,t,n){var i='The value of "'.concat(e,'" is out of range.'),o=n;return Number.isInteger(n)&&Math.abs(n)>0x100000000?o=nN(String(n)):(void 0===n?"undefined":(0,tr._)(n))==="bigint"&&(o=String(n),(n>Math.pow(BigInt(2),BigInt(32))||n<-Math.pow(BigInt(2),BigInt(32)))&&(o=nN(o)),o+="n"),i+=" It must be ".concat(t,". Received ").concat(o)},RangeError);var nP=/[^+/0-9A-Za-z-_]/g;function nL(e,t){t=t||1/0;for(var n,i=e.length,o=null,a=[],s=0;s55295&&n<57344){if(!o){if(n>56319||s+1===i){(t-=3)>-1&&a.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&a.push(239,191,189),o=n;continue}n=(o-55296<<10|n-56320)+65536}else o&&(t-=3)>-1&&a.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;a.push(n)}else if(n<2048){if((t-=2)<0)break;a.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;a.push(n>>12|224,n>>6&63|128,63&n|128)}else if(n<1114112){if((t-=4)<0)break;a.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}else throw Error("Invalid code point")}return a}function nD(e){return e_(function(e){if((e=(e=e.split("=")[0]).trim().replace(nP,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nB(e,t,n,i){var o;for(o=0;o=t.length)&&!(o>=e.length);++o)t[o+n]=e[o];return o}function nR(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nM=function(){for(var e="0123456789abcdef",t=Array(256),n=0;n<16;++n)for(var i=16*n,o=0;o<16;++o)t[i+o]=e[n]+e[o];return t}();function nq(e){return"undefined"==typeof BigInt?nU:e}function nU(){throw Error("BigInt not supported")}var nj=rR.existsSync,nF=rR.readFileSync,nV=rR.dirname,n$=rR.join,nH=rR.SourceMapConsumer,nz=rR.SourceMapGenerator,nW=/*#__PURE__*/function(){function e(t,n){if(tf(this,e),!1!==n.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var i=n.map?n.map.prev:void 0,o=this.loadMap(n.from,i);!this.mapFile&&n.from&&(this.mapFile=n.from),this.mapFile&&(this.root=nV(this.mapFile)),o&&(this.text=o)}}return th(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new nH(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,n=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(n)return decodeURIComponent(e.substr(n[0].length));var i=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(i)return t=e.substr(i[0].length),na?na.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var n=e.lastIndexOf(t.pop()),i=e.indexOf("*/",n);n>-1&&i>-1&&(this.annotation=this.getAnnotationURL(e.substring(n,i)))}}},{key:"loadFile",value:function(e){if(this.root=nV(e),nj(e))return this.mapFile=e,nF(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var n=t(e);if(n){var i=this.loadFile(n);if(!i)throw Error("Unable to load previous source map: "+n.toString());return i}}else if(t instanceof nH)return nz.fromSourceMap(t).toString();else if(t instanceof nz)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var o=this.annotation;return e&&(o=n$(nV(e),o)),this.loadFile(o)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r4=nW,nW.default=nW;var nG=Symbol("fromOffsetCache"),nY=!!(r2&&r5),nK=!!(r3&&r1),nJ=/*#__PURE__*/function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,n.from&&(!nK||/^\w+:\/\//.test(n.from)||r1(n.from)?this.file=n.from:this.file=r3(n.from)),nK&&nY){var i=new r4(this.css,n);if(i.text){this.map=i;var o=i.consumer().file;!this.file&&o&&(this.file=this.mapResolve(o))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return th(e,[{key:"error",value:function(e,t,n){var i,o,a,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var u=t,c=n;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);t=l.line,n=l.col}else t=u.line,n=u.column;if("number"==typeof c.offset){var f=this.fromOffset(c.offset);o=f.line,i=f.col}else o=c.line,i=c.column}else if(!n){var d=this.fromOffset(t);t=d.line,n=d.col}var h=this.origin(t,n,o,i);return(a=h?new rP(e,void 0===h.endLine?h.line:{column:h.column,line:h.line},void 0===h.endLine?h.column:{column:h.endColumn,line:h.endLine},h.source,h.file,s.plugin):new rP(e,void 0===o?t:{column:n,line:t},void 0===o?n:{column:i,line:o},this.css,this.file,s.plugin)).input={column:n,endColumn:i,endLine:o,line:t,source:this.css},this.file&&(r6&&(a.input.url=r6(this.file).toString()),a.input.file=this.file),a}},{key:"fromOffset",value:function(e){if(this[nG])u=this[nG];else{var t=this.css.split("\n");u=Array(t.length);for(var n=0,i=0,o=t.length;i=s)a=u.length-1;else for(var s,u,c,l=u.length-2;a>1)])l=c-1;else if(e>=u[c+1])a=c+1;else{a=c;break}return{col:e-u[a]+1,line:a+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r3(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,n,i){if(!this.map)return!1;var o,a,s=this.map.consumer(),u=s.originalPositionFor({column:t,line:e});if(!u.source)return!1;"number"==typeof n&&(o=s.originalPositionFor({column:i,line:n})),a=r1(u.source)?r6(u.source):new URL(u.source,this.map.consumer().sourceRoot||r6(this.map.mapFile));var c={column:u.column,endColumn:o&&o.column,endLine:o&&o.line,line:u.line,url:a.toString()};if("file:"===a.protocol){if(r8)c.file=r8(a);else throw Error("file: protocol is not available in this PostCSS build")}var l=s.sourceContentFor(u.source);return l&&(c.source=l),c}},{key:"toJSON",value:function(){for(var e={},t=0,n=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var c,l=o[Symbol.iterator]();!(a=(c=l.next()).done);a=!0)c.value.raws.before=t.raws.before}catch(e){s=!0,u=e}finally{try{a||null==l.return||l.return()}finally{if(s)throw u}}}return o}},{key:"removeChild",value:function(e,t){var i=this.index(e);return!t&&0===i&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[i].raws.before),rN(tJ(n.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eD(new eB,this,e).stringify()}}]),n}(rO);nQ.registerLazyResult=function(e){eD=e},nQ.registerProcessor=function(e){eB=e},nZ=nQ,nQ.default=nQ,rO.registerRoot(nQ);var nX={},n0={},n1={comma:function(e){return n1.split(e,[","],!0)},space:function(e){return n1.split(e,[" ","\n"," "])},split:function(e,t,n){var i=[],o="",a=!1,s=0,u=!1,c="",l=!1,f=!0,d=!1,h=void 0;try{for(var p,m=e[Symbol.iterator]();!(f=(p=m.next()).done);f=!0){var v=p.value;l?l=!1:"\\"===v?l=!0:u?v===c&&(u=!1):'"'===v||"'"===v?(u=!0,c=v):"("===v?s+=1:")"===v?s>0&&(s-=1):0===s&&t.includes(v)&&(a=!0),a?(""!==o&&i.push(o.trim()),o="",a=!1):o+=v}}catch(e){d=!0,h=e}finally{try{f||null==m.return||m.return()}finally{if(d)throw h}}return(n||""!==o)&&i.push(o.trim()),i}};n0=n1,n1.default=n1;var n3=/*#__PURE__*/function(e){tz(n,e);var t=tX(n);function n(e){var i;return tf(this,n),(i=t.call(this,e)).type="rule",i.nodes||(i.nodes=[]),i}return th(n,[{key:"selectors",get:function(){return n0.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,n=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(n)}}]),n}(rO);function n2(e,t){if(Array.isArray(e))return e.map(function(e){return n2(e)});var n=e.inputs,i=rQ(e,["inputs"]);if(n){t=[];var o=!0,a=!1,s=void 0;try{for(var u,c=n[Symbol.iterator]();!(o=(u=c.next()).done);o=!0){var l=u.value,f=rt(tG({},l),{__proto__:rX.prototype});f.map&&(f.map=rt(tG({},f.map),{__proto__:r4.prototype})),t.push(f)}}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}if(i.nodes&&(i.nodes=e.nodes.map(function(e){return n2(e,t)})),i.source){var d=i.source,h=d.inputId,p=rQ(d,["inputId"]);i.source=p,null!=h&&(i.source.input=t[h])}if("root"===i.type)return new nZ(i);if("decl"===i.type)return new rz(i);if("rule"===i.type)return new nX(i);if("comment"===i.type)return new r_(i);if("atrule"===i.type)return new rT(i);throw Error("Unknown node type: "+e.type)}nX=n3,n3.default=n3,rO.registerRule(n3),rZ=n2,n2.default=n2;var n5={};function n8(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,i,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],s=!0,u=!1;try{for(o=o.call(e);!(s=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);s=!0);}catch(e){u=!0,i=e}finally{try{s||null==o.return||o.return()}finally{if(u)throw i}}return a}}(e,t)||rA(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eJ=(ez("h7Cmf"),ez("h7Cmf")),n6={},n4=rR.dirname,n9=rR.relative,n7=rR.resolve,ie=rR.sep,it=rR.SourceMapConsumer,ir=rR.SourceMapGenerator,ii=rR.pathToFileURL,io=!!(it&&ir),ia=!!(n4&&n7&&n9&&ie);n6=/*#__PURE__*/function(){function e(t,n,i,o){tf(this,e),this.stringify=t,this.mapOpts=i.map||{},this.root=n,this.opts=i,this.css=o,this.originalCSS=o,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return th(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,n=void 0;try{for(var i,o=this.previous()[Symbol.iterator]();!(e=(i=o.next()).done);e=!0){var a=i.value,s=this.toUrl(this.path(a.file)),u=a.root||n4(a.file),c=void 0;!1===this.mapOpts.sourcesContent?(c=new it(a.text)).sourcesContent&&(c.sourcesContent=null):c=a.consumer(),this.map.applySourceMap(c,s,this.toUrl(this.path(u)))}}catch(e){t=!0,n=e}finally{try{e||null==o.return||o.return()}finally{if(t)throw n}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),ia&&io&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=ir.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,n=this;this.css="",this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0});var i=1,o=1,a="",s={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(u,c,l){if(n.css+=u,c&&"end"!==l&&(s.generated.line=i,s.generated.column=o-1,c.source&&c.source.start?(s.source=n.sourcePath(c),s.original.line=c.source.start.line,s.original.column=c.source.start.column-1):(s.source=a,s.original.line=1,s.original.column=0),n.map.addMapping(s)),(t=u.match(/\n/g))?(i+=t.length,e=u.lastIndexOf("\n"),o=u.length-e):o+=u.length,c&&"start"!==l){var f=c.parent||{raws:{}};(!("decl"===c.type||"atrule"===c.type&&!c.nodes)||c!==f.last||f.raws.semicolon)&&(c.source&&c.source.end?(s.source=n.sourcePath(c),s.original.line=c.source.end.line,s.original.column=c.source.end.column-1,s.generated.line=i,s.generated.column=o-2):(s.source=a,s.original.line=1,s.original.column=0,s.generated.line=i,s.generated.column=o-1),n.map.addMapping(s))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var n=this.opts.to?n4(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(n=n4(n7(n,this.mapOpts.annotation)));var i=n9(n,e);return this.memoizedPaths.set(e,i),i}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var n=t.source.input.map;e.previousMaps.includes(n)||e.previousMaps.push(n)}});else{var t=new rX(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(n){if(n.source){var i=n.source.input.from;if(i&&!t[i]){t[i]=!0;var o=e.usesFileUrls?e.toFileUrl(i):e.toUrl(e.path(i));e.map.setSourceContent(o,n.source.input.css)}}});else if(this.css){var n=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(n,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return na?na.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ii){var n=ii(e).toString();return this.memoizedFileURLs.set(e,n),n}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===ie&&(e=e.replace(/\\/g,"/"));var n=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,n),n}}]),e}();var is={},iu={},ic={},il=/[\t\n\f\r "#'()/;[\\\]{}]/g,id=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,ih=/.[\r\n"'(/\\]/,ip=/[\da-f]/i;ic=function(e){var t,n,i,o,a,s,u,c,l,f,d=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},h=e.css.valueOf(),p=d.ignoreErrors,m=h.length,v=0,g=[],y=[];function b(t){throw e.error("Unclosed "+t,v)}return{back:function(e){y.push(e)},endOfFile:function(){return 0===y.length&&v>=m},nextToken:function(e){if(y.length)return y.pop();if(!(v>=m)){var d=!!e&&e.ignoreUnclosed;switch(t=h.charCodeAt(v)){case 10:case 32:case 9:case 13:case 12:o=v;do o+=1,t=h.charCodeAt(o);while(32===t||10===t||9===t||13===t||12===t)s=["space",h.slice(v,o)],v=o-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var w=String.fromCharCode(t);s=[w,w,v];break;case 40:if(f=g.length?g.pop()[1]:"",l=h.charCodeAt(v+1),"url"===f&&39!==l&&34!==l&&32!==l&&10!==l&&9!==l&&12!==l&&13!==l){o=v;do{if(u=!1,-1===(o=h.indexOf(")",o+1))){if(p||d){o=v;break}b("bracket")}for(c=o;92===h.charCodeAt(c-1);)c-=1,u=!u}while(u)s=["brackets",h.slice(v,o+1),v,o],v=o}else o=h.indexOf(")",v+1),n=h.slice(v,o+1),-1===o||ih.test(n)?s=["(","(",v]:(s=["brackets",n,v,o],v=o);break;case 39:case 34:a=39===t?"'":'"',o=v;do{if(u=!1,-1===(o=h.indexOf(a,o+1))){if(p||d){o=v+1;break}b("string")}for(c=o;92===h.charCodeAt(c-1);)c-=1,u=!u}while(u)s=["string",h.slice(v,o+1),v,o],v=o;break;case 64:il.lastIndex=v+1,il.test(h),o=0===il.lastIndex?h.length-1:il.lastIndex-2,s=["at-word",h.slice(v,o+1),v,o],v=o;break;case 92:for(o=v,i=!0;92===h.charCodeAt(o+1);)o+=1,i=!i;if(t=h.charCodeAt(o+1),i&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(o+=1,ip.test(h.charAt(o)))){for(;ip.test(h.charAt(o+1));)o+=1;32===h.charCodeAt(o+1)&&(o+=1)}s=["word",h.slice(v,o+1),v,o],v=o;break;default:47===t&&42===h.charCodeAt(v+1)?(0===(o=h.indexOf("*/",v+2)+1)&&(p||d?o=h.length:b("comment")),s=["comment",h.slice(v,o+1),v,o]):(id.lastIndex=v+1,id.test(h),o=0===id.lastIndex?h.length-1:id.lastIndex-2,s=["word",h.slice(v,o+1),v,o],g.push(s)),v=o}return v++,s}},position:function(){return v}}};var im={empty:!0,space:!0};function iv(e,t){var n=new rX(e,t),i=new iu(n);try{i.parse()}catch(e){throw e}return i.root}iu=/*#__PURE__*/function(){function e(t){tf(this,e),this.input=t,this.root=new nZ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return th(e,[{key:"atrule",value:function(e){var t,n,i,o=new rT;o.name=e[1].slice(1),""===o.name&&this.unnamedAtrule(o,e),this.init(o,e[2]);for(var a=!1,s=!1,u=[],c=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?c.push("("===t?")":"]"):"{"===t&&c.length>0?c.push("}"):t===c[c.length-1]&&c.pop(),0===c.length){if(";"===t){o.source.end=this.getPosition(e[2]),o.source.end.offset++,this.semicolon=!0;break}if("{"===t){s=!0;break}if("}"===t){if(u.length>0){for(i=u.length-1,n=u[i];n&&"space"===n[0];)n=u[--i];n&&(o.source.end=this.getPosition(n[3]||n[2]),o.source.end.offset++)}this.end(e);break}u.push(e)}else u.push(e);if(this.tokenizer.endOfFile()){a=!0;break}}o.raws.between=this.spacesAndCommentsFromEnd(u),u.length?(o.raws.afterName=this.spacesAndCommentsFromStart(u),this.raw(o,"params",u),a&&(e=u[u.length-1],o.source.end=this.getPosition(e[3]||e[2]),o.source.end.offset++,this.spaces=o.raws.between,o.raws.between="")):(o.raws.afterName="",o.params=""),s&&(o.nodes=[],this.current=o)}},{key:"checkMissedSemicolon",value:function(e){var t,n=this.colon(e);if(!1!==n){for(var i=0,o=n-1;o>=0&&("space"===(t=e[o])[0]||2!==(i+=1));o--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,n=!0,i=!1,o=void 0;try{for(var a,s,u,c=e.entries()[Symbol.iterator]();!(n=(u=c.next()).done);n=!0){var l=n8(u.value,2),f=l[0],d=l[1];if(s=d[0],"("===s&&(t+=1),")"===s&&(t-=1),0===t&&":"===s){if(a){if("word"===a[0]&&"progid"===a[1])continue;return f}this.doubleColon(d)}a=d}}catch(e){i=!0,o=e}finally{try{n||null==c.return||c.return()}finally{if(i)throw o}}return!1}},{key:"comment",value:function(e){var t=new r_;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var n=e[1].slice(2,-2);if(/^\s*$/.test(n))t.text="",t.raws.left=n,t.raws.right="";else{var i=n.match(/^(\s*)([^]*\S)(\s*)$/);t.text=i[2],t.raws.left=i[1],t.raws.right=i[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=ic(this.input)}},{key:"decl",value:function(e,t){var n,i,o=new rz;this.init(o,e[0][2]);var a=e[e.length-1];for(";"===a[0]&&(this.semicolon=!0,e.pop()),o.source.end=this.getPosition(a[3]||a[2]||function(e){for(var t=e.length-1;t>=0;t--){var n=e[t],i=n[3]||n[2];if(i)return i}}(e)),o.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),o.raws.before+=e.shift()[1];for(o.source.start=this.getPosition(e[0][2]),o.prop="";e.length;){var s=e[0][0];if(":"===s||"space"===s||"comment"===s)break;o.prop+=e.shift()[1]}for(o.raws.between="";e.length;){if(":"===(n=e.shift())[0]){o.raws.between+=n[1];break}"word"===n[0]&&/\w/.test(n[1])&&this.unknownWord([n]),o.raws.between+=n[1]}("_"===o.prop[0]||"*"===o.prop[0])&&(o.raws.before+=o.prop[0],o.prop=o.prop.slice(1));for(var u=[];e.length&&("space"===(i=e[0][0])||"comment"===i);)u.push(e.shift());this.precheckMissedSemicolon(e);for(var c=e.length-1;c>=0;c--){if("!important"===(n=e[c])[1].toLowerCase()){o.important=!0;var l=this.stringFrom(e,c);" !important"!==(l=this.spacesFromEnd(e)+l)&&(o.raws.important=l);break}if("important"===n[1].toLowerCase()){for(var f=e.slice(0),d="",h=c;h>0;h--){var p=f[h][0];if(d.trim().startsWith("!")&&"space"!==p)break;d=f.pop()[1]+d}d.trim().startsWith("!")&&(o.important=!0,o.raws.important=d,e=f)}if("space"!==n[0]&&"comment"!==n[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(o.raws.between+=u.map(function(e){return e[1]}).join(""),u=[]),this.raw(o,"value",u.concat(e),t),o.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nX;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,n=null,i=!1,o=null,a=[],s=e[1].startsWith("--"),u=[],c=e;c;){if(n=c[0],u.push(c),"("===n||"["===n)o||(o=c),a.push("("===n?")":"]");else if(s&&i&&"{"===n)o||(o=c),a.push("}");else if(0===a.length){if(";"===n){if(i){this.decl(u,s);return}break}if("{"===n){this.rule(u);return}if("}"===n){this.tokenizer.back(u.pop()),t=!0;break}":"===n&&(i=!0)}else n===a[a.length-1]&&(a.pop(),0===a.length&&(o=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),a.length>0&&this.unclosedBracket(o),t&&i){if(!s)for(;u.length&&("space"===(c=u[u.length-1][0])||"comment"===c);)this.tokenizer.back(u.pop());this.decl(u,s)}else this.unknownWord(u)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,n,i){for(var o,a,s,u,c=n.length,l="",f=!0,d=0;d1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),this.type="warning",this.text=t,n.node&&n.node.source){var i=n.node.rangeBy(n);this.line=i.start.line,this.column=i.start.column,this.endLine=i.end.line,this.endColumn=i.end.column}for(var o in n)this[o]=n[o]}return th(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();iy=ib,ib.default=ib;var iw=/*#__PURE__*/function(){function e(t,n,i){tf(this,e),this.processor=t,this.messages=[],this.root=n,this.opts=i,this.css=void 0,this.map=void 0}return th(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var n=new iy(e,t);return this.messages.push(n),n}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();ig=iw,iw.default=iw;var ix={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},iE={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iS={Once:!0,postcssPlugin:!0,prepare:!0};function ik(e){return"object"==typeof e&&"function"==typeof e.then}function iA(e){var t=!1,n=ix[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[n,n+"-"+t,0,n+"Exit",n+"Exit-"+t]:t?[n,n+"-"+t,n+"Exit",n+"Exit-"+t]:e.append?[n,0,n+"Exit"]:[n,n+"Exit"]}function iI(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:iA(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iT(e){return e[eE]=!1,e.nodes&&e.nodes.forEach(function(e){return iT(e)}),e}var iN={},iO=/*#__PURE__*/function(){function e(t,n,i){var o,a=this;if(tf(this,e),this.stringified=!1,this.processed=!1,"object"==typeof n&&null!==n&&("root"===n.type||"document"===n.type))o=iT(n);else if(n instanceof e||n instanceof ig)o=iT(n.root),n.map&&(void 0===i.map&&(i.map={}),i.map.inline||(i.map.inline=!1),i.map.prev=n.map);else{var s=is;i.syntax&&(s=i.syntax.parse),i.parser&&(s=i.parser),s.parse&&(s=s.parse);try{o=s(n,i)}catch(e){this.processed=!0,this.error=e}o&&!o[eS]&&rO.rebuild(o)}this.result=new ig(t,o,i),this.helpers=rt(tG({},iN),{postcss:iN,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tG({},e,e.prepare(a.result)):e})}return th(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var n=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?n.postcssVersion:(e.plugin=n.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,n,i){e.listeners[n]||(e.listeners[n]=[]),e.listeners[n].push([t,i])},n=!0,i=!1,o=void 0;try{for(var a,s=this.plugins[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;if("object"==typeof u)for(var c in u){if(!iE[c]&&/^[A-Z]/.test(c))throw Error("Unknown event ".concat(c," in ").concat(u.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iS[c]){if("object"==typeof u[c])for(var l in u[c])t(u,"*"===l?c:c+"-"+l.toLowerCase(),u[c][l]);else"function"==typeof u[c]&&t(u,c,u[c])}}}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eY(function(){var t,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g;return(0,eJ.__generator)(this,function(y){switch(y.label){case 0:e.plugin=0,t=0,y.label=1;case 1:if(!(t0))return[3,13];if(!ik(u=e.visitTick(s)))return[3,12];y.label=9;case 9:return y.trys.push([9,11,,12]),[4,u];case 10:return y.sent(),[3,12];case 11:throw c=y.sent(),l=s[s.length-1].node,e.handleError(c,l);case 12:return[3,8];case 13:return[3,7];case 14:if(f=!0,d=!1,h=void 0,!e.listeners.OnceExit)return[3,22];y.label=15;case 15:y.trys.push([15,20,21,22]),p=function(){var t,n,i,o;return(0,eJ.__generator)(this,function(s){switch(s.label){case 0:n=(t=n8(v.value,2))[0],i=t[1],e.result.lastPlugin=n,s.label=1;case 1:if(s.trys.push([1,6,,7]),"document"!==a.type)return[3,3];return[4,Promise.all(a.nodes.map(function(t){return i(t,e.helpers)}))];case 2:return s.sent(),[3,5];case 3:return[4,i(a,e.helpers)];case 4:s.sent(),s.label=5;case 5:return[3,7];case 6:throw o=s.sent(),e.handleError(o);case 7:return[2]}})},m=e.listeners.OnceExit[Symbol.iterator](),y.label=16;case 16:if(f=(v=m.next()).done)return[3,19];return[5,(0,eJ.__values)(p())];case 17:y.sent(),y.label=18;case 18:return f=!0,[3,16];case 19:return[3,22];case 20:return g=y.sent(),d=!0,h=g,[3,22];case 21:try{f||null==m.return||m.return()}finally{if(d)throw h}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var n=this.result.root.nodes.map(function(n){return e.Once(n,t.helpers)});if(ik(n[0]))return Promise.all(n);return n}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rF;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var n=new n6(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,n=void 0;try{for(var i,o=this.plugins[Symbol.iterator]();!(e=(i=o.next()).done);e=!0){var a=i.value,s=this.runOnRoot(a);if(ik(s))throw this.getAsyncError()}}catch(e){t=!0,n=e}finally{try{e||null==o.return||o.return()}finally{if(t)throw n}}if(this.prepareVisitors(),this.hasListener){for(var u=this.result.root;!u[eE];)u[eE]=!0,this.walkSync(u);if(this.listeners.OnceExit){var c=!0,l=!1,f=void 0;if("document"===u.type)try{for(var d,h=u.nodes[Symbol.iterator]();!(c=(d=h.next()).done);c=!0){var p=d.value;this.visitSync(this.listeners.OnceExit,p)}}catch(e){l=!0,f=e}finally{try{c||null==h.return||h.return()}finally{if(l)throw f}}else this.visitSync(this.listeners.OnceExit,u)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=n8(a.value,2),c=u[0],l=u[1];this.result.lastPlugin=c;var f=void 0;try{f=l(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(ik(f))throw this.getAsyncError()}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],n=t.node,i=t.visitors;if("root"!==n.type&&"document"!==n.type&&!n.parent){e.pop();return}if(i.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tf(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return th(e,[{key:"normalize",value:function(e){var t=[],n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;if(!0===u.postcss?u=u():u.postcss&&(u=u.postcss),"object"==typeof u&&Array.isArray(u.plugins))t=t.concat(u.plugins);else if("object"==typeof u&&u.postcssPlugin)t.push(u);else if("function"==typeof u)t.push(u);else if("object"==typeof u&&(u.parse||u.stringify));else throw Error(u+" is not a PostCSS plugin")}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n5(this,e,t):new iC(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iD(){for(var e=arguments.length,t=Array(e),n=0;n]+$/;function iV(e,t,n){if(null==e)return"";"number"==typeof e&&(e=e.toString());var i,o,a,s,u,c,l,f,d,h="",p="";function m(e,t){var n=this;this.tag=e,this.attribs=t||{},this.tagPosition=h.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(u.length){var e=u[u.length-1];e.text+=n.text}},this.updateParentNodeMediaChildren=function(){u.length&&iR.includes(this.tag)&&u[u.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iV.defaults,t)).parser=Object.assign({},i$,t.parser);var v=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iM.forEach(function(e){v(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var g=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(i={},o={},iq(t.allowedAttributes,function(e,t){i[t]=[];var n=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(rf(e).replace(/\\\*/g,".*")):i[t].push(e)}),n.length&&(o[t]=RegExp("^("+n.join("|")+")$"))}));var y={},b={},w={};iq(t.allowedClasses,function(e,t){if(i&&(iU(i,t)||(i[t]=[]),i[t].push("class")),y[t]=e,Array.isArray(e)){var n=[];y[t]=[],w[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(rf(e).replace(/\\\*/g,".*")):e instanceof RegExp?w[t].push(e):y[t].push(e)}),n.length&&(b[t]=RegExp("^("+n.join("|")+")$"))}});var x={};iq(t.transformTags,function(e,t){var n;"function"==typeof e?n=e:"string"==typeof e&&(n=iV.simpleTransform(e)),"*"===t?a=n:x[t]=n});var E=!1;k();var S=new t$({onopentag:function(e,n){if(t.enforceHtmlBoundary&&"html"===e&&k(),f){d++;return}var S,O=new m(e,n);u.push(O);var _=!1,C=!!O.text;if(iU(x,e)&&(S=x[e](e,n),O.attribs=n=S.attribs,void 0!==S.text&&(O.innerText=S.text),e!==S.tagName&&(O.name=e=S.tagName,l[s]=S.tagName)),a&&(S=a(e,n),O.attribs=n=S.attribs,e!==S.tagName&&(O.name=e=S.tagName,l[s]=S.tagName)),(!v(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iU(e,t))return!1;return!0}(c)||null!=t.nestingLimit&&s>=t.nestingLimit)&&(_=!0,c[s]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==g.indexOf(e)&&(f=!0,d=1),c[s]=!0),s++,_){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;p=h,h=""}h+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(O.innerText=""),(!i||iU(i,e)||i["*"])&&iq(n,function(n,a){if(!iF.test(a)||""===n&&!t.allowedEmptyAttributes.includes(a)&&(t.nonBooleanAttributes.includes(a)||t.nonBooleanAttributes.includes("*"))){delete O.attribs[a];return}var s=!1;if(!i||iU(i,e)&&-1!==i[e].indexOf(a)||i["*"]&&-1!==i["*"].indexOf(a)||iU(o,e)&&o[e].test(a)||o["*"]&&o["*"].test(a))s=!0;else if(i&&i[e]){var u=!0,c=!1,l=void 0;try{for(var f,d=i[e][Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var p=f.value;if(rh(p)&&p.name&&p.name===a){s=!0;var m="";if(!0===p.multiple){var v=n.split(" "),g=!0,x=!1,E=void 0;try{for(var S,k=v[Symbol.iterator]();!(g=(S=k.next()).done);g=!0){var _=S.value;-1!==p.values.indexOf(_)&&(""===m?m=_:m+=" "+_)}}catch(e){x=!0,E=e}finally{try{g||null==k.return||k.return()}finally{if(x)throw E}}}else p.values.indexOf(n)>=0&&(m=n);n=m}}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}}if(s){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(a)&&I(e,n)){delete O.attribs[a];return}if("script"===e&&"src"===a){var C=!0;try{var P=T(n);if(t.allowedScriptHostnames||t.allowedScriptDomains){var L=(t.allowedScriptHostnames||[]).find(function(e){return e===P.url.hostname}),D=(t.allowedScriptDomains||[]).find(function(e){return P.url.hostname===e||P.url.hostname.endsWith(".".concat(e))});C=L||D}}catch(e){C=!1}if(!C){delete O.attribs[a];return}}if("iframe"===e&&"src"===a){var B=!0;try{var R=T(n);if(R.isRelativeUrl)B=iU(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var M=(t.allowedIframeHostnames||[]).find(function(e){return e===R.url.hostname}),q=(t.allowedIframeDomains||[]).find(function(e){return R.url.hostname===e||R.url.hostname.endsWith(".".concat(e))});B=M||q}}catch(e){B=!1}if(!B){delete O.attribs[a];return}}if("srcset"===a)try{var U=rE(n);if(U.forEach(function(e){I("srcset",e.url)&&(e.evil=!0)}),(U=ij(U,function(e){return!e.evil})).length)n=ij(U,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),O.attribs[a]=n;else{delete O.attribs[a];return}}catch(e){delete O.attribs[a];return}if("class"===a){var j=y[e],F=y["*"],V=b[e],$=w[e],H=w["*"],z=[V,b["*"]].concat($,H).filter(function(e){return e});if(!(n=j&&F?N(n,rp(j,F),z):N(n,j||F,z)).length){delete O.attribs[a];return}}if("style"===a){if(t.parseStyleAttributes)try{var W=iB(e+" {"+n+"}",{map:!1});if(n=(function(e,t){if(!t)return e;var n,i=e.nodes[0];return(n=t[i.selector]&&t["*"]?rp(t[i.selector],t["*"]):t[i.selector]||t["*"])&&(e.nodes[0].nodes=i.nodes.reduce(function(e,t){return iU(n,t.prop)&&n[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(W,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===n.length){delete O.attribs[a];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+n+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete O.attribs[a];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}h+=" "+a,n&&n.length?h+='="'+A(n,!0)+'"':t.allowedEmptyAttributes.includes(a)&&(h+='=""')}else delete O.attribs[a]}),-1!==t.selfClosing.indexOf(e)?h+=" />":(h+=">",!O.innerText||C||t.textFilter||(h+=A(O.innerText),E=!0)),_&&(h=p+A(h),p="")},ontext:function(e){if(!f){var n,i=u[u.length-1];if(i&&(n=i.tag,e=void 0!==i.innerText?i.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||v(n)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===n||"style"===n))h+=e;else{var o=A(e,!1);t.textFilter&&!E?h+=t.textFilter(o,n):E||(h+=o)}}else e="";if(u.length){var a=u[u.length-1];a.text+=e}}},onclosetag:function(e,n){if(f){if(--d)return;f=!1}var i=u.pop();if(i){if(i.tag!==e){u.push(i);return}f=!!t.enforceHtmlBoundary&&"html"===e;var o=c[--s];if(o){if(delete c[s],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){i.updateParentNodeText();return}p=h,h=""}if(l[s]&&(e=l[s],delete l[s]),t.exclusiveFilter&&t.exclusiveFilter(i)){h=h.substr(0,i.tagPosition);return}if(i.updateParentNodeMediaChildren(),i.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||n&&!v(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){o&&(h=p,p="");return}h+="",o&&(h=p+A(h),p=""),E=!1}}},t.parser);return S.write(e),S.end(),h;function k(){h="",s=0,u=[],c={},l={},f=!1,d=0}function A(e,n){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),n&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),n&&(e=e.replace(/"/g,""")),e}function I(e,n){for(n=n.replace(/[\x00-\x20]+/g,"");;){var i=n.indexOf("",i+4);if(-1===o)break;n=n.substring(0,i)+n.substring(o+3)}var a=n.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!a)return!!n.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var s=a[1].toLowerCase();return iU(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(s):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(s)}function T(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",n=0;n<100;n++)t+="/".concat(n);var i=new URL(e,t);return{isRelativeUrl:i&&"relative-site"===i.hostname&&"relative:"===i.protocol,url:i}}function N(e,t,n){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||n.some(function(t){return t.test(e)})}).join(" "):e}}var i$={decodeEntities:!0};iV.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iV.simpleTransform=function(e,t,n){return n=void 0===n||n,t=t||{},function(i,o){var a;if(n)for(a in t)o[a]=t[a];else o=t;return{tagName:e,attribs:o}}};var iH={};n="millisecond",i="second",o="minute",a="hour",s="week",u="month",c="quarter",l="year",f="date",d="Invalid Date",h=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,p=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,m=function(e,t,n){var i=String(e);return!i||i.length>=t?e:""+Array(t+1-i.length).join(n)+e},(g={})[v="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],n=e%100;return"["+e+(t[(n-20)%10]||t[n]||"th")+"]"}},y="$isDayjsObject",b=function(e){return e instanceof S||!(!e||!e[y])},w=function e(t,n,i){var o;if(!t)return v;if("string"==typeof t){var a=t.toLowerCase();g[a]&&(o=a),n&&(g[a]=n,o=a);var s=t.split("-");if(!o&&s.length>1)return e(s[0])}else{var u=t.name;g[u]=t,o=u}return!i&&o&&(v=o),o||!i&&v},x=function(e,t){if(b(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new S(n)},(E={s:m,z:function(e){var t=-e.utcOffset(),n=Math.abs(t);return(t<=0?"+":"-")+m(Math.floor(n/60),2,"0")+":"+m(n%60,2,"0")},m:function e(t,n){if(t.date()=u)return v;n=r(f),i=[],","===n.slice(-1)?(n=n.replace(d,""),g()):function(){for(r(c),o="",a="in descriptor";;){if(s=e.charAt(m),"in descriptor"===a){if(t(s))o&&(i.push(o),o="",a="after descriptor");else if(","===s){m+=1,o&&i.push(o),g();return}else if("("===s)o+=s,a="in parens";else if(""===s){o&&i.push(o),g();return}else o+=s}else if("in parens"===a){if(")"===s)o+=s,a="in descriptor";else if(""===s){i.push(o),g();return}else o+=s}else if("after descriptor"===a){if(t(s));else if(""===s){g();return}else a="in descriptor",m-=1}m+=1}}()}function g(){var t,r,o,a,s,u,c,l,f,d=!1,m={};for(a=0;ae.length)&&(t=e.length);for(var r=0,n=Array(t);r",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var r=this.source;null==e&&(e=rL.isColorSupported);var n=function(e){return e},i=function(e){return e},o=function(e){return e};if(e){var a=rL.createColors(!0),s=a.bold,u=a.gray,c=a.red;i=function(e){return s(c(e))},n=function(e){return u(e)},rR&&(o=function(e){return rR(e)})}var l=r.split(/\r?\n/),f=Math.max(this.line-3,0),d=Math.min(this.line+2,l.length),h=String(d).length;return l.slice(f,d).map(function(e,r){var a=f+1+r,s=" "+(" "+a).slice(-h)+" | ";if(a===t.line){if(e.length>160){var u=Math.max(0,t.column-20),c=Math.max(t.column+20,t.endColumn+20),l=e.slice(u,c),d=n(s.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return i(">")+n(s)+o(l)+"\n "+d+i("^")}var p=n(s.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return i(">")+n(s)+o(e)+"\n "+p+i("^")}return" "+n(s)+o(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),r}(tZ(Error));rP=rM,rM.default=rM;var rq={},rU={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rj=/*#__PURE__*/function(){function e(t){tf(this,e),this.builder=t}return th(e,[{key:"atrule",value:function(e,t){var r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{var i=(e.raws.between||"")+(t?";":"");this.builder(r+n+i,e)}}},{key:"beforeAfter",value:function(e,t){r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r,n=e.parent,i=0;n&&"root"!==n.type;)i+=1,n=n.parent;if(r.includes("\n")){var o=this.raw(e,null,"indent");if(o.length)for(var a=0;a0&&"comment"===e.nodes[t].type;)t-=1;for(var r=this.raw(e,"semicolon"),n=0;n0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var r;return e.walkComments(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeDecl",value:function(e,t){var r;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(r){if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return(t=r.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(r){var n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){var i=r.raws.before.split("\n");return t=(t=i[i.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rq=rj,rj.default=rj;var rF={};function rV(e,t){new rq(t).stringify(e)}rF=rV,rV.default=rV,eE=Symbol("isClean"),eS=Symbol("my");var r$=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var r in tf(this,e),this.raws={},this[eE]=!1,this[eS]=!0,t)if("nodes"===r){this.nodes=[];var n=!0,i=!1,o=void 0;try{for(var a,s=t[r][Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;"function"==typeof u.clone?this.append(u.clone()):this.append(u)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}else this[r]=t[r]}return th(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,r){var n=new t.constructor;for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&"proxyCache"!==i){var o=t[i],a=void 0===o?"undefined":(0,tr._)(o);"parent"===i&&"object"===a?r&&(n[i]=r):"source"===i?n[i]=o:Array.isArray(o)?n[i]=o.map(function(t){return e(t,n)}):("object"===a&&null!==o&&(o=e(o)),n[i]=o)}return n}(this);for(var r in e)t[r]=e[r];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var r=this.rangeBy(t),n=r.end,i=r.start;return this.source.input.error(e,{column:i.column,line:i.line},{column:n.column,line:n.line},t)}return new rP(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,r){return e[t]===r||(e[t]=r,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[eE]=!0}},{key:"markDirty",value:function(){if(this[eE]){this[eE]=!1;for(var e=this;e=e.parent;)e[eE]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var r=this.source.start;if(e.index)r=this.positionInside(e.index,t);else if(e.word){var n=(t=this.toString()).indexOf(e.word);-1!==n&&(r=this.positionInside(n,t))}return r}},{key:"positionInside",value:function(e,t){for(var r=t||this.toString(),n=this.source.start.column,i=this.source.start.line,o=0;o0&&void 0!==arguments[0]?arguments[0]:rF;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,r){var n={node:this};for(var i in r)n[i]=r[i];return e.warn(t,n)}},{key:"proxyOf",get:function(){return this}}]),e}();rC=r$,r$.default=r$;var rH=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this,e)).type="comment",n}return r}(tZ(rC));r_=rH,rH.default=rH;var rz={},rW=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=rt(tG({},e),{value:String(e.value)})),(n=t.call(this,e)).type="decl",n}return th(r,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),r}(tZ(rC));rz=rW,rW.default=rW;var rG=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){return tf(this,r),t.apply(this,arguments)}return th(r,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),r=0;r1?t-1:0),i=1;i=e&&(this.indexes[r]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,r){return r||(r=t,t={}),this.walkDecls(function(n){(!t.props||t.props.includes(n.prop))&&(!t.fast||n.value.includes(t.fast))&&(n.value=n.value.replace(e,r))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,r){var n;try{n=e(t,r)}catch(e){throw t.addToError(e)}return!1!==n&&t.walk&&(n=t.walk(e)),n})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("atrule"===r.type&&e.test(r.name))return t(r,n)}):this.walk(function(r,n){if("atrule"===r.type&&r.name===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("atrule"===e.type)return t(e,r)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,r){if("comment"===t.type)return e(t,r)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("decl"===r.type&&e.test(r.prop))return t(r,n)}):this.walk(function(r,n){if("decl"===r.type&&r.prop===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("decl"===e.type)return t(e,r)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("rule"===r.type&&e.test(r.selector))return t(r,n)}):this.walk(function(r,n){if("rule"===r.type&&r.selector===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("rule"===e.type)return t(e,r)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),r}(tZ(rC));rG.registerParse=function(e){eA=e},rG.registerRule=function(e){eT=e},rG.registerAtRule=function(e){ek=e},rG.registerRoot=function(e){eI=e},rO=rG,rG.default=rG,rG.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,ek.prototype):"rule"===e.type?Object.setPrototypeOf(e,eT.prototype):"decl"===e.type?Object.setPrototypeOf(e,rz.prototype):"comment"===e.type?Object.setPrototypeOf(e,r_.prototype):"root"===e.type&&Object.setPrototypeOf(e,eI.prototype),e[eS]=!0,e.nodes&&e.nodes.forEach(function(e){rG.rebuild(e)})};var rY=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this,e)).type="atrule",n}return th(r,[{key:"append",value:function(){for(var e,t=arguments.length,n=Array(t),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return new eN(new eO,this,e).stringify()}}]),r}(rO);rJ.registerLazyResult=function(e){eN=e},rJ.registerProcessor=function(e){eO=e},rK=rJ,rJ.default=rJ;var rZ={};function rQ(e,t){if(null==e)return{};var r,n,i=function(e,t){if(null==e)return{};var r,n,i={},o=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}var rX={},r0=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",r=e;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r1=rR.isAbsolute,r3=rR.resolve,r2=rR.SourceMapConsumer,r5=rR.SourceMapGenerator,r8=rR.fileURLToPath,r6=rR.pathToFileURL,r4={},tr=ez("bbrsO");e_=function(e){var t,r,n=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");-1===r&&(r=t);var n=r===t?0:4-r%4;return[r,n]}(e),i=n[0],o=n[1],a=new ne((i+o)*3/4-o),s=0,u=o>0?i-4:i;for(r=0;r>16&255,a[s++]=t>>8&255,a[s++]=255&t;return 2===o&&(t=r7[e.charCodeAt(r)]<<2|r7[e.charCodeAt(r+1)]>>4,a[s++]=255&t),1===o&&(t=r7[e.charCodeAt(r)]<<10|r7[e.charCodeAt(r+1)]<<4|r7[e.charCodeAt(r+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t),a},eC=function(e){for(var t,r=e.length,n=r%3,i=[],o=0,a=r-n;o>18&63]+r9[n>>12&63]+r9[n>>6&63]+r9[63&n]);return i.join("")}(e,o,o+16383>a?a:o+16383));return 1===n?i.push(r9[(t=e[r-1])>>2]+r9[t<<4&63]+"=="):2===n&&i.push(r9[(t=(e[r-2]<<8)+e[r-1])>>10]+r9[t>>4&63]+r9[t<<2&63]+"="),i.join("")};for(var r9=[],r7=[],ne="undefined"!=typeof Uint8Array?Uint8Array:Array,nt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nr=0,nn=nt.length;nr>1,l=-7,f=r?i-1:0,d=r?-1:1,h=e[t+f];for(f+=d,o=h&(1<<-l)-1,h>>=-l,l+=s;l>0;o=256*o+e[t+f],f+=d,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+e[t+f],f+=d,l-=8);if(0===o)o=1-c;else{if(o===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),o-=c}return(h?-1:1)*a*Math.pow(2,o-n)},eL=function(e,t,r,n,i,o){var a,s,u,c=8*o-i-1,l=(1<>1,d=23===i?5960464477539062e-23:0,h=n?0:o-1,p=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(s=isNaN(t)?1:0,a=l):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),a+f>=1?t+=d/u:t+=d*Math.pow(2,1-f),t*u>=2&&(a++,u/=2),a+f>=l?(s=0,a=l):a+f>=1?(s=(t*u-1)*Math.pow(2,i),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),a=0));i>=8;e[r+h]=255&s,h+=p,s/=256,i-=8);for(a=a<0;e[r+h]=255&a,h+=p,a/=256,c-=8);e[r+h-p]|=128*m};var ni="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function no(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,na.prototype),t}function na(e,t,r){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nc(e)}return ns(e,t,r)}function ns(e,t,r){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!na.isEncoding(t))throw TypeError("Unknown encoding: "+t);var r=0|nh(e,t),n=no(r),i=n.write(e,t);return i!==r&&(n=n.slice(0,i)),n}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nR(e,Uint8Array)){var t=new Uint8Array(e);return nf(t.buffer,t.byteOffset,t.byteLength)}return nl(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)));if(nR(e,ArrayBuffer)||e&&nR(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nR(e,SharedArrayBuffer)||e&&nR(e.buffer,SharedArrayBuffer)))return nf(e,t,r);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var n=e.valueOf&&e.valueOf();if(null!=n&&n!==e)return na.from(n,t,r);var i=function(e){if(na.isBuffer(e)){var t,r=0|nd(e.length),n=no(r);return 0===n.length||e.copy(n,0,0,r),n}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?no(0):nl(e):"Buffer"===e.type&&Array.isArray(e.data)?nl(e.data):void 0}(e);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return na.from(e[Symbol.toPrimitive]("string"),t,r);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tr._)(e)))}function nu(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nc(e){return nu(e),no(e<0?0:0|nd(e))}function nl(e){for(var t=e.length<0?0:0|nd(e.length),r=no(t),n=0;n=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nh(e,t){if(na.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nR(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tr._)(e)));var r=e.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return nL(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return nD(e).length;default:if(i)return n?-1:nL(e).length;t=(""+t).toLowerCase(),i=!0}}function np(e,t,r){var n,i,o=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===r||r>this.length)&&(r=this.length),r<=0||(r>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,r){var n=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=t;o0x7fffffff?r=0x7fffffff:r<-0x80000000&&(r=-0x80000000),(o=r=+r)!=o&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return -1;r=e.length-1}else if(r<0){if(!i)return -1;r=0}if("string"==typeof t&&(t=na.from(t,n)),na.isBuffer(t))return 0===t.length?-1:ng(e,t,r,n,i);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):ng(e,[t],r,n,i);throw TypeError("val must be string, number or Buffer")}function ng(e,t,r,n,i){var o,a=1,s=e.length,u=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return -1;a=2,s/=2,u/=2,r/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var l=-1;for(o=r;os&&(r=s-u),o=r;o>=0;o--){for(var f=!0,d=0;d239?4:o>223?3:o>191?2:1;if(i+s<=r){var u=void 0,c=void 0,l=void 0,f=void 0;switch(s){case 1:o<128&&(a=o);break;case 2:(192&(u=e[i+1]))==128&&(f=(31&o)<<6|63&u)>127&&(a=f);break;case 3:u=e[i+1],c=e[i+2],(192&u)==128&&(192&c)==128&&(f=(15&o)<<12|(63&u)<<6|63&c)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[i+1],c=e[i+2],l=e[i+3],(192&u)==128&&(192&c)==128&&(192&l)==128&&(f=(15&o)<<18|(63&u)<<12|(63&c)<<6|63&l)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,n.push(a>>>10&1023|55296),a=56320|1023&a),n.push(a),i+=s}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var r="",n=0;nr)throw RangeError("Trying to access beyond buffer length")}function nw(e,t,r,n,i,o){if(!na.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw RangeError("Index out of range")}function nx(e,t,r,n,i){nO(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,r}function nE(e,t,r,n,i){nO(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r+7]=o,o>>=8,e[r+6]=o,o>>=8,e[r+5]=o,o>>=8,e[r+4]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r+3]=a,a>>=8,e[r+2]=a,a>>=8,e[r+1]=a,a>>=8,e[r]=a,r+8}function nS(e,t,r,n,i,o){if(r+n>e.length||r<0)throw RangeError("Index out of range")}function nk(e,t,r,n,i){return t=+t,r>>>=0,i||nS(e,t,r,4,34028234663852886e22,-34028234663852886e22),eL(e,t,r,n,23,4),r+4}function nA(e,t,r,n,i){return t=+t,r>>>=0,i||nS(e,t,r,8,17976931348623157e292,-17976931348623157e292),eL(e,t,r,n,52,8),r+8}na.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),na.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(na.prototype,"parent",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.buffer}}),Object.defineProperty(na.prototype,"offset",{enumerable:!0,get:function(){if(na.isBuffer(this))return this.byteOffset}}),na.poolSize=8192,na.from=function(e,t,r){return ns(e,t,r)},Object.setPrototypeOf(na.prototype,Uint8Array.prototype),Object.setPrototypeOf(na,Uint8Array),na.alloc=function(e,t,r){return(nu(e),e<=0)?no(e):void 0!==t?"string"==typeof r?no(e).fill(t,r):no(e).fill(t):no(e)},na.allocUnsafe=function(e){return nc(e)},na.allocUnsafeSlow=function(e){return nc(e)},na.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==na.prototype},na.compare=function(e,t){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),nR(t,Uint8Array)&&(t=na.from(t,t.offset,t.byteLength)),!na.isBuffer(e)||!na.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var r=e.length,n=t.length,i=0,o=Math.min(r,n);in.length?(na.isBuffer(o)||(o=na.from(o)),o.copy(n,i)):Uint8Array.prototype.set.call(n,o,i);else if(na.isBuffer(o))o.copy(n,i);else throw TypeError('"list" argument must be an Array of Buffers');i+=o.length}return n},na.byteLength=nh,na.prototype._isBuffer=!0,na.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},ni&&(na.prototype[ni]=na.prototype.inspect),na.prototype.compare=function(e,t,r,n,i){if(nR(e,Uint8Array)&&(e=na.from(e,e.offset,e.byteLength)),!na.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tr._)(e)));if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),t<0||r>e.length||n<0||i>this.length)throw RangeError("out of range index");if(n>=i&&t>=r)return 0;if(n>=i)return -1;if(t>=r)return 1;if(t>>>=0,r>>>=0,n>>>=0,i>>>=0,this===e)return 0;for(var o=i-n,a=r-t,s=Math.min(o,a),u=this.slice(n,i),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var i,o,a,s,u,c,l,f,d=this.length-t;if((void 0===r||r>d)&&(r=d),e.length>0&&(r<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var h=!1;;)switch(n){case"hex":return function(e,t,r,n){r=Number(r)||0;var i,o=e.length-r;n?(n=Number(n))>o&&(n=o):n=o;var a=t.length;for(n>a/2&&(n=a/2),i=0;i>8,i.push(r%256),i.push(n);return i}(e,this.length-l),this,l,f);default:if(h)throw TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),h=!0}},na.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},na.prototype.slice=function(e,t){var r=this.length;e=~~e,t=void 0===t?r:~~t,e<0?(e+=r)<0&&(e=0):e>r&&(e=r),t<0?(t+=r)<0&&(t=0):t>r&&(t=r),t>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=this[e],i=1,o=0;++o>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=this[e+--t],i=1;t>0&&(i*=256);)n+=this[e+--t]*i;return n},na.prototype.readUint8=na.prototype.readUInt8=function(e,t){return e>>>=0,t||nb(e,1,this.length),this[e]},na.prototype.readUint16LE=na.prototype.readUInt16LE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]|this[e+1]<<8},na.prototype.readUint16BE=na.prototype.readUInt16BE=function(e,t){return e>>>=0,t||nb(e,2,this.length),this[e]<<8|this[e+1]},na.prototype.readUint32LE=na.prototype.readUInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},na.prototype.readUint32BE=na.prototype.readUInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},na.prototype.readBigUInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&nC(e,this.length-8);var n=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],i=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*r;return BigInt(n)+(BigInt(i)<>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&nC(e,this.length-8);var n=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],i=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+r;return(BigInt(n)<>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=this[e],i=1,o=0;++o=(i*=128)&&(n-=Math.pow(2,8*t)),n},na.prototype.readIntBE=function(e,t,r){e>>>=0,t>>>=0,r||nb(e,t,this.length);for(var n=t,i=1,o=this[e+--n];n>0&&(i*=256);)o+=this[e+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},na.prototype.readInt8=function(e,t){return(e>>>=0,t||nb(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},na.prototype.readInt16LE=function(e,t){e>>>=0,t||nb(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?0xffff0000|r:r},na.prototype.readInt16BE=function(e,t){e>>>=0,t||nb(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?0xffff0000|r:r},na.prototype.readInt32LE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},na.prototype.readInt32BE=function(e,t){return e>>>=0,t||nb(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},na.prototype.readBigInt64LE=nq(function(e){n_(e>>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&nC(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(r<<24))<>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&nC(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||nb(e,4,this.length),eP(this,e,!0,23,4)},na.prototype.readFloatBE=function(e,t){return e>>>=0,t||nb(e,4,this.length),eP(this,e,!1,23,4)},na.prototype.readDoubleLE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!0,52,8)},na.prototype.readDoubleBE=function(e,t){return e>>>=0,t||nb(e,8,this.length),eP(this,e,!1,52,8)},na.prototype.writeUintLE=na.prototype.writeUIntLE=function(e,t,r,n){if(e=+e,t>>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nw(this,e,t,r,i,0)}var o=1,a=0;for(this[t]=255&e;++a>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nw(this,e,t,r,i,0)}var o=r-1,a=1;for(this[t+o]=255&e;--o>=0&&(a*=256);)this[t+o]=e/a&255;return t+r},na.prototype.writeUint8=na.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,1,255,0),this[t]=255&e,t+1},na.prototype.writeUint16LE=na.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeUint16BE=na.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeUint32LE=na.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},na.prototype.writeUint32BE=na.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigUInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeBigUInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),na.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nw(this,e,t,r,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+r},na.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nw(this,e,t,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+r},na.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},na.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},na.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},na.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},na.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nw(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},na.prototype.writeBigInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeBigInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nE(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),na.prototype.writeFloatLE=function(e,t,r){return nk(this,e,t,!0,r)},na.prototype.writeFloatBE=function(e,t,r){return nk(this,e,t,!1,r)},na.prototype.writeDoubleLE=function(e,t,r){return nA(this,e,t,!0,r)},na.prototype.writeDoubleBE=function(e,t,r){return nA(this,e,t,!1,r)},na.prototype.copy=function(e,t,r,n){if(!na.isBuffer(e))throw TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw RangeError("Index out of range");if(n<0)throw RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(i=t;i=n+4;r-=3)t="_".concat(e.slice(r-3,r)).concat(t);return"".concat(e.slice(0,r)).concat(t)}function nO(e,t,r,n,i,o){if(e>r||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat((o+1)*8).concat(s):">= -(2".concat(s," ** ").concat((o+1)*8-1).concat(s,") and < 2 ** ")+"".concat((o+1)*8-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(r).concat(s),new nI.ERR_OUT_OF_RANGE("value",a,e)}n_(i,"offset"),(void 0===n[i]||void 0===n[i+o])&&nC(i,n.length-(o+1))}function n_(e,t){if("number"!=typeof e)throw new nI.ERR_INVALID_ARG_TYPE(t,"number",e)}function nC(e,t,r){if(Math.floor(e)!==e)throw n_(e,r),new nI.ERR_OUT_OF_RANGE(r||"offset","an integer",e);if(t<0)throw new nI.ERR_BUFFER_OUT_OF_BOUNDS;throw new nI.ERR_OUT_OF_RANGE(r||"offset",">= ".concat(r?1:0," and <= ").concat(t),e)}nT("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nT("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tr._)(t))},TypeError),nT("ERR_OUT_OF_RANGE",function(e,t,r){var n='The value of "'.concat(e,'" is out of range.'),i=r;return Number.isInteger(r)&&Math.abs(r)>0x100000000?i=nN(String(r)):(void 0===r?"undefined":(0,tr._)(r))==="bigint"&&(i=String(r),(r>Math.pow(BigInt(2),BigInt(32))||r<-Math.pow(BigInt(2),BigInt(32)))&&(i=nN(i)),i+="n"),n+=" It must be ".concat(t,". Received ").concat(i)},RangeError);var nP=/[^+/0-9A-Za-z-_]/g;function nL(e,t){t=t||1/0;for(var r,n=e.length,i=null,o=[],a=0;a55295&&r<57344){if(!i){if(r>56319||a+1===n){(t-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;o.push(r)}else if(r<2048){if((t-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else if(r<1114112){if((t-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}else throw Error("Invalid code point")}return o}function nD(e){return e_(function(e){if((e=(e=e.split("=")[0]).trim().replace(nP,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nB(e,t,r,n){var i;for(i=0;i=t.length)&&!(i>=e.length);++i)t[i+r]=e[i];return i}function nR(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nM=function(){for(var e="0123456789abcdef",t=Array(256),r=0;r<16;++r)for(var n=16*r,i=0;i<16;++i)t[n+i]=e[r]+e[i];return t}();function nq(e){return"undefined"==typeof BigInt?nU:e}function nU(){throw Error("BigInt not supported")}var nj=rR.existsSync,nF=rR.readFileSync,nV=rR.dirname,n$=rR.join,nH=rR.SourceMapConsumer,nz=rR.SourceMapGenerator,nW=/*#__PURE__*/function(){function e(t,r){if(tf(this,e),!1!==r.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var n=r.map?r.map.prev:void 0,i=this.loadMap(r.from,n);!this.mapFile&&r.from&&(this.mapFile=r.from),this.mapFile&&(this.root=nV(this.mapFile)),i&&(this.text=i)}}return th(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new nH(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,r=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(r)return decodeURIComponent(e.substr(r[0].length));var n=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(n)return t=e.substr(n[0].length),na?na.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var r=e.lastIndexOf(t.pop()),n=e.indexOf("*/",r);r>-1&&n>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,n)))}}},{key:"loadFile",value:function(e){if(this.root=nV(e),nj(e))return this.mapFile=e,nF(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var r=t(e);if(r){var n=this.loadFile(r);if(!n)throw Error("Unable to load previous source map: "+r.toString());return n}}else if(t instanceof nH)return nz.fromSourceMap(t).toString();else if(t instanceof nz)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var i=this.annotation;return e&&(i=n$(nV(e),i)),this.loadFile(i)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r4=nW,nW.default=nW;var nG=Symbol("fromOffsetCache"),nY=!!(r2&&r5),nK=!!(r3&&r1),nJ=/*#__PURE__*/function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,r.from&&(!nK||/^\w+:\/\//.test(r.from)||r1(r.from)?this.file=r.from:this.file=r3(r.from)),nK&&nY){var n=new r4(this.css,r);if(n.text){this.map=n;var i=n.consumer().file;!this.file&&i&&(this.file=this.mapResolve(i))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return th(e,[{key:"error",value:function(e,t,r){var n,i,o,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var s=t,u=r;if("number"==typeof s.offset){var c=this.fromOffset(s.offset);t=c.line,r=c.col}else t=s.line,r=s.column;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);i=l.line,n=l.col}else i=u.line,n=u.column}else if(!r){var f=this.fromOffset(t);t=f.line,r=f.col}var d=this.origin(t,r,i,n);return(o=d?new rP(e,void 0===d.endLine?d.line:{column:d.column,line:d.line},void 0===d.endLine?d.column:{column:d.endColumn,line:d.endLine},d.source,d.file,a.plugin):new rP(e,void 0===i?t:{column:r,line:t},void 0===i?r:{column:n,line:i},this.css,this.file,a.plugin)).input={column:r,endColumn:n,endLine:i,line:t,source:this.css},this.file&&(r6&&(o.input.url=r6(this.file).toString()),o.input.file=this.file),o}},{key:"fromOffset",value:function(e){if(this[nG])s=this[nG];else{var t=this.css.split("\n");s=Array(t.length);for(var r=0,n=0,i=t.length;n=a)o=s.length-1;else for(var a,s,u,c=s.length-2;o>1)])c=u-1;else if(e>=s[u+1])o=u+1;else{o=u;break}return{col:e-s[o]+1,line:o+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r3(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,r,n){if(!this.map)return!1;var i,o,a=this.map.consumer(),s=a.originalPositionFor({column:t,line:e});if(!s.source)return!1;"number"==typeof r&&(i=a.originalPositionFor({column:n,line:r})),o=r1(s.source)?r6(s.source):new URL(s.source,this.map.consumer().sourceRoot||r6(this.map.mapFile));var u={column:s.column,endColumn:i&&i.column,endLine:i&&i.line,line:s.line,url:o.toString()};if("file:"===o.protocol){if(r8)u.file=r8(o);else throw Error("file: protocol is not available in this PostCSS build")}var c=a.sourceContentFor(s.source);return c&&(u.source=c),u}},{key:"toJSON",value:function(){for(var e={},t=0,r=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var u,c=i[Symbol.iterator]();!(o=(u=c.next()).done);o=!0)u.value.raws.before=t.raws.before}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}return i}},{key:"removeChild",value:function(e,t){var n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),rN(tJ(r.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eD(new eB,this,e).stringify()}}]),r}(rO);nQ.registerLazyResult=function(e){eD=e},nQ.registerProcessor=function(e){eB=e},nZ=nQ,nQ.default=nQ,rO.registerRoot(nQ);var nX={},n0={},n1={comma:function(e){return n1.split(e,[","],!0)},space:function(e){return n1.split(e,[" ","\n"," "])},split:function(e,t,r){var n=[],i="",o=!1,a=0,s=!1,u="",c=!1,l=!0,f=!1,d=void 0;try{for(var h,p=e[Symbol.iterator]();!(l=(h=p.next()).done);l=!0){var m=h.value;c?c=!1:"\\"===m?c=!0:s?m===u&&(s=!1):'"'===m||"'"===m?(s=!0,u=m):"("===m?a+=1:")"===m?a>0&&(a-=1):0===a&&t.includes(m)&&(o=!0),o?(""!==i&&n.push(i.trim()),i="",o=!1):i+=m}}catch(e){f=!0,d=e}finally{try{l||null==p.return||p.return()}finally{if(f)throw d}}return(r||""!==i)&&n.push(i.trim()),n}};n0=n1,n1.default=n1;var n3=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this,e)).type="rule",n.nodes||(n.nodes=[]),n}return th(r,[{key:"selectors",get:function(){return n0.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}}]),r}(rO);function n2(e,t){if(Array.isArray(e))return e.map(function(e){return n2(e)});var r=e.inputs,n=rQ(e,["inputs"]);if(r){t=[];var i=!0,o=!1,a=void 0;try{for(var s,u=r[Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value,l=rt(tG({},c),{__proto__:rX.prototype});l.map&&(l.map=rt(tG({},l.map),{__proto__:r4.prototype})),t.push(l)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}if(n.nodes&&(n.nodes=e.nodes.map(function(e){return n2(e,t)})),n.source){var f=n.source,d=f.inputId,h=rQ(f,["inputId"]);n.source=h,null!=d&&(n.source.input=t[d])}if("root"===n.type)return new nZ(n);if("decl"===n.type)return new rz(n);if("rule"===n.type)return new nX(n);if("comment"===n.type)return new r_(n);if("atrule"===n.type)return new rT(n);throw Error("Unknown node type: "+e.type)}nX=n3,n3.default=n3,rO.registerRule(n3),rZ=n2,n2.default=n2;var n5={};function n8(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r,n,i=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=i){var o=[],a=!0,s=!1;try{for(i=i.call(e);!(a=(r=i.next()).done)&&(o.push(r.value),!t||o.length!==t);a=!0);}catch(e){s=!0,n=e}finally{try{a||null==i.return||i.return()}finally{if(s)throw n}}return o}}(e,t)||rA(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eJ=(ez("h7Cmf"),ez("h7Cmf")),n6={},n4=rR.dirname,n9=rR.relative,n7=rR.resolve,ie=rR.sep,it=rR.SourceMapConsumer,ir=rR.SourceMapGenerator,ii=rR.pathToFileURL,io=!!(it&&ir),ia=!!(n4&&n7&&n9&&ie);n6=/*#__PURE__*/function(){function e(t,r,n,i){tf(this,e),this.stringify=t,this.mapOpts=n.map||{},this.root=r,this.opts=n,this.css=i,this.originalCSS=i,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return th(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,r=void 0;try{for(var n,i=this.previous()[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.toUrl(this.path(o.file)),s=o.root||n4(o.file),u=void 0;!1===this.mapOpts.sourcesContent?(u=new it(o.text)).sourcesContent&&(u.sourcesContent=null):u=o.consumer(),this.map.applySourceMap(u,a,this.toUrl(this.path(s)))}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),ia&&io&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=ir.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,r=this;this.css="",this.map=new ir({file:this.outputFile(),ignoreInvalidMapping:!0});var n=1,i=1,o="",a={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(s,u,c){if(r.css+=s,u&&"end"!==c&&(a.generated.line=n,a.generated.column=i-1,u.source&&u.source.start?(a.source=r.sourcePath(u),a.original.line=u.source.start.line,a.original.column=u.source.start.column-1):(a.source=o,a.original.line=1,a.original.column=0),r.map.addMapping(a)),(t=s.match(/\n/g))?(n+=t.length,e=s.lastIndexOf("\n"),i=s.length-e):i+=s.length,u&&"start"!==c){var l=u.parent||{raws:{}};(!("decl"===u.type||"atrule"===u.type&&!u.nodes)||u!==l.last||l.raws.semicolon)&&(u.source&&u.source.end?(a.source=r.sourcePath(u),a.original.line=u.source.end.line,a.original.column=u.source.end.column-1,a.generated.line=n,a.generated.column=i-2):(a.source=o,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=i-1),r.map.addMapping(a))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var r=this.opts.to?n4(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=n4(n7(r,this.mapOpts.annotation)));var n=n9(r,e);return this.memoizedPaths.set(e,n),n}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var r=t.source.input.map;e.previousMaps.includes(r)||e.previousMaps.push(r)}});else{var t=new rX(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(r){if(r.source){var n=r.source.input.from;if(n&&!t[n]){t[n]=!0;var i=e.usesFileUrls?e.toFileUrl(n):e.toUrl(e.path(n));e.map.setSourceContent(i,r.source.input.css)}}});else if(this.css){var r=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(r,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return na?na.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ii){var r=ii(e).toString();return this.memoizedFileURLs.set(e,r),r}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===ie&&(e=e.replace(/\\/g,"/"));var r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}]),e}();var is={},iu={},ic={},il=/[\t\n\f\r "#'()/;[\\\]{}]/g,id=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,ih=/.[\r\n"'(/\\]/,ip=/[\da-f]/i;ic=function(e){var t,r,n,i,o,a,s,u,c,l,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},d=e.css.valueOf(),h=f.ignoreErrors,p=d.length,m=0,v=[],g=[];function y(t){throw e.error("Unclosed "+t,m)}return{back:function(e){g.push(e)},endOfFile:function(){return 0===g.length&&m>=p},nextToken:function(e){if(g.length)return g.pop();if(!(m>=p)){var f=!!e&&e.ignoreUnclosed;switch(t=d.charCodeAt(m)){case 10:case 32:case 9:case 13:case 12:i=m;do i+=1,t=d.charCodeAt(i);while(32===t||10===t||9===t||13===t||12===t)a=["space",d.slice(m,i)],m=i-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var b=String.fromCharCode(t);a=[b,b,m];break;case 40:if(l=v.length?v.pop()[1]:"",c=d.charCodeAt(m+1),"url"===l&&39!==c&&34!==c&&32!==c&&10!==c&&9!==c&&12!==c&&13!==c){i=m;do{if(s=!1,-1===(i=d.indexOf(")",i+1))){if(h||f){i=m;break}y("bracket")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["brackets",d.slice(m,i+1),m,i],m=i}else i=d.indexOf(")",m+1),r=d.slice(m,i+1),-1===i||ih.test(r)?a=["(","(",m]:(a=["brackets",r,m,i],m=i);break;case 39:case 34:o=39===t?"'":'"',i=m;do{if(s=!1,-1===(i=d.indexOf(o,i+1))){if(h||f){i=m+1;break}y("string")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["string",d.slice(m,i+1),m,i],m=i;break;case 64:il.lastIndex=m+1,il.test(d),i=0===il.lastIndex?d.length-1:il.lastIndex-2,a=["at-word",d.slice(m,i+1),m,i],m=i;break;case 92:for(i=m,n=!0;92===d.charCodeAt(i+1);)i+=1,n=!n;if(t=d.charCodeAt(i+1),n&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(i+=1,ip.test(d.charAt(i)))){for(;ip.test(d.charAt(i+1));)i+=1;32===d.charCodeAt(i+1)&&(i+=1)}a=["word",d.slice(m,i+1),m,i],m=i;break;default:47===t&&42===d.charCodeAt(m+1)?(0===(i=d.indexOf("*/",m+2)+1)&&(h||f?i=d.length:y("comment")),a=["comment",d.slice(m,i+1),m,i]):(id.lastIndex=m+1,id.test(d),i=0===id.lastIndex?d.length-1:id.lastIndex-2,a=["word",d.slice(m,i+1),m,i],v.push(a)),m=i}return m++,a}},position:function(){return m}}};var im={empty:!0,space:!0};function iv(e,t){var r=new rX(e,t),n=new iu(r);try{n.parse()}catch(e){throw e}return n.root}iu=/*#__PURE__*/function(){function e(t){tf(this,e),this.input=t,this.root=new nZ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return th(e,[{key:"atrule",value:function(e){var t,r,n,i=new rT;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);for(var o=!1,a=!1,s=[],u=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),i.source.end.offset++,this.semicolon=!0;break}if("{"===t){a=!0;break}if("}"===t){if(s.length>0){for(n=s.length-1,r=s[n];r&&"space"===r[0];)r=s[--n];r&&(i.source.end=this.getPosition(r[3]||r[2]),i.source.end.offset++)}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),o&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),i.source.end.offset++,this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),a&&(i.nodes=[],this.current=i)}},{key:"checkMissedSemicolon",value:function(e){var t,r=this.colon(e);if(!1!==r){for(var n=0,i=r-1;i>=0&&("space"===(t=e[i])[0]||2!==(n+=1));i--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,r=!0,n=!1,i=void 0;try{for(var o,a,s,u=e.entries()[Symbol.iterator]();!(r=(s=u.next()).done);r=!0){var c=n8(s.value,2),l=c[0],f=c[1];if(a=f[0],"("===a&&(t+=1),")"===a&&(t-=1),0===t&&":"===a){if(o){if("word"===o[0]&&"progid"===o[1])continue;return l}this.doubleColon(f)}o=f}}catch(e){n=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(n)throw i}}return!1}},{key:"comment",value:function(e){var t=new r_;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{var n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=ic(this.input)}},{key:"decl",value:function(e,t){var r,n,i=new rz;this.init(i,e[0][2]);var o=e[e.length-1];for(";"===o[0]&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(o[3]||o[2]||function(e){for(var t=e.length-1;t>=0;t--){var r=e[t],n=r[3]||r[2];if(n)return n}}(e)),i.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){var a=e[0][0];if(":"===a||"space"===a||"comment"===a)break;i.prop+=e.shift()[1]}for(i.raws.between="";e.length;){if(":"===(r=e.shift())[0]){i.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),i.raws.between+=r[1]}("_"===i.prop[0]||"*"===i.prop[0])&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));for(var s=[];e.length&&("space"===(n=e[0][0])||"comment"===n);)s.push(e.shift());this.precheckMissedSemicolon(e);for(var u=e.length-1;u>=0;u--){if("!important"===(r=e[u])[1].toLowerCase()){i.important=!0;var c=this.stringFrom(e,u);" !important"!==(c=this.spacesFromEnd(e)+c)&&(i.raws.important=c);break}if("important"===r[1].toLowerCase()){for(var l=e.slice(0),f="",d=u;d>0;d--){var h=l[d][0];if(f.trim().startsWith("!")&&"space"!==h)break;f=l.pop()[1]+f}f.trim().startsWith("!")&&(i.important=!0,i.raws.important=f,e=l)}if("space"!==r[0]&&"comment"!==r[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(i.raws.between+=s.map(function(e){return e[1]}).join(""),s=[]),this.raw(i,"value",s.concat(e),t),i.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nX;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,r=null,n=!1,i=null,o=[],a=e[1].startsWith("--"),s=[],u=e;u;){if(r=u[0],s.push(u),"("===r||"["===r)i||(i=u),o.push("("===r?")":"]");else if(a&&n&&"{"===r)i||(i=u),o.push("}");else if(0===o.length){if(";"===r){if(n){this.decl(s,a);return}break}if("{"===r){this.rule(s);return}if("}"===r){this.tokenizer.back(s.pop()),t=!0;break}":"===r&&(n=!0)}else r===o[o.length-1]&&(o.pop(),0===o.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),o.length>0&&this.unclosedBracket(i),t&&n){if(!a)for(;s.length&&("space"===(u=s[s.length-1][0])||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,a)}else this.unknownWord(s)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,r,n){for(var i,o,a,s,u=r.length,c="",l=!0,f=0;f1&&void 0!==arguments[1]?arguments[1]:{};if(tf(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var n=r.node.rangeBy(r);this.line=n.start.line,this.column=n.start.column,this.endLine=n.end.line,this.endColumn=n.end.column}for(var i in r)this[i]=r[i]}return th(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();iy=ib,ib.default=ib;var iw=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.processor=t,this.messages=[],this.root=r,this.opts=n,this.css=void 0,this.map=void 0}return th(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var r=new iy(e,t);return this.messages.push(r),r}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();ig=iw,iw.default=iw;var ix={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},iE={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iS={Once:!0,postcssPlugin:!0,prepare:!0};function ik(e){return"object"==typeof e&&"function"==typeof e.then}function iA(e){var t=!1,r=ix[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function iI(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:iA(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iT(e){return e[eE]=!1,e.nodes&&e.nodes.forEach(function(e){return iT(e)}),e}var iN={},iO=/*#__PURE__*/function(){function e(t,r,n){var i,o=this;if(tf(this,e),this.stringified=!1,this.processed=!1,"object"==typeof r&&null!==r&&("root"===r.type||"document"===r.type))i=iT(r);else if(r instanceof e||r instanceof ig)i=iT(r.root),r.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=r.map);else{var a=is;n.syntax&&(a=n.syntax.parse),n.parser&&(a=n.parser),a.parse&&(a=a.parse);try{i=a(r,n)}catch(e){this.processed=!0,this.error=e}i&&!i[eS]&&rO.rebuild(i)}this.result=new ig(t,i,n),this.helpers=rt(tG({},iN),{postcss:iN,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tG({},e,e.prepare(o.result)):e})}return th(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,r,n){e.listeners[r]||(e.listeners[r]=[]),e.listeners[r].push([t,n])},r=!0,n=!1,i=void 0;try{for(var o,a=this.plugins[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("object"==typeof s)for(var u in s){if(!iE[u]&&/^[A-Z]/.test(u))throw Error("Unknown event ".concat(u," in ").concat(s.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iS[u]){if("object"==typeof s[u])for(var c in s[u])t(s,"*"===c?u:u+"-"+c.toLowerCase(),s[u][c]);else"function"==typeof s[u]&&t(s,u,s[u])}}}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eY(function(){var t,r,n,i,o,a,s,u,c,l,f,d,h,p,m,v;return(0,eJ.__generator)(this,function(g){switch(g.label){case 0:e.plugin=0,t=0,g.label=1;case 1:if(!(t0))return[3,13];if(!ik(s=e.visitTick(a)))return[3,12];g.label=9;case 9:return g.trys.push([9,11,,12]),[4,s];case 10:return g.sent(),[3,12];case 11:throw u=g.sent(),c=a[a.length-1].node,e.handleError(u,c);case 12:return[3,8];case 13:return[3,7];case 14:if(l=!0,f=!1,d=void 0,!e.listeners.OnceExit)return[3,22];g.label=15;case 15:g.trys.push([15,20,21,22]),h=function(){var t,r,n,i;return(0,eJ.__generator)(this,function(a){switch(a.label){case 0:r=(t=n8(m.value,2))[0],n=t[1],e.result.lastPlugin=r,a.label=1;case 1:if(a.trys.push([1,6,,7]),"document"!==o.type)return[3,3];return[4,Promise.all(o.nodes.map(function(t){return n(t,e.helpers)}))];case 2:return a.sent(),[3,5];case 3:return[4,n(o,e.helpers)];case 4:a.sent(),a.label=5;case 5:return[3,7];case 6:throw i=a.sent(),e.handleError(i);case 7:return[2]}})},p=e.listeners.OnceExit[Symbol.iterator](),g.label=16;case 16:if(l=(m=p.next()).done)return[3,19];return[5,(0,eJ.__values)(h())];case 17:g.sent(),g.label=18;case 18:return l=!0,[3,16];case 19:return[3,22];case 20:return v=g.sent(),f=!0,d=v,[3,22];case 21:try{l||null==p.return||p.return()}finally{if(f)throw d}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var r=this.result.root.nodes.map(function(r){return e.Once(r,t.helpers)});if(ik(r[0]))return Promise.all(r);return r}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rF;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var r=new n6(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,r=void 0;try{for(var n,i=this.plugins[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.runOnRoot(o);if(ik(a))throw this.getAsyncError()}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}if(this.prepareVisitors(),this.hasListener){for(var s=this.result.root;!s[eE];)s[eE]=!0,this.walkSync(s);if(this.listeners.OnceExit){var u=!0,c=!1,l=void 0;if("document"===s.type)try{for(var f,d=s.nodes[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var h=f.value;this.visitSync(this.listeners.OnceExit,h)}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}else this.visitSync(this.listeners.OnceExit,s)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=n8(o.value,2),u=s[0],c=s[1];this.result.lastPlugin=u;var l=void 0;try{l=c(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(ik(l))throw this.getAsyncError()}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],r=t.node,n=t.visitors;if("root"!==r.type&&"document"!==r.type&&!r.parent){e.pop();return}if(n.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tf(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return th(e,[{key:"normalize",value:function(e){var t=[],r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if(!0===s.postcss?s=s():s.postcss&&(s=s.postcss),"object"==typeof s&&Array.isArray(s.plugins))t=t.concat(s.plugins);else if("object"==typeof s&&s.postcssPlugin)t.push(s);else if("function"==typeof s)t.push(s);else if("object"==typeof s&&(s.parse||s.stringify));else throw Error(s+" is not a PostCSS plugin")}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n5(this,e,t):new iC(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iD(){for(var e=arguments.length,t=Array(e),r=0;r]+$/;function iV(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());var n,i,o,a,s,u,c,l,f,d="",h="";function p(e,t){var r=this;this.tag=e,this.attribs=t||{},this.tagPosition=d.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(s.length){var e=s[s.length-1];e.text+=r.text}},this.updateParentNodeMediaChildren=function(){s.length&&iR.includes(this.tag)&&s[s.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iV.defaults,t)).parser=Object.assign({},i$,t.parser);var m=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iM.forEach(function(e){m(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var v=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(n={},i={},iq(t.allowedAttributes,function(e,t){n[t]=[];var r=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rf(e).replace(/\\\*/g,".*")):n[t].push(e)}),r.length&&(i[t]=RegExp("^("+r.join("|")+")$"))}));var g={},y={},b={};iq(t.allowedClasses,function(e,t){if(n&&(iU(n,t)||(n[t]=[]),n[t].push("class")),g[t]=e,Array.isArray(e)){var r=[];g[t]=[],b[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rf(e).replace(/\\\*/g,".*")):e instanceof RegExp?b[t].push(e):g[t].push(e)}),r.length&&(y[t]=RegExp("^("+r.join("|")+")$"))}});var w={};iq(t.transformTags,function(e,t){var r;"function"==typeof e?r=e:"string"==typeof e&&(r=iV.simpleTransform(e)),"*"===t?o=r:w[t]=r});var x=!1;S();var E=new t$({onopentag:function(e,r){if(t.enforceHtmlBoundary&&"html"===e&&S(),l){f++;return}var E,N=new p(e,r);s.push(N);var O=!1,_=!!N.text;if(iU(w,e)&&(E=w[e](e,r),N.attribs=r=E.attribs,void 0!==E.text&&(N.innerText=E.text),e!==E.tagName&&(N.name=e=E.tagName,c[a]=E.tagName)),o&&(E=o(e,r),N.attribs=r=E.attribs,e!==E.tagName&&(N.name=e=E.tagName,c[a]=E.tagName)),(!m(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iU(e,t))return!1;return!0}(u)||null!=t.nestingLimit&&a>=t.nestingLimit)&&(O=!0,u[a]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==v.indexOf(e)&&(l=!0,f=1),u[a]=!0),a++,O){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;h=d,d=""}d+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(N.innerText=""),(!n||iU(n,e)||n["*"])&&iq(r,function(r,o){if(!iF.test(o)||""===r&&!t.allowedEmptyAttributes.includes(o)&&(t.nonBooleanAttributes.includes(o)||t.nonBooleanAttributes.includes("*"))){delete N.attribs[o];return}var a=!1;if(!n||iU(n,e)&&-1!==n[e].indexOf(o)||n["*"]&&-1!==n["*"].indexOf(o)||iU(i,e)&&i[e].test(o)||i["*"]&&i["*"].test(o))a=!0;else if(n&&n[e]){var s=!0,u=!1,c=void 0;try{for(var l,f=n[e][Symbol.iterator]();!(s=(l=f.next()).done);s=!0){var h=l.value;if(rh(h)&&h.name&&h.name===o){a=!0;var p="";if(!0===h.multiple){var m=r.split(" "),v=!0,w=!1,x=void 0;try{for(var E,S=m[Symbol.iterator]();!(v=(E=S.next()).done);v=!0){var O=E.value;-1!==h.values.indexOf(O)&&(""===p?p=O:p+=" "+O)}}catch(e){w=!0,x=e}finally{try{v||null==S.return||S.return()}finally{if(w)throw x}}}else h.values.indexOf(r)>=0&&(p=r);r=p}}}catch(e){u=!0,c=e}finally{try{s||null==f.return||f.return()}finally{if(u)throw c}}}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(o)&&A(e,r)){delete N.attribs[o];return}if("script"===e&&"src"===o){var _=!0;try{var C=I(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){var P=(t.allowedScriptHostnames||[]).find(function(e){return e===C.url.hostname}),L=(t.allowedScriptDomains||[]).find(function(e){return C.url.hostname===e||C.url.hostname.endsWith(".".concat(e))});_=P||L}}catch(e){_=!1}if(!_){delete N.attribs[o];return}}if("iframe"===e&&"src"===o){var D=!0;try{var B=I(r);if(B.isRelativeUrl)D=iU(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var R=(t.allowedIframeHostnames||[]).find(function(e){return e===B.url.hostname}),M=(t.allowedIframeDomains||[]).find(function(e){return B.url.hostname===e||B.url.hostname.endsWith(".".concat(e))});D=R||M}}catch(e){D=!1}if(!D){delete N.attribs[o];return}}if("srcset"===o)try{var q=rE(r);if(q.forEach(function(e){A("srcset",e.url)&&(e.evil=!0)}),(q=ij(q,function(e){return!e.evil})).length)r=ij(q,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),N.attribs[o]=r;else{delete N.attribs[o];return}}catch(e){delete N.attribs[o];return}if("class"===o){var U=g[e],j=g["*"],F=y[e],V=b[e],$=b["*"],H=[F,y["*"]].concat(V,$).filter(function(e){return e});if(!(r=U&&j?T(r,rp(U,j),H):T(r,U||j,H)).length){delete N.attribs[o];return}}if("style"===o){if(t.parseStyleAttributes)try{var z=iB(e+" {"+r+"}",{map:!1});if(r=(function(e,t){if(!t)return e;var r,n=e.nodes[0];return(r=t[n.selector]&&t["*"]?rp(t[n.selector],t["*"]):t[n.selector]||t["*"])&&(e.nodes[0].nodes=n.nodes.reduce(function(e,t){return iU(r,t.prop)&&r[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(z,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===r.length){delete N.attribs[o];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete N.attribs[o];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}d+=" "+o,r&&r.length?d+='="'+k(r,!0)+'"':t.allowedEmptyAttributes.includes(o)&&(d+='=""')}else delete N.attribs[o]}),-1!==t.selfClosing.indexOf(e)?d+=" />":(d+=">",!N.innerText||_||t.textFilter||(d+=k(N.innerText),x=!0)),O&&(d=h+k(d),h="")},ontext:function(e){if(!l){var r,n=s[s.length-1];if(n&&(r=n.tag,e=void 0!==n.innerText?n.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||m(r)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===r||"style"===r))d+=e;else{var i=k(e,!1);t.textFilter&&!x?d+=t.textFilter(i,r):x||(d+=i)}}else e="";if(s.length){var o=s[s.length-1];o.text+=e}}},onclosetag:function(e,r){if(l){if(--f)return;l=!1}var n=s.pop();if(n){if(n.tag!==e){s.push(n);return}l=!!t.enforceHtmlBoundary&&"html"===e;var i=u[--a];if(i){if(delete u[a],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){n.updateParentNodeText();return}h=d,d=""}if(c[a]&&(e=c[a],delete c[a]),t.exclusiveFilter&&t.exclusiveFilter(n)){d=d.substr(0,n.tagPosition);return}if(n.updateParentNodeMediaChildren(),n.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!m(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){i&&(d=h,h="");return}d+="",i&&(d=h+k(d),h=""),x=!1}}},t.parser);return E.write(e),E.end(),d;function S(){d="",a=0,s=[],u={},c={},l=!1,f=0}function k(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function A(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){var n=r.indexOf("",n+4);if(-1===i)break;r=r.substring(0,n)+r.substring(i+3)}var o=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!o)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var a=o[1].toLowerCase();return iU(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(a):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(a)}function I(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",r=0;r<100;r++)t+="/".concat(r);var n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function T(e,t,r){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||r.some(function(t){return t.test(e)})}).join(" "):e}}var i$={decodeEntities:!0};iV.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iV.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(n,i){var o;if(r)for(o in t)i[o]=t[o];else i=t;return{tagName:e,attribs:i}}};var iH={};r="millisecond",n="second",i="minute",o="hour",a="week",s="month",u="quarter",c="year",l="date",f="Invalid Date",d=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,p=function(e,t,r){var n=String(e);return!n||n.length>=t?e:""+Array(t+1-n.length).join(r)+e},(v={})[m="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],r=e%100;return"["+e+(t[(r-20)%10]||t[r]||"th")+"]"}},g="$isDayjsObject",y=function(e){return e instanceof E||!(!e||!e[g])},b=function e(t,r,n){var i;if(!t)return m;if("string"==typeof t){var o=t.toLowerCase();v[o]&&(i=o),r&&(v[o]=r,i=o);var a=t.split("-");if(!i&&a.length>1)return e(a[0])}else{var s=t.name;v[s]=t,i=s}return!n&&i&&(m=i),i||!n&&m},w=function(e,t){if(y(e))return e.clone();var r="object"==typeof t?t:{};return r.date=e,r.args=arguments,new E(r)},(x={s:p,z:function(e){var t=-e.utcOffset(),r=Math.abs(t);return(t<=0?"+":"-")+p(Math.floor(r/60),2,"0")+":"+p(r%60,2,"0")},m:function e(t,r){if(t.date() * @license MIT - */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,n){n=n||{bubbles:!1,cancelable:!1,detail:void 0};var i=t.createEvent("CustomEvent");return i.initCustomEvent(e,n.bubbles,n.cancelable,n.detail),i},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(u=e.target,s=Date.now(),n=e.touches[0].clientX,i=e.touches[0].clientY,o=0,a=0,c=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(n&&i){var t=e.touches[0].clientX,s=e.touches[0].clientY;o=n-t,a=i-s}},!1),t.addEventListener("touchend",function(e){if(u===e.target){var f=parseInt(l(u,"data-swipe-threshold","20"),10),d=l(u,"data-swipe-unit","px"),h=parseInt(l(u,"data-swipe-timeout","500"),10),p=Date.now()-s,m="",v=e.changedTouches||e.touches||[];if("vh"===d&&(f=Math.round(f/100*t.documentElement.clientHeight)),"vw"===d&&(f=Math.round(f/100*t.documentElement.clientWidth)),Math.abs(o)>Math.abs(a)?Math.abs(o)>f&&p0?"swiped-left":"swiped-right"):Math.abs(a)>f&&p0?"swiped-up":"swiped-down"),""!==m){var g={dir:m.replace(/swiped-/,""),touchType:(v[0]||{}).touchType||"direct",fingers:c,xStart:parseInt(n,10),xEnd:parseInt((v[0]||{}).clientX||-1,10),yStart:parseInt(i,10),yEnd:parseInt((v[0]||{}).clientY||-1,10)};u.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:g})),u.dispatchEvent(new CustomEvent(m,{bubbles:!0,cancelable:!0,detail:g}))}n=null,i=null,s=null}},!1);var n=null,i=null,o=null,a=null,s=null,u=null,c=0;function l(e,n,i){for(;e&&e!==t.documentElement;){var o=e.getAttribute(n);if(o)return o;e=e.parentNode}return i}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eM=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var n=[],i=t.exec(e);i;){var o=[];o.startIndex=t.lastIndex-i[0].length;for(var a=i.length,s=0;s5&&"xml"===i)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var n=1;for(t+=8;t"===e[t]&&0==--n)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iJ,t);var n=[],i=!1,o=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var a=0;a"!==e[a]&&" "!==e[a]&&" "!==e[a]&&"\n"!==e[a]&&"\r"!==e[a];a++)c+=e[a];if("/"===(c=c.trim())[c.length-1]&&(c=c.substring(0,c.length-1),a--),!eq(c))return i3("InvalidTag",0===c.trim().length?"Invalid space after '<'.":"Tag '"+c+"' is an invalid name.",i2(e,a));var l=function(e,t){for(var n="",i="",o=!1;t"===e[t]&&""===i){o=!0;break}n+=e[t]}return""===i&&{value:n,index:t,tagClosed:o}}(e,a);if(!1===l)return i3("InvalidAttr","Attributes for '"+c+"' have open quote.",i2(e,a));var f=l.value;if(a=l.index,"/"===f[f.length-1]){var d=a-f.length,h=i1(f=f.substring(0,f.length-1),t);if(!0!==h)return i3(h.err.code,h.err.msg,i2(e,d+h.err.line));i=!0}else if(u){if(!l.tagClosed)return i3("InvalidTag","Closing tag '"+c+"' doesn't have proper closing.",i2(e,a));if(f.trim().length>0)return i3("InvalidTag","Closing tag '"+c+"' can't have attributes or invalid starting.",i2(e,s));if(0===n.length)return i3("InvalidTag","Closing tag '"+c+"' has not been opened.",i2(e,s));var p=n.pop();if(c!==p.tagName){var m=i2(e,p.tagStartPos);return i3("InvalidTag","Expected closing tag '"+p.tagName+"' (opened in line "+m.line+", col "+m.col+") instead of closing tag '"+c+"'.",i2(e,s))}0==n.length&&(o=!0)}else{var v=i1(f,t);if(!0!==v)return i3(v.err.code,v.err.msg,i2(e,a-f.length+v.err.line));if(!0===o)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,a));-1!==t.unpairedTags.indexOf(c)||n.push({tagName:c,tagStartPos:s}),i=!0}for(a++;a0)||i3("InvalidXml","Invalid '"+JSON.stringify(n.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var n=eU(e,i0),i={},o=0;o0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var n={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var i,o,a,s,u,c,l,f,d,h=1,p=!1,m=!1;t"===e[t]){if(m?"-"===e[t-1]&&"-"===e[t-2]&&(m=!1,h--):h--,0===h)break}else"["===e[t]?p=!0:e[t]}else{if(p&&"!"===(i=e)[(o=t)+1]&&"E"===i[o+2]&&"N"===i[o+3]&&"T"===i[o+4]&&"I"===i[o+5]&&"T"===i[o+6]&&"Y"===i[o+7])t+=7,entityName=(d=n8(function(e,t){for(var n="";t1&&void 0!==arguments[1]?arguments[1]:{};if(n=Object.assign({},oi,n),!e||"string"!=typeof e)return e;var i=e.trim();if(void 0!==n.skipLike&&n.skipLike.test(i))return e;if(n.hex&&or.test(i))return Number.parseInt(i,16);var o=on.exec(i);if(!o)return e;var a=o[1],s=o[2],u=((t=o[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),c=o[4]||o[6];if(!n.leadingZeros&&s.length>0&&a&&"."!==i[2]||!n.leadingZeros&&s.length>0&&!a&&"."!==i[1])return e;var l=Number(i),f=""+l;return -1!==f.search(/[eE]/)||c?n.eNotation?l:e:-1!==i.indexOf(".")?"0"===f&&""===u?l:f===u?l:a&&f==="-"+u?l:e:s?u===f?l:a+u===f?l:e:i===f?l:i===a+f?l:e};var oo={};function oa(e){for(var t=Object.keys(e),n=0;n0)){s||(e=this.replaceEntitiesValue(e));var u=this.options.tagValueProcessor(t,e,n,o,a);return null==u?e:(void 0===u?"undefined":(0,tr._)(u))!==(void 0===e?"undefined":(0,tr._)(e))||u!==e?u:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),n="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=n+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;if("string"==typeof u&&t===u||u instanceof RegExp&&u.test(t))return!0}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,n){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var i=eU(e,oc),o=i.length,a={},s=0;s",a,"Closing Tag is not closed."),u=e.substring(a+2,s).trim();if(this.options.removeNSPrefix){var c=u.indexOf(":");-1!==c&&(u=u.substr(c+1))}this.options.transformTagName&&(u=this.options.transformTagName(u)),n&&(i=this.saveTextToParentTag(i,n,o));var l=o.substring(o.lastIndexOf(".")+1);if(u&&-1!==this.options.unpairedTags.indexOf(u))throw Error("Unpaired tag can not be used as closing tag: "));var f=0;l&&-1!==this.options.unpairedTags.indexOf(l)?(f=o.lastIndexOf(".",o.lastIndexOf(".")-1),this.tagsNodeStack.pop()):f=o.lastIndexOf("."),o=o.substring(0,f),n=this.tagsNodeStack.pop(),i="",a=s}else if("?"===e[a+1]){var d=og(e,a,!1,"?>");if(!d)throw Error("Pi Tag is not closed.");if(i=this.saveTextToParentTag(i,n,o),this.options.ignoreDeclaration&&"?xml"===d.tagName||this.options.ignorePiTags);else{var h=new i9(d.tagName);h.add(this.options.textNodeName,""),d.tagName!==d.tagExp&&d.attrExpPresent&&(h[":@"]=this.buildAttributesMap(d.tagExp,o,d.tagName)),this.addChild(n,h,o)}a=d.closeIndex+1}else if("!--"===e.substr(a+1,3)){var p=ov(e,"-->",a+4,"Comment is not closed.");if(this.options.commentPropName){var m=e.substring(a+4,p-2);i=this.saveTextToParentTag(i,n,o),n.add(this.options.commentPropName,[tW({},this.options.textNodeName,m)])}a=p}else if("!D"===e.substr(a+1,2)){var v=i7(e,a);this.docTypeEntities=v.entities,a=v.i}else if("!["===e.substr(a+1,2)){var g=ov(e,"]]>",a,"CDATA is not closed.")-2,y=e.substring(a+9,g);i=this.saveTextToParentTag(i,n,o);var b=this.parseTextData(y,n.tagname,o,!0,!1,!0,!0);void 0==b&&(b=""),this.options.cdataPropName?n.add(this.options.cdataPropName,[tW({},this.options.textNodeName,y)]):n.add(this.options.textNodeName,b),a=g+2}else{var w=og(e,a,this.options.removeNSPrefix),x=w.tagName,E=w.rawTagName,S=w.tagExp,k=w.attrExpPresent,A=w.closeIndex;this.options.transformTagName&&(x=this.options.transformTagName(x)),n&&i&&"!xml"!==n.tagname&&(i=this.saveTextToParentTag(i,n,o,!1));var I=n;if(I&&-1!==this.options.unpairedTags.indexOf(I.tagname)&&(n=this.tagsNodeStack.pop(),o=o.substring(0,o.lastIndexOf("."))),x!==t.tagname&&(o+=o?"."+x:x),this.isItStopNode(this.options.stopNodes,o,x)){var T="";if(S.length>0&&S.lastIndexOf("/")===S.length-1)"/"===x[x.length-1]?(x=x.substr(0,x.length-1),o=o.substr(0,o.length-1),S=x):S=S.substr(0,S.length-1),a=w.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(x))a=w.closeIndex;else{var N=this.readStopNodeData(e,E,A+1);if(!N)throw Error("Unexpected end of ".concat(E));a=N.i,T=N.tagContent}var O=new i9(x);x!==S&&k&&(O[":@"]=this.buildAttributesMap(S,o,x)),T&&(T=this.parseTextData(T,x,o,!0,k,!0,!0)),o=o.substr(0,o.lastIndexOf(".")),O.add(this.options.textNodeName,T),this.addChild(n,O,o)}else{if(S.length>0&&S.lastIndexOf("/")===S.length-1){"/"===x[x.length-1]?(x=x.substr(0,x.length-1),o=o.substr(0,o.length-1),S=x):S=S.substr(0,S.length-1),this.options.transformTagName&&(x=this.options.transformTagName(x));var _=new i9(x);x!==S&&k&&(_[":@"]=this.buildAttributesMap(S,o,x)),this.addChild(n,_,o),o=o.substr(0,o.lastIndexOf("."))}else{var C=new i9(x);this.tagsNodeStack.push(n),x!==S&&k&&(C[":@"]=this.buildAttributesMap(S,o,x)),this.addChild(n,C,o),n=C}i="",a=A}}}else i+=e[a];return t.child};function od(e,t,n){var i=this.options.updateTag(t.tagname,n,t[":@"]);!1===i||("string"==typeof i&&(t.tagname=i),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var n=this.docTypeEntities[t];e=e.replace(n.regx,n.val)}for(var i in this.lastEntities){var o=this.lastEntities[i];e=e.replace(o.regex,o.val)}if(this.options.htmlEntities)for(var a in this.htmlEntities){var s=this.htmlEntities[a];e=e.replace(s.regex,s.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,n,i){return e&&(void 0===i&&(i=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,n,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,i))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,n){var i="*."+n;for(var o in e){var a=e[o];if(i===a||t===a)return!0}return!1}function ov(e,t,n,i){var o=e.indexOf(t,n);if(-1!==o)return o+t.length-1;throw Error(i)}function og(e,t,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",o=function(e,t){for(var n,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",o="",a=t;a",n,"".concat(t," is not closed"));if(e.substring(n+2,a).trim()===t&&0==--o)return{tagContent:e.substring(i,n),i:a};n=a}else if("?"===e[n+1])n=ov(e,"?>",n+1,"StopNode is not closed.");else if("!--"===e.substr(n+1,3))n=ov(e,"-->",n+3,"StopNode is not closed.");else if("!["===e.substr(n+1,2))n=ov(e,"]]>",n,"StopNode is not closed.")-2;else{var s=og(e,n,">");s&&((s&&s.tagName)===t&&"/"!==s.tagExp[s.tagExp.length-1]&&o++,n=s.closeIndex)}}}function ob(e,t,n){if(t&&"string"==typeof e){var i=e.trim();return"true"===i||"false"!==i&&ot(e,n)}return eM(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,n,i){for(var o,a={},s=0;s0&&(a[n.textNodeName]=o):void 0!==o&&(a[n.textNodeName]=o),a}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var n=eR(e,t);if(!0!==n)throw Error("".concat(n.err.msg,":").concat(n.err.line,":").concat(n.err.col))}var i=new i4(this.options);i.addExternalEntities(this.externalEntities);var o=i.parseXml(e);return this.options.preserveOrder||void 0===o?o:eF(o,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var n="";if(e&&!t.ignoreAttributes){for(var i in e)if(e.hasOwnProperty(i)){var o=t.attributeValueProcessor(i,e[i]);!0===(o=oE(o,t))&&t.suppressBooleanAttributes?n+=" ".concat(i.substr(t.attributeNamePrefix.length)):n+=" ".concat(i.substr(t.attributeNamePrefix.length),'="').concat(o,'"')}}return n}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var n=0;n0&&(n="\n"),function e(t,n,i,o){for(var a="",s=!1,u=0;u"),s=!1;continue}if(l===n.commentPropName){a+=o+""),s=!0;continue}if("?"===l[0]){var h=ox(c[":@"],n),p="?xml"===l?"":o,m=c[l][0][n.textNodeName];m=0!==m.length?" "+m:"",a+=p+"<".concat(l).concat(m).concat(h,"?>"),s=!0;continue}var v=o;""!==v&&(v+=n.indentBy);var g=ox(c[":@"],n),y=o+"<".concat(l).concat(g),b=e(c[l],n,f,v);-1!==n.unpairedTags.indexOf(l)?n.suppressUnpairedNode?a+=y+">":a+=y+"/>":(!b||0===b.length)&&n.suppressEmptyNode?a+=y+"/>":b&&b.endsWith(">")?a+=y+">".concat(b).concat(o,""):(a+=y+">",b&&""!==o&&(b.includes("/>")||b.includes("")),s=!0}}return a}(e,t,"",n)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,n,i){var o=this.j2x(e,n+1,i.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,o.attrStr,n):this.buildObjectNode(o.val,t,o.attrStr,n)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,n){var i="",o="",a=n.join(".");for(var s in e)if(Object.prototype.hasOwnProperty.call(e,s)){if(void 0===e[s])this.isAttribute(s)&&(o+="");else if(null===e[s])this.isAttribute(s)?o+="":"?"===s[0]?o+=this.indentate(t)+"<"+s+"?"+this.tagEndChar:o+=this.indentate(t)+"<"+s+"/"+this.tagEndChar;else if(e[s]instanceof Date)o+=this.buildTextValNode(e[s],s,"",t);else if("object"!=typeof e[s]){var u=this.isAttribute(s);if(u&&!this.ignoreAttributesFn(u,a))i+=this.buildAttrPairStr(u,""+e[s]);else if(!u){if(s===this.options.textNodeName){var c=this.options.tagValueProcessor(s,""+e[s]);o+=this.replaceEntitiesValue(c)}else o+=this.buildTextValNode(e[s],s,"",t)}}else if(Array.isArray(e[s])){for(var l=e[s].length,f="",d="",h=0;h"+e+o:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===a.length?this.indentate(i)+"")+this.newLine:this.indentate(i)+"<"+t+n+a+this.tagEndChar+e+this.indentate(i)+o},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(i)+"")+this.newLine;if("?"===t[0])return this.indentate(i)+"<"+t+n+"?"+this.tagEndChar;var o=this.options.tagValueProcessor(t,e);return""===(o=this.replaceEntitiesValue(o))?this.indentate(i)+"<"+t+n+this.closeTag(t)+this.tagEndChar:this.indentate(i)+"<"+t+n+">"+o+"0&&this.options.processEntities)for(var t=0;t300;else{var oU=navigator.userAgent||"";oq.notKaiOS=!oU.includes("KaiOS")}var oj="",oF="https://corsproxy.io/?",oV={opml_url:"https://raw.githubusercontent.com/strukturart/feedolin/master/example.opml",opml_local:"",proxy_url:"https://corsproxy.io/?",cache_time:1e3},o$={},oH=[],oz=[];/*@__PURE__*/t(tt).getItem("read_articles").then(function(e){if(null===e)return oz=[],/*@__PURE__*/t(tt).setItem("read_articles",oz).then(function(){});oz=e}).catch(function(e){console.error("Error accessing localForage:",e)});var oW=function(){oK=[],e8("reload data",3e3),localStorage.setItem("last_channel_filter",o9),setTimeout(function(){o8()},3e3)};function oG(e){var n=[];oK.map(function(e,t){n.push(e.id)}),(oz=oz.filter(function(t){return n.includes(e)})).push(e),/*@__PURE__*/t(tt).setItem("read_articles",oz).then(function(){}).catch(function(e){console.error("Error updating localForage:",e)})}var oY=new DOMParser;("b2g"in navigator||"navigator.mozApps"in navigator)&&(oq.notKaiOS=!1),oq.notKaiOS||["http://127.0.0.1/api/v1/shared/core.js","http://127.0.0.1/api/v1/shared/session.js","http://127.0.0.1/api/v1/apps/service.js","http://127.0.0.1/api/v1/audiovolumemanager/service.js","./assets/js/kaiads.v5.min.js"].forEach(function(e){var t=document.createElement("script");t.type="text/javascript",t.src=e,document.head.appendChild(t)});var oK=[];oq.debug&&(window.onerror=function(e,t,n){return alert("Error message: "+e+"\nURL: "+t+"\nLine Number: "+n),!0});var oJ=function(){/*@__PURE__*/t(tt).getItem("settings").then(function(e){o$=e;var n=new URLSearchParams(window.location.href.split("?")[1]).get("code");if(n){var i=n.split("#")[0];if(n){/*@__PURE__*/t(tt).setItem("mastodon_code",i);var o=new Headers;o.append("Content-Type","application/x-www-form-urlencoded");var a=new URLSearchParams;a.append("code",i),a.append("scope","read"),a.append("grant_type","authorization_code"),a.append("redirect_uri","https://feedolin.strukturart.com"),a.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),a.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(o$.mastodon_server_url+"/oauth/token",{method:"POST",headers:o,body:a,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){o$.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",o$),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}}})};function oZ(e){for(var t=0,n=0;n0))return[3,5];o.label=1;case 1:return o.trys.push([1,3,,4]),[4,o2(n)];case 2:return o.sent(),o$.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",o$),[3,4];case 3:return o.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),o.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),o.label=8;case 8:return[2]}})}),function(e){return ei.apply(this,arguments)}),o3=function(e){var t=oY.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var n=t.querySelector("body");if(!n)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var i=0,o=n.querySelectorAll("outline"),a=[];return o.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var n=t.getAttribute("xmlUrl");n&&a.push({error:"",title:t.getAttribute("title")||"Untitled",url:n,index:i++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:a}},o2=(eo=eY(function(e){var n,i,o,a,s;return(0,eJ.__generator)(this,function(u){return n=0,i=e.length,o=!1,a=function(){o9=localStorage.getItem("last_channel_filter"),n===i&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oK).then(function(){console.log("feeds cached"),oK.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oH.indexOf(e.channel)&&e.channel&&oH.push(e.channel)}),oH.length>0&&!o&&(o9=localStorage.getItem("last_channel_filter")||oH[0],o=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},s=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,n){if(!(n>5)){var i={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?i.content+="
"):"video"===t.media_attachments[0].type?i.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(i.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(i.content=t.reblog.content,i.reblog=!0,i.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?i.content+="
"):"video"===t.reblog.media_attachments[0].type?i.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(i.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oK.push(i)}})}).catch(function(t){e.error=t}).finally(function(){n++,a()});else{var i=new XMLHttpRequest;new Date().getTime();var o=e.url;i.open("GET",oF+o,!0),i.onload=function(){if(200!==i.status){e.error=i.status,n++,a();return}var o=i.response;if(!o){e.error=i.status,n++,a();return}try{var u=oM.parse(o);u.feed&&u.feed.entry.forEach(function(n,i){if(i15)){var n={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?n.content+="
"):"video"===e.media_attachments[0].type?n.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(n.content=e.reblog.content,n.reblog=!0,n.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?n.content+="
"):"video"===e.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oK.push(n)}}),oH.push("Mastodon")})},o8=function(){o0(oF+o$.opml_url+"?time="+new Date),o$.opml_local&&o1(o$.opml_local),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o5()}).catch(function(e){alert(e)}),o9=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(o$=oV,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})),(o$=e).cache_time=o$.cache_time||1e3,o$.last_update?oq.last_update_duration=new Date/1e3-o$.last_update/1e3:oq.last_update_duration=3600,o$.opml_url||o$.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>o$.cache_time?(o8(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oK=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oH.indexOf(e.channel)&&e.channel&&oH.push(e.channel)}),oH.length&&(o9=localStorage.getItem("last_channel_filter")||oH[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),o0(oF+(o$=oV).opml_url),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})});var o6=document.getElementById("app"),o4=-1,o9=localStorage.getItem("last_channel_filter")||"",o7=0,ae=function(e){return /*@__PURE__*/t(iH).duration(e,"seconds").format("mm:ss")},at={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var n=e.attrs;oq.notKaiOS&&e9("","",""),at.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(at.videoElement);var i=n.url;i&&(at.videoElement.src=i,at.videoElement.play(),at.isPlaying=!0),at.videoElement.onloadedmetadata=function(){at.videoDuration=at.videoElement.duration,/*@__PURE__*/t(tn).redraw()},at.videoElement.ontimeupdate=function(){at.currentTime=at.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",at.handleKeydown)},onremove:function(){document.removeEventListener("keydown",at.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){at.isPlaying?at.videoElement.pause():at.videoElement.play(),at.isPlaying=!at.isPlaying},seek:function(e){var t=at.videoElement.currentTime;"left"===e?at.videoElement.currentTime=Math.max(0,t-at.seekAmount):"right"===e&&(at.videoElement.currentTime=Math.min(at.videoDuration,t+at.seekAmount))},view:function(e){e.attrs;var n=at.videoDuration>0?at.currentTime/at.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(ae(at.currentTime)," / ").concat(ae(at.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(n,"%")}})])])}},ar={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?ar.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:ar.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",ar.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?ar.togglePlayPause():"ArrowLeft"===e.key?ar.seek("left"):"ArrowRight"===e.key&&ar.seek("right")},togglePlayPause:function(){1===ar.player.getPlayerState()?ar.player.pauseVideo():ar.player.playVideo()},seek:function(e){var t=ar.player.getCurrentTime();"left"===e?ar.player.seekTo(Math.max(0,t-5),!0):"right"===e&&ar.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},an=document.createElement("audio");if(an.preload="auto","b2g"in navigator)try{an.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var ai={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var n=e.attrs;n.url&&an.src!==n.url&&(an.src=n.url,an.play().catch(function(){}),ai.isPlaying=!0),an.onloadedmetadata=function(){ai.audioDuration=an.duration,/*@__PURE__*/t(tn).redraw()},an.ontimeupdate=function(){ai.currentTime=an.currentTime,/*@__PURE__*/t(tn).redraw()},ai.isPlaying=!an.paused,document.addEventListener("keydown",ai.handleKeydown)},oncreate:function(){oq.player=!0,e9("","",""),e4("","",""),o$.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oB(6e4*o$.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){ai.togglePlayPause()}),document.addEventListener("swiped-left",function(){/*@__PURE__*/t(tn).route.get().startsWith("Audio")&&ai.seek("left")}),document.addEventListener("swiped-right",function(){ai.seek("right"),r.startsWith("Audio")&&ai.seek("right")})},onremove:function(){document.removeEventListener("keydown",ai.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ai.togglePlayPause():"ArrowLeft"===e.key?ai.seek("left"):"ArrowRight"===e.key&&ai.seek("right")},togglePlayPause:function(){ai.isPlaying?an.pause():an.play().catch(function(){}),ai.isPlaying=!ai.isPlaying},seek:function(e){var t=an.currentTime;"left"===e?an.currentTime=Math.max(0,t-ai.seekAmount):"right"===e&&(an.currentTime=Math.min(ai.audioDuration,t+ai.seekAmount))},view:function(e){e.attrs;var n=ai.audioDuration>0?ai.currentTime/ai.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oj.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(n,"%, white ").concat(n,"%)")}},["".concat(ae(ai.currentTime)," / ").concat(ae(ai.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(n,"%")}})])])}};function ao(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),n=t.top+t.height/2,i=e.parentNode;i;){if(i.scrollHeight>i.clientHeight||i.scrollWidth>i.clientWidth){var o=i.getBoundingClientRect();n=t.top-o.top+t.height/2;break}i=i.parentNode}i?i.scrollBy({left:0,top:n-i.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:n-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o6,"/intro",{"/article":{view:function(){var e=oK.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oj=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iH)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var n=t.dom;e.reblog&&n.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oX(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){aa()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:o$.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.opml_local_filename?(o$.opml_local="",o$.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var n=new FileReader;n.onload=function(){o3(n.result).error?e8("OPML file not valid",4e3):(o$.opml_local=n.result,o$.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3)}))},n.onerror=function(){e8("OPML file not valid",4e3)},n.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},o$.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",o$.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:o$.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(o$.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.mastodon_server_url="",o$.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",o$),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:o$.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",o$),o$.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=o$.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:o$.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),o$.opml_url=document.getElementById("url-opml").value,o$.proxy_url=document.getElementById("url-proxy").value;var e,n=document.getElementById("sleep-timer").value;n&&!isNaN(n)&&Number(n)>0?o$.sleepTimer=parseInt(n,10):o$.sleepTimer="",oq.mastodon_logged||(o$.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oJ()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oK.filter(function(e){return""===o9||o9===e.channel});return /*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o7=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o9),e.map(function(n,i){var o=oz.includes(n.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(o),"data-id":n.id,"data-type":n.type,oncreate:function(t){0==o7&&0==i?setTimeout(function(){t.dom.focus()},1200):n.id==o7&&setTimeout(function(){t.dom.focus(),ao()},1200),i==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+n.id),oG(n.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+n.id),oG(n.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},n.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iH)(n.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===n.reblog&&t.classList.add("reblog")}},oX(n.feed_title)),/*@__PURE__*/t(tn)("h3",oX(n.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ao()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eQ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,n){var i=e.split("/");return i=i[i.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:n,oncreate:function(e){0==n&&e.dom.focus()},onclick:function(){try{var n=navigator.b2g.getDeviceStorage("sdcard").get(e);n.onsuccess=function(){var e=new FileReader;e.onload=function(){o3(e.result).error?e8("OPML file not valid",4e3):(o$.opml_local=e.result,o$.opml_local_filename=i,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},n.onerror=function(e){}}catch(e){}}},i)}))}},"/AudioPlayerView":ai,"/VideoPlayerView":at,"/YouTubePlayerView":ar});var aa=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var n,i,o=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var n=document.activeElement.tabIndex+e,i=0;if(i=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;n<=i.length&&(0,i[n]).focus(),n>=i.length&&(0,i[0]).focus(),ao()};function a(e){l({key:e})}n=0,document.addEventListener("touchstart",function(e){n=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var t=1-Math.min(Math.abs(e.touches[0].pageX-n)/300,1);document.querySelector("body").style.opacity=t},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){a("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){a("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){a("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){a("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){a("*")});var s=!1;document.addEventListener("keydown",function(e){s||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(c=!1,i=setTimeout(function(){c=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oK=[],oW()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(c=!1),e.key),s=!0,setTimeout(function(){s=!1},300))});var u=!1;document.addEventListener("keyup",function(e){u||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(i),c||l(e)}(e),u=!0,setTimeout(function(){u=!1},300))}),document.addEventListener("swiped",function(e){var n=/*@__PURE__*/t(tn).route.get(),i=e.detail.dir;if("down"==i&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==i&&n.startsWith("/start")){--o4<1&&(o4=oH.length-1),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}if("left"==i&&n.startsWith("/start")){++o4>oH.length-1&&(o4=0),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var a=/*@__PURE__*/t(tn).route.param();a.index=0,/*@__PURE__*/t(tn).route.set("/start",a)}});var c=!1;function l(e){var n=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(n.startsWith("/start")){++o4>oH.length-1&&(o4=0),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ao()},500)}break;case"ArrowLeft":if(n.startsWith("/start")){--o4<0&&(o4=oH.length-1),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var a=/*@__PURE__*/t(tn).route.param();a.index=0,/*@__PURE__*/t(tn).route.set("/start",a),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ao()},500)}break;case"ArrowUp":o(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":o(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":n.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),n.startsWith("/article")&&("audio"==oj.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oj.enclosure["@_url"]))),"video"==oj.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oj.enclosure["@_url"]))),"youtube"==oj.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oj.youtubeid))));break;case"SoftLeft":case"Control":n.startsWith("/start")&&oW(),n.startsWith("/article")&&window.open(oj.url),n.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oB(6e4*o$.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(n.startsWith("/article")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(n.startsWith("/YouTubePlayerView")){var u=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+u)}if(n.startsWith("/localOPML")&&history.back(),n.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),n.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),n.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),n.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),n.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}n.startsWith("/Video")&&history.back(),n.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&o$.last_update?(oq.visibility=!0,new Date/1e3-o$.last_update/1e3>o$.cache_time&&(oK=[],e8("load new content",4e3),o8())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var n=window.performance.getEntriesByType("navigation"),i=window.performance.navigation?window.performance.navigation.type:null;(n.length&&"reload"===n[0].type||1===i)&&(e.preventDefault(),oK=[],e8("load new content",4e3),o8(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var as={};as=ez("e6gnT").getBundleURL("3BHab")+"sw.js";try{navigator.serviceWorker.register(as).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var n=e.data.oauth_success;if(console.log(n),n){var i=new Headers;i.append("Content-Type","application/x-www-form-urlencoded");var o=new URLSearchParams;o.append("code",n),o.append("scope","read"),o.append("grant_type","authorization_code"),o.append("redirect_uri","https://feedolin.strukturart.com"),o.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),o.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(o$.mastodon_server_url+"/oauth/token",{method:"POST",headers:i,body:o,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){o$.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",o$),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}}); \ No newline at end of file + */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eM=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iJ,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eq(u))return i3("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i2(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i3("InvalidAttr","Attributes for '"+u+"' have open quote.",i2(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i1(l=l.substring(0,l.length-1),t);if(!0!==d)return i3(d.err.code,d.err.msg,i2(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i3("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i2(e,o));if(l.trim().length>0)return i3("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i2(e,a));if(0===r.length)return i3("InvalidTag","Closing tag '"+u+"' has not been opened.",i2(e,a));var h=r.pop();if(u!==h.tagName){var p=i2(e,h.tagStartPos);return i3("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i2(e,a))}0==r.length&&(i=!0)}else{var m=i1(l,t);if(!0!==m)return i3(m.err.code,m.err.msg,i2(e,o-l.length+m.err.line));if(!0===i)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i3("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var r=eU(e,i0),n={},i=0;i0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n8(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},oi,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&or.test(n))return Number.parseInt(n,16);var i=on.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oo={};function oa(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tr._)(s))!==(void 0===e?"undefined":(0,tr._)(e))||s!==e?s:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eU(e,oc),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=og(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i9(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=ov(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tW({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i7(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=ov(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tW({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=og(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var T=this.readStopNodeData(e,x,k+1);if(!T)throw Error("Unexpected end of ".concat(x));o=T.i,I=T.tagContent}var N=new i9(w);w!==E&&S&&(N[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),N.add(this.options.textNodeName,I),this.addChild(r,N,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i9(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i9(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function od(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function ov(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function og(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=ov(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=ov(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=ov(e,"]]>",r,"StopNode is not closed.")-2;else{var a=og(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function ob(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&ot(e,r)}return eM(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i4(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:eF(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=oE(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ox(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ox(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o3(r)];case 2:return i.sent(),oV.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",oV),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o1=function(e){var t=oG.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o3=(ei=eY(function(e){var r,n,i,o,a;return(0,eJ.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o4=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oY).then(function(){console.log("feeds cached"),oY.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length>0&&!i&&(o4=localStorage.getItem("last_channel_filter")||o$[0],i=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oY.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oM.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oY.push(r)}}),o$.push("Mastodon")})},o5=function(){oX(oj+oV.opml_url+"?time="+new Date),oV.opml_local&&o0(oV.opml_local),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o2()}).catch(function(e){alert(e)}),o4=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(oV=oF,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})),(oV=e).cache_time=oV.cache_time||1e3,oV.last_update?oq.last_update_duration=new Date/1e3-oV.last_update/1e3:oq.last_update_duration=3600,oV.opml_url||oV.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>oV.cache_time?(o5(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oY=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length&&(o4=localStorage.getItem("last_channel_filter")||o$[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),oX(oj+(oV=oF).opml_url),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})});var o8=document.getElementById("app"),o6=-1,o4=localStorage.getItem("last_channel_filter")||"",o9=0,o7=function(e){return /*@__PURE__*/t(iH).duration(e,"seconds").format("mm:ss")},ae={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oq.notKaiOS&&e9("","",""),ae.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(ae.videoElement);var n=r.url;n&&(ae.videoElement.src=n,ae.videoElement.play(),ae.isPlaying=!0),ae.videoElement.onloadedmetadata=function(){ae.videoDuration=ae.videoElement.duration,/*@__PURE__*/t(tn).redraw()},ae.videoElement.ontimeupdate=function(){ae.currentTime=ae.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",ae.handleKeydown)},onremove:function(){document.removeEventListener("keydown",ae.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ae.togglePlayPause():"ArrowLeft"===e.key?ae.seek("left"):"ArrowRight"===e.key&&ae.seek("right")},togglePlayPause:function(){ae.isPlaying?ae.videoElement.pause():ae.videoElement.play(),ae.isPlaying=!ae.isPlaying},seek:function(e){var t=ae.videoElement.currentTime;"left"===e?ae.videoElement.currentTime=Math.max(0,t-ae.seekAmount):"right"===e&&(ae.videoElement.currentTime=Math.min(ae.videoDuration,t+ae.seekAmount))},view:function(e){e.attrs;var r=ae.videoDuration>0?ae.currentTime/ae.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(o7(ae.currentTime)," / ").concat(o7(ae.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},at={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?at.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:at.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",at.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){1===at.player.getPlayerState()?at.player.pauseVideo():at.player.playVideo()},seek:function(e){var t=at.player.getCurrentTime();"left"===e?at.player.seekTo(Math.max(0,t-5),!0):"right"===e&&at.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},ar=document.createElement("audio");if(ar.preload="auto","b2g"in navigator)try{ar.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var an=[];try{/*@__PURE__*/t(tt).getItem("hasPlayedAudio").then(function(e){an=e||[],console.log("Loaded hasPlayedAudio:",an)})}catch(e){console.error("Failed to load hasPlayedAudio:",e)}var ai=(eo=eY(function(e,r){var n;return(0,eJ.__generator)(this,function(i){return -1!==(n=an.findIndex(function(t){return t.url===e}))?an[n].time=r:an.push({url:e,time:r}),/*@__PURE__*/t(tt).setItem("hasPlayedAudio",an).then(function(){console.log(an)}),[2]})}),function(e,t){return eo.apply(this,arguments)}),ao=0,aa=0,as=0,au=0,ac=!1,al=null,af={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&ar.src!==r.url&&(ar.src=r.url,ar.play().catch(function(){}),af.isPlaying=!0,an.map(function(e){e.url===ar.src&&!0==confirm("contiune playing ?")&&(ar.currentTime=e.time)})),ar.onloadedmetadata=function(){af.audioDuration=ar.duration,/*@__PURE__*/t(tn).redraw()},ar.ontimeupdate=function(){af.currentTime=ar.currentTime,ai(ar.src,ar.currentTime),/*@__PURE__*/t(tn).redraw()},af.isPlaying=!ar.paused,document.addEventListener("keydown",af.handleKeydown)},oncreate:function(){var e=function(e){al||(af.seek(e),al=setInterval(function(){af.seek(e),document.querySelector(".audio-info").style.padding="20px"},1e3))},t=function(){al&&(clearInterval(al),al=null,document.querySelector(".audio-info").style.padding="10px")};e9("","",""),e4("","",""),oV.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oB(6e4*oV.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){af.togglePlayPause()}),document.addEventListener("touchstart",function(e){var t=e.touches[0];ao=t.clientX,aa=t.clientY}),document.addEventListener("touchmove",function(t){var r=t.touches[0];as=r.clientX,au=r.clientY;var n=as-ao,i=au-aa;Math.abs(n)>Math.abs(i)?n>30?(e("right"),ac=!0):n<-30&&(e("left"),ac=!0):i>30?console.log("Swiping down (not used in this context)"):i<-30&&console.log("Swiping up (not used in this context)")}),document.addEventListener("touchend",function(){ac&&(ac=!1,t())})},onremove:function(){document.removeEventListener("keydown",af.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?af.togglePlayPause():"ArrowLeft"===e.key?af.seek("left"):"ArrowRight"===e.key&&af.seek("right")},togglePlayPause:function(){af.isPlaying?ar.pause():ar.play().catch(function(){}),af.isPlaying=!af.isPlaying},seek:function(e){var t=ar.currentTime;"left"===e?ar.currentTime=Math.max(0,t-af.seekAmount):"right"===e&&(ar.currentTime=Math.min(af.audioDuration,t+af.seekAmount))},view:function(e){e.attrs;var r=af.audioDuration>0?af.currentTime/af.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o7(af.currentTime)," / ").concat(o7(af.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ad(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o8,"/intro",{"/article":{view:function(){var e=oY.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iH)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oQ(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){ah()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:oV.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.opml_local_filename?(oV.opml_local="",oV.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var r=new FileReader;r.onload=function(){o1(r.result).error?e8("OPML file not valid",4e3):(oV.opml_local=r.result,oV.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3)}))},r.onerror=function(){e8("OPML file not valid",4e3)},r.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},oV.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",oV.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:oV.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(oV.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.mastodon_server_url="",oV.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",oV),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oV.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",oV),oV.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oV.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:oV.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),oV.opml_url=document.getElementById("url-opml").value,oV.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?oV.sleepTimer=parseInt(r,10):oV.sleepTimer="",oq.mastodon_logged||(oV.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oK()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oY.filter(function(e){return""===o4||o4===e.channel});return /*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o9=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o4),e.map(function(r,n){var i=oH.includes(r.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o9&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o9&&setTimeout(function(){t.dom.focus(),ad()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iH)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oQ(r.feed_title)),/*@__PURE__*/t(tn)("h3",oQ(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ad()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eQ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o1(e.result).error?e8("OPML file not valid",4e3):(oV.opml_local=e.result,oV.opml_local_filename=n,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":af,"/VideoPlayerView":ae,"/YouTubePlayerView":at});var ah=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ad()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var n=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);/*@__PURE__*/t(tn).route.get().startsWith("/article")&&(document.querySelector("body").style.opacity=n)},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oY=[],oz()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tn).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o6<1&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var n=/*@__PURE__*/t(tn).route.param();n.index=0,/*@__PURE__*/t(tn).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o6<0&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowUp":i(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"video"==oU.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oz(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oB(6e4*oV.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oV.last_update?(oq.visibility=!0,new Date/1e3-oV.last_update/1e3>oV.cache_time&&(oY=[],e8("load new content",4e3),o5())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oY=[],e8("load new content",4e3),o5(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var ap={};ap=ez("e6gnT").getBundleURL("3BHab")+"sw.js";try{navigator.serviceWorker.register(ap).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var r=e.data.oauth_success;if(console.log(r),r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",oV),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}}); \ No newline at end of file diff --git a/docs/manifest.webmanifest b/docs/manifest.webmanifest index 51974fb..e52d740 100644 --- a/docs/manifest.webmanifest +++ b/docs/manifest.webmanifest @@ -24,7 +24,7 @@ ], "b2g_features": { - "version": "1.8.110", + "version": "1.8.112", "id": "feedolin", "subtitle": "RSS Reader and Mastodon Reader", "core": true, diff --git a/docs/sw.js b/docs/sw.js index e2aeddc..1a2b5e0 100644 --- a/docs/sw.js +++ b/docs/sw.js @@ -1 +1 @@ -!function(){function e(e,t,n,r,a,o,s){try{var c=e[o](s),i=c.value}catch(e){n(e);return}c.done?t(i):Promise.resolve(i).then(r,a)}"function"==typeof SuppressedError&&SuppressedError;var t,n,r=new BroadcastChannel("sw-messages");r.addEventListener("message",function(e){r.postMessage({test:e.data.test})}),self.addEventListener("systemmessage",(t=function(e){var t,n;return function(e,t){var n,r,a,o={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]},s=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return s.next=c(0),s.throw=c(1),s.return=c(2),"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function c(c){return function(i){return function(c){if(n)throw TypeError("Generator is already executing.");for(;s&&(s=0,c[0]&&(o=0)),o;)try{if(n=1,r&&(a=2&c[0]?r.return:c[0]?r.throw||((a=r.return)&&a.call(r),0):r.next)&&!(a=a.call(r,c[1])).done)return a;switch(r=0,a&&(c=[2&c[0],a.value]),c[0]){case 0:case 1:a=c;break;case 4:return o.label++,{value:c[1],done:!1};case 5:o.label++,r=c[1],c=[0];continue;case 7:c=o.ops.pop(),o.trys.pop();continue;default:if(!(a=(a=o.trys).length>0&&a[a.length-1])&&(6===c[0]||2===c[0])){o=0;continue}if(3===c[0]&&(!a||c[1]>a[0]&&c[1]0&&a[a.length-1])&&(6===c[0]||2===c[0])){o=0;continue}if(3===c[0]&&(!a||c[1]>a[0]&&c[1]