@piedata/pieui 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +11 -9
- package/dist/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.d.ts +2 -2
- package/dist/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.d.ts.map +1 -1
- package/dist/components/Chats/ChatCard/ui/components/Markdown.d.ts +0 -1
- package/dist/components/Chats/ChatCard/ui/components/Markdown.d.ts.map +1 -1
- package/dist/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.d.ts +2 -2
- package/dist/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.d.ts.map +1 -1
- package/dist/components/Containers/SequenceCard/ui/SequenceCard.d.ts.map +1 -1
- package/dist/components/Containers/UnionCard/ui/UnionCard.d.ts.map +1 -1
- package/dist/components/PieCard/index.d.ts.map +1 -1
- package/dist/components/PieRoot/index.d.ts +1 -2
- package/dist/components/PieRoot/index.d.ts.map +1 -1
- package/dist/components/PieRoot/types/index.d.ts +3 -0
- package/dist/components/PieRoot/types/index.d.ts.map +1 -1
- package/dist/components/PieTelegramRoot/index.d.ts.map +1 -1
- package/dist/components/UI/index.d.ts.map +1 -1
- package/dist/components/index.esm.js +14 -26
- package/dist/components/index.js +23 -36
- package/dist/index.d.ts +1 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +20 -32
- package/dist/index.js +33 -46
- package/dist/providers/CentrifugeIOInitProvider.d.ts.map +1 -1
- package/dist/providers/SocketIOInitProvider.d.ts.map +1 -1
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/util/ajaxCommonUtils.d.ts.map +1 -1
- package/dist/util/centrifuge.d.ts +1 -1
- package/dist/util/centrifuge.d.ts.map +1 -1
- package/dist/util/initializeComponents.d.ts.map +1 -1
- package/dist/util/pieConfig.d.ts +12 -0
- package/dist/util/pieConfig.d.ts.map +1 -0
- package/dist/util/registry.d.ts.map +1 -1
- package/dist/util/socket.d.ts +1 -1
- package/dist/util/socket.d.ts.map +1 -1
- package/dist/util/useIsSupported.d.ts +1 -1
- package/dist/util/useIsSupported.d.ts.map +1 -1
- package/dist/util/useWebApp.d.ts +2 -2
- package/dist/util/useWebApp.d.ts.map +1 -1
- package/dist/util/waitForSidAvailable.d.ts +1 -2
- package/dist/util/waitForSidAvailable.d.ts.map +1 -1
- package/dist/util/webrtcClient.d.ts.map +1 -1
- package/package.json +21 -18
- package/src/components/Buttons/AjaxButtonCard/index.ts +1 -0
- package/src/components/Buttons/AjaxButtonCard/types/index.ts +17 -0
- package/src/components/Buttons/AjaxButtonCard/ui/AjaxButtonCard.tsx +38 -0
- package/src/components/Chats/ChatCard/index.ts +1 -0
- package/src/components/Chats/ChatCard/types/annyang.d.ts +11 -0
- package/src/components/Chats/ChatCard/types/index.ts +59 -0
- package/src/components/Chats/ChatCard/ui/ChatCard.tsx +130 -0
- package/src/components/Chats/ChatCard/ui/components/AttachFileButton.tsx +46 -0
- package/src/components/Chats/ChatCard/ui/components/AttachedFileView.tsx +29 -0
- package/src/components/Chats/ChatCard/ui/components/ChatCardInput.tsx +177 -0
- package/src/components/Chats/ChatCard/ui/components/ChatOption.tsx +25 -0
- package/src/components/Chats/ChatCard/ui/components/Markdown.tsx +25 -0
- package/src/components/Chats/ChatCard/ui/components/MessageAvatar.tsx +17 -0
- package/src/components/Chats/ChatCard/ui/components/MessageCard.tsx +80 -0
- package/src/components/Chats/ChatCard/ui/components/MessageContent.tsx +27 -0
- package/src/components/Chats/ChatCard/ui/components/MessagesBoard.tsx +61 -0
- package/src/components/Chats/ChatCard/ui/components/Options.tsx +20 -0
- package/src/components/Chats/ChatCard/ui/components/ResizableTextarea.tsx +59 -0
- package/src/components/Chats/ChatCard/ui/components/SendButton.tsx +37 -0
- package/src/components/Chats/ChatCard/ui/components/VoiceListeningButton.tsx +35 -0
- package/src/components/Chats/ChatCard/ui/components/icons/AttachFileIcon.tsx +18 -0
- package/src/components/Chats/ChatCard/ui/components/icons/AttachedFileIcon.tsx +18 -0
- package/src/components/Chats/ChatCard/ui/components/icons/CancelFileIcon.tsx +14 -0
- package/src/components/Chats/ChatCard/ui/components/icons/DefaultAvatar.tsx +10 -0
- package/src/components/Chats/ChatCard/ui/components/icons/SendIcon.tsx +18 -0
- package/src/components/Chats/ChatCard/ui/components/icons/VoiceRecordIcon.tsx +15 -0
- package/src/components/Containers/AjaxGroupCard/index.ts +1 -0
- package/src/components/Containers/AjaxGroupCard/types/index.ts +17 -0
- package/src/components/Containers/AjaxGroupCard/ui/AjaxGroupCard.tsx +96 -0
- package/src/components/Containers/SequenceCard/index.ts +1 -0
- package/src/components/Containers/SequenceCard/types/index.ts +10 -0
- package/src/components/Containers/SequenceCard/ui/SequenceCard.tsx +32 -0
- package/src/components/Containers/UnionCard/index.ts +1 -0
- package/src/components/Containers/UnionCard/types/index.ts +8 -0
- package/src/components/Containers/UnionCard/ui/UnionCard.tsx +27 -0
- package/src/components/PieCard/index.tsx +149 -0
- package/src/components/PieCard/types/index.ts +18 -0
- package/src/components/PieRoot/index.tsx +154 -0
- package/src/components/PieRoot/types/index.ts +14 -0
- package/src/components/PieTelegramRoot/index.tsx +161 -0
- package/src/components/UI/index.tsx +70 -0
- package/src/components/index.ts +6 -0
- package/src/index.ts +15 -0
- package/src/providers/CentrifugeIOInitProvider.tsx +42 -0
- package/src/providers/SocketIOInitProvider.tsx +52 -0
- package/src/types/index.ts +139 -0
- package/src/util/ajaxCommonUtils.ts +137 -0
- package/src/util/centrifuge.ts +33 -0
- package/src/util/fallback.tsx +6 -0
- package/src/util/initializeComponents.ts +84 -0
- package/src/util/lazy.ts +25 -0
- package/src/util/mitt.ts +11 -0
- package/src/util/pieConfig.ts +43 -0
- package/src/util/registry.ts +81 -0
- package/src/util/socket.ts +24 -0
- package/src/util/sx2radium.ts +15 -0
- package/src/util/tailwindCommonUtils.ts +6 -0
- package/src/util/useIsSupported.ts +17 -0
- package/src/util/useOpenAIWebRTC.ts +176 -0
- package/src/util/useWebApp.ts +32 -0
- package/src/util/waitForSidAvailable.ts +21 -0
- package/src/util/webrtcClient.ts +247 -0
- package/dist/cli.d.ts +0 -3
- package/dist/cli.d.ts.map +0 -1
- package/dist/components/PieBaseRoot/index.d.ts +0 -5
- package/dist/components/PieBaseRoot/index.d.ts.map +0 -1
- package/dist/components/PieBaseRoot/types/index.d.ts +0 -6
- package/dist/components/PieBaseRoot/types/index.d.ts.map +0 -1
- package/dist/components/PieStaticRoot/index.d.ts +0 -5
- package/dist/components/PieStaticRoot/index.d.ts.map +0 -1
- package/dist/components/PieStaticRoot/types/index.d.ts +0 -7
- package/dist/components/PieStaticRoot/types/index.d.ts.map +0 -1
- package/dist/config/constant.d.ts +0 -10
- package/dist/config/constant.d.ts.map +0 -1
- package/dist/util/axiosWithCache.d.ts +0 -3
- package/dist/util/axiosWithCache.d.ts.map +0 -1
- package/dist/util/globalForm.d.ts +0 -3
- package/dist/util/globalForm.d.ts.map +0 -1
- package/dist/util/queryClient.d.ts +0 -3
- package/dist/util/queryClient.d.ts.map +0 -1
- package/dist/util/useBodyStyles.d.ts +0 -5
- package/dist/util/useBodyStyles.d.ts.map +0 -1
- package/dist/util/useImage.d.ts +0 -5
- package/dist/util/useImage.d.ts.map +0 -1
- package/dist/util/useScreenSize.d.ts +0 -6
- package/dist/util/useScreenSize.d.ts.map +0 -1
- package/dist/util/useTitle.d.ts +0 -2
- package/dist/util/useTitle.d.ts.map +0 -1
package/dist/components/index.js
CHANGED
|
@@ -1,48 +1,35 @@
|
|
|
1
|
-
var
|
|
2
|
-
`;return R.substr(0,R.length-2)},this.getRequestHeader=function(R){if(typeof R==="string"&&U[R])return U[R];return""},this.send=function(R){if(this.readyState!=this.OPENED)throw Error("INVALID_STATE_ERR: connection must be opened before send() is called");if(z)throw Error("INVALID_STATE_ERR: send has already been called");var P=!1,g=!1,M=KX.parse(H.url),h;switch(M.protocol){case"https:":P=!0;case"http:":h=M.hostname;break;case"file:":g=!0;break;case void 0:case"":h="localhost";break;default:throw Error("Protocol not supported.")}if(g){if(H.method!=="GET")throw Error("XMLHttpRequest: Only GET method is supported");if(H.async)W6.readFile(unescape(M.pathname),function(Q1,p1){if(Q1)Z.handleError(Q1,Q1.errno||-1);else Z.status=200,Z.responseText=p1.toString("utf8"),Z.response=p1,E(Z.DONE)});else try{this.response=W6.readFileSync(unescape(M.pathname)),this.responseText=this.response.toString("utf8"),this.status=200,E(Z.DONE)}catch(Q1){this.handleError(Q1,Q1.errno||-1)}return}var s=M.port||(P?443:80),i=M.pathname+(M.search?M.search:"");if(U.Host=h,!(P&&s===443||s===80))U.Host+=":"+M.port;if(H.user){if(typeof H.password>"u")H.password="";var o=new Buffer(H.user+":"+H.password);U.Authorization="Basic "+o.toString("base64")}if(H.method==="GET"||H.method==="HEAD")R=null;else if(R){U["Content-Length"]=Buffer.isBuffer(R)?R.length:Buffer.byteLength(R);var a=Object.keys(U);if(!a.some(function(Q1){return Q1.toLowerCase()==="content-type"}))U["Content-Type"]="text/plain;charset=UTF-8"}else if(H.method==="POST")U["Content-Length"]=0;var t=$.agent||!1,_={host:h,port:s,path:i,method:H.method,headers:U,agent:t};if(P)_.pfx=$.pfx,_.key=$.key,_.passphrase=$.passphrase,_.cert=$.cert,_.ca=$.ca,_.ciphers=$.ciphers,_.rejectUnauthorized=$.rejectUnauthorized===!1?!1:!0;if(L=!1,H.async){var m=P?J.request:G.request;z=!0,Z.dispatchEvent("readystatechange");var F=function(Q1){if(Y=Q1,Y.statusCode===302||Y.statusCode===303||Y.statusCode===307){H.url=Y.headers.location;var p1=KX.parse(H.url);h=p1.hostname;var U0={hostname:p1.hostname,port:p1.port,path:p1.path,method:Y.statusCode===303?"GET":H.method,headers:U};if(P)U0.pfx=$.pfx,U0.key=$.key,U0.passphrase=$.passphrase,U0.cert=$.cert,U0.ca=$.ca,U0.ciphers=$.ciphers,U0.rejectUnauthorized=$.rejectUnauthorized===!1?!1:!0;X=m(U0,F).on("error",J1),X.end();return}E(Z.HEADERS_RECEIVED),Z.status=Y.statusCode,Y.on("data",function(i0){if(i0){var I1=Buffer.from(i0);Z.response=Buffer.concat([Z.response,I1])}if(z)E(Z.LOADING)}),Y.on("end",function(){if(z)z=!1,E(Z.DONE),Z.responseText=Z.response.toString("utf8")}),Y.on("error",function(i0){Z.handleError(i0)})},J1=function(Q1){if(X.reusedSocket&&Q1.code==="ECONNRESET")return m(_,F).on("error",J1);Z.handleError(Q1)};if(X=m(_,F).on("error",J1),$.autoUnref)X.on("socket",(Q1)=>{Q1.unref()});if(R)X.write(R);X.end(),Z.dispatchEvent("loadstart")}else{var l=".node-xmlhttprequest-content-"+process.pid,F1=".node-xmlhttprequest-sync-"+process.pid;W6.writeFileSync(F1,"","utf8");var w1="var http = require('http'), https = require('https'), fs = require('fs');var doRequest = http"+(P?"s":"")+".request;var options = "+JSON.stringify(_)+";var responseText = '';var responseData = Buffer.alloc(0);var req = doRequest(options, function(response) {response.on('data', function(chunk) { var data = Buffer.from(chunk); responseText += data.toString('utf8'); responseData = Buffer.concat([responseData, data]);});response.on('end', function() {fs.writeFileSync('"+l+"', JSON.stringify({err: null, data: {statusCode: response.statusCode, headers: response.headers, text: responseText, data: responseData.toString('base64')}}), 'utf8');fs.unlinkSync('"+F1+"');});response.on('error', function(error) {fs.writeFileSync('"+l+"', 'NODE-XMLHTTPREQUEST-ERROR:' + JSON.stringify(error), 'utf8');fs.unlinkSync('"+F1+"');});}).on('error', function(error) {fs.writeFileSync('"+l+"', 'NODE-XMLHTTPREQUEST-ERROR:' + JSON.stringify(error), 'utf8');fs.unlinkSync('"+F1+"');});"+(R?"req.write('"+JSON.stringify(R).slice(1,-1).replace(/'/g,"\\'")+"');":"")+"req.end();",A=uL(process.argv[0],["-e",w1]),O0;while(W6.existsSync(F1));if(Z.responseText=W6.readFileSync(l,"utf8"),A.stdin.end(),W6.unlinkSync(l),Z.responseText.match(/^NODE-XMLHTTPREQUEST-ERROR:/)){var M0=JSON.parse(Z.responseText.replace(/^NODE-XMLHTTPREQUEST-ERROR:/,""));Z.handleError(M0,503)}else{Z.status=Z.responseText.replace(/^NODE-XMLHTTPREQUEST-STATUS:([0-9]*),.*/,"$1");var N=JSON.parse(Z.responseText.replace(/^NODE-XMLHTTPREQUEST-STATUS:[0-9]*,(.*)/,"$1"));Y={statusCode:Z.status,headers:N.data.headers},Z.responseText=N.data.text,Z.response=Buffer.from(N.data.data,"base64"),E(Z.DONE,!0)}}},this.handleError=function(R,P){this.status=P||0,this.statusText=R,this.responseText=R.stack,L=!0,E(this.DONE)},this.abort=function(){if(X)X.abort(),X=null;if(U=Object.assign({},q),this.responseText="",this.responseXML="",this.response=Buffer.alloc(0),L=V=!0,this.readyState!==this.UNSENT&&(this.readyState!==this.OPENED||z)&&this.readyState!==this.DONE)z=!1,E(this.DONE);this.readyState=this.UNSENT},this.addEventListener=function(R,P){if(!(R in B))B[R]=[];B[R].push(P)},this.removeEventListener=function(R,P){if(R in B)B[R]=B[R].filter(function(g){return g!==P})},this.dispatchEvent=function(R){if(typeof Z["on"+R]==="function")if(this.readyState===this.DONE&&H.async)setTimeout(function(){Z["on"+R]()},0);else Z["on"+R]();if(R in B)for(let P=0,g=B[R].length;P<g;P++)if(this.readyState===this.DONE)setTimeout(function(){B[R][P].call(Z)},0);else B[R][P].call(Z)};var E=function(R){if(Z.readyState===R||Z.readyState===Z.UNSENT&&V)return;if(Z.readyState=R,H.async||Z.readyState<Z.OPENED||Z.readyState===Z.DONE)Z.dispatchEvent("readystatechange");if(Z.readyState===Z.DONE){let P;if(V)P="abort";else if(L)P="error";else P="load";Z.dispatchEvent(P),Z.dispatchEvent("loadend")}}}});var x5=O((OX)=>{OX.Emitter=i1;function i1($){if($)return pL($)}function pL($){for(var Z in i1.prototype)$[Z]=i1.prototype[Z];return $}i1.prototype.on=i1.prototype.addEventListener=function($,Z){return this._callbacks=this._callbacks||{},(this._callbacks["$"+$]=this._callbacks["$"+$]||[]).push(Z),this};i1.prototype.once=function($,Z){function G(){this.off($,G),Z.apply(this,arguments)}return G.fn=Z,this.on($,G),this};i1.prototype.off=i1.prototype.removeListener=i1.prototype.removeAllListeners=i1.prototype.removeEventListener=function($,Z){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var G=this._callbacks["$"+$];if(!G)return this;if(arguments.length==1)return delete this._callbacks["$"+$],this;var J;for(var X=0;X<G.length;X++)if(J=G[X],J===Z||J.fn===Z){G.splice(X,1);break}if(G.length===0)delete this._callbacks["$"+$];return this};i1.prototype.emit=function($){this._callbacks=this._callbacks||{};var Z=Array(arguments.length-1),G=this._callbacks["$"+$];for(var J=1;J<arguments.length;J++)Z[J-1]=arguments[J];if(G){G=G.slice(0);for(var J=0,X=G.length;J<X;++J)G[J].apply(this,Z)}return this};i1.prototype.emitReserved=i1.prototype.emit;i1.prototype.listeners=function($){return this._callbacks=this._callbacks||{},this._callbacks["$"+$]||[]};i1.prototype.hasListeners=function($){return!!this.listeners($).length}});var jX=O((Zj,EX)=>{var L6=1000,z6=L6*60,A6=z6*60,h5=A6*24,aL=h5*7,nL=h5*365.25;EX.exports=function($,Z){Z=Z||{};var G=typeof $;if(G==="string"&&$.length>0)return sL($);else if(G==="number"&&isFinite($))return Z.long?tL($):oL($);throw Error("val is not a non-empty string or a valid number. val="+JSON.stringify($))};function sL($){if($=String($),$.length>100)return;var Z=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec($);if(!Z)return;var G=parseFloat(Z[1]),J=(Z[2]||"ms").toLowerCase();switch(J){case"years":case"year":case"yrs":case"yr":case"y":return G*nL;case"weeks":case"week":case"w":return G*aL;case"days":case"day":case"d":return G*h5;case"hours":case"hour":case"hrs":case"hr":case"h":return G*A6;case"minutes":case"minute":case"mins":case"min":case"m":return G*z6;case"seconds":case"second":case"secs":case"sec":case"s":return G*L6;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return G;default:return}}function oL($){var Z=Math.abs($);if(Z>=h5)return Math.round($/h5)+"d";if(Z>=A6)return Math.round($/A6)+"h";if(Z>=z6)return Math.round($/z6)+"m";if(Z>=L6)return Math.round($/L6)+"s";return $+"ms"}function tL($){var Z=Math.abs($);if(Z>=h5)return R8($,Z,h5,"day");if(Z>=A6)return R8($,Z,A6,"hour");if(Z>=z6)return R8($,Z,z6,"minute");if(Z>=L6)return R8($,Z,L6,"second");return $+" ms"}function R8($,Z,G,J){var X=Z>=G*1.5;return Math.round($/G)+" "+J+(X?"s":"")}});var y$=O((Gj,SX)=>{function eL($){G.debug=G,G.default=G,G.coerce=q,G.disable=H,G.enable=X,G.enabled=Q,G.humanize=jX(),G.destroy=U,Object.keys($).forEach((K)=>{G[K]=$[K]}),G.names=[],G.skips=[],G.formatters={};function Z(K){let W=0;for(let z=0;z<K.length;z++)W=(W<<5)-W+K.charCodeAt(z),W|=0;return G.colors[Math.abs(W)%G.colors.length]}G.selectColor=Z;function G(K){let W,z=null,L,V;function B(...I){if(!B.enabled)return;let D=B,E=Number(new Date),R=E-(W||E);if(D.diff=R,D.prev=W,D.curr=E,W=E,I[0]=G.coerce(I[0]),typeof I[0]!=="string")I.unshift("%O");let P=0;I[0]=I[0].replace(/%([a-zA-Z%])/g,(M,h)=>{if(M==="%%")return"%";P++;let s=G.formatters[h];if(typeof s==="function"){let i=I[P];M=s.call(D,i),I.splice(P,1),P--}return M}),G.formatArgs.call(D,I),(D.log||G.log).apply(D,I)}if(B.namespace=K,B.useColors=G.useColors(),B.color=G.selectColor(K),B.extend=J,B.destroy=G.destroy,Object.defineProperty(B,"enabled",{enumerable:!0,configurable:!1,get:()=>{if(z!==null)return z;if(L!==G.namespaces)L=G.namespaces,V=G.enabled(K);return V},set:(I)=>{z=I}}),typeof G.init==="function")G.init(B);return B}function J(K,W){let z=G(this.namespace+(typeof W>"u"?":":W)+K);return z.log=this.log,z}function X(K){G.save(K),G.namespaces=K,G.names=[],G.skips=[];let W=(typeof K==="string"?K:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(let z of W)if(z[0]==="-")G.skips.push(z.slice(1));else G.names.push(z)}function Y(K,W){let z=0,L=0,V=-1,B=0;while(z<K.length)if(L<W.length&&(W[L]===K[z]||W[L]==="*"))if(W[L]==="*")V=L,B=z,L++;else z++,L++;else if(V!==-1)L=V+1,B++,z=B;else return!1;while(L<W.length&&W[L]==="*")L++;return L===W.length}function H(){let K=[...G.names,...G.skips.map((W)=>"-"+W)].join(",");return G.enable(""),K}function Q(K){for(let W of G.skips)if(Y(K,W))return!1;for(let W of G.names)if(Y(K,W))return!0;return!1}function q(K){if(K instanceof Error)return K.stack||K.message;return K}function U(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return G.enable(G.load()),G}SX.exports=eL});var _X=O((s1,O8)=>{s1.formatArgs=Zz;s1.save=Gz;s1.load=Jz;s1.useColors=$z;s1.storage=Xz();s1.destroy=(()=>{let $=!1;return()=>{if(!$)$=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}})();s1.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function $z(){if(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))return!0;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let $;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&($=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt($[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function Zz($){if($[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+$[0]+(this.useColors?"%c ":" ")+"+"+O8.exports.humanize(this.diff),!this.useColors)return;let Z="color: "+this.color;$.splice(1,0,Z,"color: inherit");let G=0,J=0;$[0].replace(/%[a-zA-Z%]/g,(X)=>{if(X==="%%")return;if(G++,X==="%c")J=G}),$.splice(J,0,Z)}s1.log=console.debug||console.log||(()=>{});function Gz($){try{if($)s1.storage.setItem("debug",$);else s1.storage.removeItem("debug")}catch(Z){}}function Jz(){let $;try{$=s1.storage.getItem("debug")||s1.storage.getItem("DEBUG")}catch(Z){}if(!$&&typeof process<"u"&&"env"in process)$=process.env.DEBUG;return $}function Xz(){try{return localStorage}catch($){}}O8.exports=y$()(s1);var{formatters:Yz}=O8.exports;Yz.j=function($){try{return JSON.stringify($)}catch(Z){return"[UnexpectedJSONParseError]: "+Z.message}}});var gX=O((E1,D8)=>{var Hz=require("tty"),M8=require("util");E1.init=zz;E1.log=Uz;E1.formatArgs=qz;E1.save=Wz;E1.load=Lz;E1.useColors=Qz;E1.destroy=M8.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");E1.colors=[6,2,3,4,5,1];try{let $=(()=>{throw new Error("Cannot require module "+"supports-color");})();if($&&($.stderr||$).level>=2)E1.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]}catch($){}E1.inspectOpts=Object.keys(process.env).filter(($)=>{return/^debug_/i.test($)}).reduce(($,Z)=>{let G=Z.substring(6).toLowerCase().replace(/_([a-z])/g,(X,Y)=>{return Y.toUpperCase()}),J=process.env[Z];if(/^(yes|on|true|enabled)$/i.test(J))J=!0;else if(/^(no|off|false|disabled)$/i.test(J))J=!1;else if(J==="null")J=null;else J=Number(J);return $[G]=J,$},{});function Qz(){return"colors"in E1.inspectOpts?Boolean(E1.inspectOpts.colors):Hz.isatty(process.stderr.fd)}function qz($){let{namespace:Z,useColors:G}=this;if(G){let J=this.color,X="\x1B[3"+(J<8?J:"8;5;"+J),Y=` ${X};1m${Z} \x1B[0m`;$[0]=Y+$[0].split(`
|
|
1
|
+
var Wz=Object.create;var{getPrototypeOf:Az,defineProperty:d5,getOwnPropertyNames:DZ,getOwnPropertyDescriptor:Fz}=Object,TZ=Object.prototype.hasOwnProperty;var y=($,Z,J)=>{J=$!=null?Wz(Az($)):{};let G=Z||!$||!$.__esModule?d5(J,"default",{value:$,enumerable:!0}):J;for(let Y of DZ($))if(!TZ.call(G,Y))d5(G,Y,{get:()=>$[Y],enumerable:!0});return G},PZ=new WeakMap,Bz=($)=>{var Z=PZ.get($),J;if(Z)return Z;if(Z=d5({},"__esModule",{value:!0}),$&&typeof $==="object"||typeof $==="function")DZ($).map((G)=>!TZ.call(Z,G)&&d5(Z,G,{get:()=>$[G],enumerable:!(J=Fz($,G))||J.enumerable}));return PZ.set($,Z),Z},F=($,Z)=>()=>(Z||$((Z={exports:{}}).exports,Z),Z.exports);var wZ=($,Z)=>{for(var J in Z)d5($,J,{get:Z[J],enumerable:!0,configurable:!0,set:(G)=>Z[J]=()=>G})};var tZ=F((HM,sZ)=>{var V5=require("fs"),oZ=require("url"),hz=require("child_process").spawn;sZ.exports=D9;D9.XMLHttpRequest=D9;function D9($){$=$||{};var Z=this,J=require("http"),G=require("https"),Y,X,Q={},z=!1,H={"User-Agent":"node-XMLHttpRequest",Accept:"*/*"},K=Object.assign({},H),U=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","content-transfer-encoding","cookie","cookie2","date","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","via"],O=["TRACE","TRACK","CONNECT"],W=!1,L=!1,B=!1,V={};this.UNSENT=0,this.OPENED=1,this.HEADERS_RECEIVED=2,this.LOADING=3,this.DONE=4,this.readyState=this.UNSENT,this.onreadystatechange=null,this.responseText="",this.responseXML="",this.response=Buffer.alloc(0),this.status=null,this.statusText=null;var R=function(q){return z||q&&U.indexOf(q.toLowerCase())===-1},T=function(q){return q&&O.indexOf(q)===-1};this.open=function(q,N,v,S,s){if(this.abort(),L=!1,B=!1,!T(q))throw Error("SecurityError: Request method not allowed");Q={method:q,url:N.toString(),async:typeof v!=="boolean"?!0:v,user:S||null,password:s||null},P(this.OPENED)},this.setDisableHeaderCheck=function(q){z=q},this.setRequestHeader=function(q,N){if(this.readyState!=this.OPENED)throw Error("INVALID_STATE_ERR: setRequestHeader can only be called when state is OPEN");if(!R(q))return console.warn('Refused to set unsafe header "'+q+'"'),!1;if(W)throw Error("INVALID_STATE_ERR: send flag is true");return K[q]=N,!0},this.getResponseHeader=function(q){if(typeof q==="string"&&this.readyState>this.OPENED&&X.headers[q.toLowerCase()]&&!L)return X.headers[q.toLowerCase()];return null},this.getAllResponseHeaders=function(){if(this.readyState<this.HEADERS_RECEIVED||L)return"";var q="";for(var N in X.headers)if(N!=="set-cookie"&&N!=="set-cookie2")q+=N+": "+X.headers[N]+`\r
|
|
2
|
+
`;return q.substr(0,q.length-2)},this.getRequestHeader=function(q){if(typeof q==="string"&&K[q])return K[q];return""},this.send=function(q){if(this.readyState!=this.OPENED)throw Error("INVALID_STATE_ERR: connection must be opened before send() is called");if(W)throw Error("INVALID_STATE_ERR: send has already been called");var N=!1,v=!1,S=oZ.parse(Q.url),s;switch(S.protocol){case"https:":N=!0;case"http:":s=S.hostname;break;case"file:":v=!0;break;case void 0:case"":s="localhost";break;default:throw Error("Protocol not supported.")}if(v){if(Q.method!=="GET")throw Error("XMLHttpRequest: Only GET method is supported");if(Q.async)V5.readFile(unescape(S.pathname),function(O1,u0){if(O1)Z.handleError(O1,O1.errno||-1);else Z.status=200,Z.responseText=u0.toString("utf8"),Z.response=u0,P(Z.DONE)});else try{this.response=V5.readFileSync(unescape(S.pathname)),this.responseText=this.response.toString("utf8"),this.status=200,P(Z.DONE)}catch(O1){this.handleError(O1,O1.errno||-1)}return}var R1=S.port||(N?443:80),y1=S.pathname+(S.search?S.search:"");if(K.Host=s,!(N&&R1===443||R1===80))K.Host+=":"+S.port;if(Q.user){if(typeof Q.password>"u")Q.password="";var G0=new Buffer(Q.user+":"+Q.password);K.Authorization="Basic "+G0.toString("base64")}if(Q.method==="GET"||Q.method==="HEAD")q=null;else if(q){K["Content-Length"]=Buffer.isBuffer(q)?q.length:Buffer.byteLength(q);var l=Object.keys(K);if(!l.some(function(O1){return O1.toLowerCase()==="content-type"}))K["Content-Type"]="text/plain;charset=UTF-8"}else if(Q.method==="POST")K["Content-Length"]=0;var K5=$.agent||!1,d={host:s,port:R1,path:y1,method:Q.method,headers:K,agent:K5};if(N)d.pfx=$.pfx,d.key=$.key,d.passphrase=$.passphrase,d.cert=$.cert,d.ca=$.ca,d.ciphers=$.ciphers,d.rejectUnauthorized=$.rejectUnauthorized===!1?!1:!0;if(L=!1,Q.async){var p5=N?G.request:J.request;W=!0,Z.dispatchEvent("readystatechange");var A=function(O1){if(X=O1,X.statusCode===302||X.statusCode===303||X.statusCode===307){Q.url=X.headers.location;var u0=oZ.parse(Q.url);s=u0.hostname;var N0={hostname:u0.hostname,port:u0.port,path:u0.path,method:X.statusCode===303?"GET":Q.method,headers:K};if(N)N0.pfx=$.pfx,N0.key=$.key,N0.passphrase=$.passphrase,N0.cert=$.cert,N0.ca=$.ca,N0.ciphers=$.ciphers,N0.rejectUnauthorized=$.rejectUnauthorized===!1?!1:!0;Y=p5(N0,A).on("error",i5),Y.end();return}P(Z.HEADERS_RECEIVED),Z.status=X.statusCode,X.on("data",function(g6){if(g6){var Vz=Buffer.from(g6);Z.response=Buffer.concat([Z.response,Vz])}if(W)P(Z.LOADING)}),X.on("end",function(){if(W)W=!1,P(Z.DONE),Z.responseText=Z.response.toString("utf8")}),X.on("error",function(g6){Z.handleError(g6)})},i5=function(O1){if(Y.reusedSocket&&O1.code==="ECONNRESET")return p5(d,A).on("error",i5);Z.handleError(O1)};if(Y=p5(d,A).on("error",i5),$.autoUnref)Y.on("socket",(O1)=>{O1.unref()});if(q)Y.write(q);Y.end(),Z.dispatchEvent("loadstart")}else{var p=".node-xmlhttprequest-content-"+process.pid,q0=".node-xmlhttprequest-sync-"+process.pid;V5.writeFileSync(q0,"","utf8");var m0="var http = require('http'), https = require('https'), fs = require('fs');var doRequest = http"+(N?"s":"")+".request;var options = "+JSON.stringify(d)+";var responseText = '';var responseData = Buffer.alloc(0);var req = doRequest(options, function(response) {response.on('data', function(chunk) { var data = Buffer.from(chunk); responseText += data.toString('utf8'); responseData = Buffer.concat([responseData, data]);});response.on('end', function() {fs.writeFileSync('"+p+"', JSON.stringify({err: null, data: {statusCode: response.statusCode, headers: response.headers, text: responseText, data: responseData.toString('base64')}}), 'utf8');fs.unlinkSync('"+q0+"');});response.on('error', function(error) {fs.writeFileSync('"+p+"', 'NODE-XMLHTTPREQUEST-ERROR:' + JSON.stringify(error), 'utf8');fs.unlinkSync('"+q0+"');});}).on('error', function(error) {fs.writeFileSync('"+p+"', 'NODE-XMLHTTPREQUEST-ERROR:' + JSON.stringify(error), 'utf8');fs.unlinkSync('"+q0+"');});"+(q?"req.write('"+JSON.stringify(q).slice(1,-1).replace(/'/g,"\\'")+"');":"")+"req.end();",Y0=hz(process.argv[0],["-e",m0]),ZM;while(V5.existsSync(q0));if(Z.responseText=V5.readFileSync(p,"utf8"),Y0.stdin.end(),V5.unlinkSync(p),Z.responseText.match(/^NODE-XMLHTTPREQUEST-ERROR:/)){var Oz=JSON.parse(Z.responseText.replace(/^NODE-XMLHTTPREQUEST-ERROR:/,""));Z.handleError(Oz,503)}else{Z.status=Z.responseText.replace(/^NODE-XMLHTTPREQUEST-STATUS:([0-9]*),.*/,"$1");var N9=JSON.parse(Z.responseText.replace(/^NODE-XMLHTTPREQUEST-STATUS:[0-9]*,(.*)/,"$1"));X={statusCode:Z.status,headers:N9.data.headers},Z.responseText=N9.data.text,Z.response=Buffer.from(N9.data.data,"base64"),P(Z.DONE,!0)}}},this.handleError=function(q,N){this.status=N||0,this.statusText=q,this.responseText=q.stack,L=!0,P(this.DONE)},this.abort=function(){if(Y)Y.abort(),Y=null;if(K=Object.assign({},H),this.responseText="",this.responseXML="",this.response=Buffer.alloc(0),L=B=!0,this.readyState!==this.UNSENT&&(this.readyState!==this.OPENED||W)&&this.readyState!==this.DONE)W=!1,P(this.DONE);this.readyState=this.UNSENT},this.addEventListener=function(q,N){if(!(q in V))V[q]=[];V[q].push(N)},this.removeEventListener=function(q,N){if(q in V)V[q]=V[q].filter(function(v){return v!==N})},this.dispatchEvent=function(q){if(typeof Z["on"+q]==="function")if(this.readyState===this.DONE&&Q.async)setTimeout(function(){Z["on"+q]()},0);else Z["on"+q]();if(q in V)for(let N=0,v=V[q].length;N<v;N++)if(this.readyState===this.DONE)setTimeout(function(){V[q][N].call(Z)},0);else V[q][N].call(Z)};var P=function(q){if(Z.readyState===q||Z.readyState===Z.UNSENT&&B)return;if(Z.readyState=q,Q.async||Z.readyState<Z.OPENED||Z.readyState===Z.DONE)Z.dispatchEvent("readystatechange");if(Z.readyState===Z.DONE){let N;if(B)N="abort";else if(L)N="error";else N="load";Z.dispatchEvent(N),Z.dispatchEvent("loadend")}}}});var l0=F((HJ)=>{HJ.Emitter=W1;function W1($){if($)return kz($)}function kz($){for(var Z in W1.prototype)$[Z]=W1.prototype[Z];return $}W1.prototype.on=W1.prototype.addEventListener=function($,Z){return this._callbacks=this._callbacks||{},(this._callbacks["$"+$]=this._callbacks["$"+$]||[]).push(Z),this};W1.prototype.once=function($,Z){function J(){this.off($,J),Z.apply(this,arguments)}return J.fn=Z,this.on($,J),this};W1.prototype.off=W1.prototype.removeListener=W1.prototype.removeAllListeners=W1.prototype.removeEventListener=function($,Z){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var J=this._callbacks["$"+$];if(!J)return this;if(arguments.length==1)return delete this._callbacks["$"+$],this;var G;for(var Y=0;Y<J.length;Y++)if(G=J[Y],G===Z||G.fn===Z){J.splice(Y,1);break}if(J.length===0)delete this._callbacks["$"+$];return this};W1.prototype.emit=function($){this._callbacks=this._callbacks||{};var Z=Array(arguments.length-1),J=this._callbacks["$"+$];for(var G=1;G<arguments.length;G++)Z[G-1]=arguments[G];if(J){J=J.slice(0);for(var G=0,Y=J.length;G<Y;++G)J[G].apply(this,Z)}return this};W1.prototype.emitReserved=W1.prototype.emit;W1.prototype.listeners=function($){return this._callbacks=this._callbacks||{},this._callbacks["$"+$]||[]};W1.prototype.hasListeners=function($){return!!this.listeners($).length}});var FJ=F((IM,AJ)=>{var W5=1000,A5=W5*60,F5=A5*60,c0=F5*24,pz=c0*7,iz=c0*365.25;AJ.exports=function($,Z){Z=Z||{};var J=typeof $;if(J==="string"&&$.length>0)return dz($);else if(J==="number"&&isFinite($))return Z.long?az($):nz($);throw Error("val is not a non-empty string or a valid number. val="+JSON.stringify($))};function dz($){if($=String($),$.length>100)return;var Z=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec($);if(!Z)return;var J=parseFloat(Z[1]),G=(Z[2]||"ms").toLowerCase();switch(G){case"years":case"year":case"yrs":case"yr":case"y":return J*iz;case"weeks":case"week":case"w":return J*pz;case"days":case"day":case"d":return J*c0;case"hours":case"hour":case"hrs":case"hr":case"h":return J*F5;case"minutes":case"minute":case"mins":case"min":case"m":return J*A5;case"seconds":case"second":case"secs":case"sec":case"s":return J*W5;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return J;default:return}}function nz($){var Z=Math.abs($);if(Z>=c0)return Math.round($/c0)+"d";if(Z>=F5)return Math.round($/F5)+"h";if(Z>=A5)return Math.round($/A5)+"m";if(Z>=W5)return Math.round($/W5)+"s";return $+"ms"}function az($){var Z=Math.abs($);if(Z>=c0)return a6($,Z,c0,"day");if(Z>=F5)return a6($,Z,F5,"hour");if(Z>=A5)return a6($,Z,A5,"minute");if(Z>=W5)return a6($,Z,W5,"second");return $+" ms"}function a6($,Z,J,G){var Y=Z>=J*1.5;return Math.round($/J)+" "+G+(Y?"s":"")}});var v9=F((PM,BJ)=>{function rz($){J.debug=J,J.default=J,J.coerce=H,J.disable=Q,J.enable=Y,J.enabled=z,J.humanize=FJ(),J.destroy=K,Object.keys($).forEach((U)=>{J[U]=$[U]}),J.names=[],J.skips=[],J.formatters={};function Z(U){let O=0;for(let W=0;W<U.length;W++)O=(O<<5)-O+U.charCodeAt(W),O|=0;return J.colors[Math.abs(O)%J.colors.length]}J.selectColor=Z;function J(U){let O,W=null,L,B;function V(...R){if(!V.enabled)return;let T=V,P=Number(new Date),q=P-(O||P);if(T.diff=q,T.prev=O,T.curr=P,O=P,R[0]=J.coerce(R[0]),typeof R[0]!=="string")R.unshift("%O");let N=0;R[0]=R[0].replace(/%([a-zA-Z%])/g,(S,s)=>{if(S==="%%")return"%";N++;let R1=J.formatters[s];if(typeof R1==="function"){let y1=R[N];S=R1.call(T,y1),R.splice(N,1),N--}return S}),J.formatArgs.call(T,R),(T.log||J.log).apply(T,R)}if(V.namespace=U,V.useColors=J.useColors(),V.color=J.selectColor(U),V.extend=G,V.destroy=J.destroy,Object.defineProperty(V,"enabled",{enumerable:!0,configurable:!1,get:()=>{if(W!==null)return W;if(L!==J.namespaces)L=J.namespaces,B=J.enabled(U);return B},set:(R)=>{W=R}}),typeof J.init==="function")J.init(V);return V}function G(U,O){let W=J(this.namespace+(typeof O>"u"?":":O)+U);return W.log=this.log,W}function Y(U){J.save(U),J.namespaces=U,J.names=[],J.skips=[];let O=(typeof U==="string"?U:"").trim().replace(/\s+/g,",").split(",").filter(Boolean);for(let W of O)if(W[0]==="-")J.skips.push(W.slice(1));else J.names.push(W)}function X(U,O){let W=0,L=0,B=-1,V=0;while(W<U.length)if(L<O.length&&(O[L]===U[W]||O[L]==="*"))if(O[L]==="*")B=L,V=W,L++;else W++,L++;else if(B!==-1)L=B+1,V++,W=V;else return!1;while(L<O.length&&O[L]==="*")L++;return L===O.length}function Q(){let U=[...J.names,...J.skips.map((O)=>"-"+O)].join(",");return J.enable(""),U}function z(U){for(let O of J.skips)if(X(U,O))return!1;for(let O of J.names)if(X(U,O))return!0;return!1}function H(U){if(U instanceof Error)return U.stack||U.message;return U}function K(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return J.enable(J.load()),J}BJ.exports=rz});var LJ=F((L1,r6)=>{L1.formatArgs=sz;L1.save=tz;L1.load=ez;L1.useColors=oz;L1.storage=$3();L1.destroy=(()=>{let $=!1;return()=>{if(!$)$=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}})();L1.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function oz(){if(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))return!0;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let $;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&($=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt($[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function sz($){if($[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+$[0]+(this.useColors?"%c ":" ")+"+"+r6.exports.humanize(this.diff),!this.useColors)return;let Z="color: "+this.color;$.splice(1,0,Z,"color: inherit");let J=0,G=0;$[0].replace(/%[a-zA-Z%]/g,(Y)=>{if(Y==="%%")return;if(J++,Y==="%c")G=J}),$.splice(G,0,Z)}L1.log=console.debug||console.log||(()=>{});function tz($){try{if($)L1.storage.setItem("debug",$);else L1.storage.removeItem("debug")}catch(Z){}}function ez(){let $;try{$=L1.storage.getItem("debug")||L1.storage.getItem("DEBUG")}catch(Z){}if(!$&&typeof process<"u"&&"env"in process)$=process.env.DEBUG;return $}function $3(){try{return localStorage}catch($){}}r6.exports=v9()(L1);var{formatters:Z3}=r6.exports;Z3.j=function($){try{return JSON.stringify($)}catch(Z){return"[UnexpectedJSONParseError]: "+Z.message}}});var NJ=F(($1,s6)=>{var J3=require("tty"),o6=require("util");$1.init=K3;$1.log=Q3;$1.formatArgs=Y3;$1.save=H3;$1.load=z3;$1.useColors=G3;$1.destroy=o6.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");$1.colors=[6,2,3,4,5,1];try{let $=(()=>{throw new Error("Cannot require module "+"supports-color");})();if($&&($.stderr||$).level>=2)$1.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]}catch($){}$1.inspectOpts=Object.keys(process.env).filter(($)=>{return/^debug_/i.test($)}).reduce(($,Z)=>{let J=Z.substring(6).toLowerCase().replace(/_([a-z])/g,(Y,X)=>{return X.toUpperCase()}),G=process.env[Z];if(/^(yes|on|true|enabled)$/i.test(G))G=!0;else if(/^(no|off|false|disabled)$/i.test(G))G=!1;else if(G==="null")G=null;else G=Number(G);return $[J]=G,$},{});function G3(){return"colors"in $1.inspectOpts?Boolean($1.inspectOpts.colors):J3.isatty(process.stderr.fd)}function Y3($){let{namespace:Z,useColors:J}=this;if(J){let G=this.color,Y="\x1B[3"+(G<8?G:"8;5;"+G),X=` ${Y};1m${Z} \x1B[0m`;$[0]=X+$[0].split(`
|
|
3
3
|
`).join(`
|
|
4
|
-
`+
|
|
5
|
-
`)}function
|
|
6
|
-
`).map((Z)=>Z.trim()).join(" ")};CX.O=function($){return this.inspectOpts.colors=this.useColors,M8.inspect($,this.inspectOpts)}});var W0=O((Jj,v$)=>{if(typeof process>"u"||process.type==="renderer"||!1||process.__nwjs)v$.exports=_X();else v$.exports=gX()});var s0=O((Mj,lX)=>{var uX=["nodebuffer","arraybuffer","fragments"],pX=typeof Blob<"u";if(pX)uX.push("blob");lX.exports={BINARY_TYPES:uX,EMPTY_BUFFER:Buffer.alloc(0),GUID:"258EAFA5-E914-47DA-95CA-C5AB0DC85B11",hasBlob:pX,kForOnEventAttribute:Symbol("kIsForOnEventAttribute"),kListener:Symbol("kListener"),kStatusCode:Symbol("status-code"),kWebSocket:Symbol("websocket"),NOOP:()=>{}}});var Q7=O((Dj,P8)=>{var{EMPTY_BUFFER:Fz}=s0(),m$=Buffer[Symbol.species];function Rz($,Z){if($.length===0)return Fz;if($.length===1)return $[0];let G=Buffer.allocUnsafe(Z),J=0;for(let X=0;X<$.length;X++){let Y=$[X];G.set(Y,J),J+=Y.length}if(J<Z)return new m$(G.buffer,G.byteOffset,J);return G}function iX($,Z,G,J,X){for(let Y=0;Y<X;Y++)G[J+Y]=$[Y]^Z[Y&3]}function cX($,Z){for(let G=0;G<$.length;G++)$[G]^=Z[G&3]}function Oz($){if($.length===$.buffer.byteLength)return $.buffer;return $.buffer.slice($.byteOffset,$.byteOffset+$.length)}function f$($){if(f$.readOnly=!0,Buffer.isBuffer($))return $;let Z;if($ instanceof ArrayBuffer)Z=new m$($);else if(ArrayBuffer.isView($))Z=new m$($.buffer,$.byteOffset,$.byteLength);else Z=Buffer.from($),f$.readOnly=!1;return Z}P8.exports={concat:Rz,mask:iX,toArrayBuffer:Oz,toBuffer:f$,unmask:cX};if(!process.env.WS_NO_BUFFER_UTIL)try{let $=(()=>{throw new Error("Cannot require module "+"bufferutil");})();P8.exports.mask=function(Z,G,J,X,Y){if(Y<48)iX(Z,G,J,X,Y);else $.mask(Z,G,J,X,Y)},P8.exports.unmask=function(Z,G){if(Z.length<32)cX(Z,G);else $.unmask(Z,G)}}catch($){}});var nX=O((Ij,aX)=>{var dX=Symbol("kDone"),u$=Symbol("kRun");class rX{constructor($){this[dX]=()=>{this.pending--,this[u$]()},this.concurrency=$||1/0,this.jobs=[],this.pending=0}add($){this.jobs.push($),this[u$]()}[u$](){if(this.pending===this.concurrency)return;if(this.jobs.length){let $=this.jobs.shift();this.pending++,$(this[dX])}}}aX.exports=rX});var K7=O((Pj,$Y)=>{var q7=require("zlib"),sX=Q7(),Mz=nX(),{kStatusCode:oX}=s0(),Dz=Buffer[Symbol.species],Iz=Buffer.from([0,0,255,255]),w8=Symbol("permessage-deflate"),o0=Symbol("total-length"),N6=Symbol("callback"),U5=Symbol("buffers"),B6=Symbol("error"),T8;class tX{constructor($,Z,G){if(this._maxPayload=G|0,this._options=$||{},this._threshold=this._options.threshold!==void 0?this._options.threshold:1024,this._isServer=!!Z,this._deflate=null,this._inflate=null,this.params=null,!T8){let J=this._options.concurrencyLimit!==void 0?this._options.concurrencyLimit:10;T8=new Mz(J)}}static get extensionName(){return"permessage-deflate"}offer(){let $={};if(this._options.serverNoContextTakeover)$.server_no_context_takeover=!0;if(this._options.clientNoContextTakeover)$.client_no_context_takeover=!0;if(this._options.serverMaxWindowBits)$.server_max_window_bits=this._options.serverMaxWindowBits;if(this._options.clientMaxWindowBits)$.client_max_window_bits=this._options.clientMaxWindowBits;else if(this._options.clientMaxWindowBits==null)$.client_max_window_bits=!0;return $}accept($){return $=this.normalizeParams($),this.params=this._isServer?this.acceptAsServer($):this.acceptAsClient($),this.params}cleanup(){if(this._inflate)this._inflate.close(),this._inflate=null;if(this._deflate){let $=this._deflate[N6];if(this._deflate.close(),this._deflate=null,$)$(Error("The deflate stream was closed while data was being processed"))}}acceptAsServer($){let Z=this._options,G=$.find((J)=>{if(Z.serverNoContextTakeover===!1&&J.server_no_context_takeover||J.server_max_window_bits&&(Z.serverMaxWindowBits===!1||typeof Z.serverMaxWindowBits==="number"&&Z.serverMaxWindowBits>J.server_max_window_bits)||typeof Z.clientMaxWindowBits==="number"&&!J.client_max_window_bits)return!1;return!0});if(!G)throw Error("None of the extension offers can be accepted");if(Z.serverNoContextTakeover)G.server_no_context_takeover=!0;if(Z.clientNoContextTakeover)G.client_no_context_takeover=!0;if(typeof Z.serverMaxWindowBits==="number")G.server_max_window_bits=Z.serverMaxWindowBits;if(typeof Z.clientMaxWindowBits==="number")G.client_max_window_bits=Z.clientMaxWindowBits;else if(G.client_max_window_bits===!0||Z.clientMaxWindowBits===!1)delete G.client_max_window_bits;return G}acceptAsClient($){let Z=$[0];if(this._options.clientNoContextTakeover===!1&&Z.client_no_context_takeover)throw Error('Unexpected parameter "client_no_context_takeover"');if(!Z.client_max_window_bits){if(typeof this._options.clientMaxWindowBits==="number")Z.client_max_window_bits=this._options.clientMaxWindowBits}else if(this._options.clientMaxWindowBits===!1||typeof this._options.clientMaxWindowBits==="number"&&Z.client_max_window_bits>this._options.clientMaxWindowBits)throw Error('Unexpected or invalid parameter "client_max_window_bits"');return Z}normalizeParams($){return $.forEach((Z)=>{Object.keys(Z).forEach((G)=>{let J=Z[G];if(J.length>1)throw Error(`Parameter "${G}" must have only a single value`);if(J=J[0],G==="client_max_window_bits"){if(J!==!0){let X=+J;if(!Number.isInteger(X)||X<8||X>15)throw TypeError(`Invalid value for parameter "${G}": ${J}`);J=X}else if(!this._isServer)throw TypeError(`Invalid value for parameter "${G}": ${J}`)}else if(G==="server_max_window_bits"){let X=+J;if(!Number.isInteger(X)||X<8||X>15)throw TypeError(`Invalid value for parameter "${G}": ${J}`);J=X}else if(G==="client_no_context_takeover"||G==="server_no_context_takeover"){if(J!==!0)throw TypeError(`Invalid value for parameter "${G}": ${J}`)}else throw Error(`Unknown parameter "${G}"`);Z[G]=J})}),$}decompress($,Z,G){T8.add((J)=>{this._decompress($,Z,(X,Y)=>{J(),G(X,Y)})})}compress($,Z,G){T8.add((J)=>{this._compress($,Z,(X,Y)=>{J(),G(X,Y)})})}_decompress($,Z,G){let J=this._isServer?"client":"server";if(!this._inflate){let X=`${J}_max_window_bits`,Y=typeof this.params[X]!=="number"?q7.Z_DEFAULT_WINDOWBITS:this.params[X];this._inflate=q7.createInflateRaw({...this._options.zlibInflateOptions,windowBits:Y}),this._inflate[w8]=this,this._inflate[o0]=0,this._inflate[U5]=[],this._inflate.on("error",Tz),this._inflate.on("data",eX)}if(this._inflate[N6]=G,this._inflate.write($),Z)this._inflate.write(Iz);this._inflate.flush(()=>{let X=this._inflate[B6];if(X){this._inflate.close(),this._inflate=null,G(X);return}let Y=sX.concat(this._inflate[U5],this._inflate[o0]);if(this._inflate._readableState.endEmitted)this._inflate.close(),this._inflate=null;else if(this._inflate[o0]=0,this._inflate[U5]=[],Z&&this.params[`${J}_no_context_takeover`])this._inflate.reset();G(null,Y)})}_compress($,Z,G){let J=this._isServer?"server":"client";if(!this._deflate){let X=`${J}_max_window_bits`,Y=typeof this.params[X]!=="number"?q7.Z_DEFAULT_WINDOWBITS:this.params[X];this._deflate=q7.createDeflateRaw({...this._options.zlibDeflateOptions,windowBits:Y}),this._deflate[o0]=0,this._deflate[U5]=[],this._deflate.on("data",Pz)}this._deflate[N6]=G,this._deflate.write($),this._deflate.flush(q7.Z_SYNC_FLUSH,()=>{if(!this._deflate)return;let X=sX.concat(this._deflate[U5],this._deflate[o0]);if(Z)X=new Dz(X.buffer,X.byteOffset,X.length-4);if(this._deflate[N6]=null,this._deflate[o0]=0,this._deflate[U5]=[],Z&&this.params[`${J}_no_context_takeover`])this._deflate.reset();G(null,X)})}}$Y.exports=tX;function Pz($){this[U5].push($),this[o0]+=$.length}function eX($){if(this[o0]+=$.length,this[w8]._maxPayload<1||this[o0]<=this[w8]._maxPayload){this[U5].push($);return}this[B6]=RangeError("Max payload size exceeded"),this[B6].code="WS_ERR_UNSUPPORTED_MESSAGE_LENGTH",this[B6][oX]=1009,this.removeListener("data",eX),this.reset()}function Tz($){if(this[w8]._inflate=null,this[B6]){this[N6](this[B6]);return}$[oX]=1007,this[N6]($)}});var V6=O((Tj,E8)=>{var{isUtf8:ZY}=require("buffer"),{hasBlob:wz}=s0(),Ez=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0];function jz($){return $>=1000&&$<=1014&&$!==1004&&$!==1005&&$!==1006||$>=3000&&$<=4999}function p$($){let Z=$.length,G=0;while(G<Z)if(($[G]&128)===0)G++;else if(($[G]&224)===192){if(G+1===Z||($[G+1]&192)!==128||($[G]&254)===192)return!1;G+=2}else if(($[G]&240)===224){if(G+2>=Z||($[G+1]&192)!==128||($[G+2]&192)!==128||$[G]===224&&($[G+1]&224)===128||$[G]===237&&($[G+1]&224)===160)return!1;G+=3}else if(($[G]&248)===240){if(G+3>=Z||($[G+1]&192)!==128||($[G+2]&192)!==128||($[G+3]&192)!==128||$[G]===240&&($[G+1]&240)===128||$[G]===244&&$[G+1]>143||$[G]>244)return!1;G+=4}else return!1;return!0}function Sz($){return wz&&typeof $==="object"&&typeof $.arrayBuffer==="function"&&typeof $.type==="string"&&typeof $.stream==="function"&&($[Symbol.toStringTag]==="Blob"||$[Symbol.toStringTag]==="File")}E8.exports={isBlob:Sz,isValidStatusCode:jz,isValidUTF8:p$,tokenChars:Ez};if(ZY)E8.exports.isValidUTF8=function($){return $.length<24?p$($):ZY($)};else if(!process.env.WS_NO_UTF_8_VALIDATE)try{let $=(()=>{throw new Error("Cannot require module "+"utf-8-validate");})();E8.exports.isValidUTF8=function(Z){return Z.length<32?p$(Z):$(Z)}}catch($){}});var i$=O((wj,HY)=>{var{Writable:_z}=require("stream"),GY=K7(),{BINARY_TYPES:Cz,EMPTY_BUFFER:JY,kStatusCode:gz,kWebSocket:yz}=s0(),{concat:l$,toArrayBuffer:vz,unmask:xz}=Q7(),{isValidStatusCode:hz,isValidUTF8:XY}=V6(),j8=Buffer[Symbol.species];class YY extends _z{constructor($={}){super();this._allowSynchronousEvents=$.allowSynchronousEvents!==void 0?$.allowSynchronousEvents:!0,this._binaryType=$.binaryType||Cz[0],this._extensions=$.extensions||{},this._isServer=!!$.isServer,this._maxPayload=$.maxPayload|0,this._skipUTF8Validation=!!$.skipUTF8Validation,this[yz]=void 0,this._bufferedBytes=0,this._buffers=[],this._compressed=!1,this._payloadLength=0,this._mask=void 0,this._fragmented=0,this._masked=!1,this._fin=!1,this._opcode=0,this._totalPayloadLength=0,this._messageLength=0,this._fragments=[],this._errored=!1,this._loop=!1,this._state=0}_write($,Z,G){if(this._opcode===8&&this._state==0)return G();this._bufferedBytes+=$.length,this._buffers.push($),this.startLoop(G)}consume($){if(this._bufferedBytes-=$,$===this._buffers[0].length)return this._buffers.shift();if($<this._buffers[0].length){let G=this._buffers[0];return this._buffers[0]=new j8(G.buffer,G.byteOffset+$,G.length-$),new j8(G.buffer,G.byteOffset,$)}let Z=Buffer.allocUnsafe($);do{let G=this._buffers[0],J=Z.length-$;if($>=G.length)Z.set(this._buffers.shift(),J);else Z.set(new Uint8Array(G.buffer,G.byteOffset,$),J),this._buffers[0]=new j8(G.buffer,G.byteOffset+$,G.length-$);$-=G.length}while($>0);return Z}startLoop($){this._loop=!0;do switch(this._state){case 0:this.getInfo($);break;case 1:this.getPayloadLength16($);break;case 2:this.getPayloadLength64($);break;case 3:this.getMask();break;case 4:this.getData($);break;case 5:case 6:this._loop=!1;return}while(this._loop);if(!this._errored)$()}getInfo($){if(this._bufferedBytes<2){this._loop=!1;return}let Z=this.consume(2);if((Z[0]&48)!==0){let J=this.createError(RangeError,"RSV2 and RSV3 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_2_3");$(J);return}let G=(Z[0]&64)===64;if(G&&!this._extensions[GY.extensionName]){let J=this.createError(RangeError,"RSV1 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_1");$(J);return}if(this._fin=(Z[0]&128)===128,this._opcode=Z[0]&15,this._payloadLength=Z[1]&127,this._opcode===0){if(G){let J=this.createError(RangeError,"RSV1 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_1");$(J);return}if(!this._fragmented){let J=this.createError(RangeError,"invalid opcode 0",!0,1002,"WS_ERR_INVALID_OPCODE");$(J);return}this._opcode=this._fragmented}else if(this._opcode===1||this._opcode===2){if(this._fragmented){let J=this.createError(RangeError,`invalid opcode ${this._opcode}`,!0,1002,"WS_ERR_INVALID_OPCODE");$(J);return}this._compressed=G}else if(this._opcode>7&&this._opcode<11){if(!this._fin){let J=this.createError(RangeError,"FIN must be set",!0,1002,"WS_ERR_EXPECTED_FIN");$(J);return}if(G){let J=this.createError(RangeError,"RSV1 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_1");$(J);return}if(this._payloadLength>125||this._opcode===8&&this._payloadLength===1){let J=this.createError(RangeError,`invalid payload length ${this._payloadLength}`,!0,1002,"WS_ERR_INVALID_CONTROL_PAYLOAD_LENGTH");$(J);return}}else{let J=this.createError(RangeError,`invalid opcode ${this._opcode}`,!0,1002,"WS_ERR_INVALID_OPCODE");$(J);return}if(!this._fin&&!this._fragmented)this._fragmented=this._opcode;if(this._masked=(Z[1]&128)===128,this._isServer){if(!this._masked){let J=this.createError(RangeError,"MASK must be set",!0,1002,"WS_ERR_EXPECTED_MASK");$(J);return}}else if(this._masked){let J=this.createError(RangeError,"MASK must be clear",!0,1002,"WS_ERR_UNEXPECTED_MASK");$(J);return}if(this._payloadLength===126)this._state=1;else if(this._payloadLength===127)this._state=2;else this.haveLength($)}getPayloadLength16($){if(this._bufferedBytes<2){this._loop=!1;return}this._payloadLength=this.consume(2).readUInt16BE(0),this.haveLength($)}getPayloadLength64($){if(this._bufferedBytes<8){this._loop=!1;return}let Z=this.consume(8),G=Z.readUInt32BE(0);if(G>Math.pow(2,21)-1){let J=this.createError(RangeError,"Unsupported WebSocket frame: payload length > 2^53 - 1",!1,1009,"WS_ERR_UNSUPPORTED_DATA_PAYLOAD_LENGTH");$(J);return}this._payloadLength=G*Math.pow(2,32)+Z.readUInt32BE(4),this.haveLength($)}haveLength($){if(this._payloadLength&&this._opcode<8){if(this._totalPayloadLength+=this._payloadLength,this._totalPayloadLength>this._maxPayload&&this._maxPayload>0){let Z=this.createError(RangeError,"Max payload size exceeded",!1,1009,"WS_ERR_UNSUPPORTED_MESSAGE_LENGTH");$(Z);return}}if(this._masked)this._state=3;else this._state=4}getMask(){if(this._bufferedBytes<4){this._loop=!1;return}this._mask=this.consume(4),this._state=4}getData($){let Z=JY;if(this._payloadLength){if(this._bufferedBytes<this._payloadLength){this._loop=!1;return}if(Z=this.consume(this._payloadLength),this._masked&&(this._mask[0]|this._mask[1]|this._mask[2]|this._mask[3])!==0)xz(Z,this._mask)}if(this._opcode>7){this.controlMessage(Z,$);return}if(this._compressed){this._state=5,this.decompress(Z,$);return}if(Z.length)this._messageLength=this._totalPayloadLength,this._fragments.push(Z);this.dataMessage($)}decompress($,Z){this._extensions[GY.extensionName].decompress($,this._fin,(J,X)=>{if(J)return Z(J);if(X.length){if(this._messageLength+=X.length,this._messageLength>this._maxPayload&&this._maxPayload>0){let Y=this.createError(RangeError,"Max payload size exceeded",!1,1009,"WS_ERR_UNSUPPORTED_MESSAGE_LENGTH");Z(Y);return}this._fragments.push(X)}if(this.dataMessage(Z),this._state===0)this.startLoop(Z)})}dataMessage($){if(!this._fin){this._state=0;return}let Z=this._messageLength,G=this._fragments;if(this._totalPayloadLength=0,this._messageLength=0,this._fragmented=0,this._fragments=[],this._opcode===2){let J;if(this._binaryType==="nodebuffer")J=l$(G,Z);else if(this._binaryType==="arraybuffer")J=vz(l$(G,Z));else if(this._binaryType==="blob")J=new Blob(G);else J=G;if(this._allowSynchronousEvents)this.emit("message",J,!0),this._state=0;else this._state=6,setImmediate(()=>{this.emit("message",J,!0),this._state=0,this.startLoop($)})}else{let J=l$(G,Z);if(!this._skipUTF8Validation&&!XY(J)){let X=this.createError(Error,"invalid UTF-8 sequence",!0,1007,"WS_ERR_INVALID_UTF8");$(X);return}if(this._state===5||this._allowSynchronousEvents)this.emit("message",J,!1),this._state=0;else this._state=6,setImmediate(()=>{this.emit("message",J,!1),this._state=0,this.startLoop($)})}}controlMessage($,Z){if(this._opcode===8){if($.length===0)this._loop=!1,this.emit("conclude",1005,JY),this.end();else{let G=$.readUInt16BE(0);if(!hz(G)){let X=this.createError(RangeError,`invalid status code ${G}`,!0,1002,"WS_ERR_INVALID_CLOSE_CODE");Z(X);return}let J=new j8($.buffer,$.byteOffset+2,$.length-2);if(!this._skipUTF8Validation&&!XY(J)){let X=this.createError(Error,"invalid UTF-8 sequence",!0,1007,"WS_ERR_INVALID_UTF8");Z(X);return}this._loop=!1,this.emit("conclude",G,J),this.end()}this._state=0;return}if(this._allowSynchronousEvents)this.emit(this._opcode===9?"ping":"pong",$),this._state=0;else this._state=6,setImmediate(()=>{this.emit(this._opcode===9?"ping":"pong",$),this._state=0,this.startLoop(Z)})}createError($,Z,G,J,X){this._loop=!1,this._errored=!0;let Y=new $(G?`Invalid WebSocket frame: ${Z}`:Z);return Error.captureStackTrace(Y,this.createError),Y.code=X,Y[gz]=J,Y}}HY.exports=YY});var d$=O((jj,KY)=>{var{Duplex:Ej}=require("stream"),{randomFillSync:bz}=require("crypto"),QY=K7(),{EMPTY_BUFFER:kz,kWebSocket:mz,NOOP:fz}=s0(),{isBlob:F6,isValidStatusCode:uz}=V6(),{mask:qY,toBuffer:b5}=Q7(),L0=Symbol("kByteLength"),pz=Buffer.alloc(4),k5,R6=8192,w0=0,lz=1,iz=2;class W5{constructor($,Z,G){if(this._extensions=Z||{},G)this._generateMask=G,this._maskBuffer=Buffer.alloc(4);this._socket=$,this._firstFragment=!0,this._compress=!1,this._bufferedBytes=0,this._queue=[],this._state=w0,this.onerror=fz,this[mz]=void 0}static frame($,Z){let G,J=!1,X=2,Y=!1;if(Z.mask){if(G=Z.maskBuffer||pz,Z.generateMask)Z.generateMask(G);else{if(R6===8192){if(k5===void 0)k5=Buffer.alloc(8192);bz(k5,0,8192),R6=0}G[0]=k5[R6++],G[1]=k5[R6++],G[2]=k5[R6++],G[3]=k5[R6++]}Y=(G[0]|G[1]|G[2]|G[3])===0,X=6}let H;if(typeof $==="string")if((!Z.mask||Y)&&Z[L0]!==void 0)H=Z[L0];else $=Buffer.from($),H=$.length;else H=$.length,J=Z.mask&&Z.readOnly&&!Y;let Q=H;if(H>=65536)X+=8,Q=127;else if(H>125)X+=2,Q=126;let q=Buffer.allocUnsafe(J?H+X:X);if(q[0]=Z.fin?Z.opcode|128:Z.opcode,Z.rsv1)q[0]|=64;if(q[1]=Q,Q===126)q.writeUInt16BE(H,2);else if(Q===127)q[2]=q[3]=0,q.writeUIntBE(H,4,6);if(!Z.mask)return[q,$];if(q[1]|=128,q[X-4]=G[0],q[X-3]=G[1],q[X-2]=G[2],q[X-1]=G[3],Y)return[q,$];if(J)return qY($,G,q,X,H),[q];return qY($,G,$,0,H),[q,$]}close($,Z,G,J){let X;if($===void 0)X=kz;else if(typeof $!=="number"||!uz($))throw TypeError("First argument must be a valid error code number");else if(Z===void 0||!Z.length)X=Buffer.allocUnsafe(2),X.writeUInt16BE($,0);else{let H=Buffer.byteLength(Z);if(H>123)throw RangeError("The message must not be greater than 123 bytes");if(X=Buffer.allocUnsafe(2+H),X.writeUInt16BE($,0),typeof Z==="string")X.write(Z,2);else X.set(Z,2)}let Y={[L0]:X.length,fin:!0,generateMask:this._generateMask,mask:G,maskBuffer:this._maskBuffer,opcode:8,readOnly:!1,rsv1:!1};if(this._state!==w0)this.enqueue([this.dispatch,X,!1,Y,J]);else this.sendFrame(W5.frame(X,Y),J)}ping($,Z,G){let J,X;if(typeof $==="string")J=Buffer.byteLength($),X=!1;else if(F6($))J=$.size,X=!1;else $=b5($),J=$.length,X=b5.readOnly;if(J>125)throw RangeError("The data size must not be greater than 125 bytes");let Y={[L0]:J,fin:!0,generateMask:this._generateMask,mask:Z,maskBuffer:this._maskBuffer,opcode:9,readOnly:X,rsv1:!1};if(F6($))if(this._state!==w0)this.enqueue([this.getBlobData,$,!1,Y,G]);else this.getBlobData($,!1,Y,G);else if(this._state!==w0)this.enqueue([this.dispatch,$,!1,Y,G]);else this.sendFrame(W5.frame($,Y),G)}pong($,Z,G){let J,X;if(typeof $==="string")J=Buffer.byteLength($),X=!1;else if(F6($))J=$.size,X=!1;else $=b5($),J=$.length,X=b5.readOnly;if(J>125)throw RangeError("The data size must not be greater than 125 bytes");let Y={[L0]:J,fin:!0,generateMask:this._generateMask,mask:Z,maskBuffer:this._maskBuffer,opcode:10,readOnly:X,rsv1:!1};if(F6($))if(this._state!==w0)this.enqueue([this.getBlobData,$,!1,Y,G]);else this.getBlobData($,!1,Y,G);else if(this._state!==w0)this.enqueue([this.dispatch,$,!1,Y,G]);else this.sendFrame(W5.frame($,Y),G)}send($,Z,G){let J=this._extensions[QY.extensionName],X=Z.binary?2:1,Y=Z.compress,H,Q;if(typeof $==="string")H=Buffer.byteLength($),Q=!1;else if(F6($))H=$.size,Q=!1;else $=b5($),H=$.length,Q=b5.readOnly;if(this._firstFragment){if(this._firstFragment=!1,Y&&J&&J.params[J._isServer?"server_no_context_takeover":"client_no_context_takeover"])Y=H>=J._threshold;this._compress=Y}else Y=!1,X=0;if(Z.fin)this._firstFragment=!0;let q={[L0]:H,fin:Z.fin,generateMask:this._generateMask,mask:Z.mask,maskBuffer:this._maskBuffer,opcode:X,readOnly:Q,rsv1:Y};if(F6($))if(this._state!==w0)this.enqueue([this.getBlobData,$,this._compress,q,G]);else this.getBlobData($,this._compress,q,G);else if(this._state!==w0)this.enqueue([this.dispatch,$,this._compress,q,G]);else this.dispatch($,this._compress,q,G)}getBlobData($,Z,G,J){this._bufferedBytes+=G[L0],this._state=iz,$.arrayBuffer().then((X)=>{if(this._socket.destroyed){let H=Error("The socket was closed while the blob was being read");process.nextTick(c$,this,H,J);return}this._bufferedBytes-=G[L0];let Y=b5(X);if(!Z)this._state=w0,this.sendFrame(W5.frame(Y,G),J),this.dequeue();else this.dispatch(Y,Z,G,J)}).catch((X)=>{process.nextTick(cz,this,X,J)})}dispatch($,Z,G,J){if(!Z){this.sendFrame(W5.frame($,G),J);return}let X=this._extensions[QY.extensionName];this._bufferedBytes+=G[L0],this._state=lz,X.compress($,G.fin,(Y,H)=>{if(this._socket.destroyed){let Q=Error("The socket was closed while data was being compressed");c$(this,Q,J);return}this._bufferedBytes-=G[L0],this._state=w0,G.readOnly=!1,this.sendFrame(W5.frame(H,G),J),this.dequeue()})}dequeue(){while(this._state===w0&&this._queue.length){let $=this._queue.shift();this._bufferedBytes-=$[3][L0],Reflect.apply($[0],this,$.slice(1))}}enqueue($){this._bufferedBytes+=$[3][L0],this._queue.push($)}sendFrame($,Z){if($.length===2)this._socket.cork(),this._socket.write($[0]),this._socket.write($[1],Z),this._socket.uncork();else this._socket.write($[0],Z)}}KY.exports=W5;function c$($,Z,G){if(typeof G==="function")G(Z);for(let J=0;J<$._queue.length;J++){let X=$._queue[J],Y=X[X.length-1];if(typeof Y==="function")Y(Z)}}function cz($,Z,G){c$($,Z,G),$.onerror(Z)}});var FY=O((Sj,VY)=>{var{kForOnEventAttribute:U7,kListener:r$}=s0(),UY=Symbol("kCode"),WY=Symbol("kData"),LY=Symbol("kError"),zY=Symbol("kMessage"),AY=Symbol("kReason"),O6=Symbol("kTarget"),NY=Symbol("kType"),BY=Symbol("kWasClean");class L5{constructor($){this[O6]=null,this[NY]=$}get target(){return this[O6]}get type(){return this[NY]}}Object.defineProperty(L5.prototype,"target",{enumerable:!0});Object.defineProperty(L5.prototype,"type",{enumerable:!0});class M6 extends L5{constructor($,Z={}){super($);this[UY]=Z.code===void 0?0:Z.code,this[AY]=Z.reason===void 0?"":Z.reason,this[BY]=Z.wasClean===void 0?!1:Z.wasClean}get code(){return this[UY]}get reason(){return this[AY]}get wasClean(){return this[BY]}}Object.defineProperty(M6.prototype,"code",{enumerable:!0});Object.defineProperty(M6.prototype,"reason",{enumerable:!0});Object.defineProperty(M6.prototype,"wasClean",{enumerable:!0});class W7 extends L5{constructor($,Z={}){super($);this[LY]=Z.error===void 0?null:Z.error,this[zY]=Z.message===void 0?"":Z.message}get error(){return this[LY]}get message(){return this[zY]}}Object.defineProperty(W7.prototype,"error",{enumerable:!0});Object.defineProperty(W7.prototype,"message",{enumerable:!0});class _8 extends L5{constructor($,Z={}){super($);this[WY]=Z.data===void 0?null:Z.data}get data(){return this[WY]}}Object.defineProperty(_8.prototype,"data",{enumerable:!0});var dz={addEventListener($,Z,G={}){for(let X of this.listeners($))if(!G[U7]&&X[r$]===Z&&!X[U7])return;let J;if($==="message")J=function(Y,H){let Q=new _8("message",{data:H?Y:Y.toString()});Q[O6]=this,S8(Z,this,Q)};else if($==="close")J=function(Y,H){let Q=new M6("close",{code:Y,reason:H.toString(),wasClean:this._closeFrameReceived&&this._closeFrameSent});Q[O6]=this,S8(Z,this,Q)};else if($==="error")J=function(Y){let H=new W7("error",{error:Y,message:Y.message});H[O6]=this,S8(Z,this,H)};else if($==="open")J=function(){let Y=new L5("open");Y[O6]=this,S8(Z,this,Y)};else return;if(J[U7]=!!G[U7],J[r$]=Z,G.once)this.once($,J);else this.on($,J)},removeEventListener($,Z){for(let G of this.listeners($))if(G[r$]===Z&&!G[U7]){this.removeListener($,G);break}}};VY.exports={CloseEvent:M6,ErrorEvent:W7,Event:L5,EventTarget:dz,MessageEvent:_8};function S8($,Z,G){if(typeof $==="object"&&$.handleEvent)$.handleEvent.call($,G);else $.call(Z,G)}});var a$=O((_j,RY)=>{var{tokenChars:L7}=V6();function x0($,Z,G){if($[Z]===void 0)$[Z]=[G];else $[Z].push(G)}function rz($){let Z=Object.create(null),G=Object.create(null),J=!1,X=!1,Y=!1,H,Q,q=-1,U=-1,K=-1,W=0;for(;W<$.length;W++)if(U=$.charCodeAt(W),H===void 0)if(K===-1&&L7[U]===1){if(q===-1)q=W}else if(W!==0&&(U===32||U===9)){if(K===-1&&q!==-1)K=W}else if(U===59||U===44){if(q===-1)throw SyntaxError(`Unexpected character at index ${W}`);if(K===-1)K=W;let L=$.slice(q,K);if(U===44)x0(Z,L,G),G=Object.create(null);else H=L;q=K=-1}else throw SyntaxError(`Unexpected character at index ${W}`);else if(Q===void 0)if(K===-1&&L7[U]===1){if(q===-1)q=W}else if(U===32||U===9){if(K===-1&&q!==-1)K=W}else if(U===59||U===44){if(q===-1)throw SyntaxError(`Unexpected character at index ${W}`);if(K===-1)K=W;if(x0(G,$.slice(q,K),!0),U===44)x0(Z,H,G),G=Object.create(null),H=void 0;q=K=-1}else if(U===61&&q!==-1&&K===-1)Q=$.slice(q,W),q=K=-1;else throw SyntaxError(`Unexpected character at index ${W}`);else if(X){if(L7[U]!==1)throw SyntaxError(`Unexpected character at index ${W}`);if(q===-1)q=W;else if(!J)J=!0;X=!1}else if(Y)if(L7[U]===1){if(q===-1)q=W}else if(U===34&&q!==-1)Y=!1,K=W;else if(U===92)X=!0;else throw SyntaxError(`Unexpected character at index ${W}`);else if(U===34&&$.charCodeAt(W-1)===61)Y=!0;else if(K===-1&&L7[U]===1){if(q===-1)q=W}else if(q!==-1&&(U===32||U===9)){if(K===-1)K=W}else if(U===59||U===44){if(q===-1)throw SyntaxError(`Unexpected character at index ${W}`);if(K===-1)K=W;let L=$.slice(q,K);if(J)L=L.replace(/\\/g,""),J=!1;if(x0(G,Q,L),U===44)x0(Z,H,G),G=Object.create(null),H=void 0;Q=void 0,q=K=-1}else throw SyntaxError(`Unexpected character at index ${W}`);if(q===-1||Y||U===32||U===9)throw SyntaxError("Unexpected end of input");if(K===-1)K=W;let z=$.slice(q,K);if(H===void 0)x0(Z,z,G);else{if(Q===void 0)x0(G,z,!0);else if(J)x0(G,Q,z.replace(/\\/g,""));else x0(G,Q,z);x0(Z,H,G)}return Z}function az($){return Object.keys($).map((Z)=>{let G=$[Z];if(!Array.isArray(G))G=[G];return G.map((J)=>{return[Z].concat(Object.keys(J).map((X)=>{let Y=J[X];if(!Array.isArray(Y))Y=[Y];return Y.map((H)=>H===!0?X:`${X}=${H}`).join("; ")})).join("; ")}).join(", ")}).join(", ")}RY.exports={format:az,parse:rz}});var v8=O((yj,CY)=>{var nz=require("events"),sz=require("https"),oz=require("http"),DY=require("net"),tz=require("tls"),{randomBytes:ez,createHash:$A}=require("crypto"),{Duplex:Cj,Readable:gj}=require("stream"),{URL:n$}=require("url"),z5=K7(),ZA=i$(),GA=d$(),{isBlob:JA}=V6(),{BINARY_TYPES:OY,EMPTY_BUFFER:C8,GUID:XA,kForOnEventAttribute:s$,kListener:YA,kStatusCode:HA,kWebSocket:j1,NOOP:IY}=s0(),{EventTarget:{addEventListener:QA,removeEventListener:qA}}=FY(),{format:KA,parse:UA}=a$(),{toBuffer:WA}=Q7(),PY=Symbol("kAborted"),o$=[8,13],t0=["CONNECTING","OPEN","CLOSING","CLOSED"],LA=/^[!#$%&'*+\-.0-9A-Z^_`|a-z~]+$/;class k extends nz{constructor($,Z,G){super();if(this._binaryType=OY[0],this._closeCode=1006,this._closeFrameReceived=!1,this._closeFrameSent=!1,this._closeMessage=C8,this._closeTimer=null,this._errorEmitted=!1,this._extensions={},this._paused=!1,this._protocol="",this._readyState=k.CONNECTING,this._receiver=null,this._sender=null,this._socket=null,$!==null){if(this._bufferedAmount=0,this._isServer=!1,this._redirects=0,Z===void 0)Z=[];else if(!Array.isArray(Z))if(typeof Z==="object"&&Z!==null)G=Z,Z=[];else Z=[Z];TY(this,$,Z,G)}else this._autoPong=G.autoPong,this._isServer=!0}get binaryType(){return this._binaryType}set binaryType($){if(!OY.includes($))return;if(this._binaryType=$,this._receiver)this._receiver._binaryType=$}get bufferedAmount(){if(!this._socket)return this._bufferedAmount;return this._socket._writableState.length+this._sender._bufferedBytes}get extensions(){return Object.keys(this._extensions).join()}get isPaused(){return this._paused}get onclose(){return null}get onerror(){return null}get onopen(){return null}get onmessage(){return null}get protocol(){return this._protocol}get readyState(){return this._readyState}get url(){return this._url}setSocket($,Z,G){let J=new ZA({allowSynchronousEvents:G.allowSynchronousEvents,binaryType:this.binaryType,extensions:this._extensions,isServer:this._isServer,maxPayload:G.maxPayload,skipUTF8Validation:G.skipUTF8Validation}),X=new GA($,this._extensions,G.generateMask);if(this._receiver=J,this._sender=X,this._socket=$,J[j1]=this,X[j1]=this,$[j1]=this,J.on("conclude",NA),J.on("drain",BA),J.on("error",VA),J.on("message",FA),J.on("ping",RA),J.on("pong",OA),X.onerror=MA,$.setTimeout)$.setTimeout(0);if($.setNoDelay)$.setNoDelay();if(Z.length>0)$.unshift(Z);$.on("close",jY),$.on("data",y8),$.on("end",SY),$.on("error",_Y),this._readyState=k.OPEN,this.emit("open")}emitClose(){if(!this._socket){this._readyState=k.CLOSED,this.emit("close",this._closeCode,this._closeMessage);return}if(this._extensions[z5.extensionName])this._extensions[z5.extensionName].cleanup();this._receiver.removeAllListeners(),this._readyState=k.CLOSED,this.emit("close",this._closeCode,this._closeMessage)}close($,Z){if(this.readyState===k.CLOSED)return;if(this.readyState===k.CONNECTING){Z0(this,this._req,"WebSocket was closed before the connection was established");return}if(this.readyState===k.CLOSING){if(this._closeFrameSent&&(this._closeFrameReceived||this._receiver._writableState.errorEmitted))this._socket.end();return}this._readyState=k.CLOSING,this._sender.close($,Z,!this._isServer,(G)=>{if(G)return;if(this._closeFrameSent=!0,this._closeFrameReceived||this._receiver._writableState.errorEmitted)this._socket.end()}),EY(this)}pause(){if(this.readyState===k.CONNECTING||this.readyState===k.CLOSED)return;this._paused=!0,this._socket.pause()}ping($,Z,G){if(this.readyState===k.CONNECTING)throw Error("WebSocket is not open: readyState 0 (CONNECTING)");if(typeof $==="function")G=$,$=Z=void 0;else if(typeof Z==="function")G=Z,Z=void 0;if(typeof $==="number")$=$.toString();if(this.readyState!==k.OPEN){t$(this,$,G);return}if(Z===void 0)Z=!this._isServer;this._sender.ping($||C8,Z,G)}pong($,Z,G){if(this.readyState===k.CONNECTING)throw Error("WebSocket is not open: readyState 0 (CONNECTING)");if(typeof $==="function")G=$,$=Z=void 0;else if(typeof Z==="function")G=Z,Z=void 0;if(typeof $==="number")$=$.toString();if(this.readyState!==k.OPEN){t$(this,$,G);return}if(Z===void 0)Z=!this._isServer;this._sender.pong($||C8,Z,G)}resume(){if(this.readyState===k.CONNECTING||this.readyState===k.CLOSED)return;if(this._paused=!1,!this._receiver._writableState.needDrain)this._socket.resume()}send($,Z,G){if(this.readyState===k.CONNECTING)throw Error("WebSocket is not open: readyState 0 (CONNECTING)");if(typeof Z==="function")G=Z,Z={};if(typeof $==="number")$=$.toString();if(this.readyState!==k.OPEN){t$(this,$,G);return}let J={binary:typeof $!=="string",mask:!this._isServer,compress:!0,fin:!0,...Z};if(!this._extensions[z5.extensionName])J.compress=!1;this._sender.send($||C8,J,G)}terminate(){if(this.readyState===k.CLOSED)return;if(this.readyState===k.CONNECTING){Z0(this,this._req,"WebSocket was closed before the connection was established");return}if(this._socket)this._readyState=k.CLOSING,this._socket.destroy()}}Object.defineProperty(k,"CONNECTING",{enumerable:!0,value:t0.indexOf("CONNECTING")});Object.defineProperty(k.prototype,"CONNECTING",{enumerable:!0,value:t0.indexOf("CONNECTING")});Object.defineProperty(k,"OPEN",{enumerable:!0,value:t0.indexOf("OPEN")});Object.defineProperty(k.prototype,"OPEN",{enumerable:!0,value:t0.indexOf("OPEN")});Object.defineProperty(k,"CLOSING",{enumerable:!0,value:t0.indexOf("CLOSING")});Object.defineProperty(k.prototype,"CLOSING",{enumerable:!0,value:t0.indexOf("CLOSING")});Object.defineProperty(k,"CLOSED",{enumerable:!0,value:t0.indexOf("CLOSED")});Object.defineProperty(k.prototype,"CLOSED",{enumerable:!0,value:t0.indexOf("CLOSED")});["binaryType","bufferedAmount","extensions","isPaused","protocol","readyState","url"].forEach(($)=>{Object.defineProperty(k.prototype,$,{enumerable:!0})});["open","error","close","message"].forEach(($)=>{Object.defineProperty(k.prototype,`on${$}`,{enumerable:!0,get(){for(let Z of this.listeners($))if(Z[s$])return Z[YA];return null},set(Z){for(let G of this.listeners($))if(G[s$]){this.removeListener($,G);break}if(typeof Z!=="function")return;this.addEventListener($,Z,{[s$]:!0})}})});k.prototype.addEventListener=QA;k.prototype.removeEventListener=qA;CY.exports=k;function TY($,Z,G,J){let X={allowSynchronousEvents:!0,autoPong:!0,protocolVersion:o$[1],maxPayload:104857600,skipUTF8Validation:!1,perMessageDeflate:!0,followRedirects:!1,maxRedirects:10,...J,socketPath:void 0,hostname:void 0,protocol:void 0,timeout:void 0,method:"GET",host:void 0,path:void 0,port:void 0};if($._autoPong=X.autoPong,!o$.includes(X.protocolVersion))throw RangeError(`Unsupported protocol version: ${X.protocolVersion} (supported versions: ${o$.join(", ")})`);let Y;if(Z instanceof n$)Y=Z;else try{Y=new n$(Z)}catch(B){throw SyntaxError(`Invalid URL: ${Z}`)}if(Y.protocol==="http:")Y.protocol="ws:";else if(Y.protocol==="https:")Y.protocol="wss:";$._url=Y.href;let H=Y.protocol==="wss:",Q=Y.protocol==="ws+unix:",q;if(Y.protocol!=="ws:"&&!H&&!Q)q=`The URL's protocol must be one of "ws:", "wss:", "http:", "https:", or "ws+unix:"`;else if(Q&&!Y.pathname)q="The URL's pathname is empty";else if(Y.hash)q="The URL contains a fragment identifier";if(q){let B=SyntaxError(q);if($._redirects===0)throw B;else{g8($,B);return}}let U=H?443:80,K=ez(16).toString("base64"),W=H?sz.request:oz.request,z=new Set,L;if(X.createConnection=X.createConnection||(H?AA:zA),X.defaultPort=X.defaultPort||U,X.port=Y.port||U,X.host=Y.hostname.startsWith("[")?Y.hostname.slice(1,-1):Y.hostname,X.headers={...X.headers,"Sec-WebSocket-Version":X.protocolVersion,"Sec-WebSocket-Key":K,Connection:"Upgrade",Upgrade:"websocket"},X.path=Y.pathname+Y.search,X.timeout=X.handshakeTimeout,X.perMessageDeflate)L=new z5(X.perMessageDeflate!==!0?X.perMessageDeflate:{},!1,X.maxPayload),X.headers["Sec-WebSocket-Extensions"]=KA({[z5.extensionName]:L.offer()});if(G.length){for(let B of G){if(typeof B!=="string"||!LA.test(B)||z.has(B))throw SyntaxError("An invalid or duplicated subprotocol was specified");z.add(B)}X.headers["Sec-WebSocket-Protocol"]=G.join(",")}if(X.origin)if(X.protocolVersion<13)X.headers["Sec-WebSocket-Origin"]=X.origin;else X.headers.Origin=X.origin;if(Y.username||Y.password)X.auth=`${Y.username}:${Y.password}`;if(Q){let B=X.path.split(":");X.socketPath=B[0],X.path=B[1]}let V;if(X.followRedirects){if($._redirects===0){$._originalIpc=Q,$._originalSecure=H,$._originalHostOrSocketPath=Q?X.socketPath:Y.host;let B=J&&J.headers;if(J={...J,headers:{}},B)for(let[I,D]of Object.entries(B))J.headers[I.toLowerCase()]=D}else if($.listenerCount("redirect")===0){let B=Q?$._originalIpc?X.socketPath===$._originalHostOrSocketPath:!1:$._originalIpc?!1:Y.host===$._originalHostOrSocketPath;if(!B||$._originalSecure&&!H){if(delete X.headers.authorization,delete X.headers.cookie,!B)delete X.headers.host;X.auth=void 0}}if(X.auth&&!J.headers.authorization)J.headers.authorization="Basic "+Buffer.from(X.auth).toString("base64");if(V=$._req=W(X),$._redirects)$.emit("redirect",$.url,V)}else V=$._req=W(X);if(X.timeout)V.on("timeout",()=>{Z0($,V,"Opening handshake has timed out")});if(V.on("error",(B)=>{if(V===null||V[PY])return;V=$._req=null,g8($,B)}),V.on("response",(B)=>{let I=B.headers.location,D=B.statusCode;if(I&&X.followRedirects&&D>=300&&D<400){if(++$._redirects>X.maxRedirects){Z0($,V,"Maximum redirects exceeded");return}V.abort();let E;try{E=new n$(I,Z)}catch(R){let P=SyntaxError(`Invalid URL: ${I}`);g8($,P);return}TY($,E,G,J)}else if(!$.emit("unexpected-response",V,B))Z0($,V,`Unexpected server response: ${B.statusCode}`)}),V.on("upgrade",(B,I,D)=>{if($.emit("upgrade",B),$.readyState!==k.CONNECTING)return;V=$._req=null;let E=B.headers.upgrade;if(E===void 0||E.toLowerCase()!=="websocket"){Z0($,I,"Invalid Upgrade header");return}let R=$A("sha1").update(K+XA).digest("base64");if(B.headers["sec-websocket-accept"]!==R){Z0($,I,"Invalid Sec-WebSocket-Accept header");return}let P=B.headers["sec-websocket-protocol"],g;if(P!==void 0){if(!z.size)g="Server sent a subprotocol but none was requested";else if(!z.has(P))g="Server sent an invalid subprotocol"}else if(z.size)g="Server sent no subprotocol";if(g){Z0($,I,g);return}if(P)$._protocol=P;let M=B.headers["sec-websocket-extensions"];if(M!==void 0){if(!L){Z0($,I,"Server sent a Sec-WebSocket-Extensions header but no extension was requested");return}let h;try{h=UA(M)}catch(i){Z0($,I,"Invalid Sec-WebSocket-Extensions header");return}let s=Object.keys(h);if(s.length!==1||s[0]!==z5.extensionName){Z0($,I,"Server indicated an extension that was not requested");return}try{L.accept(h[z5.extensionName])}catch(i){Z0($,I,"Invalid Sec-WebSocket-Extensions header");return}$._extensions[z5.extensionName]=L}$.setSocket(I,D,{allowSynchronousEvents:X.allowSynchronousEvents,generateMask:X.generateMask,maxPayload:X.maxPayload,skipUTF8Validation:X.skipUTF8Validation})}),X.finishRequest)X.finishRequest(V,$);else V.end()}function g8($,Z){$._readyState=k.CLOSING,$._errorEmitted=!0,$.emit("error",Z),$.emitClose()}function zA($){return $.path=$.socketPath,DY.connect($)}function AA($){if($.path=void 0,!$.servername&&$.servername!=="")$.servername=DY.isIP($.host)?"":$.host;return tz.connect($)}function Z0($,Z,G){$._readyState=k.CLOSING;let J=Error(G);if(Error.captureStackTrace(J,Z0),Z.setHeader){if(Z[PY]=!0,Z.abort(),Z.socket&&!Z.socket.destroyed)Z.socket.destroy();process.nextTick(g8,$,J)}else Z.destroy(J),Z.once("error",$.emit.bind($,"error")),Z.once("close",$.emitClose.bind($))}function t$($,Z,G){if(Z){let J=JA(Z)?Z.size:WA(Z).length;if($._socket)$._sender._bufferedBytes+=J;else $._bufferedAmount+=J}if(G){let J=Error(`WebSocket is not open: readyState ${$.readyState} (${t0[$.readyState]})`);process.nextTick(G,J)}}function NA($,Z){let G=this[j1];if(G._closeFrameReceived=!0,G._closeMessage=Z,G._closeCode=$,G._socket[j1]===void 0)return;if(G._socket.removeListener("data",y8),process.nextTick(wY,G._socket),$===1005)G.close();else G.close($,Z)}function BA(){let $=this[j1];if(!$.isPaused)$._socket.resume()}function VA($){let Z=this[j1];if(Z._socket[j1]!==void 0)Z._socket.removeListener("data",y8),process.nextTick(wY,Z._socket),Z.close($[HA]);if(!Z._errorEmitted)Z._errorEmitted=!0,Z.emit("error",$)}function MY(){this[j1].emitClose()}function FA($,Z){this[j1].emit("message",$,Z)}function RA($){let Z=this[j1];if(Z._autoPong)Z.pong($,!this._isServer,IY);Z.emit("ping",$)}function OA($){this[j1].emit("pong",$)}function wY($){$.resume()}function MA($){let Z=this[j1];if(Z.readyState===k.CLOSED)return;if(Z.readyState===k.OPEN)Z._readyState=k.CLOSING,EY(Z);if(this._socket.end(),!Z._errorEmitted)Z._errorEmitted=!0,Z.emit("error",$)}function EY($){$._closeTimer=setTimeout($._socket.destroy.bind($._socket),30000)}function jY(){let $=this[j1];this.removeListener("close",jY),this.removeListener("data",y8),this.removeListener("end",SY),$._readyState=k.CLOSING;let Z;if(!this._readableState.endEmitted&&!$._closeFrameReceived&&!$._receiver._writableState.errorEmitted&&(Z=$._socket.read())!==null)$._receiver.write(Z);if($._receiver.end(),this[j1]=void 0,clearTimeout($._closeTimer),$._receiver._writableState.finished||$._receiver._writableState.errorEmitted)$.emitClose();else $._receiver.on("error",MY),$._receiver.on("finish",MY)}function y8($){if(!this[j1]._receiver.write($))this.pause()}function SY(){let $=this[j1];$._readyState=k.CLOSING,$._receiver.end(),this.end()}function _Y(){let $=this[j1];if(this.removeListener("error",_Y),this.on("error",IY),$)$._readyState=k.CLOSING,this.destroy()}});var xY=O((xj,vY)=>{var vj=v8(),{Duplex:DA}=require("stream");function gY($){$.emit("close")}function IA(){if(!this.destroyed&&this._writableState.finished)this.destroy()}function yY($){if(this.removeListener("error",yY),this.destroy(),this.listenerCount("error")===0)this.emit("error",$)}function PA($,Z){let G=!0,J=new DA({...Z,autoDestroy:!1,emitClose:!1,objectMode:!1,writableObjectMode:!1});return $.on("message",function(Y,H){let Q=!H&&J._readableState.objectMode?Y.toString():Y;if(!J.push(Q))$.pause()}),$.once("error",function(Y){if(J.destroyed)return;G=!1,J.destroy(Y)}),$.once("close",function(){if(J.destroyed)return;J.push(null)}),J._destroy=function(X,Y){if($.readyState===$.CLOSED){Y(X),process.nextTick(gY,J);return}let H=!1;if($.once("error",function(q){H=!0,Y(q)}),$.once("close",function(){if(!H)Y(X);process.nextTick(gY,J)}),G)$.terminate()},J._final=function(X){if($.readyState===$.CONNECTING){$.once("open",function(){J._final(X)});return}if($._socket===null)return;if($._socket._writableState.finished){if(X(),J._readableState.endEmitted)J.destroy()}else $._socket.once("finish",function(){X()}),$.close()},J._read=function(){if($.isPaused)$.resume()},J._write=function(X,Y,H){if($.readyState===$.CONNECTING){$.once("open",function(){J._write(X,Y,H)});return}$.send(X,H)},J.on("end",IA),J.on("error",yY),J}vY.exports=PA});var bY=O((hj,hY)=>{var{tokenChars:TA}=V6();function wA($){let Z=new Set,G=-1,J=-1,X=0;for(X;X<$.length;X++){let H=$.charCodeAt(X);if(J===-1&&TA[H]===1){if(G===-1)G=X}else if(X!==0&&(H===32||H===9)){if(J===-1&&G!==-1)J=X}else if(H===44){if(G===-1)throw SyntaxError(`Unexpected character at index ${X}`);if(J===-1)J=X;let Q=$.slice(G,J);if(Z.has(Q))throw SyntaxError(`The "${Q}" subprotocol is duplicated`);Z.add(Q),G=J=-1}else throw SyntaxError(`Unexpected character at index ${X}`)}if(G===-1||J!==-1)throw SyntaxError("Unexpected end of input");let Y=$.slice(G,X);if(Z.has(Y))throw SyntaxError(`The "${Y}" subprotocol is duplicated`);return Z.add(Y),Z}hY.exports={parse:wA}});var pY=O((kj,uY)=>{var EA=require("events"),x8=require("http"),{Duplex:bj}=require("stream"),{createHash:jA}=require("crypto"),kY=a$(),m5=K7(),SA=bY(),_A=v8(),{GUID:CA,kWebSocket:gA}=s0(),yA=/^[+/0-9A-Za-z]{22}==$/;class fY extends EA{constructor($,Z){super();if($={allowSynchronousEvents:!0,autoPong:!0,maxPayload:104857600,skipUTF8Validation:!1,perMessageDeflate:!1,handleProtocols:null,clientTracking:!0,verifyClient:null,noServer:!1,backlog:null,server:null,host:null,path:null,port:null,WebSocket:_A,...$},$.port==null&&!$.server&&!$.noServer||$.port!=null&&($.server||$.noServer)||$.server&&$.noServer)throw TypeError('One and only one of the "port", "server", or "noServer" options must be specified');if($.port!=null)this._server=x8.createServer((G,J)=>{let X=x8.STATUS_CODES[426];J.writeHead(426,{"Content-Length":X.length,"Content-Type":"text/plain"}),J.end(X)}),this._server.listen($.port,$.host,$.backlog,Z);else if($.server)this._server=$.server;if(this._server){let G=this.emit.bind(this,"connection");this._removeListeners=vA(this._server,{listening:this.emit.bind(this,"listening"),error:this.emit.bind(this,"error"),upgrade:(J,X,Y)=>{this.handleUpgrade(J,X,Y,G)}})}if($.perMessageDeflate===!0)$.perMessageDeflate={};if($.clientTracking)this.clients=new Set,this._shouldEmitClose=!1;this.options=$,this._state=0}address(){if(this.options.noServer)throw Error('The server is operating in "noServer" mode');if(!this._server)return null;return this._server.address()}close($){if(this._state===2){if($)this.once("close",()=>{$(Error("The server is not running"))});process.nextTick(z7,this);return}if($)this.once("close",$);if(this._state===1)return;if(this._state=1,this.options.noServer||this.options.server){if(this._server)this._removeListeners(),this._removeListeners=this._server=null;if(this.clients)if(!this.clients.size)process.nextTick(z7,this);else this._shouldEmitClose=!0;else process.nextTick(z7,this)}else{let Z=this._server;this._removeListeners(),this._removeListeners=this._server=null,Z.close(()=>{z7(this)})}}shouldHandle($){if(this.options.path){let Z=$.url.indexOf("?");if((Z!==-1?$.url.slice(0,Z):$.url)!==this.options.path)return!1}return!0}handleUpgrade($,Z,G,J){Z.on("error",mY);let X=$.headers["sec-websocket-key"],Y=$.headers.upgrade,H=+$.headers["sec-websocket-version"];if($.method!=="GET"){f5(this,$,Z,405,"Invalid HTTP method");return}if(Y===void 0||Y.toLowerCase()!=="websocket"){f5(this,$,Z,400,"Invalid Upgrade header");return}if(X===void 0||!yA.test(X)){f5(this,$,Z,400,"Missing or invalid Sec-WebSocket-Key header");return}if(H!==13&&H!==8){f5(this,$,Z,400,"Missing or invalid Sec-WebSocket-Version header",{"Sec-WebSocket-Version":"13, 8"});return}if(!this.shouldHandle($)){A7(Z,400);return}let Q=$.headers["sec-websocket-protocol"],q=new Set;if(Q!==void 0)try{q=SA.parse(Q)}catch(W){f5(this,$,Z,400,"Invalid Sec-WebSocket-Protocol header");return}let U=$.headers["sec-websocket-extensions"],K={};if(this.options.perMessageDeflate&&U!==void 0){let W=new m5(this.options.perMessageDeflate,!0,this.options.maxPayload);try{let z=kY.parse(U);if(z[m5.extensionName])W.accept(z[m5.extensionName]),K[m5.extensionName]=W}catch(z){f5(this,$,Z,400,"Invalid or unacceptable Sec-WebSocket-Extensions header");return}}if(this.options.verifyClient){let W={origin:$.headers[`${H===8?"sec-websocket-origin":"origin"}`],secure:!!($.socket.authorized||$.socket.encrypted),req:$};if(this.options.verifyClient.length===2){this.options.verifyClient(W,(z,L,V,B)=>{if(!z)return A7(Z,L||401,V,B);this.completeUpgrade(K,X,q,$,Z,G,J)});return}if(!this.options.verifyClient(W))return A7(Z,401)}this.completeUpgrade(K,X,q,$,Z,G,J)}completeUpgrade($,Z,G,J,X,Y,H){if(!X.readable||!X.writable)return X.destroy();if(X[gA])throw Error("server.handleUpgrade() was called more than once with the same socket, possibly due to a misconfiguration");if(this._state>0)return A7(X,503);let q=["HTTP/1.1 101 Switching Protocols","Upgrade: websocket","Connection: Upgrade",`Sec-WebSocket-Accept: ${jA("sha1").update(Z+CA).digest("base64")}`],U=new this.options.WebSocket(null,void 0,this.options);if(G.size){let K=this.options.handleProtocols?this.options.handleProtocols(G,J):G.values().next().value;if(K)q.push(`Sec-WebSocket-Protocol: ${K}`),U._protocol=K}if($[m5.extensionName]){let K=$[m5.extensionName].params,W=kY.format({[m5.extensionName]:[K]});q.push(`Sec-WebSocket-Extensions: ${W}`),U._extensions=$}if(this.emit("headers",q,J),X.write(q.concat(`\r
|
|
4
|
+
`+X),$.push(Y+"m+"+s6.exports.humanize(this.diff)+"\x1B[0m")}else $[0]=X3()+Z+" "+$[0]}function X3(){if($1.inspectOpts.hideDate)return"";return new Date().toISOString()+" "}function Q3(...$){return process.stderr.write(o6.formatWithOptions($1.inspectOpts,...$)+`
|
|
5
|
+
`)}function H3($){if($)process.env.DEBUG=$;else delete process.env.DEBUG}function z3(){return process.env.DEBUG}function K3($){$.inspectOpts={};let Z=Object.keys($1.inspectOpts);for(let J=0;J<Z.length;J++)$.inspectOpts[Z[J]]=$1.inspectOpts[Z[J]]}s6.exports=v9()($1);var{formatters:qJ}=s6.exports;qJ.o=function($){return this.inspectOpts.colors=this.useColors,o6.inspect($,this.inspectOpts).split(`
|
|
6
|
+
`).map((Z)=>Z.trim()).join(" ")};qJ.O=function($){return this.inspectOpts.colors=this.useColors,o6.inspect($,this.inspectOpts)}});var f1=F((DM,j9)=>{if(typeof process>"u"||process.type==="renderer"||!1||process.__nwjs)j9.exports=LJ();else j9.exports=NJ()});var H0=F((lM,fJ)=>{var vJ=["nodebuffer","arraybuffer","fragments"],jJ=typeof Blob<"u";if(jJ)vJ.push("blob");fJ.exports={BINARY_TYPES:vJ,EMPTY_BUFFER:Buffer.alloc(0),GUID:"258EAFA5-E914-47DA-95CA-C5AB0DC85B11",hasBlob:jJ,kForOnEventAttribute:Symbol("kIsForOnEventAttribute"),kListener:Symbol("kListener"),kStatusCode:Symbol("status-code"),kWebSocket:Symbol("websocket"),NOOP:()=>{}}});var $6=F((cM,e6)=>{var{EMPTY_BUFFER:A3}=H0(),_9=Buffer[Symbol.species];function F3($,Z){if($.length===0)return A3;if($.length===1)return $[0];let J=Buffer.allocUnsafe(Z),G=0;for(let Y=0;Y<$.length;Y++){let X=$[Y];J.set(X,G),G+=X.length}if(G<Z)return new _9(J.buffer,J.byteOffset,G);return J}function SJ($,Z,J,G,Y){for(let X=0;X<Y;X++)J[G+X]=$[X]^Z[X&3]}function xJ($,Z){for(let J=0;J<$.length;J++)$[J]^=Z[J&3]}function B3($){if($.length===$.buffer.byteLength)return $.buffer;return $.buffer.slice($.byteOffset,$.byteOffset+$.length)}function y9($){if(y9.readOnly=!0,Buffer.isBuffer($))return $;let Z;if($ instanceof ArrayBuffer)Z=new _9($);else if(ArrayBuffer.isView($))Z=new _9($.buffer,$.byteOffset,$.byteLength);else Z=Buffer.from($),y9.readOnly=!1;return Z}e6.exports={concat:F3,mask:SJ,toArrayBuffer:B3,toBuffer:y9,unmask:xJ};if(!process.env.WS_NO_BUFFER_UTIL)try{let $=(()=>{throw new Error("Cannot require module "+"bufferutil");})();e6.exports.mask=function(Z,J,G,Y,X){if(X<48)SJ(Z,J,G,Y,X);else $.mask(Z,J,G,Y,X)},e6.exports.unmask=function(Z,J){if(Z.length<32)xJ(Z,J);else $.unmask(Z,J)}}catch($){}});var gJ=F((pM,yJ)=>{var CJ=Symbol("kDone"),g9=Symbol("kRun");class _J{constructor($){this[CJ]=()=>{this.pending--,this[g9]()},this.concurrency=$||1/0,this.jobs=[],this.pending=0}add($){this.jobs.push($),this[g9]()}[g9](){if(this.pending===this.concurrency)return;if(this.jobs.length){let $=this.jobs.shift();this.pending++,$(this[CJ])}}}yJ.exports=_J});var J6=F((iM,uJ)=>{var Z6=require("zlib"),hJ=$6(),L3=gJ(),{kStatusCode:kJ}=H0(),q3=Buffer[Symbol.species],N3=Buffer.from([0,0,255,255]),Z7=Symbol("permessage-deflate"),z0=Symbol("total-length"),B5=Symbol("callback"),I0=Symbol("buffers"),L5=Symbol("error"),$7;class bJ{constructor($,Z,J){if(this._maxPayload=J|0,this._options=$||{},this._threshold=this._options.threshold!==void 0?this._options.threshold:1024,this._isServer=!!Z,this._deflate=null,this._inflate=null,this.params=null,!$7){let G=this._options.concurrencyLimit!==void 0?this._options.concurrencyLimit:10;$7=new L3(G)}}static get extensionName(){return"permessage-deflate"}offer(){let $={};if(this._options.serverNoContextTakeover)$.server_no_context_takeover=!0;if(this._options.clientNoContextTakeover)$.client_no_context_takeover=!0;if(this._options.serverMaxWindowBits)$.server_max_window_bits=this._options.serverMaxWindowBits;if(this._options.clientMaxWindowBits)$.client_max_window_bits=this._options.clientMaxWindowBits;else if(this._options.clientMaxWindowBits==null)$.client_max_window_bits=!0;return $}accept($){return $=this.normalizeParams($),this.params=this._isServer?this.acceptAsServer($):this.acceptAsClient($),this.params}cleanup(){if(this._inflate)this._inflate.close(),this._inflate=null;if(this._deflate){let $=this._deflate[B5];if(this._deflate.close(),this._deflate=null,$)$(Error("The deflate stream was closed while data was being processed"))}}acceptAsServer($){let Z=this._options,J=$.find((G)=>{if(Z.serverNoContextTakeover===!1&&G.server_no_context_takeover||G.server_max_window_bits&&(Z.serverMaxWindowBits===!1||typeof Z.serverMaxWindowBits==="number"&&Z.serverMaxWindowBits>G.server_max_window_bits)||typeof Z.clientMaxWindowBits==="number"&&!G.client_max_window_bits)return!1;return!0});if(!J)throw Error("None of the extension offers can be accepted");if(Z.serverNoContextTakeover)J.server_no_context_takeover=!0;if(Z.clientNoContextTakeover)J.client_no_context_takeover=!0;if(typeof Z.serverMaxWindowBits==="number")J.server_max_window_bits=Z.serverMaxWindowBits;if(typeof Z.clientMaxWindowBits==="number")J.client_max_window_bits=Z.clientMaxWindowBits;else if(J.client_max_window_bits===!0||Z.clientMaxWindowBits===!1)delete J.client_max_window_bits;return J}acceptAsClient($){let Z=$[0];if(this._options.clientNoContextTakeover===!1&&Z.client_no_context_takeover)throw Error('Unexpected parameter "client_no_context_takeover"');if(!Z.client_max_window_bits){if(typeof this._options.clientMaxWindowBits==="number")Z.client_max_window_bits=this._options.clientMaxWindowBits}else if(this._options.clientMaxWindowBits===!1||typeof this._options.clientMaxWindowBits==="number"&&Z.client_max_window_bits>this._options.clientMaxWindowBits)throw Error('Unexpected or invalid parameter "client_max_window_bits"');return Z}normalizeParams($){return $.forEach((Z)=>{Object.keys(Z).forEach((J)=>{let G=Z[J];if(G.length>1)throw Error(`Parameter "${J}" must have only a single value`);if(G=G[0],J==="client_max_window_bits"){if(G!==!0){let Y=+G;if(!Number.isInteger(Y)||Y<8||Y>15)throw TypeError(`Invalid value for parameter "${J}": ${G}`);G=Y}else if(!this._isServer)throw TypeError(`Invalid value for parameter "${J}": ${G}`)}else if(J==="server_max_window_bits"){let Y=+G;if(!Number.isInteger(Y)||Y<8||Y>15)throw TypeError(`Invalid value for parameter "${J}": ${G}`);G=Y}else if(J==="client_no_context_takeover"||J==="server_no_context_takeover"){if(G!==!0)throw TypeError(`Invalid value for parameter "${J}": ${G}`)}else throw Error(`Unknown parameter "${J}"`);Z[J]=G})}),$}decompress($,Z,J){$7.add((G)=>{this._decompress($,Z,(Y,X)=>{G(),J(Y,X)})})}compress($,Z,J){$7.add((G)=>{this._compress($,Z,(Y,X)=>{G(),J(Y,X)})})}_decompress($,Z,J){let G=this._isServer?"client":"server";if(!this._inflate){let Y=`${G}_max_window_bits`,X=typeof this.params[Y]!=="number"?Z6.Z_DEFAULT_WINDOWBITS:this.params[Y];this._inflate=Z6.createInflateRaw({...this._options.zlibInflateOptions,windowBits:X}),this._inflate[Z7]=this,this._inflate[z0]=0,this._inflate[I0]=[],this._inflate.on("error",R3),this._inflate.on("data",mJ)}if(this._inflate[B5]=J,this._inflate.write($),Z)this._inflate.write(N3);this._inflate.flush(()=>{let Y=this._inflate[L5];if(Y){this._inflate.close(),this._inflate=null,J(Y);return}let X=hJ.concat(this._inflate[I0],this._inflate[z0]);if(this._inflate._readableState.endEmitted)this._inflate.close(),this._inflate=null;else if(this._inflate[z0]=0,this._inflate[I0]=[],Z&&this.params[`${G}_no_context_takeover`])this._inflate.reset();J(null,X)})}_compress($,Z,J){let G=this._isServer?"server":"client";if(!this._deflate){let Y=`${G}_max_window_bits`,X=typeof this.params[Y]!=="number"?Z6.Z_DEFAULT_WINDOWBITS:this.params[Y];this._deflate=Z6.createDeflateRaw({...this._options.zlibDeflateOptions,windowBits:X}),this._deflate[z0]=0,this._deflate[I0]=[],this._deflate.on("data",M3)}this._deflate[B5]=J,this._deflate.write($),this._deflate.flush(Z6.Z_SYNC_FLUSH,()=>{if(!this._deflate)return;let Y=hJ.concat(this._deflate[I0],this._deflate[z0]);if(Z)Y=new q3(Y.buffer,Y.byteOffset,Y.length-4);if(this._deflate[B5]=null,this._deflate[z0]=0,this._deflate[I0]=[],Z&&this.params[`${G}_no_context_takeover`])this._deflate.reset();J(null,Y)})}}uJ.exports=bJ;function M3($){this[I0].push($),this[z0]+=$.length}function mJ($){if(this[z0]+=$.length,this[Z7]._maxPayload<1||this[z0]<=this[Z7]._maxPayload){this[I0].push($);return}this[L5]=RangeError("Max payload size exceeded"),this[L5].code="WS_ERR_UNSUPPORTED_MESSAGE_LENGTH",this[L5][kJ]=1009,this.removeListener("data",mJ),this.reset()}function R3($){if(this[Z7]._inflate=null,this[L5]){this[B5](this[L5]);return}$[kJ]=1007,this[B5]($)}});var q5=F((dM,J7)=>{var{isUtf8:lJ}=require("buffer"),{hasBlob:I3}=H0(),P3=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0];function D3($){return $>=1000&&$<=1014&&$!==1004&&$!==1005&&$!==1006||$>=3000&&$<=4999}function h9($){let Z=$.length,J=0;while(J<Z)if(($[J]&128)===0)J++;else if(($[J]&224)===192){if(J+1===Z||($[J+1]&192)!==128||($[J]&254)===192)return!1;J+=2}else if(($[J]&240)===224){if(J+2>=Z||($[J+1]&192)!==128||($[J+2]&192)!==128||$[J]===224&&($[J+1]&224)===128||$[J]===237&&($[J+1]&224)===160)return!1;J+=3}else if(($[J]&248)===240){if(J+3>=Z||($[J+1]&192)!==128||($[J+2]&192)!==128||($[J+3]&192)!==128||$[J]===240&&($[J+1]&240)===128||$[J]===244&&$[J+1]>143||$[J]>244)return!1;J+=4}else return!1;return!0}function T3($){return I3&&typeof $==="object"&&typeof $.arrayBuffer==="function"&&typeof $.type==="string"&&typeof $.stream==="function"&&($[Symbol.toStringTag]==="Blob"||$[Symbol.toStringTag]==="File")}J7.exports={isBlob:T3,isValidStatusCode:D3,isValidUTF8:h9,tokenChars:P3};if(lJ)J7.exports.isValidUTF8=function($){return $.length<24?h9($):lJ($)};else if(!process.env.WS_NO_UTF_8_VALIDATE)try{let $=(()=>{throw new Error("Cannot require module "+"utf-8-validate");})();J7.exports.isValidUTF8=function(Z){return Z.length<32?h9(Z):$(Z)}}catch($){}});var b9=F((nM,nJ)=>{var{Writable:w3}=require("stream"),cJ=J6(),{BINARY_TYPES:E3,EMPTY_BUFFER:pJ,kStatusCode:v3,kWebSocket:j3}=H0(),{concat:k9,toArrayBuffer:f3,unmask:S3}=$6(),{isValidStatusCode:x3,isValidUTF8:iJ}=q5(),G7=Buffer[Symbol.species];class dJ extends w3{constructor($={}){super();this._allowSynchronousEvents=$.allowSynchronousEvents!==void 0?$.allowSynchronousEvents:!0,this._binaryType=$.binaryType||E3[0],this._extensions=$.extensions||{},this._isServer=!!$.isServer,this._maxPayload=$.maxPayload|0,this._skipUTF8Validation=!!$.skipUTF8Validation,this[j3]=void 0,this._bufferedBytes=0,this._buffers=[],this._compressed=!1,this._payloadLength=0,this._mask=void 0,this._fragmented=0,this._masked=!1,this._fin=!1,this._opcode=0,this._totalPayloadLength=0,this._messageLength=0,this._fragments=[],this._errored=!1,this._loop=!1,this._state=0}_write($,Z,J){if(this._opcode===8&&this._state==0)return J();this._bufferedBytes+=$.length,this._buffers.push($),this.startLoop(J)}consume($){if(this._bufferedBytes-=$,$===this._buffers[0].length)return this._buffers.shift();if($<this._buffers[0].length){let J=this._buffers[0];return this._buffers[0]=new G7(J.buffer,J.byteOffset+$,J.length-$),new G7(J.buffer,J.byteOffset,$)}let Z=Buffer.allocUnsafe($);do{let J=this._buffers[0],G=Z.length-$;if($>=J.length)Z.set(this._buffers.shift(),G);else Z.set(new Uint8Array(J.buffer,J.byteOffset,$),G),this._buffers[0]=new G7(J.buffer,J.byteOffset+$,J.length-$);$-=J.length}while($>0);return Z}startLoop($){this._loop=!0;do switch(this._state){case 0:this.getInfo($);break;case 1:this.getPayloadLength16($);break;case 2:this.getPayloadLength64($);break;case 3:this.getMask();break;case 4:this.getData($);break;case 5:case 6:this._loop=!1;return}while(this._loop);if(!this._errored)$()}getInfo($){if(this._bufferedBytes<2){this._loop=!1;return}let Z=this.consume(2);if((Z[0]&48)!==0){let G=this.createError(RangeError,"RSV2 and RSV3 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_2_3");$(G);return}let J=(Z[0]&64)===64;if(J&&!this._extensions[cJ.extensionName]){let G=this.createError(RangeError,"RSV1 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_1");$(G);return}if(this._fin=(Z[0]&128)===128,this._opcode=Z[0]&15,this._payloadLength=Z[1]&127,this._opcode===0){if(J){let G=this.createError(RangeError,"RSV1 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_1");$(G);return}if(!this._fragmented){let G=this.createError(RangeError,"invalid opcode 0",!0,1002,"WS_ERR_INVALID_OPCODE");$(G);return}this._opcode=this._fragmented}else if(this._opcode===1||this._opcode===2){if(this._fragmented){let G=this.createError(RangeError,`invalid opcode ${this._opcode}`,!0,1002,"WS_ERR_INVALID_OPCODE");$(G);return}this._compressed=J}else if(this._opcode>7&&this._opcode<11){if(!this._fin){let G=this.createError(RangeError,"FIN must be set",!0,1002,"WS_ERR_EXPECTED_FIN");$(G);return}if(J){let G=this.createError(RangeError,"RSV1 must be clear",!0,1002,"WS_ERR_UNEXPECTED_RSV_1");$(G);return}if(this._payloadLength>125||this._opcode===8&&this._payloadLength===1){let G=this.createError(RangeError,`invalid payload length ${this._payloadLength}`,!0,1002,"WS_ERR_INVALID_CONTROL_PAYLOAD_LENGTH");$(G);return}}else{let G=this.createError(RangeError,`invalid opcode ${this._opcode}`,!0,1002,"WS_ERR_INVALID_OPCODE");$(G);return}if(!this._fin&&!this._fragmented)this._fragmented=this._opcode;if(this._masked=(Z[1]&128)===128,this._isServer){if(!this._masked){let G=this.createError(RangeError,"MASK must be set",!0,1002,"WS_ERR_EXPECTED_MASK");$(G);return}}else if(this._masked){let G=this.createError(RangeError,"MASK must be clear",!0,1002,"WS_ERR_UNEXPECTED_MASK");$(G);return}if(this._payloadLength===126)this._state=1;else if(this._payloadLength===127)this._state=2;else this.haveLength($)}getPayloadLength16($){if(this._bufferedBytes<2){this._loop=!1;return}this._payloadLength=this.consume(2).readUInt16BE(0),this.haveLength($)}getPayloadLength64($){if(this._bufferedBytes<8){this._loop=!1;return}let Z=this.consume(8),J=Z.readUInt32BE(0);if(J>Math.pow(2,21)-1){let G=this.createError(RangeError,"Unsupported WebSocket frame: payload length > 2^53 - 1",!1,1009,"WS_ERR_UNSUPPORTED_DATA_PAYLOAD_LENGTH");$(G);return}this._payloadLength=J*Math.pow(2,32)+Z.readUInt32BE(4),this.haveLength($)}haveLength($){if(this._payloadLength&&this._opcode<8){if(this._totalPayloadLength+=this._payloadLength,this._totalPayloadLength>this._maxPayload&&this._maxPayload>0){let Z=this.createError(RangeError,"Max payload size exceeded",!1,1009,"WS_ERR_UNSUPPORTED_MESSAGE_LENGTH");$(Z);return}}if(this._masked)this._state=3;else this._state=4}getMask(){if(this._bufferedBytes<4){this._loop=!1;return}this._mask=this.consume(4),this._state=4}getData($){let Z=pJ;if(this._payloadLength){if(this._bufferedBytes<this._payloadLength){this._loop=!1;return}if(Z=this.consume(this._payloadLength),this._masked&&(this._mask[0]|this._mask[1]|this._mask[2]|this._mask[3])!==0)S3(Z,this._mask)}if(this._opcode>7){this.controlMessage(Z,$);return}if(this._compressed){this._state=5,this.decompress(Z,$);return}if(Z.length)this._messageLength=this._totalPayloadLength,this._fragments.push(Z);this.dataMessage($)}decompress($,Z){this._extensions[cJ.extensionName].decompress($,this._fin,(G,Y)=>{if(G)return Z(G);if(Y.length){if(this._messageLength+=Y.length,this._messageLength>this._maxPayload&&this._maxPayload>0){let X=this.createError(RangeError,"Max payload size exceeded",!1,1009,"WS_ERR_UNSUPPORTED_MESSAGE_LENGTH");Z(X);return}this._fragments.push(Y)}if(this.dataMessage(Z),this._state===0)this.startLoop(Z)})}dataMessage($){if(!this._fin){this._state=0;return}let Z=this._messageLength,J=this._fragments;if(this._totalPayloadLength=0,this._messageLength=0,this._fragmented=0,this._fragments=[],this._opcode===2){let G;if(this._binaryType==="nodebuffer")G=k9(J,Z);else if(this._binaryType==="arraybuffer")G=f3(k9(J,Z));else if(this._binaryType==="blob")G=new Blob(J);else G=J;if(this._allowSynchronousEvents)this.emit("message",G,!0),this._state=0;else this._state=6,setImmediate(()=>{this.emit("message",G,!0),this._state=0,this.startLoop($)})}else{let G=k9(J,Z);if(!this._skipUTF8Validation&&!iJ(G)){let Y=this.createError(Error,"invalid UTF-8 sequence",!0,1007,"WS_ERR_INVALID_UTF8");$(Y);return}if(this._state===5||this._allowSynchronousEvents)this.emit("message",G,!1),this._state=0;else this._state=6,setImmediate(()=>{this.emit("message",G,!1),this._state=0,this.startLoop($)})}}controlMessage($,Z){if(this._opcode===8){if($.length===0)this._loop=!1,this.emit("conclude",1005,pJ),this.end();else{let J=$.readUInt16BE(0);if(!x3(J)){let Y=this.createError(RangeError,`invalid status code ${J}`,!0,1002,"WS_ERR_INVALID_CLOSE_CODE");Z(Y);return}let G=new G7($.buffer,$.byteOffset+2,$.length-2);if(!this._skipUTF8Validation&&!iJ(G)){let Y=this.createError(Error,"invalid UTF-8 sequence",!0,1007,"WS_ERR_INVALID_UTF8");Z(Y);return}this._loop=!1,this.emit("conclude",J,G),this.end()}this._state=0;return}if(this._allowSynchronousEvents)this.emit(this._opcode===9?"ping":"pong",$),this._state=0;else this._state=6,setImmediate(()=>{this.emit(this._opcode===9?"ping":"pong",$),this._state=0,this.startLoop(Z)})}createError($,Z,J,G,Y){this._loop=!1,this._errored=!0;let X=new $(J?`Invalid WebSocket frame: ${Z}`:Z);return Error.captureStackTrace(X,this.createError),X.code=Y,X[v3]=G,X}}nJ.exports=dJ});var u9=F((rM,oJ)=>{var{Duplex:aM}=require("stream"),{randomFillSync:C3}=require("crypto"),aJ=J6(),{EMPTY_BUFFER:_3,kWebSocket:y3,NOOP:g3}=H0(),{isBlob:N5,isValidStatusCode:h3}=q5(),{mask:rJ,toBuffer:p0}=$6(),S1=Symbol("kByteLength"),k3=Buffer.alloc(4),i0,M5=8192,b1=0,b3=1,m3=2;class P0{constructor($,Z,J){if(this._extensions=Z||{},J)this._generateMask=J,this._maskBuffer=Buffer.alloc(4);this._socket=$,this._firstFragment=!0,this._compress=!1,this._bufferedBytes=0,this._queue=[],this._state=b1,this.onerror=g3,this[y3]=void 0}static frame($,Z){let J,G=!1,Y=2,X=!1;if(Z.mask){if(J=Z.maskBuffer||k3,Z.generateMask)Z.generateMask(J);else{if(M5===8192){if(i0===void 0)i0=Buffer.alloc(8192);C3(i0,0,8192),M5=0}J[0]=i0[M5++],J[1]=i0[M5++],J[2]=i0[M5++],J[3]=i0[M5++]}X=(J[0]|J[1]|J[2]|J[3])===0,Y=6}let Q;if(typeof $==="string")if((!Z.mask||X)&&Z[S1]!==void 0)Q=Z[S1];else $=Buffer.from($),Q=$.length;else Q=$.length,G=Z.mask&&Z.readOnly&&!X;let z=Q;if(Q>=65536)Y+=8,z=127;else if(Q>125)Y+=2,z=126;let H=Buffer.allocUnsafe(G?Q+Y:Y);if(H[0]=Z.fin?Z.opcode|128:Z.opcode,Z.rsv1)H[0]|=64;if(H[1]=z,z===126)H.writeUInt16BE(Q,2);else if(z===127)H[2]=H[3]=0,H.writeUIntBE(Q,4,6);if(!Z.mask)return[H,$];if(H[1]|=128,H[Y-4]=J[0],H[Y-3]=J[1],H[Y-2]=J[2],H[Y-1]=J[3],X)return[H,$];if(G)return rJ($,J,H,Y,Q),[H];return rJ($,J,$,0,Q),[H,$]}close($,Z,J,G){let Y;if($===void 0)Y=_3;else if(typeof $!=="number"||!h3($))throw TypeError("First argument must be a valid error code number");else if(Z===void 0||!Z.length)Y=Buffer.allocUnsafe(2),Y.writeUInt16BE($,0);else{let Q=Buffer.byteLength(Z);if(Q>123)throw RangeError("The message must not be greater than 123 bytes");if(Y=Buffer.allocUnsafe(2+Q),Y.writeUInt16BE($,0),typeof Z==="string")Y.write(Z,2);else Y.set(Z,2)}let X={[S1]:Y.length,fin:!0,generateMask:this._generateMask,mask:J,maskBuffer:this._maskBuffer,opcode:8,readOnly:!1,rsv1:!1};if(this._state!==b1)this.enqueue([this.dispatch,Y,!1,X,G]);else this.sendFrame(P0.frame(Y,X),G)}ping($,Z,J){let G,Y;if(typeof $==="string")G=Buffer.byteLength($),Y=!1;else if(N5($))G=$.size,Y=!1;else $=p0($),G=$.length,Y=p0.readOnly;if(G>125)throw RangeError("The data size must not be greater than 125 bytes");let X={[S1]:G,fin:!0,generateMask:this._generateMask,mask:Z,maskBuffer:this._maskBuffer,opcode:9,readOnly:Y,rsv1:!1};if(N5($))if(this._state!==b1)this.enqueue([this.getBlobData,$,!1,X,J]);else this.getBlobData($,!1,X,J);else if(this._state!==b1)this.enqueue([this.dispatch,$,!1,X,J]);else this.sendFrame(P0.frame($,X),J)}pong($,Z,J){let G,Y;if(typeof $==="string")G=Buffer.byteLength($),Y=!1;else if(N5($))G=$.size,Y=!1;else $=p0($),G=$.length,Y=p0.readOnly;if(G>125)throw RangeError("The data size must not be greater than 125 bytes");let X={[S1]:G,fin:!0,generateMask:this._generateMask,mask:Z,maskBuffer:this._maskBuffer,opcode:10,readOnly:Y,rsv1:!1};if(N5($))if(this._state!==b1)this.enqueue([this.getBlobData,$,!1,X,J]);else this.getBlobData($,!1,X,J);else if(this._state!==b1)this.enqueue([this.dispatch,$,!1,X,J]);else this.sendFrame(P0.frame($,X),J)}send($,Z,J){let G=this._extensions[aJ.extensionName],Y=Z.binary?2:1,X=Z.compress,Q,z;if(typeof $==="string")Q=Buffer.byteLength($),z=!1;else if(N5($))Q=$.size,z=!1;else $=p0($),Q=$.length,z=p0.readOnly;if(this._firstFragment){if(this._firstFragment=!1,X&&G&&G.params[G._isServer?"server_no_context_takeover":"client_no_context_takeover"])X=Q>=G._threshold;this._compress=X}else X=!1,Y=0;if(Z.fin)this._firstFragment=!0;let H={[S1]:Q,fin:Z.fin,generateMask:this._generateMask,mask:Z.mask,maskBuffer:this._maskBuffer,opcode:Y,readOnly:z,rsv1:X};if(N5($))if(this._state!==b1)this.enqueue([this.getBlobData,$,this._compress,H,J]);else this.getBlobData($,this._compress,H,J);else if(this._state!==b1)this.enqueue([this.dispatch,$,this._compress,H,J]);else this.dispatch($,this._compress,H,J)}getBlobData($,Z,J,G){this._bufferedBytes+=J[S1],this._state=m3,$.arrayBuffer().then((Y)=>{if(this._socket.destroyed){let Q=Error("The socket was closed while the blob was being read");process.nextTick(m9,this,Q,G);return}this._bufferedBytes-=J[S1];let X=p0(Y);if(!Z)this._state=b1,this.sendFrame(P0.frame(X,J),G),this.dequeue();else this.dispatch(X,Z,J,G)}).catch((Y)=>{process.nextTick(u3,this,Y,G)})}dispatch($,Z,J,G){if(!Z){this.sendFrame(P0.frame($,J),G);return}let Y=this._extensions[aJ.extensionName];this._bufferedBytes+=J[S1],this._state=b3,Y.compress($,J.fin,(X,Q)=>{if(this._socket.destroyed){let z=Error("The socket was closed while data was being compressed");m9(this,z,G);return}this._bufferedBytes-=J[S1],this._state=b1,J.readOnly=!1,this.sendFrame(P0.frame(Q,J),G),this.dequeue()})}dequeue(){while(this._state===b1&&this._queue.length){let $=this._queue.shift();this._bufferedBytes-=$[3][S1],Reflect.apply($[0],this,$.slice(1))}}enqueue($){this._bufferedBytes+=$[3][S1],this._queue.push($)}sendFrame($,Z){if($.length===2)this._socket.cork(),this._socket.write($[0]),this._socket.write($[1],Z),this._socket.uncork();else this._socket.write($[0],Z)}}oJ.exports=P0;function m9($,Z,J){if(typeof J==="function")J(Z);for(let G=0;G<$._queue.length;G++){let Y=$._queue[G],X=Y[Y.length-1];if(typeof X==="function")X(Z)}}function u3($,Z,J){m9($,Z,J),$.onerror(Z)}});var X2=F((oM,Y2)=>{var{kForOnEventAttribute:G6,kListener:l9}=H0(),sJ=Symbol("kCode"),tJ=Symbol("kData"),eJ=Symbol("kError"),$2=Symbol("kMessage"),Z2=Symbol("kReason"),R5=Symbol("kTarget"),J2=Symbol("kType"),G2=Symbol("kWasClean");class D0{constructor($){this[R5]=null,this[J2]=$}get target(){return this[R5]}get type(){return this[J2]}}Object.defineProperty(D0.prototype,"target",{enumerable:!0});Object.defineProperty(D0.prototype,"type",{enumerable:!0});class I5 extends D0{constructor($,Z={}){super($);this[sJ]=Z.code===void 0?0:Z.code,this[Z2]=Z.reason===void 0?"":Z.reason,this[G2]=Z.wasClean===void 0?!1:Z.wasClean}get code(){return this[sJ]}get reason(){return this[Z2]}get wasClean(){return this[G2]}}Object.defineProperty(I5.prototype,"code",{enumerable:!0});Object.defineProperty(I5.prototype,"reason",{enumerable:!0});Object.defineProperty(I5.prototype,"wasClean",{enumerable:!0});class Y6 extends D0{constructor($,Z={}){super($);this[eJ]=Z.error===void 0?null:Z.error,this[$2]=Z.message===void 0?"":Z.message}get error(){return this[eJ]}get message(){return this[$2]}}Object.defineProperty(Y6.prototype,"error",{enumerable:!0});Object.defineProperty(Y6.prototype,"message",{enumerable:!0});class X7 extends D0{constructor($,Z={}){super($);this[tJ]=Z.data===void 0?null:Z.data}get data(){return this[tJ]}}Object.defineProperty(X7.prototype,"data",{enumerable:!0});var l3={addEventListener($,Z,J={}){for(let Y of this.listeners($))if(!J[G6]&&Y[l9]===Z&&!Y[G6])return;let G;if($==="message")G=function(X,Q){let z=new X7("message",{data:Q?X:X.toString()});z[R5]=this,Y7(Z,this,z)};else if($==="close")G=function(X,Q){let z=new I5("close",{code:X,reason:Q.toString(),wasClean:this._closeFrameReceived&&this._closeFrameSent});z[R5]=this,Y7(Z,this,z)};else if($==="error")G=function(X){let Q=new Y6("error",{error:X,message:X.message});Q[R5]=this,Y7(Z,this,Q)};else if($==="open")G=function(){let X=new D0("open");X[R5]=this,Y7(Z,this,X)};else return;if(G[G6]=!!J[G6],G[l9]=Z,J.once)this.once($,G);else this.on($,G)},removeEventListener($,Z){for(let J of this.listeners($))if(J[l9]===Z&&!J[G6]){this.removeListener($,J);break}}};Y2.exports={CloseEvent:I5,ErrorEvent:Y6,Event:D0,EventTarget:l3,MessageEvent:X7};function Y7($,Z,J){if(typeof $==="object"&&$.handleEvent)$.handleEvent.call($,J);else $.call(Z,J)}});var c9=F((sM,Q2)=>{var{tokenChars:X6}=q5();function a1($,Z,J){if($[Z]===void 0)$[Z]=[J];else $[Z].push(J)}function c3($){let Z=Object.create(null),J=Object.create(null),G=!1,Y=!1,X=!1,Q,z,H=-1,K=-1,U=-1,O=0;for(;O<$.length;O++)if(K=$.charCodeAt(O),Q===void 0)if(U===-1&&X6[K]===1){if(H===-1)H=O}else if(O!==0&&(K===32||K===9)){if(U===-1&&H!==-1)U=O}else if(K===59||K===44){if(H===-1)throw SyntaxError(`Unexpected character at index ${O}`);if(U===-1)U=O;let L=$.slice(H,U);if(K===44)a1(Z,L,J),J=Object.create(null);else Q=L;H=U=-1}else throw SyntaxError(`Unexpected character at index ${O}`);else if(z===void 0)if(U===-1&&X6[K]===1){if(H===-1)H=O}else if(K===32||K===9){if(U===-1&&H!==-1)U=O}else if(K===59||K===44){if(H===-1)throw SyntaxError(`Unexpected character at index ${O}`);if(U===-1)U=O;if(a1(J,$.slice(H,U),!0),K===44)a1(Z,Q,J),J=Object.create(null),Q=void 0;H=U=-1}else if(K===61&&H!==-1&&U===-1)z=$.slice(H,O),H=U=-1;else throw SyntaxError(`Unexpected character at index ${O}`);else if(Y){if(X6[K]!==1)throw SyntaxError(`Unexpected character at index ${O}`);if(H===-1)H=O;else if(!G)G=!0;Y=!1}else if(X)if(X6[K]===1){if(H===-1)H=O}else if(K===34&&H!==-1)X=!1,U=O;else if(K===92)Y=!0;else throw SyntaxError(`Unexpected character at index ${O}`);else if(K===34&&$.charCodeAt(O-1)===61)X=!0;else if(U===-1&&X6[K]===1){if(H===-1)H=O}else if(H!==-1&&(K===32||K===9)){if(U===-1)U=O}else if(K===59||K===44){if(H===-1)throw SyntaxError(`Unexpected character at index ${O}`);if(U===-1)U=O;let L=$.slice(H,U);if(G)L=L.replace(/\\/g,""),G=!1;if(a1(J,z,L),K===44)a1(Z,Q,J),J=Object.create(null),Q=void 0;z=void 0,H=U=-1}else throw SyntaxError(`Unexpected character at index ${O}`);if(H===-1||X||K===32||K===9)throw SyntaxError("Unexpected end of input");if(U===-1)U=O;let W=$.slice(H,U);if(Q===void 0)a1(Z,W,J);else{if(z===void 0)a1(J,W,!0);else if(G)a1(J,z,W.replace(/\\/g,""));else a1(J,z,W);a1(Z,Q,J)}return Z}function p3($){return Object.keys($).map((Z)=>{let J=$[Z];if(!Array.isArray(J))J=[J];return J.map((G)=>{return[Z].concat(Object.keys(G).map((Y)=>{let X=G[Y];if(!Array.isArray(X))X=[X];return X.map((Q)=>Q===!0?Y:`${Y}=${Q}`).join("; ")})).join("; ")}).join(", ")}).join(", ")}Q2.exports={format:p3,parse:c3}});var K7=F(($R,q2)=>{var i3=require("events"),d3=require("https"),n3=require("http"),K2=require("net"),a3=require("tls"),{randomBytes:r3,createHash:o3}=require("crypto"),{Duplex:tM,Readable:eM}=require("stream"),{URL:p9}=require("url"),T0=J6(),s3=b9(),t3=u9(),{isBlob:e3}=q5(),{BINARY_TYPES:H2,EMPTY_BUFFER:Q7,GUID:$K,kForOnEventAttribute:i9,kListener:ZK,kStatusCode:JK,kWebSocket:Z1,NOOP:U2}=H0(),{EventTarget:{addEventListener:GK,removeEventListener:YK}}=X2(),{format:XK,parse:QK}=c9(),{toBuffer:HK}=$6(),O2=Symbol("kAborted"),d9=[8,13],K0=["CONNECTING","OPEN","CLOSING","CLOSED"],zK=/^[!#$%&'*+\-.0-9A-Z^_`|a-z~]+$/;class E extends i3{constructor($,Z,J){super();if(this._binaryType=H2[0],this._closeCode=1006,this._closeFrameReceived=!1,this._closeFrameSent=!1,this._closeMessage=Q7,this._closeTimer=null,this._errorEmitted=!1,this._extensions={},this._paused=!1,this._protocol="",this._readyState=E.CONNECTING,this._receiver=null,this._sender=null,this._socket=null,$!==null){if(this._bufferedAmount=0,this._isServer=!1,this._redirects=0,Z===void 0)Z=[];else if(!Array.isArray(Z))if(typeof Z==="object"&&Z!==null)J=Z,Z=[];else Z=[Z];V2(this,$,Z,J)}else this._autoPong=J.autoPong,this._isServer=!0}get binaryType(){return this._binaryType}set binaryType($){if(!H2.includes($))return;if(this._binaryType=$,this._receiver)this._receiver._binaryType=$}get bufferedAmount(){if(!this._socket)return this._bufferedAmount;return this._socket._writableState.length+this._sender._bufferedBytes}get extensions(){return Object.keys(this._extensions).join()}get isPaused(){return this._paused}get onclose(){return null}get onerror(){return null}get onopen(){return null}get onmessage(){return null}get protocol(){return this._protocol}get readyState(){return this._readyState}get url(){return this._url}setSocket($,Z,J){let G=new s3({allowSynchronousEvents:J.allowSynchronousEvents,binaryType:this.binaryType,extensions:this._extensions,isServer:this._isServer,maxPayload:J.maxPayload,skipUTF8Validation:J.skipUTF8Validation}),Y=new t3($,this._extensions,J.generateMask);if(this._receiver=G,this._sender=Y,this._socket=$,G[Z1]=this,Y[Z1]=this,$[Z1]=this,G.on("conclude",OK),G.on("drain",VK),G.on("error",WK),G.on("message",AK),G.on("ping",FK),G.on("pong",BK),Y.onerror=LK,$.setTimeout)$.setTimeout(0);if($.setNoDelay)$.setNoDelay();if(Z.length>0)$.unshift(Z);$.on("close",F2),$.on("data",z7),$.on("end",B2),$.on("error",L2),this._readyState=E.OPEN,this.emit("open")}emitClose(){if(!this._socket){this._readyState=E.CLOSED,this.emit("close",this._closeCode,this._closeMessage);return}if(this._extensions[T0.extensionName])this._extensions[T0.extensionName].cleanup();this._receiver.removeAllListeners(),this._readyState=E.CLOSED,this.emit("close",this._closeCode,this._closeMessage)}close($,Z){if(this.readyState===E.CLOSED)return;if(this.readyState===E.CONNECTING){I1(this,this._req,"WebSocket was closed before the connection was established");return}if(this.readyState===E.CLOSING){if(this._closeFrameSent&&(this._closeFrameReceived||this._receiver._writableState.errorEmitted))this._socket.end();return}this._readyState=E.CLOSING,this._sender.close($,Z,!this._isServer,(J)=>{if(J)return;if(this._closeFrameSent=!0,this._closeFrameReceived||this._receiver._writableState.errorEmitted)this._socket.end()}),A2(this)}pause(){if(this.readyState===E.CONNECTING||this.readyState===E.CLOSED)return;this._paused=!0,this._socket.pause()}ping($,Z,J){if(this.readyState===E.CONNECTING)throw Error("WebSocket is not open: readyState 0 (CONNECTING)");if(typeof $==="function")J=$,$=Z=void 0;else if(typeof Z==="function")J=Z,Z=void 0;if(typeof $==="number")$=$.toString();if(this.readyState!==E.OPEN){n9(this,$,J);return}if(Z===void 0)Z=!this._isServer;this._sender.ping($||Q7,Z,J)}pong($,Z,J){if(this.readyState===E.CONNECTING)throw Error("WebSocket is not open: readyState 0 (CONNECTING)");if(typeof $==="function")J=$,$=Z=void 0;else if(typeof Z==="function")J=Z,Z=void 0;if(typeof $==="number")$=$.toString();if(this.readyState!==E.OPEN){n9(this,$,J);return}if(Z===void 0)Z=!this._isServer;this._sender.pong($||Q7,Z,J)}resume(){if(this.readyState===E.CONNECTING||this.readyState===E.CLOSED)return;if(this._paused=!1,!this._receiver._writableState.needDrain)this._socket.resume()}send($,Z,J){if(this.readyState===E.CONNECTING)throw Error("WebSocket is not open: readyState 0 (CONNECTING)");if(typeof Z==="function")J=Z,Z={};if(typeof $==="number")$=$.toString();if(this.readyState!==E.OPEN){n9(this,$,J);return}let G={binary:typeof $!=="string",mask:!this._isServer,compress:!0,fin:!0,...Z};if(!this._extensions[T0.extensionName])G.compress=!1;this._sender.send($||Q7,G,J)}terminate(){if(this.readyState===E.CLOSED)return;if(this.readyState===E.CONNECTING){I1(this,this._req,"WebSocket was closed before the connection was established");return}if(this._socket)this._readyState=E.CLOSING,this._socket.destroy()}}Object.defineProperty(E,"CONNECTING",{enumerable:!0,value:K0.indexOf("CONNECTING")});Object.defineProperty(E.prototype,"CONNECTING",{enumerable:!0,value:K0.indexOf("CONNECTING")});Object.defineProperty(E,"OPEN",{enumerable:!0,value:K0.indexOf("OPEN")});Object.defineProperty(E.prototype,"OPEN",{enumerable:!0,value:K0.indexOf("OPEN")});Object.defineProperty(E,"CLOSING",{enumerable:!0,value:K0.indexOf("CLOSING")});Object.defineProperty(E.prototype,"CLOSING",{enumerable:!0,value:K0.indexOf("CLOSING")});Object.defineProperty(E,"CLOSED",{enumerable:!0,value:K0.indexOf("CLOSED")});Object.defineProperty(E.prototype,"CLOSED",{enumerable:!0,value:K0.indexOf("CLOSED")});["binaryType","bufferedAmount","extensions","isPaused","protocol","readyState","url"].forEach(($)=>{Object.defineProperty(E.prototype,$,{enumerable:!0})});["open","error","close","message"].forEach(($)=>{Object.defineProperty(E.prototype,`on${$}`,{enumerable:!0,get(){for(let Z of this.listeners($))if(Z[i9])return Z[ZK];return null},set(Z){for(let J of this.listeners($))if(J[i9]){this.removeListener($,J);break}if(typeof Z!=="function")return;this.addEventListener($,Z,{[i9]:!0})}})});E.prototype.addEventListener=GK;E.prototype.removeEventListener=YK;q2.exports=E;function V2($,Z,J,G){let Y={allowSynchronousEvents:!0,autoPong:!0,protocolVersion:d9[1],maxPayload:104857600,skipUTF8Validation:!1,perMessageDeflate:!0,followRedirects:!1,maxRedirects:10,...G,socketPath:void 0,hostname:void 0,protocol:void 0,timeout:void 0,method:"GET",host:void 0,path:void 0,port:void 0};if($._autoPong=Y.autoPong,!d9.includes(Y.protocolVersion))throw RangeError(`Unsupported protocol version: ${Y.protocolVersion} (supported versions: ${d9.join(", ")})`);let X;if(Z instanceof p9)X=Z;else try{X=new p9(Z)}catch(V){throw SyntaxError(`Invalid URL: ${Z}`)}if(X.protocol==="http:")X.protocol="ws:";else if(X.protocol==="https:")X.protocol="wss:";$._url=X.href;let Q=X.protocol==="wss:",z=X.protocol==="ws+unix:",H;if(X.protocol!=="ws:"&&!Q&&!z)H=`The URL's protocol must be one of "ws:", "wss:", "http:", "https:", or "ws+unix:"`;else if(z&&!X.pathname)H="The URL's pathname is empty";else if(X.hash)H="The URL contains a fragment identifier";if(H){let V=SyntaxError(H);if($._redirects===0)throw V;else{H7($,V);return}}let K=Q?443:80,U=r3(16).toString("base64"),O=Q?d3.request:n3.request,W=new Set,L;if(Y.createConnection=Y.createConnection||(Q?UK:KK),Y.defaultPort=Y.defaultPort||K,Y.port=X.port||K,Y.host=X.hostname.startsWith("[")?X.hostname.slice(1,-1):X.hostname,Y.headers={...Y.headers,"Sec-WebSocket-Version":Y.protocolVersion,"Sec-WebSocket-Key":U,Connection:"Upgrade",Upgrade:"websocket"},Y.path=X.pathname+X.search,Y.timeout=Y.handshakeTimeout,Y.perMessageDeflate)L=new T0(Y.perMessageDeflate!==!0?Y.perMessageDeflate:{},!1,Y.maxPayload),Y.headers["Sec-WebSocket-Extensions"]=XK({[T0.extensionName]:L.offer()});if(J.length){for(let V of J){if(typeof V!=="string"||!zK.test(V)||W.has(V))throw SyntaxError("An invalid or duplicated subprotocol was specified");W.add(V)}Y.headers["Sec-WebSocket-Protocol"]=J.join(",")}if(Y.origin)if(Y.protocolVersion<13)Y.headers["Sec-WebSocket-Origin"]=Y.origin;else Y.headers.Origin=Y.origin;if(X.username||X.password)Y.auth=`${X.username}:${X.password}`;if(z){let V=Y.path.split(":");Y.socketPath=V[0],Y.path=V[1]}let B;if(Y.followRedirects){if($._redirects===0){$._originalIpc=z,$._originalSecure=Q,$._originalHostOrSocketPath=z?Y.socketPath:X.host;let V=G&&G.headers;if(G={...G,headers:{}},V)for(let[R,T]of Object.entries(V))G.headers[R.toLowerCase()]=T}else if($.listenerCount("redirect")===0){let V=z?$._originalIpc?Y.socketPath===$._originalHostOrSocketPath:!1:$._originalIpc?!1:X.host===$._originalHostOrSocketPath;if(!V||$._originalSecure&&!Q){if(delete Y.headers.authorization,delete Y.headers.cookie,!V)delete Y.headers.host;Y.auth=void 0}}if(Y.auth&&!G.headers.authorization)G.headers.authorization="Basic "+Buffer.from(Y.auth).toString("base64");if(B=$._req=O(Y),$._redirects)$.emit("redirect",$.url,B)}else B=$._req=O(Y);if(Y.timeout)B.on("timeout",()=>{I1($,B,"Opening handshake has timed out")});if(B.on("error",(V)=>{if(B===null||B[O2])return;B=$._req=null,H7($,V)}),B.on("response",(V)=>{let R=V.headers.location,T=V.statusCode;if(R&&Y.followRedirects&&T>=300&&T<400){if(++$._redirects>Y.maxRedirects){I1($,B,"Maximum redirects exceeded");return}B.abort();let P;try{P=new p9(R,Z)}catch(q){let N=SyntaxError(`Invalid URL: ${R}`);H7($,N);return}V2($,P,J,G)}else if(!$.emit("unexpected-response",B,V))I1($,B,`Unexpected server response: ${V.statusCode}`)}),B.on("upgrade",(V,R,T)=>{if($.emit("upgrade",V),$.readyState!==E.CONNECTING)return;B=$._req=null;let P=V.headers.upgrade;if(P===void 0||P.toLowerCase()!=="websocket"){I1($,R,"Invalid Upgrade header");return}let q=o3("sha1").update(U+$K).digest("base64");if(V.headers["sec-websocket-accept"]!==q){I1($,R,"Invalid Sec-WebSocket-Accept header");return}let N=V.headers["sec-websocket-protocol"],v;if(N!==void 0){if(!W.size)v="Server sent a subprotocol but none was requested";else if(!W.has(N))v="Server sent an invalid subprotocol"}else if(W.size)v="Server sent no subprotocol";if(v){I1($,R,v);return}if(N)$._protocol=N;let S=V.headers["sec-websocket-extensions"];if(S!==void 0){if(!L){I1($,R,"Server sent a Sec-WebSocket-Extensions header but no extension was requested");return}let s;try{s=QK(S)}catch(y1){I1($,R,"Invalid Sec-WebSocket-Extensions header");return}let R1=Object.keys(s);if(R1.length!==1||R1[0]!==T0.extensionName){I1($,R,"Server indicated an extension that was not requested");return}try{L.accept(s[T0.extensionName])}catch(y1){I1($,R,"Invalid Sec-WebSocket-Extensions header");return}$._extensions[T0.extensionName]=L}$.setSocket(R,T,{allowSynchronousEvents:Y.allowSynchronousEvents,generateMask:Y.generateMask,maxPayload:Y.maxPayload,skipUTF8Validation:Y.skipUTF8Validation})}),Y.finishRequest)Y.finishRequest(B,$);else B.end()}function H7($,Z){$._readyState=E.CLOSING,$._errorEmitted=!0,$.emit("error",Z),$.emitClose()}function KK($){return $.path=$.socketPath,K2.connect($)}function UK($){if($.path=void 0,!$.servername&&$.servername!=="")$.servername=K2.isIP($.host)?"":$.host;return a3.connect($)}function I1($,Z,J){$._readyState=E.CLOSING;let G=Error(J);if(Error.captureStackTrace(G,I1),Z.setHeader){if(Z[O2]=!0,Z.abort(),Z.socket&&!Z.socket.destroyed)Z.socket.destroy();process.nextTick(H7,$,G)}else Z.destroy(G),Z.once("error",$.emit.bind($,"error")),Z.once("close",$.emitClose.bind($))}function n9($,Z,J){if(Z){let G=e3(Z)?Z.size:HK(Z).length;if($._socket)$._sender._bufferedBytes+=G;else $._bufferedAmount+=G}if(J){let G=Error(`WebSocket is not open: readyState ${$.readyState} (${K0[$.readyState]})`);process.nextTick(J,G)}}function OK($,Z){let J=this[Z1];if(J._closeFrameReceived=!0,J._closeMessage=Z,J._closeCode=$,J._socket[Z1]===void 0)return;if(J._socket.removeListener("data",z7),process.nextTick(W2,J._socket),$===1005)J.close();else J.close($,Z)}function VK(){let $=this[Z1];if(!$.isPaused)$._socket.resume()}function WK($){let Z=this[Z1];if(Z._socket[Z1]!==void 0)Z._socket.removeListener("data",z7),process.nextTick(W2,Z._socket),Z.close($[JK]);if(!Z._errorEmitted)Z._errorEmitted=!0,Z.emit("error",$)}function z2(){this[Z1].emitClose()}function AK($,Z){this[Z1].emit("message",$,Z)}function FK($){let Z=this[Z1];if(Z._autoPong)Z.pong($,!this._isServer,U2);Z.emit("ping",$)}function BK($){this[Z1].emit("pong",$)}function W2($){$.resume()}function LK($){let Z=this[Z1];if(Z.readyState===E.CLOSED)return;if(Z.readyState===E.OPEN)Z._readyState=E.CLOSING,A2(Z);if(this._socket.end(),!Z._errorEmitted)Z._errorEmitted=!0,Z.emit("error",$)}function A2($){$._closeTimer=setTimeout($._socket.destroy.bind($._socket),30000)}function F2(){let $=this[Z1];this.removeListener("close",F2),this.removeListener("data",z7),this.removeListener("end",B2),$._readyState=E.CLOSING;let Z;if(!this._readableState.endEmitted&&!$._closeFrameReceived&&!$._receiver._writableState.errorEmitted&&(Z=$._socket.read())!==null)$._receiver.write(Z);if($._receiver.end(),this[Z1]=void 0,clearTimeout($._closeTimer),$._receiver._writableState.finished||$._receiver._writableState.errorEmitted)$.emitClose();else $._receiver.on("error",z2),$._receiver.on("finish",z2)}function z7($){if(!this[Z1]._receiver.write($))this.pause()}function B2(){let $=this[Z1];$._readyState=E.CLOSING,$._receiver.end(),this.end()}function L2(){let $=this[Z1];if(this.removeListener("error",L2),this.on("error",U2),$)$._readyState=E.CLOSING,this.destroy()}});var I2=F((JR,R2)=>{var ZR=K7(),{Duplex:qK}=require("stream");function N2($){$.emit("close")}function NK(){if(!this.destroyed&&this._writableState.finished)this.destroy()}function M2($){if(this.removeListener("error",M2),this.destroy(),this.listenerCount("error")===0)this.emit("error",$)}function MK($,Z){let J=!0,G=new qK({...Z,autoDestroy:!1,emitClose:!1,objectMode:!1,writableObjectMode:!1});return $.on("message",function(X,Q){let z=!Q&&G._readableState.objectMode?X.toString():X;if(!G.push(z))$.pause()}),$.once("error",function(X){if(G.destroyed)return;J=!1,G.destroy(X)}),$.once("close",function(){if(G.destroyed)return;G.push(null)}),G._destroy=function(Y,X){if($.readyState===$.CLOSED){X(Y),process.nextTick(N2,G);return}let Q=!1;if($.once("error",function(H){Q=!0,X(H)}),$.once("close",function(){if(!Q)X(Y);process.nextTick(N2,G)}),J)$.terminate()},G._final=function(Y){if($.readyState===$.CONNECTING){$.once("open",function(){G._final(Y)});return}if($._socket===null)return;if($._socket._writableState.finished){if(Y(),G._readableState.endEmitted)G.destroy()}else $._socket.once("finish",function(){Y()}),$.close()},G._read=function(){if($.isPaused)$.resume()},G._write=function(Y,X,Q){if($.readyState===$.CONNECTING){$.once("open",function(){G._write(Y,X,Q)});return}$.send(Y,Q)},G.on("end",NK),G.on("error",M2),G}R2.exports=MK});var D2=F((GR,P2)=>{var{tokenChars:RK}=q5();function IK($){let Z=new Set,J=-1,G=-1,Y=0;for(Y;Y<$.length;Y++){let Q=$.charCodeAt(Y);if(G===-1&&RK[Q]===1){if(J===-1)J=Y}else if(Y!==0&&(Q===32||Q===9)){if(G===-1&&J!==-1)G=Y}else if(Q===44){if(J===-1)throw SyntaxError(`Unexpected character at index ${Y}`);if(G===-1)G=Y;let z=$.slice(J,G);if(Z.has(z))throw SyntaxError(`The "${z}" subprotocol is duplicated`);Z.add(z),J=G=-1}else throw SyntaxError(`Unexpected character at index ${Y}`)}if(J===-1||G!==-1)throw SyntaxError("Unexpected end of input");let X=$.slice(J,Y);if(Z.has(X))throw SyntaxError(`The "${X}" subprotocol is duplicated`);return Z.add(X),Z}P2.exports={parse:IK}});var j2=F((XR,v2)=>{var PK=require("events"),U7=require("http"),{Duplex:YR}=require("stream"),{createHash:DK}=require("crypto"),T2=c9(),d0=J6(),TK=D2(),wK=K7(),{GUID:EK,kWebSocket:vK}=H0(),jK=/^[+/0-9A-Za-z]{22}==$/;class E2 extends PK{constructor($,Z){super();if($={allowSynchronousEvents:!0,autoPong:!0,maxPayload:104857600,skipUTF8Validation:!1,perMessageDeflate:!1,handleProtocols:null,clientTracking:!0,verifyClient:null,noServer:!1,backlog:null,server:null,host:null,path:null,port:null,WebSocket:wK,...$},$.port==null&&!$.server&&!$.noServer||$.port!=null&&($.server||$.noServer)||$.server&&$.noServer)throw TypeError('One and only one of the "port", "server", or "noServer" options must be specified');if($.port!=null)this._server=U7.createServer((J,G)=>{let Y=U7.STATUS_CODES[426];G.writeHead(426,{"Content-Length":Y.length,"Content-Type":"text/plain"}),G.end(Y)}),this._server.listen($.port,$.host,$.backlog,Z);else if($.server)this._server=$.server;if(this._server){let J=this.emit.bind(this,"connection");this._removeListeners=fK(this._server,{listening:this.emit.bind(this,"listening"),error:this.emit.bind(this,"error"),upgrade:(G,Y,X)=>{this.handleUpgrade(G,Y,X,J)}})}if($.perMessageDeflate===!0)$.perMessageDeflate={};if($.clientTracking)this.clients=new Set,this._shouldEmitClose=!1;this.options=$,this._state=0}address(){if(this.options.noServer)throw Error('The server is operating in "noServer" mode');if(!this._server)return null;return this._server.address()}close($){if(this._state===2){if($)this.once("close",()=>{$(Error("The server is not running"))});process.nextTick(Q6,this);return}if($)this.once("close",$);if(this._state===1)return;if(this._state=1,this.options.noServer||this.options.server){if(this._server)this._removeListeners(),this._removeListeners=this._server=null;if(this.clients)if(!this.clients.size)process.nextTick(Q6,this);else this._shouldEmitClose=!0;else process.nextTick(Q6,this)}else{let Z=this._server;this._removeListeners(),this._removeListeners=this._server=null,Z.close(()=>{Q6(this)})}}shouldHandle($){if(this.options.path){let Z=$.url.indexOf("?");if((Z!==-1?$.url.slice(0,Z):$.url)!==this.options.path)return!1}return!0}handleUpgrade($,Z,J,G){Z.on("error",w2);let Y=$.headers["sec-websocket-key"],X=$.headers.upgrade,Q=+$.headers["sec-websocket-version"];if($.method!=="GET"){n0(this,$,Z,405,"Invalid HTTP method");return}if(X===void 0||X.toLowerCase()!=="websocket"){n0(this,$,Z,400,"Invalid Upgrade header");return}if(Y===void 0||!jK.test(Y)){n0(this,$,Z,400,"Missing or invalid Sec-WebSocket-Key header");return}if(Q!==13&&Q!==8){n0(this,$,Z,400,"Missing or invalid Sec-WebSocket-Version header",{"Sec-WebSocket-Version":"13, 8"});return}if(!this.shouldHandle($)){H6(Z,400);return}let z=$.headers["sec-websocket-protocol"],H=new Set;if(z!==void 0)try{H=TK.parse(z)}catch(O){n0(this,$,Z,400,"Invalid Sec-WebSocket-Protocol header");return}let K=$.headers["sec-websocket-extensions"],U={};if(this.options.perMessageDeflate&&K!==void 0){let O=new d0(this.options.perMessageDeflate,!0,this.options.maxPayload);try{let W=T2.parse(K);if(W[d0.extensionName])O.accept(W[d0.extensionName]),U[d0.extensionName]=O}catch(W){n0(this,$,Z,400,"Invalid or unacceptable Sec-WebSocket-Extensions header");return}}if(this.options.verifyClient){let O={origin:$.headers[`${Q===8?"sec-websocket-origin":"origin"}`],secure:!!($.socket.authorized||$.socket.encrypted),req:$};if(this.options.verifyClient.length===2){this.options.verifyClient(O,(W,L,B,V)=>{if(!W)return H6(Z,L||401,B,V);this.completeUpgrade(U,Y,H,$,Z,J,G)});return}if(!this.options.verifyClient(O))return H6(Z,401)}this.completeUpgrade(U,Y,H,$,Z,J,G)}completeUpgrade($,Z,J,G,Y,X,Q){if(!Y.readable||!Y.writable)return Y.destroy();if(Y[vK])throw Error("server.handleUpgrade() was called more than once with the same socket, possibly due to a misconfiguration");if(this._state>0)return H6(Y,503);let H=["HTTP/1.1 101 Switching Protocols","Upgrade: websocket","Connection: Upgrade",`Sec-WebSocket-Accept: ${DK("sha1").update(Z+EK).digest("base64")}`],K=new this.options.WebSocket(null,void 0,this.options);if(J.size){let U=this.options.handleProtocols?this.options.handleProtocols(J,G):J.values().next().value;if(U)H.push(`Sec-WebSocket-Protocol: ${U}`),K._protocol=U}if($[d0.extensionName]){let U=$[d0.extensionName].params,O=T2.format({[d0.extensionName]:[U]});H.push(`Sec-WebSocket-Extensions: ${O}`),K._extensions=$}if(this.emit("headers",H,G),Y.write(H.concat(`\r
|
|
7
7
|
`).join(`\r
|
|
8
|
-
`)),
|
|
9
|
-
`+Object.keys(
|
|
8
|
+
`)),Y.removeListener("error",w2),K.setSocket(Y,X,{allowSynchronousEvents:this.options.allowSynchronousEvents,maxPayload:this.options.maxPayload,skipUTF8Validation:this.options.skipUTF8Validation}),this.clients)this.clients.add(K),K.on("close",()=>{if(this.clients.delete(K),this._shouldEmitClose&&!this.clients.size)process.nextTick(Q6,this)});Q(K,G)}}v2.exports=E2;function fK($,Z){for(let J of Object.keys(Z))$.on(J,Z[J]);return function(){for(let G of Object.keys(Z))$.removeListener(G,Z[G])}}function Q6($){$._state=2,$.emit("close")}function w2(){this.destroy()}function H6($,Z,J,G){J=J||U7.STATUS_CODES[Z],G={Connection:"close","Content-Type":"text/html","Content-Length":Buffer.byteLength(J),...G},$.once("finish",$.destroy),$.end(`HTTP/1.1 ${Z} ${U7.STATUS_CODES[Z]}\r
|
|
9
|
+
`+Object.keys(G).map((Y)=>`${Y}: ${G[Y]}`).join(`\r
|
|
10
10
|
`)+`\r
|
|
11
11
|
\r
|
|
12
|
-
`+G)}function f5($,Z,G,J,X,Y){if($.listenerCount("wsClientError")){let H=Error(X);Error.captureStackTrace(H,f5),$.emit("wsClientError",H,G,Z)}else A7(G,J,X,Y)}});var P6=O((W1)=>{Object.defineProperty(W1,"__esModule",{value:!0});W1.Doctype=W1.CDATA=W1.Tag=W1.Style=W1.Script=W1.Comment=W1.Directive=W1.Text=W1.Root=W1.isTag=W1.ElementType=void 0;var X0;(function($){$.Root="root",$.Text="text",$.Directive="directive",$.Comment="comment",$.Script="script",$.Style="style",$.Tag="tag",$.CDATA="cdata",$.Doctype="doctype"})(X0=W1.ElementType||(W1.ElementType={}));function IN($){return $.type===X0.Tag||$.type===X0.Script||$.type===X0.Style}W1.isTag=IN;W1.Root=X0.Root;W1.Text=X0.Text;W1.Directive=X0.Directive;W1.Comment=X0.Comment;W1.Script=X0.Script;W1.Style=X0.Style;W1.Tag=X0.Tag;W1.CDATA=X0.CDATA;W1.Doctype=X0.Doctype});var DZ=O((d)=>{var B5=d&&d.__extends||function(){var $=function(Z,G){return $=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(J,X){J.__proto__=X}||function(J,X){for(var Y in X)if(Object.prototype.hasOwnProperty.call(X,Y))J[Y]=X[Y]},$(Z,G)};return function(Z,G){if(typeof G!=="function"&&G!==null)throw TypeError("Class extends value "+String(G)+" is not a constructor or null");$(Z,G);function J(){this.constructor=Z}Z.prototype=G===null?Object.create(G):(J.prototype=G.prototype,new J)}}(),w7=d&&d.__assign||function(){return w7=Object.assign||function($){for(var Z,G=1,J=arguments.length;G<J;G++){Z=arguments[G];for(var X in Z)if(Object.prototype.hasOwnProperty.call(Z,X))$[X]=Z[X]}return $},w7.apply(this,arguments)};Object.defineProperty(d,"__esModule",{value:!0});d.cloneNode=d.hasChildren=d.isDocument=d.isDirective=d.isComment=d.isText=d.isCDATA=d.isTag=d.Element=d.Document=d.CDATA=d.NodeWithChildren=d.ProcessingInstruction=d.Comment=d.Text=d.DataNode=d.Node=void 0;var o1=P6(),OZ=function(){function $(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty($.prototype,"parentNode",{get:function(){return this.parent},set:function(Z){this.parent=Z},enumerable:!1,configurable:!0}),Object.defineProperty($.prototype,"previousSibling",{get:function(){return this.prev},set:function(Z){this.prev=Z},enumerable:!1,configurable:!0}),Object.defineProperty($.prototype,"nextSibling",{get:function(){return this.next},set:function(Z){this.next=Z},enumerable:!1,configurable:!0}),$.prototype.cloneNode=function(Z){if(Z===void 0)Z=!1;return MZ(this,Z)},$}();d.Node=OZ;var a8=function($){B5(Z,$);function Z(G){var J=$.call(this)||this;return J.data=G,J}return Object.defineProperty(Z.prototype,"nodeValue",{get:function(){return this.data},set:function(G){this.data=G},enumerable:!1,configurable:!0}),Z}(OZ);d.DataNode=a8;var SH=function($){B5(Z,$);function Z(){var G=$!==null&&$.apply(this,arguments)||this;return G.type=o1.ElementType.Text,G}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 3},enumerable:!1,configurable:!0}),Z}(a8);d.Text=SH;var _H=function($){B5(Z,$);function Z(){var G=$!==null&&$.apply(this,arguments)||this;return G.type=o1.ElementType.Comment,G}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 8},enumerable:!1,configurable:!0}),Z}(a8);d.Comment=_H;var CH=function($){B5(Z,$);function Z(G,J){var X=$.call(this,J)||this;return X.name=G,X.type=o1.ElementType.Directive,X}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Z}(a8);d.ProcessingInstruction=CH;var n8=function($){B5(Z,$);function Z(G){var J=$.call(this)||this;return J.children=G,J}return Object.defineProperty(Z.prototype,"firstChild",{get:function(){var G;return(G=this.children[0])!==null&&G!==void 0?G:null},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"childNodes",{get:function(){return this.children},set:function(G){this.children=G},enumerable:!1,configurable:!0}),Z}(OZ);d.NodeWithChildren=n8;var gH=function($){B5(Z,$);function Z(){var G=$!==null&&$.apply(this,arguments)||this;return G.type=o1.ElementType.CDATA,G}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),Z}(n8);d.CDATA=gH;var yH=function($){B5(Z,$);function Z(){var G=$!==null&&$.apply(this,arguments)||this;return G.type=o1.ElementType.Root,G}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),Z}(n8);d.Document=yH;var vH=function($){B5(Z,$);function Z(G,J,X,Y){if(X===void 0)X=[];if(Y===void 0)Y=G==="script"?o1.ElementType.Script:G==="style"?o1.ElementType.Style:o1.ElementType.Tag;var H=$.call(this,X)||this;return H.name=G,H.attribs=J,H.type=Y,H}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"tagName",{get:function(){return this.name},set:function(G){this.name=G},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"attributes",{get:function(){var G=this;return Object.keys(this.attribs).map(function(J){var X,Y;return{name:J,value:G.attribs[J],namespace:(X=G["x-attribsNamespace"])===null||X===void 0?void 0:X[J],prefix:(Y=G["x-attribsPrefix"])===null||Y===void 0?void 0:Y[J]}})},enumerable:!1,configurable:!0}),Z}(n8);d.Element=vH;function xH($){return(0,o1.isTag)($)}d.isTag=xH;function hH($){return $.type===o1.ElementType.CDATA}d.isCDATA=hH;function bH($){return $.type===o1.ElementType.Text}d.isText=bH;function kH($){return $.type===o1.ElementType.Comment}d.isComment=kH;function mH($){return $.type===o1.ElementType.Directive}d.isDirective=mH;function fH($){return $.type===o1.ElementType.Root}d.isDocument=fH;function PN($){return Object.prototype.hasOwnProperty.call($,"children")}d.hasChildren=PN;function MZ($,Z){if(Z===void 0)Z=!1;var G;if(bH($))G=new SH($.data);else if(kH($))G=new _H($.data);else if(xH($)){var J=Z?RZ($.children):[],X=new vH($.name,w7({},$.attribs),J);if(J.forEach(function(q){return q.parent=X}),$.namespace!=null)X.namespace=$.namespace;if($["x-attribsNamespace"])X["x-attribsNamespace"]=w7({},$["x-attribsNamespace"]);if($["x-attribsPrefix"])X["x-attribsPrefix"]=w7({},$["x-attribsPrefix"]);G=X}else if(hH($)){var J=Z?RZ($.children):[],Y=new gH(J);J.forEach(function(U){return U.parent=Y}),G=Y}else if(fH($)){var J=Z?RZ($.children):[],H=new yH(J);if(J.forEach(function(U){return U.parent=H}),$["x-mode"])H["x-mode"]=$["x-mode"];G=H}else if(mH($)){var Q=new CH($.name,$.data);if($["x-name"]!=null)Q["x-name"]=$["x-name"],Q["x-publicId"]=$["x-publicId"],Q["x-systemId"]=$["x-systemId"];G=Q}else throw Error("Not implemented yet: ".concat($.type));if(G.startIndex=$.startIndex,G.endIndex=$.endIndex,$.sourceCodeLocation!=null)G.sourceCodeLocation=$.sourceCodeLocation;return G}d.cloneNode=MZ;function RZ($){var Z=$.map(function(J){return MZ(J,!0)});for(var G=1;G<Z.length;G++)Z[G].prev=Z[G-1],Z[G-1].next=Z[G];return Z}});var E0=O((b0)=>{var TN=b0&&b0.__createBinding||(Object.create?function($,Z,G,J){if(J===void 0)J=G;var X=Object.getOwnPropertyDescriptor(Z,G);if(!X||("get"in X?!Z.__esModule:X.writable||X.configurable))X={enumerable:!0,get:function(){return Z[G]}};Object.defineProperty($,J,X)}:function($,Z,G,J){if(J===void 0)J=G;$[J]=Z[G]}),wN=b0&&b0.__exportStar||function($,Z){for(var G in $)if(G!=="default"&&!Object.prototype.hasOwnProperty.call(Z,G))TN(Z,$,G)};Object.defineProperty(b0,"__esModule",{value:!0});b0.DomHandler=void 0;var IZ=P6(),V5=DZ();wN(DZ(),b0);var uH={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},pH=function(){function $(Z,G,J){if(this.dom=[],this.root=new V5.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,typeof G==="function")J=G,G=uH;if(typeof Z==="object")G=Z,Z=void 0;this.callback=Z!==null&&Z!==void 0?Z:null,this.options=G!==null&&G!==void 0?G:uH,this.elementCB=J!==null&&J!==void 0?J:null}return $.prototype.onparserinit=function(Z){this.parser=Z},$.prototype.onreset=function(){this.dom=[],this.root=new V5.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},$.prototype.onend=function(){if(this.done)return;this.done=!0,this.parser=null,this.handleCallback(null)},$.prototype.onerror=function(Z){this.handleCallback(Z)},$.prototype.onclosetag=function(){this.lastNode=null;var Z=this.tagStack.pop();if(this.options.withEndIndices)Z.endIndex=this.parser.endIndex;if(this.elementCB)this.elementCB(Z)},$.prototype.onopentag=function(Z,G){var J=this.options.xmlMode?IZ.ElementType.Tag:void 0,X=new V5.Element(Z,G,void 0,J);this.addNode(X),this.tagStack.push(X)},$.prototype.ontext=function(Z){var G=this.lastNode;if(G&&G.type===IZ.ElementType.Text){if(G.data+=Z,this.options.withEndIndices)G.endIndex=this.parser.endIndex}else{var J=new V5.Text(Z);this.addNode(J),this.lastNode=J}},$.prototype.oncomment=function(Z){if(this.lastNode&&this.lastNode.type===IZ.ElementType.Comment){this.lastNode.data+=Z;return}var G=new V5.Comment(Z);this.addNode(G),this.lastNode=G},$.prototype.oncommentend=function(){this.lastNode=null},$.prototype.oncdatastart=function(){var Z=new V5.Text(""),G=new V5.CDATA([Z]);this.addNode(G),Z.parent=G,this.lastNode=Z},$.prototype.oncdataend=function(){this.lastNode=null},$.prototype.onprocessinginstruction=function(Z,G){var J=new V5.ProcessingInstruction(Z,G);this.addNode(J)},$.prototype.handleCallback=function(Z){if(typeof this.callback==="function")this.callback(Z,this.dom);else if(Z)throw Z},$.prototype.addNode=function(Z){var G=this.tagStack[this.tagStack.length-1],J=G.children[G.children.length-1];if(this.options.withStartIndices)Z.startIndex=this.parser.startIndex;if(this.options.withEndIndices)Z.endIndex=this.parser.endIndex;if(G.children.push(Z),J)Z.prev=J,J.next=Z;Z.parent=G,this.lastNode=null},$}();b0.DomHandler=pH;b0.default=pH});var TZ=O((l5)=>{var PZ;Object.defineProperty(l5,"__esModule",{value:!0});l5.fromCodePoint=void 0;l5.replaceCodePoint=lH;l5.decodeCodePoint=jN;var EN=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]]);l5.fromCodePoint=(PZ=String.fromCodePoint)!==null&&PZ!==void 0?PZ:($)=>{let Z="";if($>65535)$-=65536,Z+=String.fromCharCode($>>>10&1023|55296),$=56320|$&1023;return Z+=String.fromCharCode($),Z};function lH($){var Z;if($>=55296&&$<=57343||$>1114111)return 65533;return(Z=EN.get($))!==null&&Z!==void 0?Z:$}function jN($){return(0,l5.fromCodePoint)(lH($))}});var EZ=O((wZ)=>{Object.defineProperty(wZ,"__esModule",{value:!0});wZ.decodeBase64=SN;function SN($){let Z=typeof atob==="function"?atob($):typeof Buffer.from==="function"?Buffer.from($,"base64").toString("binary"):new Buffer($,"base64").toString("binary"),G=Z.length&-2,J=new Uint16Array(G/2);for(let X=0,Y=0;X<G;X+=2){let H=Z.charCodeAt(X),Q=Z.charCodeAt(X+1);J[Y++]=H|Q<<8}return J}});var jZ=O((s8)=>{Object.defineProperty(s8,"__esModule",{value:!0});s8.htmlDecodeTree=void 0;var _N=EZ();s8.htmlDecodeTree=(0,_N.decodeBase64)("QR08ALkAAgH6AYsDNQR2BO0EPgXZBQEGLAbdBxMISQrvCmQLfQurDKQNLw4fD4YPpA+6D/IPAAAAAAAAAAAAAAAAKhBMEY8TmxUWF2EYLBkxGuAa3RsJHDscWR8YIC8jSCSIJcMl6ie3Ku8rEC0CLjoupS7kLgAIRU1hYmNmZ2xtbm9wcnN0dVQAWgBeAGUAaQBzAHcAfgCBAIQAhwCSAJoAoACsALMAbABpAGcAO4DGAMZAUAA7gCYAJkBjAHUAdABlADuAwQDBQHIiZXZlAAJhAAFpeW0AcgByAGMAO4DCAMJAEGRyAADgNdgE3XIAYQB2AGUAO4DAAMBA8CFoYZFj4SFjcgBhZAAAoFMqAAFncIsAjgBvAG4ABGFmAADgNdg43fAlbHlGdW5jdGlvbgCgYSBpAG4AZwA7gMUAxUAAAWNzpACoAHIAAOA12Jzc6SFnbgCgVCJpAGwAZABlADuAwwDDQG0AbAA7gMQAxEAABGFjZWZvcnN1xQDYANoA7QDxAPYA+QD8AAABY3LJAM8AayNzbGFzaAAAoBYidgHTANUAAKDnKmUAZAAAoAYjeQARZIABY3J0AOAA5QDrAGEidXNlAACgNSLuI291bGxpcwCgLCFhAJJjcgAA4DXYBd1wAGYAAOA12Dnd5SF2ZdhiYwDyAOoAbSJwZXEAAKBOIgAHSE9hY2RlZmhpbG9yc3UXARoBHwE6AVIBVQFiAWQBZgGCAakB6QHtAfIBYwB5ACdkUABZADuAqQCpQIABY3B5ACUBKAE1AfUhdGUGYWmg0iJ0KGFsRGlmZmVyZW50aWFsRAAAoEUhbCJleXMAAKAtIQACYWVpb0EBRAFKAU0B8iFvbgxhZABpAGwAO4DHAMdAcgBjAAhhbiJpbnQAAKAwIm8AdAAKYQABZG5ZAV0BaSJsbGEAuGB0I2VyRG90ALdg8gA5AWkAp2NyImNsZQAAAkRNUFRwAXQBeQF9AW8AdAAAoJkiaSJudXMAAKCWIuwhdXMAoJUiaSJtZXMAAKCXIm8AAAFjc4cBlAFrKndpc2VDb250b3VySW50ZWdyYWwAAKAyImUjQ3VybHkAAAFEUZwBpAFvJXVibGVRdW90ZQAAoB0gdSJvdGUAAKAZIAACbG5wdbABtgHNAdgBbwBuAGWgNyIAoHQqgAFnaXQAvAHBAcUB8iJ1ZW50AKBhIm4AdAAAoC8i7yV1ckludGVncmFsAKAuIgABZnLRAdMBAKACIe8iZHVjdACgECJuLnRlckNsb2Nrd2lzZUNvbnRvdXJJbnRlZ3JhbAAAoDMi7yFzcwCgLypjAHIAAOA12J7ccABDoNMiYQBwAACgTSKABURKU1phY2VmaW9zAAsCEgIVAhgCGwIsAjQCOQI9AnMCfwNvoEUh9CJyYWhkAKARKWMAeQACZGMAeQAFZGMAeQAPZIABZ3JzACECJQIoAuchZXIAoCEgcgAAoKEhaAB2AACg5CoAAWF5MAIzAvIhb24OYRRkbAB0oAciYQCUY3IAAOA12AfdAAFhZkECawIAAWNtRQJnAvIjaXRpY2FsAAJBREdUUAJUAl8CYwJjInV0ZQC0YG8AdAFZAloC2WJiJGxlQWN1dGUA3WJyImF2ZQBgYGkibGRlANxi7yFuZACgxCJmJWVyZW50aWFsRAAAoEYhcAR9AgAAAAAAAIECjgIAABoDZgAA4DXYO91EoagAhQKJAm8AdAAAoNwgcSJ1YWwAAKBQIuIhbGUAA0NETFJVVpkCqAK1Au8C/wIRA28AbgB0AG8AdQByAEkAbgB0AGUAZwByAGEA7ADEAW8AdAKvAgAAAACwAqhgbiNBcnJvdwAAoNMhAAFlb7kC0AJmAHQAgAFBUlQAwQLGAs0CciJyb3cAAKDQIekkZ2h0QXJyb3cAoNQhZQDlACsCbgBnAAABTFLWAugC5SFmdAABQVLcAuECciJyb3cAAKD4J+kkZ2h0QXJyb3cAoPon6SRnaHRBcnJvdwCg+SdpImdodAAAAUFU9gL7AnIicm93AACg0iFlAGUAAKCoInAAQQIGAwAAAAALA3Iicm93AACg0SFvJHduQXJyb3cAAKDVIWUlcnRpY2FsQmFyAACgJSJuAAADQUJMUlRhJAM2AzoDWgNxA3oDciJyb3cAAKGTIUJVLAMwA2EAcgAAoBMpcCNBcnJvdwAAoPUhciJldmUAEWPlIWZ00gJDAwAASwMAAFIDaSVnaHRWZWN0b3IAAKBQKWUkZVZlY3RvcgAAoF4p5SJjdG9yQqC9IWEAcgAAoFYpaSJnaHQA1AFiAwAAaQNlJGVWZWN0b3IAAKBfKeUiY3RvckKgwSFhAHIAAKBXKWUAZQBBoKQiciJyb3cAAKCnIXIAcgBvAPcAtAIAAWN0gwOHA3IA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YwAAoN8i4SFycnCgtiEAoD0pgKIqImJjZG9zACsVMBU6FT4VQRVyImNhcAAAoEgqAAFhdTQVNxVwAACgRipwAACgSipvAHQAAKCNInIAAKBFKgDgKiIA/gACYWxydksVURVuFXMVcgByAG2gtyEAoDwpeQCAAWV2dwBYFWUVaRVxAHACXxUAAAAAYxVyAGUA4wAXFXUA4wAZFWUAZQAAoM4iZSJkZ2UAAKDPImUAbgA7gKQApEBlI2Fycm93AAABbHJ7FX8V5SFmdACgtiFpImdodAAAoLchZQDkAG0VAAFjaYsVkRVvAG4AaQBuAPQAkwFuAHQAAKAxImwiY3R5AACgLSOACUFIYWJjZGVmaGlqbG9yc3R1d3oAuBW7Fb8V1RXgFegV+RUKFhUWHxZUFlcWZRbFFtsW7xb7FgUXChdyAPIAtAJhAHIAAKBlKQACZ2xyc8YVyhXOFdAV5yFlcgCgICDlIXRoAKA4IfIA9QxoAHagECAAoKMiawHZFd4VYSJyb3cAAKAPKWEA4wBfAgABYXnkFecV8iFvbg9hNGQAoUYhYW/tFfQVAAFnciEC8RVyAACgyiF0InNlcQAAoHcqgAFnbG0A/xUCFgUWO4CwALBAdABhALRjcCJ0eXYAAKCxKQABaXIOFhIW8yFodACgfykA4DXYId1hAHIAAAFschsWHRYAoMMhAKDCIYACYWVnc3YAKBauAjYWOhY+Fm0AAKHEIm9zLhY0Fm4AZABzoMQi9SFpdACgZiZhIm1tYQDdY2kAbgAAoPIiAKH3AGlvQxZRFmQAZQAAgfcAO29KFksW90BuI3RpbWVzAACgxyJuAPgAUBZjAHkAUmRjAG8CXhYAAAAAYhZyAG4AAKAeI28AcAAAoA0jgAJscHR1dwBuFnEWdRaSFp4W7CFhciRgZgAA4DXYVd0AotkCZW1wc30WhBaJFo0WcQBkoFAibwB0AACgUSJpIm51cwAAoDgi7CF1cwCgFCLxInVhcmUAoKEiYgBsAGUAYgBhAHIAdwBlAGQAZwDlANcAbgCAAWFkaAClFqoWtBZyAHIAbwD3APUMbwB3AG4AYQByAHIAbwB3APMA8xVhI3Jwb29uAAABbHK8FsAWZQBmAPQAHBZpAGcAaAD0AB4WYgHJFs8WawBhAHIAbwD3AJILbwLUFgAAAADYFnIAbgAAoB8jbwBwAACgDCOAAWNvdADhFukW7BYAAXJ55RboFgDgNdi53FVkbAAAoPYp8iFvaxFhAAFkcvMW9xZvAHQAAKDxImkA5qC/JVsSAAFhaP8WAhdyAPIANQNhAPIA1wvhIm5nbGUAoKYpAAFjaQ4XEBd5AF9k5yJyYXJyAKD/JwAJRGFjZGVmZ2xtbm9wcXJzdHV4MRc4F0YXWxcyBF4XaRd5F40XrBe0F78X2RcVGCEYLRg1GEAYAAFEbzUXgRZvAPQA+BUAAWNzPBdCF3UAdABlADuA6QDpQPQhZXIAoG4qAAJhaW95TRdQF1YXWhfyIW9uG2FyAGOgViI7gOoA6kDsIW9uAKBVIk1kbwB0ABdhAAFEcmIXZhdvAHQAAKBSIgDgNdgi3XKhmipuF3QXYQB2AGUAO4DoAOhAZKCWKm8AdAAAoJgqgKGZKmlscwCAF4UXhxfuInRlcnMAoOcjAKATIWSglSpvAHQAAKCXKoABYXBzAJMXlheiF2MAcgATYXQAeQBzogUinxcAAAAAoRdlAHQAAKAFInAAMaADIDMBqRerFwCgBCAAoAUgAAFnc7AXsRdLYXAAAKACIAABZ3C4F7sXbwBuABlhZgAA4DXYVt2AAWFscwDFF8sXzxdyAHOg1SJsAACg4yl1AHMAAKBxKmkAAKG1A2x21RfYF28AbgC1Y/VjAAJjc3V24BfoF/0XEBgAAWlv5BdWF3IAYwAAoFYiaQLuFwAAAADwF+0ADQThIW50AAFnbPUX+Rd0AHIAAKCWKuUhc3MAoJUqgAFhZWkAAxgGGAoYbABzAD1gcwB0AACgXyJ2AESgYSJEAACgeCrwImFyc2wAoOUpAAFEYRkYHRhvAHQAAKBTInIAcgAAoHEpgAFjZGkAJxgqGO0XcgAAoC8hbwD0AIwCAAFhaDEYMhi3YzuA8ADwQAABbXI5GD0YbAA7gOsA60BvAACgrCCAAWNpcABGGEgYSxhsACFgcwD0ACwEAAFlb08YVxhjAHQAYQB0AGkAbwDuABoEbgBlAG4AdABpAGEAbADlADME4Ql1GAAAgRgAAIMYiBgAAAAAoRilGAAAqhgAALsYvhjRGAAA1xgnGWwAbABpAG4AZwBkAG8AdABzAGUA8QBlF3kARGRtImFsZQAAoEAmgAFpbHIAjRiRGJ0Y7CFpZwCgA/tpApcYAAAAAJoYZwAAoAD7aQBnAACgBPsA4DXYI93sIWlnAKAB++whaWcA4GYAagCAAWFsdACvGLIYthh0AACgbSZpAGcAAKAC+24AcwAAoLElbwBmAJJh8AHCGAAAxhhmAADgNdhX3QABYWvJGMwYbADsAGsEdqDUIgCg2SphI3J0aW50AACgDSoAAWFv2hgiGQABY3PeGB8ZsQPnGP0YBRkSGRUZAAAdGbID7xjyGPQY9xj5GAAA+xg7gL0AvUAAoFMhO4C8ALxAAKBVIQCgWSEAoFshswEBGQAAAxkAoFQhAKBWIbQCCxkOGQAAAAAQGTuAvgC+QACgVyEAoFwhNQAAoFghtgEZGQAAGxkAoFohAKBdITgAAKBeIWwAAKBEIHcAbgAAoCIjYwByAADgNdi73IAIRWFiY2RlZmdpamxub3JzdHYARhlKGVoZXhlmGWkZkhmWGZkZnRmgGa0ZxhnLGc8Z4BkjGmygZyIAoIwqgAFjbXAAUBlTGVgZ9SF0ZfVhbQBhAOSgswM6FgCghipyImV2ZQAfYQABaXliGWUZcgBjAB1hM2RvAHQAIWGAoWUibHFzAMYEcBl6GfGhZSLOBAAAdhlsAGEAbgD0AN8EgKF+KmNkbACBGYQZjBljAACgqSpvAHQAb6CAKmyggioAoIQqZeDbIgD+cwAAoJQqcgAA4DXYJN3noGsirATtIWVsAKA3IWMAeQBTZIChdyJFYWoApxmpGasZAKCSKgCgpSoAoKQqAAJFYWVztBm2Gb0ZwhkAoGkicABwoIoq8iFveACgiipxoIgq8aCIKrUZaQBtAACg5yJwAGYAAOA12FjdYQB2AOUAYwIAAWNp0xnWGXIAAKAKIW0AAKFzImVs3BneGQCgjioAoJAqAIM+ADtjZGxxco0E6xn0GfgZ/BkBGgABY2nvGfEZAKCnKnIAAKB6Km8AdAAAoNci0CFhcgCglSl1ImVzdAAAoHwqgAJhZGVscwAKGvQZFhrVBCAa8AEPGgAAFBpwAHIAbwD4AFkZcgAAoHgpcQAAAWxxxAQbGmwAZQBzAPMASRlpAO0A5AQAAWVuJxouGnIjdG5lcXEAAOBpIgD+xQAsGgAFQWFiY2Vma29zeUAaQxpmGmoabRqDGocalhrCGtMacgDyAMwCAAJpbG1yShpOGlAaVBpyAHMA8ABxD2YAvWBpAGwA9AASBQABZHJYGlsaYwB5AEpkAKGUIWN3YBpkGmkAcgAAoEgpAKCtIWEAcgAAoA8h6SFyYyVhgAFhbHIAcxp7Gn8a8iF0c3WgZSZpAHQAAKBlJuwhaXAAoCYg4yFvbgCguSJyAADgNdgl3XMAAAFld4wakRphInJvdwAAoCUpYSJyb3cAAKAmKYACYW1vcHIAnxqjGqcauhq+GnIAcgAAoP8h9CFodACgOyJrAAABbHKsGrMaZSRmdGFycm93AACgqSHpJGdodGFycm93AKCqIWYAAOA12Fnd4iFhcgCgFSCAAWNsdADIGswa0BpyAADgNdi93GEAcwDoAGka8iFvaydhAAFicNca2xr1IWxsAKBDIOghZW4AoBAg4Qr2GgAA/RoAAAgbExsaGwAAIRs7GwAAAAA+G2IbmRuVG6sbAACyG80b0htjAHUAdABlADuA7QDtQAChYyBpeQEbBhtyAGMAO4DuAO5AOGQAAWN4CxsNG3kANWRjAGwAO4ChAKFAAAFmcssCFhsA4DXYJt1yAGEAdgBlADuA7ADsQIChSCFpbm8AJxsyGzYbAAFpbisbLxtuAHQAAKAMKnQAAKAtIuYhaW4AoNwpdABhAACgKSHsIWlnM2GAAWFvcABDG1sbXhuAAWNndABJG0sbWRtyACthgAFlbHAAcQVRG1UbaQBuAOUAyAVhAHIA9AByBWgAMWFmAACgtyJlAGQAtWEAoggiY2ZvdGkbbRt1G3kb4SFyZQCgBSFpAG4AdKAeImkAZQAAoN0pZABvAPQAWxsAoisiY2VscIEbhRuPG5QbYQBsAACguiIAAWdyiRuNG2UAcgDzACMQ4wCCG2EicmhrAACgFyryIW9kAKA8KgACY2dwdJ8boRukG6gbeQBRZG8AbgAvYWYAAOA12FrdYQC5Y3UAZQBzAHQAO4C/AL9AAAFjabUbuRtyAADgNdi+3G4AAKIIIkVkc3bCG8QbyBvQAwCg+SJvAHQAAKD1Inag9CIAoPMiaaBiIOwhZGUpYesB1hsAANkbYwB5AFZkbAA7gO8A70AAA2NmbW9zdeYb7hvyG/Ub+hsFHAABaXnqG+0bcgBjADVhOWRyAADgNdgn3eEhdGg3YnAAZgAA4DXYW93jAf8bAAADHHIAAOA12L/c8iFjeVhk6yFjeVRkAARhY2ZnaGpvcxUcGhwiHCYcKhwtHDAcNRzwIXBhdqC6A/BjAAFleR4cIRzkIWls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ZmdobG1vcHJzdHV3CiwNLBEsHSwnLDEsQCxLLFIsYix6LIQsjyzLLOgs7Sz/LAotcgDyAAkDYQByAACgYykAAWNyFSwbLHUAdABlADuA+gD6QPIACQ1yAOMBIywAACUseQBeZHYAZQBtYQABaXkrLDAscgBjADuA+wD7QENkgAFhYmgANyw6LD0scgDyANEO7CFhY3FhYQDyAOAOAAFpckQsSCzzIWh0AKB+KQDgNdgy3XIAYQB2AGUAO4D5APlAYQFWLF8scgAAAWxyWixcLACgvyEAoL4hbABrAACggCUAAWN0Zix2LG8CbCwAAAAAcyxyAG4AZaAcI3IAAKAcI28AcAAAoA8jcgBpAACg+CUAAWFsfiyBLGMAcgBrYTuAqACoQAABZ3CILIssbwBuAHNhZgAA4DXYZt0AA2FkaGxzdZksniynLLgsuyzFLHIAcgBvAPcACQ1vAHcAbgBhAHIAcgBvAPcA2A5hI3Jwb29uAAABbHKvLLMsZQBmAPQAWyxpAGcAaAD0AF0sdQDzAKYOaQAAocUDaGzBLMIs0mNvAG4AxWPwI2Fycm93cwCgyCGAAWNpdADRLOEs5CxvAtcsAAAAAN4scgBuAGWgHSNyAACgHSNvAHAAAKAOI24AZwBvYXIAaQAAoPklYwByAADgNdjK3IABZGlyAPMs9yz6LG8AdAAAoPAi7CFkZWlhaQBmoLUlAKC0JQABYW0DLQYtcgDyAMosbAA7gPwA/EDhIm5nbGUAoKcpgAdBQkRhY2RlZmxub3Byc3oAJy0qLTAtNC2bLZ0toS2/LcMtxy3TLdgt3C3gLfwtcgDyABADYQByAHag6CoAoOkqYQBzAOgA/gIAAW5yOC08LechcnQAoJwpgANla25wcnN0AJkpSC1NLVQtXi1iLYItYQBwAHAA4QAaHG8AdABoAGkAbgDnAKEXgAFoaXIAoSmzJFotbwBwAPQAdCVooJUh7wD4JgABaXVmLWotZwBtAOEAuygAAWJwbi14LXMjZXRuZXEAceCKIgD+AODLKgD+cyNldG5lcQBx4IsiAP4A4MwqAP4AAWhyhi2KLWUAdADhABIraSNhbmdsZQAAAWxyki2WLeUhZnQAoLIiaSJnaHQAAKCzInkAMmThIXNoAKCiIoABZWxyAKcttC24LWKiKCKuLQAAAACyLWEAcgAAoLsicQAAoFoi7CFpcACg7iIAAWJ0vC1eD2EA8gBfD3IAAOA12DPddAByAOkAlS1zAHUAAAFicM0t0C0A4IIi0iAA4IMi0iBwAGYAAOA12GfdcgBvAPAAWQt0AHIA6QCaLQABY3XkLegtcgAA4DXYy9wAAWJw7C30LW4AAAFFZXUt8S0A4IoiAP5uAAABRWV/LfktAOCLIgD+6SJnemFnAKCaKYADY2Vmb3BycwANLhAuJS4pLiMuLi40LukhcmN1YQABZGkULiEuAAFiZxguHC5hAHIAAKBfKmUAcaAnIgCgWSLlIXJwAKAYIXIAAOA12DTdcABmAADgNdho3WWgQCJhAHQA6ABqD2MAcgAA4DXYzNzjCuQRUC4AAFQuAABYLmIuAAAAAGMubS5wLnQuAAAAAIguki4AAJouJxIqEnQAcgDpAB0ScgAA4DXYNd0AAUFhWy5eLnIA8gDnAnIA8gCTB75jAAFBYWYuaS5yAPIA4AJyAPIAjAdhAPAAeh5pAHMAAKD7IoABZHB0APgReS6DLgABZmx9LoAuAOA12GnddQDzAP8RaQBtAOUABBIAAUFhiy6OLnIA8gDuAnIA8gCaBwABY3GVLgoScgAA4DXYzdwAAXB0nS6hLmwAdQDzACUScgDpACASAARhY2VmaW9zdbEuvC7ELsguzC7PLtQu2S5jAAABdXm2LrsudABlADuA/QD9QE9kAAFpecAuwy5yAGMAd2FLZG4AO4ClAKVAcgAA4DXYNt1jAHkAV2RwAGYAAOA12GrdYwByAADgNdjO3AABY23dLt8ueQBOZGwAO4D/AP9AAAVhY2RlZmhpb3N38y73Lv8uAi8MLxAvEy8YLx0vIi9jInV0ZQB6YQABYXn7Lv4u8iFvbn5hN2RvAHQAfGEAAWV0Bi8KL3QAcgDmAB8QYQC2Y3IAAOA12DfdYwB5ADZk5yJyYXJyAKDdIXAAZgAA4DXYa91jAHIAAOA12M/cAAFqbiYvKC8AoA0gagAAoAwg")});var SZ=O((o8)=>{Object.defineProperty(o8,"__esModule",{value:!0});o8.xmlDecodeTree=void 0;var CN=EZ();o8.xmlDecodeTree=(0,CN.decodeBase64)("AAJhZ2xxBwARABMAFQBtAg0AAAAAAA8AcAAmYG8AcwAnYHQAPmB0ADxg9SFvdCJg")});var cH=O((t8)=>{Object.defineProperty(t8,"__esModule",{value:!0});t8.BinTrieFlags=void 0;var iH;(function($){$[$.VALUE_LENGTH=49152]="VALUE_LENGTH",$[$.FLAG13=8192]="FLAG13",$[$.BRANCH_LENGTH=8064]="BRANCH_LENGTH",$[$.JUMP_TABLE=127]="JUMP_TABLE"})(iH||(t8.BinTrieFlags=iH={}))});var vZ=O((B1)=>{Object.defineProperty(B1,"__esModule",{value:!0});B1.xmlDecodeTree=B1.htmlDecodeTree=B1.replaceCodePoint=B1.fromCodePoint=B1.decodeCodePoint=B1.EntityDecoder=B1.DecodingMode=void 0;B1.determineBranch=nH;B1.decodeHTML=kN;B1.decodeHTMLAttribute=mN;B1.decodeHTMLStrict=fN;B1.decodeXML=uN;var rH=TZ(),gN=jZ(),yN=SZ(),Y0=cH(),z1;(function($){$[$.NUM=35]="NUM",$[$.SEMI=59]="SEMI",$[$.EQUALS=61]="EQUALS",$[$.ZERO=48]="ZERO",$[$.NINE=57]="NINE",$[$.LOWER_A=97]="LOWER_A",$[$.LOWER_F=102]="LOWER_F",$[$.LOWER_X=120]="LOWER_X",$[$.LOWER_Z=122]="LOWER_Z",$[$.UPPER_A=65]="UPPER_A",$[$.UPPER_F=70]="UPPER_F",$[$.UPPER_Z=90]="UPPER_Z"})(z1||(z1={}));var dH=32;function _Z($){return $>=z1.ZERO&&$<=z1.NINE}function vN($){return $>=z1.UPPER_A&&$<=z1.UPPER_F||$>=z1.LOWER_A&&$<=z1.LOWER_F}function xN($){return $>=z1.UPPER_A&&$<=z1.UPPER_Z||$>=z1.LOWER_A&&$<=z1.LOWER_Z||_Z($)}function hN($){return $===z1.EQUALS||xN($)}var S1;(function($){$[$.EntityStart=0]="EntityStart",$[$.NumericStart=1]="NumericStart",$[$.NumericDecimal=2]="NumericDecimal",$[$.NumericHex=3]="NumericHex",$[$.NamedEntity=4]="NamedEntity"})(S1||(S1={}));var j0;(function($){$[$.Legacy=0]="Legacy",$[$.Strict=1]="Strict",$[$.Attribute=2]="Attribute"})(j0||(B1.DecodingMode=j0={}));class CZ{constructor($,Z,G){this.decodeTree=$,this.emitCodePoint=Z,this.errors=G,this.state=S1.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=j0.Strict,this.runConsumed=0}startEntity($){this.decodeMode=$,this.state=S1.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1,this.runConsumed=0}write($,Z){switch(this.state){case S1.EntityStart:{if($.charCodeAt(Z)===z1.NUM)return this.state=S1.NumericStart,this.consumed+=1,this.stateNumericStart($,Z+1);return this.state=S1.NamedEntity,this.stateNamedEntity($,Z)}case S1.NumericStart:return this.stateNumericStart($,Z);case S1.NumericDecimal:return this.stateNumericDecimal($,Z);case S1.NumericHex:return this.stateNumericHex($,Z);case S1.NamedEntity:return this.stateNamedEntity($,Z)}}stateNumericStart($,Z){if(Z>=$.length)return-1;if(($.charCodeAt(Z)|dH)===z1.LOWER_X)return this.state=S1.NumericHex,this.consumed+=1,this.stateNumericHex($,Z+1);return this.state=S1.NumericDecimal,this.stateNumericDecimal($,Z)}stateNumericHex($,Z){while(Z<$.length){let G=$.charCodeAt(Z);if(_Z(G)||vN(G)){let J=G<=z1.NINE?G-z1.ZERO:(G|dH)-z1.LOWER_A+10;this.result=this.result*16+J,this.consumed++,Z++}else return this.emitNumericEntity(G,3)}return-1}stateNumericDecimal($,Z){while(Z<$.length){let G=$.charCodeAt(Z);if(_Z(G))this.result=this.result*10+(G-z1.ZERO),this.consumed++,Z++;else return this.emitNumericEntity(G,2)}return-1}emitNumericEntity($,Z){var G;if(this.consumed<=Z)return(G=this.errors)===null||G===void 0||G.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if($===z1.SEMI)this.consumed+=1;else if(this.decodeMode===j0.Strict)return 0;if(this.emitCodePoint((0,rH.replaceCodePoint)(this.result),this.consumed),this.errors){if($!==z1.SEMI)this.errors.missingSemicolonAfterCharacterReference();this.errors.validateNumericCharacterReference(this.result)}return this.consumed}stateNamedEntity($,Z){let{decodeTree:G}=this,J=G[this.treeIndex],X=(J&Y0.BinTrieFlags.VALUE_LENGTH)>>14;while(Z<$.length){if(X===0&&(J&Y0.BinTrieFlags.FLAG13)!==0){let H=(J&Y0.BinTrieFlags.BRANCH_LENGTH)>>7;if(this.runConsumed===0){let Q=J&Y0.BinTrieFlags.JUMP_TABLE;if($.charCodeAt(Z)!==Q)return this.result===0?0:this.emitNotTerminatedNamedEntity();Z++,this.excess++,this.runConsumed++}while(this.runConsumed<H){if(Z>=$.length)return-1;let Q=this.runConsumed-1,q=G[this.treeIndex+1+(Q>>1)],U=Q%2===0?q&255:q>>8&255;if($.charCodeAt(Z)!==U)return this.runConsumed=0,this.result===0?0:this.emitNotTerminatedNamedEntity();Z++,this.excess++,this.runConsumed++}this.runConsumed=0,this.treeIndex+=1+(H>>1),J=G[this.treeIndex],X=(J&Y0.BinTrieFlags.VALUE_LENGTH)>>14}if(Z>=$.length)break;let Y=$.charCodeAt(Z);if(Y===z1.SEMI&&X!==0&&(J&Y0.BinTrieFlags.FLAG13)!==0)return this.emitNamedEntityData(this.treeIndex,X,this.consumed+this.excess);if(this.treeIndex=nH(G,J,this.treeIndex+Math.max(1,X),Y),this.treeIndex<0)return this.result===0||this.decodeMode===j0.Attribute&&(X===0||hN(Y))?0:this.emitNotTerminatedNamedEntity();if(J=G[this.treeIndex],X=(J&Y0.BinTrieFlags.VALUE_LENGTH)>>14,X!==0){if(Y===z1.SEMI)return this.emitNamedEntityData(this.treeIndex,X,this.consumed+this.excess);if(this.decodeMode!==j0.Strict&&(J&Y0.BinTrieFlags.FLAG13)===0)this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0}Z++,this.excess++}return-1}emitNotTerminatedNamedEntity(){var $;let{result:Z,decodeTree:G}=this,J=(G[Z]&Y0.BinTrieFlags.VALUE_LENGTH)>>14;return this.emitNamedEntityData(Z,J,this.consumed),($=this.errors)===null||$===void 0||$.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData($,Z,G){let{decodeTree:J}=this;if(this.emitCodePoint(Z===1?J[$]&~(Y0.BinTrieFlags.VALUE_LENGTH|Y0.BinTrieFlags.FLAG13):J[$+1],G),Z===3)this.emitCodePoint(J[$+2],G);return G}end(){var $;switch(this.state){case S1.NamedEntity:return this.result!==0&&(this.decodeMode!==j0.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case S1.NumericDecimal:return this.emitNumericEntity(0,2);case S1.NumericHex:return this.emitNumericEntity(0,3);case S1.NumericStart:return($=this.errors)===null||$===void 0||$.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case S1.EntityStart:return 0}}}B1.EntityDecoder=CZ;function aH($){let Z="",G=new CZ($,(J)=>Z+=(0,rH.fromCodePoint)(J));return function(X,Y){let H=0,Q=0;while((Q=X.indexOf("&",Q))>=0){Z+=X.slice(H,Q),G.startEntity(Y);let U=G.write(X,Q+1);if(U<0){H=Q+G.end();break}H=Q+U,Q=U===0?H+1:H}let q=Z+X.slice(H);return Z="",q}}function nH($,Z,G,J){let X=(Z&Y0.BinTrieFlags.BRANCH_LENGTH)>>7,Y=Z&Y0.BinTrieFlags.JUMP_TABLE;if(X===0)return Y!==0&&J===Y?G:-1;if(Y){let U=J-Y;return U<0||U>=X?-1:$[G+U]-1}let H=X+1>>1,Q=0,q=X-1;while(Q<=q){let U=Q+q>>>1,K=U>>1,z=$[G+K]>>(U&1)*8&255;if(z<J)Q=U+1;else if(z>J)q=U-1;else return $[G+H+U]}return-1}var gZ=aH(gN.htmlDecodeTree),bN=aH(yN.xmlDecodeTree);function kN($,Z=j0.Legacy){return gZ($,Z)}function mN($){return gZ($,j0.Attribute)}function fN($){return gZ($,j0.Strict)}function uN($){return bN($,j0.Strict)}var yZ=TZ();Object.defineProperty(B1,"decodeCodePoint",{enumerable:!0,get:function(){return yZ.decodeCodePoint}});Object.defineProperty(B1,"fromCodePoint",{enumerable:!0,get:function(){return yZ.fromCodePoint}});Object.defineProperty(B1,"replaceCodePoint",{enumerable:!0,get:function(){return yZ.replaceCodePoint}});var pN=jZ();Object.defineProperty(B1,"htmlDecodeTree",{enumerable:!0,get:function(){return pN.htmlDecodeTree}});var lN=SZ();Object.defineProperty(B1,"xmlDecodeTree",{enumerable:!0,get:function(){return lN.xmlDecodeTree}})});var xZ=O((E7)=>{Object.defineProperty(E7,"__esModule",{value:!0});E7.QuoteType=void 0;var T6=vZ(),x;(function($){$[$.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"})(x||(x={}));var w;(function($){$[$.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",$[$.BeforeSpecialT=23]="BeforeSpecialT",$[$.SpecialStartSequence=24]="SpecialStartSequence",$[$.InSpecialTag=25]="InSpecialTag",$[$.InEntity=26]="InEntity"})(w||(w={}));function $5($){return $===x.Space||$===x.NewLine||$===x.Tab||$===x.FormFeed||$===x.CarriageReturn}function e8($){return $===x.Slash||$===x.Gt||$5($)}function iN($){return $>=x.LowerA&&$<=x.LowerZ||$>=x.UpperA&&$<=x.UpperZ}var i5;(function($){$[$.NoValue=0]="NoValue",$[$.Unquoted=1]="Unquoted",$[$.Single=2]="Single",$[$.Double=3]="Double"})(i5||(E7.QuoteType=i5={}));var M1={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]),TextareaEnd:new Uint8Array([60,47,116,101,120,116,97,114,101,97]),XmpEnd:new Uint8Array([60,47,120,109,112])};class sH{constructor({xmlMode:$=!1,decodeEntities:Z=!0},G){this.cbs=G,this.state=w.Text,this.buffer="",this.sectionStart=0,this.index=0,this.entityStart=0,this.baseState=w.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.xmlMode=$,this.decodeEntities=Z,this.entityDecoder=new T6.EntityDecoder($?T6.xmlDecodeTree:T6.htmlDecodeTree,(J,X)=>this.emitCodePoint(J,X))}reset(){this.state=w.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=w.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}write($){this.offset+=this.buffer.length,this.buffer=$,this.parse()}end(){if(this.running)this.finish()}pause(){this.running=!1}resume(){if(this.running=!0,this.index<this.buffer.length+this.offset)this.parse()}stateText($){if($===x.Lt||!this.decodeEntities&&this.fastForwardTo(x.Lt)){if(this.index>this.sectionStart)this.cbs.ontext(this.sectionStart,this.index);this.state=w.BeforeTagName,this.sectionStart=this.index}else if(this.decodeEntities&&$===x.Amp)this.startEntity()}stateSpecialStartSequence($){let Z=this.sequenceIndex===this.currentSequence.length;if(!(Z?e8($):($|32)===this.currentSequence[this.sequenceIndex]))this.isSpecial=!1;else if(!Z){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=w.InTagName,this.stateInTagName($)}stateInSpecialTag($){if(this.sequenceIndex===this.currentSequence.length){if($===x.Gt||$5($)){let Z=this.index-this.currentSequence.length;if(this.sectionStart<Z){let G=this.index;this.index=Z,this.cbs.ontext(this.sectionStart,Z),this.index=G}this.isSpecial=!1,this.sectionStart=Z+2,this.stateInClosingTagName($);return}this.sequenceIndex=0}if(($|32)===this.currentSequence[this.sequenceIndex])this.sequenceIndex+=1;else if(this.sequenceIndex===0){if(this.currentSequence===M1.TitleEnd){if(this.decodeEntities&&$===x.Amp)this.startEntity()}else if(this.fastForwardTo(x.Lt))this.sequenceIndex=1}else this.sequenceIndex=Number($===x.Lt)}stateCDATASequence($){if($===M1.Cdata[this.sequenceIndex]){if(++this.sequenceIndex===M1.Cdata.length)this.state=w.InCommentLike,this.currentSequence=M1.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1}else this.sequenceIndex=0,this.state=w.InDeclaration,this.stateInDeclaration($)}fastForwardTo($){while(++this.index<this.buffer.length+this.offset)if(this.buffer.charCodeAt(this.index-this.offset)===$)return!0;return this.index=this.buffer.length+this.offset-1,!1}stateInCommentLike($){if($===this.currentSequence[this.sequenceIndex]){if(++this.sequenceIndex===this.currentSequence.length){if(this.currentSequence===M1.CdataEnd)this.cbs.oncdata(this.sectionStart,this.index,2);else this.cbs.oncomment(this.sectionStart,this.index,2);this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=w.Text}}else if(this.sequenceIndex===0){if(this.fastForwardTo(this.currentSequence[0]))this.sequenceIndex=1}else if($!==this.currentSequence[this.sequenceIndex-1])this.sequenceIndex=0}isTagStartChar($){return this.xmlMode?!e8($):iN($)}startSpecial($,Z){this.isSpecial=!0,this.currentSequence=$,this.sequenceIndex=Z,this.state=w.SpecialStartSequence}stateBeforeTagName($){if($===x.ExclamationMark)this.state=w.BeforeDeclaration,this.sectionStart=this.index+1;else if($===x.Questionmark)this.state=w.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar($)){let Z=$|32;if(this.sectionStart=this.index,this.xmlMode)this.state=w.InTagName;else if(Z===M1.ScriptEnd[2])this.state=w.BeforeSpecialS;else if(Z===M1.TitleEnd[2]||Z===M1.XmpEnd[2])this.state=w.BeforeSpecialT;else this.state=w.InTagName}else if($===x.Slash)this.state=w.BeforeClosingTagName;else this.state=w.Text,this.stateText($)}stateInTagName($){if(e8($))this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=w.BeforeAttributeName,this.stateBeforeAttributeName($)}stateBeforeClosingTagName($){if($5($));else if($===x.Gt)this.state=w.Text;else this.state=this.isTagStartChar($)?w.InClosingTagName:w.InSpecialComment,this.sectionStart=this.index}stateInClosingTagName($){if($===x.Gt||$5($))this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=w.AfterClosingTagName,this.stateAfterClosingTagName($)}stateAfterClosingTagName($){if($===x.Gt||this.fastForwardTo(x.Gt))this.state=w.Text,this.sectionStart=this.index+1}stateBeforeAttributeName($){if($===x.Gt){if(this.cbs.onopentagend(this.index),this.isSpecial)this.state=w.InSpecialTag,this.sequenceIndex=0;else this.state=w.Text;this.sectionStart=this.index+1}else if($===x.Slash)this.state=w.InSelfClosingTag;else if(!$5($))this.state=w.InAttributeName,this.sectionStart=this.index}stateInSelfClosingTag($){if($===x.Gt)this.cbs.onselfclosingtag(this.index),this.state=w.Text,this.sectionStart=this.index+1,this.isSpecial=!1;else if(!$5($))this.state=w.BeforeAttributeName,this.stateBeforeAttributeName($)}stateInAttributeName($){if($===x.Eq||e8($))this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=this.index,this.state=w.AfterAttributeName,this.stateAfterAttributeName($)}stateAfterAttributeName($){if($===x.Eq)this.state=w.BeforeAttributeValue;else if($===x.Slash||$===x.Gt)this.cbs.onattribend(i5.NoValue,this.sectionStart),this.sectionStart=-1,this.state=w.BeforeAttributeName,this.stateBeforeAttributeName($);else if(!$5($))this.cbs.onattribend(i5.NoValue,this.sectionStart),this.state=w.InAttributeName,this.sectionStart=this.index}stateBeforeAttributeValue($){if($===x.DoubleQuote)this.state=w.InAttributeValueDq,this.sectionStart=this.index+1;else if($===x.SingleQuote)this.state=w.InAttributeValueSq,this.sectionStart=this.index+1;else if(!$5($))this.sectionStart=this.index,this.state=w.InAttributeValueNq,this.stateInAttributeValueNoQuotes($)}handleInAttributeValue($,Z){if($===Z||!this.decodeEntities&&this.fastForwardTo(Z))this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(Z===x.DoubleQuote?i5.Double:i5.Single,this.index+1),this.state=w.BeforeAttributeName;else if(this.decodeEntities&&$===x.Amp)this.startEntity()}stateInAttributeValueDoubleQuotes($){this.handleInAttributeValue($,x.DoubleQuote)}stateInAttributeValueSingleQuotes($){this.handleInAttributeValue($,x.SingleQuote)}stateInAttributeValueNoQuotes($){if($5($)||$===x.Gt)this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(i5.Unquoted,this.index),this.state=w.BeforeAttributeName,this.stateBeforeAttributeName($);else if(this.decodeEntities&&$===x.Amp)this.startEntity()}stateBeforeDeclaration($){if($===x.OpeningSquareBracket)this.state=w.CDATASequence,this.sequenceIndex=0;else this.state=$===x.Dash?w.BeforeComment:w.InDeclaration}stateInDeclaration($){if($===x.Gt||this.fastForwardTo(x.Gt))this.cbs.ondeclaration(this.sectionStart,this.index),this.state=w.Text,this.sectionStart=this.index+1}stateInProcessingInstruction($){if($===x.Gt||this.fastForwardTo(x.Gt))this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=w.Text,this.sectionStart=this.index+1}stateBeforeComment($){if($===x.Dash)this.state=w.InCommentLike,this.currentSequence=M1.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1;else this.state=w.InDeclaration}stateInSpecialComment($){if($===x.Gt||this.fastForwardTo(x.Gt))this.cbs.oncomment(this.sectionStart,this.index,0),this.state=w.Text,this.sectionStart=this.index+1}stateBeforeSpecialS($){let Z=$|32;if(Z===M1.ScriptEnd[3])this.startSpecial(M1.ScriptEnd,4);else if(Z===M1.StyleEnd[3])this.startSpecial(M1.StyleEnd,4);else this.state=w.InTagName,this.stateInTagName($)}stateBeforeSpecialT($){switch($|32){case M1.TitleEnd[3]:{this.startSpecial(M1.TitleEnd,4);break}case M1.TextareaEnd[3]:{this.startSpecial(M1.TextareaEnd,4);break}case M1.XmpEnd[3]:{this.startSpecial(M1.XmpEnd,4);break}default:this.state=w.InTagName,this.stateInTagName($)}}startEntity(){this.baseState=this.state,this.state=w.InEntity,this.entityStart=this.index,this.entityDecoder.startEntity(this.xmlMode?T6.DecodingMode.Strict:this.baseState===w.Text||this.baseState===w.InSpecialTag?T6.DecodingMode.Legacy:T6.DecodingMode.Attribute)}stateInEntity(){let $=this.index-this.offset,Z=this.entityDecoder.write(this.buffer,$);if(Z>=0){if(this.state=this.baseState,Z===0)this.index-=1}else{if($<this.buffer.length&&this.buffer.charCodeAt($)===x.Amp){this.state=this.baseState,this.index-=1;return}this.index=this.offset+this.buffer.length-1}}cleanup(){if(this.running&&this.sectionStart!==this.index){if(this.state===w.Text||this.state===w.InSpecialTag&&this.sequenceIndex===0)this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index;else if(this.state===w.InAttributeValueDq||this.state===w.InAttributeValueSq||this.state===w.InAttributeValueNq)this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index}}shouldContinue(){return this.index<this.buffer.length+this.offset&&this.running}parse(){while(this.shouldContinue()){let $=this.buffer.charCodeAt(this.index-this.offset);switch(this.state){case w.Text:{this.stateText($);break}case w.SpecialStartSequence:{this.stateSpecialStartSequence($);break}case w.InSpecialTag:{this.stateInSpecialTag($);break}case w.CDATASequence:{this.stateCDATASequence($);break}case w.InAttributeValueDq:{this.stateInAttributeValueDoubleQuotes($);break}case w.InAttributeName:{this.stateInAttributeName($);break}case w.InCommentLike:{this.stateInCommentLike($);break}case w.InSpecialComment:{this.stateInSpecialComment($);break}case w.BeforeAttributeName:{this.stateBeforeAttributeName($);break}case w.InTagName:{this.stateInTagName($);break}case w.InClosingTagName:{this.stateInClosingTagName($);break}case w.BeforeTagName:{this.stateBeforeTagName($);break}case w.AfterAttributeName:{this.stateAfterAttributeName($);break}case w.InAttributeValueSq:{this.stateInAttributeValueSingleQuotes($);break}case w.BeforeAttributeValue:{this.stateBeforeAttributeValue($);break}case w.BeforeClosingTagName:{this.stateBeforeClosingTagName($);break}case w.AfterClosingTagName:{this.stateAfterClosingTagName($);break}case w.BeforeSpecialS:{this.stateBeforeSpecialS($);break}case w.BeforeSpecialT:{this.stateBeforeSpecialT($);break}case w.InAttributeValueNq:{this.stateInAttributeValueNoQuotes($);break}case w.InSelfClosingTag:{this.stateInSelfClosingTag($);break}case w.InDeclaration:{this.stateInDeclaration($);break}case w.BeforeDeclaration:{this.stateBeforeDeclaration($);break}case w.BeforeComment:{this.stateBeforeComment($);break}case w.InProcessingInstruction:{this.stateInProcessingInstruction($);break}case w.InEntity:{this.stateInEntity();break}}this.index++}this.cleanup()}finish(){if(this.state===w.InEntity)this.entityDecoder.end(),this.state=this.baseState;this.handleTrailingData(),this.cbs.onend()}handleTrailingData(){let $=this.buffer.length+this.offset;if(this.sectionStart>=$)return;if(this.state===w.InCommentLike)if(this.currentSequence===M1.CdataEnd)this.cbs.oncdata(this.sectionStart,$,0);else this.cbs.oncomment(this.sectionStart,$,0);else if(this.state===w.InTagName||this.state===w.BeforeAttributeName||this.state===w.BeforeAttributeValue||this.state===w.AfterAttributeName||this.state===w.InAttributeName||this.state===w.InAttributeValueSq||this.state===w.InAttributeValueDq||this.state===w.InAttributeValueNq||this.state===w.InClosingTagName);else this.cbs.ontext(this.sectionStart,$)}emitCodePoint($,Z){if(this.baseState!==w.Text&&this.baseState!==w.InSpecialTag){if(this.sectionStart<this.entityStart)this.cbs.onattribdata(this.sectionStart,this.entityStart);this.sectionStart=this.entityStart+Z,this.index=this.sectionStart-1,this.cbs.onattribentity($)}else{if(this.sectionStart<this.entityStart)this.cbs.ontext(this.sectionStart,this.entityStart);this.sectionStart=this.entityStart+Z,this.index=this.sectionStart-1,this.cbs.ontextentity($,this.sectionStart)}}}E7.default=sH});var hZ=O((k0)=>{var cN=k0&&k0.__createBinding||(Object.create?function($,Z,G,J){if(J===void 0)J=G;var X=Object.getOwnPropertyDescriptor(Z,G);if(!X||("get"in X?!Z.__esModule:X.writable||X.configurable))X={enumerable:!0,get:function(){return Z[G]}};Object.defineProperty($,J,X)}:function($,Z,G,J){if(J===void 0)J=G;$[J]=Z[G]}),dN=k0&&k0.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),rN=k0&&k0.__importStar||function(){var $=function(Z){return $=Object.getOwnPropertyNames||function(G){var J=[];for(var X in G)if(Object.prototype.hasOwnProperty.call(G,X))J[J.length]=X;return J},$(Z)};return function(Z){if(Z&&Z.__esModule)return Z;var G={};if(Z!=null){for(var J=$(Z),X=0;X<J.length;X++)if(J[X]!=="default")cN(G,Z,J[X])}return dN(G,Z),G}}();Object.defineProperty(k0,"__esModule",{value:!0});k0.Parser=void 0;var $9=rN(xZ()),oH=vZ(),w6=new Set(["input","option","optgroup","select","button","datalist","textarea"]),H1=new Set(["p"]),tH=new Set(["thead","tbody"]),eH=new Set(["dd","dt"]),$Q=new Set(["rt","rp"]),aN=new Map([["tr",new Set(["tr","th","td"])],["th",new Set(["th"])],["td",new Set(["thead","th","td"])],["body",new Set(["head","link","script"])],["li",new Set(["li"])],["p",H1],["h1",H1],["h2",H1],["h3",H1],["h4",H1],["h5",H1],["h6",H1],["select",w6],["input",w6],["output",w6],["button",w6],["datalist",w6],["textarea",w6],["option",new Set(["option"])],["optgroup",new Set(["optgroup","option"])],["dd",eH],["dt",eH],["address",H1],["article",H1],["aside",H1],["blockquote",H1],["details",H1],["div",H1],["dl",H1],["fieldset",H1],["figcaption",H1],["figure",H1],["footer",H1],["form",H1],["header",H1],["hr",H1],["main",H1],["nav",H1],["ol",H1],["pre",H1],["section",H1],["table",H1],["ul",H1],["rt",$Q],["rp",$Q],["tbody",tH],["tfoot",tH]]),nN=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),ZQ=new Set(["math","svg"]),GQ=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignobject","desc","title"]),sN=/\s|\//;class JQ{constructor($,Z={}){var G,J,X,Y,H,Q;this.options=Z,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=$!==null&&$!==void 0?$:{},this.htmlMode=!this.options.xmlMode,this.lowerCaseTagNames=(G=Z.lowerCaseTags)!==null&&G!==void 0?G:this.htmlMode,this.lowerCaseAttributeNames=(J=Z.lowerCaseAttributeNames)!==null&&J!==void 0?J:this.htmlMode,this.recognizeSelfClosing=(X=Z.recognizeSelfClosing)!==null&&X!==void 0?X:!this.htmlMode,this.tokenizer=new((Y=Z.Tokenizer)!==null&&Y!==void 0?Y:$9.default)(this.options,this),this.foreignContext=[!this.htmlMode],(Q=(H=this.cbs).onparserinit)===null||Q===void 0||Q.call(H,this)}ontext($,Z){var G,J;let X=this.getSlice($,Z);this.endIndex=Z-1,(J=(G=this.cbs).ontext)===null||J===void 0||J.call(G,X),this.startIndex=Z}ontextentity($,Z){var G,J;this.endIndex=Z-1,(J=(G=this.cbs).ontext)===null||J===void 0||J.call(G,(0,oH.fromCodePoint)($)),this.startIndex=Z}isVoidElement($){return this.htmlMode&&nN.has($)}onopentagname($,Z){this.endIndex=Z;let G=this.getSlice($,Z);if(this.lowerCaseTagNames)G=G.toLowerCase();this.emitOpenTag(G)}emitOpenTag($){var Z,G,J,X;this.openTagStart=this.startIndex,this.tagname=$;let Y=this.htmlMode&&aN.get($);if(Y)while(this.stack.length>0&&Y.has(this.stack[0])){let H=this.stack.shift();(G=(Z=this.cbs).onclosetag)===null||G===void 0||G.call(Z,H,!0)}if(!this.isVoidElement($)){if(this.stack.unshift($),this.htmlMode){if(ZQ.has($))this.foreignContext.unshift(!0);else if(GQ.has($))this.foreignContext.unshift(!1)}}if((X=(J=this.cbs).onopentagname)===null||X===void 0||X.call(J,$),this.cbs.onopentag)this.attribs={}}endOpenTag($){var Z,G;if(this.startIndex=this.openTagStart,this.attribs)(G=(Z=this.cbs).onopentag)===null||G===void 0||G.call(Z,this.tagname,this.attribs,$),this.attribs=null;if(this.cbs.onclosetag&&this.isVoidElement(this.tagname))this.cbs.onclosetag(this.tagname,!0);this.tagname=""}onopentagend($){this.endIndex=$,this.endOpenTag(!1),this.startIndex=$+1}onclosetag($,Z){var G,J,X,Y,H,Q,q,U;this.endIndex=Z;let K=this.getSlice($,Z);if(this.lowerCaseTagNames)K=K.toLowerCase();if(this.htmlMode&&(ZQ.has(K)||GQ.has(K)))this.foreignContext.shift();if(!this.isVoidElement(K)){let W=this.stack.indexOf(K);if(W!==-1)for(let z=0;z<=W;z++){let L=this.stack.shift();(J=(G=this.cbs).onclosetag)===null||J===void 0||J.call(G,L,z!==W)}else if(this.htmlMode&&K==="p")this.emitOpenTag("p"),this.closeCurrentTag(!0)}else if(this.htmlMode&&K==="br")(Y=(X=this.cbs).onopentagname)===null||Y===void 0||Y.call(X,"br"),(Q=(H=this.cbs).onopentag)===null||Q===void 0||Q.call(H,"br",{},!0),(U=(q=this.cbs).onclosetag)===null||U===void 0||U.call(q,"br",!1);this.startIndex=Z+1}onselfclosingtag($){if(this.endIndex=$,this.recognizeSelfClosing||this.foreignContext[0])this.closeCurrentTag(!1),this.startIndex=$+1;else this.onopentagend($)}closeCurrentTag($){var Z,G;let J=this.tagname;if(this.endOpenTag($),this.stack[0]===J)(G=(Z=this.cbs).onclosetag)===null||G===void 0||G.call(Z,J,!$),this.stack.shift()}onattribname($,Z){this.startIndex=$;let G=this.getSlice($,Z);this.attribname=this.lowerCaseAttributeNames?G.toLowerCase():G}onattribdata($,Z){this.attribvalue+=this.getSlice($,Z)}onattribentity($){this.attribvalue+=(0,oH.fromCodePoint)($)}onattribend($,Z){var G,J;if(this.endIndex=Z,(J=(G=this.cbs).onattribute)===null||J===void 0||J.call(G,this.attribname,this.attribvalue,$===$9.QuoteType.Double?'"':$===$9.QuoteType.Single?"'":$===$9.QuoteType.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname))this.attribs[this.attribname]=this.attribvalue;this.attribvalue=""}getInstructionName($){let Z=$.search(sN),G=Z<0?$:$.substr(0,Z);if(this.lowerCaseTagNames)G=G.toLowerCase();return G}ondeclaration($,Z){this.endIndex=Z;let G=this.getSlice($,Z);if(this.cbs.onprocessinginstruction){let J=this.getInstructionName(G);this.cbs.onprocessinginstruction(`!${J}`,`!${G}`)}this.startIndex=Z+1}onprocessinginstruction($,Z){this.endIndex=Z;let G=this.getSlice($,Z);if(this.cbs.onprocessinginstruction){let J=this.getInstructionName(G);this.cbs.onprocessinginstruction(`?${J}`,`?${G}`)}this.startIndex=Z+1}oncomment($,Z,G){var J,X,Y,H;this.endIndex=Z,(X=(J=this.cbs).oncomment)===null||X===void 0||X.call(J,this.getSlice($,Z-G)),(H=(Y=this.cbs).oncommentend)===null||H===void 0||H.call(Y),this.startIndex=Z+1}oncdata($,Z,G){var J,X,Y,H,Q,q,U,K,W,z;this.endIndex=Z;let L=this.getSlice($,Z-G);if(!this.htmlMode||this.options.recognizeCDATA)(X=(J=this.cbs).oncdatastart)===null||X===void 0||X.call(J),(H=(Y=this.cbs).ontext)===null||H===void 0||H.call(Y,L),(q=(Q=this.cbs).oncdataend)===null||q===void 0||q.call(Q);else(K=(U=this.cbs).oncomment)===null||K===void 0||K.call(U,`[CDATA[${L}]]`),(z=(W=this.cbs).oncommentend)===null||z===void 0||z.call(W);this.startIndex=Z+1}onend(){var $,Z;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(let G=0;G<this.stack.length;G++)this.cbs.onclosetag(this.stack[G],!0)}(Z=($=this.cbs).onend)===null||Z===void 0||Z.call($)}reset(){var $,Z,G,J;(Z=($=this.cbs).onreset)===null||Z===void 0||Z.call($),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,(J=(G=this.cbs).onparserinit)===null||J===void 0||J.call(G,this),this.buffers.length=0,this.foreignContext.length=0,this.foreignContext.unshift(!this.htmlMode),this.bufferOffset=0,this.writeIndex=0,this.ended=!1}parseComplete($){this.reset(),this.end($)}getSlice($,Z){while($-this.bufferOffset>=this.buffers[0].length)this.shiftBuffer();let G=this.buffers[0].slice($-this.bufferOffset,Z-this.bufferOffset);while(Z-this.bufferOffset>this.buffers[0].length)this.shiftBuffer(),G+=this.buffers[0].slice(0,Z-this.bufferOffset);return G}shiftBuffer(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}write($){var Z,G;if(this.ended){(G=(Z=this.cbs).onerror)===null||G===void 0||G.call(Z,Error(".write() after done!"));return}if(this.buffers.push($),this.tokenizer.running)this.tokenizer.write($),this.writeIndex++}end($){var Z,G;if(this.ended){(G=(Z=this.cbs).onerror)===null||G===void 0||G.call(Z,Error(".end() after done!"));return}if($)this.write($);this.ended=!0,this.tokenizer.end()}pause(){this.tokenizer.pause()}resume(){this.tokenizer.resume();while(this.tokenizer.running&&this.writeIndex<this.buffers.length)this.tokenizer.write(this.buffers[this.writeIndex++]);if(this.ended)this.tokenizer.end()}parseChunk($){this.write($)}done($){this.end($)}}k0.Parser=JQ});var XQ=O((bZ)=>{Object.defineProperty(bZ,"__esModule",{value:!0});bZ.default=new Uint16Array("ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\x00\x00\x00\x00\x00\x00ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀ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;慆Ѱ̽\x00\x00\x00͔͂\x00Ѕf;쀀\uD835\uDD3Bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\x00\x00ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\x00\x00ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\x00ц\x00ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\x00ѱ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ɓԆ\x00\x00Ԓ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ɓ֗\x00\x00֣mallSquare;旼erySmallSquare;斪Ͱֺ\x00ֿ\x00\x00ׄ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;愋ǰگ\x00ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\x00ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\uD835\uDD40a;䎙cr;愐ilde;䄨ǫޚ\x00ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀\uD835\uDD0Dpf;쀀\uD835\uDD41ǣ߇\x00ߌ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ǵࢷ\x00ࣃbleBracket;柦nǔࣈ\x00࣒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୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢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;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀\uD835\uDCAB;䎨ȀUfos༑༖༛༟OT耻\"䀢r;쀀\uD835\uDD14pf;愚cr;쀀\uD835\uDCACBEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾ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ǵ\x00စbleBracket;柧nǔည\x00န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ɲᅭ\x00\x00ᅰ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ኀ\x00ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\uD835\uDD4BipleDot;惛Āctዖዛr;쀀\uD835\uDCAFrok;䅦ૡዷጎጚጦ\x00ጬጱ\x00\x00\x00\x00\x00ጸጽ፷ᎅ\x00ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\x00y;䐎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ᕔ\x00ᕛoWidtèa;䎖r;愨pf;愤cr;쀀\uD835\uDCB5ᖃᖊᖐ\x00ᖰᖶᖿ\x00\x00\x00\x00ᗆᗛᗫᙟ᙭\x00ᚕ᚛ᚲᚹ\x00ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\uD835\uDD1Erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\x00\x00ᘊʀ;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Ā;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀\uD835\uDD1Fgcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\x00\x00ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\x00ᠳƲᠯ\x00ᠱ;斒;斑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Ā;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\x00᧨ᨑᨕᨲ\x00ᨷᩐ\x00\x00᪴\x00\x00᫁\x00\x00ᬡᬮ᭒\x00᯽\x00ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\x00᧸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ɡᩴ\x00\x00᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\x00ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\x00\x00aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\x00ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\uD835\uDD54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\uD835\uDCB8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\x00\x00᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\x00\x00ᯒ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ɯᴆ\x00\x00ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\uD835\uDD55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\x00\x00ᶎ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»Ḯɩỹ\x00\x00ỻíՈ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åչৡᾒ\x00ᾞ\x00ᾡᾧ\x00\x00ῆῌ\x00ΐ\x00ῦῪ \x00 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\x00\x00᾽g;耀ffig;耀ffl;쀀\uD835\uDD23lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\x00ῳf;쀀\uD835\uDD57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\x00⁐β•‥‧\x00耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\x00‶;慔;慖ʴ‾⁁\x00\x00⁃耻¾䂾;慗;慜5;慘ƶ⁌\x00⁎;慚;慝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ↄⅪ←ٖ↛ǰ↉\x00proø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»ᱛૡ⊣\x00⊪\x00⊸⋅⋎\x00⋕⋳\x00\x00⋸⌢⍧⍢⍿\x00⎆⎪⎴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;䄩ǫ⎸\x00⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\uD835\uDD27ath;䈷pf;쀀\uD835\uDD5Bǣ⏬\x00⏱r;쀀\uD835\uDCBFrcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\uD835\uDD28reen;䄸cy;䑅cy;䑜pf;쀀\uD835\uDD5Ccr;쀀\uD835\uDCC0ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\x00⒪\x00⒱\x00\x00\x00\x00\x00⒵Ⓔ\x00ⓆⓈⓍ\x00⓹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⧟\x00⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\x00⧻;橃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ɭ⬅\x00\x00⯖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;椧ቓ᪕\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00ⴭ\x00ⴸⵈⵠⵥⶄᬇ\x00\x00ⶍⶫ\x00ⷈⷎ\x00ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀\uD835\uDD2Cͯ\x00\x00\x00ⶂ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;挽ૡ\x00\x00⺀⺝\x00⺢⺹\x00\x00⻋ຜ\x00⼓\x00\x00⼫⾼\x00⿈rȀ;astЃ脀¶;l䂶leìЃɩ\x00\x00m;櫳;櫽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;楨;愞ൡ㋕㋛㋟㌬㌸㍱\x00㍺㎤\x00\x00㏬㏰\x00㐨㑈㑚㒭㒱㓊㓱\x00㘖\x00\x00㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\x00㋼;檸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ɭ㎙\x00\x00㎜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耻ß䃟㙑㙝㙠ዎ㙳㙹\x00㙾㛂\x00\x00\x00\x00\x00㛛㜃\x00㜉㝬\x00\x00\x00㞇ɲ㙖\x00\x00㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\uD835\uDD31Ȁeiko㚆㚝㚵㚼Dz㚋\x00㚑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ǣ㟪\x00㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\uD835\uDD32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\x00\x00㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\uD835\uDD66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\x00\x00㣁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ૣណ㪇\x00㪋\x00㪐㪛\x00\x00㪝㪨㪫㪯\x00\x00㫃㫎\x00㫘ៜ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($){return $.charCodeAt(0)}))});var YQ=O((kZ)=>{Object.defineProperty(kZ,"__esModule",{value:!0});kZ.default=new Uint16Array("Ȁaglq\t\x15\x18\x1Bɭ\x0F\x00\x00\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function($){return $.charCodeAt(0)}))});var fZ=O((F5)=>{var mZ;Object.defineProperty(F5,"__esModule",{value:!0});F5.replaceCodePoint=F5.fromCodePoint=void 0;var oN=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]]);F5.fromCodePoint=(mZ=String.fromCodePoint)!==null&&mZ!==void 0?mZ:function($){var Z="";if($>65535)$-=65536,Z+=String.fromCharCode($>>>10&1023|55296),$=56320|$&1023;return Z+=String.fromCharCode($),Z};function HQ($){var Z;if($>=55296&&$<=57343||$>1114111)return 65533;return(Z=oN.get($))!==null&&Z!==void 0?Z:$}F5.replaceCodePoint=HQ;function tN($){return(0,F5.fromCodePoint)(HQ($))}F5.default=tN});var iZ=O((r)=>{var eN=r&&r.__createBinding||(Object.create?function($,Z,G,J){if(J===void 0)J=G;var X=Object.getOwnPropertyDescriptor(Z,G);if(!X||("get"in X?!Z.__esModule:X.writable||X.configurable))X={enumerable:!0,get:function(){return Z[G]}};Object.defineProperty($,J,X)}:function($,Z,G,J){if(J===void 0)J=G;$[J]=Z[G]}),$B=r&&r.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),ZB=r&&r.__importStar||function($){if($&&$.__esModule)return $;var Z={};if($!=null){for(var G in $)if(G!=="default"&&Object.prototype.hasOwnProperty.call($,G))eN(Z,$,G)}return $B(Z,$),Z},QQ=r&&r.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(r,"__esModule",{value:!0});r.decodeXML=r.decodeHTMLStrict=r.decodeHTMLAttribute=r.decodeHTML=r.determineBranch=r.EntityDecoder=r.DecodingMode=r.BinTrieFlags=r.fromCodePoint=r.replaceCodePoint=r.decodeCodePoint=r.xmlDecodeTree=r.htmlDecodeTree=void 0;var qQ=QQ(XQ());r.htmlDecodeTree=qQ.default;var KQ=QQ(YQ());r.xmlDecodeTree=KQ.default;var pZ=ZB(fZ());r.decodeCodePoint=pZ.default;var UQ=fZ();Object.defineProperty(r,"replaceCodePoint",{enumerable:!0,get:function(){return UQ.replaceCodePoint}});Object.defineProperty(r,"fromCodePoint",{enumerable:!0,get:function(){return UQ.fromCodePoint}});var C1;(function($){$[$.NUM=35]="NUM",$[$.SEMI=59]="SEMI",$[$.EQUALS=61]="EQUALS",$[$.ZERO=48]="ZERO",$[$.NINE=57]="NINE",$[$.LOWER_A=97]="LOWER_A",$[$.LOWER_F=102]="LOWER_F",$[$.LOWER_X=120]="LOWER_X",$[$.LOWER_Z=122]="LOWER_Z",$[$.UPPER_A=65]="UPPER_A",$[$.UPPER_F=70]="UPPER_F",$[$.UPPER_Z=90]="UPPER_Z"})(C1||(C1={}));var GB=32,c5;(function($){$[$.VALUE_LENGTH=49152]="VALUE_LENGTH",$[$.BRANCH_LENGTH=16256]="BRANCH_LENGTH",$[$.JUMP_TABLE=127]="JUMP_TABLE"})(c5=r.BinTrieFlags||(r.BinTrieFlags={}));function uZ($){return $>=C1.ZERO&&$<=C1.NINE}function JB($){return $>=C1.UPPER_A&&$<=C1.UPPER_F||$>=C1.LOWER_A&&$<=C1.LOWER_F}function XB($){return $>=C1.UPPER_A&&$<=C1.UPPER_Z||$>=C1.LOWER_A&&$<=C1.LOWER_Z||uZ($)}function YB($){return $===C1.EQUALS||XB($)}var _1;(function($){$[$.EntityStart=0]="EntityStart",$[$.NumericStart=1]="NumericStart",$[$.NumericDecimal=2]="NumericDecimal",$[$.NumericHex=3]="NumericHex",$[$.NamedEntity=4]="NamedEntity"})(_1||(_1={}));var m0;(function($){$[$.Legacy=0]="Legacy",$[$.Strict=1]="Strict",$[$.Attribute=2]="Attribute"})(m0=r.DecodingMode||(r.DecodingMode={}));var WQ=function(){function $(Z,G,J){this.decodeTree=Z,this.emitCodePoint=G,this.errors=J,this.state=_1.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=m0.Strict}return $.prototype.startEntity=function(Z){this.decodeMode=Z,this.state=_1.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},$.prototype.write=function(Z,G){switch(this.state){case _1.EntityStart:{if(Z.charCodeAt(G)===C1.NUM)return this.state=_1.NumericStart,this.consumed+=1,this.stateNumericStart(Z,G+1);return this.state=_1.NamedEntity,this.stateNamedEntity(Z,G)}case _1.NumericStart:return this.stateNumericStart(Z,G);case _1.NumericDecimal:return this.stateNumericDecimal(Z,G);case _1.NumericHex:return this.stateNumericHex(Z,G);case _1.NamedEntity:return this.stateNamedEntity(Z,G)}},$.prototype.stateNumericStart=function(Z,G){if(G>=Z.length)return-1;if((Z.charCodeAt(G)|GB)===C1.LOWER_X)return this.state=_1.NumericHex,this.consumed+=1,this.stateNumericHex(Z,G+1);return this.state=_1.NumericDecimal,this.stateNumericDecimal(Z,G)},$.prototype.addToNumericResult=function(Z,G,J,X){if(G!==J){var Y=J-G;this.result=this.result*Math.pow(X,Y)+parseInt(Z.substr(G,Y),X),this.consumed+=Y}},$.prototype.stateNumericHex=function(Z,G){var J=G;while(G<Z.length){var X=Z.charCodeAt(G);if(uZ(X)||JB(X))G+=1;else return this.addToNumericResult(Z,J,G,16),this.emitNumericEntity(X,3)}return this.addToNumericResult(Z,J,G,16),-1},$.prototype.stateNumericDecimal=function(Z,G){var J=G;while(G<Z.length){var X=Z.charCodeAt(G);if(uZ(X))G+=1;else return this.addToNumericResult(Z,J,G,10),this.emitNumericEntity(X,2)}return this.addToNumericResult(Z,J,G,10),-1},$.prototype.emitNumericEntity=function(Z,G){var J;if(this.consumed<=G)return(J=this.errors)===null||J===void 0||J.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(Z===C1.SEMI)this.consumed+=1;else if(this.decodeMode===m0.Strict)return 0;if(this.emitCodePoint((0,pZ.replaceCodePoint)(this.result),this.consumed),this.errors){if(Z!==C1.SEMI)this.errors.missingSemicolonAfterCharacterReference();this.errors.validateNumericCharacterReference(this.result)}return this.consumed},$.prototype.stateNamedEntity=function(Z,G){var J=this.decodeTree,X=J[this.treeIndex],Y=(X&c5.VALUE_LENGTH)>>14;for(;G<Z.length;G++,this.excess++){var H=Z.charCodeAt(G);if(this.treeIndex=zQ(J,X,this.treeIndex+Math.max(1,Y),H),this.treeIndex<0)return this.result===0||this.decodeMode===m0.Attribute&&(Y===0||YB(H))?0:this.emitNotTerminatedNamedEntity();if(X=J[this.treeIndex],Y=(X&c5.VALUE_LENGTH)>>14,Y!==0){if(H===C1.SEMI)return this.emitNamedEntityData(this.treeIndex,Y,this.consumed+this.excess);if(this.decodeMode!==m0.Strict)this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0}}return-1},$.prototype.emitNotTerminatedNamedEntity=function(){var Z,G=this,J=G.result,X=G.decodeTree,Y=(X[J]&c5.VALUE_LENGTH)>>14;return this.emitNamedEntityData(J,Y,this.consumed),(Z=this.errors)===null||Z===void 0||Z.missingSemicolonAfterCharacterReference(),this.consumed},$.prototype.emitNamedEntityData=function(Z,G,J){var X=this.decodeTree;if(this.emitCodePoint(G===1?X[Z]&~c5.VALUE_LENGTH:X[Z+1],J),G===3)this.emitCodePoint(X[Z+2],J);return J},$.prototype.end=function(){var Z;switch(this.state){case _1.NamedEntity:return this.result!==0&&(this.decodeMode!==m0.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case _1.NumericDecimal:return this.emitNumericEntity(0,2);case _1.NumericHex:return this.emitNumericEntity(0,3);case _1.NumericStart:return(Z=this.errors)===null||Z===void 0||Z.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case _1.EntityStart:return 0}},$}();r.EntityDecoder=WQ;function LQ($){var Z="",G=new WQ($,function(J){return Z+=(0,pZ.fromCodePoint)(J)});return function(X,Y){var H=0,Q=0;while((Q=X.indexOf("&",Q))>=0){Z+=X.slice(H,Q),G.startEntity(Y);var q=G.write(X,Q+1);if(q<0){H=Q+G.end();break}H=Q+q,Q=q===0?H+1:H}var U=Z+X.slice(H);return Z="",U}}function zQ($,Z,G,J){var X=(Z&c5.BRANCH_LENGTH)>>7,Y=Z&c5.JUMP_TABLE;if(X===0)return Y!==0&&J===Y?G:-1;if(Y){var H=J-Y;return H<0||H>=X?-1:$[G+H]-1}var Q=G,q=Q+X-1;while(Q<=q){var U=Q+q>>>1,K=$[U];if(K<J)Q=U+1;else if(K>J)q=U-1;else return $[U+X]}return-1}r.determineBranch=zQ;var lZ=LQ(qQ.default),HB=LQ(KQ.default);function QB($,Z){if(Z===void 0)Z=m0.Legacy;return lZ($,Z)}r.decodeHTML=QB;function qB($){return lZ($,m0.Attribute)}r.decodeHTMLAttribute=qB;function KB($){return lZ($,m0.Strict)}r.decodeHTMLStrict=KB;function UB($){return HB($,m0.Strict)}r.decodeXML=UB});var AQ=O((cZ)=>{Object.defineProperty(cZ,"__esModule",{value:!0});function Z9($){for(var Z=1;Z<$.length;Z++)$[Z][0]+=$[Z-1][0]+1;return $}cZ.default=new Map(Z9([[9,"	"],[0,"
"],[22,"!"],[0,"""],[0,"#"],[0,"$"],[0,"%"],[0,"&"],[0,"'"],[0,"("],[0,")"],[0,"*"],[0,"+"],[0,","],[1,"."],[0,"/"],[10,":"],[0,";"],[0,{v:"<",n:8402,o:"<⃒"}],[0,{v:"=",n:8421,o:"=⃥"}],[0,{v:">",n:8402,o:">⃒"}],[0,"?"],[0,"@"],[26,"["],[0,"\"],[0,"]"],[0,"^"],[0,"_"],[0,"`"],[5,{n:106,o:"fj"}],[20,"{"],[0,"|"],[0,"}"],[34," "],[0,"¡"],[0,"¢"],[0,"£"],[0,"¤"],[0,"¥"],[0,"¦"],[0,"§"],[0,"¨"],[0,"©"],[0,"ª"],[0,"«"],[0,"¬"],[0,"­"],[0,"®"],[0,"¯"],[0,"°"],[0,"±"],[0,"²"],[0,"³"],[0,"´"],[0,"µ"],[0,"¶"],[0,"·"],[0,"¸"],[0,"¹"],[0,"º"],[0,"»"],[0,"¼"],[0,"½"],[0,"¾"],[0,"¿"],[0,"À"],[0,"Á"],[0,"Â"],[0,"Ã"],[0,"Ä"],[0,"Å"],[0,"Æ"],[0,"Ç"],[0,"È"],[0,"É"],[0,"Ê"],[0,"Ë"],[0,"Ì"],[0,"Í"],[0,"Î"],[0,"Ï"],[0,"Ð"],[0,"Ñ"],[0,"Ò"],[0,"Ó"],[0,"Ô"],[0,"Õ"],[0,"Ö"],[0,"×"],[0,"Ø"],[0,"Ù"],[0,"Ú"],[0,"Û"],[0,"Ü"],[0,"Ý"],[0,"Þ"],[0,"ß"],[0,"à"],[0,"á"],[0,"â"],[0,"ã"],[0,"ä"],[0,"å"],[0,"æ"],[0,"ç"],[0,"è"],[0,"é"],[0,"ê"],[0,"ë"],[0,"ì"],[0,"í"],[0,"î"],[0,"ï"],[0,"ð"],[0,"ñ"],[0,"ò"],[0,"ó"],[0,"ô"],[0,"õ"],[0,"ö"],[0,"÷"],[0,"ø"],[0,"ù"],[0,"ú"],[0,"û"],[0,"ü"],[0,"ý"],[0,"þ"],[0,"ÿ"],[0,"Ā"],[0,"ā"],[0,"Ă"],[0,"ă"],[0,"Ą"],[0,"ą"],[0,"Ć"],[0,"ć"],[0,"Ĉ"],[0,"ĉ"],[0,"Ċ"],[0,"ċ"],[0,"Č"],[0,"č"],[0,"Ď"],[0,"ď"],[0,"Đ"],[0,"đ"],[0,"Ē"],[0,"ē"],[2,"Ė"],[0,"ė"],[0,"Ę"],[0,"ę"],[0,"Ě"],[0,"ě"],[0,"Ĝ"],[0,"ĝ"],[0,"Ğ"],[0,"ğ"],[0,"Ġ"],[0,"ġ"],[0,"Ģ"],[1,"Ĥ"],[0,"ĥ"],[0,"Ħ"],[0,"ħ"],[0,"Ĩ"],[0,"ĩ"],[0,"Ī"],[0,"ī"],[2,"Į"],[0,"į"],[0,"İ"],[0,"ı"],[0,"IJ"],[0,"ij"],[0,"Ĵ"],[0,"ĵ"],[0,"Ķ"],[0,"ķ"],[0,"ĸ"],[0,"Ĺ"],[0,"ĺ"],[0,"Ļ"],[0,"ļ"],[0,"Ľ"],[0,"ľ"],[0,"Ŀ"],[0,"ŀ"],[0,"Ł"],[0,"ł"],[0,"Ń"],[0,"ń"],[0,"Ņ"],[0,"ņ"],[0,"Ň"],[0,"ň"],[0,"ʼn"],[0,"Ŋ"],[0,"ŋ"],[0,"Ō"],[0,"ō"],[2,"Ő"],[0,"ő"],[0,"Œ"],[0,"œ"],[0,"Ŕ"],[0,"ŕ"],[0,"Ŗ"],[0,"ŗ"],[0,"Ř"],[0,"ř"],[0,"Ś"],[0,"ś"],[0,"Ŝ"],[0,"ŝ"],[0,"Ş"],[0,"ş"],[0,"Š"],[0,"š"],[0,"Ţ"],[0,"ţ"],[0,"Ť"],[0,"ť"],[0,"Ŧ"],[0,"ŧ"],[0,"Ũ"],[0,"ũ"],[0,"Ū"],[0,"ū"],[0,"Ŭ"],[0,"ŭ"],[0,"Ů"],[0,"ů"],[0,"Ű"],[0,"ű"],[0,"Ų"],[0,"ų"],[0,"Ŵ"],[0,"ŵ"],[0,"Ŷ"],[0,"ŷ"],[0,"Ÿ"],[0,"Ź"],[0,"ź"],[0,"Ż"],[0,"ż"],[0,"Ž"],[0,"ž"],[19,"ƒ"],[34,"Ƶ"],[63,"ǵ"],[65,"ȷ"],[142,"ˆ"],[0,"ˇ"],[16,"˘"],[0,"˙"],[0,"˚"],[0,"˛"],[0,"˜"],[0,"˝"],[51,"̑"],[127,"Α"],[0,"Β"],[0,"Γ"],[0,"Δ"],[0,"Ε"],[0,"Ζ"],[0,"Η"],[0,"Θ"],[0,"Ι"],[0,"Κ"],[0,"Λ"],[0,"Μ"],[0,"Ν"],[0,"Ξ"],[0,"Ο"],[0,"Π"],[0,"Ρ"],[1,"Σ"],[0,"Τ"],[0,"Υ"],[0,"Φ"],[0,"Χ"],[0,"Ψ"],[0,"Ω"],[7,"α"],[0,"β"],[0,"γ"],[0,"δ"],[0,"ε"],[0,"ζ"],[0,"η"],[0,"θ"],[0,"ι"],[0,"κ"],[0,"λ"],[0,"μ"],[0,"ν"],[0,"ξ"],[0,"ο"],[0,"π"],[0,"ρ"],[0,"ς"],[0,"σ"],[0,"τ"],[0,"υ"],[0,"φ"],[0,"χ"],[0,"ψ"],[0,"ω"],[7,"ϑ"],[0,"ϒ"],[2,"ϕ"],[0,"ϖ"],[5,"Ϝ"],[0,"ϝ"],[18,"ϰ"],[0,"ϱ"],[3,"ϵ"],[0,"϶"],[10,"Ё"],[0,"Ђ"],[0,"Ѓ"],[0,"Є"],[0,"Ѕ"],[0,"І"],[0,"Ї"],[0,"Ј"],[0,"Љ"],[0,"Њ"],[0,"Ћ"],[0,"Ќ"],[1,"Ў"],[0,"Џ"],[0,"А"],[0,"Б"],[0,"В"],[0,"Г"],[0,"Д"],[0,"Е"],[0,"Ж"],[0,"З"],[0,"И"],[0,"Й"],[0,"К"],[0,"Л"],[0,"М"],[0,"Н"],[0,"О"],[0,"П"],[0,"Р"],[0,"С"],[0,"Т"],[0,"У"],[0,"Ф"],[0,"Х"],[0,"Ц"],[0,"Ч"],[0,"Ш"],[0,"Щ"],[0,"Ъ"],[0,"Ы"],[0,"Ь"],[0,"Э"],[0,"Ю"],[0,"Я"],[0,"а"],[0,"б"],[0,"в"],[0,"г"],[0,"д"],[0,"е"],[0,"ж"],[0,"з"],[0,"и"],[0,"й"],[0,"к"],[0,"л"],[0,"м"],[0,"н"],[0,"о"],[0,"п"],[0,"р"],[0,"с"],[0,"т"],[0,"у"],[0,"ф"],[0,"х"],[0,"ц"],[0,"ч"],[0,"ш"],[0,"щ"],[0,"ъ"],[0,"ы"],[0,"ь"],[0,"э"],[0,"ю"],[0,"я"],[1,"ё"],[0,"ђ"],[0,"ѓ"],[0,"є"],[0,"ѕ"],[0,"і"],[0,"ї"],[0,"ј"],[0,"љ"],[0,"њ"],[0,"ћ"],[0,"ќ"],[1,"ў"],[0,"џ"],[7074," "],[0," "],[0," "],[0," "],[1," "],[0," "],[0," "],[0," "],[0,"​"],[0,"‌"],[0,"‍"],[0,"‎"],[0,"‏"],[0,"‐"],[2,"–"],[0,"—"],[0,"―"],[0,"‖"],[1,"‘"],[0,"’"],[0,"‚"],[1,"“"],[0,"”"],[0,"„"],[1,"†"],[0,"‡"],[0,"•"],[2,"‥"],[0,"…"],[9,"‰"],[0,"‱"],[0,"′"],[0,"″"],[0,"‴"],[0,"‵"],[3,"‹"],[0,"›"],[3,"‾"],[2,"⁁"],[1,"⁃"],[0,"⁄"],[10,"⁏"],[7,"⁗"],[7,{v:" ",n:8202,o:"  "}],[0,"⁠"],[0,"⁡"],[0,"⁢"],[0,"⁣"],[72,"€"],[46,"⃛"],[0,"⃜"],[37,"ℂ"],[2,"℅"],[4,"ℊ"],[0,"ℋ"],[0,"ℌ"],[0,"ℍ"],[0,"ℎ"],[0,"ℏ"],[0,"ℐ"],[0,"ℑ"],[0,"ℒ"],[0,"ℓ"],[1,"ℕ"],[0,"№"],[0,"℗"],[0,"℘"],[0,"ℙ"],[0,"ℚ"],[0,"ℛ"],[0,"ℜ"],[0,"ℝ"],[0,"℞"],[3,"™"],[1,"ℤ"],[2,"℧"],[0,"ℨ"],[0,"℩"],[2,"ℬ"],[0,"ℭ"],[1,"ℯ"],[0,"ℰ"],[0,"ℱ"],[1,"ℳ"],[0,"ℴ"],[0,"ℵ"],[0,"ℶ"],[0,"ℷ"],[0,"ℸ"],[12,"ⅅ"],[0,"ⅆ"],[0,"ⅇ"],[0,"ⅈ"],[10,"⅓"],[0,"⅔"],[0,"⅕"],[0,"⅖"],[0,"⅗"],[0,"⅘"],[0,"⅙"],[0,"⅚"],[0,"⅛"],[0,"⅜"],[0,"⅝"],[0,"⅞"],[49,"←"],[0,"↑"],[0,"→"],[0,"↓"],[0,"↔"],[0,"↕"],[0,"↖"],[0,"↗"],[0,"↘"],[0,"↙"],[0,"↚"],[0,"↛"],[1,{v:"↝",n:824,o:"↝̸"}],[0,"↞"],[0,"↟"],[0,"↠"],[0,"↡"],[0,"↢"],[0,"↣"],[0,"↤"],[0,"↥"],[0,"↦"],[0,"↧"],[1,"↩"],[0,"↪"],[0,"↫"],[0,"↬"],[0,"↭"],[0,"↮"],[1,"↰"],[0,"↱"],[0,"↲"],[0,"↳"],[1,"↵"],[0,"↶"],[0,"↷"],[2,"↺"],[0,"↻"],[0,"↼"],[0,"↽"],[0,"↾"],[0,"↿"],[0,"⇀"],[0,"⇁"],[0,"⇂"],[0,"⇃"],[0,"⇄"],[0,"⇅"],[0,"⇆"],[0,"⇇"],[0,"⇈"],[0,"⇉"],[0,"⇊"],[0,"⇋"],[0,"⇌"],[0,"⇍"],[0,"⇎"],[0,"⇏"],[0,"⇐"],[0,"⇑"],[0,"⇒"],[0,"⇓"],[0,"⇔"],[0,"⇕"],[0,"⇖"],[0,"⇗"],[0,"⇘"],[0,"⇙"],[0,"⇚"],[0,"⇛"],[1,"⇝"],[6,"⇤"],[0,"⇥"],[15,"⇵"],[7,"⇽"],[0,"⇾"],[0,"⇿"],[0,"∀"],[0,"∁"],[0,{v:"∂",n:824,o:"∂̸"}],[0,"∃"],[0,"∄"],[0,"∅"],[1,"∇"],[0,"∈"],[0,"∉"],[1,"∋"],[0,"∌"],[2,"∏"],[0,"∐"],[0,"∑"],[0,"−"],[0,"∓"],[0,"∔"],[1,"∖"],[0,"∗"],[0,"∘"],[1,"√"],[2,"∝"],[0,"∞"],[0,"∟"],[0,{v:"∠",n:8402,o:"∠⃒"}],[0,"∡"],[0,"∢"],[0,"∣"],[0,"∤"],[0,"∥"],[0,"∦"],[0,"∧"],[0,"∨"],[0,{v:"∩",n:65024,o:"∩︀"}],[0,{v:"∪",n:65024,o:"∪︀"}],[0,"∫"],[0,"∬"],[0,"∭"],[0,"∮"],[0,"∯"],[0,"∰"],[0,"∱"],[0,"∲"],[0,"∳"],[0,"∴"],[0,"∵"],[0,"∶"],[0,"∷"],[0,"∸"],[1,"∺"],[0,"∻"],[0,{v:"∼",n:8402,o:"∼⃒"}],[0,{v:"∽",n:817,o:"∽̱"}],[0,{v:"∾",n:819,o:"∾̳"}],[0,"∿"],[0,"≀"],[0,"≁"],[0,{v:"≂",n:824,o:"≂̸"}],[0,"≃"],[0,"≄"],[0,"≅"],[0,"≆"],[0,"≇"],[0,"≈"],[0,"≉"],[0,"≊"],[0,{v:"≋",n:824,o:"≋̸"}],[0,"≌"],[0,{v:"≍",n:8402,o:"≍⃒"}],[0,{v:"≎",n:824,o:"≎̸"}],[0,{v:"≏",n:824,o:"≏̸"}],[0,{v:"≐",n:824,o:"≐̸"}],[0,"≑"],[0,"≒"],[0,"≓"],[0,"≔"],[0,"≕"],[0,"≖"],[0,"≗"],[1,"≙"],[0,"≚"],[1,"≜"],[2,"≟"],[0,"≠"],[0,{v:"≡",n:8421,o:"≡⃥"}],[0,"≢"],[1,{v:"≤",n:8402,o:"≤⃒"}],[0,{v:"≥",n:8402,o:"≥⃒"}],[0,{v:"≦",n:824,o:"≦̸"}],[0,{v:"≧",n:824,o:"≧̸"}],[0,{v:"≨",n:65024,o:"≨︀"}],[0,{v:"≩",n:65024,o:"≩︀"}],[0,{v:"≪",n:new Map(Z9([[824,"≪̸"],[7577,"≪⃒"]]))}],[0,{v:"≫",n:new Map(Z9([[824,"≫̸"],[7577,"≫⃒"]]))}],[0,"≬"],[0,"≭"],[0,"≮"],[0,"≯"],[0,"≰"],[0,"≱"],[0,"≲"],[0,"≳"],[0,"≴"],[0,"≵"],[0,"≶"],[0,"≷"],[0,"≸"],[0,"≹"],[0,"≺"],[0,"≻"],[0,"≼"],[0,"≽"],[0,"≾"],[0,{v:"≿",n:824,o:"≿̸"}],[0,"⊀"],[0,"⊁"],[0,{v:"⊂",n:8402,o:"⊂⃒"}],[0,{v:"⊃",n:8402,o:"⊃⃒"}],[0,"⊄"],[0,"⊅"],[0,"⊆"],[0,"⊇"],[0,"⊈"],[0,"⊉"],[0,{v:"⊊",n:65024,o:"⊊︀"}],[0,{v:"⊋",n:65024,o:"⊋︀"}],[1,"⊍"],[0,"⊎"],[0,{v:"⊏",n:824,o:"⊏̸"}],[0,{v:"⊐",n:824,o:"⊐̸"}],[0,"⊑"],[0,"⊒"],[0,{v:"⊓",n:65024,o:"⊓︀"}],[0,{v:"⊔",n:65024,o:"⊔︀"}],[0,"⊕"],[0,"⊖"],[0,"⊗"],[0,"⊘"],[0,"⊙"],[0,"⊚"],[0,"⊛"],[1,"⊝"],[0,"⊞"],[0,"⊟"],[0,"⊠"],[0,"⊡"],[0,"⊢"],[0,"⊣"],[0,"⊤"],[0,"⊥"],[1,"⊧"],[0,"⊨"],[0,"⊩"],[0,"⊪"],[0,"⊫"],[0,"⊬"],[0,"⊭"],[0,"⊮"],[0,"⊯"],[0,"⊰"],[1,"⊲"],[0,"⊳"],[0,{v:"⊴",n:8402,o:"⊴⃒"}],[0,{v:"⊵",n:8402,o:"⊵⃒"}],[0,"⊶"],[0,"⊷"],[0,"⊸"],[0,"⊹"],[0,"⊺"],[0,"⊻"],[1,"⊽"],[0,"⊾"],[0,"⊿"],[0,"⋀"],[0,"⋁"],[0,"⋂"],[0,"⋃"],[0,"⋄"],[0,"⋅"],[0,"⋆"],[0,"⋇"],[0,"⋈"],[0,"⋉"],[0,"⋊"],[0,"⋋"],[0,"⋌"],[0,"⋍"],[0,"⋎"],[0,"⋏"],[0,"⋐"],[0,"⋑"],[0,"⋒"],[0,"⋓"],[0,"⋔"],[0,"⋕"],[0,"⋖"],[0,"⋗"],[0,{v:"⋘",n:824,o:"⋘̸"}],[0,{v:"⋙",n:824,o:"⋙̸"}],[0,{v:"⋚",n:65024,o:"⋚︀"}],[0,{v:"⋛",n:65024,o:"⋛︀"}],[2,"⋞"],[0,"⋟"],[0,"⋠"],[0,"⋡"],[0,"⋢"],[0,"⋣"],[2,"⋦"],[0,"⋧"],[0,"⋨"],[0,"⋩"],[0,"⋪"],[0,"⋫"],[0,"⋬"],[0,"⋭"],[0,"⋮"],[0,"⋯"],[0,"⋰"],[0,"⋱"],[0,"⋲"],[0,"⋳"],[0,"⋴"],[0,{v:"⋵",n:824,o:"⋵̸"}],[0,"⋶"],[0,"⋷"],[1,{v:"⋹",n:824,o:"⋹̸"}],[0,"⋺"],[0,"⋻"],[0,"⋼"],[0,"⋽"],[0,"⋾"],[6,"⌅"],[0,"⌆"],[1,"⌈"],[0,"⌉"],[0,"⌊"],[0,"⌋"],[0,"⌌"],[0,"⌍"],[0,"⌎"],[0,"⌏"],[0,"⌐"],[1,"⌒"],[0,"⌓"],[1,"⌕"],[0,"⌖"],[5,"⌜"],[0,"⌝"],[0,"⌞"],[0,"⌟"],[2,"⌢"],[0,"⌣"],[9,"⌭"],[0,"⌮"],[7,"⌶"],[6,"⌽"],[1,"⌿"],[60,"⍼"],[51,"⎰"],[0,"⎱"],[2,"⎴"],[0,"⎵"],[0,"⎶"],[37,"⏜"],[0,"⏝"],[0,"⏞"],[0,"⏟"],[2,"⏢"],[4,"⏧"],[59,"␣"],[164,"Ⓢ"],[55,"─"],[1,"│"],[9,"┌"],[3,"┐"],[3,"└"],[3,"┘"],[3,"├"],[7,"┤"],[7,"┬"],[7,"┴"],[7,"┼"],[19,"═"],[0,"║"],[0,"╒"],[0,"╓"],[0,"╔"],[0,"╕"],[0,"╖"],[0,"╗"],[0,"╘"],[0,"╙"],[0,"╚"],[0,"╛"],[0,"╜"],[0,"╝"],[0,"╞"],[0,"╟"],[0,"╠"],[0,"╡"],[0,"╢"],[0,"╣"],[0,"╤"],[0,"╥"],[0,"╦"],[0,"╧"],[0,"╨"],[0,"╩"],[0,"╪"],[0,"╫"],[0,"╬"],[19,"▀"],[3,"▄"],[3,"█"],[8,"░"],[0,"▒"],[0,"▓"],[13,"□"],[8,"▪"],[0,"▫"],[1,"▭"],[0,"▮"],[2,"▱"],[1,"△"],[0,"▴"],[0,"▵"],[2,"▸"],[0,"▹"],[3,"▽"],[0,"▾"],[0,"▿"],[2,"◂"],[0,"◃"],[6,"◊"],[0,"○"],[32,"◬"],[2,"◯"],[8,"◸"],[0,"◹"],[0,"◺"],[0,"◻"],[0,"◼"],[8,"★"],[0,"☆"],[7,"☎"],[49,"♀"],[1,"♂"],[29,"♠"],[2,"♣"],[1,"♥"],[0,"♦"],[3,"♪"],[2,"♭"],[0,"♮"],[0,"♯"],[163,"✓"],[3,"✗"],[8,"✠"],[21,"✶"],[33,"❘"],[25,"❲"],[0,"❳"],[84,"⟈"],[0,"⟉"],[28,"⟦"],[0,"⟧"],[0,"⟨"],[0,"⟩"],[0,"⟪"],[0,"⟫"],[0,"⟬"],[0,"⟭"],[7,"⟵"],[0,"⟶"],[0,"⟷"],[0,"⟸"],[0,"⟹"],[0,"⟺"],[1,"⟼"],[2,"⟿"],[258,"⤂"],[0,"⤃"],[0,"⤄"],[0,"⤅"],[6,"⤌"],[0,"⤍"],[0,"⤎"],[0,"⤏"],[0,"⤐"],[0,"⤑"],[0,"⤒"],[0,"⤓"],[2,"⤖"],[2,"⤙"],[0,"⤚"],[0,"⤛"],[0,"⤜"],[0,"⤝"],[0,"⤞"],[0,"⤟"],[0,"⤠"],[2,"⤣"],[0,"⤤"],[0,"⤥"],[0,"⤦"],[0,"⤧"],[0,"⤨"],[0,"⤩"],[0,"⤪"],[8,{v:"⤳",n:824,o:"⤳̸"}],[1,"⤵"],[0,"⤶"],[0,"⤷"],[0,"⤸"],[0,"⤹"],[2,"⤼"],[0,"⤽"],[7,"⥅"],[2,"⥈"],[0,"⥉"],[0,"⥊"],[0,"⥋"],[2,"⥎"],[0,"⥏"],[0,"⥐"],[0,"⥑"],[0,"⥒"],[0,"⥓"],[0,"⥔"],[0,"⥕"],[0,"⥖"],[0,"⥗"],[0,"⥘"],[0,"⥙"],[0,"⥚"],[0,"⥛"],[0,"⥜"],[0,"⥝"],[0,"⥞"],[0,"⥟"],[0,"⥠"],[0,"⥡"],[0,"⥢"],[0,"⥣"],[0,"⥤"],[0,"⥥"],[0,"⥦"],[0,"⥧"],[0,"⥨"],[0,"⥩"],[0,"⥪"],[0,"⥫"],[0,"⥬"],[0,"⥭"],[0,"⥮"],[0,"⥯"],[0,"⥰"],[0,"⥱"],[0,"⥲"],[0,"⥳"],[0,"⥴"],[0,"⥵"],[0,"⥶"],[1,"⥸"],[0,"⥹"],[1,"⥻"],[0,"⥼"],[0,"⥽"],[0,"⥾"],[0,"⥿"],[5,"⦅"],[0,"⦆"],[4,"⦋"],[0,"⦌"],[0,"⦍"],[0,"⦎"],[0,"⦏"],[0,"⦐"],[0,"⦑"],[0,"⦒"],[0,"⦓"],[0,"⦔"],[0,"⦕"],[0,"⦖"],[3,"⦚"],[1,"⦜"],[0,"⦝"],[6,"⦤"],[0,"⦥"],[0,"⦦"],[0,"⦧"],[0,"⦨"],[0,"⦩"],[0,"⦪"],[0,"⦫"],[0,"⦬"],[0,"⦭"],[0,"⦮"],[0,"⦯"],[0,"⦰"],[0,"⦱"],[0,"⦲"],[0,"⦳"],[0,"⦴"],[0,"⦵"],[0,"⦶"],[0,"⦷"],[1,"⦹"],[1,"⦻"],[0,"⦼"],[1,"⦾"],[0,"⦿"],[0,"⧀"],[0,"⧁"],[0,"⧂"],[0,"⧃"],[0,"⧄"],[0,"⧅"],[3,"⧉"],[3,"⧍"],[0,"⧎"],[0,{v:"⧏",n:824,o:"⧏̸"}],[0,{v:"⧐",n:824,o:"⧐̸"}],[11,"⧜"],[0,"⧝"],[0,"⧞"],[4,"⧣"],[0,"⧤"],[0,"⧥"],[5,"⧫"],[8,"⧴"],[1,"⧶"],[9,"⨀"],[0,"⨁"],[0,"⨂"],[1,"⨄"],[1,"⨆"],[5,"⨌"],[0,"⨍"],[2,"⨐"],[0,"⨑"],[0,"⨒"],[0,"⨓"],[0,"⨔"],[0,"⨕"],[0,"⨖"],[0,"⨗"],[10,"⨢"],[0,"⨣"],[0,"⨤"],[0,"⨥"],[0,"⨦"],[0,"⨧"],[1,"⨩"],[0,"⨪"],[2,"⨭"],[0,"⨮"],[0,"⨯"],[0,"⨰"],[0,"⨱"],[1,"⨳"],[0,"⨴"],[0,"⨵"],[0,"⨶"],[0,"⨷"],[0,"⨸"],[0,"⨹"],[0,"⨺"],[0,"⨻"],[0,"⨼"],[2,"⨿"],[0,"⩀"],[1,"⩂"],[0,"⩃"],[0,"⩄"],[0,"⩅"],[0,"⩆"],[0,"⩇"],[0,"⩈"],[0,"⩉"],[0,"⩊"],[0,"⩋"],[0,"⩌"],[0,"⩍"],[2,"⩐"],[2,"⩓"],[0,"⩔"],[0,"⩕"],[0,"⩖"],[0,"⩗"],[0,"⩘"],[1,"⩚"],[0,"⩛"],[0,"⩜"],[0,"⩝"],[1,"⩟"],[6,"⩦"],[3,"⩪"],[2,{v:"⩭",n:824,o:"⩭̸"}],[0,"⩮"],[0,"⩯"],[0,{v:"⩰",n:824,o:"⩰̸"}],[0,"⩱"],[0,"⩲"],[0,"⩳"],[0,"⩴"],[0,"⩵"],[1,"⩷"],[0,"⩸"],[0,"⩹"],[0,"⩺"],[0,"⩻"],[0,"⩼"],[0,{v:"⩽",n:824,o:"⩽̸"}],[0,{v:"⩾",n:824,o:"⩾̸"}],[0,"⩿"],[0,"⪀"],[0,"⪁"],[0,"⪂"],[0,"⪃"],[0,"⪄"],[0,"⪅"],[0,"⪆"],[0,"⪇"],[0,"⪈"],[0,"⪉"],[0,"⪊"],[0,"⪋"],[0,"⪌"],[0,"⪍"],[0,"⪎"],[0,"⪏"],[0,"⪐"],[0,"⪑"],[0,"⪒"],[0,"⪓"],[0,"⪔"],[0,"⪕"],[0,"⪖"],[0,"⪗"],[0,"⪘"],[0,"⪙"],[0,"⪚"],[2,"⪝"],[0,"⪞"],[0,"⪟"],[0,"⪠"],[0,{v:"⪡",n:824,o:"⪡̸"}],[0,{v:"⪢",n:824,o:"⪢̸"}],[1,"⪤"],[0,"⪥"],[0,"⪦"],[0,"⪧"],[0,"⪨"],[0,"⪩"],[0,"⪪"],[0,"⪫"],[0,{v:"⪬",n:65024,o:"⪬︀"}],[0,{v:"⪭",n:65024,o:"⪭︀"}],[0,"⪮"],[0,{v:"⪯",n:824,o:"⪯̸"}],[0,{v:"⪰",n:824,o:"⪰̸"}],[2,"⪳"],[0,"⪴"],[0,"⪵"],[0,"⪶"],[0,"⪷"],[0,"⪸"],[0,"⪹"],[0,"⪺"],[0,"⪻"],[0,"⪼"],[0,"⪽"],[0,"⪾"],[0,"⪿"],[0,"⫀"],[0,"⫁"],[0,"⫂"],[0,"⫃"],[0,"⫄"],[0,{v:"⫅",n:824,o:"⫅̸"}],[0,{v:"⫆",n:824,o:"⫆̸"}],[0,"⫇"],[0,"⫈"],[2,{v:"⫋",n:65024,o:"⫋︀"}],[0,{v:"⫌",n:65024,o:"⫌︀"}],[2,"⫏"],[0,"⫐"],[0,"⫑"],[0,"⫒"],[0,"⫓"],[0,"⫔"],[0,"⫕"],[0,"⫖"],[0,"⫗"],[0,"⫘"],[0,"⫙"],[0,"⫚"],[0,"⫛"],[8,"⫤"],[1,"⫦"],[0,"⫧"],[0,"⫨"],[0,"⫩"],[1,"⫫"],[0,"⫬"],[0,"⫭"],[0,"⫮"],[0,"⫯"],[0,"⫰"],[0,"⫱"],[0,"⫲"],[0,"⫳"],[9,{v:"⫽",n:8421,o:"⫽⃥"}],[44343,{n:new Map(Z9([[56476,"𝒜"],[1,"𝒞"],[0,"𝒟"],[2,"𝒢"],[2,"𝒥"],[0,"𝒦"],[2,"𝒩"],[0,"𝒪"],[0,"𝒫"],[0,"𝒬"],[1,"𝒮"],[0,"𝒯"],[0,"𝒰"],[0,"𝒱"],[0,"𝒲"],[0,"𝒳"],[0,"𝒴"],[0,"𝒵"],[0,"𝒶"],[0,"𝒷"],[0,"𝒸"],[0,"𝒹"],[1,"𝒻"],[1,"𝒽"],[0,"𝒾"],[0,"𝒿"],[0,"𝓀"],[0,"𝓁"],[0,"𝓂"],[0,"𝓃"],[1,"𝓅"],[0,"𝓆"],[0,"𝓇"],[0,"𝓈"],[0,"𝓉"],[0,"𝓊"],[0,"𝓋"],[0,"𝓌"],[0,"𝓍"],[0,"𝓎"],[0,"𝓏"],[52,"𝔄"],[0,"𝔅"],[1,"𝔇"],[0,"𝔈"],[0,"𝔉"],[0,"𝔊"],[2,"𝔍"],[0,"𝔎"],[0,"𝔏"],[0,"𝔐"],[0,"𝔑"],[0,"𝔒"],[0,"𝔓"],[0,"𝔔"],[1,"𝔖"],[0,"𝔗"],[0,"𝔘"],[0,"𝔙"],[0,"𝔚"],[0,"𝔛"],[0,"𝔜"],[1,"𝔞"],[0,"𝔟"],[0,"𝔠"],[0,"𝔡"],[0,"𝔢"],[0,"𝔣"],[0,"𝔤"],[0,"𝔥"],[0,"𝔦"],[0,"𝔧"],[0,"𝔨"],[0,"𝔩"],[0,"𝔪"],[0,"𝔫"],[0,"𝔬"],[0,"𝔭"],[0,"𝔮"],[0,"𝔯"],[0,"𝔰"],[0,"𝔱"],[0,"𝔲"],[0,"𝔳"],[0,"𝔴"],[0,"𝔵"],[0,"𝔶"],[0,"𝔷"],[0,"𝔸"],[0,"𝔹"],[1,"𝔻"],[0,"𝔼"],[0,"𝔽"],[0,"𝔾"],[1,"𝕀"],[0,"𝕁"],[0,"𝕂"],[0,"𝕃"],[0,"𝕄"],[1,"𝕆"],[3,"𝕊"],[0,"𝕋"],[0,"𝕌"],[0,"𝕍"],[0,"𝕎"],[0,"𝕏"],[0,"𝕐"],[1,"𝕒"],[0,"𝕓"],[0,"𝕔"],[0,"𝕕"],[0,"𝕖"],[0,"𝕗"],[0,"𝕘"],[0,"𝕙"],[0,"𝕚"],[0,"𝕛"],[0,"𝕜"],[0,"𝕝"],[0,"𝕞"],[0,"𝕟"],[0,"𝕠"],[0,"𝕡"],[0,"𝕢"],[0,"𝕣"],[0,"𝕤"],[0,"𝕥"],[0,"𝕦"],[0,"𝕧"],[0,"𝕨"],[0,"𝕩"],[0,"𝕪"],[0,"𝕫"]]))}],[8906,"ff"],[0,"fi"],[0,"fl"],[0,"ffi"],[0,"ffl"]]))});var G9=O((P1)=>{Object.defineProperty(P1,"__esModule",{value:!0});P1.escapeText=P1.escapeAttribute=P1.escapeUTF8=P1.escape=P1.encodeXML=P1.getCodePoint=P1.xmlReplacer=void 0;P1.xmlReplacer=/["&'<>$\x80-\uFFFF]/g;var NQ=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);P1.getCodePoint=String.prototype.codePointAt!=null?function($,Z){return $.codePointAt(Z)}:function($,Z){return($.charCodeAt(Z)&64512)===55296?($.charCodeAt(Z)-55296)*1024+$.charCodeAt(Z+1)-56320+65536:$.charCodeAt(Z)};function BQ($){var Z="",G=0,J;while((J=P1.xmlReplacer.exec($))!==null){var X=J.index,Y=$.charCodeAt(X),H=NQ.get(Y);if(H!==void 0)Z+=$.substring(G,X)+H,G=X+1;else Z+="".concat($.substring(G,X),"&#x").concat((0,P1.getCodePoint)($,X).toString(16),";"),G=P1.xmlReplacer.lastIndex+=Number((Y&64512)===55296)}return Z+$.substr(G)}P1.encodeXML=BQ;P1.escape=BQ;function dZ($,Z){return function(J){var X,Y=0,H="";while(X=$.exec(J)){if(Y!==X.index)H+=J.substring(Y,X.index);H+=Z.get(X[0].charCodeAt(0)),Y=X.index+1}return H+J.substring(Y)}}P1.escapeUTF8=dZ(/[&<>'"]/g,NQ);P1.escapeAttribute=dZ(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]]));P1.escapeText=dZ(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]]))});var rZ=O((R5)=>{var WB=R5&&R5.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(R5,"__esModule",{value:!0});R5.encodeNonAsciiHTML=R5.encodeHTML=void 0;var LB=WB(AQ()),VQ=G9(),zB=/[\t\n!-,./:-@[-`\f{-}$\x80-\uFFFF]/g;function AB($){return FQ(zB,$)}R5.encodeHTML=AB;function NB($){return FQ(VQ.xmlReplacer,$)}R5.encodeNonAsciiHTML=NB;function FQ($,Z){var G="",J=0,X;while((X=$.exec(Z))!==null){var Y=X.index;G+=Z.substring(J,Y);var H=Z.charCodeAt(Y),Q=LB.default.get(H);if(typeof Q==="object"){if(Y+1<Z.length){var q=Z.charCodeAt(Y+1),U=typeof Q.n==="number"?Q.n===q?Q.o:void 0:Q.n.get(q);if(U!==void 0){G+=U,J=$.lastIndex+=1;continue}}Q=Q.v}if(Q!==void 0)G+=Q,J=Y+1;else{var K=(0,VQ.getCodePoint)(Z,Y);G+="&#x".concat(K.toString(16),";"),J=$.lastIndex+=Number(K!==H)}}return G+Z.substr(J)}});var MQ=O((v)=>{Object.defineProperty(v,"__esModule",{value:!0});v.decodeXMLStrict=v.decodeHTML5Strict=v.decodeHTML4Strict=v.decodeHTML5=v.decodeHTML4=v.decodeHTMLAttribute=v.decodeHTMLStrict=v.decodeHTML=v.decodeXML=v.DecodingMode=v.EntityDecoder=v.encodeHTML5=v.encodeHTML4=v.encodeNonAsciiHTML=v.encodeHTML=v.escapeText=v.escapeAttribute=v.escapeUTF8=v.escape=v.encodeXML=v.encode=v.decodeStrict=v.decode=v.EncodingMode=v.EntityLevel=void 0;var aZ=iZ(),RQ=rZ(),J9=G9(),E6;(function($){$[$.XML=0]="XML",$[$.HTML=1]="HTML"})(E6=v.EntityLevel||(v.EntityLevel={}));var j7;(function($){$[$.UTF8=0]="UTF8",$[$.ASCII=1]="ASCII",$[$.Extensive=2]="Extensive",$[$.Attribute=3]="Attribute",$[$.Text=4]="Text"})(j7=v.EncodingMode||(v.EncodingMode={}));function OQ($,Z){if(Z===void 0)Z=E6.XML;var G=typeof Z==="number"?Z:Z.level;if(G===E6.HTML){var J=typeof Z==="object"?Z.mode:void 0;return(0,aZ.decodeHTML)($,J)}return(0,aZ.decodeXML)($)}v.decode=OQ;function BB($,Z){var G;if(Z===void 0)Z=E6.XML;var J=typeof Z==="number"?{level:Z}:Z;return(G=J.mode)!==null&&G!==void 0||(J.mode=aZ.DecodingMode.Strict),OQ($,J)}v.decodeStrict=BB;function VB($,Z){if(Z===void 0)Z=E6.XML;var G=typeof Z==="number"?{level:Z}:Z;if(G.mode===j7.UTF8)return(0,J9.escapeUTF8)($);if(G.mode===j7.Attribute)return(0,J9.escapeAttribute)($);if(G.mode===j7.Text)return(0,J9.escapeText)($);if(G.level===E6.HTML){if(G.mode===j7.ASCII)return(0,RQ.encodeNonAsciiHTML)($);return(0,RQ.encodeHTML)($)}return(0,J9.encodeXML)($)}v.encode=VB;var S7=G9();Object.defineProperty(v,"encodeXML",{enumerable:!0,get:function(){return S7.encodeXML}});Object.defineProperty(v,"escape",{enumerable:!0,get:function(){return S7.escape}});Object.defineProperty(v,"escapeUTF8",{enumerable:!0,get:function(){return S7.escapeUTF8}});Object.defineProperty(v,"escapeAttribute",{enumerable:!0,get:function(){return S7.escapeAttribute}});Object.defineProperty(v,"escapeText",{enumerable:!0,get:function(){return S7.escapeText}});var X9=rZ();Object.defineProperty(v,"encodeHTML",{enumerable:!0,get:function(){return X9.encodeHTML}});Object.defineProperty(v,"encodeNonAsciiHTML",{enumerable:!0,get:function(){return X9.encodeNonAsciiHTML}});Object.defineProperty(v,"encodeHTML4",{enumerable:!0,get:function(){return X9.encodeHTML}});Object.defineProperty(v,"encodeHTML5",{enumerable:!0,get:function(){return X9.encodeHTML}});var S0=iZ();Object.defineProperty(v,"EntityDecoder",{enumerable:!0,get:function(){return S0.EntityDecoder}});Object.defineProperty(v,"DecodingMode",{enumerable:!0,get:function(){return S0.DecodingMode}});Object.defineProperty(v,"decodeXML",{enumerable:!0,get:function(){return S0.decodeXML}});Object.defineProperty(v,"decodeHTML",{enumerable:!0,get:function(){return S0.decodeHTML}});Object.defineProperty(v,"decodeHTMLStrict",{enumerable:!0,get:function(){return S0.decodeHTMLStrict}});Object.defineProperty(v,"decodeHTMLAttribute",{enumerable:!0,get:function(){return S0.decodeHTMLAttribute}});Object.defineProperty(v,"decodeHTML4",{enumerable:!0,get:function(){return S0.decodeHTML}});Object.defineProperty(v,"decodeHTML5",{enumerable:!0,get:function(){return S0.decodeHTML}});Object.defineProperty(v,"decodeHTML4Strict",{enumerable:!0,get:function(){return S0.decodeHTMLStrict}});Object.defineProperty(v,"decodeHTML5Strict",{enumerable:!0,get:function(){return S0.decodeHTMLStrict}});Object.defineProperty(v,"decodeXMLStrict",{enumerable:!0,get:function(){return S0.decodeXML}})});var DQ=O((j6)=>{Object.defineProperty(j6,"__esModule",{value:!0});j6.attributeNames=j6.elementNames=void 0;j6.elementNames=new Map(["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($){return[$.toLowerCase(),$]}));j6.attributeNames=new Map(["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($){return[$.toLowerCase(),$]}))});var TQ=O((H0)=>{var S6=H0&&H0.__assign||function(){return S6=Object.assign||function($){for(var Z,G=1,J=arguments.length;G<J;G++){Z=arguments[G];for(var X in Z)if(Object.prototype.hasOwnProperty.call(Z,X))$[X]=Z[X]}return $},S6.apply(this,arguments)},FB=H0&&H0.__createBinding||(Object.create?function($,Z,G,J){if(J===void 0)J=G;var X=Object.getOwnPropertyDescriptor(Z,G);if(!X||("get"in X?!Z.__esModule:X.writable||X.configurable))X={enumerable:!0,get:function(){return Z[G]}};Object.defineProperty($,J,X)}:function($,Z,G,J){if(J===void 0)J=G;$[J]=Z[G]}),RB=H0&&H0.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),OB=H0&&H0.__importStar||function($){if($&&$.__esModule)return $;var Z={};if($!=null){for(var G in $)if(G!=="default"&&Object.prototype.hasOwnProperty.call($,G))FB(Z,$,G)}return RB(Z,$),Z};Object.defineProperty(H0,"__esModule",{value:!0});H0.render=void 0;var Z5=OB(P6()),Y9=MQ(),PQ=DQ(),MB=new Set(["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"]);function DB($){return $.replace(/"/g,""")}function IB($,Z){var G;if(!$)return;var J=((G=Z.encodeEntities)!==null&&G!==void 0?G:Z.decodeEntities)===!1?DB:Z.xmlMode||Z.encodeEntities!=="utf8"?Y9.encodeXML:Y9.escapeAttribute;return Object.keys($).map(function(X){var Y,H,Q=(Y=$[X])!==null&&Y!==void 0?Y:"";if(Z.xmlMode==="foreign")X=(H=PQ.attributeNames.get(X))!==null&&H!==void 0?H:X;if(!Z.emptyAttrs&&!Z.xmlMode&&Q==="")return X;return"".concat(X,'="').concat(J(Q),'"')}).join(" ")}var IQ=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]);function H9($,Z){if(Z===void 0)Z={};var G="length"in $?$:[$],J="";for(var X=0;X<G.length;X++)J+=PB(G[X],Z);return J}H0.render=H9;H0.default=H9;function PB($,Z){switch($.type){case Z5.Root:return H9($.children,Z);case Z5.Doctype:case Z5.Directive:return jB($);case Z5.Comment:return CB($);case Z5.CDATA:return _B($);case Z5.Script:case Z5.Style:case Z5.Tag:return EB($,Z);case Z5.Text:return SB($,Z)}}var TB=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),wB=new Set(["svg","math"]);function EB($,Z){var G;if(Z.xmlMode==="foreign"){if($.name=(G=PQ.elementNames.get($.name))!==null&&G!==void 0?G:$.name,$.parent&&TB.has($.parent.name))Z=S6(S6({},Z),{xmlMode:!1})}if(!Z.xmlMode&&wB.has($.name))Z=S6(S6({},Z),{xmlMode:"foreign"});var J="<".concat($.name),X=IB($.attribs,Z);if(X)J+=" ".concat(X);if($.children.length===0&&(Z.xmlMode?Z.selfClosingTags!==!1:Z.selfClosingTags&&IQ.has($.name))){if(!Z.xmlMode)J+=" ";J+="/>"}else{if(J+=">",$.children.length>0)J+=H9($.children,Z);if(Z.xmlMode||!IQ.has($.name))J+="</".concat($.name,">")}return J}function jB($){return"<".concat($.data,">")}function SB($,Z){var G,J=$.data||"";if(((G=Z.encodeEntities)!==null&&G!==void 0?G:Z.decodeEntities)!==!1&&!(!Z.xmlMode&&$.parent&&MB.has($.parent.name)))J=Z.xmlMode||Z.encodeEntities!=="utf8"?(0,Y9.encodeXML)(J):(0,Y9.escapeText)(J);return J}function _B($){return"<![CDATA[".concat($.children[0].data,"]]>")}function CB($){return"<!--".concat($.data,"-->")}});var oZ=O((G5)=>{var gB=G5&&G5.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(G5,"__esModule",{value:!0});G5.getOuterHTML=wQ;G5.getInnerHTML=xB;G5.getText=Q9;G5.textContent=nZ;G5.innerText=sZ;var f0=E0(),yB=gB(TQ()),vB=P6();function wQ($,Z){return(0,yB.default)($,Z)}function xB($,Z){return(0,f0.hasChildren)($)?$.children.map(function(G){return wQ(G,Z)}).join(""):""}function Q9($){if(Array.isArray($))return $.map(Q9).join("");if((0,f0.isTag)($))return $.name==="br"?`
|
|
13
|
-
`:Q9($.children);if((0,f0.isCDATA)($))return Q9($.children);if((0,f0.isText)($))return $.data;return""}function nZ($){if(Array.isArray($))return $.map(nZ).join("");if((0,f0.hasChildren)($)&&!(0,f0.isComment)($))return nZ($.children);if((0,f0.isText)($))return $.data;return""}function sZ($){if(Array.isArray($))return $.map(sZ).join("");if((0,f0.hasChildren)($)&&($.type===vB.ElementType.Tag||(0,f0.isCDATA)($)))return sZ($.children);if((0,f0.isText)($))return $.data;return""}});var SQ=O((u0)=>{Object.defineProperty(u0,"__esModule",{value:!0});u0.getChildren=EQ;u0.getParent=jQ;u0.getSiblings=hB;u0.getAttributeValue=bB;u0.hasAttrib=kB;u0.getName=mB;u0.nextElementSibling=fB;u0.prevElementSibling=uB;var tZ=E0();function EQ($){return(0,tZ.hasChildren)($)?$.children:[]}function jQ($){return $.parent||null}function hB($){var Z,G,J=jQ($);if(J!=null)return EQ(J);var X=[$],Y=$.prev,H=$.next;while(Y!=null)X.unshift(Y),Z=Y,Y=Z.prev;while(H!=null)X.push(H),G=H,H=G.next;return X}function bB($,Z){var G;return(G=$.attribs)===null||G===void 0?void 0:G[Z]}function kB($,Z){return $.attribs!=null&&Object.prototype.hasOwnProperty.call($.attribs,Z)&&$.attribs[Z]!=null}function mB($){return $.name}function fB($){var Z,G=$.next;while(G!==null&&!(0,tZ.isTag)(G))Z=G,G=Z.next;return G}function uB($){var Z,G=$.prev;while(G!==null&&!(0,tZ.isTag)(G))Z=G,G=Z.prev;return G}});var _Q=O((O5)=>{Object.defineProperty(O5,"__esModule",{value:!0});O5.removeElement=_7;O5.replaceElement=pB;O5.appendChild=lB;O5.append=iB;O5.prependChild=cB;O5.prepend=dB;function _7($){if($.prev)$.prev.next=$.next;if($.next)$.next.prev=$.prev;if($.parent){var Z=$.parent.children,G=Z.lastIndexOf($);if(G>=0)Z.splice(G,1)}$.next=null,$.prev=null,$.parent=null}function pB($,Z){var G=Z.prev=$.prev;if(G)G.next=Z;var J=Z.next=$.next;if(J)J.prev=Z;var X=Z.parent=$.parent;if(X){var Y=X.children;Y[Y.lastIndexOf($)]=Z,$.parent=null}}function lB($,Z){if(_7(Z),Z.next=null,Z.parent=$,$.children.push(Z)>1){var G=$.children[$.children.length-2];G.next=Z,Z.prev=G}else Z.prev=null}function iB($,Z){_7(Z);var{parent:G,next:J}=$;if(Z.next=J,Z.prev=$,$.next=Z,Z.parent=G,J){if(J.prev=Z,G){var X=G.children;X.splice(X.lastIndexOf(J),0,Z)}}else if(G)G.children.push(Z)}function cB($,Z){if(_7(Z),Z.parent=$,Z.prev=null,$.children.unshift(Z)!==1){var G=$.children[1];G.prev=Z,Z.next=G}else Z.next=null}function dB($,Z){_7(Z);var G=$.parent;if(G){var J=G.children;J.splice(J.indexOf($),0,Z)}if($.prev)$.prev.next=Z;Z.parent=G,Z.prev=$.prev,Z.next=$,$.prev=Z}});var eZ=O((M5)=>{Object.defineProperty(M5,"__esModule",{value:!0});M5.filter=rB;M5.find=CQ;M5.findOneChild=aB;M5.findOne=gQ;M5.existsOne=yQ;M5.findAll=nB;var d5=E0();function rB($,Z,G,J){if(G===void 0)G=!0;if(J===void 0)J=1/0;return CQ($,Array.isArray(Z)?Z:[Z],G,J)}function CQ($,Z,G,J){var X=[],Y=[Array.isArray(Z)?Z:[Z]],H=[0];for(;;){if(H[0]>=Y[0].length){if(H.length===1)return X;Y.shift(),H.shift();continue}var Q=Y[0][H[0]++];if($(Q)){if(X.push(Q),--J<=0)return X}if(G&&(0,d5.hasChildren)(Q)&&Q.children.length>0)H.unshift(0),Y.unshift(Q.children)}}function aB($,Z){return Z.find($)}function gQ($,Z,G){if(G===void 0)G=!0;var J=Array.isArray(Z)?Z:[Z];for(var X=0;X<J.length;X++){var Y=J[X];if((0,d5.isTag)(Y)&&$(Y))return Y;if(G&&(0,d5.hasChildren)(Y)&&Y.children.length>0){var H=gQ($,Y.children,!0);if(H)return H}}return null}function yQ($,Z){return(Array.isArray(Z)?Z:[Z]).some(function(G){return(0,d5.isTag)(G)&&$(G)||(0,d5.hasChildren)(G)&&yQ($,G.children)})}function nB($,Z){var G=[],J=[Array.isArray(Z)?Z:[Z]],X=[0];for(;;){if(X[0]>=J[0].length){if(J.length===1)return G;J.shift(),X.shift();continue}var Y=J[0][X[0]++];if((0,d5.isTag)(Y)&&$(Y))G.push(Y);if((0,d5.hasChildren)(Y)&&Y.children.length>0)X.unshift(0),J.unshift(Y.children)}}});var ZG=O((D5)=>{Object.defineProperty(D5,"__esModule",{value:!0});D5.testElement=oB;D5.getElements=tB;D5.getElementById=eB;D5.getElementsByTagName=$V;D5.getElementsByClassName=ZV;D5.getElementsByTagType=GV;var r5=E0(),C7=eZ(),q9={tag_name:function($){if(typeof $==="function")return function(Z){return(0,r5.isTag)(Z)&&$(Z.name)};else if($==="*")return r5.isTag;return function(Z){return(0,r5.isTag)(Z)&&Z.name===$}},tag_type:function($){if(typeof $==="function")return function(Z){return $(Z.type)};return function(Z){return Z.type===$}},tag_contains:function($){if(typeof $==="function")return function(Z){return(0,r5.isText)(Z)&&$(Z.data)};return function(Z){return(0,r5.isText)(Z)&&Z.data===$}}};function $G($,Z){if(typeof Z==="function")return function(G){return(0,r5.isTag)(G)&&Z(G.attribs[$])};return function(G){return(0,r5.isTag)(G)&&G.attribs[$]===Z}}function sB($,Z){return function(G){return $(G)||Z(G)}}function vQ($){var Z=Object.keys($).map(function(G){var J=$[G];return Object.prototype.hasOwnProperty.call(q9,G)?q9[G](J):$G(G,J)});return Z.length===0?null:Z.reduce(sB)}function oB($,Z){var G=vQ($);return G?G(Z):!0}function tB($,Z,G,J){if(J===void 0)J=1/0;var X=vQ($);return X?(0,C7.filter)(X,Z,G,J):[]}function eB($,Z,G){if(G===void 0)G=!0;if(!Array.isArray(Z))Z=[Z];return(0,C7.findOne)($G("id",$),Z,G)}function $V($,Z,G,J){if(G===void 0)G=!0;if(J===void 0)J=1/0;return(0,C7.filter)(q9.tag_name($),Z,G,J)}function ZV($,Z,G,J){if(G===void 0)G=!0;if(J===void 0)J=1/0;return(0,C7.filter)($G("class",$),Z,G,J)}function GV($,Z,G,J){if(G===void 0)G=!0;if(J===void 0)J=1/0;return(0,C7.filter)(q9.tag_type($),Z,G,J)}});var bQ=O((a5)=>{Object.defineProperty(a5,"__esModule",{value:!0});a5.DocumentPosition=void 0;a5.removeSubsets=JV;a5.compareDocumentPosition=hQ;a5.uniqueSort=XV;var xQ=E0();function JV($){var Z=$.length;while(--Z>=0){var G=$[Z];if(Z>0&&$.lastIndexOf(G,Z-1)>=0){$.splice(Z,1);continue}for(var J=G.parent;J;J=J.parent)if($.includes(J)){$.splice(Z,1);break}}return $}var _0;(function($){$[$.DISCONNECTED=1]="DISCONNECTED",$[$.PRECEDING=2]="PRECEDING",$[$.FOLLOWING=4]="FOLLOWING",$[$.CONTAINS=8]="CONTAINS",$[$.CONTAINED_BY=16]="CONTAINED_BY"})(_0||(a5.DocumentPosition=_0={}));function hQ($,Z){var G=[],J=[];if($===Z)return 0;var X=(0,xQ.hasChildren)($)?$:$.parent;while(X)G.unshift(X),X=X.parent;X=(0,xQ.hasChildren)(Z)?Z:Z.parent;while(X)J.unshift(X),X=X.parent;var Y=Math.min(G.length,J.length),H=0;while(H<Y&&G[H]===J[H])H++;if(H===0)return _0.DISCONNECTED;var Q=G[H-1],q=Q.children,U=G[H],K=J[H];if(q.indexOf(U)>q.indexOf(K)){if(Q===Z)return _0.FOLLOWING|_0.CONTAINED_BY;return _0.FOLLOWING}if(Q===$)return _0.PRECEDING|_0.CONTAINS;return _0.PRECEDING}function XV($){return $=$.filter(function(Z,G,J){return!J.includes(Z,G+1)}),$.sort(function(Z,G){var J=hQ(Z,G);if(J&_0.PRECEDING)return-1;else if(J&_0.FOLLOWING)return 1;return 0}),$}});var mQ=O((GG)=>{Object.defineProperty(GG,"__esModule",{value:!0});GG.getFeed=HV;var YV=oZ(),g7=ZG();function HV($){var Z=K9(WV,$);return!Z?null:Z.name==="feed"?QV(Z):qV(Z)}function QV($){var Z,G=$.children,J={type:"atom",items:(0,g7.getElementsByTagName)("entry",G).map(function(H){var Q,q=H.children,U={media:kQ(q)};t1(U,"id","id",q),t1(U,"title","title",q);var K=(Q=K9("link",q))===null||Q===void 0?void 0:Q.attribs.href;if(K)U.link=K;var W=I5("summary",q)||I5("content",q);if(W)U.description=W;var z=I5("updated",q);if(z)U.pubDate=new Date(z);return U})};t1(J,"id","id",G),t1(J,"title","title",G);var X=(Z=K9("link",G))===null||Z===void 0?void 0:Z.attribs.href;if(X)J.link=X;t1(J,"description","subtitle",G);var Y=I5("updated",G);if(Y)J.updated=new Date(Y);return t1(J,"author","email",G,!0),J}function qV($){var Z,G,J=(G=(Z=K9("channel",$.children))===null||Z===void 0?void 0:Z.children)!==null&&G!==void 0?G:[],X={type:$.name.substr(0,3),id:"",items:(0,g7.getElementsByTagName)("item",$.children).map(function(H){var Q=H.children,q={media:kQ(Q)};t1(q,"id","guid",Q),t1(q,"title","title",Q),t1(q,"link","link",Q),t1(q,"description","description",Q);var U=I5("pubDate",Q)||I5("dc:date",Q);if(U)q.pubDate=new Date(U);return q})};t1(X,"title","title",J),t1(X,"link","link",J),t1(X,"description","description",J);var Y=I5("lastBuildDate",J);if(Y)X.updated=new Date(Y);return t1(X,"author","managingEditor",J,!0),X}var KV=["url","type","lang"],UV=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function kQ($){return(0,g7.getElementsByTagName)("media:content",$).map(function(Z){var G=Z.attribs,J={medium:G.medium,isDefault:!!G.isDefault};for(var X=0,Y=KV;X<Y.length;X++){var H=Y[X];if(G[H])J[H]=G[H]}for(var Q=0,q=UV;Q<q.length;Q++){var H=q[Q];if(G[H])J[H]=parseInt(G[H],10)}if(G.expression)J.expression=G.expression;return J})}function K9($,Z){return(0,g7.getElementsByTagName)($,Z,!0,1)[0]}function I5($,Z,G){if(G===void 0)G=!1;return(0,YV.textContent)((0,g7.getElementsByTagName)($,Z,G,1)).trim()}function t1($,Z,G,J,X){if(X===void 0)X=!1;var Y=I5(G,J,X);if(Y)$[Z]=Y}function WV($){return $==="rss"||$==="feed"||$==="rdf:RDF"}});var U9=O((L1)=>{var LV=L1&&L1.__createBinding||(Object.create?function($,Z,G,J){if(J===void 0)J=G;var X=Object.getOwnPropertyDescriptor(Z,G);if(!X||("get"in X?!Z.__esModule:X.writable||X.configurable))X={enumerable:!0,get:function(){return Z[G]}};Object.defineProperty($,J,X)}:function($,Z,G,J){if(J===void 0)J=G;$[J]=Z[G]}),n5=L1&&L1.__exportStar||function($,Z){for(var G in $)if(G!=="default"&&!Object.prototype.hasOwnProperty.call(Z,G))LV(Z,$,G)};Object.defineProperty(L1,"__esModule",{value:!0});L1.hasChildren=L1.isDocument=L1.isComment=L1.isText=L1.isCDATA=L1.isTag=void 0;n5(oZ(),L1);n5(SQ(),L1);n5(_Q(),L1);n5(eZ(),L1);n5(ZG(),L1);n5(bQ(),L1);n5(mQ(),L1);var _6=E0();Object.defineProperty(L1,"isTag",{enumerable:!0,get:function(){return _6.isTag}});Object.defineProperty(L1,"isCDATA",{enumerable:!0,get:function(){return _6.isCDATA}});Object.defineProperty(L1,"isText",{enumerable:!0,get:function(){return _6.isText}});Object.defineProperty(L1,"isComment",{enumerable:!0,get:function(){return _6.isComment}});Object.defineProperty(L1,"isDocument",{enumerable:!0,get:function(){return _6.isDocument}});Object.defineProperty(L1,"hasChildren",{enumerable:!0,get:function(){return _6.hasChildren}})});var cQ=O(($1)=>{var zV=$1&&$1.__createBinding||(Object.create?function($,Z,G,J){if(J===void 0)J=G;var X=Object.getOwnPropertyDescriptor(Z,G);if(!X||("get"in X?!Z.__esModule:X.writable||X.configurable))X={enumerable:!0,get:function(){return Z[G]}};Object.defineProperty($,J,X)}:function($,Z,G,J){if(J===void 0)J=G;$[J]=Z[G]}),AV=$1&&$1.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),fQ=$1&&$1.__importStar||function(){var $=function(Z){return $=Object.getOwnPropertyNames||function(G){var J=[];for(var X in G)if(Object.prototype.hasOwnProperty.call(G,X))J[J.length]=X;return J},$(Z)};return function(Z){if(Z&&Z.__esModule)return Z;var G={};if(Z!=null){for(var J=$(Z),X=0;X<J.length;X++)if(J[X]!=="default")zV(G,Z,J[X])}return AV(G,Z),G}}(),NV=$1&&$1.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty($1,"__esModule",{value:!0});$1.DomUtils=$1.getFeed=$1.ElementType=$1.QuoteType=$1.Tokenizer=$1.DefaultHandler=$1.DomHandler=$1.Parser=void 0;$1.parseDocument=pQ;$1.parseDOM=lQ;$1.createDocumentStream=VV;$1.createDomStream=FV;$1.parseFeed=DV;var JG=hZ(),BV=hZ();Object.defineProperty($1,"Parser",{enumerable:!0,get:function(){return BV.Parser}});var XG=E0(),uQ=E0();Object.defineProperty($1,"DomHandler",{enumerable:!0,get:function(){return uQ.DomHandler}});Object.defineProperty($1,"DefaultHandler",{enumerable:!0,get:function(){return uQ.DomHandler}});function pQ($,Z){let G=new XG.DomHandler(void 0,Z);return new JG.Parser(G,Z).end($),G.root}function lQ($,Z){return pQ($,Z).children}function VV($,Z,G){let J=new XG.DomHandler((X)=>$(X,J.root),Z,G);return new JG.Parser(J,Z)}function FV($,Z,G){let J=new XG.DomHandler($,Z,G);return new JG.Parser(J,Z)}var iQ=xZ();Object.defineProperty($1,"Tokenizer",{enumerable:!0,get:function(){return NV(iQ).default}});Object.defineProperty($1,"QuoteType",{enumerable:!0,get:function(){return iQ.QuoteType}});$1.ElementType=fQ(P6());var RV=U9(),OV=U9();Object.defineProperty($1,"getFeed",{enumerable:!0,get:function(){return OV.getFeed}});var MV={xmlMode:!0};function DV($,Z=MV){return(0,RV.getFeed)(lQ($,Z))}$1.DomUtils=fQ(U9())});var dQ=O((YG)=>{Object.defineProperty(YG,"__esModule",{value:!0});YG.unsetRootParent=IV;function IV($){var Z=0,G=$.length;for(;Z<G;Z++){var J=$[Z];J.parent=null}return $}});var rQ=O((HG)=>{Object.defineProperty(HG,"__esModule",{value:!0});HG.default=EV;var PV=E0(),TV=cQ(),wV=dQ();function EV($,Z){if(typeof $!=="string")throw TypeError("First argument must be a string.");if(!$)return[];var G=new PV.DomHandler(void 0,Z);return new TV.Parser(G,Z).end($),(0,wV.unsetRootParent)(G.dom)}});var nQ=O((aQ)=>{Object.defineProperty(aQ,"__esModule",{value:!0})});var sQ=O((C0)=>{var jV=C0&&C0.__createBinding||(Object.create?function($,Z,G,J){if(J===void 0)J=G;var X=Object.getOwnPropertyDescriptor(Z,G);if(!X||("get"in X?!Z.__esModule:X.writable||X.configurable))X={enumerable:!0,get:function(){return Z[G]}};Object.defineProperty($,J,X)}:function($,Z,G,J){if(J===void 0)J=G;$[J]=Z[G]}),SV=C0&&C0.__exportStar||function($,Z){for(var G in $)if(G!=="default"&&!Object.prototype.hasOwnProperty.call(Z,G))jV(Z,$,G)},_V=C0&&C0.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(C0,"__esModule",{value:!0});C0.default=void 0;var CV=rQ();Object.defineProperty(C0,"default",{enumerable:!0,get:function(){return _V(CV).default}});SV(nQ(),C0)});var oQ=O((W9)=>{var gV=0;W9.SAME=gV;var yV=1;W9.CAMELCASE=yV;W9.possibleStandardNames={accept:0,acceptCharset:1,"accept-charset":"acceptCharset",accessKey:1,action:0,allowFullScreen:1,alt:0,as:0,async:0,autoCapitalize:1,autoComplete:1,autoCorrect:1,autoFocus:1,autoPlay:1,autoSave:1,capture:0,cellPadding:1,cellSpacing:1,challenge:0,charSet:1,checked:0,children:0,cite:0,class:"className",classID:1,className:1,cols:0,colSpan:1,content:0,contentEditable:1,contextMenu:1,controls:0,controlsList:1,coords:0,crossOrigin:1,dangerouslySetInnerHTML:1,data:0,dateTime:1,default:0,defaultChecked:1,defaultValue:1,defer:0,dir:0,disabled:0,disablePictureInPicture:1,disableRemotePlayback:1,download:0,draggable:0,encType:1,enterKeyHint:1,for:"htmlFor",form:0,formMethod:1,formAction:1,formEncType:1,formNoValidate:1,formTarget:1,frameBorder:1,headers:0,height:0,hidden:0,high:0,href:0,hrefLang:1,htmlFor:1,httpEquiv:1,"http-equiv":"httpEquiv",icon:0,id:0,innerHTML:1,inputMode:1,integrity:0,is:0,itemID:1,itemProp:1,itemRef:1,itemScope:1,itemType:1,keyParams:1,keyType:1,kind:0,label:0,lang:0,list:0,loop:0,low:0,manifest:0,marginWidth:1,marginHeight:1,max:0,maxLength:1,media:0,mediaGroup:1,method:0,min:0,minLength:1,multiple:0,muted:0,name:0,noModule:1,nonce:0,noValidate:1,open:0,optimum:0,pattern:0,placeholder:0,playsInline:1,poster:0,preload:0,profile:0,radioGroup:1,readOnly:1,referrerPolicy:1,rel:0,required:0,reversed:0,role:0,rows:0,rowSpan:1,sandbox:0,scope:0,scoped:0,scrolling:0,seamless:0,selected:0,shape:0,size:0,sizes:0,span:0,spellCheck:1,src:0,srcDoc:1,srcLang:1,srcSet:1,start:0,step:0,style:0,summary:0,tabIndex:1,target:0,title:0,type:0,useMap:1,value:0,width:0,wmode:0,wrap:0,about:0,accentHeight:1,"accent-height":"accentHeight",accumulate:0,additive:0,alignmentBaseline:1,"alignment-baseline":"alignmentBaseline",allowReorder:1,alphabetic:0,amplitude:0,arabicForm:1,"arabic-form":"arabicForm",ascent:0,attributeName:1,attributeType:1,autoReverse:1,azimuth:0,baseFrequency:1,baselineShift:1,"baseline-shift":"baselineShift",baseProfile:1,bbox:0,begin:0,bias:0,by:0,calcMode:1,capHeight:1,"cap-height":"capHeight",clip:0,clipPath:1,"clip-path":"clipPath",clipPathUnits:1,clipRule:1,"clip-rule":"clipRule",color:0,colorInterpolation:1,"color-interpolation":"colorInterpolation",colorInterpolationFilters:1,"color-interpolation-filters":"colorInterpolationFilters",colorProfile:1,"color-profile":"colorProfile",colorRendering:1,"color-rendering":"colorRendering",contentScriptType:1,contentStyleType:1,cursor:0,cx:0,cy:0,d:0,datatype:0,decelerate:0,descent:0,diffuseConstant:1,direction:0,display:0,divisor:0,dominantBaseline:1,"dominant-baseline":"dominantBaseline",dur:0,dx:0,dy:0,edgeMode:1,elevation:0,enableBackground:1,"enable-background":"enableBackground",end:0,exponent:0,externalResourcesRequired:1,fill:0,fillOpacity:1,"fill-opacity":"fillOpacity",fillRule:1,"fill-rule":"fillRule",filter:0,filterRes:1,filterUnits:1,floodOpacity:1,"flood-opacity":"floodOpacity",floodColor:1,"flood-color":"floodColor",focusable:0,fontFamily:1,"font-family":"fontFamily",fontSize:1,"font-size":"fontSize",fontSizeAdjust:1,"font-size-adjust":"fontSizeAdjust",fontStretch:1,"font-stretch":"fontStretch",fontStyle:1,"font-style":"fontStyle",fontVariant:1,"font-variant":"fontVariant",fontWeight:1,"font-weight":"fontWeight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:1,"glyph-name":"glyphName",glyphOrientationHorizontal:1,"glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphOrientationVertical:1,"glyph-orientation-vertical":"glyphOrientationVertical",glyphRef:1,gradientTransform:1,gradientUnits:1,hanging:0,horizAdvX:1,"horiz-adv-x":"horizAdvX",horizOriginX:1,"horiz-origin-x":"horizOriginX",ideographic:0,imageRendering:1,"image-rendering":"imageRendering",in2:0,in:0,inlist:0,intercept:0,k1:0,k2:0,k3:0,k4:0,k:0,kernelMatrix:1,kernelUnitLength:1,kerning:0,keyPoints:1,keySplines:1,keyTimes:1,lengthAdjust:1,letterSpacing:1,"letter-spacing":"letterSpacing",lightingColor:1,"lighting-color":"lightingColor",limitingConeAngle:1,local:0,markerEnd:1,"marker-end":"markerEnd",markerHeight:1,markerMid:1,"marker-mid":"markerMid",markerStart:1,"marker-start":"markerStart",markerUnits:1,markerWidth:1,mask:0,maskContentUnits:1,maskUnits:1,mathematical:0,mode:0,numOctaves:1,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:1,"overline-position":"overlinePosition",overlineThickness:1,"overline-thickness":"overlineThickness",paintOrder:1,"paint-order":"paintOrder",panose1:0,"panose-1":"panose1",pathLength:1,patternContentUnits:1,patternTransform:1,patternUnits:1,pointerEvents:1,"pointer-events":"pointerEvents",points:0,pointsAtX:1,pointsAtY:1,pointsAtZ:1,prefix:0,preserveAlpha:1,preserveAspectRatio:1,primitiveUnits:1,property:0,r:0,radius:0,refX:1,refY:1,renderingIntent:1,"rendering-intent":"renderingIntent",repeatCount:1,repeatDur:1,requiredExtensions:1,requiredFeatures:1,resource:0,restart:0,result:0,results:0,rotate:0,rx:0,ry:0,scale:0,security:0,seed:0,shapeRendering:1,"shape-rendering":"shapeRendering",slope:0,spacing:0,specularConstant:1,specularExponent:1,speed:0,spreadMethod:1,startOffset:1,stdDeviation:1,stemh:0,stemv:0,stitchTiles:1,stopColor:1,"stop-color":"stopColor",stopOpacity:1,"stop-opacity":"stopOpacity",strikethroughPosition:1,"strikethrough-position":"strikethroughPosition",strikethroughThickness:1,"strikethrough-thickness":"strikethroughThickness",string:0,stroke:0,strokeDasharray:1,"stroke-dasharray":"strokeDasharray",strokeDashoffset:1,"stroke-dashoffset":"strokeDashoffset",strokeLinecap:1,"stroke-linecap":"strokeLinecap",strokeLinejoin:1,"stroke-linejoin":"strokeLinejoin",strokeMiterlimit:1,"stroke-miterlimit":"strokeMiterlimit",strokeWidth:1,"stroke-width":"strokeWidth",strokeOpacity:1,"stroke-opacity":"strokeOpacity",suppressContentEditableWarning:1,suppressHydrationWarning:1,surfaceScale:1,systemLanguage:1,tableValues:1,targetX:1,targetY:1,textAnchor:1,"text-anchor":"textAnchor",textDecoration:1,"text-decoration":"textDecoration",textLength:1,textRendering:1,"text-rendering":"textRendering",to:0,transform:0,typeof:0,u1:0,u2:0,underlinePosition:1,"underline-position":"underlinePosition",underlineThickness:1,"underline-thickness":"underlineThickness",unicode:0,unicodeBidi:1,"unicode-bidi":"unicodeBidi",unicodeRange:1,"unicode-range":"unicodeRange",unitsPerEm:1,"units-per-em":"unitsPerEm",unselectable:0,vAlphabetic:1,"v-alphabetic":"vAlphabetic",values:0,vectorEffect:1,"vector-effect":"vectorEffect",version:0,vertAdvY:1,"vert-adv-y":"vertAdvY",vertOriginX:1,"vert-origin-x":"vertOriginX",vertOriginY:1,"vert-origin-y":"vertOriginY",vHanging:1,"v-hanging":"vHanging",vIdeographic:1,"v-ideographic":"vIdeographic",viewBox:1,viewTarget:1,visibility:0,vMathematical:1,"v-mathematical":"vMathematical",vocab:0,widths:0,wordSpacing:1,"word-spacing":"wordSpacing",writingMode:1,"writing-mode":"writingMode",x1:0,x2:0,x:0,xChannelSelector:1,xHeight:1,"x-height":"xHeight",xlinkActuate:1,"xlink:actuate":"xlinkActuate",xlinkArcrole:1,"xlink:arcrole":"xlinkArcrole",xlinkHref:1,"xlink:href":"xlinkHref",xlinkRole:1,"xlink:role":"xlinkRole",xlinkShow:1,"xlink:show":"xlinkShow",xlinkTitle:1,"xlink:title":"xlinkTitle",xlinkType:1,"xlink:type":"xlinkType",xmlBase:1,"xml:base":"xmlBase",xmlLang:1,"xml:lang":"xmlLang",xmlns:0,"xml:space":"xmlSpace",xmlnsXlink:1,"xmlns:xlink":"xmlnsXlink",xmlSpace:1,y1:0,y2:0,y:0,yChannelSelector:1,z:0,zoomAndPan:1}});var eQ=O((g0)=>{function vV($){return h1.hasOwnProperty($)?h1[$]:null}function d1($,Z,G,J,X,Y,H){this.acceptsBooleans=Z===2||Z===3||Z===4,this.attributeName=J,this.attributeNamespace=X,this.mustUseProperty=G,this.propertyName=$,this.type=Z,this.sanitizeURL=Y,this.removeEmptyString=H}var h1={},xV=["children","dangerouslySetInnerHTML","defaultValue","defaultChecked","innerHTML","suppressContentEditableWarning","suppressHydrationWarning","style"];xV.forEach(($)=>{h1[$]=new d1($,0,!1,$,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(([$,Z])=>{h1[$]=new d1($,1,!1,Z,null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(($)=>{h1[$]=new d1($,2,!1,$.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(($)=>{h1[$]=new d1($,2,!1,$,null,!1,!1)});["allowFullScreen","async","autoFocus","autoPlay","controls","default","defer","disabled","disablePictureInPicture","disableRemotePlayback","formNoValidate","hidden","loop","noModule","noValidate","open","playsInline","readOnly","required","reversed","scoped","seamless","itemScope"].forEach(($)=>{h1[$]=new d1($,3,!1,$.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(($)=>{h1[$]=new d1($,3,!0,$,null,!1,!1)});["capture","download"].forEach(($)=>{h1[$]=new d1($,4,!1,$,null,!1,!1)});["cols","rows","size","span"].forEach(($)=>{h1[$]=new d1($,6,!1,$,null,!1,!1)});["rowSpan","start"].forEach(($)=>{h1[$]=new d1($,5,!1,$.toLowerCase(),null,!1,!1)});var QG=/[\-\:]([a-z])/g,qG=($)=>$[1].toUpperCase();["accent-height","alignment-baseline","arabic-form","baseline-shift","cap-height","clip-path","clip-rule","color-interpolation","color-interpolation-filters","color-profile","color-rendering","dominant-baseline","enable-background","fill-opacity","fill-rule","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","glyph-name","glyph-orientation-horizontal","glyph-orientation-vertical","horiz-adv-x","horiz-origin-x","image-rendering","letter-spacing","lighting-color","marker-end","marker-mid","marker-start","overline-position","overline-thickness","paint-order","panose-1","pointer-events","rendering-intent","shape-rendering","stop-color","stop-opacity","strikethrough-position","strikethrough-thickness","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-anchor","text-decoration","text-rendering","underline-position","underline-thickness","unicode-bidi","unicode-range","units-per-em","v-alphabetic","v-hanging","v-ideographic","v-mathematical","vector-effect","vert-adv-y","vert-origin-x","vert-origin-y","word-spacing","writing-mode","xmlns:xlink","x-height"].forEach(($)=>{let Z=$.replace(QG,qG);h1[Z]=new d1(Z,1,!1,$,null,!1,!1)});["xlink:actuate","xlink:arcrole","xlink:role","xlink:show","xlink:title","xlink:type"].forEach(($)=>{let Z=$.replace(QG,qG);h1[Z]=new d1(Z,1,!1,$,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(($)=>{let Z=$.replace(QG,qG);h1[Z]=new d1(Z,1,!1,$,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(($)=>{h1[$]=new d1($,1,!1,$.toLowerCase(),null,!1,!1)});var hV="xlinkHref";h1[hV]=new d1("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(($)=>{h1[$]=new d1($,1,!1,$.toLowerCase(),null,!0,!0)});var{CAMELCASE:bV,SAME:kV,possibleStandardNames:tQ}=oQ(),mV=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",fV=mV+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",uV=RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+fV+"]*$")),pV=Object.keys(tQ).reduce(($,Z)=>{let G=tQ[Z];if(G===kV)$[Z]=Z;else if(G===bV)$[Z.toLowerCase()]=Z;else $[Z]=G;return $},{});g0.BOOLEAN=3;g0.BOOLEANISH_STRING=2;g0.NUMERIC=5;g0.OVERLOADED_BOOLEAN=4;g0.POSITIVE_NUMERIC=6;g0.RESERVED=0;g0.STRING=1;g0.getPropertyInfo=vV;g0.isCustomAttribute=uV;g0.possibleStandardNames=pV});var Yq=O((vC,Xq)=>{var $q=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,lV=/\n/g,iV=/^\s*/,cV=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,dV=/^:\s*/,rV=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,aV=/^[;\s]*/,nV=/^\s+|\s+$/g,sV=`
|
|
14
|
-
`,Zq="/",Gq="*",s5="",oV="comment",tV="declaration";function eV($,Z){if(typeof $!=="string")throw TypeError("First argument must be a string");if(!$)return[];Z=Z||{};var G=1,J=1;function X(V){var B=V.match(lV);if(B)G+=B.length;var I=V.lastIndexOf(sV);J=~I?V.length-I:J+V.length}function Y(){var V={line:G,column:J};return function(B){return B.position=new H(V),U(),B}}function H(V){this.start=V,this.end={line:G,column:J},this.source=Z.source}H.prototype.content=$;function Q(V){var B=Error(Z.source+":"+G+":"+J+": "+V);if(B.reason=V,B.filename=Z.source,B.line=G,B.column=J,B.source=$,Z.silent);else throw B}function q(V){var B=V.exec($);if(!B)return;var I=B[0];return X(I),$=$.slice(I.length),B}function U(){q(iV)}function K(V){var B;V=V||[];while(B=W())if(B!==!1)V.push(B);return V}function W(){var V=Y();if(Zq!=$.charAt(0)||Gq!=$.charAt(1))return;var B=2;while(s5!=$.charAt(B)&&(Gq!=$.charAt(B)||Zq!=$.charAt(B+1)))++B;if(B+=2,s5===$.charAt(B-1))return Q("End of comment missing");var I=$.slice(2,B-2);return J+=2,X(I),$=$.slice(B),J+=2,V({type:oV,comment:I})}function z(){var V=Y(),B=q(cV);if(!B)return;if(W(),!q(dV))return Q("property missing ':'");var I=q(rV),D=V({type:tV,property:Jq(B[0].replace($q,s5)),value:I?Jq(I[0].replace($q,s5)):s5});return q(aV),D}function L(){var V=[];K(V);var B;while(B=z())if(B!==!1)V.push(B),K(V);return V}return U(),L()}function Jq($){return $?$.replace(nV,s5):s5}Xq.exports=eV});var Hq=O((y7)=>{var $F=y7&&y7.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(y7,"__esModule",{value:!0});y7.default=GF;var ZF=$F(Yq());function GF($,Z){let G=null;if(!$||typeof $!=="string")return G;let J=(0,ZF.default)($),X=typeof Z==="function";return J.forEach((Y)=>{if(Y.type!=="declaration")return;let{property:H,value:Q}=Y;if(X)Z(H,Q,Y);else if(Q)G=G||{},G[H]=Q}),G}});var qq=O((L9)=>{Object.defineProperty(L9,"__esModule",{value:!0});L9.camelCase=void 0;var JF=/^--[a-zA-Z0-9_-]+$/,XF=/-([a-z])/g,YF=/^[^-]+$/,HF=/^-(webkit|moz|ms|o|khtml)-/,QF=/^-(ms)-/,qF=function($){return!$||YF.test($)||JF.test($)},KF=function($,Z){return Z.toUpperCase()},Qq=function($,Z){return"".concat(Z,"-")},UF=function($,Z){if(Z===void 0)Z={};if(qF($))return $;if($=$.toLowerCase(),Z.reactCompat)$=$.replace(QF,Qq);else $=$.replace(HF,Qq);return $.replace(XF,KF)};L9.camelCase=UF});var WG=O((UG,Kq)=>{var WF=UG&&UG.__importDefault||function($){return $&&$.__esModule?$:{default:$}},LF=WF(Hq()),zF=qq();function KG($,Z){var G={};if(!$||typeof $!=="string")return G;return(0,LF.default)($,function(J,X){if(J&&X)G[(0,zF.camelCase)(J,Z)]=X}),G}KG.default=KG;Kq.exports=KG});var LG=O((r1)=>{var AF=r1&&r1.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(r1,"__esModule",{value:!0});r1.returnFirstArg=r1.canTextBeChildOfNode=r1.ELEMENTS_WITH_NO_TEXT_CHILDREN=r1.PRESERVE_CUSTOM_ATTRIBUTES=void 0;r1.isCustomComponent=FF;r1.setStyleProp=OF;var NF=require("react"),BF=AF(WG()),VF=new Set(["annotation-xml","color-profile","font-face","font-face-src","font-face-uri","font-face-format","font-face-name","missing-glyph"]);function FF($,Z){if(!$.includes("-"))return Boolean(Z&&typeof Z.is==="string");if(VF.has($))return!1;return!0}var RF={reactCompat:!0};function OF($,Z){if(typeof $!=="string")return;if(!$.trim()){Z.style={};return}try{Z.style=(0,BF.default)($,RF)}catch(G){Z.style={}}}r1.PRESERVE_CUSTOM_ATTRIBUTES=Number(NF.version.split(".")[0])>=16;r1.ELEMENTS_WITH_NO_TEXT_CHILDREN=new Set(["tr","tbody","thead","tfoot","colgroup","table","head","html","frameset"]);var MF=function($){return!r1.ELEMENTS_WITH_NO_TEXT_CHILDREN.has($.name)};r1.canTextBeChildOfNode=MF;var DF=function($){return $};r1.returnFirstArg=DF});var AG=O((zG)=>{Object.defineProperty(zG,"__esModule",{value:!0});zG.default=wF;var v7=eQ(),Uq=LG(),IF=["checked","value"],PF=["input","select","textarea"],TF={reset:!0,submit:!0};function wF($,Z){if($===void 0)$={};var G={},J=Boolean($.type&&TF[$.type]);for(var X in $){var Y=$[X];if((0,v7.isCustomAttribute)(X)){G[X]=Y;continue}var H=X.toLowerCase(),Q=Wq(H);if(Q){var q=(0,v7.getPropertyInfo)(Q);if(IF.includes(Q)&&PF.includes(Z)&&!J)Q=Wq("default"+H);switch(G[Q]=Y,q&&q.type){case v7.BOOLEAN:G[Q]=!0;break;case v7.OVERLOADED_BOOLEAN:if(Y==="")G[Q]=!0;break}continue}if(Uq.PRESERVE_CUSTOM_ATTRIBUTES)G[X]=Y}return(0,Uq.setStyleProp)($.style,G),G}function Wq($){return v7.possibleStandardNames[$]}});var zq=O((h7)=>{var EF=h7&&h7.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(h7,"__esModule",{value:!0});h7.default=Lq;var NG=require("react"),jF=EF(AG()),x7=LG(),SF={cloneElement:NG.cloneElement,createElement:NG.createElement,isValidElement:NG.isValidElement};function Lq($,Z){if(Z===void 0)Z={};var G=[],J=typeof Z.replace==="function",X=Z.transform||x7.returnFirstArg,Y=Z.library||SF,H=Y.cloneElement,Q=Y.createElement,q=Y.isValidElement,U=$.length;for(var K=0;K<U;K++){var W=$[K];if(J){var z=Z.replace(W,K);if(q(z)){if(U>1)z=H(z,{key:z.key||K});G.push(X(z,W,K));continue}}if(W.type==="text"){var L=!W.data.trim().length;if(L&&W.parent&&!(0,x7.canTextBeChildOfNode)(W.parent))continue;if(Z.trim&&L)continue;G.push(X(W.data,W,K));continue}var V=W,B={};if(_F(V))(0,x7.setStyleProp)(V.attribs.style,V.attribs),B=V.attribs;else if(V.attribs)B=(0,jF.default)(V.attribs,V.name);var I=void 0;switch(W.type){case"script":case"style":if(W.children[0])B.dangerouslySetInnerHTML={__html:W.children[0].data};break;case"tag":if(W.name==="textarea"&&W.children[0])B.defaultValue=W.children[0].data;else if(W.children&&W.children.length)I=Lq(W.children,Z);break;default:continue}if(U>1)B.key=K;G.push(X(Q(W.name,B,I),W,K))}return G.length===1?G[0]:G}function _F($){return x7.PRESERVE_CUSTOM_ATTRIBUTES&&$.type==="tag"&&(0,x7.isCustomComponent)($.name,$.attribs)}});var VG=O((T1)=>{var BG=T1&&T1.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(T1,"__esModule",{value:!0});T1.htmlToDOM=T1.domToReact=T1.attributesToProps=T1.Text=T1.ProcessingInstruction=T1.Element=T1.Comment=void 0;T1.default=yF;var Aq=BG(sQ());T1.htmlToDOM=Aq.default;var CF=BG(AG());T1.attributesToProps=CF.default;var Nq=BG(zq());T1.domToReact=Nq.default;var z9=E0();Object.defineProperty(T1,"Comment",{enumerable:!0,get:function(){return z9.Comment}});Object.defineProperty(T1,"Element",{enumerable:!0,get:function(){return z9.Element}});Object.defineProperty(T1,"ProcessingInstruction",{enumerable:!0,get:function(){return z9.ProcessingInstruction}});Object.defineProperty(T1,"Text",{enumerable:!0,get:function(){return z9.Text}});var gF={lowerCaseAttributeNames:!1};function yF($,Z){if(typeof $!=="string")throw TypeError("First argument must be a string");if(!$)return[];return(0,Nq.default)((0,Aq.default)($,(Z===null||Z===void 0?void 0:Z.htmlparser2)||gF),Z)}});var d3=O((wk,c3)=>{var i9=Object.prototype.hasOwnProperty,i3=Object.prototype.toString,k3=Object.defineProperty,m3=Object.getOwnPropertyDescriptor,f3=function(Z){if(typeof Array.isArray==="function")return Array.isArray(Z);return i3.call(Z)==="[object Array]"},u3=function(Z){if(!Z||i3.call(Z)!=="[object Object]")return!1;var G=i9.call(Z,"constructor"),J=Z.constructor&&Z.constructor.prototype&&i9.call(Z.constructor.prototype,"isPrototypeOf");if(Z.constructor&&!G&&!J)return!1;var X;for(X in Z);return typeof X>"u"||i9.call(Z,X)},p3=function(Z,G){if(k3&&G.name==="__proto__")k3(Z,G.name,{enumerable:!0,configurable:!0,value:G.newValue,writable:!0});else Z[G.name]=G.newValue},l3=function(Z,G){if(G==="__proto__"){if(!i9.call(Z,G))return;else if(m3)return m3(Z,G).value}return Z[G]};c3.exports=function $(){var Z,G,J,X,Y,H,Q=arguments[0],q=1,U=arguments.length,K=!1;if(typeof Q==="boolean")K=Q,Q=arguments[1]||{},q=2;if(Q==null||typeof Q!=="object"&&typeof Q!=="function")Q={};for(;q<U;++q)if(Z=arguments[q],Z!=null){for(G in Z)if(J=l3(Q,G),X=l3(Z,G),Q!==X){if(K&&X&&(u3(X)||(Y=f3(X)))){if(Y)Y=!1,H=J&&f3(J)?J:[];else H=J&&u3(J)?J:{};p3(Q,{name:G,newValue:$(K,H,X)})}else if(typeof X<"u")p3(Q,{name:G,newValue:X})}}return Q}});var qK=O((hm,QK)=>{var VM="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";QK.exports=VM});var LK=O((bm,WK)=>{var FM=qK();function KK(){}function UK(){}UK.resetWarningCache=KK;WK.exports=function(){function $(J,X,Y,H,Q,q){if(q===FM)return;var U=Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw U.name="Invariant Violation",U}$.isRequired=$;function Z(){return $}var G={array:$,bigint:$,bool:$,func:$,number:$,object:$,string:$,symbol:$,any:$,arrayOf:Z,element:$,elementType:$,instanceOf:Z,node:$,objectOf:Z,oneOf:Z,oneOfType:Z,shape:Z,exact:Z,checkPropTypes:UK,resetWarningCache:KK};return G.PropTypes=G,G}});var PJ=O((km,zK)=>{zK.exports=LK()();var RM,OM});var NK=O((G1)=>{var y1=typeof Symbol==="function"&&Symbol.for,TJ=y1?Symbol.for("react.element"):60103,wJ=y1?Symbol.for("react.portal"):60106,s9=y1?Symbol.for("react.fragment"):60107,o9=y1?Symbol.for("react.strict_mode"):60108,t9=y1?Symbol.for("react.profiler"):60114,e9=y1?Symbol.for("react.provider"):60109,$4=y1?Symbol.for("react.context"):60110,EJ=y1?Symbol.for("react.async_mode"):60111,Z4=y1?Symbol.for("react.concurrent_mode"):60111,G4=y1?Symbol.for("react.forward_ref"):60112,J4=y1?Symbol.for("react.suspense"):60113,MM=y1?Symbol.for("react.suspense_list"):60120,X4=y1?Symbol.for("react.memo"):60115,Y4=y1?Symbol.for("react.lazy"):60116,DM=y1?Symbol.for("react.block"):60121,IM=y1?Symbol.for("react.fundamental"):60117,PM=y1?Symbol.for("react.responder"):60118,TM=y1?Symbol.for("react.scope"):60119;function K0($){if(typeof $==="object"&&$!==null){var Z=$.$$typeof;switch(Z){case TJ:switch($=$.type,$){case EJ:case Z4:case s9:case t9:case o9:case J4:return $;default:switch($=$&&$.$$typeof,$){case $4:case G4:case Y4:case X4:case e9:return $;default:return Z}}case wJ:return Z}}}function AK($){return K0($)===Z4}G1.AsyncMode=EJ;G1.ConcurrentMode=Z4;G1.ContextConsumer=$4;G1.ContextProvider=e9;G1.Element=TJ;G1.ForwardRef=G4;G1.Fragment=s9;G1.Lazy=Y4;G1.Memo=X4;G1.Portal=wJ;G1.Profiler=t9;G1.StrictMode=o9;G1.Suspense=J4;G1.isAsyncMode=function($){return AK($)||K0($)===EJ};G1.isConcurrentMode=AK;G1.isContextConsumer=function($){return K0($)===$4};G1.isContextProvider=function($){return K0($)===e9};G1.isElement=function($){return typeof $==="object"&&$!==null&&$.$$typeof===TJ};G1.isForwardRef=function($){return K0($)===G4};G1.isFragment=function($){return K0($)===s9};G1.isLazy=function($){return K0($)===Y4};G1.isMemo=function($){return K0($)===X4};G1.isPortal=function($){return K0($)===wJ};G1.isProfiler=function($){return K0($)===t9};G1.isStrictMode=function($){return K0($)===o9};G1.isSuspense=function($){return K0($)===J4};G1.isValidElementType=function($){return typeof $==="string"||typeof $==="function"||$===s9||$===Z4||$===t9||$===o9||$===J4||$===MM||typeof $==="object"&&$!==null&&($.$$typeof===Y4||$.$$typeof===X4||$.$$typeof===e9||$.$$typeof===$4||$.$$typeof===G4||$.$$typeof===IM||$.$$typeof===PM||$.$$typeof===TM||$.$$typeof===DM)};G1.typeOf=K0});var VK=O((fm,BK)=>{BK.exports=NK()});var jJ=O((um,PK)=>{var MK=VK(),wM={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},EM={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},jM={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},SM={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},DK={};DK[MK.ForwardRef]=jM;function FK($){if(MK.isMemo($))return SM;return DK[$.$$typeof]||wM}var{defineProperty:_M,getOwnPropertyNames:CM,getOwnPropertySymbols:RK,getOwnPropertyDescriptor:gM,getPrototypeOf:yM,prototype:OK}=Object;function IK($,Z,G){if(typeof Z!=="string"){if(OK){var J=yM(Z);if(J&&J!==OK)IK($,J,G)}var X=CM(Z);if(RK)X=X.concat(RK(Z));var Y=FK($),H=FK(Z);for(var Q=0;Q<X.length;++Q){var q=X[Q];if(!EM[q]&&!(G&&G[q])&&!(H&&H[q])&&!(Y&&Y[q])){var U=gM(Z,q);try{_M($,q,U)}catch(K){}}}return $}return $}PK.exports=IK});var _J=O((SJ)=>{Object.defineProperty(SJ,"__esModule",{value:!0});SJ.default=xM;var vM={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};function xM($,Z){var G=!vM[$]&&typeof Z==="number"&&Z!==0;return G?Z+"px":Z}});var gJ=O((CJ)=>{Object.defineProperty(CJ,"__esModule",{value:!0});CJ.default=hM;function hM($,Z){return Object.keys($).reduce(function(G,J){return G[J]=Z($[J],J),G},{})}});var wK=O((yJ)=>{Object.defineProperty(yJ,"__esModule",{value:!0});yJ.default=mM;var bM=TK(_J()),kM=TK(gJ());function TK($){return $&&$.__esModule?$:{default:$}}function mM($){return(0,kM.default)($,function(Z,G){return(0,bM.default)(G,$[G])+" !important"})}});var vJ=O((u6)=>{Object.defineProperty(u6,"__esModule",{value:!0});u6.default=u6.camelCaseToDashCase=void 0;var fM=/([a-z])?([A-Z])/g,uM=function(Z,G,J){return(G||"")+"-"+J.toLowerCase()},EK=function(Z){return Z.replace(fM,uM)};u6.camelCaseToDashCase=EK;var pM=function(Z){return Object.keys(Z).reduce(function(G,J){var X=EK(J);if(/^ms-/.test(X))X="-".concat(X);return G[X]=Z[J],G},{})},lM=pM;u6.default=lM});var Q4=O((H4,jK)=>{Object.defineProperty(H4,"__esModule",{value:!0});H4.default=iM;function iM($){return $.charAt(0).toUpperCase()+$.slice(1)}jK.exports=H4.default});var _K=O((q4,SK)=>{Object.defineProperty(q4,"__esModule",{value:!0});q4.default=aM;var cM=Q4(),dM=rM(cM);function rM($){return $&&$.__esModule?$:{default:$}}function aM($,Z,G){if($.hasOwnProperty(Z)){var J={},X=$[Z],Y=(0,dM.default)(Z),H=Object.keys(G);for(var Q=0;Q<H.length;Q++){var q=H[Q];if(q===Z)for(var U=0;U<X.length;U++)J[X[U]+Y]=G[Z];J[q]=G[q]}return J}return G}SK.exports=q4.default});var xJ=O((K4,CK)=>{Object.defineProperty(K4,"__esModule",{value:!0});K4.default=nM;function nM($,Z,G,J,X){for(var Y=0,H=$.length;Y<H;++Y){var Q=$[Y](Z,G,J,X);if(Q)return Q}}CK.exports=K4.default});var hJ=O((U4,yK)=>{Object.defineProperty(U4,"__esModule",{value:!0});U4.default=sM;function gK($,Z){if($.indexOf(Z)===-1)$.push(Z)}function sM($,Z){if(Array.isArray(Z))for(var G=0,J=Z.length;G<J;++G)gK($,Z[G]);else gK($,Z)}yK.exports=U4.default});var bJ=O((W4,vK)=>{Object.defineProperty(W4,"__esModule",{value:!0});W4.default=oM;function oM($){return $ instanceof Object&&!Array.isArray($)}vK.exports=W4.default});var bK=O((z4,hK)=>{Object.defineProperty(z4,"__esModule",{value:!0});z4.default=YD;var tM=_K(),eM=L4(tM),$D=xJ(),xK=L4($D),ZD=hJ(),GD=L4(ZD),JD=bJ(),XD=L4(JD);function L4($){return $&&$.__esModule?$:{default:$}}function YD($){var{prefixMap:Z,plugins:G}=$;function J(X){for(var Y in X){var H=X[Y];if((0,XD.default)(H))X[Y]=J(H);else if(Array.isArray(H)){var Q=[];for(var q=0,U=H.length;q<U;++q){var K=(0,xK.default)(G,Y,H[q],X,Z);(0,GD.default)(Q,K||H[q])}if(Q.length>0)X[Y]=Q}else{var W=(0,xK.default)(G,Y,H,X,Z);if(W)X[Y]=W;X=(0,eM.default)(Z,Y,X)}}return X}return J}hK.exports=z4.default});var mK=O((kK,A4)=>{/*!
|
|
12
|
+
`+J)}function n0($,Z,J,G,Y,X){if($.listenerCount("wsClientError")){let Q=Error(Y);Error.captureStackTrace(Q,n0),$.emit("wsClientError",Q,J,Z)}else H6(J,G,Y,X)}});var w5=F((m)=>{Object.defineProperty(m,"__esModule",{value:!0});m.Doctype=m.CDATA=m.Tag=m.Style=m.Script=m.Comment=m.Directive=m.Text=m.Root=m.isTag=m.ElementType=void 0;var w1;(function($){$.Root="root",$.Text="text",$.Directive="directive",$.Comment="comment",$.Script="script",$.Style="style",$.Tag="tag",$.CDATA="cdata",$.Doctype="doctype"})(w1=m.ElementType||(m.ElementType={}));function MU($){return $.type===w1.Tag||$.type===w1.Script||$.type===w1.Style}m.isTag=MU;m.Root=w1.Root;m.Text=w1.Text;m.Directive=w1.Directive;m.Comment=w1.Comment;m.Script=w1.Script;m.Style=w1.Style;m.Tag=w1.Tag;m.CDATA=w1.CDATA;m.Doctype=w1.Doctype});var L$=F((f)=>{var j0=f&&f.__extends||function(){var $=function(Z,J){return $=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(G,Y){G.__proto__=Y}||function(G,Y){for(var X in Y)if(Object.prototype.hasOwnProperty.call(Y,X))G[X]=Y[X]},$(Z,J)};return function(Z,J){if(typeof J!=="function"&&J!==null)throw TypeError("Class extends value "+String(J)+" is not a constructor or null");$(Z,J);function G(){this.constructor=Z}Z.prototype=J===null?Object.create(J):(G.prototype=J.prototype,new G)}}(),M6=f&&f.__assign||function(){return M6=Object.assign||function($){for(var Z,J=1,G=arguments.length;J<G;J++){Z=arguments[J];for(var Y in Z)if(Object.prototype.hasOwnProperty.call(Z,Y))$[Y]=Z[Y]}return $},M6.apply(this,arguments)};Object.defineProperty(f,"__esModule",{value:!0});f.cloneNode=f.hasChildren=f.isDocument=f.isDirective=f.isComment=f.isText=f.isCDATA=f.isTag=f.Element=f.Document=f.CDATA=f.NodeWithChildren=f.ProcessingInstruction=f.Comment=f.Text=f.DataNode=f.Node=void 0;var q1=w5(),F$=function(){function $(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty($.prototype,"parentNode",{get:function(){return this.parent},set:function(Z){this.parent=Z},enumerable:!1,configurable:!0}),Object.defineProperty($.prototype,"previousSibling",{get:function(){return this.prev},set:function(Z){this.prev=Z},enumerable:!1,configurable:!0}),Object.defineProperty($.prototype,"nextSibling",{get:function(){return this.next},set:function(Z){this.next=Z},enumerable:!1,configurable:!0}),$.prototype.cloneNode=function(Z){if(Z===void 0)Z=!1;return B$(this,Z)},$}();f.Node=F$;var R7=function($){j0(Z,$);function Z(J){var G=$.call(this)||this;return G.data=J,G}return Object.defineProperty(Z.prototype,"nodeValue",{get:function(){return this.data},set:function(J){this.data=J},enumerable:!1,configurable:!0}),Z}(F$);f.DataNode=R7;var FG=function($){j0(Z,$);function Z(){var J=$!==null&&$.apply(this,arguments)||this;return J.type=q1.ElementType.Text,J}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 3},enumerable:!1,configurable:!0}),Z}(R7);f.Text=FG;var BG=function($){j0(Z,$);function Z(){var J=$!==null&&$.apply(this,arguments)||this;return J.type=q1.ElementType.Comment,J}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 8},enumerable:!1,configurable:!0}),Z}(R7);f.Comment=BG;var LG=function($){j0(Z,$);function Z(J,G){var Y=$.call(this,G)||this;return Y.name=J,Y.type=q1.ElementType.Directive,Y}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Z}(R7);f.ProcessingInstruction=LG;var I7=function($){j0(Z,$);function Z(J){var G=$.call(this)||this;return G.children=J,G}return Object.defineProperty(Z.prototype,"firstChild",{get:function(){var J;return(J=this.children[0])!==null&&J!==void 0?J:null},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"childNodes",{get:function(){return this.children},set:function(J){this.children=J},enumerable:!1,configurable:!0}),Z}(F$);f.NodeWithChildren=I7;var qG=function($){j0(Z,$);function Z(){var J=$!==null&&$.apply(this,arguments)||this;return J.type=q1.ElementType.CDATA,J}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),Z}(I7);f.CDATA=qG;var NG=function($){j0(Z,$);function Z(){var J=$!==null&&$.apply(this,arguments)||this;return J.type=q1.ElementType.Root,J}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),Z}(I7);f.Document=NG;var MG=function($){j0(Z,$);function Z(J,G,Y,X){if(Y===void 0)Y=[];if(X===void 0)X=J==="script"?q1.ElementType.Script:J==="style"?q1.ElementType.Style:q1.ElementType.Tag;var Q=$.call(this,Y)||this;return Q.name=J,Q.attribs=G,Q.type=X,Q}return Object.defineProperty(Z.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"tagName",{get:function(){return this.name},set:function(J){this.name=J},enumerable:!1,configurable:!0}),Object.defineProperty(Z.prototype,"attributes",{get:function(){var J=this;return Object.keys(this.attribs).map(function(G){var Y,X;return{name:G,value:J.attribs[G],namespace:(Y=J["x-attribsNamespace"])===null||Y===void 0?void 0:Y[G],prefix:(X=J["x-attribsPrefix"])===null||X===void 0?void 0:X[G]}})},enumerable:!1,configurable:!0}),Z}(I7);f.Element=MG;function RG($){return(0,q1.isTag)($)}f.isTag=RG;function IG($){return $.type===q1.ElementType.CDATA}f.isCDATA=IG;function PG($){return $.type===q1.ElementType.Text}f.isText=PG;function DG($){return $.type===q1.ElementType.Comment}f.isComment=DG;function TG($){return $.type===q1.ElementType.Directive}f.isDirective=TG;function wG($){return $.type===q1.ElementType.Root}f.isDocument=wG;function RU($){return Object.prototype.hasOwnProperty.call($,"children")}f.hasChildren=RU;function B$($,Z){if(Z===void 0)Z=!1;var J;if(PG($))J=new FG($.data);else if(DG($))J=new BG($.data);else if(RG($)){var G=Z?A$($.children):[],Y=new MG($.name,M6({},$.attribs),G);if(G.forEach(function(H){return H.parent=Y}),$.namespace!=null)Y.namespace=$.namespace;if($["x-attribsNamespace"])Y["x-attribsNamespace"]=M6({},$["x-attribsNamespace"]);if($["x-attribsPrefix"])Y["x-attribsPrefix"]=M6({},$["x-attribsPrefix"]);J=Y}else if(IG($)){var G=Z?A$($.children):[],X=new qG(G);G.forEach(function(K){return K.parent=X}),J=X}else if(wG($)){var G=Z?A$($.children):[],Q=new NG(G);if(G.forEach(function(K){return K.parent=Q}),$["x-mode"])Q["x-mode"]=$["x-mode"];J=Q}else if(TG($)){var z=new LG($.name,$.data);if($["x-name"]!=null)z["x-name"]=$["x-name"],z["x-publicId"]=$["x-publicId"],z["x-systemId"]=$["x-systemId"];J=z}else throw Error("Not implemented yet: ".concat($.type));if(J.startIndex=$.startIndex,J.endIndex=$.endIndex,$.sourceCodeLocation!=null)J.sourceCodeLocation=$.sourceCodeLocation;return J}f.cloneNode=B$;function A$($){var Z=$.map(function(G){return B$(G,!0)});for(var J=1;J<Z.length;J++)Z[J].prev=Z[J-1],Z[J-1].next=Z[J];return Z}});var m1=F((o1)=>{var IU=o1&&o1.__createBinding||(Object.create?function($,Z,J,G){if(G===void 0)G=J;var Y=Object.getOwnPropertyDescriptor(Z,J);if(!Y||("get"in Y?!Z.__esModule:Y.writable||Y.configurable))Y={enumerable:!0,get:function(){return Z[J]}};Object.defineProperty($,G,Y)}:function($,Z,J,G){if(G===void 0)G=J;$[G]=Z[J]}),PU=o1&&o1.__exportStar||function($,Z){for(var J in $)if(J!=="default"&&!Object.prototype.hasOwnProperty.call(Z,J))IU(Z,$,J)};Object.defineProperty(o1,"__esModule",{value:!0});o1.DomHandler=void 0;var q$=w5(),f0=L$();PU(L$(),o1);var EG={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},vG=function(){function $(Z,J,G){if(this.dom=[],this.root=new f0.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,typeof J==="function")G=J,J=EG;if(typeof Z==="object")J=Z,Z=void 0;this.callback=Z!==null&&Z!==void 0?Z:null,this.options=J!==null&&J!==void 0?J:EG,this.elementCB=G!==null&&G!==void 0?G:null}return $.prototype.onparserinit=function(Z){this.parser=Z},$.prototype.onreset=function(){this.dom=[],this.root=new f0.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},$.prototype.onend=function(){if(this.done)return;this.done=!0,this.parser=null,this.handleCallback(null)},$.prototype.onerror=function(Z){this.handleCallback(Z)},$.prototype.onclosetag=function(){this.lastNode=null;var Z=this.tagStack.pop();if(this.options.withEndIndices)Z.endIndex=this.parser.endIndex;if(this.elementCB)this.elementCB(Z)},$.prototype.onopentag=function(Z,J){var G=this.options.xmlMode?q$.ElementType.Tag:void 0,Y=new f0.Element(Z,J,void 0,G);this.addNode(Y),this.tagStack.push(Y)},$.prototype.ontext=function(Z){var J=this.lastNode;if(J&&J.type===q$.ElementType.Text){if(J.data+=Z,this.options.withEndIndices)J.endIndex=this.parser.endIndex}else{var G=new f0.Text(Z);this.addNode(G),this.lastNode=G}},$.prototype.oncomment=function(Z){if(this.lastNode&&this.lastNode.type===q$.ElementType.Comment){this.lastNode.data+=Z;return}var J=new f0.Comment(Z);this.addNode(J),this.lastNode=J},$.prototype.oncommentend=function(){this.lastNode=null},$.prototype.oncdatastart=function(){var Z=new f0.Text(""),J=new f0.CDATA([Z]);this.addNode(J),Z.parent=J,this.lastNode=Z},$.prototype.oncdataend=function(){this.lastNode=null},$.prototype.onprocessinginstruction=function(Z,J){var G=new f0.ProcessingInstruction(Z,J);this.addNode(G)},$.prototype.handleCallback=function(Z){if(typeof this.callback==="function")this.callback(Z,this.dom);else if(Z)throw Z},$.prototype.addNode=function(Z){var J=this.tagStack[this.tagStack.length-1],G=J.children[J.children.length-1];if(this.options.withStartIndices)Z.startIndex=this.parser.startIndex;if(this.options.withEndIndices)Z.endIndex=this.parser.endIndex;if(J.children.push(Z),G)Z.prev=G,G.next=Z;Z.parent=J,this.lastNode=null},$}();o1.DomHandler=vG;o1.default=vG});var M$=F((r0)=>{var N$;Object.defineProperty(r0,"__esModule",{value:!0});r0.fromCodePoint=void 0;r0.replaceCodePoint=jG;r0.decodeCodePoint=TU;var DU=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]]);r0.fromCodePoint=(N$=String.fromCodePoint)!==null&&N$!==void 0?N$:($)=>{let Z="";if($>65535)$-=65536,Z+=String.fromCharCode($>>>10&1023|55296),$=56320|$&1023;return Z+=String.fromCharCode($),Z};function jG($){var Z;if($>=55296&&$<=57343||$>1114111)return 65533;return(Z=DU.get($))!==null&&Z!==void 0?Z:$}function TU($){return(0,r0.fromCodePoint)(jG($))}});var I$=F((R$)=>{Object.defineProperty(R$,"__esModule",{value:!0});R$.decodeBase64=wU;function wU($){let Z=typeof atob==="function"?atob($):typeof Buffer.from==="function"?Buffer.from($,"base64").toString("binary"):new Buffer($,"base64").toString("binary"),J=Z.length&-2,G=new Uint16Array(J/2);for(let Y=0,X=0;Y<J;Y+=2){let Q=Z.charCodeAt(Y),z=Z.charCodeAt(Y+1);G[X++]=Q|z<<8}return G}});var P$=F((P7)=>{Object.defineProperty(P7,"__esModule",{value:!0});P7.htmlDecodeTree=void 0;var EU=I$();P7.htmlDecodeTree=(0,EU.decodeBase64)("QR08ALkAAgH6AYsDNQR2BO0EPgXZBQEGLAbdBxMISQrvCmQLfQurDKQNLw4fD4YPpA+6D/IPAAAAAAAAAAAAAAAAKhBMEY8TmxUWF2EYLBkxGuAa3RsJHDscWR8YIC8jSCSIJcMl6ie3Ku8rEC0CLjoupS7kLgAIRU1hYmNmZ2xtbm9wcnN0dVQAWgBeAGUAaQBzAHcAfgCBAIQAhwCSAJoAoACsALMAbABpAGcAO4DGAMZAUAA7gCYAJkBjAHUAdABlADuAwQDBQHIiZXZlAAJhAAFpeW0AcgByAGMAO4DCAMJAEGRyAADgNdgE3XIAYQB2AGUAO4DAAMBA8CFoYZFj4SFjcgBhZAAAoFMqAAFncIsAjgBvAG4ABGFmAADgNdg43fAlbHlGdW5jdGlvbgCgYSBpAG4AZwA7gMUAxUAAAWNzpACoAHIAAOA12Jzc6SFnbgCgVCJpAGwAZABlADuAwwDDQG0AbAA7gMQAxEAABGFjZWZvcnN1xQDYANoA7QDxAPYA+QD8AAABY3LJAM8AayNzbGFzaAAAoBYidgHTANUAAKDnKmUAZAAAoAYjeQARZIABY3J0AOAA5QDrAGEidXNlAACgNSLuI291bGxpcwCgLCFhAJJjcgAA4DXYBd1wAGYAAOA12Dnd5SF2ZdhiYwDyAOoAbSJwZXEAAKBOIgAHSE9hY2RlZmhpbG9yc3UXARoBHwE6AVIBVQFiAWQBZgGCAakB6QHtAfIBYwB5ACdkUABZADuAqQCpQIABY3B5ACUBKAE1AfUhdGUGYWmg0iJ0KGFsRGlmZmVyZW50aWFsRAAAoEUhbCJleXMAAKAtIQACYWVpb0EBRAFKAU0B8iFvbgxhZABpAGwAO4DHAMdAcgBjAAhhbiJpbnQAAKAwIm8AdAAKYQABZG5ZAV0BaSJsbGEAuGB0I2VyRG90ALdg8gA5AWkAp2NyImNsZQAAAkRNUFRwAXQBeQF9AW8AdAAAoJkiaSJudXMAAKCWIuwhdXMAoJUiaSJtZXMAAKCXIm8AAAFjc4cBlAFrKndpc2VDb250b3VySW50ZWdyYWwAAKAyImUjQ3VybHkAAAFEUZwBpAFvJXVibGVRdW90ZQAAoB0gdSJvdGUAAKAZIAACbG5wdbABtgHNAdgBbwBuAGWgNyIAoHQqgAFnaXQAvAHBAcUB8iJ1ZW50AKBhIm4AdAAAoC8i7yV1ckludGVncmFsAKAuIgABZnLRAdMBAKACIe8iZHVjdACgECJuLnRlckNsb2Nrd2lzZUNvbnRvdXJJbnRlZ3JhbAAAoDMi7yFzcwCgLypjAHIAAOA12J7ccABDoNMiYQBwAACgTSKABURKU1phY2VmaW9zAAsCEgIVAhgCGwIsAjQCOQI9AnMCfwNvoEUh9CJyYWhkAKARKWMAeQACZGMAeQAFZGMAeQAPZIABZ3JzACECJQIoAuchZXIAoCEgcgAAoKEhaAB2AACg5CoAAWF5MAIzAvIhb24OYRRkbAB0oAciYQCUY3IAAOA12AfdAAFhZkECawIAAWNtRQJnAvIjaXRpY2FsAAJBREdUUAJUAl8CYwJjInV0ZQC0YG8AdAFZAloC2WJiJGxlQWN1dGUA3WJyImF2ZQBgYGkibGRlANxi7yFuZACgxCJmJWVyZW50aWFsRAAAoEYhcAR9AgAAAAAAAIECjgIAABoDZgAA4DXYO91EoagAhQKJAm8AdAAAoNwgcSJ1YWwAAKBQIuIhbGUAA0NETFJVVpkCqAK1Au8C/wIRA28AbgB0AG8AdQByAEkAbgB0AGUAZwByAGEA7ADEAW8AdAKvAgAAAACwAqhgbiNBcnJvdwAAoNMhAAFlb7kC0AJmAHQAgAFBUlQAwQLGAs0CciJyb3cAAKDQIekkZ2h0QXJyb3cAoNQhZQDlACsCbgBnAAABTFLWAugC5SFmdAABQVLcAuECciJyb3cAAKD4J+kkZ2h0QXJyb3cAoPon6SRnaHRBcnJvdwCg+SdpImdodAAAAUFU9gL7AnIicm93AACg0iFlAGUAAKCoInAAQQIGAwAAAAALA3Iicm93AACg0SFvJHduQXJyb3cAAKDVIWUlcnRpY2FsQmFyAACgJSJuAAADQUJMUlRhJAM2AzoDWgNxA3oDciJyb3cAAKGTIUJVLAMwA2EAcgAAoBMpcCNBcnJvdwAAoPUhciJldmUAEWPlIWZ00gJDAwAASwMAAFIDaSVnaHRWZWN0b3IAAKBQKWUkZVZlY3RvcgAAoF4p5SJjdG9yQqC9IWEAcgAAoFYpaSJnaHQA1AFiAwAAaQNlJGVWZWN0b3IAAKBfKeUiY3RvckKgwSFhAHIAAKBXKWUAZQBBoKQiciJyb3cAAKCnIXIAcgBvAPcAtAIAAWN0gwOHA3IA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YwAAoN8i4SFycnCgtiEAoD0pgKIqImJjZG9zACsVMBU6FT4VQRVyImNhcAAAoEgqAAFhdTQVNxVwAACgRipwAACgSipvAHQAAKCNInIAAKBFKgDgKiIA/gACYWxydksVURVuFXMVcgByAG2gtyEAoDwpeQCAAWV2dwBYFWUVaRVxAHACXxUAAAAAYxVyAGUA4wAXFXUA4wAZFWUAZQAAoM4iZSJkZ2UAAKDPImUAbgA7gKQApEBlI2Fycm93AAABbHJ7FX8V5SFmdACgtiFpImdodAAAoLchZQDkAG0VAAFjaYsVkRVvAG4AaQBuAPQAkwFuAHQAAKAxImwiY3R5AACgLSOACUFIYWJjZGVmaGlqbG9yc3R1d3oAuBW7Fb8V1RXgFegV+RUKFhUWHxZUFlcWZRbFFtsW7xb7FgUXChdyAPIAtAJhAHIAAKBlKQACZ2xyc8YVyhXOFdAV5yFlcgCgICDlIXRoAKA4IfIA9QxoAHagECAAoKMiawHZFd4VYSJyb3cAAKAPKWEA4wBfAgABYXnkFecV8iFvbg9hNGQAoUYhYW/tFfQVAAFnciEC8RVyAACgyiF0InNlcQAAoHcqgAFnbG0A/xUCFgUWO4CwALBAdABhALRjcCJ0eXYAAKCxKQABaXIOFhIW8yFodACgfykA4DXYId1hAHIAAAFschsWHRYAoMMhAKDCIYACYWVnc3YAKBauAjYWOhY+Fm0AAKHEIm9zLhY0Fm4AZABzoMQi9SFpdACgZiZhIm1tYQDdY2kAbgAAoPIiAKH3AGlvQxZRFmQAZQAAgfcAO29KFksW90BuI3RpbWVzAACgxyJuAPgAUBZjAHkAUmRjAG8CXhYAAAAAYhZyAG4AAKAeI28AcAAAoA0jgAJscHR1dwBuFnEWdRaSFp4W7CFhciRgZgAA4DXYVd0AotkCZW1wc30WhBaJFo0WcQBkoFAibwB0AACgUSJpIm51cwAAoDgi7CF1cwCgFCLxInVhcmUAoKEiYgBsAGUAYgBhAHIAdwBlAGQAZwDlANcAbgCAAWFkaAClFqoWtBZyAHIAbwD3APUMbwB3AG4AYQByAHIAbwB3APMA8xVhI3Jwb29uAAABbHK8FsAWZQBmAPQAHBZpAGcAaAD0AB4WYgHJFs8WawBhAHIAbwD3AJILbwLUFgAAAADYFnIAbgAAoB8jbwBwAACgDCOAAWNvdADhFukW7BYAAXJ55RboFgDgNdi53FVkbAAAoPYp8iFvaxFhAAFkcvMW9xZvAHQAAKDxImkA5qC/JVsSAAFhaP8WAhdyAPIANQNhAPIA1wvhIm5nbGUAoKYpAAFjaQ4XEBd5AF9k5yJyYXJyAKD/JwAJRGFjZGVmZ2xtbm9wcXJzdHV4MRc4F0YXWxcyBF4XaRd5F40XrBe0F78X2RcVGCEYLRg1GEAYAAFEbzUXgRZvAPQA+BUAAWNzPBdCF3UAdABlADuA6QDpQPQhZXIAoG4qAAJhaW95TRdQF1YXWhfyIW9uG2FyAGOgViI7gOoA6kDsIW9uAKBVIk1kbwB0ABdhAAFEcmIXZhdvAHQAAKBSIgDgNdgi3XKhmipuF3QXYQB2AGUAO4DoAOhAZKCWKm8AdAAAoJgqgKGZKmlscwCAF4UXhxfuInRlcnMAoOcjAKATIWSglSpvAHQAAKCXKoABYXBzAJMXlheiF2MAcgATYXQAeQBzogUinxcAAAAAoRdlAHQAAKAFInAAMaADIDMBqRerFwCgBCAAoAUgAAFnc7AXsRdLYXAAAKACIAABZ3C4F7sXbwBuABlhZgAA4DXYVt2AAWFscwDFF8sXzxdyAHOg1SJsAACg4yl1AHMAAKBxKmkAAKG1A2x21RfYF28AbgC1Y/VjAAJjc3V24BfoF/0XEBgAAWlv5BdWF3IAYwAAoFYiaQLuFwAAAADwF+0ADQThIW50AAFnbPUX+Rd0AHIAAKCWKuUhc3MAoJUqgAFhZWkAAxgGGAoYbABzAD1gcwB0AACgXyJ2AESgYSJEAACgeCrwImFyc2wAoOUpAAFEYRkYHRhvAHQAAKBTInIAcgAAoHEpgAFjZGkAJxgqGO0XcgAAoC8hbwD0AIwCAAFhaDEYMhi3YzuA8ADwQAABbXI5GD0YbAA7gOsA60BvAACgrCCAAWNpcABGGEgYSxhsACFgcwD0ACwEAAFlb08YVxhjAHQAYQB0AGkAbwDuABoEbgBlAG4AdABpAGEAbADlADME4Ql1GAAAgRgAAIMYiBgAAAAAoRilGAAAqhgAALsYvhjRGAAA1xgnGWwAbABpAG4AZwBkAG8AdABzAGUA8QBlF3kARGRtImFsZQAAoEAmgAFpbHIAjRiRGJ0Y7CFpZwCgA/tpApcYAAAAAJoYZwAAoAD7aQBnAACgBPsA4DXYI93sIWlnAKAB++whaWcA4GYAagCAAWFsdACvGLIYthh0AACgbSZpAGcAAKAC+24AcwAAoLElbwBmAJJh8AHCGAAAxhhmAADgNdhX3QABYWvJGMwYbADsAGsEdqDUIgCg2SphI3J0aW50AACgDSoAAWFv2hgiGQABY3PeGB8ZsQPnGP0YBRkSGRUZAAAdGbID7xjyGPQY9xj5GAAA+xg7gL0AvUAAoFMhO4C8ALxAAKBVIQCgWSEAoFshswEBGQAAAxkAoFQhAKBWIbQCCxkOGQAAAAAQGTuAvgC+QACgVyEAoFwhNQAAoFghtgEZGQAAGxkAoFohAKBdITgAAKBeIWwAAKBEIHcAbgAAoCIjYwByAADgNdi73IAIRWFiY2RlZmdpamxub3JzdHYARhlKGVoZXhlmGWkZkhmWGZkZnRmgGa0ZxhnLGc8Z4BkjGmygZyIAoIwqgAFjbXAAUBlTGVgZ9SF0ZfVhbQBhAOSgswM6FgCghipyImV2ZQAfYQABaXliGWUZcgBjAB1hM2RvAHQAIWGAoWUibHFzAMYEcBl6GfGhZSLOBAAAdhlsAGEAbgD0AN8EgKF+KmNkbACBGYQZjBljAACgqSpvAHQAb6CAKmyggioAoIQqZeDbIgD+cwAAoJQqcgAA4DXYJN3noGsirATtIWVsAKA3IWMAeQBTZIChdyJFYWoApxmpGasZAKCSKgCgpSoAoKQqAAJFYWVztBm2Gb0ZwhkAoGkicABwoIoq8iFveACgiipxoIgq8aCIKrUZaQBtAACg5yJwAGYAAOA12FjdYQB2AOUAYwIAAWNp0xnWGXIAAKAKIW0AAKFzImVs3BneGQCgjioAoJAqAIM+ADtjZGxxco0E6xn0GfgZ/BkBGgABY2nvGfEZAKCnKnIAAKB6Km8AdAAAoNci0CFhcgCglSl1ImVzdAAAoHwqgAJhZGVscwAKGvQZFhrVBCAa8AEPGgAAFBpwAHIAbwD4AFkZcgAAoHgpcQAAAWxxxAQbGmwAZQBzAPMASRlpAO0A5AQAAWVuJxouGnIjdG5lcXEAAOBpIgD+xQAsGgAFQWFiY2Vma29zeUAaQxpmGmoabRqDGocalhrCGtMacgDyAMwCAAJpbG1yShpOGlAaVBpyAHMA8ABxD2YAvWBpAGwA9AASBQABZHJYGlsaYwB5AEpkAKGUIWN3YBpkGmkAcgAAoEgpAKCtIWEAcgAAoA8h6SFyYyVhgAFhbHIAcxp7Gn8a8iF0c3WgZSZpAHQAAKBlJuwhaXAAoCYg4yFvbgCguSJyAADgNdgl3XMAAAFld4wakRphInJvdwAAoCUpYSJyb3cAAKAmKYACYW1vcHIAnxqjGqcauhq+GnIAcgAAoP8h9CFodACgOyJrAAABbHKsGrMaZSRmdGFycm93AACgqSHpJGdodGFycm93AKCqIWYAAOA12Fnd4iFhcgCgFSCAAWNsdADIGswa0BpyAADgNdi93GEAcwDoAGka8iFvaydhAAFicNca2xr1IWxsAKBDIOghZW4AoBAg4Qr2GgAA/RoAAAgbExsaGwAAIRs7GwAAAAA+G2IbmRuVG6sbAACyG80b0htjAHUAdABlADuA7QDtQAChYyBpeQEbBhtyAGMAO4DuAO5AOGQAAWN4CxsNG3kANWRjAGwAO4ChAKFAAAFmcssCFhsA4DXYJt1yAGEAdgBlADuA7ADsQIChSCFpbm8AJxsyGzYbAAFpbisbLxtuAHQAAKAMKnQAAKAtIuYhaW4AoNwpdABhAACgKSHsIWlnM2GAAWFvcABDG1sbXhuAAWNndABJG0sbWRtyACthgAFlbHAAcQVRG1UbaQBuAOUAyAVhAHIA9AByBWgAMWFmAACgtyJlAGQAtWEAoggiY2ZvdGkbbRt1G3kb4SFyZQCgBSFpAG4AdKAeImkAZQAAoN0pZABvAPQAWxsAoisiY2VscIEbhRuPG5QbYQBsAACguiIAAWdyiRuNG2UAcgDzACMQ4wCCG2EicmhrAACgFyryIW9kAKA8KgACY2dwdJ8boRukG6gbeQBRZG8AbgAvYWYAAOA12FrdYQC5Y3UAZQBzAHQAO4C/AL9AAAFjabUbuRtyAADgNdi+3G4AAKIIIkVkc3bCG8QbyBvQAwCg+SJvAHQAAKD1Inag9CIAoPMiaaBiIOwhZGUpYesB1hsAANkbYwB5AFZkbAA7gO8A70AAA2NmbW9zdeYb7hvyG/Ub+hsFHAABaXnqG+0bcgBjADVhOWRyAADgNdgn3eEhdGg3YnAAZgAA4DXYW93jAf8bAAADHHIAAOA12L/c8iFjeVhk6yFjeVRkAARhY2ZnaGpvcxUcGhwiHCYcKhwtHDAcNRzwIXBhdqC6A/BjAAFleR4cIRzkIWls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ZmdobG1vcHJzdHV3CiwNLBEsHSwnLDEsQCxLLFIsYix6LIQsjyzLLOgs7Sz/LAotcgDyAAkDYQByAACgYykAAWNyFSwbLHUAdABlADuA+gD6QPIACQ1yAOMBIywAACUseQBeZHYAZQBtYQABaXkrLDAscgBjADuA+wD7QENkgAFhYmgANyw6LD0scgDyANEO7CFhY3FhYQDyAOAOAAFpckQsSCzzIWh0AKB+KQDgNdgy3XIAYQB2AGUAO4D5APlAYQFWLF8scgAAAWxyWixcLACgvyEAoL4hbABrAACggCUAAWN0Zix2LG8CbCwAAAAAcyxyAG4AZaAcI3IAAKAcI28AcAAAoA8jcgBpAACg+CUAAWFsfiyBLGMAcgBrYTuAqACoQAABZ3CILIssbwBuAHNhZgAA4DXYZt0AA2FkaGxzdZksniynLLgsuyzFLHIAcgBvAPcACQ1vAHcAbgBhAHIAcgBvAPcA2A5hI3Jwb29uAAABbHKvLLMsZQBmAPQAWyxpAGcAaAD0AF0sdQDzAKYOaQAAocUDaGzBLMIs0mNvAG4AxWPwI2Fycm93cwCgyCGAAWNpdADRLOEs5CxvAtcsAAAAAN4scgBuAGWgHSNyAACgHSNvAHAAAKAOI24AZwBvYXIAaQAAoPklYwByAADgNdjK3IABZGlyAPMs9yz6LG8AdAAAoPAi7CFkZWlhaQBmoLUlAKC0JQABYW0DLQYtcgDyAMosbAA7gPwA/EDhIm5nbGUAoKcpgAdBQkRhY2RlZmxub3Byc3oAJy0qLTAtNC2bLZ0toS2/LcMtxy3TLdgt3C3gLfwtcgDyABADYQByAHag6CoAoOkqYQBzAOgA/gIAAW5yOC08LechcnQAoJwpgANla25wcnN0AJkpSC1NLVQtXi1iLYItYQBwAHAA4QAaHG8AdABoAGkAbgDnAKEXgAFoaXIAoSmzJFotbwBwAPQAdCVooJUh7wD4JgABaXVmLWotZwBtAOEAuygAAWJwbi14LXMjZXRuZXEAceCKIgD+AODLKgD+cyNldG5lcQBx4IsiAP4A4MwqAP4AAWhyhi2KLWUAdADhABIraSNhbmdsZQAAAWxyki2WLeUhZnQAoLIiaSJnaHQAAKCzInkAMmThIXNoAKCiIoABZWxyAKcttC24LWKiKCKuLQAAAACyLWEAcgAAoLsicQAAoFoi7CFpcACg7iIAAWJ0vC1eD2EA8gBfD3IAAOA12DPddAByAOkAlS1zAHUAAAFicM0t0C0A4IIi0iAA4IMi0iBwAGYAAOA12GfdcgBvAPAAWQt0AHIA6QCaLQABY3XkLegtcgAA4DXYy9wAAWJw7C30LW4AAAFFZXUt8S0A4IoiAP5uAAABRWV/LfktAOCLIgD+6SJnemFnAKCaKYADY2Vmb3BycwANLhAuJS4pLiMuLi40LukhcmN1YQABZGkULiEuAAFiZxguHC5hAHIAAKBfKmUAcaAnIgCgWSLlIXJwAKAYIXIAAOA12DTdcABmAADgNdho3WWgQCJhAHQA6ABqD2MAcgAA4DXYzNzjCuQRUC4AAFQuAABYLmIuAAAAAGMubS5wLnQuAAAAAIguki4AAJouJxIqEnQAcgDpAB0ScgAA4DXYNd0AAUFhWy5eLnIA8gDnAnIA8gCTB75jAAFBYWYuaS5yAPIA4AJyAPIAjAdhAPAAeh5pAHMAAKD7IoABZHB0APgReS6DLgABZmx9LoAuAOA12GnddQDzAP8RaQBtAOUABBIAAUFhiy6OLnIA8gDuAnIA8gCaBwABY3GVLgoScgAA4DXYzdwAAXB0nS6hLmwAdQDzACUScgDpACASAARhY2VmaW9zdbEuvC7ELsguzC7PLtQu2S5jAAABdXm2LrsudABlADuA/QD9QE9kAAFpecAuwy5yAGMAd2FLZG4AO4ClAKVAcgAA4DXYNt1jAHkAV2RwAGYAAOA12GrdYwByAADgNdjO3AABY23dLt8ueQBOZGwAO4D/AP9AAAVhY2RlZmhpb3N38y73Lv8uAi8MLxAvEy8YLx0vIi9jInV0ZQB6YQABYXn7Lv4u8iFvbn5hN2RvAHQAfGEAAWV0Bi8KL3QAcgDmAB8QYQC2Y3IAAOA12DfdYwB5ADZk5yJyYXJyAKDdIXAAZgAA4DXYa91jAHIAAOA12M/cAAFqbiYvKC8AoA0gagAAoAwg")});var D$=F((D7)=>{Object.defineProperty(D7,"__esModule",{value:!0});D7.xmlDecodeTree=void 0;var vU=I$();D7.xmlDecodeTree=(0,vU.decodeBase64)("AAJhZ2xxBwARABMAFQBtAg0AAAAAAA8AcAAmYG8AcwAnYHQAPmB0ADxg9SFvdCJg")});var SG=F((T7)=>{Object.defineProperty(T7,"__esModule",{value:!0});T7.BinTrieFlags=void 0;var fG;(function($){$[$.VALUE_LENGTH=49152]="VALUE_LENGTH",$[$.FLAG13=8192]="FLAG13",$[$.BRANCH_LENGTH=8064]="BRANCH_LENGTH",$[$.JUMP_TABLE=127]="JUMP_TABLE"})(fG||(T7.BinTrieFlags=fG={}))});var j$=F((n)=>{Object.defineProperty(n,"__esModule",{value:!0});n.xmlDecodeTree=n.htmlDecodeTree=n.replaceCodePoint=n.fromCodePoint=n.decodeCodePoint=n.EntityDecoder=n.DecodingMode=void 0;n.determineBranch=yG;n.decodeHTML=yU;n.decodeHTMLAttribute=gU;n.decodeHTMLStrict=hU;n.decodeXML=kU;var CG=M$(),jU=P$(),fU=D$(),E1=SG(),c;(function($){$[$.NUM=35]="NUM",$[$.SEMI=59]="SEMI",$[$.EQUALS=61]="EQUALS",$[$.ZERO=48]="ZERO",$[$.NINE=57]="NINE",$[$.LOWER_A=97]="LOWER_A",$[$.LOWER_F=102]="LOWER_F",$[$.LOWER_X=120]="LOWER_X",$[$.LOWER_Z=122]="LOWER_Z",$[$.UPPER_A=65]="UPPER_A",$[$.UPPER_F=70]="UPPER_F",$[$.UPPER_Z=90]="UPPER_Z"})(c||(c={}));var xG=32;function T$($){return $>=c.ZERO&&$<=c.NINE}function SU($){return $>=c.UPPER_A&&$<=c.UPPER_F||$>=c.LOWER_A&&$<=c.LOWER_F}function xU($){return $>=c.UPPER_A&&$<=c.UPPER_Z||$>=c.LOWER_A&&$<=c.LOWER_Z||T$($)}function CU($){return $===c.EQUALS||xU($)}var J1;(function($){$[$.EntityStart=0]="EntityStart",$[$.NumericStart=1]="NumericStart",$[$.NumericDecimal=2]="NumericDecimal",$[$.NumericHex=3]="NumericHex",$[$.NamedEntity=4]="NamedEntity"})(J1||(J1={}));var u1;(function($){$[$.Legacy=0]="Legacy",$[$.Strict=1]="Strict",$[$.Attribute=2]="Attribute"})(u1||(n.DecodingMode=u1={}));class w${constructor($,Z,J){this.decodeTree=$,this.emitCodePoint=Z,this.errors=J,this.state=J1.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=u1.Strict,this.runConsumed=0}startEntity($){this.decodeMode=$,this.state=J1.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1,this.runConsumed=0}write($,Z){switch(this.state){case J1.EntityStart:{if($.charCodeAt(Z)===c.NUM)return this.state=J1.NumericStart,this.consumed+=1,this.stateNumericStart($,Z+1);return this.state=J1.NamedEntity,this.stateNamedEntity($,Z)}case J1.NumericStart:return this.stateNumericStart($,Z);case J1.NumericDecimal:return this.stateNumericDecimal($,Z);case J1.NumericHex:return this.stateNumericHex($,Z);case J1.NamedEntity:return this.stateNamedEntity($,Z)}}stateNumericStart($,Z){if(Z>=$.length)return-1;if(($.charCodeAt(Z)|xG)===c.LOWER_X)return this.state=J1.NumericHex,this.consumed+=1,this.stateNumericHex($,Z+1);return this.state=J1.NumericDecimal,this.stateNumericDecimal($,Z)}stateNumericHex($,Z){while(Z<$.length){let J=$.charCodeAt(Z);if(T$(J)||SU(J)){let G=J<=c.NINE?J-c.ZERO:(J|xG)-c.LOWER_A+10;this.result=this.result*16+G,this.consumed++,Z++}else return this.emitNumericEntity(J,3)}return-1}stateNumericDecimal($,Z){while(Z<$.length){let J=$.charCodeAt(Z);if(T$(J))this.result=this.result*10+(J-c.ZERO),this.consumed++,Z++;else return this.emitNumericEntity(J,2)}return-1}emitNumericEntity($,Z){var J;if(this.consumed<=Z)return(J=this.errors)===null||J===void 0||J.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if($===c.SEMI)this.consumed+=1;else if(this.decodeMode===u1.Strict)return 0;if(this.emitCodePoint((0,CG.replaceCodePoint)(this.result),this.consumed),this.errors){if($!==c.SEMI)this.errors.missingSemicolonAfterCharacterReference();this.errors.validateNumericCharacterReference(this.result)}return this.consumed}stateNamedEntity($,Z){let{decodeTree:J}=this,G=J[this.treeIndex],Y=(G&E1.BinTrieFlags.VALUE_LENGTH)>>14;while(Z<$.length){if(Y===0&&(G&E1.BinTrieFlags.FLAG13)!==0){let Q=(G&E1.BinTrieFlags.BRANCH_LENGTH)>>7;if(this.runConsumed===0){let z=G&E1.BinTrieFlags.JUMP_TABLE;if($.charCodeAt(Z)!==z)return this.result===0?0:this.emitNotTerminatedNamedEntity();Z++,this.excess++,this.runConsumed++}while(this.runConsumed<Q){if(Z>=$.length)return-1;let z=this.runConsumed-1,H=J[this.treeIndex+1+(z>>1)],K=z%2===0?H&255:H>>8&255;if($.charCodeAt(Z)!==K)return this.runConsumed=0,this.result===0?0:this.emitNotTerminatedNamedEntity();Z++,this.excess++,this.runConsumed++}this.runConsumed=0,this.treeIndex+=1+(Q>>1),G=J[this.treeIndex],Y=(G&E1.BinTrieFlags.VALUE_LENGTH)>>14}if(Z>=$.length)break;let X=$.charCodeAt(Z);if(X===c.SEMI&&Y!==0&&(G&E1.BinTrieFlags.FLAG13)!==0)return this.emitNamedEntityData(this.treeIndex,Y,this.consumed+this.excess);if(this.treeIndex=yG(J,G,this.treeIndex+Math.max(1,Y),X),this.treeIndex<0)return this.result===0||this.decodeMode===u1.Attribute&&(Y===0||CU(X))?0:this.emitNotTerminatedNamedEntity();if(G=J[this.treeIndex],Y=(G&E1.BinTrieFlags.VALUE_LENGTH)>>14,Y!==0){if(X===c.SEMI)return this.emitNamedEntityData(this.treeIndex,Y,this.consumed+this.excess);if(this.decodeMode!==u1.Strict&&(G&E1.BinTrieFlags.FLAG13)===0)this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0}Z++,this.excess++}return-1}emitNotTerminatedNamedEntity(){var $;let{result:Z,decodeTree:J}=this,G=(J[Z]&E1.BinTrieFlags.VALUE_LENGTH)>>14;return this.emitNamedEntityData(Z,G,this.consumed),($=this.errors)===null||$===void 0||$.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData($,Z,J){let{decodeTree:G}=this;if(this.emitCodePoint(Z===1?G[$]&~(E1.BinTrieFlags.VALUE_LENGTH|E1.BinTrieFlags.FLAG13):G[$+1],J),Z===3)this.emitCodePoint(G[$+2],J);return J}end(){var $;switch(this.state){case J1.NamedEntity:return this.result!==0&&(this.decodeMode!==u1.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case J1.NumericDecimal:return this.emitNumericEntity(0,2);case J1.NumericHex:return this.emitNumericEntity(0,3);case J1.NumericStart:return($=this.errors)===null||$===void 0||$.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case J1.EntityStart:return 0}}}n.EntityDecoder=w$;function _G($){let Z="",J=new w$($,(G)=>Z+=(0,CG.fromCodePoint)(G));return function(Y,X){let Q=0,z=0;while((z=Y.indexOf("&",z))>=0){Z+=Y.slice(Q,z),J.startEntity(X);let K=J.write(Y,z+1);if(K<0){Q=z+J.end();break}Q=z+K,z=K===0?Q+1:Q}let H=Z+Y.slice(Q);return Z="",H}}function yG($,Z,J,G){let Y=(Z&E1.BinTrieFlags.BRANCH_LENGTH)>>7,X=Z&E1.BinTrieFlags.JUMP_TABLE;if(Y===0)return X!==0&&G===X?J:-1;if(X){let K=G-X;return K<0||K>=Y?-1:$[J+K]-1}let Q=Y+1>>1,z=0,H=Y-1;while(z<=H){let K=z+H>>>1,U=K>>1,W=$[J+U]>>(K&1)*8&255;if(W<G)z=K+1;else if(W>G)H=K-1;else return $[J+Q+K]}return-1}var E$=_G(jU.htmlDecodeTree),_U=_G(fU.xmlDecodeTree);function yU($,Z=u1.Legacy){return E$($,Z)}function gU($){return E$($,u1.Attribute)}function hU($){return E$($,u1.Strict)}function kU($){return _U($,u1.Strict)}var v$=M$();Object.defineProperty(n,"decodeCodePoint",{enumerable:!0,get:function(){return v$.decodeCodePoint}});Object.defineProperty(n,"fromCodePoint",{enumerable:!0,get:function(){return v$.fromCodePoint}});Object.defineProperty(n,"replaceCodePoint",{enumerable:!0,get:function(){return v$.replaceCodePoint}});var bU=P$();Object.defineProperty(n,"htmlDecodeTree",{enumerable:!0,get:function(){return bU.htmlDecodeTree}});var mU=D$();Object.defineProperty(n,"xmlDecodeTree",{enumerable:!0,get:function(){return mU.xmlDecodeTree}})});var f$=F((R6)=>{Object.defineProperty(R6,"__esModule",{value:!0});R6.QuoteType=void 0;var E5=j$(),w;(function($){$[$.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"})(w||(w={}));var M;(function($){$[$.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",$[$.BeforeSpecialT=23]="BeforeSpecialT",$[$.SpecialStartSequence=24]="SpecialStartSequence",$[$.InSpecialTag=25]="InSpecialTag",$[$.InEntity=26]="InEntity"})(M||(M={}));function O0($){return $===w.Space||$===w.NewLine||$===w.Tab||$===w.FormFeed||$===w.CarriageReturn}function w7($){return $===w.Slash||$===w.Gt||O0($)}function uU($){return $>=w.LowerA&&$<=w.LowerZ||$>=w.UpperA&&$<=w.UpperZ}var o0;(function($){$[$.NoValue=0]="NoValue",$[$.Unquoted=1]="Unquoted",$[$.Single=2]="Single",$[$.Double=3]="Double"})(o0||(R6.QuoteType=o0={}));var o={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]),TextareaEnd:new Uint8Array([60,47,116,101,120,116,97,114,101,97]),XmpEnd:new Uint8Array([60,47,120,109,112])};class gG{constructor({xmlMode:$=!1,decodeEntities:Z=!0},J){this.cbs=J,this.state=M.Text,this.buffer="",this.sectionStart=0,this.index=0,this.entityStart=0,this.baseState=M.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.xmlMode=$,this.decodeEntities=Z,this.entityDecoder=new E5.EntityDecoder($?E5.xmlDecodeTree:E5.htmlDecodeTree,(G,Y)=>this.emitCodePoint(G,Y))}reset(){this.state=M.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=M.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}write($){this.offset+=this.buffer.length,this.buffer=$,this.parse()}end(){if(this.running)this.finish()}pause(){this.running=!1}resume(){if(this.running=!0,this.index<this.buffer.length+this.offset)this.parse()}stateText($){if($===w.Lt||!this.decodeEntities&&this.fastForwardTo(w.Lt)){if(this.index>this.sectionStart)this.cbs.ontext(this.sectionStart,this.index);this.state=M.BeforeTagName,this.sectionStart=this.index}else if(this.decodeEntities&&$===w.Amp)this.startEntity()}stateSpecialStartSequence($){let Z=this.sequenceIndex===this.currentSequence.length;if(!(Z?w7($):($|32)===this.currentSequence[this.sequenceIndex]))this.isSpecial=!1;else if(!Z){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=M.InTagName,this.stateInTagName($)}stateInSpecialTag($){if(this.sequenceIndex===this.currentSequence.length){if($===w.Gt||O0($)){let Z=this.index-this.currentSequence.length;if(this.sectionStart<Z){let J=this.index;this.index=Z,this.cbs.ontext(this.sectionStart,Z),this.index=J}this.isSpecial=!1,this.sectionStart=Z+2,this.stateInClosingTagName($);return}this.sequenceIndex=0}if(($|32)===this.currentSequence[this.sequenceIndex])this.sequenceIndex+=1;else if(this.sequenceIndex===0){if(this.currentSequence===o.TitleEnd){if(this.decodeEntities&&$===w.Amp)this.startEntity()}else if(this.fastForwardTo(w.Lt))this.sequenceIndex=1}else this.sequenceIndex=Number($===w.Lt)}stateCDATASequence($){if($===o.Cdata[this.sequenceIndex]){if(++this.sequenceIndex===o.Cdata.length)this.state=M.InCommentLike,this.currentSequence=o.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1}else this.sequenceIndex=0,this.state=M.InDeclaration,this.stateInDeclaration($)}fastForwardTo($){while(++this.index<this.buffer.length+this.offset)if(this.buffer.charCodeAt(this.index-this.offset)===$)return!0;return this.index=this.buffer.length+this.offset-1,!1}stateInCommentLike($){if($===this.currentSequence[this.sequenceIndex]){if(++this.sequenceIndex===this.currentSequence.length){if(this.currentSequence===o.CdataEnd)this.cbs.oncdata(this.sectionStart,this.index,2);else this.cbs.oncomment(this.sectionStart,this.index,2);this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=M.Text}}else if(this.sequenceIndex===0){if(this.fastForwardTo(this.currentSequence[0]))this.sequenceIndex=1}else if($!==this.currentSequence[this.sequenceIndex-1])this.sequenceIndex=0}isTagStartChar($){return this.xmlMode?!w7($):uU($)}startSpecial($,Z){this.isSpecial=!0,this.currentSequence=$,this.sequenceIndex=Z,this.state=M.SpecialStartSequence}stateBeforeTagName($){if($===w.ExclamationMark)this.state=M.BeforeDeclaration,this.sectionStart=this.index+1;else if($===w.Questionmark)this.state=M.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar($)){let Z=$|32;if(this.sectionStart=this.index,this.xmlMode)this.state=M.InTagName;else if(Z===o.ScriptEnd[2])this.state=M.BeforeSpecialS;else if(Z===o.TitleEnd[2]||Z===o.XmpEnd[2])this.state=M.BeforeSpecialT;else this.state=M.InTagName}else if($===w.Slash)this.state=M.BeforeClosingTagName;else this.state=M.Text,this.stateText($)}stateInTagName($){if(w7($))this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=M.BeforeAttributeName,this.stateBeforeAttributeName($)}stateBeforeClosingTagName($){if(O0($));else if($===w.Gt)this.state=M.Text;else this.state=this.isTagStartChar($)?M.InClosingTagName:M.InSpecialComment,this.sectionStart=this.index}stateInClosingTagName($){if($===w.Gt||O0($))this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=M.AfterClosingTagName,this.stateAfterClosingTagName($)}stateAfterClosingTagName($){if($===w.Gt||this.fastForwardTo(w.Gt))this.state=M.Text,this.sectionStart=this.index+1}stateBeforeAttributeName($){if($===w.Gt){if(this.cbs.onopentagend(this.index),this.isSpecial)this.state=M.InSpecialTag,this.sequenceIndex=0;else this.state=M.Text;this.sectionStart=this.index+1}else if($===w.Slash)this.state=M.InSelfClosingTag;else if(!O0($))this.state=M.InAttributeName,this.sectionStart=this.index}stateInSelfClosingTag($){if($===w.Gt)this.cbs.onselfclosingtag(this.index),this.state=M.Text,this.sectionStart=this.index+1,this.isSpecial=!1;else if(!O0($))this.state=M.BeforeAttributeName,this.stateBeforeAttributeName($)}stateInAttributeName($){if($===w.Eq||w7($))this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=this.index,this.state=M.AfterAttributeName,this.stateAfterAttributeName($)}stateAfterAttributeName($){if($===w.Eq)this.state=M.BeforeAttributeValue;else if($===w.Slash||$===w.Gt)this.cbs.onattribend(o0.NoValue,this.sectionStart),this.sectionStart=-1,this.state=M.BeforeAttributeName,this.stateBeforeAttributeName($);else if(!O0($))this.cbs.onattribend(o0.NoValue,this.sectionStart),this.state=M.InAttributeName,this.sectionStart=this.index}stateBeforeAttributeValue($){if($===w.DoubleQuote)this.state=M.InAttributeValueDq,this.sectionStart=this.index+1;else if($===w.SingleQuote)this.state=M.InAttributeValueSq,this.sectionStart=this.index+1;else if(!O0($))this.sectionStart=this.index,this.state=M.InAttributeValueNq,this.stateInAttributeValueNoQuotes($)}handleInAttributeValue($,Z){if($===Z||!this.decodeEntities&&this.fastForwardTo(Z))this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(Z===w.DoubleQuote?o0.Double:o0.Single,this.index+1),this.state=M.BeforeAttributeName;else if(this.decodeEntities&&$===w.Amp)this.startEntity()}stateInAttributeValueDoubleQuotes($){this.handleInAttributeValue($,w.DoubleQuote)}stateInAttributeValueSingleQuotes($){this.handleInAttributeValue($,w.SingleQuote)}stateInAttributeValueNoQuotes($){if(O0($)||$===w.Gt)this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(o0.Unquoted,this.index),this.state=M.BeforeAttributeName,this.stateBeforeAttributeName($);else if(this.decodeEntities&&$===w.Amp)this.startEntity()}stateBeforeDeclaration($){if($===w.OpeningSquareBracket)this.state=M.CDATASequence,this.sequenceIndex=0;else this.state=$===w.Dash?M.BeforeComment:M.InDeclaration}stateInDeclaration($){if($===w.Gt||this.fastForwardTo(w.Gt))this.cbs.ondeclaration(this.sectionStart,this.index),this.state=M.Text,this.sectionStart=this.index+1}stateInProcessingInstruction($){if($===w.Gt||this.fastForwardTo(w.Gt))this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=M.Text,this.sectionStart=this.index+1}stateBeforeComment($){if($===w.Dash)this.state=M.InCommentLike,this.currentSequence=o.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1;else this.state=M.InDeclaration}stateInSpecialComment($){if($===w.Gt||this.fastForwardTo(w.Gt))this.cbs.oncomment(this.sectionStart,this.index,0),this.state=M.Text,this.sectionStart=this.index+1}stateBeforeSpecialS($){let Z=$|32;if(Z===o.ScriptEnd[3])this.startSpecial(o.ScriptEnd,4);else if(Z===o.StyleEnd[3])this.startSpecial(o.StyleEnd,4);else this.state=M.InTagName,this.stateInTagName($)}stateBeforeSpecialT($){switch($|32){case o.TitleEnd[3]:{this.startSpecial(o.TitleEnd,4);break}case o.TextareaEnd[3]:{this.startSpecial(o.TextareaEnd,4);break}case o.XmpEnd[3]:{this.startSpecial(o.XmpEnd,4);break}default:this.state=M.InTagName,this.stateInTagName($)}}startEntity(){this.baseState=this.state,this.state=M.InEntity,this.entityStart=this.index,this.entityDecoder.startEntity(this.xmlMode?E5.DecodingMode.Strict:this.baseState===M.Text||this.baseState===M.InSpecialTag?E5.DecodingMode.Legacy:E5.DecodingMode.Attribute)}stateInEntity(){let $=this.index-this.offset,Z=this.entityDecoder.write(this.buffer,$);if(Z>=0){if(this.state=this.baseState,Z===0)this.index-=1}else{if($<this.buffer.length&&this.buffer.charCodeAt($)===w.Amp){this.state=this.baseState,this.index-=1;return}this.index=this.offset+this.buffer.length-1}}cleanup(){if(this.running&&this.sectionStart!==this.index){if(this.state===M.Text||this.state===M.InSpecialTag&&this.sequenceIndex===0)this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index;else if(this.state===M.InAttributeValueDq||this.state===M.InAttributeValueSq||this.state===M.InAttributeValueNq)this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index}}shouldContinue(){return this.index<this.buffer.length+this.offset&&this.running}parse(){while(this.shouldContinue()){let $=this.buffer.charCodeAt(this.index-this.offset);switch(this.state){case M.Text:{this.stateText($);break}case M.SpecialStartSequence:{this.stateSpecialStartSequence($);break}case M.InSpecialTag:{this.stateInSpecialTag($);break}case M.CDATASequence:{this.stateCDATASequence($);break}case M.InAttributeValueDq:{this.stateInAttributeValueDoubleQuotes($);break}case M.InAttributeName:{this.stateInAttributeName($);break}case M.InCommentLike:{this.stateInCommentLike($);break}case M.InSpecialComment:{this.stateInSpecialComment($);break}case M.BeforeAttributeName:{this.stateBeforeAttributeName($);break}case M.InTagName:{this.stateInTagName($);break}case M.InClosingTagName:{this.stateInClosingTagName($);break}case M.BeforeTagName:{this.stateBeforeTagName($);break}case M.AfterAttributeName:{this.stateAfterAttributeName($);break}case M.InAttributeValueSq:{this.stateInAttributeValueSingleQuotes($);break}case M.BeforeAttributeValue:{this.stateBeforeAttributeValue($);break}case M.BeforeClosingTagName:{this.stateBeforeClosingTagName($);break}case M.AfterClosingTagName:{this.stateAfterClosingTagName($);break}case M.BeforeSpecialS:{this.stateBeforeSpecialS($);break}case M.BeforeSpecialT:{this.stateBeforeSpecialT($);break}case M.InAttributeValueNq:{this.stateInAttributeValueNoQuotes($);break}case M.InSelfClosingTag:{this.stateInSelfClosingTag($);break}case M.InDeclaration:{this.stateInDeclaration($);break}case M.BeforeDeclaration:{this.stateBeforeDeclaration($);break}case M.BeforeComment:{this.stateBeforeComment($);break}case M.InProcessingInstruction:{this.stateInProcessingInstruction($);break}case M.InEntity:{this.stateInEntity();break}}this.index++}this.cleanup()}finish(){if(this.state===M.InEntity)this.entityDecoder.end(),this.state=this.baseState;this.handleTrailingData(),this.cbs.onend()}handleTrailingData(){let $=this.buffer.length+this.offset;if(this.sectionStart>=$)return;if(this.state===M.InCommentLike)if(this.currentSequence===o.CdataEnd)this.cbs.oncdata(this.sectionStart,$,0);else this.cbs.oncomment(this.sectionStart,$,0);else if(this.state===M.InTagName||this.state===M.BeforeAttributeName||this.state===M.BeforeAttributeValue||this.state===M.AfterAttributeName||this.state===M.InAttributeName||this.state===M.InAttributeValueSq||this.state===M.InAttributeValueDq||this.state===M.InAttributeValueNq||this.state===M.InClosingTagName);else this.cbs.ontext(this.sectionStart,$)}emitCodePoint($,Z){if(this.baseState!==M.Text&&this.baseState!==M.InSpecialTag){if(this.sectionStart<this.entityStart)this.cbs.onattribdata(this.sectionStart,this.entityStart);this.sectionStart=this.entityStart+Z,this.index=this.sectionStart-1,this.cbs.onattribentity($)}else{if(this.sectionStart<this.entityStart)this.cbs.ontext(this.sectionStart,this.entityStart);this.sectionStart=this.entityStart+Z,this.index=this.sectionStart-1,this.cbs.ontextentity($,this.sectionStart)}}}R6.default=gG});var S$=F((s1)=>{var lU=s1&&s1.__createBinding||(Object.create?function($,Z,J,G){if(G===void 0)G=J;var Y=Object.getOwnPropertyDescriptor(Z,J);if(!Y||("get"in Y?!Z.__esModule:Y.writable||Y.configurable))Y={enumerable:!0,get:function(){return Z[J]}};Object.defineProperty($,G,Y)}:function($,Z,J,G){if(G===void 0)G=J;$[G]=Z[J]}),cU=s1&&s1.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),pU=s1&&s1.__importStar||function(){var $=function(Z){return $=Object.getOwnPropertyNames||function(J){var G=[];for(var Y in J)if(Object.prototype.hasOwnProperty.call(J,Y))G[G.length]=Y;return G},$(Z)};return function(Z){if(Z&&Z.__esModule)return Z;var J={};if(Z!=null){for(var G=$(Z),Y=0;Y<G.length;Y++)if(G[Y]!=="default")lU(J,Z,G[Y])}return cU(J,Z),J}}();Object.defineProperty(s1,"__esModule",{value:!0});s1.Parser=void 0;var E7=pU(f$()),hG=j$(),v5=new Set(["input","option","optgroup","select","button","datalist","textarea"]),h=new Set(["p"]),kG=new Set(["thead","tbody"]),bG=new Set(["dd","dt"]),mG=new Set(["rt","rp"]),iU=new Map([["tr",new Set(["tr","th","td"])],["th",new Set(["th"])],["td",new Set(["thead","th","td"])],["body",new Set(["head","link","script"])],["li",new Set(["li"])],["p",h],["h1",h],["h2",h],["h3",h],["h4",h],["h5",h],["h6",h],["select",v5],["input",v5],["output",v5],["button",v5],["datalist",v5],["textarea",v5],["option",new Set(["option"])],["optgroup",new Set(["optgroup","option"])],["dd",bG],["dt",bG],["address",h],["article",h],["aside",h],["blockquote",h],["details",h],["div",h],["dl",h],["fieldset",h],["figcaption",h],["figure",h],["footer",h],["form",h],["header",h],["hr",h],["main",h],["nav",h],["ol",h],["pre",h],["section",h],["table",h],["ul",h],["rt",mG],["rp",mG],["tbody",kG],["tfoot",kG]]),dU=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),uG=new Set(["math","svg"]),lG=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignobject","desc","title"]),nU=/\s|\//;class cG{constructor($,Z={}){var J,G,Y,X,Q,z;this.options=Z,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=$!==null&&$!==void 0?$:{},this.htmlMode=!this.options.xmlMode,this.lowerCaseTagNames=(J=Z.lowerCaseTags)!==null&&J!==void 0?J:this.htmlMode,this.lowerCaseAttributeNames=(G=Z.lowerCaseAttributeNames)!==null&&G!==void 0?G:this.htmlMode,this.recognizeSelfClosing=(Y=Z.recognizeSelfClosing)!==null&&Y!==void 0?Y:!this.htmlMode,this.tokenizer=new((X=Z.Tokenizer)!==null&&X!==void 0?X:E7.default)(this.options,this),this.foreignContext=[!this.htmlMode],(z=(Q=this.cbs).onparserinit)===null||z===void 0||z.call(Q,this)}ontext($,Z){var J,G;let Y=this.getSlice($,Z);this.endIndex=Z-1,(G=(J=this.cbs).ontext)===null||G===void 0||G.call(J,Y),this.startIndex=Z}ontextentity($,Z){var J,G;this.endIndex=Z-1,(G=(J=this.cbs).ontext)===null||G===void 0||G.call(J,(0,hG.fromCodePoint)($)),this.startIndex=Z}isVoidElement($){return this.htmlMode&&dU.has($)}onopentagname($,Z){this.endIndex=Z;let J=this.getSlice($,Z);if(this.lowerCaseTagNames)J=J.toLowerCase();this.emitOpenTag(J)}emitOpenTag($){var Z,J,G,Y;this.openTagStart=this.startIndex,this.tagname=$;let X=this.htmlMode&&iU.get($);if(X)while(this.stack.length>0&&X.has(this.stack[0])){let Q=this.stack.shift();(J=(Z=this.cbs).onclosetag)===null||J===void 0||J.call(Z,Q,!0)}if(!this.isVoidElement($)){if(this.stack.unshift($),this.htmlMode){if(uG.has($))this.foreignContext.unshift(!0);else if(lG.has($))this.foreignContext.unshift(!1)}}if((Y=(G=this.cbs).onopentagname)===null||Y===void 0||Y.call(G,$),this.cbs.onopentag)this.attribs={}}endOpenTag($){var Z,J;if(this.startIndex=this.openTagStart,this.attribs)(J=(Z=this.cbs).onopentag)===null||J===void 0||J.call(Z,this.tagname,this.attribs,$),this.attribs=null;if(this.cbs.onclosetag&&this.isVoidElement(this.tagname))this.cbs.onclosetag(this.tagname,!0);this.tagname=""}onopentagend($){this.endIndex=$,this.endOpenTag(!1),this.startIndex=$+1}onclosetag($,Z){var J,G,Y,X,Q,z,H,K;this.endIndex=Z;let U=this.getSlice($,Z);if(this.lowerCaseTagNames)U=U.toLowerCase();if(this.htmlMode&&(uG.has(U)||lG.has(U)))this.foreignContext.shift();if(!this.isVoidElement(U)){let O=this.stack.indexOf(U);if(O!==-1)for(let W=0;W<=O;W++){let L=this.stack.shift();(G=(J=this.cbs).onclosetag)===null||G===void 0||G.call(J,L,W!==O)}else if(this.htmlMode&&U==="p")this.emitOpenTag("p"),this.closeCurrentTag(!0)}else if(this.htmlMode&&U==="br")(X=(Y=this.cbs).onopentagname)===null||X===void 0||X.call(Y,"br"),(z=(Q=this.cbs).onopentag)===null||z===void 0||z.call(Q,"br",{},!0),(K=(H=this.cbs).onclosetag)===null||K===void 0||K.call(H,"br",!1);this.startIndex=Z+1}onselfclosingtag($){if(this.endIndex=$,this.recognizeSelfClosing||this.foreignContext[0])this.closeCurrentTag(!1),this.startIndex=$+1;else this.onopentagend($)}closeCurrentTag($){var Z,J;let G=this.tagname;if(this.endOpenTag($),this.stack[0]===G)(J=(Z=this.cbs).onclosetag)===null||J===void 0||J.call(Z,G,!$),this.stack.shift()}onattribname($,Z){this.startIndex=$;let J=this.getSlice($,Z);this.attribname=this.lowerCaseAttributeNames?J.toLowerCase():J}onattribdata($,Z){this.attribvalue+=this.getSlice($,Z)}onattribentity($){this.attribvalue+=(0,hG.fromCodePoint)($)}onattribend($,Z){var J,G;if(this.endIndex=Z,(G=(J=this.cbs).onattribute)===null||G===void 0||G.call(J,this.attribname,this.attribvalue,$===E7.QuoteType.Double?'"':$===E7.QuoteType.Single?"'":$===E7.QuoteType.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname))this.attribs[this.attribname]=this.attribvalue;this.attribvalue=""}getInstructionName($){let Z=$.search(nU),J=Z<0?$:$.substr(0,Z);if(this.lowerCaseTagNames)J=J.toLowerCase();return J}ondeclaration($,Z){this.endIndex=Z;let J=this.getSlice($,Z);if(this.cbs.onprocessinginstruction){let G=this.getInstructionName(J);this.cbs.onprocessinginstruction(`!${G}`,`!${J}`)}this.startIndex=Z+1}onprocessinginstruction($,Z){this.endIndex=Z;let J=this.getSlice($,Z);if(this.cbs.onprocessinginstruction){let G=this.getInstructionName(J);this.cbs.onprocessinginstruction(`?${G}`,`?${J}`)}this.startIndex=Z+1}oncomment($,Z,J){var G,Y,X,Q;this.endIndex=Z,(Y=(G=this.cbs).oncomment)===null||Y===void 0||Y.call(G,this.getSlice($,Z-J)),(Q=(X=this.cbs).oncommentend)===null||Q===void 0||Q.call(X),this.startIndex=Z+1}oncdata($,Z,J){var G,Y,X,Q,z,H,K,U,O,W;this.endIndex=Z;let L=this.getSlice($,Z-J);if(!this.htmlMode||this.options.recognizeCDATA)(Y=(G=this.cbs).oncdatastart)===null||Y===void 0||Y.call(G),(Q=(X=this.cbs).ontext)===null||Q===void 0||Q.call(X,L),(H=(z=this.cbs).oncdataend)===null||H===void 0||H.call(z);else(U=(K=this.cbs).oncomment)===null||U===void 0||U.call(K,`[CDATA[${L}]]`),(W=(O=this.cbs).oncommentend)===null||W===void 0||W.call(O);this.startIndex=Z+1}onend(){var $,Z;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(let J=0;J<this.stack.length;J++)this.cbs.onclosetag(this.stack[J],!0)}(Z=($=this.cbs).onend)===null||Z===void 0||Z.call($)}reset(){var $,Z,J,G;(Z=($=this.cbs).onreset)===null||Z===void 0||Z.call($),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,(G=(J=this.cbs).onparserinit)===null||G===void 0||G.call(J,this),this.buffers.length=0,this.foreignContext.length=0,this.foreignContext.unshift(!this.htmlMode),this.bufferOffset=0,this.writeIndex=0,this.ended=!1}parseComplete($){this.reset(),this.end($)}getSlice($,Z){while($-this.bufferOffset>=this.buffers[0].length)this.shiftBuffer();let J=this.buffers[0].slice($-this.bufferOffset,Z-this.bufferOffset);while(Z-this.bufferOffset>this.buffers[0].length)this.shiftBuffer(),J+=this.buffers[0].slice(0,Z-this.bufferOffset);return J}shiftBuffer(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}write($){var Z,J;if(this.ended){(J=(Z=this.cbs).onerror)===null||J===void 0||J.call(Z,Error(".write() after done!"));return}if(this.buffers.push($),this.tokenizer.running)this.tokenizer.write($),this.writeIndex++}end($){var Z,J;if(this.ended){(J=(Z=this.cbs).onerror)===null||J===void 0||J.call(Z,Error(".end() after done!"));return}if($)this.write($);this.ended=!0,this.tokenizer.end()}pause(){this.tokenizer.pause()}resume(){this.tokenizer.resume();while(this.tokenizer.running&&this.writeIndex<this.buffers.length)this.tokenizer.write(this.buffers[this.writeIndex++]);if(this.ended)this.tokenizer.end()}parseChunk($){this.write($)}done($){this.end($)}}s1.Parser=cG});var pG=F((x$)=>{Object.defineProperty(x$,"__esModule",{value:!0});x$.default=new Uint16Array("ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\x00\x00\x00\x00\x00\x00ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀ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;慆Ѱ̽\x00\x00\x00͔͂\x00Ѕf;쀀\uD835\uDD3Bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\x00\x00ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\x00\x00ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\x00ц\x00ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\x00ѱ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ɓԆ\x00\x00Ԓ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ɓ֗\x00\x00֣mallSquare;旼erySmallSquare;斪Ͱֺ\x00ֿ\x00\x00ׄ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;愋ǰگ\x00ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\x00ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\uD835\uDD40a;䎙cr;愐ilde;䄨ǫޚ\x00ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀\uD835\uDD0Dpf;쀀\uD835\uDD41ǣ߇\x00ߌ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ǵࢷ\x00ࣃbleBracket;柦nǔࣈ\x00࣒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୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢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;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀\uD835\uDCAB;䎨ȀUfos༑༖༛༟OT耻\"䀢r;쀀\uD835\uDD14pf;愚cr;쀀\uD835\uDCACBEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾ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ǵ\x00စbleBracket;柧nǔည\x00န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ɲᅭ\x00\x00ᅰ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ኀ\x00ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\uD835\uDD4BipleDot;惛Āctዖዛr;쀀\uD835\uDCAFrok;䅦ૡዷጎጚጦ\x00ጬጱ\x00\x00\x00\x00\x00ጸጽ፷ᎅ\x00ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\x00y;䐎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ᕔ\x00ᕛoWidtèa;䎖r;愨pf;愤cr;쀀\uD835\uDCB5ᖃᖊᖐ\x00ᖰᖶᖿ\x00\x00\x00\x00ᗆᗛᗫᙟ᙭\x00ᚕ᚛ᚲᚹ\x00ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\uD835\uDD1Erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\x00\x00ᘊʀ;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Ā;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀\uD835\uDD1Fgcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\x00\x00ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\x00ᠳƲᠯ\x00ᠱ;斒;斑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Ā;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\x00᧨ᨑᨕᨲ\x00ᨷᩐ\x00\x00᪴\x00\x00᫁\x00\x00ᬡᬮ᭒\x00᯽\x00ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\x00᧸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ɡᩴ\x00\x00᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\x00ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\x00\x00aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\x00ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\uD835\uDD54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\uD835\uDCB8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\x00\x00᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\x00\x00ᯒ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ɯᴆ\x00\x00ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\uD835\uDD55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\x00\x00ᶎ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»Ḯɩỹ\x00\x00ỻíՈ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åչৡᾒ\x00ᾞ\x00ᾡᾧ\x00\x00ῆῌ\x00ΐ\x00ῦῪ \x00 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\x00\x00᾽g;耀ffig;耀ffl;쀀\uD835\uDD23lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\x00ῳf;쀀\uD835\uDD57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\x00⁐β•‥‧\x00耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\x00‶;慔;慖ʴ‾⁁\x00\x00⁃耻¾䂾;慗;慜5;慘ƶ⁌\x00⁎;慚;慝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ↄⅪ←ٖ↛ǰ↉\x00proø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»ᱛૡ⊣\x00⊪\x00⊸⋅⋎\x00⋕⋳\x00\x00⋸⌢⍧⍢⍿\x00⎆⎪⎴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;䄩ǫ⎸\x00⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\uD835\uDD27ath;䈷pf;쀀\uD835\uDD5Bǣ⏬\x00⏱r;쀀\uD835\uDCBFrcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\uD835\uDD28reen;䄸cy;䑅cy;䑜pf;쀀\uD835\uDD5Ccr;쀀\uD835\uDCC0ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\x00⒪\x00⒱\x00\x00\x00\x00\x00⒵Ⓔ\x00ⓆⓈⓍ\x00⓹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⧟\x00⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\x00⧻;橃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ɭ⬅\x00\x00⯖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;椧ቓ᪕\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00ⴭ\x00ⴸⵈⵠⵥⶄᬇ\x00\x00ⶍⶫ\x00ⷈⷎ\x00ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀\uD835\uDD2Cͯ\x00\x00\x00ⶂ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;挽ૡ\x00\x00⺀⺝\x00⺢⺹\x00\x00⻋ຜ\x00⼓\x00\x00⼫⾼\x00⿈rȀ;astЃ脀¶;l䂶leìЃɩ\x00\x00m;櫳;櫽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;楨;愞ൡ㋕㋛㋟㌬㌸㍱\x00㍺㎤\x00\x00㏬㏰\x00㐨㑈㑚㒭㒱㓊㓱\x00㘖\x00\x00㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\x00㋼;檸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ɭ㎙\x00\x00㎜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耻ß䃟㙑㙝㙠ዎ㙳㙹\x00㙾㛂\x00\x00\x00\x00\x00㛛㜃\x00㜉㝬\x00\x00\x00㞇ɲ㙖\x00\x00㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\uD835\uDD31Ȁeiko㚆㚝㚵㚼Dz㚋\x00㚑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ǣ㟪\x00㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\uD835\uDD32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\x00\x00㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\uD835\uDD66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\x00\x00㣁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ૣណ㪇\x00㪋\x00㪐㪛\x00\x00㪝㪨㪫㪯\x00\x00㫃㫎\x00㫘ៜ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($){return $.charCodeAt(0)}))});var iG=F((C$)=>{Object.defineProperty(C$,"__esModule",{value:!0});C$.default=new Uint16Array("Ȁaglq\t\x15\x18\x1Bɭ\x0F\x00\x00\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function($){return $.charCodeAt(0)}))});var y$=F((S0)=>{var _$;Object.defineProperty(S0,"__esModule",{value:!0});S0.replaceCodePoint=S0.fromCodePoint=void 0;var aU=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]]);S0.fromCodePoint=(_$=String.fromCodePoint)!==null&&_$!==void 0?_$:function($){var Z="";if($>65535)$-=65536,Z+=String.fromCharCode($>>>10&1023|55296),$=56320|$&1023;return Z+=String.fromCharCode($),Z};function dG($){var Z;if($>=55296&&$<=57343||$>1114111)return 65533;return(Z=aU.get($))!==null&&Z!==void 0?Z:$}S0.replaceCodePoint=dG;function rU($){return(0,S0.fromCodePoint)(dG($))}S0.default=rU});var b$=F((x)=>{var oU=x&&x.__createBinding||(Object.create?function($,Z,J,G){if(G===void 0)G=J;var Y=Object.getOwnPropertyDescriptor(Z,J);if(!Y||("get"in Y?!Z.__esModule:Y.writable||Y.configurable))Y={enumerable:!0,get:function(){return Z[J]}};Object.defineProperty($,G,Y)}:function($,Z,J,G){if(G===void 0)G=J;$[G]=Z[J]}),sU=x&&x.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),tU=x&&x.__importStar||function($){if($&&$.__esModule)return $;var Z={};if($!=null){for(var J in $)if(J!=="default"&&Object.prototype.hasOwnProperty.call($,J))oU(Z,$,J)}return sU(Z,$),Z},nG=x&&x.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(x,"__esModule",{value:!0});x.decodeXML=x.decodeHTMLStrict=x.decodeHTMLAttribute=x.decodeHTML=x.determineBranch=x.EntityDecoder=x.DecodingMode=x.BinTrieFlags=x.fromCodePoint=x.replaceCodePoint=x.decodeCodePoint=x.xmlDecodeTree=x.htmlDecodeTree=void 0;var aG=nG(pG());x.htmlDecodeTree=aG.default;var rG=nG(iG());x.xmlDecodeTree=rG.default;var h$=tU(y$());x.decodeCodePoint=h$.default;var oG=y$();Object.defineProperty(x,"replaceCodePoint",{enumerable:!0,get:function(){return oG.replaceCodePoint}});Object.defineProperty(x,"fromCodePoint",{enumerable:!0,get:function(){return oG.fromCodePoint}});var Y1;(function($){$[$.NUM=35]="NUM",$[$.SEMI=59]="SEMI",$[$.EQUALS=61]="EQUALS",$[$.ZERO=48]="ZERO",$[$.NINE=57]="NINE",$[$.LOWER_A=97]="LOWER_A",$[$.LOWER_F=102]="LOWER_F",$[$.LOWER_X=120]="LOWER_X",$[$.LOWER_Z=122]="LOWER_Z",$[$.UPPER_A=65]="UPPER_A",$[$.UPPER_F=70]="UPPER_F",$[$.UPPER_Z=90]="UPPER_Z"})(Y1||(Y1={}));var eU=32,s0;(function($){$[$.VALUE_LENGTH=49152]="VALUE_LENGTH",$[$.BRANCH_LENGTH=16256]="BRANCH_LENGTH",$[$.JUMP_TABLE=127]="JUMP_TABLE"})(s0=x.BinTrieFlags||(x.BinTrieFlags={}));function g$($){return $>=Y1.ZERO&&$<=Y1.NINE}function $O($){return $>=Y1.UPPER_A&&$<=Y1.UPPER_F||$>=Y1.LOWER_A&&$<=Y1.LOWER_F}function ZO($){return $>=Y1.UPPER_A&&$<=Y1.UPPER_Z||$>=Y1.LOWER_A&&$<=Y1.LOWER_Z||g$($)}function JO($){return $===Y1.EQUALS||ZO($)}var G1;(function($){$[$.EntityStart=0]="EntityStart",$[$.NumericStart=1]="NumericStart",$[$.NumericDecimal=2]="NumericDecimal",$[$.NumericHex=3]="NumericHex",$[$.NamedEntity=4]="NamedEntity"})(G1||(G1={}));var t1;(function($){$[$.Legacy=0]="Legacy",$[$.Strict=1]="Strict",$[$.Attribute=2]="Attribute"})(t1=x.DecodingMode||(x.DecodingMode={}));var sG=function(){function $(Z,J,G){this.decodeTree=Z,this.emitCodePoint=J,this.errors=G,this.state=G1.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=t1.Strict}return $.prototype.startEntity=function(Z){this.decodeMode=Z,this.state=G1.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},$.prototype.write=function(Z,J){switch(this.state){case G1.EntityStart:{if(Z.charCodeAt(J)===Y1.NUM)return this.state=G1.NumericStart,this.consumed+=1,this.stateNumericStart(Z,J+1);return this.state=G1.NamedEntity,this.stateNamedEntity(Z,J)}case G1.NumericStart:return this.stateNumericStart(Z,J);case G1.NumericDecimal:return this.stateNumericDecimal(Z,J);case G1.NumericHex:return this.stateNumericHex(Z,J);case G1.NamedEntity:return this.stateNamedEntity(Z,J)}},$.prototype.stateNumericStart=function(Z,J){if(J>=Z.length)return-1;if((Z.charCodeAt(J)|eU)===Y1.LOWER_X)return this.state=G1.NumericHex,this.consumed+=1,this.stateNumericHex(Z,J+1);return this.state=G1.NumericDecimal,this.stateNumericDecimal(Z,J)},$.prototype.addToNumericResult=function(Z,J,G,Y){if(J!==G){var X=G-J;this.result=this.result*Math.pow(Y,X)+parseInt(Z.substr(J,X),Y),this.consumed+=X}},$.prototype.stateNumericHex=function(Z,J){var G=J;while(J<Z.length){var Y=Z.charCodeAt(J);if(g$(Y)||$O(Y))J+=1;else return this.addToNumericResult(Z,G,J,16),this.emitNumericEntity(Y,3)}return this.addToNumericResult(Z,G,J,16),-1},$.prototype.stateNumericDecimal=function(Z,J){var G=J;while(J<Z.length){var Y=Z.charCodeAt(J);if(g$(Y))J+=1;else return this.addToNumericResult(Z,G,J,10),this.emitNumericEntity(Y,2)}return this.addToNumericResult(Z,G,J,10),-1},$.prototype.emitNumericEntity=function(Z,J){var G;if(this.consumed<=J)return(G=this.errors)===null||G===void 0||G.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(Z===Y1.SEMI)this.consumed+=1;else if(this.decodeMode===t1.Strict)return 0;if(this.emitCodePoint((0,h$.replaceCodePoint)(this.result),this.consumed),this.errors){if(Z!==Y1.SEMI)this.errors.missingSemicolonAfterCharacterReference();this.errors.validateNumericCharacterReference(this.result)}return this.consumed},$.prototype.stateNamedEntity=function(Z,J){var G=this.decodeTree,Y=G[this.treeIndex],X=(Y&s0.VALUE_LENGTH)>>14;for(;J<Z.length;J++,this.excess++){var Q=Z.charCodeAt(J);if(this.treeIndex=eG(G,Y,this.treeIndex+Math.max(1,X),Q),this.treeIndex<0)return this.result===0||this.decodeMode===t1.Attribute&&(X===0||JO(Q))?0:this.emitNotTerminatedNamedEntity();if(Y=G[this.treeIndex],X=(Y&s0.VALUE_LENGTH)>>14,X!==0){if(Q===Y1.SEMI)return this.emitNamedEntityData(this.treeIndex,X,this.consumed+this.excess);if(this.decodeMode!==t1.Strict)this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0}}return-1},$.prototype.emitNotTerminatedNamedEntity=function(){var Z,J=this,G=J.result,Y=J.decodeTree,X=(Y[G]&s0.VALUE_LENGTH)>>14;return this.emitNamedEntityData(G,X,this.consumed),(Z=this.errors)===null||Z===void 0||Z.missingSemicolonAfterCharacterReference(),this.consumed},$.prototype.emitNamedEntityData=function(Z,J,G){var Y=this.decodeTree;if(this.emitCodePoint(J===1?Y[Z]&~s0.VALUE_LENGTH:Y[Z+1],G),J===3)this.emitCodePoint(Y[Z+2],G);return G},$.prototype.end=function(){var Z;switch(this.state){case G1.NamedEntity:return this.result!==0&&(this.decodeMode!==t1.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case G1.NumericDecimal:return this.emitNumericEntity(0,2);case G1.NumericHex:return this.emitNumericEntity(0,3);case G1.NumericStart:return(Z=this.errors)===null||Z===void 0||Z.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case G1.EntityStart:return 0}},$}();x.EntityDecoder=sG;function tG($){var Z="",J=new sG($,function(G){return Z+=(0,h$.fromCodePoint)(G)});return function(Y,X){var Q=0,z=0;while((z=Y.indexOf("&",z))>=0){Z+=Y.slice(Q,z),J.startEntity(X);var H=J.write(Y,z+1);if(H<0){Q=z+J.end();break}Q=z+H,z=H===0?Q+1:Q}var K=Z+Y.slice(Q);return Z="",K}}function eG($,Z,J,G){var Y=(Z&s0.BRANCH_LENGTH)>>7,X=Z&s0.JUMP_TABLE;if(Y===0)return X!==0&&G===X?J:-1;if(X){var Q=G-X;return Q<0||Q>=Y?-1:$[J+Q]-1}var z=J,H=z+Y-1;while(z<=H){var K=z+H>>>1,U=$[K];if(U<G)z=K+1;else if(U>G)H=K-1;else return $[K+Y]}return-1}x.determineBranch=eG;var k$=tG(aG.default),GO=tG(rG.default);function YO($,Z){if(Z===void 0)Z=t1.Legacy;return k$($,Z)}x.decodeHTML=YO;function XO($){return k$($,t1.Attribute)}x.decodeHTMLAttribute=XO;function QO($){return k$($,t1.Strict)}x.decodeHTMLStrict=QO;function HO($){return GO($,t1.Strict)}x.decodeXML=HO});var $Y=F((m$)=>{Object.defineProperty(m$,"__esModule",{value:!0});function v7($){for(var Z=1;Z<$.length;Z++)$[Z][0]+=$[Z-1][0]+1;return $}m$.default=new Map(v7([[9,"	"],[0,"
"],[22,"!"],[0,"""],[0,"#"],[0,"$"],[0,"%"],[0,"&"],[0,"'"],[0,"("],[0,")"],[0,"*"],[0,"+"],[0,","],[1,"."],[0,"/"],[10,":"],[0,";"],[0,{v:"<",n:8402,o:"<⃒"}],[0,{v:"=",n:8421,o:"=⃥"}],[0,{v:">",n:8402,o:">⃒"}],[0,"?"],[0,"@"],[26,"["],[0,"\"],[0,"]"],[0,"^"],[0,"_"],[0,"`"],[5,{n:106,o:"fj"}],[20,"{"],[0,"|"],[0,"}"],[34," "],[0,"¡"],[0,"¢"],[0,"£"],[0,"¤"],[0,"¥"],[0,"¦"],[0,"§"],[0,"¨"],[0,"©"],[0,"ª"],[0,"«"],[0,"¬"],[0,"­"],[0,"®"],[0,"¯"],[0,"°"],[0,"±"],[0,"²"],[0,"³"],[0,"´"],[0,"µ"],[0,"¶"],[0,"·"],[0,"¸"],[0,"¹"],[0,"º"],[0,"»"],[0,"¼"],[0,"½"],[0,"¾"],[0,"¿"],[0,"À"],[0,"Á"],[0,"Â"],[0,"Ã"],[0,"Ä"],[0,"Å"],[0,"Æ"],[0,"Ç"],[0,"È"],[0,"É"],[0,"Ê"],[0,"Ë"],[0,"Ì"],[0,"Í"],[0,"Î"],[0,"Ï"],[0,"Ð"],[0,"Ñ"],[0,"Ò"],[0,"Ó"],[0,"Ô"],[0,"Õ"],[0,"Ö"],[0,"×"],[0,"Ø"],[0,"Ù"],[0,"Ú"],[0,"Û"],[0,"Ü"],[0,"Ý"],[0,"Þ"],[0,"ß"],[0,"à"],[0,"á"],[0,"â"],[0,"ã"],[0,"ä"],[0,"å"],[0,"æ"],[0,"ç"],[0,"è"],[0,"é"],[0,"ê"],[0,"ë"],[0,"ì"],[0,"í"],[0,"î"],[0,"ï"],[0,"ð"],[0,"ñ"],[0,"ò"],[0,"ó"],[0,"ô"],[0,"õ"],[0,"ö"],[0,"÷"],[0,"ø"],[0,"ù"],[0,"ú"],[0,"û"],[0,"ü"],[0,"ý"],[0,"þ"],[0,"ÿ"],[0,"Ā"],[0,"ā"],[0,"Ă"],[0,"ă"],[0,"Ą"],[0,"ą"],[0,"Ć"],[0,"ć"],[0,"Ĉ"],[0,"ĉ"],[0,"Ċ"],[0,"ċ"],[0,"Č"],[0,"č"],[0,"Ď"],[0,"ď"],[0,"Đ"],[0,"đ"],[0,"Ē"],[0,"ē"],[2,"Ė"],[0,"ė"],[0,"Ę"],[0,"ę"],[0,"Ě"],[0,"ě"],[0,"Ĝ"],[0,"ĝ"],[0,"Ğ"],[0,"ğ"],[0,"Ġ"],[0,"ġ"],[0,"Ģ"],[1,"Ĥ"],[0,"ĥ"],[0,"Ħ"],[0,"ħ"],[0,"Ĩ"],[0,"ĩ"],[0,"Ī"],[0,"ī"],[2,"Į"],[0,"į"],[0,"İ"],[0,"ı"],[0,"IJ"],[0,"ij"],[0,"Ĵ"],[0,"ĵ"],[0,"Ķ"],[0,"ķ"],[0,"ĸ"],[0,"Ĺ"],[0,"ĺ"],[0,"Ļ"],[0,"ļ"],[0,"Ľ"],[0,"ľ"],[0,"Ŀ"],[0,"ŀ"],[0,"Ł"],[0,"ł"],[0,"Ń"],[0,"ń"],[0,"Ņ"],[0,"ņ"],[0,"Ň"],[0,"ň"],[0,"ʼn"],[0,"Ŋ"],[0,"ŋ"],[0,"Ō"],[0,"ō"],[2,"Ő"],[0,"ő"],[0,"Œ"],[0,"œ"],[0,"Ŕ"],[0,"ŕ"],[0,"Ŗ"],[0,"ŗ"],[0,"Ř"],[0,"ř"],[0,"Ś"],[0,"ś"],[0,"Ŝ"],[0,"ŝ"],[0,"Ş"],[0,"ş"],[0,"Š"],[0,"š"],[0,"Ţ"],[0,"ţ"],[0,"Ť"],[0,"ť"],[0,"Ŧ"],[0,"ŧ"],[0,"Ũ"],[0,"ũ"],[0,"Ū"],[0,"ū"],[0,"Ŭ"],[0,"ŭ"],[0,"Ů"],[0,"ů"],[0,"Ű"],[0,"ű"],[0,"Ų"],[0,"ų"],[0,"Ŵ"],[0,"ŵ"],[0,"Ŷ"],[0,"ŷ"],[0,"Ÿ"],[0,"Ź"],[0,"ź"],[0,"Ż"],[0,"ż"],[0,"Ž"],[0,"ž"],[19,"ƒ"],[34,"Ƶ"],[63,"ǵ"],[65,"ȷ"],[142,"ˆ"],[0,"ˇ"],[16,"˘"],[0,"˙"],[0,"˚"],[0,"˛"],[0,"˜"],[0,"˝"],[51,"̑"],[127,"Α"],[0,"Β"],[0,"Γ"],[0,"Δ"],[0,"Ε"],[0,"Ζ"],[0,"Η"],[0,"Θ"],[0,"Ι"],[0,"Κ"],[0,"Λ"],[0,"Μ"],[0,"Ν"],[0,"Ξ"],[0,"Ο"],[0,"Π"],[0,"Ρ"],[1,"Σ"],[0,"Τ"],[0,"Υ"],[0,"Φ"],[0,"Χ"],[0,"Ψ"],[0,"Ω"],[7,"α"],[0,"β"],[0,"γ"],[0,"δ"],[0,"ε"],[0,"ζ"],[0,"η"],[0,"θ"],[0,"ι"],[0,"κ"],[0,"λ"],[0,"μ"],[0,"ν"],[0,"ξ"],[0,"ο"],[0,"π"],[0,"ρ"],[0,"ς"],[0,"σ"],[0,"τ"],[0,"υ"],[0,"φ"],[0,"χ"],[0,"ψ"],[0,"ω"],[7,"ϑ"],[0,"ϒ"],[2,"ϕ"],[0,"ϖ"],[5,"Ϝ"],[0,"ϝ"],[18,"ϰ"],[0,"ϱ"],[3,"ϵ"],[0,"϶"],[10,"Ё"],[0,"Ђ"],[0,"Ѓ"],[0,"Є"],[0,"Ѕ"],[0,"І"],[0,"Ї"],[0,"Ј"],[0,"Љ"],[0,"Њ"],[0,"Ћ"],[0,"Ќ"],[1,"Ў"],[0,"Џ"],[0,"А"],[0,"Б"],[0,"В"],[0,"Г"],[0,"Д"],[0,"Е"],[0,"Ж"],[0,"З"],[0,"И"],[0,"Й"],[0,"К"],[0,"Л"],[0,"М"],[0,"Н"],[0,"О"],[0,"П"],[0,"Р"],[0,"С"],[0,"Т"],[0,"У"],[0,"Ф"],[0,"Х"],[0,"Ц"],[0,"Ч"],[0,"Ш"],[0,"Щ"],[0,"Ъ"],[0,"Ы"],[0,"Ь"],[0,"Э"],[0,"Ю"],[0,"Я"],[0,"а"],[0,"б"],[0,"в"],[0,"г"],[0,"д"],[0,"е"],[0,"ж"],[0,"з"],[0,"и"],[0,"й"],[0,"к"],[0,"л"],[0,"м"],[0,"н"],[0,"о"],[0,"п"],[0,"р"],[0,"с"],[0,"т"],[0,"у"],[0,"ф"],[0,"х"],[0,"ц"],[0,"ч"],[0,"ш"],[0,"щ"],[0,"ъ"],[0,"ы"],[0,"ь"],[0,"э"],[0,"ю"],[0,"я"],[1,"ё"],[0,"ђ"],[0,"ѓ"],[0,"є"],[0,"ѕ"],[0,"і"],[0,"ї"],[0,"ј"],[0,"љ"],[0,"њ"],[0,"ћ"],[0,"ќ"],[1,"ў"],[0,"џ"],[7074," "],[0," "],[0," "],[0," "],[1," "],[0," "],[0," "],[0," "],[0,"​"],[0,"‌"],[0,"‍"],[0,"‎"],[0,"‏"],[0,"‐"],[2,"–"],[0,"—"],[0,"―"],[0,"‖"],[1,"‘"],[0,"’"],[0,"‚"],[1,"“"],[0,"”"],[0,"„"],[1,"†"],[0,"‡"],[0,"•"],[2,"‥"],[0,"…"],[9,"‰"],[0,"‱"],[0,"′"],[0,"″"],[0,"‴"],[0,"‵"],[3,"‹"],[0,"›"],[3,"‾"],[2,"⁁"],[1,"⁃"],[0,"⁄"],[10,"⁏"],[7,"⁗"],[7,{v:" ",n:8202,o:"  "}],[0,"⁠"],[0,"⁡"],[0,"⁢"],[0,"⁣"],[72,"€"],[46,"⃛"],[0,"⃜"],[37,"ℂ"],[2,"℅"],[4,"ℊ"],[0,"ℋ"],[0,"ℌ"],[0,"ℍ"],[0,"ℎ"],[0,"ℏ"],[0,"ℐ"],[0,"ℑ"],[0,"ℒ"],[0,"ℓ"],[1,"ℕ"],[0,"№"],[0,"℗"],[0,"℘"],[0,"ℙ"],[0,"ℚ"],[0,"ℛ"],[0,"ℜ"],[0,"ℝ"],[0,"℞"],[3,"™"],[1,"ℤ"],[2,"℧"],[0,"ℨ"],[0,"℩"],[2,"ℬ"],[0,"ℭ"],[1,"ℯ"],[0,"ℰ"],[0,"ℱ"],[1,"ℳ"],[0,"ℴ"],[0,"ℵ"],[0,"ℶ"],[0,"ℷ"],[0,"ℸ"],[12,"ⅅ"],[0,"ⅆ"],[0,"ⅇ"],[0,"ⅈ"],[10,"⅓"],[0,"⅔"],[0,"⅕"],[0,"⅖"],[0,"⅗"],[0,"⅘"],[0,"⅙"],[0,"⅚"],[0,"⅛"],[0,"⅜"],[0,"⅝"],[0,"⅞"],[49,"←"],[0,"↑"],[0,"→"],[0,"↓"],[0,"↔"],[0,"↕"],[0,"↖"],[0,"↗"],[0,"↘"],[0,"↙"],[0,"↚"],[0,"↛"],[1,{v:"↝",n:824,o:"↝̸"}],[0,"↞"],[0,"↟"],[0,"↠"],[0,"↡"],[0,"↢"],[0,"↣"],[0,"↤"],[0,"↥"],[0,"↦"],[0,"↧"],[1,"↩"],[0,"↪"],[0,"↫"],[0,"↬"],[0,"↭"],[0,"↮"],[1,"↰"],[0,"↱"],[0,"↲"],[0,"↳"],[1,"↵"],[0,"↶"],[0,"↷"],[2,"↺"],[0,"↻"],[0,"↼"],[0,"↽"],[0,"↾"],[0,"↿"],[0,"⇀"],[0,"⇁"],[0,"⇂"],[0,"⇃"],[0,"⇄"],[0,"⇅"],[0,"⇆"],[0,"⇇"],[0,"⇈"],[0,"⇉"],[0,"⇊"],[0,"⇋"],[0,"⇌"],[0,"⇍"],[0,"⇎"],[0,"⇏"],[0,"⇐"],[0,"⇑"],[0,"⇒"],[0,"⇓"],[0,"⇔"],[0,"⇕"],[0,"⇖"],[0,"⇗"],[0,"⇘"],[0,"⇙"],[0,"⇚"],[0,"⇛"],[1,"⇝"],[6,"⇤"],[0,"⇥"],[15,"⇵"],[7,"⇽"],[0,"⇾"],[0,"⇿"],[0,"∀"],[0,"∁"],[0,{v:"∂",n:824,o:"∂̸"}],[0,"∃"],[0,"∄"],[0,"∅"],[1,"∇"],[0,"∈"],[0,"∉"],[1,"∋"],[0,"∌"],[2,"∏"],[0,"∐"],[0,"∑"],[0,"−"],[0,"∓"],[0,"∔"],[1,"∖"],[0,"∗"],[0,"∘"],[1,"√"],[2,"∝"],[0,"∞"],[0,"∟"],[0,{v:"∠",n:8402,o:"∠⃒"}],[0,"∡"],[0,"∢"],[0,"∣"],[0,"∤"],[0,"∥"],[0,"∦"],[0,"∧"],[0,"∨"],[0,{v:"∩",n:65024,o:"∩︀"}],[0,{v:"∪",n:65024,o:"∪︀"}],[0,"∫"],[0,"∬"],[0,"∭"],[0,"∮"],[0,"∯"],[0,"∰"],[0,"∱"],[0,"∲"],[0,"∳"],[0,"∴"],[0,"∵"],[0,"∶"],[0,"∷"],[0,"∸"],[1,"∺"],[0,"∻"],[0,{v:"∼",n:8402,o:"∼⃒"}],[0,{v:"∽",n:817,o:"∽̱"}],[0,{v:"∾",n:819,o:"∾̳"}],[0,"∿"],[0,"≀"],[0,"≁"],[0,{v:"≂",n:824,o:"≂̸"}],[0,"≃"],[0,"≄"],[0,"≅"],[0,"≆"],[0,"≇"],[0,"≈"],[0,"≉"],[0,"≊"],[0,{v:"≋",n:824,o:"≋̸"}],[0,"≌"],[0,{v:"≍",n:8402,o:"≍⃒"}],[0,{v:"≎",n:824,o:"≎̸"}],[0,{v:"≏",n:824,o:"≏̸"}],[0,{v:"≐",n:824,o:"≐̸"}],[0,"≑"],[0,"≒"],[0,"≓"],[0,"≔"],[0,"≕"],[0,"≖"],[0,"≗"],[1,"≙"],[0,"≚"],[1,"≜"],[2,"≟"],[0,"≠"],[0,{v:"≡",n:8421,o:"≡⃥"}],[0,"≢"],[1,{v:"≤",n:8402,o:"≤⃒"}],[0,{v:"≥",n:8402,o:"≥⃒"}],[0,{v:"≦",n:824,o:"≦̸"}],[0,{v:"≧",n:824,o:"≧̸"}],[0,{v:"≨",n:65024,o:"≨︀"}],[0,{v:"≩",n:65024,o:"≩︀"}],[0,{v:"≪",n:new Map(v7([[824,"≪̸"],[7577,"≪⃒"]]))}],[0,{v:"≫",n:new Map(v7([[824,"≫̸"],[7577,"≫⃒"]]))}],[0,"≬"],[0,"≭"],[0,"≮"],[0,"≯"],[0,"≰"],[0,"≱"],[0,"≲"],[0,"≳"],[0,"≴"],[0,"≵"],[0,"≶"],[0,"≷"],[0,"≸"],[0,"≹"],[0,"≺"],[0,"≻"],[0,"≼"],[0,"≽"],[0,"≾"],[0,{v:"≿",n:824,o:"≿̸"}],[0,"⊀"],[0,"⊁"],[0,{v:"⊂",n:8402,o:"⊂⃒"}],[0,{v:"⊃",n:8402,o:"⊃⃒"}],[0,"⊄"],[0,"⊅"],[0,"⊆"],[0,"⊇"],[0,"⊈"],[0,"⊉"],[0,{v:"⊊",n:65024,o:"⊊︀"}],[0,{v:"⊋",n:65024,o:"⊋︀"}],[1,"⊍"],[0,"⊎"],[0,{v:"⊏",n:824,o:"⊏̸"}],[0,{v:"⊐",n:824,o:"⊐̸"}],[0,"⊑"],[0,"⊒"],[0,{v:"⊓",n:65024,o:"⊓︀"}],[0,{v:"⊔",n:65024,o:"⊔︀"}],[0,"⊕"],[0,"⊖"],[0,"⊗"],[0,"⊘"],[0,"⊙"],[0,"⊚"],[0,"⊛"],[1,"⊝"],[0,"⊞"],[0,"⊟"],[0,"⊠"],[0,"⊡"],[0,"⊢"],[0,"⊣"],[0,"⊤"],[0,"⊥"],[1,"⊧"],[0,"⊨"],[0,"⊩"],[0,"⊪"],[0,"⊫"],[0,"⊬"],[0,"⊭"],[0,"⊮"],[0,"⊯"],[0,"⊰"],[1,"⊲"],[0,"⊳"],[0,{v:"⊴",n:8402,o:"⊴⃒"}],[0,{v:"⊵",n:8402,o:"⊵⃒"}],[0,"⊶"],[0,"⊷"],[0,"⊸"],[0,"⊹"],[0,"⊺"],[0,"⊻"],[1,"⊽"],[0,"⊾"],[0,"⊿"],[0,"⋀"],[0,"⋁"],[0,"⋂"],[0,"⋃"],[0,"⋄"],[0,"⋅"],[0,"⋆"],[0,"⋇"],[0,"⋈"],[0,"⋉"],[0,"⋊"],[0,"⋋"],[0,"⋌"],[0,"⋍"],[0,"⋎"],[0,"⋏"],[0,"⋐"],[0,"⋑"],[0,"⋒"],[0,"⋓"],[0,"⋔"],[0,"⋕"],[0,"⋖"],[0,"⋗"],[0,{v:"⋘",n:824,o:"⋘̸"}],[0,{v:"⋙",n:824,o:"⋙̸"}],[0,{v:"⋚",n:65024,o:"⋚︀"}],[0,{v:"⋛",n:65024,o:"⋛︀"}],[2,"⋞"],[0,"⋟"],[0,"⋠"],[0,"⋡"],[0,"⋢"],[0,"⋣"],[2,"⋦"],[0,"⋧"],[0,"⋨"],[0,"⋩"],[0,"⋪"],[0,"⋫"],[0,"⋬"],[0,"⋭"],[0,"⋮"],[0,"⋯"],[0,"⋰"],[0,"⋱"],[0,"⋲"],[0,"⋳"],[0,"⋴"],[0,{v:"⋵",n:824,o:"⋵̸"}],[0,"⋶"],[0,"⋷"],[1,{v:"⋹",n:824,o:"⋹̸"}],[0,"⋺"],[0,"⋻"],[0,"⋼"],[0,"⋽"],[0,"⋾"],[6,"⌅"],[0,"⌆"],[1,"⌈"],[0,"⌉"],[0,"⌊"],[0,"⌋"],[0,"⌌"],[0,"⌍"],[0,"⌎"],[0,"⌏"],[0,"⌐"],[1,"⌒"],[0,"⌓"],[1,"⌕"],[0,"⌖"],[5,"⌜"],[0,"⌝"],[0,"⌞"],[0,"⌟"],[2,"⌢"],[0,"⌣"],[9,"⌭"],[0,"⌮"],[7,"⌶"],[6,"⌽"],[1,"⌿"],[60,"⍼"],[51,"⎰"],[0,"⎱"],[2,"⎴"],[0,"⎵"],[0,"⎶"],[37,"⏜"],[0,"⏝"],[0,"⏞"],[0,"⏟"],[2,"⏢"],[4,"⏧"],[59,"␣"],[164,"Ⓢ"],[55,"─"],[1,"│"],[9,"┌"],[3,"┐"],[3,"└"],[3,"┘"],[3,"├"],[7,"┤"],[7,"┬"],[7,"┴"],[7,"┼"],[19,"═"],[0,"║"],[0,"╒"],[0,"╓"],[0,"╔"],[0,"╕"],[0,"╖"],[0,"╗"],[0,"╘"],[0,"╙"],[0,"╚"],[0,"╛"],[0,"╜"],[0,"╝"],[0,"╞"],[0,"╟"],[0,"╠"],[0,"╡"],[0,"╢"],[0,"╣"],[0,"╤"],[0,"╥"],[0,"╦"],[0,"╧"],[0,"╨"],[0,"╩"],[0,"╪"],[0,"╫"],[0,"╬"],[19,"▀"],[3,"▄"],[3,"█"],[8,"░"],[0,"▒"],[0,"▓"],[13,"□"],[8,"▪"],[0,"▫"],[1,"▭"],[0,"▮"],[2,"▱"],[1,"△"],[0,"▴"],[0,"▵"],[2,"▸"],[0,"▹"],[3,"▽"],[0,"▾"],[0,"▿"],[2,"◂"],[0,"◃"],[6,"◊"],[0,"○"],[32,"◬"],[2,"◯"],[8,"◸"],[0,"◹"],[0,"◺"],[0,"◻"],[0,"◼"],[8,"★"],[0,"☆"],[7,"☎"],[49,"♀"],[1,"♂"],[29,"♠"],[2,"♣"],[1,"♥"],[0,"♦"],[3,"♪"],[2,"♭"],[0,"♮"],[0,"♯"],[163,"✓"],[3,"✗"],[8,"✠"],[21,"✶"],[33,"❘"],[25,"❲"],[0,"❳"],[84,"⟈"],[0,"⟉"],[28,"⟦"],[0,"⟧"],[0,"⟨"],[0,"⟩"],[0,"⟪"],[0,"⟫"],[0,"⟬"],[0,"⟭"],[7,"⟵"],[0,"⟶"],[0,"⟷"],[0,"⟸"],[0,"⟹"],[0,"⟺"],[1,"⟼"],[2,"⟿"],[258,"⤂"],[0,"⤃"],[0,"⤄"],[0,"⤅"],[6,"⤌"],[0,"⤍"],[0,"⤎"],[0,"⤏"],[0,"⤐"],[0,"⤑"],[0,"⤒"],[0,"⤓"],[2,"⤖"],[2,"⤙"],[0,"⤚"],[0,"⤛"],[0,"⤜"],[0,"⤝"],[0,"⤞"],[0,"⤟"],[0,"⤠"],[2,"⤣"],[0,"⤤"],[0,"⤥"],[0,"⤦"],[0,"⤧"],[0,"⤨"],[0,"⤩"],[0,"⤪"],[8,{v:"⤳",n:824,o:"⤳̸"}],[1,"⤵"],[0,"⤶"],[0,"⤷"],[0,"⤸"],[0,"⤹"],[2,"⤼"],[0,"⤽"],[7,"⥅"],[2,"⥈"],[0,"⥉"],[0,"⥊"],[0,"⥋"],[2,"⥎"],[0,"⥏"],[0,"⥐"],[0,"⥑"],[0,"⥒"],[0,"⥓"],[0,"⥔"],[0,"⥕"],[0,"⥖"],[0,"⥗"],[0,"⥘"],[0,"⥙"],[0,"⥚"],[0,"⥛"],[0,"⥜"],[0,"⥝"],[0,"⥞"],[0,"⥟"],[0,"⥠"],[0,"⥡"],[0,"⥢"],[0,"⥣"],[0,"⥤"],[0,"⥥"],[0,"⥦"],[0,"⥧"],[0,"⥨"],[0,"⥩"],[0,"⥪"],[0,"⥫"],[0,"⥬"],[0,"⥭"],[0,"⥮"],[0,"⥯"],[0,"⥰"],[0,"⥱"],[0,"⥲"],[0,"⥳"],[0,"⥴"],[0,"⥵"],[0,"⥶"],[1,"⥸"],[0,"⥹"],[1,"⥻"],[0,"⥼"],[0,"⥽"],[0,"⥾"],[0,"⥿"],[5,"⦅"],[0,"⦆"],[4,"⦋"],[0,"⦌"],[0,"⦍"],[0,"⦎"],[0,"⦏"],[0,"⦐"],[0,"⦑"],[0,"⦒"],[0,"⦓"],[0,"⦔"],[0,"⦕"],[0,"⦖"],[3,"⦚"],[1,"⦜"],[0,"⦝"],[6,"⦤"],[0,"⦥"],[0,"⦦"],[0,"⦧"],[0,"⦨"],[0,"⦩"],[0,"⦪"],[0,"⦫"],[0,"⦬"],[0,"⦭"],[0,"⦮"],[0,"⦯"],[0,"⦰"],[0,"⦱"],[0,"⦲"],[0,"⦳"],[0,"⦴"],[0,"⦵"],[0,"⦶"],[0,"⦷"],[1,"⦹"],[1,"⦻"],[0,"⦼"],[1,"⦾"],[0,"⦿"],[0,"⧀"],[0,"⧁"],[0,"⧂"],[0,"⧃"],[0,"⧄"],[0,"⧅"],[3,"⧉"],[3,"⧍"],[0,"⧎"],[0,{v:"⧏",n:824,o:"⧏̸"}],[0,{v:"⧐",n:824,o:"⧐̸"}],[11,"⧜"],[0,"⧝"],[0,"⧞"],[4,"⧣"],[0,"⧤"],[0,"⧥"],[5,"⧫"],[8,"⧴"],[1,"⧶"],[9,"⨀"],[0,"⨁"],[0,"⨂"],[1,"⨄"],[1,"⨆"],[5,"⨌"],[0,"⨍"],[2,"⨐"],[0,"⨑"],[0,"⨒"],[0,"⨓"],[0,"⨔"],[0,"⨕"],[0,"⨖"],[0,"⨗"],[10,"⨢"],[0,"⨣"],[0,"⨤"],[0,"⨥"],[0,"⨦"],[0,"⨧"],[1,"⨩"],[0,"⨪"],[2,"⨭"],[0,"⨮"],[0,"⨯"],[0,"⨰"],[0,"⨱"],[1,"⨳"],[0,"⨴"],[0,"⨵"],[0,"⨶"],[0,"⨷"],[0,"⨸"],[0,"⨹"],[0,"⨺"],[0,"⨻"],[0,"⨼"],[2,"⨿"],[0,"⩀"],[1,"⩂"],[0,"⩃"],[0,"⩄"],[0,"⩅"],[0,"⩆"],[0,"⩇"],[0,"⩈"],[0,"⩉"],[0,"⩊"],[0,"⩋"],[0,"⩌"],[0,"⩍"],[2,"⩐"],[2,"⩓"],[0,"⩔"],[0,"⩕"],[0,"⩖"],[0,"⩗"],[0,"⩘"],[1,"⩚"],[0,"⩛"],[0,"⩜"],[0,"⩝"],[1,"⩟"],[6,"⩦"],[3,"⩪"],[2,{v:"⩭",n:824,o:"⩭̸"}],[0,"⩮"],[0,"⩯"],[0,{v:"⩰",n:824,o:"⩰̸"}],[0,"⩱"],[0,"⩲"],[0,"⩳"],[0,"⩴"],[0,"⩵"],[1,"⩷"],[0,"⩸"],[0,"⩹"],[0,"⩺"],[0,"⩻"],[0,"⩼"],[0,{v:"⩽",n:824,o:"⩽̸"}],[0,{v:"⩾",n:824,o:"⩾̸"}],[0,"⩿"],[0,"⪀"],[0,"⪁"],[0,"⪂"],[0,"⪃"],[0,"⪄"],[0,"⪅"],[0,"⪆"],[0,"⪇"],[0,"⪈"],[0,"⪉"],[0,"⪊"],[0,"⪋"],[0,"⪌"],[0,"⪍"],[0,"⪎"],[0,"⪏"],[0,"⪐"],[0,"⪑"],[0,"⪒"],[0,"⪓"],[0,"⪔"],[0,"⪕"],[0,"⪖"],[0,"⪗"],[0,"⪘"],[0,"⪙"],[0,"⪚"],[2,"⪝"],[0,"⪞"],[0,"⪟"],[0,"⪠"],[0,{v:"⪡",n:824,o:"⪡̸"}],[0,{v:"⪢",n:824,o:"⪢̸"}],[1,"⪤"],[0,"⪥"],[0,"⪦"],[0,"⪧"],[0,"⪨"],[0,"⪩"],[0,"⪪"],[0,"⪫"],[0,{v:"⪬",n:65024,o:"⪬︀"}],[0,{v:"⪭",n:65024,o:"⪭︀"}],[0,"⪮"],[0,{v:"⪯",n:824,o:"⪯̸"}],[0,{v:"⪰",n:824,o:"⪰̸"}],[2,"⪳"],[0,"⪴"],[0,"⪵"],[0,"⪶"],[0,"⪷"],[0,"⪸"],[0,"⪹"],[0,"⪺"],[0,"⪻"],[0,"⪼"],[0,"⪽"],[0,"⪾"],[0,"⪿"],[0,"⫀"],[0,"⫁"],[0,"⫂"],[0,"⫃"],[0,"⫄"],[0,{v:"⫅",n:824,o:"⫅̸"}],[0,{v:"⫆",n:824,o:"⫆̸"}],[0,"⫇"],[0,"⫈"],[2,{v:"⫋",n:65024,o:"⫋︀"}],[0,{v:"⫌",n:65024,o:"⫌︀"}],[2,"⫏"],[0,"⫐"],[0,"⫑"],[0,"⫒"],[0,"⫓"],[0,"⫔"],[0,"⫕"],[0,"⫖"],[0,"⫗"],[0,"⫘"],[0,"⫙"],[0,"⫚"],[0,"⫛"],[8,"⫤"],[1,"⫦"],[0,"⫧"],[0,"⫨"],[0,"⫩"],[1,"⫫"],[0,"⫬"],[0,"⫭"],[0,"⫮"],[0,"⫯"],[0,"⫰"],[0,"⫱"],[0,"⫲"],[0,"⫳"],[9,{v:"⫽",n:8421,o:"⫽⃥"}],[44343,{n:new Map(v7([[56476,"𝒜"],[1,"𝒞"],[0,"𝒟"],[2,"𝒢"],[2,"𝒥"],[0,"𝒦"],[2,"𝒩"],[0,"𝒪"],[0,"𝒫"],[0,"𝒬"],[1,"𝒮"],[0,"𝒯"],[0,"𝒰"],[0,"𝒱"],[0,"𝒲"],[0,"𝒳"],[0,"𝒴"],[0,"𝒵"],[0,"𝒶"],[0,"𝒷"],[0,"𝒸"],[0,"𝒹"],[1,"𝒻"],[1,"𝒽"],[0,"𝒾"],[0,"𝒿"],[0,"𝓀"],[0,"𝓁"],[0,"𝓂"],[0,"𝓃"],[1,"𝓅"],[0,"𝓆"],[0,"𝓇"],[0,"𝓈"],[0,"𝓉"],[0,"𝓊"],[0,"𝓋"],[0,"𝓌"],[0,"𝓍"],[0,"𝓎"],[0,"𝓏"],[52,"𝔄"],[0,"𝔅"],[1,"𝔇"],[0,"𝔈"],[0,"𝔉"],[0,"𝔊"],[2,"𝔍"],[0,"𝔎"],[0,"𝔏"],[0,"𝔐"],[0,"𝔑"],[0,"𝔒"],[0,"𝔓"],[0,"𝔔"],[1,"𝔖"],[0,"𝔗"],[0,"𝔘"],[0,"𝔙"],[0,"𝔚"],[0,"𝔛"],[0,"𝔜"],[1,"𝔞"],[0,"𝔟"],[0,"𝔠"],[0,"𝔡"],[0,"𝔢"],[0,"𝔣"],[0,"𝔤"],[0,"𝔥"],[0,"𝔦"],[0,"𝔧"],[0,"𝔨"],[0,"𝔩"],[0,"𝔪"],[0,"𝔫"],[0,"𝔬"],[0,"𝔭"],[0,"𝔮"],[0,"𝔯"],[0,"𝔰"],[0,"𝔱"],[0,"𝔲"],[0,"𝔳"],[0,"𝔴"],[0,"𝔵"],[0,"𝔶"],[0,"𝔷"],[0,"𝔸"],[0,"𝔹"],[1,"𝔻"],[0,"𝔼"],[0,"𝔽"],[0,"𝔾"],[1,"𝕀"],[0,"𝕁"],[0,"𝕂"],[0,"𝕃"],[0,"𝕄"],[1,"𝕆"],[3,"𝕊"],[0,"𝕋"],[0,"𝕌"],[0,"𝕍"],[0,"𝕎"],[0,"𝕏"],[0,"𝕐"],[1,"𝕒"],[0,"𝕓"],[0,"𝕔"],[0,"𝕕"],[0,"𝕖"],[0,"𝕗"],[0,"𝕘"],[0,"𝕙"],[0,"𝕚"],[0,"𝕛"],[0,"𝕜"],[0,"𝕝"],[0,"𝕞"],[0,"𝕟"],[0,"𝕠"],[0,"𝕡"],[0,"𝕢"],[0,"𝕣"],[0,"𝕤"],[0,"𝕥"],[0,"𝕦"],[0,"𝕧"],[0,"𝕨"],[0,"𝕩"],[0,"𝕪"],[0,"𝕫"]]))}],[8906,"ff"],[0,"fi"],[0,"fl"],[0,"ffi"],[0,"ffl"]]))});var j7=F((t)=>{Object.defineProperty(t,"__esModule",{value:!0});t.escapeText=t.escapeAttribute=t.escapeUTF8=t.escape=t.encodeXML=t.getCodePoint=t.xmlReplacer=void 0;t.xmlReplacer=/["&'<>$\x80-\uFFFF]/g;var ZY=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);t.getCodePoint=String.prototype.codePointAt!=null?function($,Z){return $.codePointAt(Z)}:function($,Z){return($.charCodeAt(Z)&64512)===55296?($.charCodeAt(Z)-55296)*1024+$.charCodeAt(Z+1)-56320+65536:$.charCodeAt(Z)};function JY($){var Z="",J=0,G;while((G=t.xmlReplacer.exec($))!==null){var Y=G.index,X=$.charCodeAt(Y),Q=ZY.get(X);if(Q!==void 0)Z+=$.substring(J,Y)+Q,J=Y+1;else Z+="".concat($.substring(J,Y),"&#x").concat((0,t.getCodePoint)($,Y).toString(16),";"),J=t.xmlReplacer.lastIndex+=Number((X&64512)===55296)}return Z+$.substr(J)}t.encodeXML=JY;t.escape=JY;function u$($,Z){return function(G){var Y,X=0,Q="";while(Y=$.exec(G)){if(X!==Y.index)Q+=G.substring(X,Y.index);Q+=Z.get(Y[0].charCodeAt(0)),X=Y.index+1}return Q+G.substring(X)}}t.escapeUTF8=u$(/[&<>'"]/g,ZY);t.escapeAttribute=u$(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]]));t.escapeText=u$(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]]))});var l$=F((x0)=>{var zO=x0&&x0.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(x0,"__esModule",{value:!0});x0.encodeNonAsciiHTML=x0.encodeHTML=void 0;var KO=zO($Y()),GY=j7(),UO=/[\t\n!-,./:-@[-`\f{-}$\x80-\uFFFF]/g;function OO($){return YY(UO,$)}x0.encodeHTML=OO;function VO($){return YY(GY.xmlReplacer,$)}x0.encodeNonAsciiHTML=VO;function YY($,Z){var J="",G=0,Y;while((Y=$.exec(Z))!==null){var X=Y.index;J+=Z.substring(G,X);var Q=Z.charCodeAt(X),z=KO.default.get(Q);if(typeof z==="object"){if(X+1<Z.length){var H=Z.charCodeAt(X+1),K=typeof z.n==="number"?z.n===H?z.o:void 0:z.n.get(H);if(K!==void 0){J+=K,G=$.lastIndex+=1;continue}}z=z.v}if(z!==void 0)J+=z,G=X+1;else{var U=(0,GY.getCodePoint)(Z,X);J+="&#x".concat(U.toString(16),";"),G=$.lastIndex+=Number(U!==Q)}}return J+Z.substr(G)}});var HY=F((D)=>{Object.defineProperty(D,"__esModule",{value:!0});D.decodeXMLStrict=D.decodeHTML5Strict=D.decodeHTML4Strict=D.decodeHTML5=D.decodeHTML4=D.decodeHTMLAttribute=D.decodeHTMLStrict=D.decodeHTML=D.decodeXML=D.DecodingMode=D.EntityDecoder=D.encodeHTML5=D.encodeHTML4=D.encodeNonAsciiHTML=D.encodeHTML=D.escapeText=D.escapeAttribute=D.escapeUTF8=D.escape=D.encodeXML=D.encode=D.decodeStrict=D.decode=D.EncodingMode=D.EntityLevel=void 0;var c$=b$(),XY=l$(),f7=j7(),j5;(function($){$[$.XML=0]="XML",$[$.HTML=1]="HTML"})(j5=D.EntityLevel||(D.EntityLevel={}));var I6;(function($){$[$.UTF8=0]="UTF8",$[$.ASCII=1]="ASCII",$[$.Extensive=2]="Extensive",$[$.Attribute=3]="Attribute",$[$.Text=4]="Text"})(I6=D.EncodingMode||(D.EncodingMode={}));function QY($,Z){if(Z===void 0)Z=j5.XML;var J=typeof Z==="number"?Z:Z.level;if(J===j5.HTML){var G=typeof Z==="object"?Z.mode:void 0;return(0,c$.decodeHTML)($,G)}return(0,c$.decodeXML)($)}D.decode=QY;function WO($,Z){var J;if(Z===void 0)Z=j5.XML;var G=typeof Z==="number"?{level:Z}:Z;return(J=G.mode)!==null&&J!==void 0||(G.mode=c$.DecodingMode.Strict),QY($,G)}D.decodeStrict=WO;function AO($,Z){if(Z===void 0)Z=j5.XML;var J=typeof Z==="number"?{level:Z}:Z;if(J.mode===I6.UTF8)return(0,f7.escapeUTF8)($);if(J.mode===I6.Attribute)return(0,f7.escapeAttribute)($);if(J.mode===I6.Text)return(0,f7.escapeText)($);if(J.level===j5.HTML){if(J.mode===I6.ASCII)return(0,XY.encodeNonAsciiHTML)($);return(0,XY.encodeHTML)($)}return(0,f7.encodeXML)($)}D.encode=AO;var P6=j7();Object.defineProperty(D,"encodeXML",{enumerable:!0,get:function(){return P6.encodeXML}});Object.defineProperty(D,"escape",{enumerable:!0,get:function(){return P6.escape}});Object.defineProperty(D,"escapeUTF8",{enumerable:!0,get:function(){return P6.escapeUTF8}});Object.defineProperty(D,"escapeAttribute",{enumerable:!0,get:function(){return P6.escapeAttribute}});Object.defineProperty(D,"escapeText",{enumerable:!0,get:function(){return P6.escapeText}});var S7=l$();Object.defineProperty(D,"encodeHTML",{enumerable:!0,get:function(){return S7.encodeHTML}});Object.defineProperty(D,"encodeNonAsciiHTML",{enumerable:!0,get:function(){return S7.encodeNonAsciiHTML}});Object.defineProperty(D,"encodeHTML4",{enumerable:!0,get:function(){return S7.encodeHTML}});Object.defineProperty(D,"encodeHTML5",{enumerable:!0,get:function(){return S7.encodeHTML}});var l1=b$();Object.defineProperty(D,"EntityDecoder",{enumerable:!0,get:function(){return l1.EntityDecoder}});Object.defineProperty(D,"DecodingMode",{enumerable:!0,get:function(){return l1.DecodingMode}});Object.defineProperty(D,"decodeXML",{enumerable:!0,get:function(){return l1.decodeXML}});Object.defineProperty(D,"decodeHTML",{enumerable:!0,get:function(){return l1.decodeHTML}});Object.defineProperty(D,"decodeHTMLStrict",{enumerable:!0,get:function(){return l1.decodeHTMLStrict}});Object.defineProperty(D,"decodeHTMLAttribute",{enumerable:!0,get:function(){return l1.decodeHTMLAttribute}});Object.defineProperty(D,"decodeHTML4",{enumerable:!0,get:function(){return l1.decodeHTML}});Object.defineProperty(D,"decodeHTML5",{enumerable:!0,get:function(){return l1.decodeHTML}});Object.defineProperty(D,"decodeHTML4Strict",{enumerable:!0,get:function(){return l1.decodeHTMLStrict}});Object.defineProperty(D,"decodeHTML5Strict",{enumerable:!0,get:function(){return l1.decodeHTMLStrict}});Object.defineProperty(D,"decodeXMLStrict",{enumerable:!0,get:function(){return l1.decodeXML}})});var zY=F((f5)=>{Object.defineProperty(f5,"__esModule",{value:!0});f5.attributeNames=f5.elementNames=void 0;f5.elementNames=new Map(["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($){return[$.toLowerCase(),$]}));f5.attributeNames=new Map(["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($){return[$.toLowerCase(),$]}))});var OY=F((v1)=>{var S5=v1&&v1.__assign||function(){return S5=Object.assign||function($){for(var Z,J=1,G=arguments.length;J<G;J++){Z=arguments[J];for(var Y in Z)if(Object.prototype.hasOwnProperty.call(Z,Y))$[Y]=Z[Y]}return $},S5.apply(this,arguments)},FO=v1&&v1.__createBinding||(Object.create?function($,Z,J,G){if(G===void 0)G=J;var Y=Object.getOwnPropertyDescriptor(Z,J);if(!Y||("get"in Y?!Z.__esModule:Y.writable||Y.configurable))Y={enumerable:!0,get:function(){return Z[J]}};Object.defineProperty($,G,Y)}:function($,Z,J,G){if(G===void 0)G=J;$[G]=Z[J]}),BO=v1&&v1.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),LO=v1&&v1.__importStar||function($){if($&&$.__esModule)return $;var Z={};if($!=null){for(var J in $)if(J!=="default"&&Object.prototype.hasOwnProperty.call($,J))FO(Z,$,J)}return BO(Z,$),Z};Object.defineProperty(v1,"__esModule",{value:!0});v1.render=void 0;var V0=LO(w5()),x7=HY(),UY=zY(),qO=new Set(["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"]);function NO($){return $.replace(/"/g,""")}function MO($,Z){var J;if(!$)return;var G=((J=Z.encodeEntities)!==null&&J!==void 0?J:Z.decodeEntities)===!1?NO:Z.xmlMode||Z.encodeEntities!=="utf8"?x7.encodeXML:x7.escapeAttribute;return Object.keys($).map(function(Y){var X,Q,z=(X=$[Y])!==null&&X!==void 0?X:"";if(Z.xmlMode==="foreign")Y=(Q=UY.attributeNames.get(Y))!==null&&Q!==void 0?Q:Y;if(!Z.emptyAttrs&&!Z.xmlMode&&z==="")return Y;return"".concat(Y,'="').concat(G(z),'"')}).join(" ")}var KY=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]);function C7($,Z){if(Z===void 0)Z={};var J="length"in $?$:[$],G="";for(var Y=0;Y<J.length;Y++)G+=RO(J[Y],Z);return G}v1.render=C7;v1.default=C7;function RO($,Z){switch($.type){case V0.Root:return C7($.children,Z);case V0.Doctype:case V0.Directive:return TO($);case V0.Comment:return vO($);case V0.CDATA:return EO($);case V0.Script:case V0.Style:case V0.Tag:return DO($,Z);case V0.Text:return wO($,Z)}}var IO=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),PO=new Set(["svg","math"]);function DO($,Z){var J;if(Z.xmlMode==="foreign"){if($.name=(J=UY.elementNames.get($.name))!==null&&J!==void 0?J:$.name,$.parent&&IO.has($.parent.name))Z=S5(S5({},Z),{xmlMode:!1})}if(!Z.xmlMode&&PO.has($.name))Z=S5(S5({},Z),{xmlMode:"foreign"});var G="<".concat($.name),Y=MO($.attribs,Z);if(Y)G+=" ".concat(Y);if($.children.length===0&&(Z.xmlMode?Z.selfClosingTags!==!1:Z.selfClosingTags&&KY.has($.name))){if(!Z.xmlMode)G+=" ";G+="/>"}else{if(G+=">",$.children.length>0)G+=C7($.children,Z);if(Z.xmlMode||!KY.has($.name))G+="</".concat($.name,">")}return G}function TO($){return"<".concat($.data,">")}function wO($,Z){var J,G=$.data||"";if(((J=Z.encodeEntities)!==null&&J!==void 0?J:Z.decodeEntities)!==!1&&!(!Z.xmlMode&&$.parent&&qO.has($.parent.name)))G=Z.xmlMode||Z.encodeEntities!=="utf8"?(0,x7.encodeXML)(G):(0,x7.escapeText)(G);return G}function EO($){return"<![CDATA[".concat($.children[0].data,"]]>")}function vO($){return"<!--".concat($.data,"-->")}});var d$=F((W0)=>{var jO=W0&&W0.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(W0,"__esModule",{value:!0});W0.getOuterHTML=VY;W0.getInnerHTML=xO;W0.getText=_7;W0.textContent=p$;W0.innerText=i$;var e1=m1(),fO=jO(OY()),SO=w5();function VY($,Z){return(0,fO.default)($,Z)}function xO($,Z){return(0,e1.hasChildren)($)?$.children.map(function(J){return VY(J,Z)}).join(""):""}function _7($){if(Array.isArray($))return $.map(_7).join("");if((0,e1.isTag)($))return $.name==="br"?`
|
|
13
|
+
`:_7($.children);if((0,e1.isCDATA)($))return _7($.children);if((0,e1.isText)($))return $.data;return""}function p$($){if(Array.isArray($))return $.map(p$).join("");if((0,e1.hasChildren)($)&&!(0,e1.isComment)($))return p$($.children);if((0,e1.isText)($))return $.data;return""}function i$($){if(Array.isArray($))return $.map(i$).join("");if((0,e1.hasChildren)($)&&($.type===SO.ElementType.Tag||(0,e1.isCDATA)($)))return i$($.children);if((0,e1.isText)($))return $.data;return""}});var FY=F(($0)=>{Object.defineProperty($0,"__esModule",{value:!0});$0.getChildren=WY;$0.getParent=AY;$0.getSiblings=CO;$0.getAttributeValue=_O;$0.hasAttrib=yO;$0.getName=gO;$0.nextElementSibling=hO;$0.prevElementSibling=kO;var n$=m1();function WY($){return(0,n$.hasChildren)($)?$.children:[]}function AY($){return $.parent||null}function CO($){var Z,J,G=AY($);if(G!=null)return WY(G);var Y=[$],X=$.prev,Q=$.next;while(X!=null)Y.unshift(X),Z=X,X=Z.prev;while(Q!=null)Y.push(Q),J=Q,Q=J.next;return Y}function _O($,Z){var J;return(J=$.attribs)===null||J===void 0?void 0:J[Z]}function yO($,Z){return $.attribs!=null&&Object.prototype.hasOwnProperty.call($.attribs,Z)&&$.attribs[Z]!=null}function gO($){return $.name}function hO($){var Z,J=$.next;while(J!==null&&!(0,n$.isTag)(J))Z=J,J=Z.next;return J}function kO($){var Z,J=$.prev;while(J!==null&&!(0,n$.isTag)(J))Z=J,J=Z.prev;return J}});var BY=F((C0)=>{Object.defineProperty(C0,"__esModule",{value:!0});C0.removeElement=D6;C0.replaceElement=bO;C0.appendChild=mO;C0.append=uO;C0.prependChild=lO;C0.prepend=cO;function D6($){if($.prev)$.prev.next=$.next;if($.next)$.next.prev=$.prev;if($.parent){var Z=$.parent.children,J=Z.lastIndexOf($);if(J>=0)Z.splice(J,1)}$.next=null,$.prev=null,$.parent=null}function bO($,Z){var J=Z.prev=$.prev;if(J)J.next=Z;var G=Z.next=$.next;if(G)G.prev=Z;var Y=Z.parent=$.parent;if(Y){var X=Y.children;X[X.lastIndexOf($)]=Z,$.parent=null}}function mO($,Z){if(D6(Z),Z.next=null,Z.parent=$,$.children.push(Z)>1){var J=$.children[$.children.length-2];J.next=Z,Z.prev=J}else Z.prev=null}function uO($,Z){D6(Z);var{parent:J,next:G}=$;if(Z.next=G,Z.prev=$,$.next=Z,Z.parent=J,G){if(G.prev=Z,J){var Y=J.children;Y.splice(Y.lastIndexOf(G),0,Z)}}else if(J)J.children.push(Z)}function lO($,Z){if(D6(Z),Z.parent=$,Z.prev=null,$.children.unshift(Z)!==1){var J=$.children[1];J.prev=Z,Z.next=J}else Z.next=null}function cO($,Z){D6(Z);var J=$.parent;if(J){var G=J.children;G.splice(G.indexOf($),0,Z)}if($.prev)$.prev.next=Z;Z.parent=J,Z.prev=$.prev,Z.next=$,$.prev=Z}});var a$=F((_0)=>{Object.defineProperty(_0,"__esModule",{value:!0});_0.filter=pO;_0.find=LY;_0.findOneChild=iO;_0.findOne=qY;_0.existsOne=NY;_0.findAll=dO;var t0=m1();function pO($,Z,J,G){if(J===void 0)J=!0;if(G===void 0)G=1/0;return LY($,Array.isArray(Z)?Z:[Z],J,G)}function LY($,Z,J,G){var Y=[],X=[Array.isArray(Z)?Z:[Z]],Q=[0];for(;;){if(Q[0]>=X[0].length){if(Q.length===1)return Y;X.shift(),Q.shift();continue}var z=X[0][Q[0]++];if($(z)){if(Y.push(z),--G<=0)return Y}if(J&&(0,t0.hasChildren)(z)&&z.children.length>0)Q.unshift(0),X.unshift(z.children)}}function iO($,Z){return Z.find($)}function qY($,Z,J){if(J===void 0)J=!0;var G=Array.isArray(Z)?Z:[Z];for(var Y=0;Y<G.length;Y++){var X=G[Y];if((0,t0.isTag)(X)&&$(X))return X;if(J&&(0,t0.hasChildren)(X)&&X.children.length>0){var Q=qY($,X.children,!0);if(Q)return Q}}return null}function NY($,Z){return(Array.isArray(Z)?Z:[Z]).some(function(J){return(0,t0.isTag)(J)&&$(J)||(0,t0.hasChildren)(J)&&NY($,J.children)})}function dO($,Z){var J=[],G=[Array.isArray(Z)?Z:[Z]],Y=[0];for(;;){if(Y[0]>=G[0].length){if(G.length===1)return J;G.shift(),Y.shift();continue}var X=G[0][Y[0]++];if((0,t0.isTag)(X)&&$(X))J.push(X);if((0,t0.hasChildren)(X)&&X.children.length>0)Y.unshift(0),G.unshift(X.children)}}});var o$=F((y0)=>{Object.defineProperty(y0,"__esModule",{value:!0});y0.testElement=aO;y0.getElements=rO;y0.getElementById=oO;y0.getElementsByTagName=sO;y0.getElementsByClassName=tO;y0.getElementsByTagType=eO;var e0=m1(),T6=a$(),y7={tag_name:function($){if(typeof $==="function")return function(Z){return(0,e0.isTag)(Z)&&$(Z.name)};else if($==="*")return e0.isTag;return function(Z){return(0,e0.isTag)(Z)&&Z.name===$}},tag_type:function($){if(typeof $==="function")return function(Z){return $(Z.type)};return function(Z){return Z.type===$}},tag_contains:function($){if(typeof $==="function")return function(Z){return(0,e0.isText)(Z)&&$(Z.data)};return function(Z){return(0,e0.isText)(Z)&&Z.data===$}}};function r$($,Z){if(typeof Z==="function")return function(J){return(0,e0.isTag)(J)&&Z(J.attribs[$])};return function(J){return(0,e0.isTag)(J)&&J.attribs[$]===Z}}function nO($,Z){return function(J){return $(J)||Z(J)}}function MY($){var Z=Object.keys($).map(function(J){var G=$[J];return Object.prototype.hasOwnProperty.call(y7,J)?y7[J](G):r$(J,G)});return Z.length===0?null:Z.reduce(nO)}function aO($,Z){var J=MY($);return J?J(Z):!0}function rO($,Z,J,G){if(G===void 0)G=1/0;var Y=MY($);return Y?(0,T6.filter)(Y,Z,J,G):[]}function oO($,Z,J){if(J===void 0)J=!0;if(!Array.isArray(Z))Z=[Z];return(0,T6.findOne)(r$("id",$),Z,J)}function sO($,Z,J,G){if(J===void 0)J=!0;if(G===void 0)G=1/0;return(0,T6.filter)(y7.tag_name($),Z,J,G)}function tO($,Z,J,G){if(J===void 0)J=!0;if(G===void 0)G=1/0;return(0,T6.filter)(r$("class",$),Z,J,G)}function eO($,Z,J,G){if(J===void 0)J=!0;if(G===void 0)G=1/0;return(0,T6.filter)(y7.tag_type($),Z,J,G)}});var PY=F(($5)=>{Object.defineProperty($5,"__esModule",{value:!0});$5.DocumentPosition=void 0;$5.removeSubsets=$V;$5.compareDocumentPosition=IY;$5.uniqueSort=ZV;var RY=m1();function $V($){var Z=$.length;while(--Z>=0){var J=$[Z];if(Z>0&&$.lastIndexOf(J,Z-1)>=0){$.splice(Z,1);continue}for(var G=J.parent;G;G=G.parent)if($.includes(G)){$.splice(Z,1);break}}return $}var c1;(function($){$[$.DISCONNECTED=1]="DISCONNECTED",$[$.PRECEDING=2]="PRECEDING",$[$.FOLLOWING=4]="FOLLOWING",$[$.CONTAINS=8]="CONTAINS",$[$.CONTAINED_BY=16]="CONTAINED_BY"})(c1||($5.DocumentPosition=c1={}));function IY($,Z){var J=[],G=[];if($===Z)return 0;var Y=(0,RY.hasChildren)($)?$:$.parent;while(Y)J.unshift(Y),Y=Y.parent;Y=(0,RY.hasChildren)(Z)?Z:Z.parent;while(Y)G.unshift(Y),Y=Y.parent;var X=Math.min(J.length,G.length),Q=0;while(Q<X&&J[Q]===G[Q])Q++;if(Q===0)return c1.DISCONNECTED;var z=J[Q-1],H=z.children,K=J[Q],U=G[Q];if(H.indexOf(K)>H.indexOf(U)){if(z===Z)return c1.FOLLOWING|c1.CONTAINED_BY;return c1.FOLLOWING}if(z===$)return c1.PRECEDING|c1.CONTAINS;return c1.PRECEDING}function ZV($){return $=$.filter(function(Z,J,G){return!G.includes(Z,J+1)}),$.sort(function(Z,J){var G=IY(Z,J);if(G&c1.PRECEDING)return-1;else if(G&c1.FOLLOWING)return 1;return 0}),$}});var TY=F((s$)=>{Object.defineProperty(s$,"__esModule",{value:!0});s$.getFeed=GV;var JV=d$(),w6=o$();function GV($){var Z=g7(zV,$);return!Z?null:Z.name==="feed"?YV(Z):XV(Z)}function YV($){var Z,J=$.children,G={type:"atom",items:(0,w6.getElementsByTagName)("entry",J).map(function(Q){var z,H=Q.children,K={media:DY(H)};N1(K,"id","id",H),N1(K,"title","title",H);var U=(z=g7("link",H))===null||z===void 0?void 0:z.attribs.href;if(U)K.link=U;var O=g0("summary",H)||g0("content",H);if(O)K.description=O;var W=g0("updated",H);if(W)K.pubDate=new Date(W);return K})};N1(G,"id","id",J),N1(G,"title","title",J);var Y=(Z=g7("link",J))===null||Z===void 0?void 0:Z.attribs.href;if(Y)G.link=Y;N1(G,"description","subtitle",J);var X=g0("updated",J);if(X)G.updated=new Date(X);return N1(G,"author","email",J,!0),G}function XV($){var Z,J,G=(J=(Z=g7("channel",$.children))===null||Z===void 0?void 0:Z.children)!==null&&J!==void 0?J:[],Y={type:$.name.substr(0,3),id:"",items:(0,w6.getElementsByTagName)("item",$.children).map(function(Q){var z=Q.children,H={media:DY(z)};N1(H,"id","guid",z),N1(H,"title","title",z),N1(H,"link","link",z),N1(H,"description","description",z);var K=g0("pubDate",z)||g0("dc:date",z);if(K)H.pubDate=new Date(K);return H})};N1(Y,"title","title",G),N1(Y,"link","link",G),N1(Y,"description","description",G);var X=g0("lastBuildDate",G);if(X)Y.updated=new Date(X);return N1(Y,"author","managingEditor",G,!0),Y}var QV=["url","type","lang"],HV=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function DY($){return(0,w6.getElementsByTagName)("media:content",$).map(function(Z){var J=Z.attribs,G={medium:J.medium,isDefault:!!J.isDefault};for(var Y=0,X=QV;Y<X.length;Y++){var Q=X[Y];if(J[Q])G[Q]=J[Q]}for(var z=0,H=HV;z<H.length;z++){var Q=H[z];if(J[Q])G[Q]=parseInt(J[Q],10)}if(J.expression)G.expression=J.expression;return G})}function g7($,Z){return(0,w6.getElementsByTagName)($,Z,!0,1)[0]}function g0($,Z,J){if(J===void 0)J=!1;return(0,JV.textContent)((0,w6.getElementsByTagName)($,Z,J,1)).trim()}function N1($,Z,J,G,Y){if(Y===void 0)Y=!1;var X=g0(J,G,Y);if(X)$[Z]=X}function zV($){return $==="rss"||$==="feed"||$==="rdf:RDF"}});var h7=F((u)=>{var KV=u&&u.__createBinding||(Object.create?function($,Z,J,G){if(G===void 0)G=J;var Y=Object.getOwnPropertyDescriptor(Z,J);if(!Y||("get"in Y?!Z.__esModule:Y.writable||Y.configurable))Y={enumerable:!0,get:function(){return Z[J]}};Object.defineProperty($,G,Y)}:function($,Z,J,G){if(G===void 0)G=J;$[G]=Z[J]}),Z5=u&&u.__exportStar||function($,Z){for(var J in $)if(J!=="default"&&!Object.prototype.hasOwnProperty.call(Z,J))KV(Z,$,J)};Object.defineProperty(u,"__esModule",{value:!0});u.hasChildren=u.isDocument=u.isComment=u.isText=u.isCDATA=u.isTag=void 0;Z5(d$(),u);Z5(FY(),u);Z5(BY(),u);Z5(a$(),u);Z5(o$(),u);Z5(PY(),u);Z5(TY(),u);var x5=m1();Object.defineProperty(u,"isTag",{enumerable:!0,get:function(){return x5.isTag}});Object.defineProperty(u,"isCDATA",{enumerable:!0,get:function(){return x5.isCDATA}});Object.defineProperty(u,"isText",{enumerable:!0,get:function(){return x5.isText}});Object.defineProperty(u,"isComment",{enumerable:!0,get:function(){return x5.isComment}});Object.defineProperty(u,"isDocument",{enumerable:!0,get:function(){return x5.isDocument}});Object.defineProperty(u,"hasChildren",{enumerable:!0,get:function(){return x5.hasChildren}})});var SY=F((C)=>{var UV=C&&C.__createBinding||(Object.create?function($,Z,J,G){if(G===void 0)G=J;var Y=Object.getOwnPropertyDescriptor(Z,J);if(!Y||("get"in Y?!Z.__esModule:Y.writable||Y.configurable))Y={enumerable:!0,get:function(){return Z[J]}};Object.defineProperty($,G,Y)}:function($,Z,J,G){if(G===void 0)G=J;$[G]=Z[J]}),OV=C&&C.__setModuleDefault||(Object.create?function($,Z){Object.defineProperty($,"default",{enumerable:!0,value:Z})}:function($,Z){$.default=Z}),wY=C&&C.__importStar||function(){var $=function(Z){return $=Object.getOwnPropertyNames||function(J){var G=[];for(var Y in J)if(Object.prototype.hasOwnProperty.call(J,Y))G[G.length]=Y;return G},$(Z)};return function(Z){if(Z&&Z.__esModule)return Z;var J={};if(Z!=null){for(var G=$(Z),Y=0;Y<G.length;Y++)if(G[Y]!=="default")UV(J,Z,G[Y])}return OV(J,Z),J}}(),VV=C&&C.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(C,"__esModule",{value:!0});C.DomUtils=C.getFeed=C.ElementType=C.QuoteType=C.Tokenizer=C.DefaultHandler=C.DomHandler=C.Parser=void 0;C.parseDocument=vY;C.parseDOM=jY;C.createDocumentStream=AV;C.createDomStream=FV;C.parseFeed=NV;var t$=S$(),WV=S$();Object.defineProperty(C,"Parser",{enumerable:!0,get:function(){return WV.Parser}});var e$=m1(),EY=m1();Object.defineProperty(C,"DomHandler",{enumerable:!0,get:function(){return EY.DomHandler}});Object.defineProperty(C,"DefaultHandler",{enumerable:!0,get:function(){return EY.DomHandler}});function vY($,Z){let J=new e$.DomHandler(void 0,Z);return new t$.Parser(J,Z).end($),J.root}function jY($,Z){return vY($,Z).children}function AV($,Z,J){let G=new e$.DomHandler((Y)=>$(Y,G.root),Z,J);return new t$.Parser(G,Z)}function FV($,Z,J){let G=new e$.DomHandler($,Z,J);return new t$.Parser(G,Z)}var fY=f$();Object.defineProperty(C,"Tokenizer",{enumerable:!0,get:function(){return VV(fY).default}});Object.defineProperty(C,"QuoteType",{enumerable:!0,get:function(){return fY.QuoteType}});C.ElementType=wY(w5());var BV=h7(),LV=h7();Object.defineProperty(C,"getFeed",{enumerable:!0,get:function(){return LV.getFeed}});var qV={xmlMode:!0};function NV($,Z=qV){return(0,BV.getFeed)(jY($,Z))}C.DomUtils=wY(h7())});var xY=F(($4)=>{Object.defineProperty($4,"__esModule",{value:!0});$4.unsetRootParent=MV;function MV($){var Z=0,J=$.length;for(;Z<J;Z++){var G=$[Z];G.parent=null}return $}});var CY=F((Z4)=>{Object.defineProperty(Z4,"__esModule",{value:!0});Z4.default=DV;var RV=m1(),IV=SY(),PV=xY();function DV($,Z){if(typeof $!=="string")throw TypeError("First argument must be a string.");if(!$)return[];var J=new RV.DomHandler(void 0,Z);return new IV.Parser(J,Z).end($),(0,PV.unsetRootParent)(J.dom)}});var yY=F((_Y)=>{Object.defineProperty(_Y,"__esModule",{value:!0})});var gY=F((p1)=>{var TV=p1&&p1.__createBinding||(Object.create?function($,Z,J,G){if(G===void 0)G=J;var Y=Object.getOwnPropertyDescriptor(Z,J);if(!Y||("get"in Y?!Z.__esModule:Y.writable||Y.configurable))Y={enumerable:!0,get:function(){return Z[J]}};Object.defineProperty($,G,Y)}:function($,Z,J,G){if(G===void 0)G=J;$[G]=Z[J]}),wV=p1&&p1.__exportStar||function($,Z){for(var J in $)if(J!=="default"&&!Object.prototype.hasOwnProperty.call(Z,J))TV(Z,$,J)},EV=p1&&p1.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(p1,"__esModule",{value:!0});p1.default=void 0;var vV=CY();Object.defineProperty(p1,"default",{enumerable:!0,get:function(){return EV(vV).default}});wV(yY(),p1)});var hY=F((k7)=>{var jV=0;k7.SAME=jV;var fV=1;k7.CAMELCASE=fV;k7.possibleStandardNames={accept:0,acceptCharset:1,"accept-charset":"acceptCharset",accessKey:1,action:0,allowFullScreen:1,alt:0,as:0,async:0,autoCapitalize:1,autoComplete:1,autoCorrect:1,autoFocus:1,autoPlay:1,autoSave:1,capture:0,cellPadding:1,cellSpacing:1,challenge:0,charSet:1,checked:0,children:0,cite:0,class:"className",classID:1,className:1,cols:0,colSpan:1,content:0,contentEditable:1,contextMenu:1,controls:0,controlsList:1,coords:0,crossOrigin:1,dangerouslySetInnerHTML:1,data:0,dateTime:1,default:0,defaultChecked:1,defaultValue:1,defer:0,dir:0,disabled:0,disablePictureInPicture:1,disableRemotePlayback:1,download:0,draggable:0,encType:1,enterKeyHint:1,for:"htmlFor",form:0,formMethod:1,formAction:1,formEncType:1,formNoValidate:1,formTarget:1,frameBorder:1,headers:0,height:0,hidden:0,high:0,href:0,hrefLang:1,htmlFor:1,httpEquiv:1,"http-equiv":"httpEquiv",icon:0,id:0,innerHTML:1,inputMode:1,integrity:0,is:0,itemID:1,itemProp:1,itemRef:1,itemScope:1,itemType:1,keyParams:1,keyType:1,kind:0,label:0,lang:0,list:0,loop:0,low:0,manifest:0,marginWidth:1,marginHeight:1,max:0,maxLength:1,media:0,mediaGroup:1,method:0,min:0,minLength:1,multiple:0,muted:0,name:0,noModule:1,nonce:0,noValidate:1,open:0,optimum:0,pattern:0,placeholder:0,playsInline:1,poster:0,preload:0,profile:0,radioGroup:1,readOnly:1,referrerPolicy:1,rel:0,required:0,reversed:0,role:0,rows:0,rowSpan:1,sandbox:0,scope:0,scoped:0,scrolling:0,seamless:0,selected:0,shape:0,size:0,sizes:0,span:0,spellCheck:1,src:0,srcDoc:1,srcLang:1,srcSet:1,start:0,step:0,style:0,summary:0,tabIndex:1,target:0,title:0,type:0,useMap:1,value:0,width:0,wmode:0,wrap:0,about:0,accentHeight:1,"accent-height":"accentHeight",accumulate:0,additive:0,alignmentBaseline:1,"alignment-baseline":"alignmentBaseline",allowReorder:1,alphabetic:0,amplitude:0,arabicForm:1,"arabic-form":"arabicForm",ascent:0,attributeName:1,attributeType:1,autoReverse:1,azimuth:0,baseFrequency:1,baselineShift:1,"baseline-shift":"baselineShift",baseProfile:1,bbox:0,begin:0,bias:0,by:0,calcMode:1,capHeight:1,"cap-height":"capHeight",clip:0,clipPath:1,"clip-path":"clipPath",clipPathUnits:1,clipRule:1,"clip-rule":"clipRule",color:0,colorInterpolation:1,"color-interpolation":"colorInterpolation",colorInterpolationFilters:1,"color-interpolation-filters":"colorInterpolationFilters",colorProfile:1,"color-profile":"colorProfile",colorRendering:1,"color-rendering":"colorRendering",contentScriptType:1,contentStyleType:1,cursor:0,cx:0,cy:0,d:0,datatype:0,decelerate:0,descent:0,diffuseConstant:1,direction:0,display:0,divisor:0,dominantBaseline:1,"dominant-baseline":"dominantBaseline",dur:0,dx:0,dy:0,edgeMode:1,elevation:0,enableBackground:1,"enable-background":"enableBackground",end:0,exponent:0,externalResourcesRequired:1,fill:0,fillOpacity:1,"fill-opacity":"fillOpacity",fillRule:1,"fill-rule":"fillRule",filter:0,filterRes:1,filterUnits:1,floodOpacity:1,"flood-opacity":"floodOpacity",floodColor:1,"flood-color":"floodColor",focusable:0,fontFamily:1,"font-family":"fontFamily",fontSize:1,"font-size":"fontSize",fontSizeAdjust:1,"font-size-adjust":"fontSizeAdjust",fontStretch:1,"font-stretch":"fontStretch",fontStyle:1,"font-style":"fontStyle",fontVariant:1,"font-variant":"fontVariant",fontWeight:1,"font-weight":"fontWeight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:1,"glyph-name":"glyphName",glyphOrientationHorizontal:1,"glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphOrientationVertical:1,"glyph-orientation-vertical":"glyphOrientationVertical",glyphRef:1,gradientTransform:1,gradientUnits:1,hanging:0,horizAdvX:1,"horiz-adv-x":"horizAdvX",horizOriginX:1,"horiz-origin-x":"horizOriginX",ideographic:0,imageRendering:1,"image-rendering":"imageRendering",in2:0,in:0,inlist:0,intercept:0,k1:0,k2:0,k3:0,k4:0,k:0,kernelMatrix:1,kernelUnitLength:1,kerning:0,keyPoints:1,keySplines:1,keyTimes:1,lengthAdjust:1,letterSpacing:1,"letter-spacing":"letterSpacing",lightingColor:1,"lighting-color":"lightingColor",limitingConeAngle:1,local:0,markerEnd:1,"marker-end":"markerEnd",markerHeight:1,markerMid:1,"marker-mid":"markerMid",markerStart:1,"marker-start":"markerStart",markerUnits:1,markerWidth:1,mask:0,maskContentUnits:1,maskUnits:1,mathematical:0,mode:0,numOctaves:1,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:1,"overline-position":"overlinePosition",overlineThickness:1,"overline-thickness":"overlineThickness",paintOrder:1,"paint-order":"paintOrder",panose1:0,"panose-1":"panose1",pathLength:1,patternContentUnits:1,patternTransform:1,patternUnits:1,pointerEvents:1,"pointer-events":"pointerEvents",points:0,pointsAtX:1,pointsAtY:1,pointsAtZ:1,prefix:0,preserveAlpha:1,preserveAspectRatio:1,primitiveUnits:1,property:0,r:0,radius:0,refX:1,refY:1,renderingIntent:1,"rendering-intent":"renderingIntent",repeatCount:1,repeatDur:1,requiredExtensions:1,requiredFeatures:1,resource:0,restart:0,result:0,results:0,rotate:0,rx:0,ry:0,scale:0,security:0,seed:0,shapeRendering:1,"shape-rendering":"shapeRendering",slope:0,spacing:0,specularConstant:1,specularExponent:1,speed:0,spreadMethod:1,startOffset:1,stdDeviation:1,stemh:0,stemv:0,stitchTiles:1,stopColor:1,"stop-color":"stopColor",stopOpacity:1,"stop-opacity":"stopOpacity",strikethroughPosition:1,"strikethrough-position":"strikethroughPosition",strikethroughThickness:1,"strikethrough-thickness":"strikethroughThickness",string:0,stroke:0,strokeDasharray:1,"stroke-dasharray":"strokeDasharray",strokeDashoffset:1,"stroke-dashoffset":"strokeDashoffset",strokeLinecap:1,"stroke-linecap":"strokeLinecap",strokeLinejoin:1,"stroke-linejoin":"strokeLinejoin",strokeMiterlimit:1,"stroke-miterlimit":"strokeMiterlimit",strokeWidth:1,"stroke-width":"strokeWidth",strokeOpacity:1,"stroke-opacity":"strokeOpacity",suppressContentEditableWarning:1,suppressHydrationWarning:1,surfaceScale:1,systemLanguage:1,tableValues:1,targetX:1,targetY:1,textAnchor:1,"text-anchor":"textAnchor",textDecoration:1,"text-decoration":"textDecoration",textLength:1,textRendering:1,"text-rendering":"textRendering",to:0,transform:0,typeof:0,u1:0,u2:0,underlinePosition:1,"underline-position":"underlinePosition",underlineThickness:1,"underline-thickness":"underlineThickness",unicode:0,unicodeBidi:1,"unicode-bidi":"unicodeBidi",unicodeRange:1,"unicode-range":"unicodeRange",unitsPerEm:1,"units-per-em":"unitsPerEm",unselectable:0,vAlphabetic:1,"v-alphabetic":"vAlphabetic",values:0,vectorEffect:1,"vector-effect":"vectorEffect",version:0,vertAdvY:1,"vert-adv-y":"vertAdvY",vertOriginX:1,"vert-origin-x":"vertOriginX",vertOriginY:1,"vert-origin-y":"vertOriginY",vHanging:1,"v-hanging":"vHanging",vIdeographic:1,"v-ideographic":"vIdeographic",viewBox:1,viewTarget:1,visibility:0,vMathematical:1,"v-mathematical":"vMathematical",vocab:0,widths:0,wordSpacing:1,"word-spacing":"wordSpacing",writingMode:1,"writing-mode":"writingMode",x1:0,x2:0,x:0,xChannelSelector:1,xHeight:1,"x-height":"xHeight",xlinkActuate:1,"xlink:actuate":"xlinkActuate",xlinkArcrole:1,"xlink:arcrole":"xlinkArcrole",xlinkHref:1,"xlink:href":"xlinkHref",xlinkRole:1,"xlink:role":"xlinkRole",xlinkShow:1,"xlink:show":"xlinkShow",xlinkTitle:1,"xlink:title":"xlinkTitle",xlinkType:1,"xlink:type":"xlinkType",xmlBase:1,"xml:base":"xmlBase",xmlLang:1,"xml:lang":"xmlLang",xmlns:0,"xml:space":"xmlSpace",xmlnsXlink:1,"xmlns:xlink":"xmlnsXlink",xmlSpace:1,y1:0,y2:0,y:0,yChannelSelector:1,z:0,zoomAndPan:1}});var bY=F((i1)=>{function SV($){return z1.hasOwnProperty($)?z1[$]:null}function F1($,Z,J,G,Y,X,Q){this.acceptsBooleans=Z===2||Z===3||Z===4,this.attributeName=G,this.attributeNamespace=Y,this.mustUseProperty=J,this.propertyName=$,this.type=Z,this.sanitizeURL=X,this.removeEmptyString=Q}var z1={},xV=["children","dangerouslySetInnerHTML","defaultValue","defaultChecked","innerHTML","suppressContentEditableWarning","suppressHydrationWarning","style"];xV.forEach(($)=>{z1[$]=new F1($,0,!1,$,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(([$,Z])=>{z1[$]=new F1($,1,!1,Z,null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(($)=>{z1[$]=new F1($,2,!1,$.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(($)=>{z1[$]=new F1($,2,!1,$,null,!1,!1)});["allowFullScreen","async","autoFocus","autoPlay","controls","default","defer","disabled","disablePictureInPicture","disableRemotePlayback","formNoValidate","hidden","loop","noModule","noValidate","open","playsInline","readOnly","required","reversed","scoped","seamless","itemScope"].forEach(($)=>{z1[$]=new F1($,3,!1,$.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(($)=>{z1[$]=new F1($,3,!0,$,null,!1,!1)});["capture","download"].forEach(($)=>{z1[$]=new F1($,4,!1,$,null,!1,!1)});["cols","rows","size","span"].forEach(($)=>{z1[$]=new F1($,6,!1,$,null,!1,!1)});["rowSpan","start"].forEach(($)=>{z1[$]=new F1($,5,!1,$.toLowerCase(),null,!1,!1)});var J4=/[\-\:]([a-z])/g,G4=($)=>$[1].toUpperCase();["accent-height","alignment-baseline","arabic-form","baseline-shift","cap-height","clip-path","clip-rule","color-interpolation","color-interpolation-filters","color-profile","color-rendering","dominant-baseline","enable-background","fill-opacity","fill-rule","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","glyph-name","glyph-orientation-horizontal","glyph-orientation-vertical","horiz-adv-x","horiz-origin-x","image-rendering","letter-spacing","lighting-color","marker-end","marker-mid","marker-start","overline-position","overline-thickness","paint-order","panose-1","pointer-events","rendering-intent","shape-rendering","stop-color","stop-opacity","strikethrough-position","strikethrough-thickness","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-anchor","text-decoration","text-rendering","underline-position","underline-thickness","unicode-bidi","unicode-range","units-per-em","v-alphabetic","v-hanging","v-ideographic","v-mathematical","vector-effect","vert-adv-y","vert-origin-x","vert-origin-y","word-spacing","writing-mode","xmlns:xlink","x-height"].forEach(($)=>{let Z=$.replace(J4,G4);z1[Z]=new F1(Z,1,!1,$,null,!1,!1)});["xlink:actuate","xlink:arcrole","xlink:role","xlink:show","xlink:title","xlink:type"].forEach(($)=>{let Z=$.replace(J4,G4);z1[Z]=new F1(Z,1,!1,$,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(($)=>{let Z=$.replace(J4,G4);z1[Z]=new F1(Z,1,!1,$,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(($)=>{z1[$]=new F1($,1,!1,$.toLowerCase(),null,!1,!1)});var CV="xlinkHref";z1[CV]=new F1("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(($)=>{z1[$]=new F1($,1,!1,$.toLowerCase(),null,!0,!0)});var{CAMELCASE:_V,SAME:yV,possibleStandardNames:kY}=hY(),gV=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",hV=gV+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",kV=RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+hV+"]*$")),bV=Object.keys(kY).reduce(($,Z)=>{let J=kY[Z];if(J===yV)$[Z]=Z;else if(J===_V)$[Z.toLowerCase()]=Z;else $[Z]=J;return $},{});i1.BOOLEAN=3;i1.BOOLEANISH_STRING=2;i1.NUMERIC=5;i1.OVERLOADED_BOOLEAN=4;i1.POSITIVE_NUMERIC=6;i1.RESERVED=0;i1.STRING=1;i1.getPropertyInfo=SV;i1.isCustomAttribute=kV;i1.possibleStandardNames=bV});var iY=F((eP,pY)=>{var mY=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,mV=/\n/g,uV=/^\s*/,lV=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,cV=/^:\s*/,pV=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,iV=/^[;\s]*/,dV=/^\s+|\s+$/g,nV=`
|
|
14
|
+
`,uY="/",lY="*",J5="",aV="comment",rV="declaration";function oV($,Z){if(typeof $!=="string")throw TypeError("First argument must be a string");if(!$)return[];Z=Z||{};var J=1,G=1;function Y(B){var V=B.match(mV);if(V)J+=V.length;var R=B.lastIndexOf(nV);G=~R?B.length-R:G+B.length}function X(){var B={line:J,column:G};return function(V){return V.position=new Q(B),K(),V}}function Q(B){this.start=B,this.end={line:J,column:G},this.source=Z.source}Q.prototype.content=$;function z(B){var V=Error(Z.source+":"+J+":"+G+": "+B);if(V.reason=B,V.filename=Z.source,V.line=J,V.column=G,V.source=$,Z.silent);else throw V}function H(B){var V=B.exec($);if(!V)return;var R=V[0];return Y(R),$=$.slice(R.length),V}function K(){H(uV)}function U(B){var V;B=B||[];while(V=O())if(V!==!1)B.push(V);return B}function O(){var B=X();if(uY!=$.charAt(0)||lY!=$.charAt(1))return;var V=2;while(J5!=$.charAt(V)&&(lY!=$.charAt(V)||uY!=$.charAt(V+1)))++V;if(V+=2,J5===$.charAt(V-1))return z("End of comment missing");var R=$.slice(2,V-2);return G+=2,Y(R),$=$.slice(V),G+=2,B({type:aV,comment:R})}function W(){var B=X(),V=H(lV);if(!V)return;if(O(),!H(cV))return z("property missing ':'");var R=H(pV),T=B({type:rV,property:cY(V[0].replace(mY,J5)),value:R?cY(R[0].replace(mY,J5)):J5});return H(iV),T}function L(){var B=[];U(B);var V;while(V=W())if(V!==!1)B.push(V),U(B);return B}return K(),L()}function cY($){return $?$.replace(dV,J5):J5}pY.exports=oV});var dY=F((E6)=>{var sV=E6&&E6.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(E6,"__esModule",{value:!0});E6.default=eV;var tV=sV(iY());function eV($,Z){let J=null;if(!$||typeof $!=="string")return J;let G=(0,tV.default)($),Y=typeof Z==="function";return G.forEach((X)=>{if(X.type!=="declaration")return;let{property:Q,value:z}=X;if(Y)Z(Q,z,X);else if(z)J=J||{},J[Q]=z}),J}});var aY=F((b7)=>{Object.defineProperty(b7,"__esModule",{value:!0});b7.camelCase=void 0;var $W=/^--[a-zA-Z0-9_-]+$/,ZW=/-([a-z])/g,JW=/^[^-]+$/,GW=/^-(webkit|moz|ms|o|khtml)-/,YW=/^-(ms)-/,XW=function($){return!$||JW.test($)||$W.test($)},QW=function($,Z){return Z.toUpperCase()},nY=function($,Z){return"".concat(Z,"-")},HW=function($,Z){if(Z===void 0)Z={};if(XW($))return $;if($=$.toLowerCase(),Z.reactCompat)$=$.replace(YW,nY);else $=$.replace(GW,nY);return $.replace(ZW,QW)};b7.camelCase=HW});var oY=F((X4,rY)=>{var zW=X4&&X4.__importDefault||function($){return $&&$.__esModule?$:{default:$}},KW=zW(dY()),UW=aY();function Y4($,Z){var J={};if(!$||typeof $!=="string")return J;return(0,KW.default)($,function(G,Y){if(G&&Y)J[(0,UW.camelCase)(G,Z)]=Y}),J}Y4.default=Y4;rY.exports=Y4});var Q4=F((B1)=>{var OW=B1&&B1.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(B1,"__esModule",{value:!0});B1.returnFirstArg=B1.canTextBeChildOfNode=B1.ELEMENTS_WITH_NO_TEXT_CHILDREN=B1.PRESERVE_CUSTOM_ATTRIBUTES=void 0;B1.isCustomComponent=FW;B1.setStyleProp=LW;var VW=require("react"),WW=OW(oY()),AW=new Set(["annotation-xml","color-profile","font-face","font-face-src","font-face-uri","font-face-format","font-face-name","missing-glyph"]);function FW($,Z){if(!$.includes("-"))return Boolean(Z&&typeof Z.is==="string");if(AW.has($))return!1;return!0}var BW={reactCompat:!0};function LW($,Z){if(typeof $!=="string")return;if(!$.trim()){Z.style={};return}try{Z.style=(0,WW.default)($,BW)}catch(J){Z.style={}}}B1.PRESERVE_CUSTOM_ATTRIBUTES=Number(VW.version.split(".")[0])>=16;B1.ELEMENTS_WITH_NO_TEXT_CHILDREN=new Set(["tr","tbody","thead","tfoot","colgroup","table","head","html","frameset"]);var qW=function($){return!B1.ELEMENTS_WITH_NO_TEXT_CHILDREN.has($.name)};B1.canTextBeChildOfNode=qW;var NW=function($){return $};B1.returnFirstArg=NW});var z4=F((H4)=>{Object.defineProperty(H4,"__esModule",{value:!0});H4.default=PW;var v6=bY(),sY=Q4(),MW=["checked","value"],RW=["input","select","textarea"],IW={reset:!0,submit:!0};function PW($,Z){if($===void 0)$={};var J={},G=Boolean($.type&&IW[$.type]);for(var Y in $){var X=$[Y];if((0,v6.isCustomAttribute)(Y)){J[Y]=X;continue}var Q=Y.toLowerCase(),z=tY(Q);if(z){var H=(0,v6.getPropertyInfo)(z);if(MW.includes(z)&&RW.includes(Z)&&!G)z=tY("default"+Q);switch(J[z]=X,H===null||H===void 0?void 0:H.type){case v6.BOOLEAN:J[z]=!0;break;case v6.OVERLOADED_BOOLEAN:if(X==="")J[z]=!0;break}continue}if(sY.PRESERVE_CUSTOM_ATTRIBUTES)J[Y]=X}return(0,sY.setStyleProp)($.style,J),J}function tY($){return v6.possibleStandardNames[$]}});var $X=F((f6)=>{var DW=f6&&f6.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(f6,"__esModule",{value:!0});f6.default=eY;var K4=require("react"),TW=DW(z4()),j6=Q4(),wW={cloneElement:K4.cloneElement,createElement:K4.createElement,isValidElement:K4.isValidElement};function eY($,Z){var J,G,Y,X,Q;if(Z===void 0)Z={};var z=[],H=typeof Z.replace==="function",K=(J=Z.transform)!==null&&J!==void 0?J:j6.returnFirstArg,U=(G=Z.library)!==null&&G!==void 0?G:wW,O=U.cloneElement,W=U.createElement,L=U.isValidElement,B=$.length;for(var V=0;V<B;V++){var R=$[V];if(H){var T=(Y=Z.replace)===null||Y===void 0?void 0:Y.call(Z,R,V);if(L(T)){if(B>1)T=O(T,{key:(X=T.key)!==null&&X!==void 0?X:V});z.push(K(T,R,V));continue}}if(R.type==="text"){var P=!R.data.trim().length;if(P&&R.parent&&!(0,j6.canTextBeChildOfNode)(R.parent))continue;if(Z.trim&&P)continue;z.push(K(R.data,R,V));continue}var q=R,N={};if(EW(q))(0,j6.setStyleProp)(q.attribs.style,q.attribs),N=q.attribs;else if(q.attribs)N=(0,TW.default)(q.attribs,q.name);var v=void 0;switch(R.type){case"script":case"style":if(R.children[0])N.dangerouslySetInnerHTML={__html:R.children[0].data};break;case"tag":if(R.name==="textarea"&&R.children[0])N.defaultValue=R.children[0].data;else if((Q=R.children)===null||Q===void 0?void 0:Q.length)v=eY(R.children,Z);break;default:continue}if(B>1)N.key=V;z.push(K(W(R.name,N,v),R,V))}return z.length===1?z[0]:z}function EW($){return j6.PRESERVE_CUSTOM_ATTRIBUTES&&$.type==="tag"&&(0,j6.isCustomComponent)($.name,$.attribs)}});var O4=F((e)=>{var U4=e&&e.__importDefault||function($){return $&&$.__esModule?$:{default:$}};Object.defineProperty(e,"__esModule",{value:!0});e.htmlToDOM=e.domToReact=e.attributesToProps=e.Text=e.ProcessingInstruction=e.Element=e.Comment=void 0;e.default=fW;var ZX=U4(gY());e.htmlToDOM=ZX.default;var vW=U4(z4());e.attributesToProps=vW.default;var JX=U4($X());e.domToReact=JX.default;var m7=m1();Object.defineProperty(e,"Comment",{enumerable:!0,get:function(){return m7.Comment}});Object.defineProperty(e,"Element",{enumerable:!0,get:function(){return m7.Element}});Object.defineProperty(e,"ProcessingInstruction",{enumerable:!0,get:function(){return m7.ProcessingInstruction}});Object.defineProperty(e,"Text",{enumerable:!0,get:function(){return m7.Text}});var jW={lowerCaseAttributeNames:!1};function fW($,Z){var J;if(typeof $!=="string")throw TypeError("First argument must be a string");if(!$)return[];return(0,JX.default)((0,ZX.default)($,(J=Z===null||Z===void 0?void 0:Z.htmlparser2)!==null&&J!==void 0?J:jW),Z)}});var KX=F((jD,zX)=>{var hW="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";zX.exports=hW});var WX=F((fD,VX)=>{var kW=KX();function UX(){}function OX(){}OX.resetWarningCache=UX;VX.exports=function(){function $(G,Y,X,Q,z,H){if(H===kW)return;var K=Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw K.name="Invariant Violation",K}$.isRequired=$;function Z(){return $}var J={array:$,bigint:$,bool:$,func:$,number:$,object:$,string:$,symbol:$,any:$,arrayOf:Z,element:$,elementType:$,instanceOf:Z,node:$,objectOf:Z,oneOf:Z,oneOfType:Z,shape:Z,exact:Z,checkPropTypes:OX,resetWarningCache:UX};return J.PropTypes=J,J}});var L4=F((SD,AX)=>{AX.exports=WX()();var bW,mW});var BX=F((_)=>{var X1=typeof Symbol==="function"&&Symbol.for,q4=X1?Symbol.for("react.element"):60103,N4=X1?Symbol.for("react.portal"):60106,p7=X1?Symbol.for("react.fragment"):60107,i7=X1?Symbol.for("react.strict_mode"):60108,d7=X1?Symbol.for("react.profiler"):60114,n7=X1?Symbol.for("react.provider"):60109,a7=X1?Symbol.for("react.context"):60110,M4=X1?Symbol.for("react.async_mode"):60111,r7=X1?Symbol.for("react.concurrent_mode"):60111,o7=X1?Symbol.for("react.forward_ref"):60112,s7=X1?Symbol.for("react.suspense"):60113,uW=X1?Symbol.for("react.suspense_list"):60120,t7=X1?Symbol.for("react.memo"):60115,e7=X1?Symbol.for("react.lazy"):60116,lW=X1?Symbol.for("react.block"):60121,cW=X1?Symbol.for("react.fundamental"):60117,pW=X1?Symbol.for("react.responder"):60118,iW=X1?Symbol.for("react.scope"):60119;function j1($){if(typeof $==="object"&&$!==null){var Z=$.$$typeof;switch(Z){case q4:switch($=$.type,$){case M4:case r7:case p7:case d7:case i7:case s7:return $;default:switch($=$&&$.$$typeof,$){case a7:case o7:case e7:case t7:case n7:return $;default:return Z}}case N4:return Z}}}function FX($){return j1($)===r7}_.AsyncMode=M4;_.ConcurrentMode=r7;_.ContextConsumer=a7;_.ContextProvider=n7;_.Element=q4;_.ForwardRef=o7;_.Fragment=p7;_.Lazy=e7;_.Memo=t7;_.Portal=N4;_.Profiler=d7;_.StrictMode=i7;_.Suspense=s7;_.isAsyncMode=function($){return FX($)||j1($)===M4};_.isConcurrentMode=FX;_.isContextConsumer=function($){return j1($)===a7};_.isContextProvider=function($){return j1($)===n7};_.isElement=function($){return typeof $==="object"&&$!==null&&$.$$typeof===q4};_.isForwardRef=function($){return j1($)===o7};_.isFragment=function($){return j1($)===p7};_.isLazy=function($){return j1($)===e7};_.isMemo=function($){return j1($)===t7};_.isPortal=function($){return j1($)===N4};_.isProfiler=function($){return j1($)===d7};_.isStrictMode=function($){return j1($)===i7};_.isSuspense=function($){return j1($)===s7};_.isValidElementType=function($){return typeof $==="string"||typeof $==="function"||$===p7||$===r7||$===d7||$===i7||$===s7||$===uW||typeof $==="object"&&$!==null&&($.$$typeof===e7||$.$$typeof===t7||$.$$typeof===n7||$.$$typeof===a7||$.$$typeof===o7||$.$$typeof===cW||$.$$typeof===pW||$.$$typeof===iW||$.$$typeof===lW)};_.typeOf=j1});var qX=F((CD,LX)=>{LX.exports=BX()});var R4=F((_D,TX)=>{var IX=qX(),dW={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},nW={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},aW={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},rW={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},PX={};PX[IX.ForwardRef]=aW;function NX($){if(IX.isMemo($))return rW;return PX[$.$$typeof]||dW}var{defineProperty:oW,getOwnPropertyNames:sW,getOwnPropertySymbols:MX,getOwnPropertyDescriptor:tW,getPrototypeOf:eW,prototype:RX}=Object;function DX($,Z,J){if(typeof Z!=="string"){if(RX){var G=eW(Z);if(G&&G!==RX)DX($,G,J)}var Y=sW(Z);if(MX)Y=Y.concat(MX(Z));var X=NX($),Q=NX(Z);for(var z=0;z<Y.length;++z){var H=Y[z];if(!nW[H]&&!(J&&J[H])&&!(Q&&Q[H])&&!(X&&X[H])){var K=tW(Z,H);try{oW($,H,K)}catch(U){}}}return $}return $}TX.exports=DX});var P4=F((I4)=>{Object.defineProperty(I4,"__esModule",{value:!0});I4.default=ZA;var $A={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};function ZA($,Z){var J=!$A[$]&&typeof Z==="number"&&Z!==0;return J?Z+"px":Z}});var T4=F((D4)=>{Object.defineProperty(D4,"__esModule",{value:!0});D4.default=JA;function JA($,Z){return Object.keys($).reduce(function(J,G){return J[G]=Z($[G],G),J},{})}});var EX=F((w4)=>{Object.defineProperty(w4,"__esModule",{value:!0});w4.default=XA;var GA=wX(P4()),YA=wX(T4());function wX($){return $&&$.__esModule?$:{default:$}}function XA($){return(0,YA.default)($,function(Z,J){return(0,GA.default)(J,$[J])+" !important"})}});var E4=F((_5)=>{Object.defineProperty(_5,"__esModule",{value:!0});_5.default=_5.camelCaseToDashCase=void 0;var QA=/([a-z])?([A-Z])/g,HA=function(Z,J,G){return(J||"")+"-"+G.toLowerCase()},vX=function(Z){return Z.replace(QA,HA)};_5.camelCaseToDashCase=vX;var zA=function(Z){return Object.keys(Z).reduce(function(J,G){var Y=vX(G);if(/^ms-/.test(Y))Y="-".concat(Y);return J[Y]=Z[G],J},{})},KA=zA;_5.default=KA});var Z8=F(($8,jX)=>{Object.defineProperty($8,"__esModule",{value:!0});$8.default=UA;function UA($){return $.charAt(0).toUpperCase()+$.slice(1)}jX.exports=$8.default});var SX=F((J8,fX)=>{Object.defineProperty(J8,"__esModule",{value:!0});J8.default=AA;var OA=Z8(),VA=WA(OA);function WA($){return $&&$.__esModule?$:{default:$}}function AA($,Z,J){if($.hasOwnProperty(Z)){var G={},Y=$[Z],X=(0,VA.default)(Z),Q=Object.keys(J);for(var z=0;z<Q.length;z++){var H=Q[z];if(H===Z)for(var K=0;K<Y.length;K++)G[Y[K]+X]=J[Z];G[H]=J[H]}return G}return J}fX.exports=J8.default});var v4=F((G8,xX)=>{Object.defineProperty(G8,"__esModule",{value:!0});G8.default=FA;function FA($,Z,J,G,Y){for(var X=0,Q=$.length;X<Q;++X){var z=$[X](Z,J,G,Y);if(z)return z}}xX.exports=G8.default});var j4=F((Y8,_X)=>{Object.defineProperty(Y8,"__esModule",{value:!0});Y8.default=BA;function CX($,Z){if($.indexOf(Z)===-1)$.push(Z)}function BA($,Z){if(Array.isArray(Z))for(var J=0,G=Z.length;J<G;++J)CX($,Z[J]);else CX($,Z)}_X.exports=Y8.default});var f4=F((X8,yX)=>{Object.defineProperty(X8,"__esModule",{value:!0});X8.default=LA;function LA($){return $ instanceof Object&&!Array.isArray($)}yX.exports=X8.default});var kX=F((H8,hX)=>{Object.defineProperty(H8,"__esModule",{value:!0});H8.default=TA;var qA=SX(),NA=Q8(qA),MA=v4(),gX=Q8(MA),RA=j4(),IA=Q8(RA),PA=f4(),DA=Q8(PA);function Q8($){return $&&$.__esModule?$:{default:$}}function TA($){var{prefixMap:Z,plugins:J}=$;function G(Y){for(var X in Y){var Q=Y[X];if((0,DA.default)(Q))Y[X]=G(Q);else if(Array.isArray(Q)){var z=[];for(var H=0,K=Q.length;H<K;++H){var U=(0,gX.default)(J,X,Q[H],Y,Z);(0,IA.default)(z,U||Q[H])}if(z.length>0)Y[X]=z}else{var O=(0,gX.default)(J,X,Q,Y,Z);if(O)Y[X]=O;Y=(0,NA.default)(Z,X,Y)}}return Y}return G}hX.exports=H8.default});var mX=F((bX,z8)=>{/*!
|
|
15
15
|
* Bowser - a browser detector
|
|
16
16
|
* https://github.com/ded/bowser
|
|
17
17
|
* MIT License | (c) Dustin Diaz 2015
|
|
18
|
-
*/(function($,Z,G){if(typeof A4<"u"&&A4.exports)A4.exports=G();else if(typeof define=="function"&&define.amd)define(Z,G);else $[Z]=G()})(kK,"bowser",function(){var $=!0;function Z(q){function U(w1){var A=q.match(w1);return A&&A.length>1&&A[1]||""}function K(w1){var A=q.match(w1);return A&&A.length>1&&A[2]||""}var W=U(/(ipod|iphone|ipad)/i).toLowerCase(),z=/like android/i.test(q),L=!z&&/android/i.test(q),V=/nexus\s*[0-6]\s*/i.test(q),B=!V&&/nexus\s*[0-9]+/i.test(q),I=/CrOS/.test(q),D=/silk/i.test(q),E=/sailfish/i.test(q),R=/tizen/i.test(q),P=/(web|hpw)(o|0)s/i.test(q),g=/windows phone/i.test(q),M=/SamsungBrowser/i.test(q),h=!g&&/windows/i.test(q),s=!W&&!D&&/macintosh/i.test(q),i=!L&&!E&&!R&&!P&&/linux/i.test(q),o=K(/edg([ea]|ios)\/(\d+(\.\d+)?)/i),a=U(/version\/(\d+(\.\d+)?)/i),t=/tablet/i.test(q)&&!/tablet pc/i.test(q),_=!t&&/[^-]mobi/i.test(q),m=/xbox/i.test(q),F;if(/opera/i.test(q))F={name:"Opera",opera:$,version:a||U(/(?:opera|opr|opios)[\s\/](\d+(\.\d+)?)/i)};else if(/opr\/|opios/i.test(q))F={name:"Opera",opera:$,version:U(/(?:opr|opios)[\s\/](\d+(\.\d+)?)/i)||a};else if(/SamsungBrowser/i.test(q))F={name:"Samsung Internet for Android",samsungBrowser:$,version:a||U(/(?:SamsungBrowser)[\s\/](\d+(\.\d+)?)/i)};else if(/Whale/i.test(q))F={name:"NAVER Whale browser",whale:$,version:U(/(?:whale)[\s\/](\d+(?:\.\d+)+)/i)};else if(/MZBrowser/i.test(q))F={name:"MZ Browser",mzbrowser:$,version:U(/(?:MZBrowser)[\s\/](\d+(?:\.\d+)+)/i)};else if(/coast/i.test(q))F={name:"Opera Coast",coast:$,version:a||U(/(?:coast)[\s\/](\d+(\.\d+)?)/i)};else if(/focus/i.test(q))F={name:"Focus",focus:$,version:U(/(?:focus)[\s\/](\d+(?:\.\d+)+)/i)};else if(/yabrowser/i.test(q))F={name:"Yandex Browser",yandexbrowser:$,version:a||U(/(?:yabrowser)[\s\/](\d+(\.\d+)?)/i)};else if(/ucbrowser/i.test(q))F={name:"UC Browser",ucbrowser:$,version:U(/(?:ucbrowser)[\s\/](\d+(?:\.\d+)+)/i)};else if(/mxios/i.test(q))F={name:"Maxthon",maxthon:$,version:U(/(?:mxios)[\s\/](\d+(?:\.\d+)+)/i)};else if(/epiphany/i.test(q))F={name:"Epiphany",epiphany:$,version:U(/(?:epiphany)[\s\/](\d+(?:\.\d+)+)/i)};else if(/puffin/i.test(q))F={name:"Puffin",puffin:$,version:U(/(?:puffin)[\s\/](\d+(?:\.\d+)?)/i)};else if(/sleipnir/i.test(q))F={name:"Sleipnir",sleipnir:$,version:U(/(?:sleipnir)[\s\/](\d+(?:\.\d+)+)/i)};else if(/k-meleon/i.test(q))F={name:"K-Meleon",kMeleon:$,version:U(/(?:k-meleon)[\s\/](\d+(?:\.\d+)+)/i)};else if(g)if(F={name:"Windows Phone",osname:"Windows Phone",windowsphone:$},o)F.msedge=$,F.version=o;else F.msie=$,F.version=U(/iemobile\/(\d+(\.\d+)?)/i);else if(/msie|trident/i.test(q))F={name:"Internet Explorer",msie:$,version:U(/(?:msie |rv:)(\d+(\.\d+)?)/i)};else if(I)F={name:"Chrome",osname:"Chrome OS",chromeos:$,chromeBook:$,chrome:$,version:U(/(?:chrome|crios|crmo)\/(\d+(\.\d+)?)/i)};else if(/edg([ea]|ios)/i.test(q))F={name:"Microsoft Edge",msedge:$,version:o};else if(/vivaldi/i.test(q))F={name:"Vivaldi",vivaldi:$,version:U(/vivaldi\/(\d+(\.\d+)?)/i)||a};else if(E)F={name:"Sailfish",osname:"Sailfish OS",sailfish:$,version:U(/sailfish\s?browser\/(\d+(\.\d+)?)/i)};else if(/seamonkey\//i.test(q))F={name:"SeaMonkey",seamonkey:$,version:U(/seamonkey\/(\d+(\.\d+)?)/i)};else if(/firefox|iceweasel|fxios/i.test(q)){if(F={name:"Firefox",firefox:$,version:U(/(?:firefox|iceweasel|fxios)[ \/](\d+(\.\d+)?)/i)},/\((mobile|tablet);[^\)]*rv:[\d\.]+\)/i.test(q))F.firefoxos=$,F.osname="Firefox OS"}else if(D)F={name:"Amazon Silk",silk:$,version:U(/silk\/(\d+(\.\d+)?)/i)};else if(/phantom/i.test(q))F={name:"PhantomJS",phantom:$,version:U(/phantomjs\/(\d+(\.\d+)?)/i)};else if(/slimerjs/i.test(q))F={name:"SlimerJS",slimer:$,version:U(/slimerjs\/(\d+(\.\d+)?)/i)};else if(/blackberry|\bbb\d+/i.test(q)||/rim\stablet/i.test(q))F={name:"BlackBerry",osname:"BlackBerry OS",blackberry:$,version:a||U(/blackberry[\d]+\/(\d+(\.\d+)?)/i)};else if(P)F={name:"WebOS",osname:"WebOS",webos:$,version:a||U(/w(?:eb)?osbrowser\/(\d+(\.\d+)?)/i)},/touchpad\//i.test(q)&&(F.touchpad=$);else if(/bada/i.test(q))F={name:"Bada",osname:"Bada",bada:$,version:U(/dolfin\/(\d+(\.\d+)?)/i)};else if(R)F={name:"Tizen",osname:"Tizen",tizen:$,version:U(/(?:tizen\s?)?browser\/(\d+(\.\d+)?)/i)||a};else if(/qupzilla/i.test(q))F={name:"QupZilla",qupzilla:$,version:U(/(?:qupzilla)[\s\/](\d+(?:\.\d+)+)/i)||a};else if(/chromium/i.test(q))F={name:"Chromium",chromium:$,version:U(/(?:chromium)[\s\/](\d+(?:\.\d+)?)/i)||a};else if(/chrome|crios|crmo/i.test(q))F={name:"Chrome",chrome:$,version:U(/(?:chrome|crios|crmo)\/(\d+(\.\d+)?)/i)};else if(L)F={name:"Android",version:a};else if(/safari|applewebkit/i.test(q)){if(F={name:"Safari",safari:$},a)F.version=a}else if(W){if(F={name:W=="iphone"?"iPhone":W=="ipad"?"iPad":"iPod"},a)F.version=a}else if(/googlebot/i.test(q))F={name:"Googlebot",googlebot:$,version:U(/googlebot\/(\d+(\.\d+))/i)||a};else F={name:U(/^(.*)\/(.*) /),version:K(/^(.*)\/(.*) /)};if(!F.msedge&&/(apple)?webkit/i.test(q)){if(/(apple)?webkit\/537\.36/i.test(q))F.name=F.name||"Blink",F.blink=$;else F.name=F.name||"Webkit",F.webkit=$;if(!F.version&&a)F.version=a}else if(!F.opera&&/gecko\//i.test(q))F.name=F.name||"Gecko",F.gecko=$,F.version=F.version||U(/gecko\/(\d+(\.\d+)?)/i);if(!F.windowsphone&&(L||F.silk))F.android=$,F.osname="Android";else if(!F.windowsphone&&W)F[W]=$,F.ios=$,F.osname="iOS";else if(s)F.mac=$,F.osname="macOS";else if(m)F.xbox=$,F.osname="Xbox";else if(h)F.windows=$,F.osname="Windows";else if(i)F.linux=$,F.osname="Linux";function J1(w1){switch(w1){case"NT":return"NT";case"XP":return"XP";case"NT 5.0":return"2000";case"NT 5.1":return"XP";case"NT 5.2":return"2003";case"NT 6.0":return"Vista";case"NT 6.1":return"7";case"NT 6.2":return"8";case"NT 6.3":return"8.1";case"NT 10.0":return"10";default:return}}var l="";if(F.windows)l=J1(U(/Windows ((NT|XP)( \d\d?.\d)?)/i));else if(F.windowsphone)l=U(/windows phone (?:os)?\s?(\d+(\.\d+)*)/i);else if(F.mac)l=U(/Mac OS X (\d+([_\.\s]\d+)*)/i),l=l.replace(/[_\s]/g,".");else if(W)l=U(/os (\d+([_\s]\d+)*) like mac os x/i),l=l.replace(/[_\s]/g,".");else if(L)l=U(/android[ \/-](\d+(\.\d+)*)/i);else if(F.webos)l=U(/(?:web|hpw)os\/(\d+(\.\d+)*)/i);else if(F.blackberry)l=U(/rim\stablet\sos\s(\d+(\.\d+)*)/i);else if(F.bada)l=U(/bada\/(\d+(\.\d+)*)/i);else if(F.tizen)l=U(/tizen[\/\s](\d+(\.\d+)*)/i);if(l)F.osversion=l;var F1=!F.windows&&l.split(".")[0];if(t||B||W=="ipad"||L&&(F1==3||F1>=4&&!_)||F.silk)F.tablet=$;else if(_||W=="iphone"||W=="ipod"||L||V||F.blackberry||F.webos||F.bada)F.mobile=$;if(F.msedge||F.msie&&F.version>=10||F.yandexbrowser&&F.version>=15||F.vivaldi&&F.version>=1||F.chrome&&F.version>=20||F.samsungBrowser&&F.version>=4||F.whale&&Y([F.version,"1.0"])===1||F.mzbrowser&&Y([F.version,"6.0"])===1||F.focus&&Y([F.version,"1.0"])===1||F.firefox&&F.version>=20||F.safari&&F.version>=6||F.opera&&F.version>=10||F.ios&&F.osversion&&F.osversion.split(".")[0]>=6||F.blackberry&&F.version>=10.1||F.chromium&&F.version>=20)F.a=$;else if(F.msie&&F.version<10||F.chrome&&F.version<20||F.firefox&&F.version<20||F.safari&&F.version<6||F.opera&&F.version<10||F.ios&&F.osversion&&F.osversion.split(".")[0]<6||F.chromium&&F.version<20)F.c=$;else F.x=$;return F}var G=Z(typeof navigator<"u"?navigator.userAgent||"":"");G.test=function(q){for(var U=0;U<q.length;++U){var K=q[U];if(typeof K==="string"){if(K in G)return!0}}return!1};function J(q){return q.split(".").length}function X(q,U){var K=[],W;if(Array.prototype.map)return Array.prototype.map.call(q,U);for(W=0;W<q.length;W++)K.push(U(q[W]));return K}function Y(q){var U=Math.max(J(q[0]),J(q[1])),K=X(q,function(W){var z=U-J(W);return W=W+Array(z+1).join(".0"),X(W.split("."),function(L){return Array(20-L.length).join("0")+L}).reverse()});while(--U>=0)if(K[0][U]>K[1][U])return 1;else if(K[0][U]===K[1][U]){if(U===0)return 0}else return-1}function H(q,U,K){var W=G;if(typeof U==="string")K=U,U=void 0;if(U===void 0)U=!1;if(K)W=Z(K);var z=""+W.version;for(var L in q)if(q.hasOwnProperty(L)){if(W[L]){if(typeof q[L]!=="string")throw Error("Browser version in the minVersion map should be a string: "+L+": "+String(q));return Y([z,q[L]])<0}}return U}function Q(q,U,K){return!H(q,U,K)}return G.isUnsupportedBrowser=H,G.compareVersions=Y,G.check=Q,G._detect=Z,G.detect=Z,G})});var iK=O((N4,lK)=>{Object.defineProperty(N4,"__esModule",{value:!0});N4.default=KD;var HD=mK(),fK=QD(HD);function QD($){return $&&$.__esModule?$:{default:$}}var uK={chrome:"Webkit",safari:"Webkit",ios:"Webkit",android:"Webkit",phantom:"Webkit",opera:"Webkit",webos:"Webkit",blackberry:"Webkit",bada:"Webkit",tizen:"Webkit",chromium:"Webkit",vivaldi:"Webkit",firefox:"Moz",seamoney:"Moz",sailfish:"Moz",msie:"ms",msedge:"ms"},pK={chrome:"chrome",chromium:"chrome",safari:"safari",firfox:"firefox",msedge:"edge",opera:"opera",vivaldi:"opera",msie:"ie"};function qD($){if($.firefox)return"firefox";if($.mobile||$.tablet){if($.ios)return"ios_saf";else if($.android)return"android";else if($.opera)return"op_mini"}for(var Z in pK)if($.hasOwnProperty(Z))return pK[Z]}function KD($){var Z=fK.default._detect($);if(Z.yandexbrowser)Z=fK.default._detect($.replace(/YaBrowser\/[0-9.]*/,""));for(var G in uK)if(Z.hasOwnProperty(G)){var J=uK[G];Z.jsPrefix=J,Z.cssPrefix="-"+J.toLowerCase()+"-";break}if(Z.browserName=qD(Z),Z.version)Z.browserVersion=parseFloat(Z.version);else Z.browserVersion=parseInt(parseFloat(Z.osversion),10);if(Z.osVersion=parseFloat(Z.osversion),Z.browserName==="ios_saf"&&Z.browserVersion>Z.osVersion)Z.browserVersion=Z.osVersion;if(Z.browserName==="android"&&Z.chrome&&Z.browserVersion>37)Z.browserName="and_chr";if(Z.browserName==="android"&&Z.osVersion<5)Z.browserVersion=Z.osVersion;if(Z.browserName==="android"&&Z.samsungBrowser)Z.browserName="and_chr",Z.browserVersion=44;return Z}lK.exports=N4.default});var dK=O((B4,cK)=>{Object.defineProperty(B4,"__esModule",{value:!0});B4.default=UD;function UD($,Z,G){var J="keyframes";if($==="chrome"&&Z<43||($==="safari"||$==="ios_saf")&&Z<9||$==="opera"&&Z<30||$==="android"&&Z<=4.4||$==="and_uc")return G+J;return J}cK.exports=B4.default});var nK=O((V4,aK)=>{Object.defineProperty(V4,"__esModule",{value:!0});var WD=function(){function $(Z,G){for(var J=0;J<G.length;J++){var X=G[J];if(X.enumerable=X.enumerable||!1,X.configurable=!0,"value"in X)X.writable=!0;Object.defineProperty(Z,X.key,X)}}return function(Z,G,J){if(G)$(Z.prototype,G);if(J)$(Z,J);return Z}}();V4.default=PD;var LD=iK(),zD=p6(LD),AD=dK(),ND=p6(AD),BD=Q4(),VD=p6(BD),FD=hJ(),RD=p6(FD),OD=bJ(),MD=p6(OD),DD=xJ(),rK=p6(DD);function p6($){return $&&$.__esModule?$:{default:$}}function ID($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function PD($){var{prefixMap:Z,plugins:G}=$,J=arguments.length>1&&arguments[1]!==void 0?arguments[1]:function(X){return X};return function(){function X(){var Y=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};ID(this,X);var H=typeof navigator<"u"?navigator.userAgent:void 0;if(this._userAgent=Y.userAgent||H,this._keepUnprefixed=Y.keepUnprefixed||!1,this._userAgent)this._browserInfo=(0,zD.default)(this._userAgent);if(this._browserInfo&&this._browserInfo.cssPrefix)this.prefixedKeyframes=(0,ND.default)(this._browserInfo.browserName,this._browserInfo.browserVersion,this._browserInfo.cssPrefix);else return this._useFallback=!0,!1;var Q=this._browserInfo.browserName&&Z[this._browserInfo.browserName];if(Q){this._requiresPrefix={};for(var q in Q)if(Q[q]>=this._browserInfo.browserVersion)this._requiresPrefix[q]=!0;this._hasPropsRequiringPrefix=Object.keys(this._requiresPrefix).length>0}else this._useFallback=!0;this._metaData={browserVersion:this._browserInfo.browserVersion,browserName:this._browserInfo.browserName,cssPrefix:this._browserInfo.cssPrefix,jsPrefix:this._browserInfo.jsPrefix,keepUnprefixed:this._keepUnprefixed,requiresPrefix:this._requiresPrefix}}return WD(X,[{key:"prefix",value:function(H){if(this._useFallback)return J(H);if(!this._hasPropsRequiringPrefix)return H;return this._prefixStyle(H)}},{key:"_prefixStyle",value:function(H){for(var Q in H){var q=H[Q];if((0,MD.default)(q))H[Q]=this.prefix(q);else if(Array.isArray(q)){var U=[];for(var K=0,W=q.length;K<W;++K){var z=(0,rK.default)(G,Q,q[K],H,this._metaData);(0,RD.default)(U,z||q[K])}if(U.length>0)H[Q]=U}else{var L=(0,rK.default)(G,Q,q,H,this._metaData);if(L)H[Q]=L;if(this._requiresPrefix.hasOwnProperty(Q)){if(H[this._browserInfo.jsPrefix+(0,VD.default)(Q)]=q,!this._keepUnprefixed)delete H[Q]}}}return H}}],[{key:"prefixAll",value:function(H){return J(H)}}]),X}()}aK.exports=V4.default});var kJ=O((dm,F4)=>{/*!
|
|
18
|
+
*/(function($,Z,J){if(typeof z8<"u"&&z8.exports)z8.exports=J();else if(typeof define=="function"&&define.amd)define(Z,J);else $[Z]=J()})(bX,"bowser",function(){var $=!0;function Z(H){function K(m0){var Y0=H.match(m0);return Y0&&Y0.length>1&&Y0[1]||""}function U(m0){var Y0=H.match(m0);return Y0&&Y0.length>1&&Y0[2]||""}var O=K(/(ipod|iphone|ipad)/i).toLowerCase(),W=/like android/i.test(H),L=!W&&/android/i.test(H),B=/nexus\s*[0-6]\s*/i.test(H),V=!B&&/nexus\s*[0-9]+/i.test(H),R=/CrOS/.test(H),T=/silk/i.test(H),P=/sailfish/i.test(H),q=/tizen/i.test(H),N=/(web|hpw)(o|0)s/i.test(H),v=/windows phone/i.test(H),S=/SamsungBrowser/i.test(H),s=!v&&/windows/i.test(H),R1=!O&&!T&&/macintosh/i.test(H),y1=!L&&!P&&!q&&!N&&/linux/i.test(H),G0=U(/edg([ea]|ios)\/(\d+(\.\d+)?)/i),l=K(/version\/(\d+(\.\d+)?)/i),K5=/tablet/i.test(H)&&!/tablet pc/i.test(H),d=!K5&&/[^-]mobi/i.test(H),p5=/xbox/i.test(H),A;if(/opera/i.test(H))A={name:"Opera",opera:$,version:l||K(/(?:opera|opr|opios)[\s\/](\d+(\.\d+)?)/i)};else if(/opr\/|opios/i.test(H))A={name:"Opera",opera:$,version:K(/(?:opr|opios)[\s\/](\d+(\.\d+)?)/i)||l};else if(/SamsungBrowser/i.test(H))A={name:"Samsung Internet for Android",samsungBrowser:$,version:l||K(/(?:SamsungBrowser)[\s\/](\d+(\.\d+)?)/i)};else if(/Whale/i.test(H))A={name:"NAVER Whale browser",whale:$,version:K(/(?:whale)[\s\/](\d+(?:\.\d+)+)/i)};else if(/MZBrowser/i.test(H))A={name:"MZ Browser",mzbrowser:$,version:K(/(?:MZBrowser)[\s\/](\d+(?:\.\d+)+)/i)};else if(/coast/i.test(H))A={name:"Opera Coast",coast:$,version:l||K(/(?:coast)[\s\/](\d+(\.\d+)?)/i)};else if(/focus/i.test(H))A={name:"Focus",focus:$,version:K(/(?:focus)[\s\/](\d+(?:\.\d+)+)/i)};else if(/yabrowser/i.test(H))A={name:"Yandex Browser",yandexbrowser:$,version:l||K(/(?:yabrowser)[\s\/](\d+(\.\d+)?)/i)};else if(/ucbrowser/i.test(H))A={name:"UC Browser",ucbrowser:$,version:K(/(?:ucbrowser)[\s\/](\d+(?:\.\d+)+)/i)};else if(/mxios/i.test(H))A={name:"Maxthon",maxthon:$,version:K(/(?:mxios)[\s\/](\d+(?:\.\d+)+)/i)};else if(/epiphany/i.test(H))A={name:"Epiphany",epiphany:$,version:K(/(?:epiphany)[\s\/](\d+(?:\.\d+)+)/i)};else if(/puffin/i.test(H))A={name:"Puffin",puffin:$,version:K(/(?:puffin)[\s\/](\d+(?:\.\d+)?)/i)};else if(/sleipnir/i.test(H))A={name:"Sleipnir",sleipnir:$,version:K(/(?:sleipnir)[\s\/](\d+(?:\.\d+)+)/i)};else if(/k-meleon/i.test(H))A={name:"K-Meleon",kMeleon:$,version:K(/(?:k-meleon)[\s\/](\d+(?:\.\d+)+)/i)};else if(v)if(A={name:"Windows Phone",osname:"Windows Phone",windowsphone:$},G0)A.msedge=$,A.version=G0;else A.msie=$,A.version=K(/iemobile\/(\d+(\.\d+)?)/i);else if(/msie|trident/i.test(H))A={name:"Internet Explorer",msie:$,version:K(/(?:msie |rv:)(\d+(\.\d+)?)/i)};else if(R)A={name:"Chrome",osname:"Chrome OS",chromeos:$,chromeBook:$,chrome:$,version:K(/(?:chrome|crios|crmo)\/(\d+(\.\d+)?)/i)};else if(/edg([ea]|ios)/i.test(H))A={name:"Microsoft Edge",msedge:$,version:G0};else if(/vivaldi/i.test(H))A={name:"Vivaldi",vivaldi:$,version:K(/vivaldi\/(\d+(\.\d+)?)/i)||l};else if(P)A={name:"Sailfish",osname:"Sailfish OS",sailfish:$,version:K(/sailfish\s?browser\/(\d+(\.\d+)?)/i)};else if(/seamonkey\//i.test(H))A={name:"SeaMonkey",seamonkey:$,version:K(/seamonkey\/(\d+(\.\d+)?)/i)};else if(/firefox|iceweasel|fxios/i.test(H)){if(A={name:"Firefox",firefox:$,version:K(/(?:firefox|iceweasel|fxios)[ \/](\d+(\.\d+)?)/i)},/\((mobile|tablet);[^\)]*rv:[\d\.]+\)/i.test(H))A.firefoxos=$,A.osname="Firefox OS"}else if(T)A={name:"Amazon Silk",silk:$,version:K(/silk\/(\d+(\.\d+)?)/i)};else if(/phantom/i.test(H))A={name:"PhantomJS",phantom:$,version:K(/phantomjs\/(\d+(\.\d+)?)/i)};else if(/slimerjs/i.test(H))A={name:"SlimerJS",slimer:$,version:K(/slimerjs\/(\d+(\.\d+)?)/i)};else if(/blackberry|\bbb\d+/i.test(H)||/rim\stablet/i.test(H))A={name:"BlackBerry",osname:"BlackBerry OS",blackberry:$,version:l||K(/blackberry[\d]+\/(\d+(\.\d+)?)/i)};else if(N)A={name:"WebOS",osname:"WebOS",webos:$,version:l||K(/w(?:eb)?osbrowser\/(\d+(\.\d+)?)/i)},/touchpad\//i.test(H)&&(A.touchpad=$);else if(/bada/i.test(H))A={name:"Bada",osname:"Bada",bada:$,version:K(/dolfin\/(\d+(\.\d+)?)/i)};else if(q)A={name:"Tizen",osname:"Tizen",tizen:$,version:K(/(?:tizen\s?)?browser\/(\d+(\.\d+)?)/i)||l};else if(/qupzilla/i.test(H))A={name:"QupZilla",qupzilla:$,version:K(/(?:qupzilla)[\s\/](\d+(?:\.\d+)+)/i)||l};else if(/chromium/i.test(H))A={name:"Chromium",chromium:$,version:K(/(?:chromium)[\s\/](\d+(?:\.\d+)?)/i)||l};else if(/chrome|crios|crmo/i.test(H))A={name:"Chrome",chrome:$,version:K(/(?:chrome|crios|crmo)\/(\d+(\.\d+)?)/i)};else if(L)A={name:"Android",version:l};else if(/safari|applewebkit/i.test(H)){if(A={name:"Safari",safari:$},l)A.version=l}else if(O){if(A={name:O=="iphone"?"iPhone":O=="ipad"?"iPad":"iPod"},l)A.version=l}else if(/googlebot/i.test(H))A={name:"Googlebot",googlebot:$,version:K(/googlebot\/(\d+(\.\d+))/i)||l};else A={name:K(/^(.*)\/(.*) /),version:U(/^(.*)\/(.*) /)};if(!A.msedge&&/(apple)?webkit/i.test(H)){if(/(apple)?webkit\/537\.36/i.test(H))A.name=A.name||"Blink",A.blink=$;else A.name=A.name||"Webkit",A.webkit=$;if(!A.version&&l)A.version=l}else if(!A.opera&&/gecko\//i.test(H))A.name=A.name||"Gecko",A.gecko=$,A.version=A.version||K(/gecko\/(\d+(\.\d+)?)/i);if(!A.windowsphone&&(L||A.silk))A.android=$,A.osname="Android";else if(!A.windowsphone&&O)A[O]=$,A.ios=$,A.osname="iOS";else if(R1)A.mac=$,A.osname="macOS";else if(p5)A.xbox=$,A.osname="Xbox";else if(s)A.windows=$,A.osname="Windows";else if(y1)A.linux=$,A.osname="Linux";function i5(m0){switch(m0){case"NT":return"NT";case"XP":return"XP";case"NT 5.0":return"2000";case"NT 5.1":return"XP";case"NT 5.2":return"2003";case"NT 6.0":return"Vista";case"NT 6.1":return"7";case"NT 6.2":return"8";case"NT 6.3":return"8.1";case"NT 10.0":return"10";default:return}}var p="";if(A.windows)p=i5(K(/Windows ((NT|XP)( \d\d?.\d)?)/i));else if(A.windowsphone)p=K(/windows phone (?:os)?\s?(\d+(\.\d+)*)/i);else if(A.mac)p=K(/Mac OS X (\d+([_\.\s]\d+)*)/i),p=p.replace(/[_\s]/g,".");else if(O)p=K(/os (\d+([_\s]\d+)*) like mac os x/i),p=p.replace(/[_\s]/g,".");else if(L)p=K(/android[ \/-](\d+(\.\d+)*)/i);else if(A.webos)p=K(/(?:web|hpw)os\/(\d+(\.\d+)*)/i);else if(A.blackberry)p=K(/rim\stablet\sos\s(\d+(\.\d+)*)/i);else if(A.bada)p=K(/bada\/(\d+(\.\d+)*)/i);else if(A.tizen)p=K(/tizen[\/\s](\d+(\.\d+)*)/i);if(p)A.osversion=p;var q0=!A.windows&&p.split(".")[0];if(K5||V||O=="ipad"||L&&(q0==3||q0>=4&&!d)||A.silk)A.tablet=$;else if(d||O=="iphone"||O=="ipod"||L||B||A.blackberry||A.webos||A.bada)A.mobile=$;if(A.msedge||A.msie&&A.version>=10||A.yandexbrowser&&A.version>=15||A.vivaldi&&A.version>=1||A.chrome&&A.version>=20||A.samsungBrowser&&A.version>=4||A.whale&&X([A.version,"1.0"])===1||A.mzbrowser&&X([A.version,"6.0"])===1||A.focus&&X([A.version,"1.0"])===1||A.firefox&&A.version>=20||A.safari&&A.version>=6||A.opera&&A.version>=10||A.ios&&A.osversion&&A.osversion.split(".")[0]>=6||A.blackberry&&A.version>=10.1||A.chromium&&A.version>=20)A.a=$;else if(A.msie&&A.version<10||A.chrome&&A.version<20||A.firefox&&A.version<20||A.safari&&A.version<6||A.opera&&A.version<10||A.ios&&A.osversion&&A.osversion.split(".")[0]<6||A.chromium&&A.version<20)A.c=$;else A.x=$;return A}var J=Z(typeof navigator<"u"?navigator.userAgent||"":"");J.test=function(H){for(var K=0;K<H.length;++K){var U=H[K];if(typeof U==="string"){if(U in J)return!0}}return!1};function G(H){return H.split(".").length}function Y(H,K){var U=[],O;if(Array.prototype.map)return Array.prototype.map.call(H,K);for(O=0;O<H.length;O++)U.push(K(H[O]));return U}function X(H){var K=Math.max(G(H[0]),G(H[1])),U=Y(H,function(O){var W=K-G(O);return O=O+Array(W+1).join(".0"),Y(O.split("."),function(L){return Array(20-L.length).join("0")+L}).reverse()});while(--K>=0)if(U[0][K]>U[1][K])return 1;else if(U[0][K]===U[1][K]){if(K===0)return 0}else return-1}function Q(H,K,U){var O=J;if(typeof K==="string")U=K,K=void 0;if(K===void 0)K=!1;if(U)O=Z(U);var W=""+O.version;for(var L in H)if(H.hasOwnProperty(L)){if(O[L]){if(typeof H[L]!=="string")throw Error("Browser version in the minVersion map should be a string: "+L+": "+String(H));return X([W,H[L]])<0}}return K}function z(H,K,U){return!Q(H,K,U)}return J.isUnsupportedBrowser=Q,J.compareVersions=X,J.check=z,J._detect=Z,J.detect=Z,J})});var iX=F((K8,pX)=>{Object.defineProperty(K8,"__esModule",{value:!0});K8.default=jA;var wA=mX(),uX=EA(wA);function EA($){return $&&$.__esModule?$:{default:$}}var lX={chrome:"Webkit",safari:"Webkit",ios:"Webkit",android:"Webkit",phantom:"Webkit",opera:"Webkit",webos:"Webkit",blackberry:"Webkit",bada:"Webkit",tizen:"Webkit",chromium:"Webkit",vivaldi:"Webkit",firefox:"Moz",seamoney:"Moz",sailfish:"Moz",msie:"ms",msedge:"ms"},cX={chrome:"chrome",chromium:"chrome",safari:"safari",firfox:"firefox",msedge:"edge",opera:"opera",vivaldi:"opera",msie:"ie"};function vA($){if($.firefox)return"firefox";if($.mobile||$.tablet){if($.ios)return"ios_saf";else if($.android)return"android";else if($.opera)return"op_mini"}for(var Z in cX)if($.hasOwnProperty(Z))return cX[Z]}function jA($){var Z=uX.default._detect($);if(Z.yandexbrowser)Z=uX.default._detect($.replace(/YaBrowser\/[0-9.]*/,""));for(var J in lX)if(Z.hasOwnProperty(J)){var G=lX[J];Z.jsPrefix=G,Z.cssPrefix="-"+G.toLowerCase()+"-";break}if(Z.browserName=vA(Z),Z.version)Z.browserVersion=parseFloat(Z.version);else Z.browserVersion=parseInt(parseFloat(Z.osversion),10);if(Z.osVersion=parseFloat(Z.osversion),Z.browserName==="ios_saf"&&Z.browserVersion>Z.osVersion)Z.browserVersion=Z.osVersion;if(Z.browserName==="android"&&Z.chrome&&Z.browserVersion>37)Z.browserName="and_chr";if(Z.browserName==="android"&&Z.osVersion<5)Z.browserVersion=Z.osVersion;if(Z.browserName==="android"&&Z.samsungBrowser)Z.browserName="and_chr",Z.browserVersion=44;return Z}pX.exports=K8.default});var nX=F((U8,dX)=>{Object.defineProperty(U8,"__esModule",{value:!0});U8.default=fA;function fA($,Z,J){var G="keyframes";if($==="chrome"&&Z<43||($==="safari"||$==="ios_saf")&&Z<9||$==="opera"&&Z<30||$==="android"&&Z<=4.4||$==="and_uc")return J+G;return G}dX.exports=U8.default});var oX=F((O8,rX)=>{Object.defineProperty(O8,"__esModule",{value:!0});var SA=function(){function $(Z,J){for(var G=0;G<J.length;G++){var Y=J[G];if(Y.enumerable=Y.enumerable||!1,Y.configurable=!0,"value"in Y)Y.writable=!0;Object.defineProperty(Z,Y.key,Y)}}return function(Z,J,G){if(J)$(Z.prototype,J);if(G)$(Z,G);return Z}}();O8.default=pA;var xA=iX(),CA=y5(xA),_A=nX(),yA=y5(_A),gA=Z8(),hA=y5(gA),kA=j4(),bA=y5(kA),mA=f4(),uA=y5(mA),lA=v4(),aX=y5(lA);function y5($){return $&&$.__esModule?$:{default:$}}function cA($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function pA($){var{prefixMap:Z,plugins:J}=$,G=arguments.length>1&&arguments[1]!==void 0?arguments[1]:function(Y){return Y};return function(){function Y(){var X=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};cA(this,Y);var Q=typeof navigator<"u"?navigator.userAgent:void 0;if(this._userAgent=X.userAgent||Q,this._keepUnprefixed=X.keepUnprefixed||!1,this._userAgent)this._browserInfo=(0,CA.default)(this._userAgent);if(this._browserInfo&&this._browserInfo.cssPrefix)this.prefixedKeyframes=(0,yA.default)(this._browserInfo.browserName,this._browserInfo.browserVersion,this._browserInfo.cssPrefix);else return this._useFallback=!0,!1;var z=this._browserInfo.browserName&&Z[this._browserInfo.browserName];if(z){this._requiresPrefix={};for(var H in z)if(z[H]>=this._browserInfo.browserVersion)this._requiresPrefix[H]=!0;this._hasPropsRequiringPrefix=Object.keys(this._requiresPrefix).length>0}else this._useFallback=!0;this._metaData={browserVersion:this._browserInfo.browserVersion,browserName:this._browserInfo.browserName,cssPrefix:this._browserInfo.cssPrefix,jsPrefix:this._browserInfo.jsPrefix,keepUnprefixed:this._keepUnprefixed,requiresPrefix:this._requiresPrefix}}return SA(Y,[{key:"prefix",value:function(Q){if(this._useFallback)return G(Q);if(!this._hasPropsRequiringPrefix)return Q;return this._prefixStyle(Q)}},{key:"_prefixStyle",value:function(Q){for(var z in Q){var H=Q[z];if((0,uA.default)(H))Q[z]=this.prefix(H);else if(Array.isArray(H)){var K=[];for(var U=0,O=H.length;U<O;++U){var W=(0,aX.default)(J,z,H[U],Q,this._metaData);(0,bA.default)(K,W||H[U])}if(K.length>0)Q[z]=K}else{var L=(0,aX.default)(J,z,H,Q,this._metaData);if(L)Q[z]=L;if(this._requiresPrefix.hasOwnProperty(z)){if(Q[this._browserInfo.jsPrefix+(0,hA.default)(z)]=H,!this._keepUnprefixed)delete Q[z]}}}return Q}}],[{key:"prefixAll",value:function(Q){return G(Q)}}]),Y}()}rX.exports=O8.default});var S4=F((bD,V8)=>{/*!
|
|
19
19
|
Copyright (c) 2015 Jed Watson.
|
|
20
20
|
Based on code that is Copyright 2013-2015, Facebook, Inc.
|
|
21
21
|
All rights reserved.
|
|
22
|
-
*/(function(){var $=!!(typeof window<"u"&&window.document&&window.document.createElement),Z={canUseDOM:$,canUseWorkers:typeof Worker<"u",canUseEventListeners:$&&!!(window.addEventListener||window.attachEvent),canUseViewport:$&&!!window.screen};if(typeof define==="function"&&typeof define.amd==="object"&&define.amd)define(function(){return Z});else if(typeof F4<"u"&&F4.exports)F4.exports=Z;else window.ExecutionEnvironment=Z})()});var J6=O((R4,sK)=>{Object.defineProperty(R4,"__esModule",{value:!0});R4.default=wD;var TD=/-webkit-|-moz-|-ms-/;function wD($){return typeof $==="string"&&TD.test($)}sK.exports=R4.default});var tK=O((O4,oK)=>{Object.defineProperty(O4,"__esModule",{value:!0});O4.default=CD;var ED=J6(),jD=SD(ED);function SD($){return $&&$.__esModule?$:{default:$}}var _D=["-webkit-","-moz-",""];function CD($,Z){if(typeof Z==="string"&&!(0,jD.default)(Z)&&Z.indexOf("calc(")>-1)return _D.map(function(G){return Z.replace(/calc\(/g,G+"calc(")})}oK.exports=O4.default});var $U=O((M4,eK)=>{Object.defineProperty(M4,"__esModule",{value:!0});M4.default=hD;var gD=J6(),yD=vD(gD);function vD($){return $&&$.__esModule?$:{default:$}}var xD=["-webkit-",""];function hD($,Z){if(typeof Z==="string"&&!(0,yD.default)(Z)&&Z.indexOf("cross-fade(")>-1)return xD.map(function(G){return Z.replace(/cross-fade\(/g,G+"cross-fade(")})}eK.exports=M4.default});var GU=O((D4,ZU)=>{Object.defineProperty(D4,"__esModule",{value:!0});D4.default=mD;var bD=["-webkit-","-moz-",""],kD={"zoom-in":!0,"zoom-out":!0,grab:!0,grabbing:!0};function mD($,Z){if($==="cursor"&&kD.hasOwnProperty(Z))return bD.map(function(G){return G+Z})}ZU.exports=D4.default});var XU=O((I4,JU)=>{Object.defineProperty(I4,"__esModule",{value:!0});I4.default=iD;var fD=J6(),uD=pD(fD);function pD($){return $&&$.__esModule?$:{default:$}}var lD=["-webkit-",""];function iD($,Z){if(typeof Z==="string"&&!(0,uD.default)(Z)&&Z.indexOf("filter(")>-1)return lD.map(function(G){return Z.replace(/filter\(/g,G+"filter(")})}JU.exports=I4.default});var QU=O((P4,HU)=>{Object.defineProperty(P4,"__esModule",{value:!0});P4.default=cD;var YU={flex:["-webkit-box","-moz-box","-ms-flexbox","-webkit-flex","flex"],"inline-flex":["-webkit-inline-box","-moz-inline-box","-ms-inline-flexbox","-webkit-inline-flex","inline-flex"]};function cD($,Z){if($==="display"&&YU.hasOwnProperty(Z))return YU[Z]}HU.exports=P4.default});var UU=O((T4,KU)=>{Object.defineProperty(T4,"__esModule",{value:!0});T4.default=rD;var dD={"space-around":"distribute","space-between":"justify","flex-start":"start","flex-end":"end"},qU={alignContent:"msFlexLinePack",alignSelf:"msFlexItemAlign",alignItems:"msFlexAlign",justifyContent:"msFlexPack",order:"msFlexOrder",flexGrow:"msFlexPositive",flexShrink:"msFlexNegative",flexBasis:"msFlexPreferredSize"};function rD($,Z,G){if(qU.hasOwnProperty($))G[qU[$]]=dD[Z]||Z}KU.exports=T4.default});var zU=O((w4,LU)=>{Object.defineProperty(w4,"__esModule",{value:!0});w4.default=nD;var aD={"space-around":"justify","space-between":"justify","flex-start":"start","flex-end":"end","wrap-reverse":"multiple",wrap:"multiple",flex:"box","inline-flex":"inline-box"},WU={alignItems:"WebkitBoxAlign",justifyContent:"WebkitBoxPack",flexWrap:"WebkitBoxLines",flexGrow:"WebkitBoxFlex"};function nD($,Z,G){if($==="flexDirection"&&typeof Z==="string"){if(Z.indexOf("column")>-1)G.WebkitBoxOrient="vertical";else G.WebkitBoxOrient="horizontal";if(Z.indexOf("reverse")>-1)G.WebkitBoxDirection="reverse";else G.WebkitBoxDirection="normal"}if(WU.hasOwnProperty($))G[WU[$]]=aD[Z]||Z}LU.exports=w4.default});var BU=O((E4,NU)=>{Object.defineProperty(E4,"__esModule",{value:!0});E4.default=$I;var sD=J6(),oD=tD(sD);function tD($){return $&&$.__esModule?$:{default:$}}var eD=["-webkit-","-moz-",""],AU=/linear-gradient|radial-gradient|repeating-linear-gradient|repeating-radial-gradient/gi;function $I($,Z){if(typeof Z==="string"&&!(0,oD.default)(Z)&&AU.test(Z))return eD.map(function(G){return Z.replace(AU,function(J){return G+J})})}NU.exports=E4.default});var FU=O((j4,VU)=>{Object.defineProperty(j4,"__esModule",{value:!0});j4.default=YI;var ZI=J6(),GI=JI(ZI);function JI($){return $&&$.__esModule?$:{default:$}}var XI=["-webkit-",""];function YI($,Z){if(typeof Z==="string"&&!(0,GI.default)(Z)&&Z.indexOf("image-set(")>-1)return XI.map(function(G){return Z.replace(/image-set\(/g,G+"image-set(")})}VU.exports=j4.default});var OU=O((S4,RU)=>{Object.defineProperty(S4,"__esModule",{value:!0});S4.default=HI;function HI($,Z){if($==="position"&&Z==="sticky")return["-webkit-sticky","sticky"]}RU.exports=S4.default});var DU=O((_4,MU)=>{Object.defineProperty(_4,"__esModule",{value:!0});_4.default=UI;var QI=["-webkit-","-moz-",""],qI={maxHeight:!0,maxWidth:!0,width:!0,height:!0,columnWidth:!0,minWidth:!0,minHeight:!0},KI={"min-content":!0,"max-content":!0,"fill-available":!0,"fit-content":!0,"contain-floats":!0};function UI($,Z){if(qI.hasOwnProperty($)&&KI.hasOwnProperty(Z))return QI.map(function(G){return G+Z})}MU.exports=_4.default});var PU=O((rm,IU)=>{var WI=/[A-Z]/g,LI=/^ms-/,mJ={};function zI($){return"-"+$.toLowerCase()}function AI($){if(mJ.hasOwnProperty($))return mJ[$];var Z=$.replace(WI,zI);return mJ[$]=LI.test(Z)?"-"+Z:Z}IU.exports=AI});var fJ=O((C4,TU)=>{Object.defineProperty(C4,"__esModule",{value:!0});C4.default=FI;var NI=PU(),BI=VI(NI);function VI($){return $&&$.__esModule?$:{default:$}}function FI($){return(0,BI.default)($)}TU.exports=C4.default});var jU=O((g4,EU)=>{Object.defineProperty(g4,"__esModule",{value:!0});g4.default=EI;var RI=fJ(),OI=uJ(RI),MI=J6(),DI=uJ(MI),II=Q4(),wU=uJ(II);function uJ($){return $&&$.__esModule?$:{default:$}}var PI={transition:!0,transitionProperty:!0,WebkitTransition:!0,WebkitTransitionProperty:!0,MozTransition:!0,MozTransitionProperty:!0},TI={Webkit:"-webkit-",Moz:"-moz-",ms:"-ms-"};function wI($,Z){if((0,DI.default)($))return $;var G=$.split(/,(?![^()]*(?:\([^()]*\))?\))/g);for(var J=0,X=G.length;J<X;++J){var Y=G[J],H=[Y];for(var Q in Z){var q=(0,OI.default)(Q);if(Y.indexOf(q)>-1&&q!=="order"){var U=Z[Q];for(var K=0,W=U.length;K<W;++K)H.unshift(Y.replace(q,TI[U[K]]+q))}}G[J]=H.join(",")}return G.join(",")}function EI($,Z,G,J){if(typeof Z==="string"&&PI.hasOwnProperty($)){var X=wI(Z,J),Y=X.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter(function(Q){return!/-moz-|-ms-/.test(Q)}).join(",");if($.indexOf("Webkit")>-1)return Y;var H=X.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter(function(Q){return!/-webkit-|-ms-/.test(Q)}).join(",");if($.indexOf("Moz")>-1)return H;return G["Webkit"+(0,wU.default)($)]=Y,G["Moz"+(0,wU.default)($)]=H,X}}EU.exports=g4.default});var SU=O((y4)=>{Object.defineProperty(y4,"__esModule",{value:!0});y4.default=void 0;var jI=V0(tK()),SI=V0($U()),_I=V0(GU()),CI=V0(XU()),gI=V0(QU()),yI=V0(UU()),vI=V0(zU()),xI=V0(BU()),hI=V0(FU()),bI=V0(OU()),kI=V0(DU()),mI=V0(jU());function V0($){return $&&$.__esModule?$:{default:$}}var y=["Webkit"],pJ=["Moz"],N1=["ms"],u1=["Webkit","Moz"],v1=["Webkit","ms"],G8=["Webkit","Moz","ms"],fI={plugins:[jI.default,SI.default,_I.default,CI.default,gI.default,yI.default,vI.default,xI.default,hI.default,bI.default,kI.default,mI.default],prefixMap:{transform:v1,transformOrigin:v1,transformOriginX:v1,transformOriginY:v1,backfaceVisibility:y,perspective:y,perspectiveOrigin:y,transformStyle:y,transformOriginZ:y,animation:y,animationDelay:y,animationDirection:y,animationFillMode:y,animationDuration:y,animationIterationCount:y,animationName:y,animationPlayState:y,animationTimingFunction:y,appearance:u1,userSelect:G8,fontKerning:y,textEmphasisPosition:y,textEmphasis:y,textEmphasisStyle:y,textEmphasisColor:y,boxDecorationBreak:y,clipPath:y,maskImage:y,maskMode:y,maskRepeat:y,maskPosition:y,maskClip:y,maskOrigin:y,maskSize:y,maskComposite:y,mask:y,maskBorderSource:y,maskBorderMode:y,maskBorderSlice:y,maskBorderWidth:y,maskBorderOutset:y,maskBorderRepeat:y,maskBorder:y,maskType:y,textDecorationStyle:u1,textDecorationSkip:u1,textDecorationLine:u1,textDecorationColor:u1,filter:y,fontFeatureSettings:u1,breakAfter:G8,breakBefore:G8,breakInside:G8,columnCount:u1,columnFill:u1,columnGap:u1,columnRule:u1,columnRuleColor:u1,columnRuleStyle:u1,columnRuleWidth:u1,columns:u1,columnSpan:u1,columnWidth:u1,writingMode:v1,flex:v1,flexBasis:y,flexDirection:v1,flexGrow:y,flexFlow:v1,flexShrink:y,flexWrap:v1,alignContent:y,alignItems:y,alignSelf:y,justifyContent:y,order:y,transitionDelay:y,transitionDuration:y,transitionProperty:y,transitionTimingFunction:y,backdropFilter:y,scrollSnapType:v1,scrollSnapPointsX:v1,scrollSnapPointsY:v1,scrollSnapDestination:v1,scrollSnapCoordinate:v1,shapeImageThreshold:y,shapeImageMargin:y,shapeImageOutside:y,hyphens:G8,flowInto:v1,flowFrom:v1,regionFragment:v1,boxSizing:pJ,textAlignLast:pJ,tabSize:pJ,wrapFlow:N1,wrapThrough:N1,wrapMargin:N1,touchAction:N1,gridTemplateColumns:N1,gridTemplateRows:N1,gridTemplateAreas:N1,gridTemplate:N1,gridAutoColumns:N1,gridAutoRows:N1,gridAutoFlow:N1,grid:N1,gridRowStart:N1,gridColumnStart:N1,gridRowEnd:N1,gridRow:N1,gridColumn:N1,gridColumnEnd:N1,gridColumnGap:N1,gridRowGap:N1,gridArea:N1,gridGap:N1,textSizeAdjust:v1,borderImage:y,borderImageOutset:y,borderImageRepeat:y,borderImageSlice:y,borderImageSource:y,borderImageWidth:y}};y4.default=fI});var F0=O((v4,_U)=>{Object.defineProperty(v4,"__esModule",{value:!0});v4.default=uI;function uI($,Z,G){if(G)return[$,Z];return $}_U.exports=v4.default});var gU=O((x4,CU)=>{Object.defineProperty(x4,"__esModule",{value:!0});x4.default=cI;var pI=F0(),lI=iI(pI);function iI($){return $&&$.__esModule?$:{default:$}}function cI($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q}=J;if(typeof Z==="string"&&Z.indexOf("calc(")>-1&&(X==="firefox"&&Y<15||X==="chrome"&&Y<25||X==="safari"&&Y<6.1||X==="ios_saf"&&Y<7))return(0,lI.default)(Z.replace(/calc\(/g,H+"calc("),Z,Q)}CU.exports=x4.default});var vU=O((h4,yU)=>{Object.defineProperty(h4,"__esModule",{value:!0});h4.default=nI;var dI=F0(),rI=aI(dI);function aI($){return $&&$.__esModule?$:{default:$}}function nI($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q}=J;if(typeof Z==="string"&&Z.indexOf("cross-fade(")>-1&&(X==="chrome"||X==="opera"||X==="and_chr"||(X==="ios_saf"||X==="safari")&&Y<10))return(0,rI.default)(Z.replace(/cross-fade\(/g,H+"cross-fade("),Z,Q)}yU.exports=h4.default});var bU=O((b4,hU)=>{Object.defineProperty(b4,"__esModule",{value:!0});b4.default=$P;var sI=F0(),xU=oI(sI);function oI($){return $&&$.__esModule?$:{default:$}}var tI={grab:!0,grabbing:!0},eI={"zoom-in":!0,"zoom-out":!0};function $P($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q}=J;if($==="cursor"&&tI[Z]&&(X==="firefox"||X==="chrome"||X==="safari"||X==="opera"))return(0,xU.default)(H+Z,Z,Q);if($==="cursor"&&eI[Z]&&(X==="firefox"&&Y<24||X==="chrome"&&Y<37||X==="safari"&&Y<9||X==="opera"&&Y<24))return(0,xU.default)(H+Z,Z,Q)}hU.exports=b4.default});var mU=O((k4,kU)=>{Object.defineProperty(k4,"__esModule",{value:!0});k4.default=XP;var ZP=F0(),GP=JP(ZP);function JP($){return $&&$.__esModule?$:{default:$}}function XP($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q}=J;if(typeof Z==="string"&&Z.indexOf("filter(")>-1&&(X==="ios_saf"||X==="safari"&&Y<9.1))return(0,GP.default)(Z.replace(/filter\(/g,H+"filter("),Z,Q)}kU.exports=k4.default});var uU=O((m4,fU)=>{Object.defineProperty(m4,"__esModule",{value:!0});m4.default=KP;var YP=F0(),HP=QP(YP);function QP($){return $&&$.__esModule?$:{default:$}}var qP={flex:!0,"inline-flex":!0};function KP($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q}=J;if($==="display"&&qP[Z]&&(X==="chrome"&&Y<29&&Y>20||(X==="safari"||X==="ios_saf")&&Y<9&&Y>6||X==="opera"&&(Y===15||Y===16)))return(0,HP.default)(H+Z,Z,Q)}fU.exports=m4.default});var lU=O((f4,pU)=>{Object.defineProperty(f4,"__esModule",{value:!0});f4.default=zP;var UP=F0(),WP=LP(UP);function LP($){return $&&$.__esModule?$:{default:$}}var lJ={"space-around":"distribute","space-between":"justify","flex-start":"start","flex-end":"end",flex:"flexbox","inline-flex":"inline-flexbox"},iJ={alignContent:"msFlexLinePack",alignSelf:"msFlexItemAlign",alignItems:"msFlexAlign",justifyContent:"msFlexPack",order:"msFlexOrder",flexGrow:"msFlexPositive",flexShrink:"msFlexNegative",flexBasis:"msFlexPreferredSize"};function zP($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q,requiresPrefix:q}=J;if((iJ.hasOwnProperty($)||$==="display"&&typeof Z==="string"&&Z.indexOf("flex")>-1)&&(X==="ie_mob"||X==="ie")&&Y===10){if(delete q[$],!Q&&!Array.isArray(G[$]))delete G[$];if($==="display"&&lJ.hasOwnProperty(Z))return(0,WP.default)(H+lJ[Z],Z,Q);if(iJ.hasOwnProperty($))G[iJ[$]]=lJ[Z]||Z}}pU.exports=f4.default});var cU=O((u4,iU)=>{Object.defineProperty(u4,"__esModule",{value:!0});u4.default=RP;var AP=F0(),NP=BP(AP);function BP($){return $&&$.__esModule?$:{default:$}}var cJ={"space-around":"justify","space-between":"justify","flex-start":"start","flex-end":"end","wrap-reverse":"multiple",wrap:"multiple",flex:"box","inline-flex":"inline-box"},dJ={alignItems:"WebkitBoxAlign",justifyContent:"WebkitBoxPack",flexWrap:"WebkitBoxLines",flexGrow:"WebkitBoxFlex"},VP=["alignContent","alignSelf","order","flexGrow","flexShrink","flexBasis","flexDirection"],FP=Object.keys(dJ).concat(VP);function RP($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q,requiresPrefix:q}=J;if((FP.indexOf($)>-1||$==="display"&&typeof Z==="string"&&Z.indexOf("flex")>-1)&&(X==="firefox"&&Y<22||X==="chrome"&&Y<21||(X==="safari"||X==="ios_saf")&&Y<=6.1||X==="android"&&Y<4.4||X==="and_uc")){if(delete q[$],!Q&&!Array.isArray(G[$]))delete G[$];if($==="flexDirection"&&typeof Z==="string"){if(Z.indexOf("column")>-1)G.WebkitBoxOrient="vertical";else G.WebkitBoxOrient="horizontal";if(Z.indexOf("reverse")>-1)G.WebkitBoxDirection="reverse";else G.WebkitBoxDirection="normal"}if($==="display"&&cJ.hasOwnProperty(Z))return(0,NP.default)(H+cJ[Z],Z,Q);if(dJ.hasOwnProperty($))G[dJ[$]]=cJ[Z]||Z}}iU.exports=u4.default});var aU=O((p4,rU)=>{Object.defineProperty(p4,"__esModule",{value:!0});p4.default=IP;var OP=F0(),MP=DP(OP);function DP($){return $&&$.__esModule?$:{default:$}}var dU=/linear-gradient|radial-gradient|repeating-linear-gradient|repeating-radial-gradient/gi;function IP($,Z,G,J){var{browserName:X,browserVersion:Y,cssPrefix:H,keepUnprefixed:Q}=J;if(typeof Z==="string"&&dU.test(Z)&&(X==="firefox"&&Y<16||X==="chrome"&&Y<26||(X==="safari"||X==="ios_saf")&&Y<7||(X==="opera"||X==="op_mini")&&Y<12.1||X==="android"&&Y<4.4||X==="and_uc"))return(0,MP.default)(Z.replace(dU,function(q){return H+q}),Z,Q)}rU.exports=p4.default});var sU=O((l4,nU)=>{Object.defineProperty(l4,"__esModule",{value:!0});l4.default=EP;var PP=F0(),TP=wP(PP);function wP($){return $&&$.__esModule?$:{default:$}}function EP($,Z,G,J){var{browserName:X,cssPrefix:Y,keepUnprefixed:H}=J;if(typeof Z==="string"&&Z.indexOf("image-set(")>-1&&(X==="chrome"||X==="opera"||X==="and_chr"||X==="and_uc"||X==="ios_saf"||X==="safari"))return(0,TP.default)(Z.replace(/image-set\(/g,Y+"image-set("),Z,H)}nU.exports=l4.default});var tU=O((i4,oU)=>{Object.defineProperty(i4,"__esModule",{value:!0});i4.default=CP;var jP=F0(),SP=_P(jP);function _P($){return $&&$.__esModule?$:{default:$}}function CP($,Z,G,J){var{browserName:X,cssPrefix:Y,keepUnprefixed:H}=J;if($==="position"&&Z==="sticky"&&(X==="safari"||X==="ios_saf"))return(0,SP.default)(Y+Z,Z,H)}oU.exports=i4.default});var $W=O((c4,eU)=>{Object.defineProperty(c4,"__esModule",{value:!0});c4.default=bP;var gP=F0(),yP=vP(gP);function vP($){return $&&$.__esModule?$:{default:$}}var xP={maxHeight:!0,maxWidth:!0,width:!0,height:!0,columnWidth:!0,minWidth:!0,minHeight:!0},hP={"min-content":!0,"max-content":!0,"fill-available":!0,"fit-content":!0,"contain-floats":!0};function bP($,Z,G,J){var{cssPrefix:X,keepUnprefixed:Y}=J;if(xP.hasOwnProperty($)&&hP.hasOwnProperty(Z))return(0,yP.default)(X+Z,Z,Y)}eU.exports=c4.default});var GW=O((d4,ZW)=>{Object.defineProperty(d4,"__esModule",{value:!0});d4.default=pP;var kP=fJ(),mP=fP(kP);function fP($){return $&&$.__esModule?$:{default:$}}var uP={transition:!0,transitionProperty:!0,WebkitTransition:!0,WebkitTransitionProperty:!0,MozTransition:!0,MozTransitionProperty:!0},rJ=void 0;function pP($,Z,G,J){var{cssPrefix:X,keepUnprefixed:Y,requiresPrefix:H}=J;if(typeof Z==="string"&&uP.hasOwnProperty($)){if(!rJ)rJ=Object.keys(H).map(function(q){return(0,mP.default)(q)});var Q=Z.split(/,(?![^()]*(?:\([^()]*\))?\))/g);return rJ.forEach(function(q){Q.forEach(function(U,K){if(U.indexOf(q)>-1&&q!=="order")Q[K]=U.replace(q,X+q)+(Y?","+U:"")})}),Q.join(",")}}ZW.exports=d4.default});var JW=O((r4)=>{Object.defineProperty(r4,"__esModule",{value:!0});r4.default=void 0;var lP=R0(gU()),iP=R0(vU()),cP=R0(bU()),dP=R0(mU()),rP=R0(uU()),aP=R0(lU()),nP=R0(cU()),sP=R0(aU()),oP=R0(sU()),tP=R0(tU()),eP=R0($W()),$T=R0(GW());function R0($){return $&&$.__esModule?$:{default:$}}var ZT={plugins:[lP.default,iP.default,cP.default,dP.default,rP.default,aP.default,nP.default,sP.default,oP.default,tP.default,eP.default,$T.default],prefixMap:{chrome:{transform:35,transformOrigin:35,transformOriginX:35,transformOriginY:35,backfaceVisibility:35,perspective:35,perspectiveOrigin:35,transformStyle:35,transformOriginZ:35,animation:42,animationDelay:42,animationDirection:42,animationFillMode:42,animationDuration:42,animationIterationCount:42,animationName:42,animationPlayState:42,animationTimingFunction:42,appearance:66,userSelect:53,fontKerning:32,textEmphasisPosition:66,textEmphasis:66,textEmphasisStyle:66,textEmphasisColor:66,boxDecorationBreak:66,clipPath:54,maskImage:66,maskMode:66,maskRepeat:66,maskPosition:66,maskClip:66,maskOrigin:66,maskSize:66,maskComposite:66,mask:66,maskBorderSource:66,maskBorderMode:66,maskBorderSlice:66,maskBorderWidth:66,maskBorderOutset:66,maskBorderRepeat:66,maskBorder:66,maskType:66,textDecorationStyle:56,textDecorationSkip:56,textDecorationLine:56,textDecorationColor:56,filter:52,fontFeatureSettings:47,breakAfter:49,breakBefore:49,breakInside:49,columnCount:49,columnFill:49,columnGap:49,columnRule:49,columnRuleColor:49,columnRuleStyle:49,columnRuleWidth:49,columns:49,columnSpan:49,columnWidth:49,writingMode:47},safari:{flex:8,flexBasis:8,flexDirection:8,flexGrow:8,flexFlow:8,flexShrink:8,flexWrap:8,alignContent:8,alignItems:8,alignSelf:8,justifyContent:8,order:8,transition:6,transitionDelay:6,transitionDuration:6,transitionProperty:6,transitionTimingFunction:6,transform:8,transformOrigin:8,transformOriginX:8,transformOriginY:8,backfaceVisibility:8,perspective:8,perspectiveOrigin:8,transformStyle:8,transformOriginZ:8,animation:8,animationDelay:8,animationDirection:8,animationFillMode:8,animationDuration:8,animationIterationCount:8,animationName:8,animationPlayState:8,animationTimingFunction:8,appearance:11,userSelect:11,backdropFilter:11,fontKerning:9,scrollSnapType:10.1,scrollSnapPointsX:10.1,scrollSnapPointsY:10.1,scrollSnapDestination:10.1,scrollSnapCoordinate:10.1,textEmphasisPosition:7,textEmphasis:7,textEmphasisStyle:7,textEmphasisColor:7,boxDecorationBreak:11,clipPath:11,maskImage:11,maskMode:11,maskRepeat:11,maskPosition:11,maskClip:11,maskOrigin:11,maskSize:11,maskComposite:11,mask:11,maskBorderSource:11,maskBorderMode:11,maskBorderSlice:11,maskBorderWidth:11,maskBorderOutset:11,maskBorderRepeat:11,maskBorder:11,maskType:11,textDecorationStyle:11,textDecorationSkip:11,textDecorationLine:11,textDecorationColor:11,shapeImageThreshold:10,shapeImageMargin:10,shapeImageOutside:10,filter:9,hyphens:11,flowInto:11,flowFrom:11,breakBefore:8,breakAfter:8,breakInside:8,regionFragment:11,columnCount:8,columnFill:8,columnGap:8,columnRule:8,columnRuleColor:8,columnRuleStyle:8,columnRuleWidth:8,columns:8,columnSpan:8,columnWidth:8,writingMode:10.1},firefox:{appearance:60,userSelect:60,boxSizing:28,textAlignLast:48,textDecorationStyle:35,textDecorationSkip:35,textDecorationLine:35,textDecorationColor:35,tabSize:60,hyphens:42,fontFeatureSettings:33,breakAfter:51,breakBefore:51,breakInside:51,columnCount:51,columnFill:51,columnGap:51,columnRule:51,columnRuleColor:51,columnRuleStyle:51,columnRuleWidth:51,columns:51,columnSpan:51,columnWidth:51},opera:{flex:16,flexBasis:16,flexDirection:16,flexGrow:16,flexFlow:16,flexShrink:16,flexWrap:16,alignContent:16,alignItems:16,alignSelf:16,justifyContent:16,order:16,transform:22,transformOrigin:22,transformOriginX:22,transformOriginY:22,backfaceVisibility:22,perspective:22,perspectiveOrigin:22,transformStyle:22,transformOriginZ:22,animation:29,animationDelay:29,animationDirection:29,animationFillMode:29,animationDuration:29,animationIterationCount:29,animationName:29,animationPlayState:29,animationTimingFunction:29,appearance:50,userSelect:40,fontKerning:19,textEmphasisPosition:50,textEmphasis:50,textEmphasisStyle:50,textEmphasisColor:50,boxDecorationBreak:50,clipPath:41,maskImage:50,maskMode:50,maskRepeat:50,maskPosition:50,maskClip:50,maskOrigin:50,maskSize:50,maskComposite:50,mask:50,maskBorderSource:50,maskBorderMode:50,maskBorderSlice:50,maskBorderWidth:50,maskBorderOutset:50,maskBorderRepeat:50,maskBorder:50,maskType:50,textDecorationStyle:43,textDecorationSkip:43,textDecorationLine:43,textDecorationColor:43,filter:39,fontFeatureSettings:34,breakAfter:36,breakBefore:36,breakInside:36,columnCount:36,columnFill:36,columnGap:36,columnRule:36,columnRuleColor:36,columnRuleStyle:36,columnRuleWidth:36,columns:36,columnSpan:36,columnWidth:36,writingMode:34},ie:{flex:10,flexDirection:10,flexFlow:10,flexWrap:10,transform:9,transformOrigin:9,transformOriginX:9,transformOriginY:9,userSelect:11,wrapFlow:11,wrapThrough:11,wrapMargin:11,scrollSnapType:11,scrollSnapPointsX:11,scrollSnapPointsY:11,scrollSnapDestination:11,scrollSnapCoordinate:11,touchAction:10,hyphens:11,flowInto:11,flowFrom:11,breakBefore:11,breakAfter:11,breakInside:11,regionFragment:11,gridTemplateColumns:11,gridTemplateRows:11,gridTemplateAreas:11,gridTemplate:11,gridAutoColumns:11,gridAutoRows:11,gridAutoFlow:11,grid:11,gridRowStart:11,gridColumnStart:11,gridRowEnd:11,gridRow:11,gridColumn:11,gridColumnEnd:11,gridColumnGap:11,gridRowGap:11,gridArea:11,gridGap:11,textSizeAdjust:11,writingMode:11},edge:{userSelect:17,wrapFlow:17,wrapThrough:17,wrapMargin:17,scrollSnapType:17,scrollSnapPointsX:17,scrollSnapPointsY:17,scrollSnapDestination:17,scrollSnapCoordinate:17,hyphens:17,flowInto:17,flowFrom:17,breakBefore:17,breakAfter:17,breakInside:17,regionFragment:17,gridTemplateColumns:15,gridTemplateRows:15,gridTemplateAreas:15,gridTemplate:15,gridAutoColumns:15,gridAutoRows:15,gridAutoFlow:15,grid:15,gridRowStart:15,gridColumnStart:15,gridRowEnd:15,gridRow:15,gridColumn:15,gridColumnEnd:15,gridColumnGap:15,gridRowGap:15,gridArea:15,gridGap:15},ios_saf:{flex:8.1,flexBasis:8.1,flexDirection:8.1,flexGrow:8.1,flexFlow:8.1,flexShrink:8.1,flexWrap:8.1,alignContent:8.1,alignItems:8.1,alignSelf:8.1,justifyContent:8.1,order:8.1,transition:6,transitionDelay:6,transitionDuration:6,transitionProperty:6,transitionTimingFunction:6,transform:8.1,transformOrigin:8.1,transformOriginX:8.1,transformOriginY:8.1,backfaceVisibility:8.1,perspective:8.1,perspectiveOrigin:8.1,transformStyle:8.1,transformOriginZ:8.1,animation:8.1,animationDelay:8.1,animationDirection:8.1,animationFillMode:8.1,animationDuration:8.1,animationIterationCount:8.1,animationName:8.1,animationPlayState:8.1,animationTimingFunction:8.1,appearance:11,userSelect:11,backdropFilter:11,fontKerning:11,scrollSnapType:10.3,scrollSnapPointsX:10.3,scrollSnapPointsY:10.3,scrollSnapDestination:10.3,scrollSnapCoordinate:10.3,boxDecorationBreak:11,clipPath:11,maskImage:11,maskMode:11,maskRepeat:11,maskPosition:11,maskClip:11,maskOrigin:11,maskSize:11,maskComposite:11,mask:11,maskBorderSource:11,maskBorderMode:11,maskBorderSlice:11,maskBorderWidth:11,maskBorderOutset:11,maskBorderRepeat:11,maskBorder:11,maskType:11,textSizeAdjust:11,textDecorationStyle:11,textDecorationSkip:11,textDecorationLine:11,textDecorationColor:11,shapeImageThreshold:10,shapeImageMargin:10,shapeImageOutside:10,filter:9,hyphens:11,flowInto:11,flowFrom:11,breakBefore:8.1,breakAfter:8.1,breakInside:8.1,regionFragment:11,columnCount:8.1,columnFill:8.1,columnGap:8.1,columnRule:8.1,columnRuleColor:8.1,columnRuleStyle:8.1,columnRuleWidth:8.1,columns:8.1,columnSpan:8.1,columnWidth:8.1,writingMode:10.3},android:{borderImage:4.2,borderImageOutset:4.2,borderImageRepeat:4.2,borderImageSlice:4.2,borderImageSource:4.2,borderImageWidth:4.2,flex:4.2,flexBasis:4.2,flexDirection:4.2,flexGrow:4.2,flexFlow:4.2,flexShrink:4.2,flexWrap:4.2,alignContent:4.2,alignItems:4.2,alignSelf:4.2,justifyContent:4.2,order:4.2,transition:4.2,transitionDelay:4.2,transitionDuration:4.2,transitionProperty:4.2,transitionTimingFunction:4.2,transform:4.4,transformOrigin:4.4,transformOriginX:4.4,transformOriginY:4.4,backfaceVisibility:4.4,perspective:4.4,perspectiveOrigin:4.4,transformStyle:4.4,transformOriginZ:4.4,animation:4.4,animationDelay:4.4,animationDirection:4.4,animationFillMode:4.4,animationDuration:4.4,animationIterationCount:4.4,animationName:4.4,animationPlayState:4.4,animationTimingFunction:4.4,appearance:62,userSelect:4.4,fontKerning:4.4,textEmphasisPosition:62,textEmphasis:62,textEmphasisStyle:62,textEmphasisColor:62,boxDecorationBreak:62,clipPath:4.4,maskImage:62,maskMode:62,maskRepeat:62,maskPosition:62,maskClip:62,maskOrigin:62,maskSize:62,maskComposite:62,mask:62,maskBorderSource:62,maskBorderMode:62,maskBorderSlice:62,maskBorderWidth:62,maskBorderOutset:62,maskBorderRepeat:62,maskBorder:62,maskType:62,filter:4.4,fontFeatureSettings:4.4,breakAfter:4.4,breakBefore:4.4,breakInside:4.4,columnCount:4.4,columnFill:4.4,columnGap:4.4,columnRule:4.4,columnRuleColor:4.4,columnRuleStyle:4.4,columnRuleWidth:4.4,columns:4.4,columnSpan:4.4,columnWidth:4.4,writingMode:4.4},and_chr:{appearance:62,textEmphasisPosition:62,textEmphasis:62,textEmphasisStyle:62,textEmphasisColor:62,boxDecorationBreak:62,maskImage:62,maskMode:62,maskRepeat:62,maskPosition:62,maskClip:62,maskOrigin:62,maskSize:62,maskComposite:62,mask:62,maskBorderSource:62,maskBorderMode:62,maskBorderSlice:62,maskBorderWidth:62,maskBorderOutset:62,maskBorderRepeat:62,maskBorder:62,maskType:62},and_uc:{flex:11.4,flexBasis:11.4,flexDirection:11.4,flexGrow:11.4,flexFlow:11.4,flexShrink:11.4,flexWrap:11.4,alignContent:11.4,alignItems:11.4,alignSelf:11.4,justifyContent:11.4,order:11.4,transform:11.4,transformOrigin:11.4,transformOriginX:11.4,transformOriginY:11.4,backfaceVisibility:11.4,perspective:11.4,perspectiveOrigin:11.4,transformStyle:11.4,transformOriginZ:11.4,animation:11.4,animationDelay:11.4,animationDirection:11.4,animationFillMode:11.4,animationDuration:11.4,animationIterationCount:11.4,animationName:11.4,animationPlayState:11.4,animationTimingFunction:11.4,appearance:11.4,userSelect:11.4,textEmphasisPosition:11.4,textEmphasis:11.4,textEmphasisStyle:11.4,textEmphasisColor:11.4,clipPath:11.4,maskImage:11.4,maskMode:11.4,maskRepeat:11.4,maskPosition:11.4,maskClip:11.4,maskOrigin:11.4,maskSize:11.4,maskComposite:11.4,mask:11.4,maskBorderSource:11.4,maskBorderMode:11.4,maskBorderSlice:11.4,maskBorderWidth:11.4,maskBorderOutset:11.4,maskBorderRepeat:11.4,maskBorder:11.4,maskType:11.4,textSizeAdjust:11.4,filter:11.4,hyphens:11.4,fontFeatureSettings:11.4,breakAfter:11.4,breakBefore:11.4,breakInside:11.4,columnCount:11.4,columnFill:11.4,columnGap:11.4,columnRule:11.4,columnRuleColor:11.4,columnRuleStyle:11.4,columnRuleWidth:11.4,columns:11.4,columnSpan:11.4,columnWidth:11.4,writingMode:11.4},op_mini:{}}};r4.default=ZT});var o4=O((s4)=>{Object.defineProperty(s4,"__esModule",{value:!0});s4.getPrefixedKeyframes=WT;s4.getPrefixedStyle=LT;var GT=J8(bK()),JT=J8(nK()),XT=J8(kJ()),YT=J8(SU()),HT=J8(JW()),QT=vJ();function J8($){return $&&$.__esModule?$:{default:$}}function n4($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")n4=function(G){return typeof G};else n4=function(G){return G&&typeof Symbol==="function"&&G.constructor===Symbol&&G!==Symbol.prototype?"symbol":typeof G};return n4($)}var YW=(0,GT.default)(YT.default),qT=(0,JT.default)(HT.default,YW);function KT($){return Object.keys($).reduce(function(Z,G){var J=$[G];if(Array.isArray(J))J=J.join(";"+G+":");else if(J&&n4(J)==="object"&&typeof J.toString==="function")J=J.toString();return Z[G]=J,Z},{})}function UT($){return Object.keys($).reduce(function(Z,G){var J=$[G];if(Array.isArray(J))if(XT.default.canUseDOM)J=J[J.length-1].toString();else J=J.join(";".concat((0,QT.camelCaseToDashCase)(G),":"));return Z[G]=J,Z},{})}var XW,a4;function HW($){var Z=$||global&&global.navigator&&global.navigator.userAgent;if(!a4||Z!==XW){if(Z==="all")a4={prefix:YW,prefixedKeyframes:"keyframes"};else a4=new qT({userAgent:Z});XW=Z}return a4}function WT($){return HW($).prefixedKeyframes||"keyframes"}function LT($,Z){var G=KT($),J=HW(Z),X=J.prefix(G),Y=UT(X);return Y}});var t4=O((nJ)=>{Object.defineProperty(nJ,"__esModule",{value:!0});nJ.default=FT;var zT=aJ(_J()),AT=aJ(vJ()),NT=aJ(gJ()),BT=o4();function aJ($){return $&&$.__esModule?$:{default:$}}function VT($){return Object.keys($).map(function(Z){return Z+": "+$[Z]+";"}).join(`
|
|
23
|
-
`)}function
|
|
24
|
-
`)}},{key:"_emitChange",value:function(){this._listeners.forEach(function(G){return G()})}}]),$}();W$.default=Kw});var W2=O((z$)=>{Object.defineProperty(z$,"__esModule",{value:!0});z$.default=void 0;var Uw=y0(wK()),Ww=y0(t4()),Lw=y0(oJ()),i6=y0(QW()),zw=y0(sJ()),IW=y0(tJ()),Aw=y0($2()),MW=qW(),Y5=y0(U2()),Nw=y0(kJ()),C5=y0(require("react")),Nf=y0(X8());function y0($){return $&&$.__esModule?$:{default:$}}function c6($){for(var Z=1;Z<arguments.length;Z++){var G=arguments[Z]!=null?arguments[Z]:{},J=Object.keys(G);if(typeof Object.getOwnPropertySymbols==="function")J=J.concat(Object.getOwnPropertySymbols(G).filter(function(X){return Object.getOwnPropertyDescriptor(G,X).enumerable}));J.forEach(function(X){Bw($,X,G[X])})}return $}function Bw($,Z,G){if(Z in $)Object.defineProperty($,Z,{value:G,enumerable:!0,configurable:!0,writable:!0});else $[Z]=G;return $}function L$($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")L$=function(G){return typeof G};else L$=function(G){return G&&typeof Symbol==="function"&&G.constructor===Symbol&&G!==Symbol.prototype?"symbol":typeof G};return L$($)}var PW={plugins:[Y5.default.mergeStyleArray,Y5.default.checkProps,Y5.default.resolveMediaQueries,Y5.default.resolveInteractionStyles,Y5.default.keyframes,Y5.default.visited,Y5.default.removeNestedStyles,Y5.default.prefix,Y5.default.checkProps]},DW={},Vw=!1,X6=null,Fw=function(Z){return Z.type&&!Z.type._isRadiumEnhanced},Rw=function(Z){var{children:G,component:J,config:X,existingKeyMap:Y,extraStateKeyMap:H}=Z;if(!G)return G;var Q=L$(G);if(Q==="string"||Q==="number")return G;if(Q==="function")return function(){var z=G.apply(this,arguments);if(C5.default.isValidElement(z)){var L=(0,i6.default)(z);delete H[L];var V=X6(J,z,X,Y,!0,H),B=V.element;return B}return z};if(C5.default.Children.count(G)===1&&G.type){var q=C5.default.Children.only(G),U=(0,i6.default)(q);delete H[U];var K=X6(J,q,X,Y,!0,H),W=K.element;return W}return C5.default.Children.map(G,function(z){if(C5.default.isValidElement(z)){var L=(0,i6.default)(z);delete H[L];var V=X6(J,z,X,Y,!0,H),B=V.element;return B}return z})},Ow=function(Z){var{component:G,config:J,existingKeyMap:X,props:Y,extraStateKeyMap:H}=Z,Q=Y;return Object.keys(Y).forEach(function(q){if(q==="children")return;var U=Y[q];if(C5.default.isValidElement(U)){var K=(0,i6.default)(U);delete H[K],Q=c6({},Q);var W=X6(G,U,J,X,!0,H),z=W.element;Q[q]=z}}),Q},Mw=function(Z){var{componentName:G,existingKeyMap:J,renderedElement:X}=Z,Y=(0,i6.default)(X),H=(0,zw.default)(Y),Q=!1,q=function(){if(Q)return H;if(Q=!0,J[H]){var K;if(typeof X.type==="string")K=X.type;else if(X.type.constructor)K=X.type.constructor.displayName||X.type.constructor.name;throw Error("Radium requires each element with interactive styles to have a unique key, set using either the ref or key prop. "+(Y?'Key "'+Y+'" is a duplicate.':"Multiple elements have no key specified.")+' Component: "'+G+'". '+(K?'Element: "'+K+'".':""))}return J[H]=!0,H};return q},Dw=function(Z,G,J,X){if(!Z._radiumIsMounted)return;var Y=(0,IW.default)(Z),H={_radiumStyleState:c6({},Y)};H._radiumStyleState[G]=c6({},H._radiumStyleState[G]),H._radiumStyleState[G][J]=X,Z._lastRadiumState=H._radiumStyleState,Z.setState(H)},Iw=function(Z){var{component:G,config:J,existingKeyMap:X,props:Y,renderedElement:H}=Z;if(!C5.default.isValidElement(H)||typeof H.type!=="string"||!Y.style)return Y;var Q=Y,q=J.plugins||PW.plugins,U=G.constructor.displayName||G.constructor.name,K=Mw({renderedElement:H,existingKeyMap:X,componentName:U}),W=function(E){return G[E]},z=function(E){return DW[E]},L=function(E,R){return(0,Lw.default)(G.state,R||K(),E)},V=function(E,R,P){return Dw(G,P||K(),E,R)},B=function(E){var R=G._radiumStyleKeeper;if(!R){if(Vw)return{remove:function(){}};throw Error("To use plugins requiring `addCSS` (e.g. keyframes, media queries), please wrap your application in the StyleRoot component. Component name: `"+U+"`.")}return R.addCSS(E)},I=Y.style;if(q.forEach(function(D){var E=D({ExecutionEnvironment:Nw.default,addCSS:B,appendImportantToEachValue:Uw.default,componentName:U,config:J,cssRuleSetToString:Ww.default,getComponentField:W,getGlobalState:z,getState:L,hash:Aw.default,mergeStyles:MW.mergeStyles,props:Q,setState:V,isNestedStyle:MW.isNestedStyle,style:I})||{};I=E.style||I,Q=E.props&&Object.keys(E.props).length?c6({},Q,E.props):Q;var R=E.componentFields||{};Object.keys(R).forEach(function(g){G[g]=R[g]});var P=E.globalState||{};Object.keys(P).forEach(function(g){DW[g]=P[g]})}),I!==Y.style)Q=c6({},Q,{style:I});return Q},Pw=function(Z,G,J){if(typeof Z.type==="string")G=c6({},G,{"data-radium":!0});return C5.default.cloneElement(Z,G,J)};X6=function(Z,G){var J=arguments.length>2&&arguments[2]!==void 0?arguments[2]:PW,X=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},Y=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,H=arguments.length>5?arguments[5]:void 0;if(!H){var Q=(0,IW.default)(Z);H=Object.keys(Q).reduce(function(L,V){if(V!=="main")L[V]=!0;return L},{})}if(Array.isArray(G)&&!G.props){var q=G.map(function(L){if(H){var V=(0,i6.default)(L);delete H[V]}return X6(Z,L,J,X,Y,H).element});return{extraStateKeyMap:H,element:q}}if(!G||G.props&&G.props["data-radium"]||Y&&!Fw(G))return{extraStateKeyMap:H,element:G};var U=G.props.children,K=Rw({children:U,component:Z,config:J,existingKeyMap:X,extraStateKeyMap:H}),W=Ow({component:Z,config:J,existingKeyMap:X,extraStateKeyMap:H,props:G.props});if(W=Iw({component:Z,config:J,existingKeyMap:X,props:W,renderedElement:G}),K===U&&W===G.props)return{extraStateKeyMap:H,element:G};var z=Pw(G,W!==G.props?W:{},K);return{extraStateKeyMap:H,element:z}};var Tw=X6;z$.default=Tw});var Y8=O((Y6)=>{Object.defineProperty(Y6,"__esModule",{value:!0});Y6.withRadiumContexts=jw;Y6.RadiumConfigContext=Y6.StyleKeeperContext=void 0;var d6=Ew(require("react")),ww=TW(jJ()),Vf=TW(X8());function TW($){return $&&$.__esModule?$:{default:$}}function Ew($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var G in $)if(Object.prototype.hasOwnProperty.call($,G)){var J=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,G):{};if(J.get||J.set)Object.defineProperty(Z,G,J);else Z[G]=$[G]}}return Z.default=$,Z}}function L2(){return L2=Object.assign||function($){for(var Z=1;Z<arguments.length;Z++){var G=arguments[Z];for(var J in G)if(Object.prototype.hasOwnProperty.call(G,J))$[J]=G[J]}return $},L2.apply(this,arguments)}var wW=d6.default.createContext(void 0);Y6.StyleKeeperContext=wW;var EW=d6.default.createContext(void 0);Y6.RadiumConfigContext=EW;function jw($){var Z=d6.default.forwardRef(function(G,J){var X=(0,d6.useContext)(EW),Y=(0,d6.useContext)(wW);return d6.default.createElement($,L2({ref:J},G,{radiumConfigContext:X,styleKeeperContext:Y}))});return Z.displayName="withRadiumContexts(".concat($.displayName||$.name||"Component",")"),(0,ww.default)(Z,$)}});var V2=O((B2)=>{Object.defineProperty(B2,"__esModule",{value:!0});B2.default=uW;var H5=gw(require("react")),z2=B$(PJ()),Sw=B$(jJ()),_w=B$(W2()),Cw=B$(tJ()),N$=Y8();function B$($){return $&&$.__esModule?$:{default:$}}function gw($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var G in $)if(Object.prototype.hasOwnProperty.call($,G)){var J=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,G):{};if(J.get||J.set)Object.defineProperty(Z,G,J);else Z[G]=$[G]}}return Z.default=$,Z}}function H6($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")H6=function(G){return typeof G};else H6=function(G){return G&&typeof Symbol==="function"&&G.constructor===Symbol&&G!==Symbol.prototype?"symbol":typeof G};return H6($)}function CW($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function jW($,Z){for(var G=0;G<Z.length;G++){var J=Z[G];if(J.enumerable=J.enumerable||!1,J.configurable=!0,"value"in J)J.writable=!0;Object.defineProperty($,J.key,J)}}function yw($,Z,G){if(Z)jW($.prototype,Z);if(G)jW($,G);return $}function gW($,Z){if(Z&&(H6(Z)==="object"||typeof Z==="function"))return Z;return yW($)}function yW($){if($===void 0)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return $}function g5($,Z,G){if(typeof Reflect<"u"&&Reflect.get)g5=Reflect.get;else g5=function(X,Y,H){var Q=vw(X,Y);if(!Q)return;var q=Object.getOwnPropertyDescriptor(Q,Y);if(q.get)return q.get.call(H);return q.value};return g5($,Z,G||$)}function vw($,Z){while(!Object.prototype.hasOwnProperty.call($,Z))if($=l0($),$===null)break;return $}function l0($){return l0=Object.setPrototypeOf?Object.getPrototypeOf:function(G){return G.__proto__||Object.getPrototypeOf(G)},l0($)}function vW($,Z){if(typeof Z!=="function"&&Z!==null)throw TypeError("Super expression must either be null or a function");if($.prototype=Object.create(Z&&Z.prototype,{constructor:{value:$,writable:!0,configurable:!0}}),Z)A2($,Z)}function A2($,Z){return A2=Object.setPrototypeOf||function(J,X){return J.__proto__=X,J},A2($,Z)}function xw($,Z){return kw($)||bw($,Z)||hw()}function hw(){throw TypeError("Invalid attempt to destructure non-iterable instance")}function bw($,Z){var G=[],J=!0,X=!1,Y=void 0;try{for(var H=$[Symbol.iterator](),Q;!(J=(Q=H.next()).done);J=!0)if(G.push(Q.value),Z&&G.length===Z)break}catch(q){X=!0,Y=q}finally{try{if(!J&&H.return!=null)H.return()}finally{if(X)throw Y}}return G}function kw($){if(Array.isArray($))return $}function N2($){for(var Z=1;Z<arguments.length;Z++){var G=arguments[Z]!=null?arguments[Z]:{},J=Object.keys(G);if(typeof Object.getOwnPropertySymbols==="function")J=J.concat(Object.getOwnPropertySymbols(G).filter(function(X){return Object.getOwnPropertyDescriptor(G,X).enumerable}));J.forEach(function(X){mw($,X,G[X])})}return $}function mw($,Z,G){if(Z in $)Object.defineProperty($,Z,{value:G,enumerable:!0,configurable:!0,writable:!0});else $[Z]=G;return $}function xW($,Z){if($==null)return{};var G=fw($,Z),J,X;if(Object.getOwnPropertySymbols){var Y=Object.getOwnPropertySymbols($);for(X=0;X<Y.length;X++){if(J=Y[X],Z.indexOf(J)>=0)continue;if(!Object.prototype.propertyIsEnumerable.call($,J))continue;G[J]=$[J]}}return G}function fw($,Z){if($==null)return{};var G={},J=Object.keys($),X,Y;for(Y=0;Y<J.length;Y++){if(X=J[Y],Z.indexOf(X)>=0)continue;G[X]=$[X]}return G}function uw($){var Z=pw($,"string");return H6(Z)==="symbol"?Z:String(Z)}function pw($,Z){if(H6($)!=="object"||$===null)return $;var G=$[Symbol.toPrimitive];if(G!==void 0){var J=G.call($,Z||"default");if(H6(J)!=="object")return J;throw TypeError("@@toPrimitive must return a primitive value.")}return(Z==="string"?String:Number)($)}var lw=["arguments","callee","caller","length","name","prototype","type"],A$,hW;function iw($,Z){Object.getOwnPropertyNames($).forEach(function(G){if(lw.indexOf(G)<0&&!Z.hasOwnProperty(G)){var J=Object.getOwnPropertyDescriptor($,G);J&&Object.defineProperty(Z,G,J)}})}function cw($){var Z=$.prototype||{};return!$.isReactComponent&&!Z.isReactComponent&&!$.render&&!Z.render}function dw($){return typeof $==="function"&&/^\s*class\s+/.test($.toString())}function rw($,Z){hW.forEach(function(G){var J=Object.getOwnPropertyDescriptor($,G),X=(J||{}).value;if(!X)return;var Y=Object.getOwnPropertyDescriptor(A$,G),H=(Y||{}).value,Q=Z.prototype[G];if(!Q&&X!==H)J&&Object.defineProperty(Z.prototype,G,J),delete $[G]})}function bW($){if($._extraRadiumStateKeys&&$._extraRadiumStateKeys.length>0){var Z=$._extraRadiumStateKeys.reduce(function(G,J){var X=G[J],Y=xW(G,[J].map(uw));return Y},(0,Cw.default)($));$._lastRadiumState=Z,$.setState({_radiumStyleState:Z})}}function kW($){var{_radiumMouseUpListener:Z,_radiumMediaQueryListenersByQuery:G}=$;if($._radiumIsMounted=!1,Z)Z.remove();if(G)Object.keys(G).forEach(function(J){G[J].remove()},$)}function mW($,Z,G){var J=$||Z||G;if(G&&J!==G)J=N2({},G,J);return J}function fW($,Z,G,J){var X=(0,_w.default)($,Z,G),Y=X.extraStateKeyMap,H=X.element;if($._extraRadiumStateKeys=Object.keys(Y),J)return H5.default.createElement(N$.RadiumConfigContext.Provider,{value:J},H);return H}function SW($,Z){var G=H5.default.forwardRef(function(J,X){var Y=J.radiumConfig,H=xW(J,["radiumConfig"]),Q=(0,H5.useContext)(N$.RadiumConfigContext),q=(0,H5.useContext)(N$.StyleKeeperContext),U=(0,H5.useState)({_radiumStyleState:{}}),K=xw(U,2),W=K[0],z=K[1],L=(0,H5.useRef)({state:W,setState:z,_radiumMediaQueryListenersByQuery:void 0,_radiumMouseUpListener:void 0,_radiumIsMounted:!0,_lastRadiumState:void 0,_extraRadiumStateKeys:void 0,_radiumStyleKeeper:q}).current;L.state=W,(0,H5.useEffect)(function(){return function(){kW(L)}},[L]);var V=L._extraRadiumStateKeys&&L._extraRadiumStateKeys.length>0;(0,H5.useEffect)(function(){bW(L)},[V,L]);var B=$(H,X),I=mW(Y,Q,Z);return fW(L,B,I,Y)});return G._isRadiumEnhanced=!0,G.defaultProps=$.defaultProps,(0,Sw.default)(G,$)}function aw($,Z,G){var J=function(X){vW(Y,X);function Y(){var H;CW(this,Y),H=gW(this,l0(Y).apply(this,arguments)),H.state=H.state||{},H._radiumStyleKeeper=H.props.styleKeeperContext,H._radiumMediaQueryListenersByQuery=H._radiumMediaQueryListenersByQuery,H._radiumMouseUpListener=H._radiumMouseUpListener,H._radiumIsMounted=!0,H._lastRadiumState=void 0,H._extraRadiumStateKeys=void 0,H.state._radiumStyleState={};var Q=yW(H);return rw(Q,Z),H}return yw(Y,[{key:"componentDidUpdate",value:function(Q,q,U){if(g5(l0(Y.prototype),"componentDidUpdate",this))g5(l0(Y.prototype),"componentDidUpdate",this).call(this,Q,q,U);bW(this)}},{key:"componentWillUnmount",value:function(){if(g5(l0(Y.prototype),"componentWillUnmount",this))g5(l0(Y.prototype),"componentWillUnmount",this).call(this);kW(this)}},{key:"render",value:function(){var Q=g5(l0(Y.prototype),"render",this).call(this),q=mW(this.props.radiumConfig,this.props.radiumConfigContext,G);return fW(this,Q,q,this.props.radiumConfig)}}]),Y}(Z);if(J._isRadiumEnhanced=!0,A$=J.prototype,hW=Object.getOwnPropertyNames(A$).filter(function(X){return X!=="constructor"&&typeof A$[X]==="function"}),iw($,J),J.propTypes&&J.propTypes.style)J.propTypes=N2({},J.propTypes,{style:z2.default.oneOfType([z2.default.array,z2.default.object])});return J.displayName=$.displayName||$.name||"Component",(0,N$.withRadiumContexts)(J)}function nw($){return $=function(Z){function G(){var J=Reflect.construct(Z,arguments,this.constructor);return J}return Reflect.setPrototypeOf(G.prototype,Z.prototype),Reflect.setPrototypeOf(G,Z),G}($),$}var _W=(0,H5.forwardRef)(function(){return null}).$$typeof;function uW($){var Z=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(_W&&$.$$typeof===_W)return SW($.render,Z);if(typeof $!=="function")return sw(Z,$);var G=$;if(cw(G))return SW(G,Z);var J=G;if(dw(J))J=nw(J);if(J===G)J=function(X){vW(Y,X);function Y(){return CW(this,Y),gW(this,l0(Y).apply(this,arguments))}return Y}(J);return aw(G,J,Z)}function sw($,Z){var G=N2({},$,Z);return function(J){return uW(J,G)}}});var dW=O((V$)=>{Object.defineProperty(V$,"__esModule",{value:!0});V$.default=void 0;var pW=cW(t4()),lW=tw(require("react")),F2=cW(PJ()),ow=Y8();function tw($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var G in $)if(Object.prototype.hasOwnProperty.call($,G)){var J=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,G):{};if(J.get||J.set)Object.defineProperty(Z,G,J);else Z[G]=$[G]}}return Z.default=$,Z}}function cW($){return $&&$.__esModule?$:{default:$}}function r6($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")r6=function(G){return typeof G};else r6=function(G){return G&&typeof Symbol==="function"&&G.constructor===Symbol&&G!==Symbol.prototype?"symbol":typeof G};return r6($)}function ew($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function iW($,Z){for(var G=0;G<Z.length;G++){var J=Z[G];if(J.enumerable=J.enumerable||!1,J.configurable=!0,"value"in J)J.writable=!0;Object.defineProperty($,J.key,J)}}function $E($,Z,G){if(Z)iW($.prototype,Z);if(G)iW($,G);return $}function ZE($,Z){if(Z&&(r6(Z)==="object"||typeof Z==="function"))return Z;return GE($)}function GE($){if($===void 0)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return $}function R2($){return R2=Object.setPrototypeOf?Object.getPrototypeOf:function(G){return G.__proto__||Object.getPrototypeOf(G)},R2($)}function JE($,Z){if(typeof Z!=="function"&&Z!==null)throw TypeError("Super expression must either be null or a function");if($.prototype=Object.create(Z&&Z.prototype,{constructor:{value:$,writable:!0,configurable:!0}}),Z)O2($,Z)}function O2($,Z){return O2=Object.setPrototypeOf||function(J,X){return J.__proto__=X,J},O2($,Z)}var M2=function($){JE(Z,$);function Z(){return ew(this,Z),ZE(this,R2(Z).apply(this,arguments))}return $E(Z,[{key:"_buildStyles",value:function(J){var X=this,Y=this.props.radiumConfig&&this.props.radiumConfig.userAgent||this.props.radiumConfigContext&&this.props.radiumConfigContext.userAgent,H=this.props.scopeSelector,Q=Object.keys(J).reduce(function(U,K){if(r6(J[K])!=="object")U[K]=J[K];return U},{}),q=Object.keys(Q).length?(0,pW.default)(H||"",Q,Y):"";return q+Object.keys(J).reduce(function(U,K){var W=J[K];if(K==="mediaQueries")U+=X._buildMediaQueryString(W);else if(r6(J[K])==="object"){var z=H?K.split(",").map(function(L){return H+" "+L.trim()}).join(","):K;U+=(0,pW.default)(z,W,Y)}return U},"")}},{key:"_buildMediaQueryString",value:function(J){var X=this,Y="";return Object.keys(J).forEach(function(H){Y+="@media "+H+"{"+X._buildStyles(J[H])+"}"}),Y}},{key:"render",value:function(){if(!this.props.rules)return null;var J=this._buildStyles(this.props.rules);return lW.default.createElement("style",{dangerouslySetInnerHTML:{__html:J}})}}]),Z}(lW.PureComponent);M2.propTypes={radiumConfig:F2.default.object,rules:F2.default.object,scopeSelector:F2.default.string};M2.defaultProps={scopeSelector:""};var XE=(0,ow.withRadiumContexts)(M2);V$.default=XE});var nW=O((R$)=>{Object.defineProperty(R$,"__esModule",{value:!0});R$.default=void 0;var rW=QE(require("react")),Mf=HE(X8()),YE=Y8();function HE($){return $&&$.__esModule?$:{default:$}}function QE($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var G in $)if(Object.prototype.hasOwnProperty.call($,G)){var J=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,G):{};if(J.get||J.set)Object.defineProperty(Z,G,J);else Z[G]=$[G]}}return Z.default=$,Z}}function F$($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")F$=function(G){return typeof G};else F$=function(G){return G&&typeof Symbol==="function"&&G.constructor===Symbol&&G!==Symbol.prototype?"symbol":typeof G};return F$($)}function qE($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function aW($,Z){for(var G=0;G<Z.length;G++){var J=Z[G];if(J.enumerable=J.enumerable||!1,J.configurable=!0,"value"in J)J.writable=!0;Object.defineProperty($,J.key,J)}}function KE($,Z,G){if(Z)aW($.prototype,Z);if(G)aW($,G);return $}function UE($,Z){if(Z&&(F$(Z)==="object"||typeof Z==="function"))return Z;return WE($)}function WE($){if($===void 0)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return $}function D2($){return D2=Object.setPrototypeOf?Object.getPrototypeOf:function(G){return G.__proto__||Object.getPrototypeOf(G)},D2($)}function LE($,Z){if(typeof Z!=="function"&&Z!==null)throw TypeError("Super expression must either be null or a function");if($.prototype=Object.create(Z&&Z.prototype,{constructor:{value:$,writable:!0,configurable:!0}}),Z)I2($,Z)}function I2($,Z){return I2=Object.setPrototypeOf||function(J,X){return J.__proto__=X,J},I2($,Z)}var zE=function($){LE(Z,$);function Z(){var G;if(qE(this,Z),G=UE(this,D2(Z).apply(this,arguments)),G.styleKeeper=void 0,G._subscription=void 0,G._root=void 0,G._css=void 0,G._onChange=function(){var J=G.styleKeeper.getCSS();if(J!==G._css){if(G._root)G._root.innerHTML=J;else throw Error("No root style object found, even after StyleSheet mount.");G._css=J}},!G.props.styleKeeperContext)throw Error("StyleRoot is required to use StyleSheet");return G.styleKeeper=G.props.styleKeeperContext,G._css=G.styleKeeper.getCSS(),G}return KE(Z,[{key:"componentDidMount",value:function(){this._subscription=this.styleKeeper.subscribe(this._onChange),this._onChange()}},{key:"shouldComponentUpdate",value:function(){return!1}},{key:"componentWillUnmount",value:function(){if(this._subscription)this._subscription.remove()}},{key:"render",value:function(){var J=this;return rW.default.createElement("style",{dangerouslySetInnerHTML:{__html:this._css},ref:function(Y){J._root=Y}})}}]),Z}(rW.Component),AE=(0,YE.withRadiumContexts)(zE);R$.default=AE});var oW=O((O$)=>{Object.defineProperty(O$,"__esModule",{value:!0});O$.default=void 0;var a6=FE(require("react")),NE=P2(V2()),BE=P2(X8()),VE=P2(nW()),sW=Y8();function P2($){return $&&$.__esModule?$:{default:$}}function FE($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var G in $)if(Object.prototype.hasOwnProperty.call($,G)){var J=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,G):{};if(J.get||J.set)Object.defineProperty(Z,G,J);else Z[G]=$[G]}}return Z.default=$,Z}}function RE($,Z){if($==null)return{};var G=OE($,Z),J,X;if(Object.getOwnPropertySymbols){var Y=Object.getOwnPropertySymbols($);for(X=0;X<Y.length;X++){if(J=Y[X],Z.indexOf(J)>=0)continue;if(!Object.prototype.propertyIsEnumerable.call($,J))continue;G[J]=$[J]}}return G}function OE($,Z){if($==null)return{};var G={},J=Object.keys($),X,Y;for(Y=0;Y<J.length;Y++){if(X=J[Y],Z.indexOf(X)>=0)continue;G[X]=$[X]}return G}function ME($,Z){var G=$&&$.userAgent||Z&&Z.userAgent;return new BE.default(G)}var DE=(0,NE.default)(function($){var Z=$.children,G=RE($,["children"]);return a6.default.createElement("div",G,Z,a6.default.createElement(VE.default,null))}),IE=function(Z){var G=Z.radiumConfig,J=(0,a6.useContext)(sW.RadiumConfigContext),X=(0,a6.useRef)(ME(G,J));return a6.default.createElement(sW.StyleKeeperContext.Provider,{value:X.current},a6.default.createElement(DE,Z))},PE=IE;O$.default=PE});var eW=O((T2)=>{Object.defineProperty(T2,"__esModule",{value:!0});T2.default=jE;var TE=tW(t4()),wE=tW($2()),EE=o4();function tW($){return $&&$.__esModule?$:{default:$}}function jE($,Z){return{__radiumKeyframes:!0,__process:function(J){var X=(0,EE.getPrefixedKeyframes)(J),Y=Object.keys($).map(function(q){return(0,TE.default)(q,$[q],J)}).join(`
|
|
25
|
-
`),
|
|
26
|
-
`+
|
|
22
|
+
*/(function(){var $=!!(typeof window<"u"&&window.document&&window.document.createElement),Z={canUseDOM:$,canUseWorkers:typeof Worker<"u",canUseEventListeners:$&&!!(window.addEventListener||window.attachEvent),canUseViewport:$&&!!window.screen};if(typeof define==="function"&&typeof define.amd==="object"&&define.amd)define(function(){return Z});else if(typeof V8<"u"&&V8.exports)V8.exports=Z;else window.ExecutionEnvironment=Z})()});var Y5=F((W8,sX)=>{Object.defineProperty(W8,"__esModule",{value:!0});W8.default=dA;var iA=/-webkit-|-moz-|-ms-/;function dA($){return typeof $==="string"&&iA.test($)}sX.exports=W8.default});var eX=F((A8,tX)=>{Object.defineProperty(A8,"__esModule",{value:!0});A8.default=sA;var nA=Y5(),aA=rA(nA);function rA($){return $&&$.__esModule?$:{default:$}}var oA=["-webkit-","-moz-",""];function sA($,Z){if(typeof Z==="string"&&!(0,aA.default)(Z)&&Z.indexOf("calc(")>-1)return oA.map(function(J){return Z.replace(/calc\(/g,J+"calc(")})}tX.exports=A8.default});var ZQ=F((F8,$Q)=>{Object.defineProperty(F8,"__esModule",{value:!0});F8.default=JF;var tA=Y5(),eA=$F(tA);function $F($){return $&&$.__esModule?$:{default:$}}var ZF=["-webkit-",""];function JF($,Z){if(typeof Z==="string"&&!(0,eA.default)(Z)&&Z.indexOf("cross-fade(")>-1)return ZF.map(function(J){return Z.replace(/cross-fade\(/g,J+"cross-fade(")})}$Q.exports=F8.default});var GQ=F((B8,JQ)=>{Object.defineProperty(B8,"__esModule",{value:!0});B8.default=XF;var GF=["-webkit-","-moz-",""],YF={"zoom-in":!0,"zoom-out":!0,grab:!0,grabbing:!0};function XF($,Z){if($==="cursor"&&YF.hasOwnProperty(Z))return GF.map(function(J){return J+Z})}JQ.exports=B8.default});var XQ=F((L8,YQ)=>{Object.defineProperty(L8,"__esModule",{value:!0});L8.default=UF;var QF=Y5(),HF=zF(QF);function zF($){return $&&$.__esModule?$:{default:$}}var KF=["-webkit-",""];function UF($,Z){if(typeof Z==="string"&&!(0,HF.default)(Z)&&Z.indexOf("filter(")>-1)return KF.map(function(J){return Z.replace(/filter\(/g,J+"filter(")})}YQ.exports=L8.default});var zQ=F((q8,HQ)=>{Object.defineProperty(q8,"__esModule",{value:!0});q8.default=OF;var QQ={flex:["-webkit-box","-moz-box","-ms-flexbox","-webkit-flex","flex"],"inline-flex":["-webkit-inline-box","-moz-inline-box","-ms-inline-flexbox","-webkit-inline-flex","inline-flex"]};function OF($,Z){if($==="display"&&QQ.hasOwnProperty(Z))return QQ[Z]}HQ.exports=q8.default});var OQ=F((N8,UQ)=>{Object.defineProperty(N8,"__esModule",{value:!0});N8.default=WF;var VF={"space-around":"distribute","space-between":"justify","flex-start":"start","flex-end":"end"},KQ={alignContent:"msFlexLinePack",alignSelf:"msFlexItemAlign",alignItems:"msFlexAlign",justifyContent:"msFlexPack",order:"msFlexOrder",flexGrow:"msFlexPositive",flexShrink:"msFlexNegative",flexBasis:"msFlexPreferredSize"};function WF($,Z,J){if(KQ.hasOwnProperty($))J[KQ[$]]=VF[Z]||Z}UQ.exports=N8.default});var AQ=F((M8,WQ)=>{Object.defineProperty(M8,"__esModule",{value:!0});M8.default=FF;var AF={"space-around":"justify","space-between":"justify","flex-start":"start","flex-end":"end","wrap-reverse":"multiple",wrap:"multiple",flex:"box","inline-flex":"inline-box"},VQ={alignItems:"WebkitBoxAlign",justifyContent:"WebkitBoxPack",flexWrap:"WebkitBoxLines",flexGrow:"WebkitBoxFlex"};function FF($,Z,J){if($==="flexDirection"&&typeof Z==="string"){if(Z.indexOf("column")>-1)J.WebkitBoxOrient="vertical";else J.WebkitBoxOrient="horizontal";if(Z.indexOf("reverse")>-1)J.WebkitBoxDirection="reverse";else J.WebkitBoxDirection="normal"}if(VQ.hasOwnProperty($))J[VQ[$]]=AF[Z]||Z}WQ.exports=M8.default});var LQ=F((R8,BQ)=>{Object.defineProperty(R8,"__esModule",{value:!0});R8.default=MF;var BF=Y5(),LF=qF(BF);function qF($){return $&&$.__esModule?$:{default:$}}var NF=["-webkit-","-moz-",""],FQ=/linear-gradient|radial-gradient|repeating-linear-gradient|repeating-radial-gradient/gi;function MF($,Z){if(typeof Z==="string"&&!(0,LF.default)(Z)&&FQ.test(Z))return NF.map(function(J){return Z.replace(FQ,function(G){return J+G})})}BQ.exports=R8.default});var NQ=F((I8,qQ)=>{Object.defineProperty(I8,"__esModule",{value:!0});I8.default=TF;var RF=Y5(),IF=PF(RF);function PF($){return $&&$.__esModule?$:{default:$}}var DF=["-webkit-",""];function TF($,Z){if(typeof Z==="string"&&!(0,IF.default)(Z)&&Z.indexOf("image-set(")>-1)return DF.map(function(J){return Z.replace(/image-set\(/g,J+"image-set(")})}qQ.exports=I8.default});var RQ=F((P8,MQ)=>{Object.defineProperty(P8,"__esModule",{value:!0});P8.default=wF;function wF($,Z){if($==="position"&&Z==="sticky")return["-webkit-sticky","sticky"]}MQ.exports=P8.default});var PQ=F((D8,IQ)=>{Object.defineProperty(D8,"__esModule",{value:!0});D8.default=fF;var EF=["-webkit-","-moz-",""],vF={maxHeight:!0,maxWidth:!0,width:!0,height:!0,columnWidth:!0,minWidth:!0,minHeight:!0},jF={"min-content":!0,"max-content":!0,"fill-available":!0,"fit-content":!0,"contain-floats":!0};function fF($,Z){if(vF.hasOwnProperty($)&&jF.hasOwnProperty(Z))return EF.map(function(J){return J+Z})}IQ.exports=D8.default});var TQ=F((mD,DQ)=>{var SF=/[A-Z]/g,xF=/^ms-/,x4={};function CF($){return"-"+$.toLowerCase()}function _F($){if(x4.hasOwnProperty($))return x4[$];var Z=$.replace(SF,CF);return x4[$]=xF.test(Z)?"-"+Z:Z}DQ.exports=_F});var C4=F((T8,wQ)=>{Object.defineProperty(T8,"__esModule",{value:!0});T8.default=kF;var yF=TQ(),gF=hF(yF);function hF($){return $&&$.__esModule?$:{default:$}}function kF($){return(0,gF.default)($)}wQ.exports=T8.default});var jQ=F((w8,vQ)=>{Object.defineProperty(w8,"__esModule",{value:!0});w8.default=nF;var bF=C4(),mF=_4(bF),uF=Y5(),lF=_4(uF),cF=Z8(),EQ=_4(cF);function _4($){return $&&$.__esModule?$:{default:$}}var pF={transition:!0,transitionProperty:!0,WebkitTransition:!0,WebkitTransitionProperty:!0,MozTransition:!0,MozTransitionProperty:!0},iF={Webkit:"-webkit-",Moz:"-moz-",ms:"-ms-"};function dF($,Z){if((0,lF.default)($))return $;var J=$.split(/,(?![^()]*(?:\([^()]*\))?\))/g);for(var G=0,Y=J.length;G<Y;++G){var X=J[G],Q=[X];for(var z in Z){var H=(0,mF.default)(z);if(X.indexOf(H)>-1&&H!=="order"){var K=Z[z];for(var U=0,O=K.length;U<O;++U)Q.unshift(X.replace(H,iF[K[U]]+H))}}J[G]=Q.join(",")}return J.join(",")}function nF($,Z,J,G){if(typeof Z==="string"&&pF.hasOwnProperty($)){var Y=dF(Z,G),X=Y.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter(function(z){return!/-moz-|-ms-/.test(z)}).join(",");if($.indexOf("Webkit")>-1)return X;var Q=Y.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter(function(z){return!/-webkit-|-ms-/.test(z)}).join(",");if($.indexOf("Moz")>-1)return Q;return J["Webkit"+(0,EQ.default)($)]=X,J["Moz"+(0,EQ.default)($)]=Q,Y}}vQ.exports=w8.default});var fQ=F((E8)=>{Object.defineProperty(E8,"__esModule",{value:!0});E8.default=void 0;var aF=x1(eX()),rF=x1(ZQ()),oF=x1(GQ()),sF=x1(XQ()),tF=x1(zQ()),eF=x1(OQ()),$B=x1(AQ()),ZB=x1(LQ()),JB=x1(NQ()),GB=x1(RQ()),YB=x1(PQ()),XB=x1(jQ());function x1($){return $&&$.__esModule?$:{default:$}}var I=["Webkit"],y4=["Moz"],i=["ms"],U1=["Webkit","Moz"],Q1=["Webkit","ms"],x6=["Webkit","Moz","ms"],QB={plugins:[aF.default,rF.default,oF.default,sF.default,tF.default,eF.default,$B.default,ZB.default,JB.default,GB.default,YB.default,XB.default],prefixMap:{transform:Q1,transformOrigin:Q1,transformOriginX:Q1,transformOriginY:Q1,backfaceVisibility:I,perspective:I,perspectiveOrigin:I,transformStyle:I,transformOriginZ:I,animation:I,animationDelay:I,animationDirection:I,animationFillMode:I,animationDuration:I,animationIterationCount:I,animationName:I,animationPlayState:I,animationTimingFunction:I,appearance:U1,userSelect:x6,fontKerning:I,textEmphasisPosition:I,textEmphasis:I,textEmphasisStyle:I,textEmphasisColor:I,boxDecorationBreak:I,clipPath:I,maskImage:I,maskMode:I,maskRepeat:I,maskPosition:I,maskClip:I,maskOrigin:I,maskSize:I,maskComposite:I,mask:I,maskBorderSource:I,maskBorderMode:I,maskBorderSlice:I,maskBorderWidth:I,maskBorderOutset:I,maskBorderRepeat:I,maskBorder:I,maskType:I,textDecorationStyle:U1,textDecorationSkip:U1,textDecorationLine:U1,textDecorationColor:U1,filter:I,fontFeatureSettings:U1,breakAfter:x6,breakBefore:x6,breakInside:x6,columnCount:U1,columnFill:U1,columnGap:U1,columnRule:U1,columnRuleColor:U1,columnRuleStyle:U1,columnRuleWidth:U1,columns:U1,columnSpan:U1,columnWidth:U1,writingMode:Q1,flex:Q1,flexBasis:I,flexDirection:Q1,flexGrow:I,flexFlow:Q1,flexShrink:I,flexWrap:Q1,alignContent:I,alignItems:I,alignSelf:I,justifyContent:I,order:I,transitionDelay:I,transitionDuration:I,transitionProperty:I,transitionTimingFunction:I,backdropFilter:I,scrollSnapType:Q1,scrollSnapPointsX:Q1,scrollSnapPointsY:Q1,scrollSnapDestination:Q1,scrollSnapCoordinate:Q1,shapeImageThreshold:I,shapeImageMargin:I,shapeImageOutside:I,hyphens:x6,flowInto:Q1,flowFrom:Q1,regionFragment:Q1,boxSizing:y4,textAlignLast:y4,tabSize:y4,wrapFlow:i,wrapThrough:i,wrapMargin:i,touchAction:i,gridTemplateColumns:i,gridTemplateRows:i,gridTemplateAreas:i,gridTemplate:i,gridAutoColumns:i,gridAutoRows:i,gridAutoFlow:i,grid:i,gridRowStart:i,gridColumnStart:i,gridRowEnd:i,gridRow:i,gridColumn:i,gridColumnEnd:i,gridColumnGap:i,gridRowGap:i,gridArea:i,gridGap:i,textSizeAdjust:Q1,borderImage:I,borderImageOutset:I,borderImageRepeat:I,borderImageSlice:I,borderImageSource:I,borderImageWidth:I}};E8.default=QB});var C1=F((v8,SQ)=>{Object.defineProperty(v8,"__esModule",{value:!0});v8.default=HB;function HB($,Z,J){if(J)return[$,Z];return $}SQ.exports=v8.default});var CQ=F((j8,xQ)=>{Object.defineProperty(j8,"__esModule",{value:!0});j8.default=OB;var zB=C1(),KB=UB(zB);function UB($){return $&&$.__esModule?$:{default:$}}function OB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z}=G;if(typeof Z==="string"&&Z.indexOf("calc(")>-1&&(Y==="firefox"&&X<15||Y==="chrome"&&X<25||Y==="safari"&&X<6.1||Y==="ios_saf"&&X<7))return(0,KB.default)(Z.replace(/calc\(/g,Q+"calc("),Z,z)}xQ.exports=j8.default});var yQ=F((f8,_Q)=>{Object.defineProperty(f8,"__esModule",{value:!0});f8.default=FB;var VB=C1(),WB=AB(VB);function AB($){return $&&$.__esModule?$:{default:$}}function FB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z}=G;if(typeof Z==="string"&&Z.indexOf("cross-fade(")>-1&&(Y==="chrome"||Y==="opera"||Y==="and_chr"||(Y==="ios_saf"||Y==="safari")&&X<10))return(0,WB.default)(Z.replace(/cross-fade\(/g,Q+"cross-fade("),Z,z)}_Q.exports=f8.default});var kQ=F((S8,hQ)=>{Object.defineProperty(S8,"__esModule",{value:!0});S8.default=MB;var BB=C1(),gQ=LB(BB);function LB($){return $&&$.__esModule?$:{default:$}}var qB={grab:!0,grabbing:!0},NB={"zoom-in":!0,"zoom-out":!0};function MB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z}=G;if($==="cursor"&&qB[Z]&&(Y==="firefox"||Y==="chrome"||Y==="safari"||Y==="opera"))return(0,gQ.default)(Q+Z,Z,z);if($==="cursor"&&NB[Z]&&(Y==="firefox"&&X<24||Y==="chrome"&&X<37||Y==="safari"&&X<9||Y==="opera"&&X<24))return(0,gQ.default)(Q+Z,Z,z)}hQ.exports=S8.default});var mQ=F((x8,bQ)=>{Object.defineProperty(x8,"__esModule",{value:!0});x8.default=DB;var RB=C1(),IB=PB(RB);function PB($){return $&&$.__esModule?$:{default:$}}function DB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z}=G;if(typeof Z==="string"&&Z.indexOf("filter(")>-1&&(Y==="ios_saf"||Y==="safari"&&X<9.1))return(0,IB.default)(Z.replace(/filter\(/g,Q+"filter("),Z,z)}bQ.exports=x8.default});var lQ=F((C8,uQ)=>{Object.defineProperty(C8,"__esModule",{value:!0});C8.default=jB;var TB=C1(),wB=EB(TB);function EB($){return $&&$.__esModule?$:{default:$}}var vB={flex:!0,"inline-flex":!0};function jB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z}=G;if($==="display"&&vB[Z]&&(Y==="chrome"&&X<29&&X>20||(Y==="safari"||Y==="ios_saf")&&X<9&&X>6||Y==="opera"&&(X===15||X===16)))return(0,wB.default)(Q+Z,Z,z)}uQ.exports=C8.default});var pQ=F((_8,cQ)=>{Object.defineProperty(_8,"__esModule",{value:!0});_8.default=CB;var fB=C1(),SB=xB(fB);function xB($){return $&&$.__esModule?$:{default:$}}var g4={"space-around":"distribute","space-between":"justify","flex-start":"start","flex-end":"end",flex:"flexbox","inline-flex":"inline-flexbox"},h4={alignContent:"msFlexLinePack",alignSelf:"msFlexItemAlign",alignItems:"msFlexAlign",justifyContent:"msFlexPack",order:"msFlexOrder",flexGrow:"msFlexPositive",flexShrink:"msFlexNegative",flexBasis:"msFlexPreferredSize"};function CB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z,requiresPrefix:H}=G;if((h4.hasOwnProperty($)||$==="display"&&typeof Z==="string"&&Z.indexOf("flex")>-1)&&(Y==="ie_mob"||Y==="ie")&&X===10){if(delete H[$],!z&&!Array.isArray(J[$]))delete J[$];if($==="display"&&g4.hasOwnProperty(Z))return(0,SB.default)(Q+g4[Z],Z,z);if(h4.hasOwnProperty($))J[h4[$]]=g4[Z]||Z}}cQ.exports=_8.default});var dQ=F((y8,iQ)=>{Object.defineProperty(y8,"__esModule",{value:!0});y8.default=bB;var _B=C1(),yB=gB(_B);function gB($){return $&&$.__esModule?$:{default:$}}var k4={"space-around":"justify","space-between":"justify","flex-start":"start","flex-end":"end","wrap-reverse":"multiple",wrap:"multiple",flex:"box","inline-flex":"inline-box"},b4={alignItems:"WebkitBoxAlign",justifyContent:"WebkitBoxPack",flexWrap:"WebkitBoxLines",flexGrow:"WebkitBoxFlex"},hB=["alignContent","alignSelf","order","flexGrow","flexShrink","flexBasis","flexDirection"],kB=Object.keys(b4).concat(hB);function bB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z,requiresPrefix:H}=G;if((kB.indexOf($)>-1||$==="display"&&typeof Z==="string"&&Z.indexOf("flex")>-1)&&(Y==="firefox"&&X<22||Y==="chrome"&&X<21||(Y==="safari"||Y==="ios_saf")&&X<=6.1||Y==="android"&&X<4.4||Y==="and_uc")){if(delete H[$],!z&&!Array.isArray(J[$]))delete J[$];if($==="flexDirection"&&typeof Z==="string"){if(Z.indexOf("column")>-1)J.WebkitBoxOrient="vertical";else J.WebkitBoxOrient="horizontal";if(Z.indexOf("reverse")>-1)J.WebkitBoxDirection="reverse";else J.WebkitBoxDirection="normal"}if($==="display"&&k4.hasOwnProperty(Z))return(0,yB.default)(Q+k4[Z],Z,z);if(b4.hasOwnProperty($))J[b4[$]]=k4[Z]||Z}}iQ.exports=y8.default});var rQ=F((g8,aQ)=>{Object.defineProperty(g8,"__esModule",{value:!0});g8.default=cB;var mB=C1(),uB=lB(mB);function lB($){return $&&$.__esModule?$:{default:$}}var nQ=/linear-gradient|radial-gradient|repeating-linear-gradient|repeating-radial-gradient/gi;function cB($,Z,J,G){var{browserName:Y,browserVersion:X,cssPrefix:Q,keepUnprefixed:z}=G;if(typeof Z==="string"&&nQ.test(Z)&&(Y==="firefox"&&X<16||Y==="chrome"&&X<26||(Y==="safari"||Y==="ios_saf")&&X<7||(Y==="opera"||Y==="op_mini")&&X<12.1||Y==="android"&&X<4.4||Y==="and_uc"))return(0,uB.default)(Z.replace(nQ,function(H){return Q+H}),Z,z)}aQ.exports=g8.default});var sQ=F((h8,oQ)=>{Object.defineProperty(h8,"__esModule",{value:!0});h8.default=nB;var pB=C1(),iB=dB(pB);function dB($){return $&&$.__esModule?$:{default:$}}function nB($,Z,J,G){var{browserName:Y,cssPrefix:X,keepUnprefixed:Q}=G;if(typeof Z==="string"&&Z.indexOf("image-set(")>-1&&(Y==="chrome"||Y==="opera"||Y==="and_chr"||Y==="and_uc"||Y==="ios_saf"||Y==="safari"))return(0,iB.default)(Z.replace(/image-set\(/g,X+"image-set("),Z,Q)}oQ.exports=h8.default});var eQ=F((k8,tQ)=>{Object.defineProperty(k8,"__esModule",{value:!0});k8.default=sB;var aB=C1(),rB=oB(aB);function oB($){return $&&$.__esModule?$:{default:$}}function sB($,Z,J,G){var{browserName:Y,cssPrefix:X,keepUnprefixed:Q}=G;if($==="position"&&Z==="sticky"&&(Y==="safari"||Y==="ios_saf"))return(0,rB.default)(X+Z,Z,Q)}tQ.exports=k8.default});var ZH=F((b8,$H)=>{Object.defineProperty(b8,"__esModule",{value:!0});b8.default=GL;var tB=C1(),eB=$L(tB);function $L($){return $&&$.__esModule?$:{default:$}}var ZL={maxHeight:!0,maxWidth:!0,width:!0,height:!0,columnWidth:!0,minWidth:!0,minHeight:!0},JL={"min-content":!0,"max-content":!0,"fill-available":!0,"fit-content":!0,"contain-floats":!0};function GL($,Z,J,G){var{cssPrefix:Y,keepUnprefixed:X}=G;if(ZL.hasOwnProperty($)&&JL.hasOwnProperty(Z))return(0,eB.default)(Y+Z,Z,X)}$H.exports=b8.default});var GH=F((m8,JH)=>{Object.defineProperty(m8,"__esModule",{value:!0});m8.default=zL;var YL=C4(),XL=QL(YL);function QL($){return $&&$.__esModule?$:{default:$}}var HL={transition:!0,transitionProperty:!0,WebkitTransition:!0,WebkitTransitionProperty:!0,MozTransition:!0,MozTransitionProperty:!0},m4=void 0;function zL($,Z,J,G){var{cssPrefix:Y,keepUnprefixed:X,requiresPrefix:Q}=G;if(typeof Z==="string"&&HL.hasOwnProperty($)){if(!m4)m4=Object.keys(Q).map(function(H){return(0,XL.default)(H)});var z=Z.split(/,(?![^()]*(?:\([^()]*\))?\))/g);return m4.forEach(function(H){z.forEach(function(K,U){if(K.indexOf(H)>-1&&H!=="order")z[U]=K.replace(H,Y+H)+(X?","+K:"")})}),z.join(",")}}JH.exports=m8.default});var YH=F((u8)=>{Object.defineProperty(u8,"__esModule",{value:!0});u8.default=void 0;var KL=_1(CQ()),UL=_1(yQ()),OL=_1(kQ()),VL=_1(mQ()),WL=_1(lQ()),AL=_1(pQ()),FL=_1(dQ()),BL=_1(rQ()),LL=_1(sQ()),qL=_1(eQ()),NL=_1(ZH()),ML=_1(GH());function _1($){return $&&$.__esModule?$:{default:$}}var RL={plugins:[KL.default,UL.default,OL.default,VL.default,WL.default,AL.default,FL.default,BL.default,LL.default,qL.default,NL.default,ML.default],prefixMap:{chrome:{transform:35,transformOrigin:35,transformOriginX:35,transformOriginY:35,backfaceVisibility:35,perspective:35,perspectiveOrigin:35,transformStyle:35,transformOriginZ:35,animation:42,animationDelay:42,animationDirection:42,animationFillMode:42,animationDuration:42,animationIterationCount:42,animationName:42,animationPlayState:42,animationTimingFunction:42,appearance:66,userSelect:53,fontKerning:32,textEmphasisPosition:66,textEmphasis:66,textEmphasisStyle:66,textEmphasisColor:66,boxDecorationBreak:66,clipPath:54,maskImage:66,maskMode:66,maskRepeat:66,maskPosition:66,maskClip:66,maskOrigin:66,maskSize:66,maskComposite:66,mask:66,maskBorderSource:66,maskBorderMode:66,maskBorderSlice:66,maskBorderWidth:66,maskBorderOutset:66,maskBorderRepeat:66,maskBorder:66,maskType:66,textDecorationStyle:56,textDecorationSkip:56,textDecorationLine:56,textDecorationColor:56,filter:52,fontFeatureSettings:47,breakAfter:49,breakBefore:49,breakInside:49,columnCount:49,columnFill:49,columnGap:49,columnRule:49,columnRuleColor:49,columnRuleStyle:49,columnRuleWidth:49,columns:49,columnSpan:49,columnWidth:49,writingMode:47},safari:{flex:8,flexBasis:8,flexDirection:8,flexGrow:8,flexFlow:8,flexShrink:8,flexWrap:8,alignContent:8,alignItems:8,alignSelf:8,justifyContent:8,order:8,transition:6,transitionDelay:6,transitionDuration:6,transitionProperty:6,transitionTimingFunction:6,transform:8,transformOrigin:8,transformOriginX:8,transformOriginY:8,backfaceVisibility:8,perspective:8,perspectiveOrigin:8,transformStyle:8,transformOriginZ:8,animation:8,animationDelay:8,animationDirection:8,animationFillMode:8,animationDuration:8,animationIterationCount:8,animationName:8,animationPlayState:8,animationTimingFunction:8,appearance:11,userSelect:11,backdropFilter:11,fontKerning:9,scrollSnapType:10.1,scrollSnapPointsX:10.1,scrollSnapPointsY:10.1,scrollSnapDestination:10.1,scrollSnapCoordinate:10.1,textEmphasisPosition:7,textEmphasis:7,textEmphasisStyle:7,textEmphasisColor:7,boxDecorationBreak:11,clipPath:11,maskImage:11,maskMode:11,maskRepeat:11,maskPosition:11,maskClip:11,maskOrigin:11,maskSize:11,maskComposite:11,mask:11,maskBorderSource:11,maskBorderMode:11,maskBorderSlice:11,maskBorderWidth:11,maskBorderOutset:11,maskBorderRepeat:11,maskBorder:11,maskType:11,textDecorationStyle:11,textDecorationSkip:11,textDecorationLine:11,textDecorationColor:11,shapeImageThreshold:10,shapeImageMargin:10,shapeImageOutside:10,filter:9,hyphens:11,flowInto:11,flowFrom:11,breakBefore:8,breakAfter:8,breakInside:8,regionFragment:11,columnCount:8,columnFill:8,columnGap:8,columnRule:8,columnRuleColor:8,columnRuleStyle:8,columnRuleWidth:8,columns:8,columnSpan:8,columnWidth:8,writingMode:10.1},firefox:{appearance:60,userSelect:60,boxSizing:28,textAlignLast:48,textDecorationStyle:35,textDecorationSkip:35,textDecorationLine:35,textDecorationColor:35,tabSize:60,hyphens:42,fontFeatureSettings:33,breakAfter:51,breakBefore:51,breakInside:51,columnCount:51,columnFill:51,columnGap:51,columnRule:51,columnRuleColor:51,columnRuleStyle:51,columnRuleWidth:51,columns:51,columnSpan:51,columnWidth:51},opera:{flex:16,flexBasis:16,flexDirection:16,flexGrow:16,flexFlow:16,flexShrink:16,flexWrap:16,alignContent:16,alignItems:16,alignSelf:16,justifyContent:16,order:16,transform:22,transformOrigin:22,transformOriginX:22,transformOriginY:22,backfaceVisibility:22,perspective:22,perspectiveOrigin:22,transformStyle:22,transformOriginZ:22,animation:29,animationDelay:29,animationDirection:29,animationFillMode:29,animationDuration:29,animationIterationCount:29,animationName:29,animationPlayState:29,animationTimingFunction:29,appearance:50,userSelect:40,fontKerning:19,textEmphasisPosition:50,textEmphasis:50,textEmphasisStyle:50,textEmphasisColor:50,boxDecorationBreak:50,clipPath:41,maskImage:50,maskMode:50,maskRepeat:50,maskPosition:50,maskClip:50,maskOrigin:50,maskSize:50,maskComposite:50,mask:50,maskBorderSource:50,maskBorderMode:50,maskBorderSlice:50,maskBorderWidth:50,maskBorderOutset:50,maskBorderRepeat:50,maskBorder:50,maskType:50,textDecorationStyle:43,textDecorationSkip:43,textDecorationLine:43,textDecorationColor:43,filter:39,fontFeatureSettings:34,breakAfter:36,breakBefore:36,breakInside:36,columnCount:36,columnFill:36,columnGap:36,columnRule:36,columnRuleColor:36,columnRuleStyle:36,columnRuleWidth:36,columns:36,columnSpan:36,columnWidth:36,writingMode:34},ie:{flex:10,flexDirection:10,flexFlow:10,flexWrap:10,transform:9,transformOrigin:9,transformOriginX:9,transformOriginY:9,userSelect:11,wrapFlow:11,wrapThrough:11,wrapMargin:11,scrollSnapType:11,scrollSnapPointsX:11,scrollSnapPointsY:11,scrollSnapDestination:11,scrollSnapCoordinate:11,touchAction:10,hyphens:11,flowInto:11,flowFrom:11,breakBefore:11,breakAfter:11,breakInside:11,regionFragment:11,gridTemplateColumns:11,gridTemplateRows:11,gridTemplateAreas:11,gridTemplate:11,gridAutoColumns:11,gridAutoRows:11,gridAutoFlow:11,grid:11,gridRowStart:11,gridColumnStart:11,gridRowEnd:11,gridRow:11,gridColumn:11,gridColumnEnd:11,gridColumnGap:11,gridRowGap:11,gridArea:11,gridGap:11,textSizeAdjust:11,writingMode:11},edge:{userSelect:17,wrapFlow:17,wrapThrough:17,wrapMargin:17,scrollSnapType:17,scrollSnapPointsX:17,scrollSnapPointsY:17,scrollSnapDestination:17,scrollSnapCoordinate:17,hyphens:17,flowInto:17,flowFrom:17,breakBefore:17,breakAfter:17,breakInside:17,regionFragment:17,gridTemplateColumns:15,gridTemplateRows:15,gridTemplateAreas:15,gridTemplate:15,gridAutoColumns:15,gridAutoRows:15,gridAutoFlow:15,grid:15,gridRowStart:15,gridColumnStart:15,gridRowEnd:15,gridRow:15,gridColumn:15,gridColumnEnd:15,gridColumnGap:15,gridRowGap:15,gridArea:15,gridGap:15},ios_saf:{flex:8.1,flexBasis:8.1,flexDirection:8.1,flexGrow:8.1,flexFlow:8.1,flexShrink:8.1,flexWrap:8.1,alignContent:8.1,alignItems:8.1,alignSelf:8.1,justifyContent:8.1,order:8.1,transition:6,transitionDelay:6,transitionDuration:6,transitionProperty:6,transitionTimingFunction:6,transform:8.1,transformOrigin:8.1,transformOriginX:8.1,transformOriginY:8.1,backfaceVisibility:8.1,perspective:8.1,perspectiveOrigin:8.1,transformStyle:8.1,transformOriginZ:8.1,animation:8.1,animationDelay:8.1,animationDirection:8.1,animationFillMode:8.1,animationDuration:8.1,animationIterationCount:8.1,animationName:8.1,animationPlayState:8.1,animationTimingFunction:8.1,appearance:11,userSelect:11,backdropFilter:11,fontKerning:11,scrollSnapType:10.3,scrollSnapPointsX:10.3,scrollSnapPointsY:10.3,scrollSnapDestination:10.3,scrollSnapCoordinate:10.3,boxDecorationBreak:11,clipPath:11,maskImage:11,maskMode:11,maskRepeat:11,maskPosition:11,maskClip:11,maskOrigin:11,maskSize:11,maskComposite:11,mask:11,maskBorderSource:11,maskBorderMode:11,maskBorderSlice:11,maskBorderWidth:11,maskBorderOutset:11,maskBorderRepeat:11,maskBorder:11,maskType:11,textSizeAdjust:11,textDecorationStyle:11,textDecorationSkip:11,textDecorationLine:11,textDecorationColor:11,shapeImageThreshold:10,shapeImageMargin:10,shapeImageOutside:10,filter:9,hyphens:11,flowInto:11,flowFrom:11,breakBefore:8.1,breakAfter:8.1,breakInside:8.1,regionFragment:11,columnCount:8.1,columnFill:8.1,columnGap:8.1,columnRule:8.1,columnRuleColor:8.1,columnRuleStyle:8.1,columnRuleWidth:8.1,columns:8.1,columnSpan:8.1,columnWidth:8.1,writingMode:10.3},android:{borderImage:4.2,borderImageOutset:4.2,borderImageRepeat:4.2,borderImageSlice:4.2,borderImageSource:4.2,borderImageWidth:4.2,flex:4.2,flexBasis:4.2,flexDirection:4.2,flexGrow:4.2,flexFlow:4.2,flexShrink:4.2,flexWrap:4.2,alignContent:4.2,alignItems:4.2,alignSelf:4.2,justifyContent:4.2,order:4.2,transition:4.2,transitionDelay:4.2,transitionDuration:4.2,transitionProperty:4.2,transitionTimingFunction:4.2,transform:4.4,transformOrigin:4.4,transformOriginX:4.4,transformOriginY:4.4,backfaceVisibility:4.4,perspective:4.4,perspectiveOrigin:4.4,transformStyle:4.4,transformOriginZ:4.4,animation:4.4,animationDelay:4.4,animationDirection:4.4,animationFillMode:4.4,animationDuration:4.4,animationIterationCount:4.4,animationName:4.4,animationPlayState:4.4,animationTimingFunction:4.4,appearance:62,userSelect:4.4,fontKerning:4.4,textEmphasisPosition:62,textEmphasis:62,textEmphasisStyle:62,textEmphasisColor:62,boxDecorationBreak:62,clipPath:4.4,maskImage:62,maskMode:62,maskRepeat:62,maskPosition:62,maskClip:62,maskOrigin:62,maskSize:62,maskComposite:62,mask:62,maskBorderSource:62,maskBorderMode:62,maskBorderSlice:62,maskBorderWidth:62,maskBorderOutset:62,maskBorderRepeat:62,maskBorder:62,maskType:62,filter:4.4,fontFeatureSettings:4.4,breakAfter:4.4,breakBefore:4.4,breakInside:4.4,columnCount:4.4,columnFill:4.4,columnGap:4.4,columnRule:4.4,columnRuleColor:4.4,columnRuleStyle:4.4,columnRuleWidth:4.4,columns:4.4,columnSpan:4.4,columnWidth:4.4,writingMode:4.4},and_chr:{appearance:62,textEmphasisPosition:62,textEmphasis:62,textEmphasisStyle:62,textEmphasisColor:62,boxDecorationBreak:62,maskImage:62,maskMode:62,maskRepeat:62,maskPosition:62,maskClip:62,maskOrigin:62,maskSize:62,maskComposite:62,mask:62,maskBorderSource:62,maskBorderMode:62,maskBorderSlice:62,maskBorderWidth:62,maskBorderOutset:62,maskBorderRepeat:62,maskBorder:62,maskType:62},and_uc:{flex:11.4,flexBasis:11.4,flexDirection:11.4,flexGrow:11.4,flexFlow:11.4,flexShrink:11.4,flexWrap:11.4,alignContent:11.4,alignItems:11.4,alignSelf:11.4,justifyContent:11.4,order:11.4,transform:11.4,transformOrigin:11.4,transformOriginX:11.4,transformOriginY:11.4,backfaceVisibility:11.4,perspective:11.4,perspectiveOrigin:11.4,transformStyle:11.4,transformOriginZ:11.4,animation:11.4,animationDelay:11.4,animationDirection:11.4,animationFillMode:11.4,animationDuration:11.4,animationIterationCount:11.4,animationName:11.4,animationPlayState:11.4,animationTimingFunction:11.4,appearance:11.4,userSelect:11.4,textEmphasisPosition:11.4,textEmphasis:11.4,textEmphasisStyle:11.4,textEmphasisColor:11.4,clipPath:11.4,maskImage:11.4,maskMode:11.4,maskRepeat:11.4,maskPosition:11.4,maskClip:11.4,maskOrigin:11.4,maskSize:11.4,maskComposite:11.4,mask:11.4,maskBorderSource:11.4,maskBorderMode:11.4,maskBorderSlice:11.4,maskBorderWidth:11.4,maskBorderOutset:11.4,maskBorderRepeat:11.4,maskBorder:11.4,maskType:11.4,textSizeAdjust:11.4,filter:11.4,hyphens:11.4,fontFeatureSettings:11.4,breakAfter:11.4,breakBefore:11.4,breakInside:11.4,columnCount:11.4,columnFill:11.4,columnGap:11.4,columnRule:11.4,columnRuleColor:11.4,columnRuleStyle:11.4,columnRuleWidth:11.4,columns:11.4,columnSpan:11.4,columnWidth:11.4,writingMode:11.4},op_mini:{}}};u8.default=RL});var i8=F((p8)=>{Object.defineProperty(p8,"__esModule",{value:!0});p8.getPrefixedKeyframes=SL;p8.getPrefixedStyle=xL;var IL=C6(kX()),PL=C6(oX()),DL=C6(S4()),TL=C6(fQ()),wL=C6(YH()),EL=E4();function C6($){return $&&$.__esModule?$:{default:$}}function c8($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")c8=function(J){return typeof J};else c8=function(J){return J&&typeof Symbol==="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J};return c8($)}var QH=(0,IL.default)(TL.default),vL=(0,PL.default)(wL.default,QH);function jL($){return Object.keys($).reduce(function(Z,J){var G=$[J];if(Array.isArray(G))G=G.join(";"+J+":");else if(G&&c8(G)==="object"&&typeof G.toString==="function")G=G.toString();return Z[J]=G,Z},{})}function fL($){return Object.keys($).reduce(function(Z,J){var G=$[J];if(Array.isArray(G))if(DL.default.canUseDOM)G=G[G.length-1].toString();else G=G.join(";".concat((0,EL.camelCaseToDashCase)(J),":"));return Z[J]=G,Z},{})}var XH,l8;function HH($){var Z=$||global&&global.navigator&&global.navigator.userAgent;if(!l8||Z!==XH){if(Z==="all")l8={prefix:QH,prefixedKeyframes:"keyframes"};else l8=new vL({userAgent:Z});XH=Z}return l8}function SL($){return HH($).prefixedKeyframes||"keyframes"}function xL($,Z){var J=jL($),G=HH(Z),Y=G.prefix(J),X=fL(Y);return X}});var d8=F((l4)=>{Object.defineProperty(l4,"__esModule",{value:!0});l4.default=kL;var CL=u4(P4()),_L=u4(E4()),yL=u4(T4()),gL=i8();function u4($){return $&&$.__esModule?$:{default:$}}function hL($){return Object.keys($).map(function(Z){return Z+": "+$[Z]+";"}).join(`
|
|
23
|
+
`)}function kL($,Z,J){if(!Z)return"";var G=(0,yL.default)(Z,function(z,H){return(0,CL.default)(H,z)}),Y=(0,gL.getPrefixedStyle)(G,J),X=(0,_L.default)(Y),Q=hL(X);return $+"{"+Q+"}"}});var c4=F((n8)=>{Object.defineProperty(n8,"__esModule",{value:!0});n8.default=void 0;var bL=function(Z){return Z===null||typeof Z>"u"?"main":Z.toString()},mL=bL;n8.default=mL});var p4=F((a8)=>{Object.defineProperty(a8,"__esModule",{value:!0});a8.default=void 0;var uL=lL(c4());function lL($){return $&&$.__esModule?$:{default:$}}var cL=function(Z,J,G){var Y=(0,uL.default)(J);return!!Z&&!!Z._radiumStyleState&&!!Z._radiumStyleState[Y]&&Z._radiumStyleState[Y][G]},pL=cL;a8.default=pL});var zH=F((r8)=>{Object.defineProperty(r8,"__esModule",{value:!0});r8.default=void 0;var iL=function(Z){return typeof Z.ref==="string"?Z.ref:Z.key},dL=iL;r8.default=dL});var i4=F((o8)=>{Object.defineProperty(o8,"__esModule",{value:!0});o8.default=void 0;var nL=function(Z){return Z._lastRadiumState||Z.state&&Z.state._radiumStyleState||{}},aL=nL;o8.default=aL});var n4=F((d4)=>{Object.defineProperty(d4,"__esModule",{value:!0});d4.default=rL;function rL($){if(!$)return"";var Z=5381,J=$.length-1;while(J)Z=Z*33^$.charCodeAt(J),J-=1;return(Z>>>0).toString(16)}});var KH=F((t8)=>{Object.defineProperty(t8,"__esModule",{value:!0});t8.isNestedStyle=a4;t8.mergeStyles=r4;function s8($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")s8=function(J){return typeof J};else s8=function(J){return J&&typeof Symbol==="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J};return s8($)}function a4($){return $&&$.constructor===Object&&$.toString===Object.prototype.toString}function r4($){var Z={};return $.forEach(function(J){if(!J||s8(J)!=="object")return;if(Array.isArray(J))J=r4(J);Object.keys(J).forEach(function(G){if(!a4(J[G])||!a4(Z[G])){Z[G]=J[G];return}if(G.indexOf("@media")===0){var Y=G;while(!0)if(Y+=" ",!Z[Y]){Z[Y]=J[G];return}}Z[G]=r4([Z[G],J[G]])})}),Z}});var UH=F((e8)=>{Object.defineProperty(e8,"__esModule",{value:!0});e8.default=void 0;var oL=function(){},sL=oL;e8.default=sL});var OH=F((o4)=>{Object.defineProperty(o4,"__esModule",{value:!0});o4.default=tL;function tL($){var{addCSS:Z,config:J,style:G}=$,Y=function(z){var H=z,K=H.__process(J.userAgent),U=K.animationName,O=K.css;return Z(O),U},X=Object.keys(G).reduce(function(Q,z){var H=G[z],K=Array.isArray(H);if(z==="animationName"&&H&&(H.__radiumKeyframes||K))if(K)H=H.map(Y).join(", ");else H=Y(H);return Q[z]=H,Q},{});return{style:X}}});var VH=F(($9)=>{Object.defineProperty($9,"__esModule",{value:!0});$9.default=void 0;var eL=function(Z){var{style:J,mergeStyles:G}=Z,Y=Array.isArray(J)?G(J):J;return{style:Y}},$q=eL;$9.default=$q});var WH=F((s4)=>{Object.defineProperty(s4,"__esModule",{value:!0});s4.default=Jq;var Zq=i8();function Jq($){var{config:Z,style:J}=$,G=(0,Zq.getPrefixedStyle)(J,Z.userAgent);return{style:G}}});var AH=F((t4)=>{Object.defineProperty(t4,"__esModule",{value:!0});t4.default=Gq;function Gq($){var{isNestedStyle:Z,style:J}=$,G=Object.keys(J).reduce(function(Y,X){var Q=J[X];if(!Z(Q))Y[X]=Q;return Y},{});return{style:G}}});var FH=F((J9)=>{Object.defineProperty(J9,"__esModule",{value:!0});J9.default=void 0;var g5=[],Z9=!1;function e4(){g5.forEach(function($){$()})}var Yq=function(Z){if(g5.indexOf(Z)===-1)g5.push(Z);if(!Z9)window.addEventListener("mouseup",e4),Z9=!0;return{remove:function(){var G=g5.indexOf(Z);if(g5.splice(G,1),g5.length===0&&Z9)window.removeEventListener("mouseup",e4),Z9=!1}}},Xq={subscribe:Yq,__triggerForTests:e4};J9.default=Xq});var LH=F((G9)=>{Object.defineProperty(G9,"__esModule",{value:!0});G9.default=void 0;var Qq=Hq(FH());function Hq($){return $&&$.__esModule?$:{default:$}}var BH=function(Z){return Z===":hover"||Z===":active"||Z===":focus"},zq=function(Z){var{ExecutionEnvironment:J,getComponentField:G,getState:Y,mergeStyles:X,props:Q,setState:z,style:H}=Z,K={},U={};if(H[":hover"]){var O=Q.onMouseEnter;U.onMouseEnter=function(N){O&&O(N),z(":hover",!0)};var W=Q.onMouseLeave;U.onMouseLeave=function(N){W&&W(N),z(":hover",!1)}}if(H[":active"]){var L=Q.onMouseDown;U.onMouseDown=function(N){L&&L(N),K._lastMouseDown=Date.now(),z(":active","viamousedown")};var B=Q.onKeyDown;U.onKeyDown=function(N){if(B&&B(N),N.key===" "||N.key==="Enter")z(":active","viakeydown")};var V=Q.onKeyUp;U.onKeyUp=function(N){if(V&&V(N),N.key===" "||N.key==="Enter")z(":active",!1)}}if(H[":focus"]){var R=Q.onFocus;U.onFocus=function(N){R&&R(N),z(":focus",!0)};var T=Q.onBlur;U.onBlur=function(N){T&&T(N),z(":focus",!1)}}if(H[":active"]&&!G("_radiumMouseUpListener")&&J.canUseEventListeners)K._radiumMouseUpListener=Qq.default.subscribe(function(){Object.keys(G("state")._radiumStyleState).forEach(function(N){if(Y(":active",N)==="viamousedown")z(":active",!1,N)})});var P=Q.disabled?[H[":disabled"]]:Object.keys(H).filter(function(N){return BH(N)&&Y(N)}).map(function(N){return H[N]}),q=X([H].concat(P));return q=Object.keys(q).reduce(function(N,v){if(!BH(v)&&v!==":disabled")N[v]=q[v];return N},{}),{componentFields:K,props:U,style:q}},Kq=zq;G9.default=Kq});var NH=F((ZZ)=>{Object.defineProperty(ZZ,"__esModule",{value:!0});ZZ.default=Bq;function Uq($){for(var Z=1;Z<arguments.length;Z++){var J=arguments[Z]!=null?arguments[Z]:{},G=Object.keys(J);if(typeof Object.getOwnPropertySymbols==="function")G=G.concat(Object.getOwnPropertySymbols(J).filter(function(Y){return Object.getOwnPropertyDescriptor(J,Y).enumerable}));G.forEach(function(Y){Oq($,Y,J[Y])})}return $}function Oq($,Z,J){if(Z in $)Object.defineProperty($,Z,{value:J,enumerable:!0,configurable:!0,writable:!0});else $[Z]=J;return $}var $Z;function Vq($){if($Z===void 0)$Z=!!$.canUseDOM&&!!window&&!!window.matchMedia&&function(Z){return window.matchMedia(Z)}||null;return $Z}function qH($,Z){return Object.keys($).filter(function(J){return Z($[J],J)}).reduce(function(J,G){return J[G]=$[G],J},{})}function Wq($){return Object.keys($).reduce(function(Z,J){if(J.indexOf("@media")!==0)Z[J]=$[J];return Z},{})}function Aq($){var{addCSS:Z,appendImportantToEachValue:J,cssRuleSetToString:G,hash:Y,isNestedStyle:X,style:Q,userAgent:z}=$,H="";return Object.keys(Q).filter(function(K){return K.indexOf("@media")===0}).map(function(K){var U=J(qH(Q[K],function(B){return!X(B)}));if(!Object.keys(U).length)return;var O=G("",U,z),W="rmq-"+Y(K+O),L=K+"{ ."+W+O+"}";Z(L),H+=(H?" ":"")+W}),H}function Fq($){var{listener:Z,listenersByQuery:J,matchMedia:G,mediaQueryListsByQuery:Y,query:X}=$;X=X.replace("@media ","");var Q=Y[X];if(!Q&&G)Y[X]=Q=G(X);if(!J||!J[X])Q.addListener(Z),J[X]={remove:function(){Q.removeListener(Z)}};return Q}function Bq($){var{ExecutionEnvironment:Z,addCSS:J,appendImportantToEachValue:G,config:Y,cssRuleSetToString:X,getComponentField:Q,getGlobalState:z,hash:H,isNestedStyle:K,mergeStyles:U,props:O,setState:W,style:L}=$,B=Wq(L),V=Aq({addCSS:J,appendImportantToEachValue:G,cssRuleSetToString:X,hash:H,isNestedStyle:K,style:L,userAgent:Y.userAgent}),R=V?{className:V+(O.className?" "+O.className:"")}:null,T=Y.matchMedia||Vq(Z);if(!T)return{props:R,style:B};var P=Uq({},Q("_radiumMediaQueryListenersByQuery")),q=z("mediaQueryListsByQuery")||{};return Object.keys(L).filter(function(N){return N.indexOf("@media")===0}).map(function(N){var v=qH(L[N],K);if(!Object.keys(v).length)return;var S=Fq({listener:function(){return W(N,S.matches,"_all")},listenersByQuery:P,matchMedia:T,mediaQueryListsByQuery:q,query:N});if(S.matches)B=U([B,v])}),{componentFields:{_radiumMediaQueryListenersByQuery:P},globalState:{mediaQueryListsByQuery:q},props:R,style:B}}});var MH=F((JZ)=>{Object.defineProperty(JZ,"__esModule",{value:!0});JZ.default=Lq;function Lq($){var{addCSS:Z,appendImportantToEachValue:J,config:G,cssRuleSetToString:Y,hash:X,props:Q,style:z}=$,H=Q.className,K=Object.keys(z).reduce(function(U,O){var W=z[O];if(O===":visited"){W=J(W);var L=Y("",W,G.userAgent),B="rad-"+X(L),V="."+B+":visited"+L;Z(V),H=(H?H+" ":"")+B}else U[O]=W;return U},{});return{props:H===Q.className?null:{className:H},style:K}}});var GZ=F((Y9)=>{Object.defineProperty(Y9,"__esModule",{value:!0});Y9.default=void 0;var qq=h0(UH()),Nq=h0(OH()),Mq=h0(VH()),Rq=h0(WH()),Iq=h0(AH()),Pq=h0(LH()),Dq=h0(NH()),Tq=h0(MH());function h0($){return $&&$.__esModule?$:{default:$}}var wq={checkProps:qq.default,keyframes:Nq.default,mergeStyleArray:Mq.default,prefix:Rq.default,removeNestedStyles:Iq.default,resolveInteractionStyles:Pq.default,resolveMediaQueries:Dq.default,visited:Tq.default};Y9.default=wq});var _6=F((X9)=>{Object.defineProperty(X9,"__esModule",{value:!0});X9.default=void 0;function Eq($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function RH($,Z){for(var J=0;J<Z.length;J++){var G=Z[J];if(G.enumerable=G.enumerable||!1,G.configurable=!0,"value"in G)G.writable=!0;Object.defineProperty($,G.key,G)}}function vq($,Z,J){if(Z)RH($.prototype,Z);if(J)RH($,J);return $}var jq=function(){function $(Z){Eq(this,$),this._userAgent=void 0,this._listeners=void 0,this._cssSet=void 0,this._userAgent=Z,this._listeners=[],this._cssSet={}}return vq($,[{key:"subscribe",value:function(J){var G=this;if(this._listeners.indexOf(J)===-1)this._listeners.push(J);return{remove:function(){var X=G._listeners.indexOf(J);if(X>-1)G._listeners.splice(X,1)}}}},{key:"addCSS",value:function(J){var G=this;if(!this._cssSet[J])this._cssSet[J]=!0,this._emitChange();return{remove:function(){delete G._cssSet[J],G._emitChange()}}}},{key:"getCSS",value:function(){return Object.keys(this._cssSet).join(`
|
|
24
|
+
`)}},{key:"_emitChange",value:function(){this._listeners.forEach(function(J){return J()})}}]),$}();X9.default=jq});var YZ=F((H9)=>{Object.defineProperty(H9,"__esModule",{value:!0});H9.default=void 0;var fq=d1(EX()),Sq=d1(d8()),xq=d1(p4()),h5=d1(zH()),Cq=d1(c4()),DH=d1(i4()),_q=d1(n4()),IH=KH(),F0=d1(GZ()),yq=d1(S4()),k0=d1(require("react")),zT=d1(_6());function d1($){return $&&$.__esModule?$:{default:$}}function k5($){for(var Z=1;Z<arguments.length;Z++){var J=arguments[Z]!=null?arguments[Z]:{},G=Object.keys(J);if(typeof Object.getOwnPropertySymbols==="function")G=G.concat(Object.getOwnPropertySymbols(J).filter(function(Y){return Object.getOwnPropertyDescriptor(J,Y).enumerable}));G.forEach(function(Y){gq($,Y,J[Y])})}return $}function gq($,Z,J){if(Z in $)Object.defineProperty($,Z,{value:J,enumerable:!0,configurable:!0,writable:!0});else $[Z]=J;return $}function Q9($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")Q9=function(J){return typeof J};else Q9=function(J){return J&&typeof Symbol==="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J};return Q9($)}var TH={plugins:[F0.default.mergeStyleArray,F0.default.checkProps,F0.default.resolveMediaQueries,F0.default.resolveInteractionStyles,F0.default.keyframes,F0.default.visited,F0.default.removeNestedStyles,F0.default.prefix,F0.default.checkProps]},PH={},hq=!1,X5=null,kq=function(Z){return Z.type&&!Z.type._isRadiumEnhanced},bq=function(Z){var{children:J,component:G,config:Y,existingKeyMap:X,extraStateKeyMap:Q}=Z;if(!J)return J;var z=Q9(J);if(z==="string"||z==="number")return J;if(z==="function")return function(){var W=J.apply(this,arguments);if(k0.default.isValidElement(W)){var L=(0,h5.default)(W);delete Q[L];var B=X5(G,W,Y,X,!0,Q),V=B.element;return V}return W};if(k0.default.Children.count(J)===1&&J.type){var H=k0.default.Children.only(J),K=(0,h5.default)(H);delete Q[K];var U=X5(G,H,Y,X,!0,Q),O=U.element;return O}return k0.default.Children.map(J,function(W){if(k0.default.isValidElement(W)){var L=(0,h5.default)(W);delete Q[L];var B=X5(G,W,Y,X,!0,Q),V=B.element;return V}return W})},mq=function(Z){var{component:J,config:G,existingKeyMap:Y,props:X,extraStateKeyMap:Q}=Z,z=X;return Object.keys(X).forEach(function(H){if(H==="children")return;var K=X[H];if(k0.default.isValidElement(K)){var U=(0,h5.default)(K);delete Q[U],z=k5({},z);var O=X5(J,K,G,Y,!0,Q),W=O.element;z[H]=W}}),z},uq=function(Z){var{componentName:J,existingKeyMap:G,renderedElement:Y}=Z,X=(0,h5.default)(Y),Q=(0,Cq.default)(X),z=!1,H=function(){if(z)return Q;if(z=!0,G[Q]){var U;if(typeof Y.type==="string")U=Y.type;else if(Y.type.constructor)U=Y.type.constructor.displayName||Y.type.constructor.name;throw Error("Radium requires each element with interactive styles to have a unique key, set using either the ref or key prop. "+(X?'Key "'+X+'" is a duplicate.':"Multiple elements have no key specified.")+' Component: "'+J+'". '+(U?'Element: "'+U+'".':""))}return G[Q]=!0,Q};return H},lq=function(Z,J,G,Y){if(!Z._radiumIsMounted)return;var X=(0,DH.default)(Z),Q={_radiumStyleState:k5({},X)};Q._radiumStyleState[J]=k5({},Q._radiumStyleState[J]),Q._radiumStyleState[J][G]=Y,Z._lastRadiumState=Q._radiumStyleState,Z.setState(Q)},cq=function(Z){var{component:J,config:G,existingKeyMap:Y,props:X,renderedElement:Q}=Z;if(!k0.default.isValidElement(Q)||typeof Q.type!=="string"||!X.style)return X;var z=X,H=G.plugins||TH.plugins,K=J.constructor.displayName||J.constructor.name,U=uq({renderedElement:Q,existingKeyMap:Y,componentName:K}),O=function(P){return J[P]},W=function(P){return PH[P]},L=function(P,q){return(0,xq.default)(J.state,q||U(),P)},B=function(P,q,N){return lq(J,N||U(),P,q)},V=function(P){var q=J._radiumStyleKeeper;if(!q){if(hq)return{remove:function(){}};throw Error("To use plugins requiring `addCSS` (e.g. keyframes, media queries), please wrap your application in the StyleRoot component. Component name: `"+K+"`.")}return q.addCSS(P)},R=X.style;if(H.forEach(function(T){var P=T({ExecutionEnvironment:yq.default,addCSS:V,appendImportantToEachValue:fq.default,componentName:K,config:G,cssRuleSetToString:Sq.default,getComponentField:O,getGlobalState:W,getState:L,hash:_q.default,mergeStyles:IH.mergeStyles,props:z,setState:B,isNestedStyle:IH.isNestedStyle,style:R})||{};R=P.style||R,z=P.props&&Object.keys(P.props).length?k5({},z,P.props):z;var q=P.componentFields||{};Object.keys(q).forEach(function(v){J[v]=q[v]});var N=P.globalState||{};Object.keys(N).forEach(function(v){PH[v]=N[v]})}),R!==X.style)z=k5({},z,{style:R});return z},pq=function(Z,J,G){if(typeof Z.type==="string")J=k5({},J,{"data-radium":!0});return k0.default.cloneElement(Z,J,G)};X5=function(Z,J){var G=arguments.length>2&&arguments[2]!==void 0?arguments[2]:TH,Y=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},X=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1,Q=arguments.length>5?arguments[5]:void 0;if(!Q){var z=(0,DH.default)(Z);Q=Object.keys(z).reduce(function(L,B){if(B!=="main")L[B]=!0;return L},{})}if(Array.isArray(J)&&!J.props){var H=J.map(function(L){if(Q){var B=(0,h5.default)(L);delete Q[B]}return X5(Z,L,G,Y,X,Q).element});return{extraStateKeyMap:Q,element:H}}if(!J||J.props&&J.props["data-radium"]||X&&!kq(J))return{extraStateKeyMap:Q,element:J};var K=J.props.children,U=bq({children:K,component:Z,config:G,existingKeyMap:Y,extraStateKeyMap:Q}),O=mq({component:Z,config:G,existingKeyMap:Y,extraStateKeyMap:Q,props:J.props});if(O=cq({component:Z,config:G,existingKeyMap:Y,props:O,renderedElement:J}),U===K&&O===J.props)return{extraStateKeyMap:Q,element:J};var W=pq(J,O!==J.props?O:{},U);return{extraStateKeyMap:Q,element:W}};var iq=X5;H9.default=iq});var y6=F((Q5)=>{Object.defineProperty(Q5,"__esModule",{value:!0});Q5.withRadiumContexts=aq;Q5.RadiumConfigContext=Q5.StyleKeeperContext=void 0;var b5=nq(require("react")),dq=wH(R4()),UT=wH(_6());function wH($){return $&&$.__esModule?$:{default:$}}function nq($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var J in $)if(Object.prototype.hasOwnProperty.call($,J)){var G=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,J):{};if(G.get||G.set)Object.defineProperty(Z,J,G);else Z[J]=$[J]}}return Z.default=$,Z}}function XZ(){return XZ=Object.assign||function($){for(var Z=1;Z<arguments.length;Z++){var J=arguments[Z];for(var G in J)if(Object.prototype.hasOwnProperty.call(J,G))$[G]=J[G]}return $},XZ.apply(this,arguments)}var EH=b5.default.createContext(void 0);Q5.StyleKeeperContext=EH;var vH=b5.default.createContext(void 0);Q5.RadiumConfigContext=vH;function aq($){var Z=b5.default.forwardRef(function(J,G){var Y=(0,b5.useContext)(vH),X=(0,b5.useContext)(EH);return b5.default.createElement($,XZ({ref:G},J,{radiumConfigContext:Y,styleKeeperContext:X}))});return Z.displayName="withRadiumContexts(".concat($.displayName||$.name||"Component",")"),(0,dq.default)(Z,$)}});var UZ=F((KZ)=>{Object.defineProperty(KZ,"__esModule",{value:!0});KZ.default=lH;var B0=tq(require("react")),QZ=U9(L4()),rq=U9(R4()),oq=U9(YZ()),sq=U9(i4()),K9=y6();function U9($){return $&&$.__esModule?$:{default:$}}function tq($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var J in $)if(Object.prototype.hasOwnProperty.call($,J)){var G=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,J):{};if(G.get||G.set)Object.defineProperty(Z,J,G);else Z[J]=$[J]}}return Z.default=$,Z}}function H5($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")H5=function(J){return typeof J};else H5=function(J){return J&&typeof Symbol==="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J};return H5($)}function xH($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function jH($,Z){for(var J=0;J<Z.length;J++){var G=Z[J];if(G.enumerable=G.enumerable||!1,G.configurable=!0,"value"in G)G.writable=!0;Object.defineProperty($,G.key,G)}}function eq($,Z,J){if(Z)jH($.prototype,Z);if(J)jH($,J);return $}function CH($,Z){if(Z&&(H5(Z)==="object"||typeof Z==="function"))return Z;return _H($)}function _H($){if($===void 0)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return $}function b0($,Z,J){if(typeof Reflect<"u"&&Reflect.get)b0=Reflect.get;else b0=function(Y,X,Q){var z=$N(Y,X);if(!z)return;var H=Object.getOwnPropertyDescriptor(z,X);if(H.get)return H.get.call(Q);return H.value};return b0($,Z,J||$)}function $N($,Z){while(!Object.prototype.hasOwnProperty.call($,Z))if($=J0($),$===null)break;return $}function J0($){return J0=Object.setPrototypeOf?Object.getPrototypeOf:function(J){return J.__proto__||Object.getPrototypeOf(J)},J0($)}function yH($,Z){if(typeof Z!=="function"&&Z!==null)throw TypeError("Super expression must either be null or a function");if($.prototype=Object.create(Z&&Z.prototype,{constructor:{value:$,writable:!0,configurable:!0}}),Z)HZ($,Z)}function HZ($,Z){return HZ=Object.setPrototypeOf||function(G,Y){return G.__proto__=Y,G},HZ($,Z)}function ZN($,Z){return YN($)||GN($,Z)||JN()}function JN(){throw TypeError("Invalid attempt to destructure non-iterable instance")}function GN($,Z){var J=[],G=!0,Y=!1,X=void 0;try{for(var Q=$[Symbol.iterator](),z;!(G=(z=Q.next()).done);G=!0)if(J.push(z.value),Z&&J.length===Z)break}catch(H){Y=!0,X=H}finally{try{if(!G&&Q.return!=null)Q.return()}finally{if(Y)throw X}}return J}function YN($){if(Array.isArray($))return $}function zZ($){for(var Z=1;Z<arguments.length;Z++){var J=arguments[Z]!=null?arguments[Z]:{},G=Object.keys(J);if(typeof Object.getOwnPropertySymbols==="function")G=G.concat(Object.getOwnPropertySymbols(J).filter(function(Y){return Object.getOwnPropertyDescriptor(J,Y).enumerable}));G.forEach(function(Y){XN($,Y,J[Y])})}return $}function XN($,Z,J){if(Z in $)Object.defineProperty($,Z,{value:J,enumerable:!0,configurable:!0,writable:!0});else $[Z]=J;return $}function gH($,Z){if($==null)return{};var J=QN($,Z),G,Y;if(Object.getOwnPropertySymbols){var X=Object.getOwnPropertySymbols($);for(Y=0;Y<X.length;Y++){if(G=X[Y],Z.indexOf(G)>=0)continue;if(!Object.prototype.propertyIsEnumerable.call($,G))continue;J[G]=$[G]}}return J}function QN($,Z){if($==null)return{};var J={},G=Object.keys($),Y,X;for(X=0;X<G.length;X++){if(Y=G[X],Z.indexOf(Y)>=0)continue;J[Y]=$[Y]}return J}function HN($){var Z=zN($,"string");return H5(Z)==="symbol"?Z:String(Z)}function zN($,Z){if(H5($)!=="object"||$===null)return $;var J=$[Symbol.toPrimitive];if(J!==void 0){var G=J.call($,Z||"default");if(H5(G)!=="object")return G;throw TypeError("@@toPrimitive must return a primitive value.")}return(Z==="string"?String:Number)($)}var KN=["arguments","callee","caller","length","name","prototype","type"],z9,hH;function UN($,Z){Object.getOwnPropertyNames($).forEach(function(J){if(KN.indexOf(J)<0&&!Z.hasOwnProperty(J)){var G=Object.getOwnPropertyDescriptor($,J);G&&Object.defineProperty(Z,J,G)}})}function ON($){var Z=$.prototype||{};return!$.isReactComponent&&!Z.isReactComponent&&!$.render&&!Z.render}function VN($){return typeof $==="function"&&/^\s*class\s+/.test($.toString())}function WN($,Z){hH.forEach(function(J){var G=Object.getOwnPropertyDescriptor($,J),Y=(G||{}).value;if(!Y)return;var X=Object.getOwnPropertyDescriptor(z9,J),Q=(X||{}).value,z=Z.prototype[J];if(!z&&Y!==Q)G&&Object.defineProperty(Z.prototype,J,G),delete $[J]})}function kH($){if($._extraRadiumStateKeys&&$._extraRadiumStateKeys.length>0){var Z=$._extraRadiumStateKeys.reduce(function(J,G){var Y=J[G],X=gH(J,[G].map(HN));return X},(0,sq.default)($));$._lastRadiumState=Z,$.setState({_radiumStyleState:Z})}}function bH($){var{_radiumMouseUpListener:Z,_radiumMediaQueryListenersByQuery:J}=$;if($._radiumIsMounted=!1,Z)Z.remove();if(J)Object.keys(J).forEach(function(G){J[G].remove()},$)}function mH($,Z,J){var G=$||Z||J;if(J&&G!==J)G=zZ({},J,G);return G}function uH($,Z,J,G){var Y=(0,oq.default)($,Z,J),X=Y.extraStateKeyMap,Q=Y.element;if($._extraRadiumStateKeys=Object.keys(X),G)return B0.default.createElement(K9.RadiumConfigContext.Provider,{value:G},Q);return Q}function fH($,Z){var J=B0.default.forwardRef(function(G,Y){var X=G.radiumConfig,Q=gH(G,["radiumConfig"]),z=(0,B0.useContext)(K9.RadiumConfigContext),H=(0,B0.useContext)(K9.StyleKeeperContext),K=(0,B0.useState)({_radiumStyleState:{}}),U=ZN(K,2),O=U[0],W=U[1],L=(0,B0.useRef)({state:O,setState:W,_radiumMediaQueryListenersByQuery:void 0,_radiumMouseUpListener:void 0,_radiumIsMounted:!0,_lastRadiumState:void 0,_extraRadiumStateKeys:void 0,_radiumStyleKeeper:H}).current;L.state=O,(0,B0.useEffect)(function(){return function(){bH(L)}},[L]);var B=L._extraRadiumStateKeys&&L._extraRadiumStateKeys.length>0;(0,B0.useEffect)(function(){kH(L)},[B,L]);var V=$(Q,Y),R=mH(X,z,Z);return uH(L,V,R,X)});return J._isRadiumEnhanced=!0,J.defaultProps=$.defaultProps,(0,rq.default)(J,$)}function AN($,Z,J){var G=function(Y){yH(X,Y);function X(){var Q;xH(this,X),Q=CH(this,J0(X).apply(this,arguments)),Q.state=Q.state||{},Q._radiumStyleKeeper=Q.props.styleKeeperContext,Q._radiumMediaQueryListenersByQuery=Q._radiumMediaQueryListenersByQuery,Q._radiumMouseUpListener=Q._radiumMouseUpListener,Q._radiumIsMounted=!0,Q._lastRadiumState=void 0,Q._extraRadiumStateKeys=void 0,Q.state._radiumStyleState={};var z=_H(Q);return WN(z,Z),Q}return eq(X,[{key:"componentDidUpdate",value:function(z,H,K){if(b0(J0(X.prototype),"componentDidUpdate",this))b0(J0(X.prototype),"componentDidUpdate",this).call(this,z,H,K);kH(this)}},{key:"componentWillUnmount",value:function(){if(b0(J0(X.prototype),"componentWillUnmount",this))b0(J0(X.prototype),"componentWillUnmount",this).call(this);bH(this)}},{key:"render",value:function(){var z=b0(J0(X.prototype),"render",this).call(this),H=mH(this.props.radiumConfig,this.props.radiumConfigContext,J);return uH(this,z,H,this.props.radiumConfig)}}]),X}(Z);if(G._isRadiumEnhanced=!0,z9=G.prototype,hH=Object.getOwnPropertyNames(z9).filter(function(Y){return Y!=="constructor"&&typeof z9[Y]==="function"}),UN($,G),G.propTypes&&G.propTypes.style)G.propTypes=zZ({},G.propTypes,{style:QZ.default.oneOfType([QZ.default.array,QZ.default.object])});return G.displayName=$.displayName||$.name||"Component",(0,K9.withRadiumContexts)(G)}function FN($){return $=function(Z){function J(){var G=Reflect.construct(Z,arguments,this.constructor);return G}return Reflect.setPrototypeOf(J.prototype,Z.prototype),Reflect.setPrototypeOf(J,Z),J}($),$}var SH=(0,B0.forwardRef)(function(){return null}).$$typeof;function lH($){var Z=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(SH&&$.$$typeof===SH)return fH($.render,Z);if(typeof $!=="function")return BN(Z,$);var J=$;if(ON(J))return fH(J,Z);var G=J;if(VN(G))G=FN(G);if(G===J)G=function(Y){yH(X,Y);function X(){return xH(this,X),CH(this,J0(X).apply(this,arguments))}return X}(G);return AN(J,G,Z)}function BN($,Z){var J=zZ({},$,Z);return function(G){return lH(G,J)}}});var nH=F((O9)=>{Object.defineProperty(O9,"__esModule",{value:!0});O9.default=void 0;var cH=dH(d8()),pH=qN(require("react")),OZ=dH(L4()),LN=y6();function qN($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var J in $)if(Object.prototype.hasOwnProperty.call($,J)){var G=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,J):{};if(G.get||G.set)Object.defineProperty(Z,J,G);else Z[J]=$[J]}}return Z.default=$,Z}}function dH($){return $&&$.__esModule?$:{default:$}}function m5($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")m5=function(J){return typeof J};else m5=function(J){return J&&typeof Symbol==="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J};return m5($)}function NN($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function iH($,Z){for(var J=0;J<Z.length;J++){var G=Z[J];if(G.enumerable=G.enumerable||!1,G.configurable=!0,"value"in G)G.writable=!0;Object.defineProperty($,G.key,G)}}function MN($,Z,J){if(Z)iH($.prototype,Z);if(J)iH($,J);return $}function RN($,Z){if(Z&&(m5(Z)==="object"||typeof Z==="function"))return Z;return IN($)}function IN($){if($===void 0)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return $}function VZ($){return VZ=Object.setPrototypeOf?Object.getPrototypeOf:function(J){return J.__proto__||Object.getPrototypeOf(J)},VZ($)}function PN($,Z){if(typeof Z!=="function"&&Z!==null)throw TypeError("Super expression must either be null or a function");if($.prototype=Object.create(Z&&Z.prototype,{constructor:{value:$,writable:!0,configurable:!0}}),Z)WZ($,Z)}function WZ($,Z){return WZ=Object.setPrototypeOf||function(G,Y){return G.__proto__=Y,G},WZ($,Z)}var AZ=function($){PN(Z,$);function Z(){return NN(this,Z),RN(this,VZ(Z).apply(this,arguments))}return MN(Z,[{key:"_buildStyles",value:function(G){var Y=this,X=this.props.radiumConfig&&this.props.radiumConfig.userAgent||this.props.radiumConfigContext&&this.props.radiumConfigContext.userAgent,Q=this.props.scopeSelector,z=Object.keys(G).reduce(function(K,U){if(m5(G[U])!=="object")K[U]=G[U];return K},{}),H=Object.keys(z).length?(0,cH.default)(Q||"",z,X):"";return H+Object.keys(G).reduce(function(K,U){var O=G[U];if(U==="mediaQueries")K+=Y._buildMediaQueryString(O);else if(m5(G[U])==="object"){var W=Q?U.split(",").map(function(L){return Q+" "+L.trim()}).join(","):U;K+=(0,cH.default)(W,O,X)}return K},"")}},{key:"_buildMediaQueryString",value:function(G){var Y=this,X="";return Object.keys(G).forEach(function(Q){X+="@media "+Q+"{"+Y._buildStyles(G[Q])+"}"}),X}},{key:"render",value:function(){if(!this.props.rules)return null;var G=this._buildStyles(this.props.rules);return pH.default.createElement("style",{dangerouslySetInnerHTML:{__html:G}})}}]),Z}(pH.PureComponent);AZ.propTypes={radiumConfig:OZ.default.object,rules:OZ.default.object,scopeSelector:OZ.default.string};AZ.defaultProps={scopeSelector:""};var DN=(0,LN.withRadiumContexts)(AZ);O9.default=DN});var oH=F((W9)=>{Object.defineProperty(W9,"__esModule",{value:!0});W9.default=void 0;var aH=EN(require("react")),AT=wN(_6()),TN=y6();function wN($){return $&&$.__esModule?$:{default:$}}function EN($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var J in $)if(Object.prototype.hasOwnProperty.call($,J)){var G=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,J):{};if(G.get||G.set)Object.defineProperty(Z,J,G);else Z[J]=$[J]}}return Z.default=$,Z}}function V9($){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol")V9=function(J){return typeof J};else V9=function(J){return J&&typeof Symbol==="function"&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J};return V9($)}function vN($,Z){if(!($ instanceof Z))throw TypeError("Cannot call a class as a function")}function rH($,Z){for(var J=0;J<Z.length;J++){var G=Z[J];if(G.enumerable=G.enumerable||!1,G.configurable=!0,"value"in G)G.writable=!0;Object.defineProperty($,G.key,G)}}function jN($,Z,J){if(Z)rH($.prototype,Z);if(J)rH($,J);return $}function fN($,Z){if(Z&&(V9(Z)==="object"||typeof Z==="function"))return Z;return SN($)}function SN($){if($===void 0)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return $}function FZ($){return FZ=Object.setPrototypeOf?Object.getPrototypeOf:function(J){return J.__proto__||Object.getPrototypeOf(J)},FZ($)}function xN($,Z){if(typeof Z!=="function"&&Z!==null)throw TypeError("Super expression must either be null or a function");if($.prototype=Object.create(Z&&Z.prototype,{constructor:{value:$,writable:!0,configurable:!0}}),Z)BZ($,Z)}function BZ($,Z){return BZ=Object.setPrototypeOf||function(G,Y){return G.__proto__=Y,G},BZ($,Z)}var CN=function($){xN(Z,$);function Z(){var J;if(vN(this,Z),J=fN(this,FZ(Z).apply(this,arguments)),J.styleKeeper=void 0,J._subscription=void 0,J._root=void 0,J._css=void 0,J._onChange=function(){var G=J.styleKeeper.getCSS();if(G!==J._css){if(J._root)J._root.innerHTML=G;else throw Error("No root style object found, even after StyleSheet mount.");J._css=G}},!J.props.styleKeeperContext)throw Error("StyleRoot is required to use StyleSheet");return J.styleKeeper=J.props.styleKeeperContext,J._css=J.styleKeeper.getCSS(),J}return jN(Z,[{key:"componentDidMount",value:function(){this._subscription=this.styleKeeper.subscribe(this._onChange),this._onChange()}},{key:"shouldComponentUpdate",value:function(){return!1}},{key:"componentWillUnmount",value:function(){if(this._subscription)this._subscription.remove()}},{key:"render",value:function(){var G=this;return aH.default.createElement("style",{dangerouslySetInnerHTML:{__html:this._css},ref:function(X){G._root=X}})}}]),Z}(aH.Component),_N=(0,TN.withRadiumContexts)(CN);W9.default=_N});var tH=F((A9)=>{Object.defineProperty(A9,"__esModule",{value:!0});A9.default=void 0;var u5=kN(require("react")),yN=LZ(UZ()),gN=LZ(_6()),hN=LZ(oH()),sH=y6();function LZ($){return $&&$.__esModule?$:{default:$}}function kN($){if($&&$.__esModule)return $;else{var Z={};if($!=null){for(var J in $)if(Object.prototype.hasOwnProperty.call($,J)){var G=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor($,J):{};if(G.get||G.set)Object.defineProperty(Z,J,G);else Z[J]=$[J]}}return Z.default=$,Z}}function bN($,Z){if($==null)return{};var J=mN($,Z),G,Y;if(Object.getOwnPropertySymbols){var X=Object.getOwnPropertySymbols($);for(Y=0;Y<X.length;Y++){if(G=X[Y],Z.indexOf(G)>=0)continue;if(!Object.prototype.propertyIsEnumerable.call($,G))continue;J[G]=$[G]}}return J}function mN($,Z){if($==null)return{};var J={},G=Object.keys($),Y,X;for(X=0;X<G.length;X++){if(Y=G[X],Z.indexOf(Y)>=0)continue;J[Y]=$[Y]}return J}function uN($,Z){var J=$&&$.userAgent||Z&&Z.userAgent;return new gN.default(J)}var lN=(0,yN.default)(function($){var Z=$.children,J=bN($,["children"]);return u5.default.createElement("div",J,Z,u5.default.createElement(hN.default,null))}),cN=function(Z){var J=Z.radiumConfig,G=(0,u5.useContext)(sH.RadiumConfigContext),Y=(0,u5.useRef)(uN(J,G));return u5.default.createElement(sH.StyleKeeperContext.Provider,{value:Y.current},u5.default.createElement(lN,Z))},pN=cN;A9.default=pN});var $z=F((qZ)=>{Object.defineProperty(qZ,"__esModule",{value:!0});qZ.default=aN;var iN=eH(d8()),dN=eH(n4()),nN=i8();function eH($){return $&&$.__esModule?$:{default:$}}function aN($,Z){return{__radiumKeyframes:!0,__process:function(G){var Y=(0,nN.getPrefixedKeyframes)(G),X=Object.keys($).map(function(H){return(0,iN.default)(H,$[H],G)}).join(`
|
|
25
|
+
`),Q=(Z?Z+"-":"")+"radium-animation-"+(0,dN.default)(X),z="@"+Y+" "+Q+` {
|
|
26
|
+
`+X+`
|
|
27
27
|
}
|
|
28
|
-
`;return{css:Q,animationName:H}}}}});var YL=O((Q5)=>{Object.defineProperty(Q5,"__esModule",{value:!0});Object.defineProperty(Q5,"Plugins",{enumerable:!0,get:function(){return $L.default}});Object.defineProperty(Q5,"Style",{enumerable:!0,get:function(){return ZL.default}});Object.defineProperty(Q5,"StyleRoot",{enumerable:!0,get:function(){return GL.default}});Object.defineProperty(Q5,"getState",{enumerable:!0,get:function(){return JL.default}});Object.defineProperty(Q5,"keyframes",{enumerable:!0,get:function(){return XL.default}});Q5.default=void 0;var SE=Q6(V2()),$L=Q6(U2()),ZL=Q6(dW()),GL=Q6(oW()),JL=Q6(oJ()),XL=Q6(eW()),Tf=Q6(W2());function Q6($){return $&&$.__esModule?$:{default:$}}function n6($){return(0,SE.default)($)}n6.Plugins=$L.default;n6.Style=ZL.default;n6.StyleRoot=GL.default;n6.getState=JL.default;n6.keyframes=XL.default;var _E=n6;Q5.default=_E});var w2=O((Ef,M$)=>{M$.exports=YL().default;M$.exports.default=M$.exports});var vE={};Q8(vE,{UnionCard:()=>_2,UI:()=>N5,SequenceCard:()=>j2,PieCard:()=>h0,ChatCard:()=>IJ,AjaxButtonCard:()=>E2});module.exports=RL(vE);var A5=require("react");var OL=()=>typeof window<"u",m2=()=>typeof process<"u"&&!!process.versions?.node,ML=()=>{try{return typeof Function("return import.meta")()<"u"}catch{return!1}},f2="__piedemo__",DL={PIE_API_SERVER:typeof process<"u"?process.env.NEXT_PUBLIC_PIE_API_SERVER:void 0,PIE_CENTRIFUGE_SERVER:typeof process<"u"?process.env.NEXT_PUBLIC_PIE_CENTRIFUGE_SERVER:void 0,PIE_ENABLE_RENDERING_LOG:typeof process<"u"?process.env.NEXT_PUBLIC_PIE_ENABLE_RENDERING_LOG:void 0,PIE_PAGE_PROCESSOR:typeof process<"u"?process.env.NEXT_PUBLIC_PIE_PAGE_PROCESSOR:void 0},q8=($,Z="")=>{if(ML())return import.meta.env[$]??Z;if(m2()&&process.env)return process.env[$]??Z;return Z},IL=()=>{if(OL())return window.location.hostname;if(m2())return process.env.HOSTNAME??"localhost";return"localhost"},u2=()=>{let $=q8("NEXT_PUBLIC_PIE_API_SERVER")||q8("PIE_API_SERVER");return $==="auto-api"?`https://api.${IL()}/`:$};var X1=()=>q8("VITE_PIE_ENABLE_RENDERING_LOG","false")==="true"||q8("PIE_ENABLE_RENDERING_LOG","false")==="true"||(DL.PIE_ENABLE_RENDERING_LOG??"false")==="true";var QX=require("react");function m1($,Z,G,J){function X(Y){return Y instanceof G?Y:new G(function(H){H(Y)})}return new(G||(G=Promise))(function(Y,H){function Q(K){try{U(J.next(K))}catch(W){H(W)}}function q(K){try{U(J.throw(K))}catch(W){H(W)}}function U(K){K.done?Y(K.value):X(K.value).then(Q,q)}U((J=J.apply($,Z||[])).next())})}function PL($){return $&&$.__esModule&&Object.prototype.hasOwnProperty.call($,"default")?$.default:$}var j$={exports:{}},U6=typeof Reflect==="object"?Reflect:null,p2=U6&&typeof U6.apply==="function"?U6.apply:function(Z,G,J){return Function.prototype.apply.call(Z,G,J)},K8;if(U6&&typeof U6.ownKeys==="function")K8=U6.ownKeys;else if(Object.getOwnPropertySymbols)K8=function(Z){return Object.getOwnPropertyNames(Z).concat(Object.getOwnPropertySymbols(Z))};else K8=function(Z){return Object.getOwnPropertyNames(Z)};function TL($){if(console&&console.warn)console.warn($)}var i2=Number.isNaN||function(Z){return Z!==Z};function Y1(){Y1.init.call(this)}j$.exports=Y1;j$.exports.once=SL;Y1.EventEmitter=Y1;Y1.prototype._events=void 0;Y1.prototype._eventsCount=0;Y1.prototype._maxListeners=void 0;var l2=10;function A8($){if(typeof $!=="function")throw TypeError('The "listener" argument must be of type Function. Received type '+typeof $)}Object.defineProperty(Y1,"defaultMaxListeners",{enumerable:!0,get:function(){return l2},set:function($){if(typeof $!=="number"||$<0||i2($))throw RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+$+".");l2=$}});Y1.init=function(){if(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)this._events=Object.create(null),this._eventsCount=0;this._maxListeners=this._maxListeners||void 0};Y1.prototype.setMaxListeners=function(Z){if(typeof Z!=="number"||Z<0||i2(Z))throw RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+Z+".");return this._maxListeners=Z,this};function c2($){if($._maxListeners===void 0)return Y1.defaultMaxListeners;return $._maxListeners}Y1.prototype.getMaxListeners=function(){return c2(this)};Y1.prototype.emit=function(Z){var G=[];for(var J=1;J<arguments.length;J++)G.push(arguments[J]);var X=Z==="error",Y=this._events;if(Y!==void 0)X=X&&Y.error===void 0;else if(!X)return!1;if(X){var H;if(G.length>0)H=G[0];if(H instanceof Error)throw H;var Q=Error("Unhandled error."+(H?" ("+H.message+")":""));throw Q.context=H,Q}var q=Y[Z];if(q===void 0)return!1;if(typeof q==="function")p2(q,this,G);else{var U=q.length,K=s2(q,U);for(var J=0;J<U;++J)p2(K[J],this,G)}return!0};function d2($,Z,G,J){var X,Y,H;if(A8(G),Y=$._events,Y===void 0)Y=$._events=Object.create(null),$._eventsCount=0;else{if(Y.newListener!==void 0)$.emit("newListener",Z,G.listener?G.listener:G),Y=$._events;H=Y[Z]}if(H===void 0)H=Y[Z]=G,++$._eventsCount;else{if(typeof H==="function")H=Y[Z]=J?[G,H]:[H,G];else if(J)H.unshift(G);else H.push(G);if(X=c2($),X>0&&H.length>X&&!H.warned){H.warned=!0;var Q=Error("Possible EventEmitter memory leak detected. "+H.length+" "+String(Z)+" listeners added. Use emitter.setMaxListeners() to increase limit");Q.name="MaxListenersExceededWarning",Q.emitter=$,Q.type=Z,Q.count=H.length,TL(Q)}}return $}Y1.prototype.addListener=function(Z,G){return d2(this,Z,G,!1)};Y1.prototype.on=Y1.prototype.addListener;Y1.prototype.prependListener=function(Z,G){return d2(this,Z,G,!0)};function wL(){if(!this.fired){if(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0)return this.listener.call(this.target);return this.listener.apply(this.target,arguments)}}function r2($,Z,G){var J={fired:!1,wrapFn:void 0,target:$,type:Z,listener:G},X=wL.bind(J);return X.listener=G,J.wrapFn=X,X}Y1.prototype.once=function(Z,G){return A8(G),this.on(Z,r2(this,Z,G)),this};Y1.prototype.prependOnceListener=function(Z,G){return A8(G),this.prependListener(Z,r2(this,Z,G)),this};Y1.prototype.removeListener=function(Z,G){var J,X,Y,H,Q;if(A8(G),X=this._events,X===void 0)return this;if(J=X[Z],J===void 0)return this;if(J===G||J.listener===G){if(--this._eventsCount===0)this._events=Object.create(null);else if(delete X[Z],X.removeListener)this.emit("removeListener",Z,J.listener||G)}else if(typeof J!=="function"){Y=-1;for(H=J.length-1;H>=0;H--)if(J[H]===G||J[H].listener===G){Q=J[H].listener,Y=H;break}if(Y<0)return this;if(Y===0)J.shift();else EL(J,Y);if(J.length===1)X[Z]=J[0];if(X.removeListener!==void 0)this.emit("removeListener",Z,Q||G)}return this};Y1.prototype.off=Y1.prototype.removeListener;Y1.prototype.removeAllListeners=function(Z){var G,J,X;if(J=this._events,J===void 0)return this;if(J.removeListener===void 0){if(arguments.length===0)this._events=Object.create(null),this._eventsCount=0;else if(J[Z]!==void 0)if(--this._eventsCount===0)this._events=Object.create(null);else delete J[Z];return this}if(arguments.length===0){var Y=Object.keys(J),H;for(X=0;X<Y.length;++X){if(H=Y[X],H==="removeListener")continue;this.removeAllListeners(H)}return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(G=J[Z],typeof G==="function")this.removeListener(Z,G);else if(G!==void 0)for(X=G.length-1;X>=0;X--)this.removeListener(Z,G[X]);return this};function a2($,Z,G){var J=$._events;if(J===void 0)return[];var X=J[Z];if(X===void 0)return[];if(typeof X==="function")return G?[X.listener||X]:[X];return G?jL(X):s2(X,X.length)}Y1.prototype.listeners=function(Z){return a2(this,Z,!0)};Y1.prototype.rawListeners=function(Z){return a2(this,Z,!1)};Y1.listenerCount=function($,Z){if(typeof $.listenerCount==="function")return $.listenerCount(Z);else return n2.call($,Z)};Y1.prototype.listenerCount=n2;function n2($){var Z=this._events;if(Z!==void 0){var G=Z[$];if(typeof G==="function")return 1;else if(G!==void 0)return G.length}return 0}Y1.prototype.eventNames=function(){return this._eventsCount>0?K8(this._events):[]};function s2($,Z){var G=Array(Z);for(var J=0;J<Z;++J)G[J]=$[J];return G}function EL($,Z){for(;Z+1<$.length;Z++)$[Z]=$[Z+1];$.pop()}function jL($){var Z=Array($.length);for(var G=0;G<Z.length;++G)Z[G]=$[G].listener||$[G];return Z}function SL($,Z){return new Promise(function(G,J){function X(H){$.removeListener(Z,Y),J(H)}function Y(){if(typeof $.removeListener==="function")$.removeListener("error",X);G([].slice.call(arguments))}if(o2($,Z,Y,{once:!0}),Z!=="error")_L($,X,{once:!0})})}function _L($,Z,G){if(typeof $.on==="function")o2($,"error",Z,G)}function o2($,Z,G,J){if(typeof $.on==="function")if(J.once)$.once(Z,G);else $.on(Z,G);else if(typeof $.addEventListener==="function")$.addEventListener(Z,function X(Y){if(J.once)$.removeEventListener(Z,X);G(Y)});else throw TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof $)}var CL=j$.exports,t2=PL(CL),U1;(function($){$[$.timeout=1]="timeout",$[$.transportClosed=2]="transportClosed",$[$.clientDisconnected=3]="clientDisconnected",$[$.clientClosed=4]="clientClosed",$[$.clientConnectToken=5]="clientConnectToken",$[$.clientRefreshToken=6]="clientRefreshToken",$[$.subscriptionUnsubscribed=7]="subscriptionUnsubscribed",$[$.subscriptionSubscribeToken=8]="subscriptionSubscribeToken",$[$.subscriptionRefreshToken=9]="subscriptionRefreshToken",$[$.transportWriteError=10]="transportWriteError",$[$.connectionClosed=11]="connectionClosed",$[$.badConfiguration=12]="badConfiguration"})(U1||(U1={}));var q5;(function($){$[$.connectCalled=0]="connectCalled",$[$.transportClosed=1]="transportClosed",$[$.noPing=2]="noPing",$[$.subscribeTimeout=3]="subscribeTimeout",$[$.unsubscribeError=4]="unsubscribeError"})(q5||(q5={}));var $7;(function($){$[$.disconnectCalled=0]="disconnectCalled",$[$.unauthorized=1]="unauthorized",$[$.badProtocol=2]="badProtocol",$[$.messageSizeLimit=3]="messageSizeLimit"})($7||($7={}));var U8;(function($){$[$.subscribeCalled=0]="subscribeCalled",$[$.transportClosed=1]="transportClosed"})(U8||(U8={}));var W8;(function($){$[$.unsubscribeCalled=0]="unsubscribeCalled",$[$.unauthorized=1]="unauthorized",$[$.clientClosed=2]="clientClosed"})(W8||(W8={}));var T$;(function($){$[$.channelCompaction=1]="channelCompaction"})(T$||(T$={}));var R1;(function($){$.Disconnected="disconnected",$.Connecting="connecting",$.Connected="connected"})(R1||(R1={}));var l1;(function($){$.Unsubscribed="unsubscribed",$.Subscribing="subscribing",$.Subscribed="subscribed"})(l1||(l1={}));function gL($,Z){return $.lastIndexOf(Z,0)===0}function e2($){if($===void 0||$===null)return!1;return typeof $==="function"}function yL($,Z){if(globalThis.console){let G=globalThis.console[$];if(e2(G))G.apply(globalThis.console,Z)}}function vL($,Z){return Math.floor(Math.random()*(Z-$+1)+$)}function L8($,Z,G){if($>31)$=31;let J=vL(0,Math.min(G,Z*Math.pow(2,$)));return Math.min(G,Z+J)}function xL($){return"error"in $&&$.error!==null}function z8($){return Math.min($*1000,2147483647)}class $X extends t2{constructor($,Z,G){super();if(this._resubscribeTimeout=null,this._refreshTimeout=null,this.channel=Z,this.state=l1.Unsubscribed,this._centrifuge=$,this._token="",this._getToken=null,this._data=null,this._getData=null,this._recover=!1,this._offset=null,this._epoch=null,this._id=0,this._recoverable=!1,this._positioned=!1,this._joinLeave=!1,this._minResubscribeDelay=500,this._maxResubscribeDelay=20000,this._resubscribeTimeout=null,this._resubscribeAttempts=0,this._promises={},this._promiseId=0,this._inflight=!1,this._refreshTimeout=null,this._delta="",this._delta_negotiated=!1,this._tagsFilter=null,this._prevValue=null,this._unsubPromise=Promise.resolve(),this._setOptions(G),this._centrifuge._debugEnabled)this.on("state",(J)=>{this._debug("subscription state",Z,J.oldState,"->",J.newState)}),this.on("error",(J)=>{this._debug("subscription error",Z,J)});else this.on("error",function(){Function.prototype()})}ready($){if(this.state===l1.Unsubscribed)return Promise.reject({code:U1.subscriptionUnsubscribed,message:this.state});if(this.state===l1.Subscribed)return Promise.resolve();return new Promise((Z,G)=>{let J={resolve:Z,reject:G};if($)J.timeout=setTimeout(function(){G({code:U1.timeout,message:"timeout"})},$);this._promises[this._nextPromiseId()]=J})}subscribe(){if(this._isSubscribed())return;this._resubscribeAttempts=0,this._setSubscribing(U8.subscribeCalled,"subscribe called")}unsubscribe(){this._unsubPromise=this._setUnsubscribed(W8.unsubscribeCalled,"unsubscribe called",!0)}publish($){return m1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.publish(this.channel,$)})}presence(){return m1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.presence(this.channel)})}presenceStats(){return m1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.presenceStats(this.channel)})}history($){return m1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.history(this.channel,$)})}setTagsFilter($){if($&&this._delta)throw Error("cannot use delta and tagsFilter together");this._tagsFilter=$}setData($){this._data=$}_methodCall(){if(this._isSubscribed())return Promise.resolve();if(this._isUnsubscribed())return Promise.reject({code:U1.subscriptionUnsubscribed,message:this.state});return new Promise(($,Z)=>{let G=this._centrifuge._config.timeout,J=setTimeout(()=>{Z({code:U1.timeout,message:"timeout"})},G);this._promises[this._nextPromiseId()]={timeout:J,resolve:$,reject:Z}})}_nextPromiseId(){return++this._promiseId}_needRecover(){return this._recover===!0}_isUnsubscribed(){return this.state===l1.Unsubscribed}_isSubscribing(){return this.state===l1.Subscribing}_isSubscribed(){return this.state===l1.Subscribed}_setState($){if(this.state!==$){let Z=this.state;return this.state=$,this.emit("state",{newState:$,oldState:Z,channel:this.channel}),!0}return!1}_usesToken(){return this._token!==""||this._getToken!==null}_clearSubscribingState(){this._resubscribeAttempts=0,this._clearResubscribeTimeout()}_clearSubscribedState(){this._clearRefreshTimeout()}_setSubscribed($){if(!this._isSubscribing())return;if(this._clearSubscribingState(),$.id)this._id=$.id;if($.recoverable)this._recover=!0,this._offset=$.offset||0,this._epoch=$.epoch||"";if($.delta)this._delta_negotiated=!0;else this._delta_negotiated=!1;this._setState(l1.Subscribed);let Z=this._centrifuge._getSubscribeContext(this.channel,$);this.emit("subscribed",Z),this._resolvePromises();let G=$.publications;if(G&&G.length>0)for(let J in G){if(!G.hasOwnProperty(J))continue;this._handlePublication(G[J])}if($.expires===!0)this._refreshTimeout=setTimeout(()=>this._refresh(),z8($.ttl))}_setSubscribing($,Z){return m1(this,void 0,void 0,function*(){if(this._isSubscribing())return;if(this._isSubscribed())this._clearSubscribedState();if(this._setState(l1.Subscribing))this.emit("subscribing",{channel:this.channel,code:$,reason:Z});if(this._centrifuge._transport&&this._centrifuge._transport.emulation())yield this._unsubPromise;if(!this._isSubscribing())return;this._subscribe()})}_subscribe(){if(this._debug("subscribing on",this.channel),!this._isTransportOpen())return this._debug("delay subscribe on",this.channel,"till connected"),null;if(this._inflight)return null;if(this._inflight=!0,this._canSubscribeWithoutGettingToken())return this._subscribeWithoutToken();return this._getSubscriptionToken().then(($)=>this._handleTokenResponse($)).catch(($)=>this._handleTokenError($)),null}_isTransportOpen(){return this._centrifuge._transportIsOpen}_canSubscribeWithoutGettingToken(){return!this._usesToken()||!!this._token}_subscribeWithoutToken(){if(this._getData)return this._getDataAndSubscribe(this._token),null;else return this._sendSubscribe(this._token)}_getDataAndSubscribe($){if(!this._getData){this._inflight=!1;return}this._getData({channel:this.channel}).then((Z)=>{if(!this._isSubscribing()){this._inflight=!1;return}this._data=Z,this._sendSubscribe($)}).catch((Z)=>this._handleGetDataError(Z))}_handleGetDataError($){if(!this._isSubscribing()){this._inflight=!1;return}if($ instanceof v0){this._inflight=!1,this._failUnauthorized();return}this.emit("error",{type:"subscribeData",channel:this.channel,error:{code:U1.badConfiguration,message:($===null||$===void 0?void 0:$.toString())||""}}),this._inflight=!1,this._scheduleResubscribe()}_handleTokenResponse($){if(!this._isSubscribing()){this._inflight=!1;return}if(!$){this._inflight=!1,this._failUnauthorized();return}if(this._token=$,this._getData)this._getDataAndSubscribe($);else this._sendSubscribe($)}_handleTokenError($){if(!this._isSubscribing()){this._inflight=!1;return}if($ instanceof v0){this._inflight=!1,this._failUnauthorized();return}this.emit("error",{type:"subscribeToken",channel:this.channel,error:{code:U1.subscriptionSubscribeToken,message:($===null||$===void 0?void 0:$.toString())||""}}),this._inflight=!1,this._scheduleResubscribe()}_sendSubscribe($){if(!this._isTransportOpen())return this._inflight=!1,null;let Z=this._buildSubscribeCommand($);return this._centrifuge._call(Z).then((G)=>{this._inflight=!1;let J=G.reply.subscribe;if(this._handleSubscribeResponse(J),G.next)G.next()},(G)=>{if(this._inflight=!1,this._handleSubscribeError(G.error),G.next)G.next()}),Z}_buildSubscribeCommand($){let Z={channel:this.channel};if($)Z.token=$;if(this._data)Z.data=this._data;if(this._positioned)Z.positioned=!0;if(this._recoverable)Z.recoverable=!0;if(this._joinLeave)Z.join_leave=!0;if(Z.flag=T$.channelCompaction,this._needRecover()){Z.recover=!0;let G=this._getOffset();if(G)Z.offset=G;let J=this._getEpoch();if(J)Z.epoch=J}if(this._delta)Z.delta=this._delta;if(this._tagsFilter)Z.tf=this._tagsFilter;return{subscribe:Z}}_debug(...$){this._centrifuge._debug(...$)}_handleSubscribeError($){if(!this._isSubscribing())return;if($.code===U1.timeout){this._centrifuge._disconnect(q5.subscribeTimeout,"subscribe timeout",!0);return}this._subscribeError($)}_handleSubscribeResponse($){if(!this._isSubscribing())return;this._setSubscribed($)}_setUnsubscribed($,Z,G){if(this._isUnsubscribed())return Promise.resolve();let J=Promise.resolve();if(this._isSubscribed()){if(G)J=this._centrifuge._unsubscribe(this);this._clearSubscribedState()}else if(this._isSubscribing()){if(this._inflight&&G)J=this._centrifuge._unsubscribe(this);this._clearSubscribingState()}if(this._inflight=!1,this._setState(l1.Unsubscribed))this.emit("unsubscribed",{channel:this.channel,code:$,reason:Z});return this._rejectPromises({code:U1.subscriptionUnsubscribed,message:this.state}),J}_handlePublication($){if(this._delta&&this._delta_negotiated){let{newData:G,newPrevValue:J}=this._centrifuge._codec.applyDeltaIfNeeded($,this._prevValue);$.data=G,this._prevValue=J}let Z=this._centrifuge._getPublicationContext(this.channel,$);if(this.emit("publication",Z),$.offset)this._offset=$.offset}_handleJoin($){let Z=this._centrifuge._getJoinLeaveContext($.info);this.emit("join",{channel:this.channel,info:Z})}_handleLeave($){let Z=this._centrifuge._getJoinLeaveContext($.info);this.emit("leave",{channel:this.channel,info:Z})}_resolvePromises(){for(let $ in this._promises){if(!this._promises.hasOwnProperty($))continue;if(this._promises[$].timeout)clearTimeout(this._promises[$].timeout);this._promises[$].resolve(),delete this._promises[$]}}_rejectPromises($){for(let Z in this._promises){if(!this._promises.hasOwnProperty(Z))continue;if(this._promises[Z].timeout)clearTimeout(this._promises[Z].timeout);this._promises[Z].reject($),delete this._promises[Z]}}_scheduleResubscribe(){if(!this._isSubscribing()){this._debug("not in subscribing state, skip resubscribe scheduling",this.channel);return}let $=this,Z=this._getResubscribeDelay();this._resubscribeTimeout=setTimeout(function(){if($._isSubscribing())$._subscribe()},Z),this._debug("resubscribe scheduled after "+Z,this.channel)}_subscribeError($){if(!this._isSubscribing())return;if($.code<100||$.code===109||$.temporary===!0){if($.code===109)this._token="";let Z={channel:this.channel,type:"subscribe",error:$};if(this._centrifuge.state===R1.Connected)this.emit("error",Z);this._scheduleResubscribe()}else this._setUnsubscribed($.code,$.message,!1)}_getResubscribeDelay(){let $=L8(this._resubscribeAttempts,this._minResubscribeDelay,this._maxResubscribeDelay);return this._resubscribeAttempts++,$}_setOptions($){if(!$)return;if($.since)this._offset=$.since.offset||0,this._epoch=$.since.epoch||"",this._recover=!0;if($.data)this._data=$.data;if($.getData)this._getData=$.getData;if($.minResubscribeDelay!==void 0)this._minResubscribeDelay=$.minResubscribeDelay;if($.maxResubscribeDelay!==void 0)this._maxResubscribeDelay=$.maxResubscribeDelay;if($.token)this._token=$.token;if($.getToken)this._getToken=$.getToken;if($.positioned===!0)this._positioned=!0;if($.recoverable===!0)this._recoverable=!0;if($.joinLeave===!0)this._joinLeave=!0;if($.delta){if($.delta!=="fossil")throw Error("unsupported delta format");this._delta=$.delta}if($.tagsFilter)this._tagsFilter=$.tagsFilter;if(this._tagsFilter&&this._delta)throw Error("cannot use delta and tagsFilter together")}_getOffset(){let $=this._offset;if($!==null)return $;return 0}_getEpoch(){let $=this._epoch;if($!==null)return $;return""}_clearRefreshTimeout(){if(this._refreshTimeout!==null)clearTimeout(this._refreshTimeout),this._refreshTimeout=null}_clearResubscribeTimeout(){if(this._resubscribeTimeout!==null)clearTimeout(this._resubscribeTimeout),this._resubscribeTimeout=null}_getSubscriptionToken(){this._debug("get subscription token for channel",this.channel);let $={channel:this.channel},Z=this._getToken;if(Z===null)return this.emit("error",{type:"configuration",channel:this.channel,error:{code:U1.badConfiguration,message:"provide a function to get channel subscription token"}}),Promise.reject(new v0(""));return Z($)}_refresh(){this._clearRefreshTimeout();let $=this;this._getSubscriptionToken().then(function(Z){if(!$._isSubscribed())return;if(!Z){$._failUnauthorized();return}$._token=Z;let J={sub_refresh:{channel:$.channel,token:Z}};$._centrifuge._call(J).then((X)=>{let Y=X.reply.sub_refresh;if($._refreshResponse(Y),X.next)X.next()},(X)=>{if($._refreshError(X.error),X.next)X.next()})}).catch(function(Z){if(Z instanceof v0){$._failUnauthorized();return}$.emit("error",{type:"refreshToken",channel:$.channel,error:{code:U1.subscriptionRefreshToken,message:Z!==void 0?Z.toString():""}}),$._refreshTimeout=setTimeout(()=>$._refresh(),$._getRefreshRetryDelay())})}_refreshResponse($){if(!this._isSubscribed())return;if(this._debug("subscription token refreshed, channel",this.channel),this._clearRefreshTimeout(),$.expires===!0)this._refreshTimeout=setTimeout(()=>this._refresh(),z8($.ttl))}_refreshError($){if(!this._isSubscribed())return;if($.code<100||$.temporary===!0)this.emit("error",{type:"refresh",channel:this.channel,error:$}),this._refreshTimeout=setTimeout(()=>this._refresh(),this._getRefreshRetryDelay());else this._setUnsubscribed($.code,$.message,!0)}_getRefreshRetryDelay(){return L8(0,1e4,20000)}_failUnauthorized(){this._setUnsubscribed(W8.unauthorized,"unauthorized",!0)}}class ZX{constructor($,Z){this.endpoint=$,this.options=Z,this._transport=null}name(){return"sockjs"}subName(){return"sockjs-"+this._transport.transport}emulation(){return!1}supported(){return this.options.sockjs!==null}initialize($,Z){this._transport=new this.options.sockjs(this.endpoint,null,this.options.sockjsOptions),this._transport.onopen=()=>{Z.onOpen()},this._transport.onerror=(G)=>{Z.onError(G)},this._transport.onclose=(G)=>{Z.onClose(G)},this._transport.onmessage=(G)=>{Z.onMessage(G.data)}}close(){this._transport.close()}send($){this._transport.send($)}}class w${constructor($,Z){this.endpoint=$,this.options=Z,this._transport=null}name(){return"websocket"}subName(){return"websocket"}emulation(){return!1}supported(){return this.options.websocket!==void 0&&this.options.websocket!==null}initialize($,Z){let G="";if($==="protobuf")G="centrifuge-protobuf";if(G!=="")this._transport=new this.options.websocket(this.endpoint,G);else this._transport=new this.options.websocket(this.endpoint);if($==="protobuf")this._transport.binaryType="arraybuffer";this._transport.onopen=()=>{Z.onOpen()},this._transport.onerror=(J)=>{Z.onError(J)},this._transport.onclose=(J)=>{Z.onClose(J)},this._transport.onmessage=(J)=>{Z.onMessage(J.data)}}close(){this._transport.close()}send($){this._transport.send($)}}class GX{constructor($,Z){this.endpoint=$,this.options=Z,this._abortController=null,this._utf8decoder=new TextDecoder,this._protocol="json"}name(){return"http_stream"}subName(){return"http_stream"}emulation(){return!0}_handleErrors($){if(!$.ok)throw Error($.status);return $}_fetchEventTarget($,Z,G){let J=new EventTarget,X=$.options.fetch;return X(Z,G).then($._handleErrors).then((Y)=>{J.dispatchEvent(new Event("open"));let H="",Q=0,q=new Uint8Array,U=Y.body.getReader();return new $.options.readableStream({start(K){function W(){return U.read().then(({done:z,value:L})=>{if(z){J.dispatchEvent(new Event("close")),K.close();return}try{if($._protocol==="json"){H+=$._utf8decoder.decode(L);while(Q<H.length)if(H[Q]===`
|
|
29
|
-
`){let
|
|
30
|
-
`){let
|
|
31
|
-
`);else Z=$;try{yield this._writer.write(Z)}catch(
|
|
32
|
-
`)throw Error("size integer not terminated by '\\n'");let
|
|
28
|
+
`;return{css:z,animationName:Q}}}}});var Qz=F((L0)=>{Object.defineProperty(L0,"__esModule",{value:!0});Object.defineProperty(L0,"Plugins",{enumerable:!0,get:function(){return Zz.default}});Object.defineProperty(L0,"Style",{enumerable:!0,get:function(){return Jz.default}});Object.defineProperty(L0,"StyleRoot",{enumerable:!0,get:function(){return Gz.default}});Object.defineProperty(L0,"getState",{enumerable:!0,get:function(){return Yz.default}});Object.defineProperty(L0,"keyframes",{enumerable:!0,get:function(){return Xz.default}});L0.default=void 0;var rN=z5(UZ()),Zz=z5(GZ()),Jz=z5(nH()),Gz=z5(tH()),Yz=z5(p4()),Xz=z5($z()),qT=z5(YZ());function z5($){return $&&$.__esModule?$:{default:$}}function l5($){return(0,rN.default)($)}l5.Plugins=Zz.default;l5.Style=Jz.default;l5.StyleRoot=Gz.default;l5.getState=Yz.default;l5.keyframes=Xz.default;var oN=l5;L0.default=oN});var B9=F((MT,F9)=>{F9.exports=Qz().default;F9.exports.default=F9.exports});var $M={};wZ($M,{UnionCard:()=>IZ,UI:()=>E0,SequenceCard:()=>MZ,PieCard:()=>r1,ChatCard:()=>B4,AjaxButtonCard:()=>NZ});module.exports=Bz($M);var w0=require("react");var h6=require("react"),Lz=h6.createContext(null),EZ=()=>{let $=h6.useContext(Lz);if(!$)throw Error("usePieConfig must be used within PieConfigProvider");return $},qz=()=>{let{apiServer:$}=EZ();return $},vZ=qz;var Nz=()=>{let{enableRenderingLog:$}=EZ();return $},U5=Nz;var aZ=require("react");function K1($,Z,J,G){function Y(X){return X instanceof J?X:new J(function(Q){Q(X)})}return new(J||(J=Promise))(function(X,Q){function z(U){try{K(G.next(U))}catch(O){Q(O)}}function H(U){try{K(G.throw(U))}catch(O){Q(O)}}function K(U){U.done?X(U.value):Y(U.value).then(z,H)}K((G=G.apply($,Z||[])).next())})}function Mz($){return $&&$.__esModule&&Object.prototype.hasOwnProperty.call($,"default")?$.default:$}var P9={exports:{}},O5=typeof Reflect==="object"?Reflect:null,jZ=O5&&typeof O5.apply==="function"?O5.apply:function(Z,J,G){return Function.prototype.apply.call(Z,J,G)},k6;if(O5&&typeof O5.ownKeys==="function")k6=O5.ownKeys;else if(Object.getOwnPropertySymbols)k6=function(Z){return Object.getOwnPropertyNames(Z).concat(Object.getOwnPropertySymbols(Z))};else k6=function(Z){return Object.getOwnPropertyNames(Z)};function Rz($){if(console&&console.warn)console.warn($)}var SZ=Number.isNaN||function(Z){return Z!==Z};function g(){g.init.call(this)}P9.exports=g;P9.exports.once=Tz;g.EventEmitter=g;g.prototype._events=void 0;g.prototype._eventsCount=0;g.prototype._maxListeners=void 0;var fZ=10;function c6($){if(typeof $!=="function")throw TypeError('The "listener" argument must be of type Function. Received type '+typeof $)}Object.defineProperty(g,"defaultMaxListeners",{enumerable:!0,get:function(){return fZ},set:function($){if(typeof $!=="number"||$<0||SZ($))throw RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+$+".");fZ=$}});g.init=function(){if(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)this._events=Object.create(null),this._eventsCount=0;this._maxListeners=this._maxListeners||void 0};g.prototype.setMaxListeners=function(Z){if(typeof Z!=="number"||Z<0||SZ(Z))throw RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+Z+".");return this._maxListeners=Z,this};function xZ($){if($._maxListeners===void 0)return g.defaultMaxListeners;return $._maxListeners}g.prototype.getMaxListeners=function(){return xZ(this)};g.prototype.emit=function(Z){var J=[];for(var G=1;G<arguments.length;G++)J.push(arguments[G]);var Y=Z==="error",X=this._events;if(X!==void 0)Y=Y&&X.error===void 0;else if(!Y)return!1;if(Y){var Q;if(J.length>0)Q=J[0];if(Q instanceof Error)throw Q;var z=Error("Unhandled error."+(Q?" ("+Q.message+")":""));throw z.context=Q,z}var H=X[Z];if(H===void 0)return!1;if(typeof H==="function")jZ(H,this,J);else{var K=H.length,U=hZ(H,K);for(var G=0;G<K;++G)jZ(U[G],this,J)}return!0};function CZ($,Z,J,G){var Y,X,Q;if(c6(J),X=$._events,X===void 0)X=$._events=Object.create(null),$._eventsCount=0;else{if(X.newListener!==void 0)$.emit("newListener",Z,J.listener?J.listener:J),X=$._events;Q=X[Z]}if(Q===void 0)Q=X[Z]=J,++$._eventsCount;else{if(typeof Q==="function")Q=X[Z]=G?[J,Q]:[Q,J];else if(G)Q.unshift(J);else Q.push(J);if(Y=xZ($),Y>0&&Q.length>Y&&!Q.warned){Q.warned=!0;var z=Error("Possible EventEmitter memory leak detected. "+Q.length+" "+String(Z)+" listeners added. Use emitter.setMaxListeners() to increase limit");z.name="MaxListenersExceededWarning",z.emitter=$,z.type=Z,z.count=Q.length,Rz(z)}}return $}g.prototype.addListener=function(Z,J){return CZ(this,Z,J,!1)};g.prototype.on=g.prototype.addListener;g.prototype.prependListener=function(Z,J){return CZ(this,Z,J,!0)};function Iz(){if(!this.fired){if(this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0)return this.listener.call(this.target);return this.listener.apply(this.target,arguments)}}function _Z($,Z,J){var G={fired:!1,wrapFn:void 0,target:$,type:Z,listener:J},Y=Iz.bind(G);return Y.listener=J,G.wrapFn=Y,Y}g.prototype.once=function(Z,J){return c6(J),this.on(Z,_Z(this,Z,J)),this};g.prototype.prependOnceListener=function(Z,J){return c6(J),this.prependListener(Z,_Z(this,Z,J)),this};g.prototype.removeListener=function(Z,J){var G,Y,X,Q,z;if(c6(J),Y=this._events,Y===void 0)return this;if(G=Y[Z],G===void 0)return this;if(G===J||G.listener===J){if(--this._eventsCount===0)this._events=Object.create(null);else if(delete Y[Z],Y.removeListener)this.emit("removeListener",Z,G.listener||J)}else if(typeof G!=="function"){X=-1;for(Q=G.length-1;Q>=0;Q--)if(G[Q]===J||G[Q].listener===J){z=G[Q].listener,X=Q;break}if(X<0)return this;if(X===0)G.shift();else Pz(G,X);if(G.length===1)Y[Z]=G[0];if(Y.removeListener!==void 0)this.emit("removeListener",Z,z||J)}return this};g.prototype.off=g.prototype.removeListener;g.prototype.removeAllListeners=function(Z){var J,G,Y;if(G=this._events,G===void 0)return this;if(G.removeListener===void 0){if(arguments.length===0)this._events=Object.create(null),this._eventsCount=0;else if(G[Z]!==void 0)if(--this._eventsCount===0)this._events=Object.create(null);else delete G[Z];return this}if(arguments.length===0){var X=Object.keys(G),Q;for(Y=0;Y<X.length;++Y){if(Q=X[Y],Q==="removeListener")continue;this.removeAllListeners(Q)}return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(J=G[Z],typeof J==="function")this.removeListener(Z,J);else if(J!==void 0)for(Y=J.length-1;Y>=0;Y--)this.removeListener(Z,J[Y]);return this};function yZ($,Z,J){var G=$._events;if(G===void 0)return[];var Y=G[Z];if(Y===void 0)return[];if(typeof Y==="function")return J?[Y.listener||Y]:[Y];return J?Dz(Y):hZ(Y,Y.length)}g.prototype.listeners=function(Z){return yZ(this,Z,!0)};g.prototype.rawListeners=function(Z){return yZ(this,Z,!1)};g.listenerCount=function($,Z){if(typeof $.listenerCount==="function")return $.listenerCount(Z);else return gZ.call($,Z)};g.prototype.listenerCount=gZ;function gZ($){var Z=this._events;if(Z!==void 0){var J=Z[$];if(typeof J==="function")return 1;else if(J!==void 0)return J.length}return 0}g.prototype.eventNames=function(){return this._eventsCount>0?k6(this._events):[]};function hZ($,Z){var J=Array(Z);for(var G=0;G<Z;++G)J[G]=$[G];return J}function Pz($,Z){for(;Z+1<$.length;Z++)$[Z]=$[Z+1];$.pop()}function Dz($){var Z=Array($.length);for(var J=0;J<Z.length;++J)Z[J]=$[J].listener||$[J];return Z}function Tz($,Z){return new Promise(function(J,G){function Y(Q){$.removeListener(Z,X),G(Q)}function X(){if(typeof $.removeListener==="function")$.removeListener("error",Y);J([].slice.call(arguments))}if(kZ($,Z,X,{once:!0}),Z!=="error")wz($,Y,{once:!0})})}function wz($,Z,J){if(typeof $.on==="function")kZ($,"error",Z,J)}function kZ($,Z,J,G){if(typeof $.on==="function")if(G.once)$.once(Z,J);else $.on(Z,J);else if(typeof $.addEventListener==="function")$.addEventListener(Z,function Y(X){if(G.once)$.removeEventListener(Z,Y);J(X)});else throw TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof $)}var Ez=P9.exports,bZ=Mz(Ez),b;(function($){$[$.timeout=1]="timeout",$[$.transportClosed=2]="transportClosed",$[$.clientDisconnected=3]="clientDisconnected",$[$.clientClosed=4]="clientClosed",$[$.clientConnectToken=5]="clientConnectToken",$[$.clientRefreshToken=6]="clientRefreshToken",$[$.subscriptionUnsubscribed=7]="subscriptionUnsubscribed",$[$.subscriptionSubscribeToken=8]="subscriptionSubscribeToken",$[$.subscriptionRefreshToken=9]="subscriptionRefreshToken",$[$.transportWriteError=10]="transportWriteError",$[$.connectionClosed=11]="connectionClosed",$[$.badConfiguration=12]="badConfiguration"})(b||(b={}));var M0;(function($){$[$.connectCalled=0]="connectCalled",$[$.transportClosed=1]="transportClosed",$[$.noPing=2]="noPing",$[$.subscribeTimeout=3]="subscribeTimeout",$[$.unsubscribeError=4]="unsubscribeError"})(M0||(M0={}));var n5;(function($){$[$.disconnectCalled=0]="disconnectCalled",$[$.unauthorized=1]="unauthorized",$[$.badProtocol=2]="badProtocol",$[$.messageSizeLimit=3]="messageSizeLimit"})(n5||(n5={}));var b6;(function($){$[$.subscribeCalled=0]="subscribeCalled",$[$.transportClosed=1]="transportClosed"})(b6||(b6={}));var m6;(function($){$[$.unsubscribeCalled=0]="unsubscribeCalled",$[$.unauthorized=1]="unauthorized",$[$.clientClosed=2]="clientClosed"})(m6||(m6={}));var M9;(function($){$[$.channelCompaction=1]="channelCompaction"})(M9||(M9={}));var a;(function($){$.Disconnected="disconnected",$.Connecting="connecting",$.Connected="connected"})(a||(a={}));var V1;(function($){$.Unsubscribed="unsubscribed",$.Subscribing="subscribing",$.Subscribed="subscribed"})(V1||(V1={}));function vz($,Z){return $.lastIndexOf(Z,0)===0}function mZ($){if($===void 0||$===null)return!1;return typeof $==="function"}function jz($,Z){if(globalThis.console){let J=globalThis.console[$];if(mZ(J))J.apply(globalThis.console,Z)}}function fz($,Z){return Math.floor(Math.random()*(Z-$+1)+$)}function u6($,Z,J){if($>31)$=31;let G=fz(0,Math.min(J,Z*Math.pow(2,$)));return Math.min(J,Z+G)}function Sz($){return"error"in $&&$.error!==null}function l6($){return Math.min($*1000,2147483647)}class uZ extends bZ{constructor($,Z,J){super();if(this._resubscribeTimeout=null,this._refreshTimeout=null,this.channel=Z,this.state=V1.Unsubscribed,this._centrifuge=$,this._token="",this._getToken=null,this._data=null,this._getData=null,this._recover=!1,this._offset=null,this._epoch=null,this._id=0,this._recoverable=!1,this._positioned=!1,this._joinLeave=!1,this._minResubscribeDelay=500,this._maxResubscribeDelay=20000,this._resubscribeTimeout=null,this._resubscribeAttempts=0,this._promises={},this._promiseId=0,this._inflight=!1,this._refreshTimeout=null,this._delta="",this._delta_negotiated=!1,this._tagsFilter=null,this._prevValue=null,this._unsubPromise=Promise.resolve(),this._setOptions(J),this._centrifuge._debugEnabled)this.on("state",(G)=>{this._debug("subscription state",Z,G.oldState,"->",G.newState)}),this.on("error",(G)=>{this._debug("subscription error",Z,G)});else this.on("error",function(){Function.prototype()})}ready($){if(this.state===V1.Unsubscribed)return Promise.reject({code:b.subscriptionUnsubscribed,message:this.state});if(this.state===V1.Subscribed)return Promise.resolve();return new Promise((Z,J)=>{let G={resolve:Z,reject:J};if($)G.timeout=setTimeout(function(){J({code:b.timeout,message:"timeout"})},$);this._promises[this._nextPromiseId()]=G})}subscribe(){if(this._isSubscribed())return;this._resubscribeAttempts=0,this._setSubscribing(b6.subscribeCalled,"subscribe called")}unsubscribe(){this._unsubPromise=this._setUnsubscribed(m6.unsubscribeCalled,"unsubscribe called",!0)}publish($){return K1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.publish(this.channel,$)})}presence(){return K1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.presence(this.channel)})}presenceStats(){return K1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.presenceStats(this.channel)})}history($){return K1(this,void 0,void 0,function*(){return yield this._methodCall(),this._centrifuge.history(this.channel,$)})}setTagsFilter($){if($&&this._delta)throw Error("cannot use delta and tagsFilter together");this._tagsFilter=$}setData($){this._data=$}_methodCall(){if(this._isSubscribed())return Promise.resolve();if(this._isUnsubscribed())return Promise.reject({code:b.subscriptionUnsubscribed,message:this.state});return new Promise(($,Z)=>{let J=this._centrifuge._config.timeout,G=setTimeout(()=>{Z({code:b.timeout,message:"timeout"})},J);this._promises[this._nextPromiseId()]={timeout:G,resolve:$,reject:Z}})}_nextPromiseId(){return++this._promiseId}_needRecover(){return this._recover===!0}_isUnsubscribed(){return this.state===V1.Unsubscribed}_isSubscribing(){return this.state===V1.Subscribing}_isSubscribed(){return this.state===V1.Subscribed}_setState($){if(this.state!==$){let Z=this.state;return this.state=$,this.emit("state",{newState:$,oldState:Z,channel:this.channel}),!0}return!1}_usesToken(){return this._token!==""||this._getToken!==null}_clearSubscribingState(){this._resubscribeAttempts=0,this._clearResubscribeTimeout()}_clearSubscribedState(){this._clearRefreshTimeout()}_setSubscribed($){if(!this._isSubscribing())return;if(this._clearSubscribingState(),$.id)this._id=$.id;if($.recoverable)this._recover=!0,this._offset=$.offset||0,this._epoch=$.epoch||"";if($.delta)this._delta_negotiated=!0;else this._delta_negotiated=!1;this._setState(V1.Subscribed);let Z=this._centrifuge._getSubscribeContext(this.channel,$);this.emit("subscribed",Z),this._resolvePromises();let J=$.publications;if(J&&J.length>0)for(let G in J){if(!J.hasOwnProperty(G))continue;this._handlePublication(J[G])}if($.expires===!0)this._refreshTimeout=setTimeout(()=>this._refresh(),l6($.ttl))}_setSubscribing($,Z){return K1(this,void 0,void 0,function*(){if(this._isSubscribing())return;if(this._isSubscribed())this._clearSubscribedState();if(this._setState(V1.Subscribing))this.emit("subscribing",{channel:this.channel,code:$,reason:Z});if(this._centrifuge._transport&&this._centrifuge._transport.emulation())yield this._unsubPromise;if(!this._isSubscribing())return;this._subscribe()})}_subscribe(){if(this._debug("subscribing on",this.channel),!this._isTransportOpen())return this._debug("delay subscribe on",this.channel,"till connected"),null;if(this._inflight)return null;if(this._inflight=!0,this._canSubscribeWithoutGettingToken())return this._subscribeWithoutToken();return this._getSubscriptionToken().then(($)=>this._handleTokenResponse($)).catch(($)=>this._handleTokenError($)),null}_isTransportOpen(){return this._centrifuge._transportIsOpen}_canSubscribeWithoutGettingToken(){return!this._usesToken()||!!this._token}_subscribeWithoutToken(){if(this._getData)return this._getDataAndSubscribe(this._token),null;else return this._sendSubscribe(this._token)}_getDataAndSubscribe($){if(!this._getData){this._inflight=!1;return}this._getData({channel:this.channel}).then((Z)=>{if(!this._isSubscribing()){this._inflight=!1;return}this._data=Z,this._sendSubscribe($)}).catch((Z)=>this._handleGetDataError(Z))}_handleGetDataError($){if(!this._isSubscribing()){this._inflight=!1;return}if($ instanceof n1){this._inflight=!1,this._failUnauthorized();return}this.emit("error",{type:"subscribeData",channel:this.channel,error:{code:b.badConfiguration,message:($===null||$===void 0?void 0:$.toString())||""}}),this._inflight=!1,this._scheduleResubscribe()}_handleTokenResponse($){if(!this._isSubscribing()){this._inflight=!1;return}if(!$){this._inflight=!1,this._failUnauthorized();return}if(this._token=$,this._getData)this._getDataAndSubscribe($);else this._sendSubscribe($)}_handleTokenError($){if(!this._isSubscribing()){this._inflight=!1;return}if($ instanceof n1){this._inflight=!1,this._failUnauthorized();return}this.emit("error",{type:"subscribeToken",channel:this.channel,error:{code:b.subscriptionSubscribeToken,message:($===null||$===void 0?void 0:$.toString())||""}}),this._inflight=!1,this._scheduleResubscribe()}_sendSubscribe($){if(!this._isTransportOpen())return this._inflight=!1,null;let Z=this._buildSubscribeCommand($);return this._centrifuge._call(Z).then((J)=>{this._inflight=!1;let G=J.reply.subscribe;if(this._handleSubscribeResponse(G),J.next)J.next()},(J)=>{if(this._inflight=!1,this._handleSubscribeError(J.error),J.next)J.next()}),Z}_buildSubscribeCommand($){let Z={channel:this.channel};if($)Z.token=$;if(this._data)Z.data=this._data;if(this._positioned)Z.positioned=!0;if(this._recoverable)Z.recoverable=!0;if(this._joinLeave)Z.join_leave=!0;if(Z.flag=M9.channelCompaction,this._needRecover()){Z.recover=!0;let J=this._getOffset();if(J)Z.offset=J;let G=this._getEpoch();if(G)Z.epoch=G}if(this._delta)Z.delta=this._delta;if(this._tagsFilter)Z.tf=this._tagsFilter;return{subscribe:Z}}_debug(...$){this._centrifuge._debug(...$)}_handleSubscribeError($){if(!this._isSubscribing())return;if($.code===b.timeout){this._centrifuge._disconnect(M0.subscribeTimeout,"subscribe timeout",!0);return}this._subscribeError($)}_handleSubscribeResponse($){if(!this._isSubscribing())return;this._setSubscribed($)}_setUnsubscribed($,Z,J){if(this._isUnsubscribed())return Promise.resolve();let G=Promise.resolve();if(this._isSubscribed()){if(J)G=this._centrifuge._unsubscribe(this);this._clearSubscribedState()}else if(this._isSubscribing()){if(this._inflight&&J)G=this._centrifuge._unsubscribe(this);this._clearSubscribingState()}if(this._inflight=!1,this._setState(V1.Unsubscribed))this.emit("unsubscribed",{channel:this.channel,code:$,reason:Z});return this._rejectPromises({code:b.subscriptionUnsubscribed,message:this.state}),G}_handlePublication($){if(this._delta&&this._delta_negotiated){let{newData:J,newPrevValue:G}=this._centrifuge._codec.applyDeltaIfNeeded($,this._prevValue);$.data=J,this._prevValue=G}let Z=this._centrifuge._getPublicationContext(this.channel,$);if(this.emit("publication",Z),$.offset)this._offset=$.offset}_handleJoin($){let Z=this._centrifuge._getJoinLeaveContext($.info);this.emit("join",{channel:this.channel,info:Z})}_handleLeave($){let Z=this._centrifuge._getJoinLeaveContext($.info);this.emit("leave",{channel:this.channel,info:Z})}_resolvePromises(){for(let $ in this._promises){if(!this._promises.hasOwnProperty($))continue;if(this._promises[$].timeout)clearTimeout(this._promises[$].timeout);this._promises[$].resolve(),delete this._promises[$]}}_rejectPromises($){for(let Z in this._promises){if(!this._promises.hasOwnProperty(Z))continue;if(this._promises[Z].timeout)clearTimeout(this._promises[Z].timeout);this._promises[Z].reject($),delete this._promises[Z]}}_scheduleResubscribe(){if(!this._isSubscribing()){this._debug("not in subscribing state, skip resubscribe scheduling",this.channel);return}let $=this,Z=this._getResubscribeDelay();this._resubscribeTimeout=setTimeout(function(){if($._isSubscribing())$._subscribe()},Z),this._debug("resubscribe scheduled after "+Z,this.channel)}_subscribeError($){if(!this._isSubscribing())return;if($.code<100||$.code===109||$.temporary===!0){if($.code===109)this._token="";let Z={channel:this.channel,type:"subscribe",error:$};if(this._centrifuge.state===a.Connected)this.emit("error",Z);this._scheduleResubscribe()}else this._setUnsubscribed($.code,$.message,!1)}_getResubscribeDelay(){let $=u6(this._resubscribeAttempts,this._minResubscribeDelay,this._maxResubscribeDelay);return this._resubscribeAttempts++,$}_setOptions($){if(!$)return;if($.since)this._offset=$.since.offset||0,this._epoch=$.since.epoch||"",this._recover=!0;if($.data)this._data=$.data;if($.getData)this._getData=$.getData;if($.minResubscribeDelay!==void 0)this._minResubscribeDelay=$.minResubscribeDelay;if($.maxResubscribeDelay!==void 0)this._maxResubscribeDelay=$.maxResubscribeDelay;if($.token)this._token=$.token;if($.getToken)this._getToken=$.getToken;if($.positioned===!0)this._positioned=!0;if($.recoverable===!0)this._recoverable=!0;if($.joinLeave===!0)this._joinLeave=!0;if($.delta){if($.delta!=="fossil")throw Error("unsupported delta format");this._delta=$.delta}if($.tagsFilter)this._tagsFilter=$.tagsFilter;if(this._tagsFilter&&this._delta)throw Error("cannot use delta and tagsFilter together")}_getOffset(){let $=this._offset;if($!==null)return $;return 0}_getEpoch(){let $=this._epoch;if($!==null)return $;return""}_clearRefreshTimeout(){if(this._refreshTimeout!==null)clearTimeout(this._refreshTimeout),this._refreshTimeout=null}_clearResubscribeTimeout(){if(this._resubscribeTimeout!==null)clearTimeout(this._resubscribeTimeout),this._resubscribeTimeout=null}_getSubscriptionToken(){this._debug("get subscription token for channel",this.channel);let $={channel:this.channel},Z=this._getToken;if(Z===null)return this.emit("error",{type:"configuration",channel:this.channel,error:{code:b.badConfiguration,message:"provide a function to get channel subscription token"}}),Promise.reject(new n1(""));return Z($)}_refresh(){this._clearRefreshTimeout();let $=this;this._getSubscriptionToken().then(function(Z){if(!$._isSubscribed())return;if(!Z){$._failUnauthorized();return}$._token=Z;let G={sub_refresh:{channel:$.channel,token:Z}};$._centrifuge._call(G).then((Y)=>{let X=Y.reply.sub_refresh;if($._refreshResponse(X),Y.next)Y.next()},(Y)=>{if($._refreshError(Y.error),Y.next)Y.next()})}).catch(function(Z){if(Z instanceof n1){$._failUnauthorized();return}$.emit("error",{type:"refreshToken",channel:$.channel,error:{code:b.subscriptionRefreshToken,message:Z!==void 0?Z.toString():""}}),$._refreshTimeout=setTimeout(()=>$._refresh(),$._getRefreshRetryDelay())})}_refreshResponse($){if(!this._isSubscribed())return;if(this._debug("subscription token refreshed, channel",this.channel),this._clearRefreshTimeout(),$.expires===!0)this._refreshTimeout=setTimeout(()=>this._refresh(),l6($.ttl))}_refreshError($){if(!this._isSubscribed())return;if($.code<100||$.temporary===!0)this.emit("error",{type:"refresh",channel:this.channel,error:$}),this._refreshTimeout=setTimeout(()=>this._refresh(),this._getRefreshRetryDelay());else this._setUnsubscribed($.code,$.message,!0)}_getRefreshRetryDelay(){return u6(0,1e4,20000)}_failUnauthorized(){this._setUnsubscribed(m6.unauthorized,"unauthorized",!0)}}class lZ{constructor($,Z){this.endpoint=$,this.options=Z,this._transport=null}name(){return"sockjs"}subName(){return"sockjs-"+this._transport.transport}emulation(){return!1}supported(){return this.options.sockjs!==null}initialize($,Z){this._transport=new this.options.sockjs(this.endpoint,null,this.options.sockjsOptions),this._transport.onopen=()=>{Z.onOpen()},this._transport.onerror=(J)=>{Z.onError(J)},this._transport.onclose=(J)=>{Z.onClose(J)},this._transport.onmessage=(J)=>{Z.onMessage(J.data)}}close(){this._transport.close()}send($){this._transport.send($)}}class R9{constructor($,Z){this.endpoint=$,this.options=Z,this._transport=null}name(){return"websocket"}subName(){return"websocket"}emulation(){return!1}supported(){return this.options.websocket!==void 0&&this.options.websocket!==null}initialize($,Z){let J="";if($==="protobuf")J="centrifuge-protobuf";if(J!=="")this._transport=new this.options.websocket(this.endpoint,J);else this._transport=new this.options.websocket(this.endpoint);if($==="protobuf")this._transport.binaryType="arraybuffer";this._transport.onopen=()=>{Z.onOpen()},this._transport.onerror=(G)=>{Z.onError(G)},this._transport.onclose=(G)=>{Z.onClose(G)},this._transport.onmessage=(G)=>{Z.onMessage(G.data)}}close(){this._transport.close()}send($){this._transport.send($)}}class cZ{constructor($,Z){this.endpoint=$,this.options=Z,this._abortController=null,this._utf8decoder=new TextDecoder,this._protocol="json"}name(){return"http_stream"}subName(){return"http_stream"}emulation(){return!0}_handleErrors($){if(!$.ok)throw Error($.status);return $}_fetchEventTarget($,Z,J){let G=new EventTarget,Y=$.options.fetch;return Y(Z,J).then($._handleErrors).then((X)=>{G.dispatchEvent(new Event("open"));let Q="",z=0,H=new Uint8Array,K=X.body.getReader();return new $.options.readableStream({start(U){function O(){return K.read().then(({done:W,value:L})=>{if(W){G.dispatchEvent(new Event("close")),U.close();return}try{if($._protocol==="json"){Q+=$._utf8decoder.decode(L);while(z<Q.length)if(Q[z]===`
|
|
29
|
+
`){let B=Q.substring(0,z);G.dispatchEvent(new MessageEvent("message",{data:B})),Q=Q.substring(z+1),z=0}else++z}else{let B=new Uint8Array(H.length+L.length);B.set(H),B.set(L,H.length),H=B;while(!0){let V=$.options.decoder.decodeReply(H);if(V.ok){let R=H.slice(0,V.pos);G.dispatchEvent(new MessageEvent("message",{data:R})),H=H.slice(V.pos);continue}break}}}catch(B){G.dispatchEvent(new Event("error",{detail:B})),G.dispatchEvent(new Event("close")),U.close();return}O()}).catch(function(W){G.dispatchEvent(new Event("error",{detail:W})),G.dispatchEvent(new Event("close")),U.close();return})}return O()}})}).catch((X)=>{G.dispatchEvent(new Event("error",{detail:X})),G.dispatchEvent(new Event("close"))}),G}supported(){return this.options.fetch!==null&&this.options.readableStream!==null&&typeof TextDecoder<"u"&&typeof AbortController<"u"&&typeof EventTarget<"u"&&typeof Event<"u"&&typeof MessageEvent<"u"&&typeof Error<"u"}initialize($,Z,J){this._protocol=$,this._abortController=new AbortController;let G,Y;if($==="json")G={Accept:"application/json","Content-Type":"application/json"},Y=J;else G={Accept:"application/octet-stream","Content-Type":"application/octet-stream"},Y=J;let X={method:"POST",headers:G,body:Y,mode:"cors",credentials:"same-origin",signal:this._abortController.signal},Q=this._fetchEventTarget(this,this.endpoint,X);Q.addEventListener("open",()=>{Z.onOpen()}),Q.addEventListener("error",(z)=>{this._abortController.abort(),Z.onError(z)}),Q.addEventListener("close",()=>{this._abortController.abort(),Z.onClose({code:4,reason:"connection closed"})}),Q.addEventListener("message",(z)=>{Z.onMessage(z.data)})}close(){this._abortController.abort()}send($,Z,J){let G,Y,X={session:Z,node:J,data:$};if(this._protocol==="json")G={"Content-Type":"application/json"},Y=JSON.stringify(X);else G={"Content-Type":"application/octet-stream"},Y=this.options.encoder.encodeEmulationRequest(X);let Q=this.options.fetch,z={method:"POST",headers:G,body:Y,mode:"cors",credentials:"same-origin"};Q(this.options.emulationEndpoint,z)}}class pZ{constructor($,Z){this.endpoint=$,this.options=Z,this._protocol="json",this._transport=null,this._onClose=null}name(){return"sse"}subName(){return"sse"}emulation(){return!0}supported(){return this.options.eventsource!==null&&this.options.fetch!==null}initialize($,Z,J){let G;if(globalThis&&globalThis.document&&globalThis.document.baseURI)G=new URL(this.endpoint,globalThis.document.baseURI);else G=new URL(this.endpoint);G.searchParams.append("cf_connect",J);let Y={},X=new this.options.eventsource(G.toString(),Y);this._transport=X;let Q=this;X.onopen=function(){Z.onOpen()},X.onerror=function(z){X.close(),Z.onError(z),Z.onClose({code:4,reason:"connection closed"})},X.onmessage=function(z){Z.onMessage(z.data)},Q._onClose=function(){Z.onClose({code:4,reason:"connection closed"})}}close(){if(this._transport.close(),this._onClose!==null)this._onClose()}send($,Z,J){let G={session:Z,node:J,data:$},Y={"Content-Type":"application/json"},X=JSON.stringify(G),Q=this.options.fetch,z={method:"POST",headers:Y,body:X,mode:"cors",credentials:"same-origin"};Q(this.options.emulationEndpoint,z)}}class iZ{constructor($,Z){this.endpoint=$,this.options=Z,this._transport=null,this._stream=null,this._writer=null,this._utf8decoder=new TextDecoder,this._protocol="json"}name(){return"webtransport"}subName(){return"webtransport"}emulation(){return!1}supported(){return this.options.webtransport!==void 0&&this.options.webtransport!==null}initialize($,Z){return K1(this,void 0,void 0,function*(){let J;if(globalThis&&globalThis.document&&globalThis.document.baseURI)J=new URL(this.endpoint,globalThis.document.baseURI);else J=new URL(this.endpoint);if($==="protobuf")J.searchParams.append("cf_protocol","protobuf");this._protocol=$;let G=new EventTarget;this._transport=new this.options.webtransport(J.toString()),this._transport.closed.then(()=>{Z.onClose({code:4,reason:"connection closed"})}).catch(()=>{Z.onClose({code:4,reason:"connection closed"})});try{yield this._transport.ready}catch(X){this.close();return}let Y;try{Y=yield this._transport.createBidirectionalStream()}catch(X){this.close();return}this._stream=Y,this._writer=this._stream.writable.getWriter(),G.addEventListener("close",()=>{Z.onClose({code:4,reason:"connection closed"})}),G.addEventListener("message",(X)=>{Z.onMessage(X.data)}),this._startReading(G),Z.onOpen()})}_startReading($){return K1(this,void 0,void 0,function*(){let Z=this._stream.readable.getReader(),J="",G=0,Y=new Uint8Array;try{while(!0){let{done:X,value:Q}=yield Z.read();if(Q.length>0)if(this._protocol==="json"){J+=this._utf8decoder.decode(Q);while(G<J.length)if(J[G]===`
|
|
30
|
+
`){let z=J.substring(0,G);$.dispatchEvent(new MessageEvent("message",{data:z})),J=J.substring(G+1),G=0}else++G}else{let z=new Uint8Array(Y.length+Q.length);z.set(Y),z.set(Q,Y.length),Y=z;while(!0){let H=this.options.decoder.decodeReply(Y);if(H.ok){let K=Y.slice(0,H.pos);$.dispatchEvent(new MessageEvent("message",{data:K})),Y=Y.slice(H.pos);continue}break}}if(X)break}}catch(X){$.dispatchEvent(new Event("close"))}})}close(){return K1(this,void 0,void 0,function*(){try{if(this._writer)yield this._writer.close();this._transport.close()}catch($){}})}send($){return K1(this,void 0,void 0,function*(){let Z;if(this._protocol==="json")Z=new TextEncoder().encode($+`
|
|
31
|
+
`);else Z=$;try{yield this._writer.write(Z)}catch(J){this.close()}})}}var xz=[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1,-1,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,-1,-1,-1,-1,36,-1,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,-1,-1,-1,63,-1];class dZ{constructor($){this.a=$,this.pos=0}haveBytes(){return this.pos<this.a.length}getByte(){let $=this.a[this.pos];if(this.pos++,this.pos>this.a.length)throw RangeError("out of bounds");return $}getChar(){return String.fromCharCode(this.getByte())}getInt(){let $=0,Z;while(this.haveBytes()&&(Z=xz[127&this.getByte()])>=0)$=($<<6)+Z;return this.pos--,$>>>0}}class nZ{constructor(){this.a=[]}toByteArray($){if(Array.isArray($))return this.a;return new Uint8Array(this.a)}putArray($,Z,J){for(let G=Z;G<J;G++)this.a.push($[G])}}function Cz($){let Z=0,J=0,G=0,Y=0,X=0,Q=$.length;while(Q>=16)Z=Z+$[X+0]|0,J=J+$[X+1]|0,G=G+$[X+2]|0,Y=Y+$[X+3]|0,Z=Z+$[X+4]|0,J=J+$[X+5]|0,G=G+$[X+6]|0,Y=Y+$[X+7]|0,Z=Z+$[X+8]|0,J=J+$[X+9]|0,G=G+$[X+10]|0,Y=Y+$[X+11]|0,Z=Z+$[X+12]|0,J=J+$[X+13]|0,G=G+$[X+14]|0,Y=Y+$[X+15]|0,X+=16,Q-=16;while(Q>=4)Z=Z+$[X+0]|0,J=J+$[X+1]|0,G=G+$[X+2]|0,Y=Y+$[X+3]|0,X+=4,Q-=4;switch(Y=((Y+(G<<8)|0)+(J<<16)|0)+(Z<<24)|0,Q){case 3:Y=Y+($[X+2]<<8)|0;case 2:Y=Y+($[X+1]<<16)|0;case 1:Y=Y+($[X+0]<<24)|0}return Y>>>0}function _z($,Z){let J=0,G=new dZ(Z),Y=$.length,X=Z.length,Q=G.getInt();if(G.getChar()!==`
|
|
32
|
+
`)throw Error("size integer not terminated by '\\n'");let z=new nZ;while(G.haveBytes()){let H=G.getInt(),K;switch(G.getChar()){case"@":if(K=G.getInt(),G.haveBytes()&&G.getChar()!==",")throw Error("copy command not terminated by ','");if(J+=H,J>Q)throw Error("copy exceeds output file size");if(K+H>Y)throw Error("copy extends past end of input");z.putArray($,K,K+H);break;case":":if(J+=H,J>Q)throw Error("insert command gives an output larger than predicted");if(H>X)throw Error("insert count exceeds size of delta");z.putArray(G.a,G.pos,G.pos+H),G.pos+=H;break;case";":{let U=z.toByteArray($);if(H!==Cz(U))throw Error("bad checksum");if(J!==Q)throw Error("generated size does not match predicted size");return U}default:throw Error("unknown delta operator")}}throw Error("unterminated delta")}class I9{name(){return"json"}encodeCommands($){return $.map((Z)=>JSON.stringify(Z)).join(`
|
|
33
33
|
`)}decodeReplies($){return $.trim().split(`
|
|
34
|
-
`).map((Z)=>JSON.parse(Z))}applyDeltaIfNeeded($,Z){let G,J;if($.delta){let X=kL(Z,new TextEncoder().encode($.data));G=JSON.parse(new TextDecoder().decode(X)),J=X}else G=JSON.parse($.data),J=new TextEncoder().encode($.data);return{newData:G,newPrevValue:J}}}var mL={headers:{},token:"",getToken:null,data:null,getData:null,debug:!1,name:"js",version:"",fetch:null,readableStream:null,websocket:null,eventsource:null,sockjs:null,sockjsOptions:{},emulationEndpoint:"/emulation",minReconnectDelay:500,maxReconnectDelay:20000,timeout:5000,maxServerPingDelay:1e4,networkEventTarget:null};class v0 extends Error{constructor($){super($);this.name=this.constructor.name}}class Z7 extends t2{constructor($,Z){super();if(this._reconnectTimeout=null,this._refreshTimeout=null,this._serverPingTimeout=null,this.state=R1.Disconnected,this._transportIsOpen=!1,this._endpoint=$,this._emulation=!1,this._transports=[],this._currentTransportIndex=0,this._triedAllTransports=!1,this._transportWasOpen=!1,this._transport=null,this._transportId=0,this._deviceWentOffline=!1,this._transportClosed=!0,this._codec=new E$,this._reconnecting=!1,this._reconnectTimeout=null,this._reconnectAttempts=0,this._client=null,this._session="",this._node="",this._subs={},this._serverSubs={},this._commandId=0,this._commands=[],this._batching=!1,this._refreshRequired=!1,this._refreshTimeout=null,this._callbacks={},this._token="",this._data=null,this._dispatchPromise=Promise.resolve(),this._serverPing=0,this._serverPingTimeout=null,this._sendPong=!1,this._promises={},this._promiseId=0,this._debugEnabled=!1,this._networkEventsSet=!1,this._config=Object.assign(Object.assign({},mL),Z),this._configure(),this._debugEnabled)this.on("state",(G)=>{this._debug("client state",G.oldState,"->",G.newState)}),this.on("error",(G)=>{this._debug("client error",G)});else this.on("error",function(){Function.prototype()})}newSubscription($,Z){if(this.getSubscription($)!==null)throw Error("Subscription to the channel "+$+" already exists");let G=new $X(this,$,Z);return this._subs[$]=G,G}getSubscription($){return this._getSub($)}removeSubscription($){if(!$)return;if($.state!==l1.Unsubscribed)$.unsubscribe();this._removeSubscription($)}subscriptions(){return this._subs}ready($){return m1(this,void 0,void 0,function*(){switch(this.state){case R1.Disconnected:throw{code:U1.clientDisconnected,message:"client disconnected"};case R1.Connected:return;default:return new Promise((Z,G)=>{let J={resolve:Z,reject:G};if($)J.timeout=setTimeout(()=>{G({code:U1.timeout,message:"timeout"})},$);this._promises[this._nextPromiseId()]=J})}})}connect(){if(this._isConnected()){this._debug("connect called when already connected");return}if(this._isConnecting()){this._debug("connect called when already connecting");return}this._debug("connect called"),this._reconnectAttempts=0,this._startConnecting()}disconnect(){this._disconnect($7.disconnectCalled,"disconnect called",!1)}setToken($){this._token=$}setData($){this._data=$}setHeaders($){this._config.headers=$}send($){return m1(this,void 0,void 0,function*(){let Z={send:{data:$}};if(yield this._methodCall(),!this._transportSendCommands([Z]))throw this._createErrorObject(U1.transportWriteError,"transport write error")})}rpc($,Z){return m1(this,void 0,void 0,function*(){let G={rpc:{method:$,data:Z}};return yield this._methodCall(),{data:(yield this._callPromise(G,(X)=>X.rpc)).data}})}publish($,Z){return m1(this,void 0,void 0,function*(){let G={publish:{channel:$,data:Z}};return yield this._methodCall(),yield this._callPromise(G,()=>({})),{}})}history($,Z){return m1(this,void 0,void 0,function*(){let G={history:this._getHistoryRequest($,Z)};yield this._methodCall();let J=yield this._callPromise(G,(Y)=>Y.history),X=[];if(J.publications)for(let Y=0;Y<J.publications.length;Y++)X.push(this._getPublicationContext($,J.publications[Y]));return{publications:X,epoch:J.epoch||"",offset:J.offset||0}})}presence($){return m1(this,void 0,void 0,function*(){let Z={presence:{channel:$}};yield this._methodCall();let J=(yield this._callPromise(Z,(X)=>X.presence)).presence;for(let X in J)if(Object.prototype.hasOwnProperty.call(J,X)){let Y=J[X],H=Y.conn_info,Q=Y.chan_info;if(H)Y.connInfo=H;if(Q)Y.chanInfo=Q}return{clients:J}})}presenceStats($){return m1(this,void 0,void 0,function*(){let Z={presence_stats:{channel:$}};yield this._methodCall();let G=yield this._callPromise(Z,(J)=>{return J.presence_stats});return{numUsers:G.num_users,numClients:G.num_clients}})}startBatching(){this._batching=!0}stopBatching(){let $=this;Promise.resolve().then(function(){Promise.resolve().then(function(){$._batching=!1,$._flush()})})}_debug(...$){if(!this._debugEnabled)return;yL("debug",$)}_codecName(){return this._codec.name()}_formatOverride(){return}_configure(){if(!("Promise"in globalThis))throw Error("Promise polyfill required");if(!this._endpoint)throw Error("endpoint configuration required");if(this._config.token!==null)this._token=this._config.token;if(this._config.data!==null)this._data=this._config.data;if(this._codec=new E$,this._formatOverride(),this._config.debug===!0||typeof localStorage<"u"&&typeof localStorage.getItem==="function"&&localStorage.getItem("centrifuge.debug"))this._debugEnabled=!0;if(this._debug("config",this._config),typeof this._endpoint==="string");else if(Array.isArray(this._endpoint)){this._transports=this._endpoint,this._emulation=!0;for(let $ in this._transports)if(this._transports.hasOwnProperty($)){let Z=this._transports[$];if(!Z.endpoint||!Z.transport)throw Error("malformed transport configuration");let G=Z.transport;if(["websocket","http_stream","sse","sockjs","webtransport"].indexOf(G)<0)throw Error("unsupported transport name: "+G)}}else throw Error("unsupported url configuration type: only string or array of objects are supported")}_setState($){if(this.state!==$){this._reconnecting=!1;let Z=this.state;return this.state=$,this.emit("state",{newState:$,oldState:Z}),!0}return!1}_isDisconnected(){return this.state===R1.Disconnected}_isConnecting(){return this.state===R1.Connecting}_isConnected(){return this.state===R1.Connected}_nextCommandId(){return++this._commandId}_setNetworkEvents(){if(this._networkEventsSet)return;let $=null;if(this._config.networkEventTarget!==null)$=this._config.networkEventTarget;else if(typeof globalThis.addEventListener<"u")$=globalThis;if($)$.addEventListener("offline",()=>{if(this._debug("offline event triggered"),this.state===R1.Connected||this.state===R1.Connecting)this._disconnect(q5.transportClosed,"transport closed",!0),this._deviceWentOffline=!0}),$.addEventListener("online",()=>{if(this._debug("online event triggered"),this.state!==R1.Connecting)return;if(this._deviceWentOffline&&!this._transportClosed)this._deviceWentOffline=!1,this._transportClosed=!0;this._clearReconnectTimeout(),this._startReconnecting()}),this._networkEventsSet=!0}_getReconnectDelay(){let $=L8(this._reconnectAttempts,this._config.minReconnectDelay,this._config.maxReconnectDelay);return this._reconnectAttempts+=1,$}_clearOutgoingRequests(){for(let $ in this._callbacks)if(this._callbacks.hasOwnProperty($)){let Z=this._callbacks[$];clearTimeout(Z.timeout);let G=Z.errback;if(!G)continue;G({error:this._createErrorObject(U1.connectionClosed,"connection closed")})}this._callbacks={}}_clearConnectedState(){this._client=null,this._clearServerPingTimeout(),this._clearRefreshTimeout();for(let $ in this._subs){if(!this._subs.hasOwnProperty($))continue;let Z=this._subs[$];if(Z.state===l1.Subscribed)Z._setSubscribing(U8.transportClosed,"transport closed")}for(let $ in this._serverSubs)if(this._serverSubs.hasOwnProperty($))this.emit("subscribing",{channel:$})}_handleWriteError($){for(let Z of $){let G=Z.id;if(!(G in this._callbacks))continue;let J=this._callbacks[G];clearTimeout(this._callbacks[G].timeout),delete this._callbacks[G];let X=J.errback;X({error:this._createErrorObject(U1.transportWriteError,"transport write error")})}}_transportSendCommands($){if(!$.length)return!0;if(!this._transport)return!1;try{this._transport.send(this._codec.encodeCommands($),this._session,this._node)}catch(Z){return this._debug("error writing commands",Z),this._handleWriteError($),!1}return!0}_initializeTransport(){let $;if(this._config.websocket!==null)$=this._config.websocket;else if(!(typeof globalThis.WebSocket!=="function"&&typeof globalThis.WebSocket!=="object"))$=globalThis.WebSocket;let Z=null;if(this._config.sockjs!==null)Z=this._config.sockjs;else if(typeof globalThis.SockJS<"u")Z=globalThis.SockJS;let G=null;if(this._config.eventsource!==null)G=this._config.eventsource;else if(typeof globalThis.EventSource<"u")G=globalThis.EventSource;let J=null;if(this._config.fetch!==null)J=this._config.fetch;else if(typeof globalThis.fetch<"u")J=globalThis.fetch;let X=null;if(this._config.readableStream!==null)X=this._config.readableStream;else if(typeof globalThis.ReadableStream<"u")X=globalThis.ReadableStream;if(!this._emulation){if(gL(this._endpoint,"http"))throw Error("Provide explicit transport endpoints configuration in case of using HTTP (i.e. using array of TransportEndpoint instead of a single string), or use ws(s):// scheme in an endpoint if you aimed using WebSocket transport");else if(this._debug("client will use websocket"),this._transport=new w$(this._endpoint,{websocket:$}),!this._transport.supported())throw Error("WebSocket constructor not found, make sure it is available globally or passed as a dependency in Centrifuge options")}else{if(this._currentTransportIndex>=this._transports.length)this._triedAllTransports=!0,this._currentTransportIndex=0;let z=0;while(!0){if(z>=this._transports.length)throw Error("no supported transport found");let L=this._transports[this._currentTransportIndex],V=L.transport,B=L.endpoint;if(V==="websocket"){if(this._debug("trying websocket transport"),this._transport=new w$(B,{websocket:$}),!this._transport.supported()){this._debug("websocket transport not available"),this._currentTransportIndex++,z++;continue}}else if(V==="webtransport"){if(this._debug("trying webtransport transport"),this._transport=new XX(B,{webtransport:globalThis.WebTransport,decoder:this._codec,encoder:this._codec}),!this._transport.supported()){this._debug("webtransport transport not available"),this._currentTransportIndex++,z++;continue}}else if(V==="http_stream"){if(this._debug("trying http_stream transport"),this._transport=new GX(B,{fetch:J,readableStream:X,emulationEndpoint:this._config.emulationEndpoint,decoder:this._codec,encoder:this._codec}),!this._transport.supported()){this._debug("http_stream transport not available"),this._currentTransportIndex++,z++;continue}}else if(V==="sse"){if(this._debug("trying sse transport"),this._transport=new JX(B,{eventsource:G,fetch:J,emulationEndpoint:this._config.emulationEndpoint}),!this._transport.supported()){this._debug("sse transport not available"),this._currentTransportIndex++,z++;continue}}else if(V==="sockjs"){if(this._debug("trying sockjs"),this._transport=new ZX(B,{sockjs:Z,sockjsOptions:this._config.sockjsOptions}),!this._transport.supported()){this._debug("sockjs transport not available"),this._currentTransportIndex++,z++;continue}}else throw Error("unknown transport "+V);break}}let Y=this,H=this._transport,Q=this._nextTransportId();Y._debug("id of transport",Q);let q=!1,U=[];if(this._transport.emulation()){let z=Y._sendConnect(!0);U.push(z)}this._setNetworkEvents();let K=this._codec.encodeCommands(U);this._transportClosed=!1;let W;W=setTimeout(function(){H.close()},this._config.timeout),this._transport.initialize(this._codecName(),{onOpen:function(){if(W)clearTimeout(W),W=null;if(Y._transportId!=Q){Y._debug("open callback from non-actual transport"),H.close();return}if(q=!0,Y._debug(H.subName(),"transport open"),H.emulation())return;Y._transportIsOpen=!0,Y._transportWasOpen=!0,Y.startBatching(),Y._sendConnect(!1),Y._sendSubscribeCommands(),Y.stopBatching(),Y.emit("__centrifuge_debug:connect_frame_sent",{})},onError:function(z){if(Y._transportId!=Q){Y._debug("error callback from non-actual transport");return}Y._debug("transport level error",z)},onClose:function(z){if(W)clearTimeout(W),W=null;if(Y._transportId!=Q){Y._debug("close callback from non-actual transport");return}Y._debug(H.subName(),"transport closed"),Y._transportClosed=!0,Y._transportIsOpen=!1;let L="connection closed",V=!0,B=0;if(z&&"code"in z&&z.code)B=z.code;if(z&&z.reason)try{let I=JSON.parse(z.reason);L=I.reason,V=I.reconnect}catch(I){if(L=z.reason,B>=3500&&B<4000||B>=4500&&B<5000)V=!1}if(B<3000){if(B===1009)B=$7.messageSizeLimit,L="message size limit exceeded",V=!1;else B=q5.transportClosed,L="transport closed";if(Y._emulation&&!Y._transportWasOpen){if(Y._currentTransportIndex++,Y._currentTransportIndex>=Y._transports.length)Y._triedAllTransports=!0,Y._currentTransportIndex=0}}else Y._transportWasOpen=!0;if(Y._isConnecting()&&!q)Y.emit("error",{type:"transport",error:{code:U1.transportClosed,message:"transport closed"},transport:H.name()});Y._reconnecting=!1,Y._disconnect(B,L,V)},onMessage:function(z){Y._dataReceived(z)}},K),Y.emit("__centrifuge_debug:transport_initialized",{})}_sendConnect($){let Z=this._constructConnectCommand(),G=this;return this._call(Z,$).then((J)=>{let X=J.reply.connect;if(G._connectResponse(X),J.next)J.next()},(J)=>{if(G._connectError(J.error),J.next)J.next()}),Z}_startReconnecting(){if(this._debug("start reconnecting"),!this._isConnecting()){this._debug("stop reconnecting: client not in connecting state");return}if(this._reconnecting){this._debug("reconnect already in progress, return from reconnect routine");return}if(this._transportClosed===!1){this._debug("waiting for transport close");return}this._reconnecting=!0;let $=this._token==="";if(!(this._refreshRequired||$&&this._config.getToken!==null)){if(this._config.getData)this._config.getData().then((J)=>{if(!this._isConnecting())return;this._data=J,this._initializeTransport()}).catch((J)=>this._handleGetDataError(J));else this._initializeTransport();return}let G=this;this._getToken().then(function(J){if(!G._isConnecting())return;if(J==null||J==null){G._failUnauthorized();return}if(G._token=J,G._debug("connection token refreshed"),G._config.getData)G._config.getData().then(function(X){if(!G._isConnecting())return;G._data=X,G._initializeTransport()}).catch((X)=>G._handleGetDataError(X));else G._initializeTransport()}).catch(function(J){if(!G._isConnecting())return;if(J instanceof v0){G._failUnauthorized();return}G.emit("error",{type:"connectToken",error:{code:U1.clientConnectToken,message:J!==void 0?J.toString():""}});let X=G._getReconnectDelay();G._debug("error on getting connection token, reconnect after "+X+" milliseconds",J),G._reconnecting=!1,G._reconnectTimeout=setTimeout(()=>{G._startReconnecting()},X)})}_handleGetDataError($){if($ instanceof v0){this._failUnauthorized();return}this.emit("error",{type:"connectData",error:{code:U1.badConfiguration,message:($===null||$===void 0?void 0:$.toString())||""}});let Z=this._getReconnectDelay();this._debug("error on getting connect data, reconnect after "+Z+" milliseconds",$),this._reconnecting=!1,this._reconnectTimeout=setTimeout(()=>{this._startReconnecting()},Z)}_connectError($){if(this.state!==R1.Connecting)return;if($.code===109)this._refreshRequired=!0;if($.code<100||$.temporary===!0||$.code===109)this.emit("error",{type:"connect",error:$}),this._debug("closing transport due to connect error"),this._disconnect($.code,$.message,!0);else this._disconnect($.code,$.message,!1)}_scheduleReconnect(){if(!this._isConnecting())return;let $=!1;if(this._emulation&&!this._transportWasOpen&&!this._triedAllTransports)$=!0;let Z=this._getReconnectDelay();if($)Z=0;this._debug("reconnect after "+Z+" milliseconds"),this._clearReconnectTimeout(),this._reconnectTimeout=setTimeout(()=>{this._startReconnecting()},Z)}_constructConnectCommand(){let $={};if(this._token)$.token=this._token;if(this._data)$.data=this._data;if(this._config.name)$.name=this._config.name;if(this._config.version)$.version=this._config.version;if(Object.keys(this._config.headers).length>0)$.headers=this._config.headers;let Z={},G=!1;for(let J in this._serverSubs)if(this._serverSubs.hasOwnProperty(J)&&this._serverSubs[J].recoverable){G=!0;let X={recover:!0};if(this._serverSubs[J].offset)X.offset=this._serverSubs[J].offset;if(this._serverSubs[J].epoch)X.epoch=this._serverSubs[J].epoch;Z[J]=X}if(G)$.subs=Z;return{connect:$}}_getHistoryRequest($,Z){let G={channel:$};if(Z!==void 0){if(Z.since){if(G.since={offset:Z.since.offset},Z.since.epoch)G.since.epoch=Z.since.epoch}if(Z.limit!==void 0)G.limit=Z.limit;if(Z.reverse===!0)G.reverse=!0}return G}_methodCall(){if(this._isConnected())return Promise.resolve();return new Promise(($,Z)=>{let G=setTimeout(function(){Z({code:U1.timeout,message:"timeout"})},this._config.timeout);this._promises[this._nextPromiseId()]={timeout:G,resolve:$,reject:Z}})}_callPromise($,Z){return new Promise((G,J)=>{this._call($,!1).then((X)=>{var Y;let H=Z(X.reply);G(H),(Y=X.next)===null||Y===void 0||Y.call(X)},(X)=>{var Y;J(X.error),(Y=X.next)===null||Y===void 0||Y.call(X)})})}_dataReceived($){if(this._serverPing>0)this._waitServerPing();let Z=this._codec.decodeReplies($);this._dispatchPromise=this._dispatchPromise.then(()=>{let G;this._dispatchPromise=new Promise((J)=>{G=J}),this._dispatchSynchronized(Z,G)})}_dispatchSynchronized($,Z){let G=Promise.resolve();for(let J in $)if($.hasOwnProperty(J))G=G.then(()=>{return this._dispatchReply($[J])});G=G.then(()=>{Z()})}_dispatchReply($){let Z,G=new Promise((X)=>{Z=X});if($===void 0||$===null)return this._debug("dispatch: got undefined or null reply"),Z(),G;let J=$.id;if(J&&J>0)this._handleReply($,Z);else if(!$.push)this._handleServerPing(Z);else this._handlePush($.push,Z);return G}_call($,Z){return new Promise((G,J)=>{if($.id=this._nextCommandId(),this._registerCall($.id,G,J),!Z)this._addCommand($)})}_startConnecting(){if(this._debug("start connecting"),this._setState(R1.Connecting))this.emit("connecting",{code:q5.connectCalled,reason:"connect called"});this._client=null,this._startReconnecting()}_disconnect($,Z,G){if(this._isDisconnected())return;this._transportIsOpen=!1;let J=this.state;this._reconnecting=!1;let X={code:$,reason:Z},Y=!1;if(G)Y=this._setState(R1.Connecting);else Y=this._setState(R1.Disconnected),this._rejectPromises({code:U1.clientDisconnected,message:"disconnected"});if(this._clearOutgoingRequests(),J===R1.Connecting)this._clearReconnectTimeout();if(J===R1.Connected)this._clearConnectedState();if(Y)if(this._isConnecting())this.emit("connecting",X);else this.emit("disconnected",X);if(this._transport){this._debug("closing existing transport");let H=this._transport;this._transport=null,H.close(),this._transportClosed=!0,this._nextTransportId()}else this._debug("no transport to close");this._scheduleReconnect()}_failUnauthorized(){this._disconnect($7.unauthorized,"unauthorized",!1)}_getToken(){if(this._debug("get connection token"),!this._config.getToken)return this.emit("error",{type:"configuration",error:{code:U1.badConfiguration,message:"token expired but no getToken function set in the configuration"}}),Promise.reject(new v0(""));return this._config.getToken({})}_refresh(){let $=this._client,Z=this;this._getToken().then(function(G){if($!==Z._client)return;if(!G){Z._failUnauthorized();return}if(Z._token=G,Z._debug("connection token refreshed"),!Z._isConnected())return;let J={refresh:{token:Z._token}};Z._call(J,!1).then((X)=>{let Y=X.reply.refresh;if(Z._refreshResponse(Y),X.next)X.next()},(X)=>{if(Z._refreshError(X.error),X.next)X.next()})}).catch(function(G){if(!Z._isConnected())return;if(G instanceof v0){Z._failUnauthorized();return}Z.emit("error",{type:"refreshToken",error:{code:U1.clientRefreshToken,message:G!==void 0?G.toString():""}}),Z._refreshTimeout=setTimeout(()=>Z._refresh(),Z._getRefreshRetryDelay())})}_refreshError($){if($.code<100||$.temporary===!0)this.emit("error",{type:"refresh",error:$}),this._refreshTimeout=setTimeout(()=>this._refresh(),this._getRefreshRetryDelay());else this._disconnect($.code,$.message,!1)}_getRefreshRetryDelay(){return L8(0,5000,1e4)}_refreshResponse($){if(this._refreshTimeout)clearTimeout(this._refreshTimeout),this._refreshTimeout=null;if($.expires)this._client=$.client,this._refreshTimeout=setTimeout(()=>this._refresh(),z8($.ttl))}_removeSubscription($){if($===null)return;delete this._subs[$.channel]}_unsubscribe($){if(!this._transportIsOpen)return Promise.resolve();let G={unsubscribe:{channel:$.channel}},J=this;return new Promise((Y,H)=>{this._call(G,!1).then((Q)=>{if(Y(),Q.next)Q.next()},(Q)=>{if(Y(),Q.next)Q.next();J._disconnect(q5.unsubscribeError,"unsubscribe error",!0)})})}_getSub($,Z){if(Z&&Z>0){for(let J in this._subs)if(this._subs.hasOwnProperty(J)){let X=this._subs[J];if(X._id===Z)return X}return null}let G=this._subs[$];if(!G)return null;return G}_isServerSub($){return this._serverSubs[$]!==void 0}_sendSubscribeCommands(){let $=[];for(let Z in this._subs){if(!this._subs.hasOwnProperty(Z))continue;let G=this._subs[Z];if(G._inflight===!0)continue;if(G.state===l1.Subscribing){let J=G._subscribe();if(J)$.push(J)}}return $}_connectResponse($){if(this._transportIsOpen=!0,this._transportWasOpen=!0,this._reconnectAttempts=0,this._refreshRequired=!1,this._isConnected())return;if(this._client=$.client,this._setState(R1.Connected),this._refreshTimeout)clearTimeout(this._refreshTimeout);if($.expires)this._refreshTimeout=setTimeout(()=>this._refresh(),z8($.ttl));this._session=$.session,this._node=$.node,this.startBatching(),this._sendSubscribeCommands(),this.stopBatching();let Z={client:$.client,transport:this._transport.subName()};if($.data)Z.data=$.data;if(this.emit("connected",Z),this._resolvePromises(),this._processServerSubs($.subs||{}),$.ping&&$.ping>0)this._serverPing=$.ping*1000,this._sendPong=$.pong===!0,this._waitServerPing();else this._serverPing=0}_processServerSubs($){for(let Z in $){if(!$.hasOwnProperty(Z))continue;let G=$[Z];this._serverSubs[Z]={offset:G.offset,epoch:G.epoch,recoverable:G.recoverable||!1};let J=this._getSubscribeContext(Z,G);this.emit("subscribed",J)}for(let Z in $){if(!$.hasOwnProperty(Z))continue;let G=$[Z];if(G.recovered){let J=G.publications;if(J&&J.length>0){for(let X in J)if(J.hasOwnProperty(X))this._handlePublication(Z,J[X])}}}for(let Z in this._serverSubs){if(!this._serverSubs.hasOwnProperty(Z))continue;if(!$[Z])this.emit("unsubscribed",{channel:Z}),delete this._serverSubs[Z]}}_clearRefreshTimeout(){if(this._refreshTimeout!==null)clearTimeout(this._refreshTimeout),this._refreshTimeout=null}_clearReconnectTimeout(){if(this._reconnectTimeout!==null)clearTimeout(this._reconnectTimeout),this._reconnectTimeout=null}_clearServerPingTimeout(){if(this._serverPingTimeout!==null)clearTimeout(this._serverPingTimeout),this._serverPingTimeout=null}_waitServerPing(){if(this._config.maxServerPingDelay===0)return;if(!this._isConnected())return;this._clearServerPingTimeout(),this._serverPingTimeout=setTimeout(()=>{if(!this._isConnected())return;this._disconnect(q5.noPing,"no ping",!0)},this._serverPing+this._config.maxServerPingDelay)}_getSubscribeContext($,Z){let G={channel:$,positioned:!1,recoverable:!1,wasRecovering:!1,recovered:!1,hasRecoveredPublications:!1};if(Z.recovered)G.recovered=!0;if(Z.positioned)G.positioned=!0;if(Z.recoverable)G.recoverable=!0;if(Z.was_recovering)G.wasRecovering=!0;let J="";if("epoch"in Z)J=Z.epoch;let X=0;if("offset"in Z)X=Z.offset;if(G.positioned||G.recoverable)G.streamPosition={offset:X,epoch:J};if(Array.isArray(Z.publications)&&Z.publications.length>0)G.hasRecoveredPublications=!0;if(Z.data)G.data=Z.data;return G}_handleReply($,Z){let G=$.id;if(!(G in this._callbacks)){Z();return}let J=this._callbacks[G];if(clearTimeout(this._callbacks[G].timeout),delete this._callbacks[G],!xL($)){let X=J.callback;if(!X)return;X({reply:$,next:Z})}else{let X=J.errback;if(!X){Z();return}let Y={code:$.error.code,message:$.error.message||"",temporary:$.error.temporary||!1};X({error:Y,next:Z})}}_handleJoin($,Z,G){let J=this._getSub($,G);if(!J&&$){if(this._isServerSub($)){let X={channel:$,info:this._getJoinLeaveContext(Z.info)};this.emit("join",X)}return}J._handleJoin(Z)}_handleLeave($,Z,G){let J=this._getSub($,G);if(!J&&$){if(this._isServerSub($)){let X={channel:$,info:this._getJoinLeaveContext(Z.info)};this.emit("leave",X)}return}J._handleLeave(Z)}_handleUnsubscribe($,Z){let G=this._getSub($,0);if(!G&&$){if(this._isServerSub($))delete this._serverSubs[$],this.emit("unsubscribed",{channel:$});return}if(Z.code<2500)G._setUnsubscribed(Z.code,Z.reason,!1);else G._setSubscribing(Z.code,Z.reason)}_handleSubscribe($,Z){this._serverSubs[$]={offset:Z.offset,epoch:Z.epoch,recoverable:Z.recoverable||!1},this.emit("subscribed",this._getSubscribeContext($,Z))}_handleDisconnect($){let Z=$.code,G=!0;if(Z>=3500&&Z<4000||Z>=4500&&Z<5000)G=!1;this._disconnect(Z,$.reason,G)}_getPublicationContext($,Z){let G={channel:$,data:Z.data};if(Z.offset)G.offset=Z.offset;if(Z.info)G.info=this._getJoinLeaveContext(Z.info);if(Z.tags)G.tags=Z.tags;return G}_getJoinLeaveContext($){let Z={client:$.client,user:$.user},G=$.conn_info;if(G)Z.connInfo=G;let J=$.chan_info;if(J)Z.chanInfo=J;return Z}_handlePublication($,Z,G){let J=this._getSub($,G);if(!J&&$){if(this._isServerSub($)){let X=this._getPublicationContext($,Z);if(this.emit("publication",X),Z.offset!==void 0)this._serverSubs[$].offset=Z.offset}return}J._handlePublication(Z)}_handleMessage($){this.emit("message",{data:$.data})}_handleServerPing($){if(this._sendPong){let Z={};this._transportSendCommands([Z])}$()}_handlePush($,Z){let{channel:G,id:J}=$;if($.pub)this._handlePublication(G,$.pub,J);else if($.message)this._handleMessage($.message);else if($.join)this._handleJoin(G,$.join,J);else if($.leave)this._handleLeave(G,$.leave,J);else if($.unsubscribe)this._handleUnsubscribe(G,$.unsubscribe);else if($.subscribe)this._handleSubscribe(G,$.subscribe);else if($.disconnect)this._handleDisconnect($.disconnect);Z()}_flush(){let $=this._commands.slice(0);this._commands=[],this._transportSendCommands($)}_createErrorObject($,Z,G){let J={code:$,message:Z};if(G)J.temporary=!0;return J}_registerCall($,Z,G){this._callbacks[$]={callback:Z,errback:G,timeout:null},this._callbacks[$].timeout=setTimeout(()=>{if(delete this._callbacks[$],e2(G))G({error:this._createErrorObject(U1.timeout,"timeout")})},this._config.timeout)}_addCommand($){if(this._batching)this._commands.push($);else this._transportSendCommands([$])}_nextPromiseId(){return++this._promiseId}_nextTransportId(){return++this._transportId}_resolvePromises(){for(let $ in this._promises){if(!this._promises.hasOwnProperty($))continue;if(this._promises[$].timeout)clearTimeout(this._promises[$].timeout);this._promises[$].resolve(),delete this._promises[$]}}_rejectPromises($){for(let Z in this._promises){if(!this._promises.hasOwnProperty(Z))continue;if(this._promises[Z].timeout)clearTimeout(this._promises[Z].timeout);this._promises[Z].reject($),delete this._promises[Z]}}}Z7.SubscriptionState=l1;Z7.State=R1;Z7.UnauthorizedError=v0;var fL=QX.createContext(null),qX=fL;var k$=e(WX(),1);var I0=Object.create(null);I0.open="0";I0.close="1";I0.ping="2";I0.pong="3";I0.message="4";I0.upgrade="5";I0.noop="6";var G7=Object.create(null);Object.keys(I0).forEach(($)=>{G7[I0[$]]=$});var J7={type:"error",data:"parser error"};var X7=({type:$,data:Z},G,J)=>{if(Z instanceof ArrayBuffer||ArrayBuffer.isView(Z))return J(G?Z:"b"+LX(Z,!0).toString("base64"));return J(I0[$]+(Z||""))},LX=($,Z)=>{if(Buffer.isBuffer($)||$ instanceof Uint8Array&&!Z)return $;else if($ instanceof ArrayBuffer)return Buffer.from($);else return Buffer.from($.buffer,$.byteOffset,$.byteLength)},_$;function zX($,Z){if($.data instanceof ArrayBuffer||ArrayBuffer.isView($.data))return Z(LX($.data,!1));X7($,!0,(G)=>{if(!_$)_$=new TextEncoder;Z(_$.encode(G))})}var Y7=($,Z)=>{if(typeof $!=="string")return{type:"message",data:AX($,Z)};let G=$.charAt(0);if(G==="b"){let J=Buffer.from($.substring(1),"base64");return{type:"message",data:AX(J,Z)}}if(!G7[G])return J7;return $.length>1?{type:G7[G],data:$.substring(1)}:{type:G7[G]}},AX=($,Z)=>{switch(Z){case"arraybuffer":if($ instanceof ArrayBuffer)return $;else if(Buffer.isBuffer($))return $.buffer.slice($.byteOffset,$.byteOffset+$.byteLength);else return $.buffer;case"nodebuffer":default:if(Buffer.isBuffer($))return $;else return Buffer.from($)}};var NX=String.fromCharCode(30),BX=($,Z)=>{let G=$.length,J=Array(G),X=0;$.forEach((Y,H)=>{X7(Y,!1,(Q)=>{if(J[H]=Q,++X===G)Z(J.join(NX))})})},VX=($,Z)=>{let G=$.split(NX),J=[];for(let X=0;X<G.length;X++){let Y=Y7(G[X],Z);if(J.push(Y),Y.type==="error")break}return J};function FX(){return new TransformStream({transform($,Z){zX($,(G)=>{let J=G.length,X;if(J<126)X=new Uint8Array(1),new DataView(X.buffer).setUint8(0,J);else if(J<65536){X=new Uint8Array(3);let Y=new DataView(X.buffer);Y.setUint8(0,126),Y.setUint16(1,J)}else{X=new Uint8Array(9);let Y=new DataView(X.buffer);Y.setUint8(0,127),Y.setBigUint64(1,BigInt(J))}if($.data&&typeof $.data!=="string")X[0]|=128;Z.enqueue(X),Z.enqueue(G)})}})}var C$;function N8($){return $.reduce((Z,G)=>Z+G.length,0)}function B8($,Z){if($[0].length===Z)return $.shift();let G=new Uint8Array(Z),J=0;for(let X=0;X<Z;X++)if(G[X]=$[0][J++],J===$[0].length)$.shift(),J=0;if($.length&&J<$[0].length)$[0]=$[0].slice(J);return G}function RX($,Z){if(!C$)C$=new TextDecoder;let G=[],J=0,X=-1,Y=!1;return new TransformStream({transform(H,Q){G.push(H);while(!0){if(J===0){if(N8(G)<1)break;let q=B8(G,1);if(Y=(q[0]&128)===128,X=q[0]&127,X<126)J=3;else if(X===126)J=1;else J=2}else if(J===1){if(N8(G)<2)break;let q=B8(G,2);X=new DataView(q.buffer,q.byteOffset,q.length).getUint16(0),J=3}else if(J===2){if(N8(G)<8)break;let q=B8(G,8),U=new DataView(q.buffer,q.byteOffset,q.length),K=U.getUint32(0);if(K>Math.pow(2,21)-1){Q.enqueue(J7);break}X=K*Math.pow(2,32)+U.getUint32(4),J=3}else{if(N8(G)<X)break;let q=B8(G,X);Q.enqueue(Y7(Y?q:C$.decode(q),Z)),J=0}if(X===0||X>$){Q.enqueue(J7);break}}}})}var g$=4;var yX=e(x5(),1);var a0=process.nextTick,c1=global,MX="nodebuffer";function DX(){return new IX}function lL($){let Z=$.split("; "),G=Z[0].indexOf("=");if(G===-1)return;let J=Z[0].substring(0,G).trim();if(!J.length)return;let X=Z[0].substring(G+1).trim();if(X.charCodeAt(0)===34)X=X.slice(1,-1);let Y={name:J,value:X};for(let H=1;H<Z.length;H++){let Q=Z[H].split("=");if(Q.length!==2)continue;let q=Q[0].trim(),U=Q[1].trim();switch(q){case"Expires":Y.expires=new Date(U);break;case"Max-Age":let K=new Date;K.setUTCSeconds(K.getUTCSeconds()+parseInt(U,10)),Y.expires=K;break;default:}}return Y}class IX{constructor(){this._cookies=new Map}parseCookies($){if(!$)return;$.forEach((Z)=>{let G=lL(Z);if(G)this._cookies.set(G.name,G)})}get cookies(){let $=Date.now();return this._cookies.forEach((Z,G)=>{var J;if(((J=Z.expires)===null||J===void 0?void 0:J.getTime())<$)this._cookies.delete(G)}),this._cookies.entries()}addCookies($){let Z=[];for(let[G,J]of this.cookies)Z.push(`${G}=${J.value}`);if(Z.length)$.setDisableHeaderCheck(!0),$.setRequestHeader("cookie",Z.join("; "))}appendCookies($){for(let[Z,G]of this.cookies)$.append("cookie",`${Z}=${G.value}`)}}function V8($,...Z){return Z.reduce((G,J)=>{if($.hasOwnProperty(J))G[J]=$[J];return G},{})}var iL=c1.setTimeout,cL=c1.clearTimeout;function n0($,Z){if(Z.useNativeTimers)$.setTimeoutFn=iL.bind(c1),$.clearTimeoutFn=cL.bind(c1);else $.setTimeoutFn=c1.setTimeout.bind(c1),$.clearTimeoutFn=c1.clearTimeout.bind(c1)}var dL=1.33;function PX($){if(typeof $==="string")return rL($);return Math.ceil(($.byteLength||$.size)*dL)}function rL($){let Z=0,G=0;for(let J=0,X=$.length;J<X;J++)if(Z=$.charCodeAt(J),Z<128)G+=1;else if(Z<2048)G+=2;else if(Z<55296||Z>=57344)G+=3;else J++,G+=4;return G}function F8(){return Date.now().toString(36).substring(3)+Math.random().toString(36).substring(2,5)}function TX($){let Z="";for(let G in $)if($.hasOwnProperty(G)){if(Z.length)Z+="&";Z+=encodeURIComponent(G)+"="+encodeURIComponent($[G])}return Z}function wX($){let Z={},G=$.split("&");for(let J=0,X=G.length;J<X;J++){let Y=G[J].split("=");Z[decodeURIComponent(Y[0])]=decodeURIComponent(Y[1])}return Z}var vX=e(W0(),1),Az=vX.default("engine.io-client:transport");class x$ extends Error{constructor($,Z,G){super($);this.description=Z,this.context=G,this.type="TransportError"}}class K5 extends yX.Emitter{constructor($){super();this.writable=!1,n0(this,$),this.opts=$,this.query=$.query,this.socket=$.socket,this.supportsBinary=!$.forceBase64}onError($,Z,G){return super.emitReserved("error",new x$($,Z,G)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){if(this.readyState==="opening"||this.readyState==="open")this.doClose(),this.onClose();return this}send($){if(this.readyState==="open")this.write($);else Az("transport is not open, discarding packets")}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData($){let Z=Y7($,this.socket.binaryType);this.onPacket(Z)}onPacket($){super.emitReserved("packet",$)}onClose($){this.readyState="closed",super.emitReserved("close",$)}pause($){}createUri($,Z={}){return $+"://"+this._hostname()+this._port()+this.opts.path+this._query(Z)}_hostname(){let $=this.opts.hostname;return $.indexOf(":")===-1?$:"["+$+"]"}_port(){if(this.opts.port&&(this.opts.secure&&Number(this.opts.port)!==443||!this.opts.secure&&Number(this.opts.port)!==80))return":"+this.opts.port;else return""}_query($){let Z=TX($);return Z.length?"?"+Z:""}}var xX=e(W0(),1),P0=xX.default("engine.io-client:polling");class I8 extends K5{constructor(){super(...arguments);this._polling=!1}get name(){return"polling"}doOpen(){this._poll()}pause($){this.readyState="pausing";let Z=()=>{P0("paused"),this.readyState="paused",$()};if(this._polling||!this.writable){let G=0;if(this._polling)P0("we are currently polling - waiting to pause"),G++,this.once("pollComplete",function(){P0("pre-pause polling complete"),--G||Z()});if(!this.writable)P0("we are currently writing - waiting to pause"),G++,this.once("drain",function(){P0("pre-pause writing complete"),--G||Z()})}else Z()}_poll(){P0("polling"),this._polling=!0,this.doPoll(),this.emitReserved("poll")}onData($){P0("polling got data %s",$);let Z=(G)=>{if(this.readyState==="opening"&&G.type==="open")this.onOpen();if(G.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(G)};if(VX($,this.socket.binaryType).forEach(Z),this.readyState!=="closed")if(this._polling=!1,this.emitReserved("pollComplete"),this.readyState==="open")this._poll();else P0('ignoring poll - transport state "%s"',this.readyState)}doClose(){let $=()=>{P0("writing close packet"),this.write([{type:"close"}])};if(this.readyState==="open")P0("transport open - closing"),$();else P0("transport not open - deferring close"),this.once("open",$)}write($){this.writable=!1,BX($,(Z)=>{this.doWrite(Z,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let $=this.opts.secure?"https":"http",Z=this.query||{};if(this.opts.timestampRequests!==!1)Z[this.opts.timestampParam]=F8();if(!this.supportsBinary&&!Z.sid)Z.b64=1;return this.createUri($,Z)}}var mX=e(x5(),1);var hX=!1;try{hX=typeof XMLHttpRequest<"u"&&"withCredentials"in new XMLHttpRequest}catch($){}var bX=hX;var fX=e(W0(),1),h$=fX.default("engine.io-client:polling");function Nz(){}class b$ extends I8{constructor($){super($);if(typeof location<"u"){let Z=location.protocol==="https:",G=location.port;if(!G)G=Z?"443":"80";this.xd=typeof location<"u"&&$.hostname!==location.hostname||G!==$.port}}doWrite($,Z){let G=this.request({method:"POST",data:$});G.on("success",Z),G.on("error",(J,X)=>{this.onError("xhr post error",J,X)})}doPoll(){h$("xhr poll");let $=this.request();$.on("data",this.onData.bind(this)),$.on("error",(Z,G)=>{this.onError("xhr poll error",Z,G)}),this.pollXhr=$}}class T0 extends mX.Emitter{constructor($,Z,G){super();this.createRequest=$,n0(this,G),this._opts=G,this._method=G.method||"GET",this._uri=Z,this._data=G.data!==void 0?G.data:null,this._create()}_create(){var $;let Z=V8(this._opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");Z.xdomain=!!this._opts.xd;let G=this._xhr=this.createRequest(Z);try{h$("xhr open %s: %s",this._method,this._uri),G.open(this._method,this._uri,!0);try{if(this._opts.extraHeaders){G.setDisableHeaderCheck&&G.setDisableHeaderCheck(!0);for(let J in this._opts.extraHeaders)if(this._opts.extraHeaders.hasOwnProperty(J))G.setRequestHeader(J,this._opts.extraHeaders[J])}}catch(J){}if(this._method==="POST")try{G.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(J){}try{G.setRequestHeader("Accept","*/*")}catch(J){}if(($=this._opts.cookieJar)===null||$===void 0||$.addCookies(G),"withCredentials"in G)G.withCredentials=this._opts.withCredentials;if(this._opts.requestTimeout)G.timeout=this._opts.requestTimeout;G.onreadystatechange=()=>{var J;if(G.readyState===3)(J=this._opts.cookieJar)===null||J===void 0||J.parseCookies(G.getResponseHeader("set-cookie"));if(G.readyState!==4)return;if(G.status===200||G.status===1223)this._onLoad();else this.setTimeoutFn(()=>{this._onError(typeof G.status==="number"?G.status:0)},0)},h$("xhr data %s",this._data),G.send(this._data)}catch(J){this.setTimeoutFn(()=>{this._onError(J)},0);return}if(typeof document<"u")this._index=T0.requestsCount++,T0.requests[this._index]=this}_onError($){this.emitReserved("error",$,this._xhr),this._cleanup(!0)}_cleanup($){if(typeof this._xhr>"u"||this._xhr===null)return;if(this._xhr.onreadystatechange=Nz,$)try{this._xhr.abort()}catch(Z){}if(typeof document<"u")delete T0.requests[this._index];this._xhr=null}_onLoad(){let $=this._xhr.responseText;if($!==null)this.emitReserved("data",$),this.emitReserved("success"),this._cleanup()}abort(){this._cleanup()}}T0.requestsCount=0;T0.requests={};if(typeof document<"u"){if(typeof attachEvent==="function")attachEvent("onunload",kX);else if(typeof addEventListener==="function"){let $="onpagehide"in c1?"pagehide":"unload";addEventListener($,kX,!1)}}function kX(){for(let $ in T0.requests)if(T0.requests.hasOwnProperty($))T0.requests[$].abort()}var Vj=function(){let $=Bz({xdomain:!1});return $&&$.responseType!==null}();function Bz($){let Z=$.xdomain;try{if(typeof XMLHttpRequest<"u"&&(!Z||bX))return new XMLHttpRequest}catch(G){}if(!Z)try{return new c1[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP")}catch(G){}}var Vz=k$.default||k$;class H7 extends b${request($={}){var Z;return Object.assign($,{xd:this.xd,cookieJar:(Z=this.socket)===null||Z===void 0?void 0:Z._cookieJar},this.opts),new T0((G)=>new Vz(G),this.uri(),$)}}var xA=e(xY(),1),hA=e(i$(),1),bA=e(d$(),1),e$=e(v8(),1),kA=e(pY(),1);var lY=e(W0(),1),fA=lY.default("engine.io-client:websocket"),uA=typeof navigator<"u"&&typeof navigator.product==="string"&&navigator.product.toLowerCase()==="reactnative";class $Z extends K5{get name(){return"websocket"}doOpen(){let $=this.uri(),Z=this.opts.protocols,G=uA?{}:V8(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");if(this.opts.extraHeaders)G.headers=this.opts.extraHeaders;try{this.ws=this.createSocket($,Z,G)}catch(J){return this.emitReserved("error",J)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{if(this.opts.autoUnref)this.ws._socket.unref();this.onOpen()},this.ws.onclose=($)=>this.onClose({description:"websocket connection closed",context:$}),this.ws.onmessage=($)=>this.onData($.data),this.ws.onerror=($)=>this.onError("websocket error",$)}write($){this.writable=!1;for(let Z=0;Z<$.length;Z++){let G=$[Z],J=Z===$.length-1;X7(G,this.supportsBinary,(X)=>{try{this.doWrite(G,X)}catch(Y){fA("websocket closed before onclose event")}if(J)a0(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){if(typeof this.ws<"u")this.ws.onerror=()=>{},this.ws.close(),this.ws=null}uri(){let $=this.opts.secure?"wss":"ws",Z=this.query||{};if(this.opts.timestampRequests)Z[this.opts.timestampParam]=F8();if(!this.supportsBinary)Z.b64=1;return this.createUri($,Z)}}var lj=c1.WebSocket||c1.MozWebSocket;class N7 extends $Z{createSocket($,Z,G){var J;if((J=this.socket)===null||J===void 0?void 0:J._cookieJar){G.headers=G.headers||{},G.headers.cookie=typeof G.headers.cookie==="string"?[G.headers.cookie]:G.headers.cookie||[];for(let[X,Y]of this.socket._cookieJar.cookies)G.headers.cookie.push(`${X}=${Y.value}`)}return new e$.default($,Z,G)}doWrite($,Z){let G={};if($.options)G.compress=$.options.compress;if(this.opts.perMessageDeflate){if((typeof Z==="string"?Buffer.byteLength(Z):Z.length)<this.opts.perMessageDeflate.threshold)G.compress=!1}this.ws.send(Z,G)}}var iY=e(W0(),1),B7=iY.default("engine.io-client:webtransport");class V7 extends K5{get name(){return"webtransport"}doOpen(){try{this._transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name])}catch($){return this.emitReserved("error",$)}this._transport.closed.then(()=>{B7("transport closed gracefully"),this.onClose()}).catch(($)=>{B7("transport closed due to %s",$),this.onError("webtransport error",$)}),this._transport.ready.then(()=>{this._transport.createBidirectionalStream().then(($)=>{let Z=RX(Number.MAX_SAFE_INTEGER,this.socket.binaryType),G=$.readable.pipeThrough(Z).getReader(),J=FX();J.readable.pipeTo($.writable),this._writer=J.writable.getWriter();let X=()=>{G.read().then(({done:H,value:Q})=>{if(H){B7("session is closed");return}B7("received chunk: %o",Q),this.onPacket(Q),X()}).catch((H)=>{B7("an error occurred while reading: %s",H)})};X();let Y={type:"open"};if(this.query.sid)Y.data=`{"sid":"${this.query.sid}"}`;this._writer.write(Y).then(()=>this.onOpen())})})}write($){this.writable=!1;for(let Z=0;Z<$.length;Z++){let G=$[Z],J=Z===$.length-1;this._writer.write(G).then(()=>{if(J)a0(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var $;($=this._transport)===null||$===void 0||$.close()}}var ZZ={websocket:N7,webtransport:V7,polling:H7};var pA=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,lA=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function D6($){if($.length>8000)throw"URI too long";let Z=$,G=$.indexOf("["),J=$.indexOf("]");if(G!=-1&&J!=-1)$=$.substring(0,G)+$.substring(G,J).replace(/:/g,";")+$.substring(J,$.length);let X=pA.exec($||""),Y={},H=14;while(H--)Y[lA[H]]=X[H]||"";if(G!=-1&&J!=-1)Y.source=Z,Y.host=Y.host.substring(1,Y.host.length-1).replace(/;/g,":"),Y.authority=Y.authority.replace("[","").replace("]","").replace(/;/g,":"),Y.ipv6uri=!0;return Y.pathNames=iA(Y,Y.path),Y.queryKey=cA(Y,Y.query),Y}function iA($,Z){let G=/\/{2,9}/g,J=Z.replace(G,"/").split("/");if(Z.slice(0,1)=="/"||Z.length===0)J.splice(0,1);if(Z.slice(-1)=="/")J.splice(J.length-1,1);return J}function cA($,Z){let G={};return Z.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(J,X,Y){if(X)G[X]=Y}),G}var cY=e(x5(),1);var dY=e(W0(),1),K1=dY.default("engine.io-client:socket"),GZ=typeof addEventListener==="function"&&typeof removeEventListener==="function",F7=[];if(GZ)addEventListener("offline",()=>{K1("closing %d connection(s) because the network was lost",F7.length),F7.forEach(($)=>$())},!1);class e0 extends cY.Emitter{constructor($,Z){super();if(this.binaryType=MX,this.writeBuffer=[],this._prevBufferLen=0,this._pingInterval=-1,this._pingTimeout=-1,this._maxPayload=-1,this._pingTimeoutTime=1/0,$&&typeof $==="object")Z=$,$=null;if($){let G=D6($);if(Z.hostname=G.host,Z.secure=G.protocol==="https"||G.protocol==="wss",Z.port=G.port,G.query)Z.query=G.query}else if(Z.host)Z.hostname=D6(Z.host).host;if(n0(this,Z),this.secure=Z.secure!=null?Z.secure:typeof location<"u"&&location.protocol==="https:",Z.hostname&&!Z.port)Z.port=this.secure?"443":"80";if(this.hostname=Z.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=Z.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=[],this._transportsByName={},Z.transports.forEach((G)=>{let J=G.prototype.name;this.transports.push(J),this._transportsByName[J]=G}),this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},Z),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query==="string")this.opts.query=wX(this.opts.query);if(GZ){if(this.opts.closeOnBeforeunload)this._beforeunloadEventListener=()=>{if(this.transport)this.transport.removeAllListeners(),this.transport.close()},addEventListener("beforeunload",this._beforeunloadEventListener,!1);if(this.hostname!=="localhost")K1("adding listener for the 'offline' event"),this._offlineEventListener=()=>{this._onClose("transport close",{description:"network connection lost"})},F7.push(this._offlineEventListener)}if(this.opts.withCredentials)this._cookieJar=DX();this._open()}createTransport($){K1('creating transport "%s"',$);let Z=Object.assign({},this.opts.query);if(Z.EIO=g$,Z.transport=$,this.id)Z.sid=this.id;let G=Object.assign({},this.opts,{query:Z,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[$]);return K1("options: %j",G),new this._transportsByName[$](G)}_open(){if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}let $=this.opts.rememberUpgrade&&e0.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1?"websocket":this.transports[0];this.readyState="opening";let Z=this.createTransport($);Z.open(),this.setTransport(Z)}setTransport($){if(K1("setting transport %s",$.name),this.transport)K1("clearing existing transport %s",this.transport.name),this.transport.removeAllListeners();this.transport=$,$.on("drain",this._onDrain.bind(this)).on("packet",this._onPacket.bind(this)).on("error",this._onError.bind(this)).on("close",(Z)=>this._onClose("transport close",Z))}onOpen(){K1("socket open"),this.readyState="open",e0.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush()}_onPacket($){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")switch(K1('socket receive: type "%s", data "%s"',$.type,$.data),this.emitReserved("packet",$),this.emitReserved("heartbeat"),$.type){case"open":this.onHandshake(JSON.parse($.data));break;case"ping":this._sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong"),this._resetPingTimeout();break;case"error":let Z=Error("server error");Z.code=$.data,this._onError(Z);break;case"message":this.emitReserved("data",$.data),this.emitReserved("message",$.data);break}else K1('packet received with socket readyState "%s"',this.readyState)}onHandshake($){if(this.emitReserved("handshake",$),this.id=$.sid,this.transport.query.sid=$.sid,this._pingInterval=$.pingInterval,this._pingTimeout=$.pingTimeout,this._maxPayload=$.maxPayload,this.onOpen(),this.readyState==="closed")return;this._resetPingTimeout()}_resetPingTimeout(){this.clearTimeoutFn(this._pingTimeoutTimer);let $=this._pingInterval+this._pingTimeout;if(this._pingTimeoutTime=Date.now()+$,this._pingTimeoutTimer=this.setTimeoutFn(()=>{this._onClose("ping timeout")},$),this.opts.autoUnref)this._pingTimeoutTimer.unref()}_onDrain(){if(this.writeBuffer.splice(0,this._prevBufferLen),this._prevBufferLen=0,this.writeBuffer.length===0)this.emitReserved("drain");else this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){let $=this._getWritablePackets();K1("flushing %d packets in socket",$.length),this.transport.send($),this._prevBufferLen=$.length,this.emitReserved("flush")}}_getWritablePackets(){if(!(this._maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let Z=1;for(let G=0;G<this.writeBuffer.length;G++){let J=this.writeBuffer[G].data;if(J)Z+=PX(J);if(G>0&&Z>this._maxPayload)return K1("only send %d out of %d packets",G,this.writeBuffer.length),this.writeBuffer.slice(0,G);Z+=2}return K1("payload size is %d (max: %d)",Z,this._maxPayload),this.writeBuffer}_hasPingExpired(){if(!this._pingTimeoutTime)return!0;let $=Date.now()>this._pingTimeoutTime;if($)K1("throttled timer detected, scheduling connection close"),this._pingTimeoutTime=0,a0(()=>{this._onClose("ping timeout")},this.setTimeoutFn);return $}write($,Z,G){return this._sendPacket("message",$,Z,G),this}send($,Z,G){return this._sendPacket("message",$,Z,G),this}_sendPacket($,Z,G,J){if(typeof Z==="function")J=Z,Z=void 0;if(typeof G==="function")J=G,G=null;if(this.readyState==="closing"||this.readyState==="closed")return;G=G||{},G.compress=G.compress!==!1;let X={type:$,data:Z,options:G};if(this.emitReserved("packetCreate",X),this.writeBuffer.push(X),J)this.once("flush",J);this.flush()}close(){let $=()=>{this._onClose("forced close"),K1("socket closing - telling transport to close"),this.transport.close()},Z=()=>{this.off("upgrade",Z),this.off("upgradeError",Z),$()},G=()=>{this.once("upgrade",Z),this.once("upgradeError",Z)};if(this.readyState==="opening"||this.readyState==="open")if(this.readyState="closing",this.writeBuffer.length)this.once("drain",()=>{if(this.upgrading)G();else $()});else if(this.upgrading)G();else $();return this}_onError($){if(K1("socket error %j",$),e0.priorWebsocketSuccess=!1,this.opts.tryAllTransports&&this.transports.length>1&&this.readyState==="opening")return K1("trying next transport"),this.transports.shift(),this._open();this.emitReserved("error",$),this._onClose("transport error",$)}_onClose($,Z){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing"){if(K1('socket close with reason: "%s"',$),this.clearTimeoutFn(this._pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),GZ){if(this._beforeunloadEventListener)removeEventListener("beforeunload",this._beforeunloadEventListener,!1);if(this._offlineEventListener){let G=F7.indexOf(this._offlineEventListener);if(G!==-1)K1("removing listener for the 'offline' event"),F7.splice(G,1)}}this.readyState="closed",this.id=null,this.emitReserved("close",$,Z),this.writeBuffer=[],this._prevBufferLen=0}}}e0.protocol=g$;class JZ extends e0{constructor(){super(...arguments);this._upgrades=[]}onOpen(){if(super.onOpen(),this.readyState==="open"&&this.opts.upgrade){K1("starting upgrade probes");for(let $=0;$<this._upgrades.length;$++)this._probe(this._upgrades[$])}}_probe($){K1('probing transport "%s"',$);let Z=this.createTransport($),G=!1;e0.priorWebsocketSuccess=!1;let J=()=>{if(G)return;K1('probe transport "%s" opened',$),Z.send([{type:"ping",data:"probe"}]),Z.once("packet",(K)=>{if(G)return;if(K.type==="pong"&&K.data==="probe"){if(K1('probe transport "%s" pong',$),this.upgrading=!0,this.emitReserved("upgrading",Z),!Z)return;e0.priorWebsocketSuccess=Z.name==="websocket",K1('pausing current transport "%s"',this.transport.name),this.transport.pause(()=>{if(G)return;if(this.readyState==="closed")return;K1("changing transport and sending upgrade packet"),U(),this.setTransport(Z),Z.send([{type:"upgrade"}]),this.emitReserved("upgrade",Z),Z=null,this.upgrading=!1,this.flush()})}else{K1('probe transport "%s" failed',$);let W=Error("probe error");W.transport=Z.name,this.emitReserved("upgradeError",W)}})};function X(){if(G)return;G=!0,U(),Z.close(),Z=null}let Y=(K)=>{let W=Error("probe error: "+K);W.transport=Z.name,X(),K1('probe transport "%s" failed because of error: %s',$,K),this.emitReserved("upgradeError",W)};function H(){Y("transport closed")}function Q(){Y("socket closed")}function q(K){if(Z&&K.name!==Z.name)K1('"%s" works - aborting "%s"',K.name,Z.name),X()}let U=()=>{Z.removeListener("open",J),Z.removeListener("error",Y),Z.removeListener("close",H),this.off("close",Q),this.off("upgrading",q)};if(Z.once("open",J),Z.once("error",Y),Z.once("close",H),this.once("close",Q),this.once("upgrading",q),this._upgrades.indexOf("webtransport")!==-1&&$!=="webtransport")this.setTimeoutFn(()=>{if(!G)Z.open()},200);else Z.open()}onHandshake($){this._upgrades=this._filterUpgrades($.upgrades),super.onHandshake($)}_filterUpgrades($){let Z=[];for(let G=0;G<$.length;G++)if(~this.transports.indexOf($[G]))Z.push($[G]);return Z}}class R7 extends JZ{constructor($,Z={}){let G=typeof $==="object"?$:Z;if(!G.transports||G.transports&&typeof G.transports[0]==="string")G.transports=(G.transports||["polling","websocket","webtransport"]).map((J)=>ZZ[J]).filter((J)=>!!J);super($,G)}}var LS=R7.protocol;var aY=e(W0(),1),rY=aY.default("socket.io-client:url");function nY($,Z="",G){let J=$;if(G=G||typeof location<"u"&&location,$==null)$=G.protocol+"//"+G.host;if(typeof $==="string"){if($.charAt(0)==="/")if($.charAt(1)==="/")$=G.protocol+$;else $=G.host+$;if(!/^(https?|wss?):\/\//.test($))if(rY("protocol-less url %s",$),typeof G<"u")$=G.protocol+"//"+$;else $="https://"+$;rY("parse %s",$),J=D6($)}if(!J.port){if(/^(http|ws)$/.test(J.protocol))J.port="80";else if(/^(http|ws)s$/.test(J.protocol))J.port="443"}J.path=J.path||"/";let Y=J.host.indexOf(":")!==-1?"["+J.host+"]":J.host;return J.id=J.protocol+"://"+Y+":"+J.port+Z,J.href=J.protocol+"://"+Y+(G&&G.port===J.port?"":":"+J.port),J}var qZ={};Q8(qZ,{protocol:()=>GH,isPacketValid:()=>JN,PacketType:()=>c,Encoder:()=>JH,Decoder:()=>QZ});var eY=e(x5(),1);var nA=typeof ArrayBuffer==="function",sA=($)=>{return typeof ArrayBuffer.isView==="function"?ArrayBuffer.isView($):$.buffer instanceof ArrayBuffer},sY=Object.prototype.toString,oA=typeof Blob==="function"||typeof Blob<"u"&&sY.call(Blob)==="[object BlobConstructor]",tA=typeof File==="function"||typeof File<"u"&&sY.call(File)==="[object FileConstructor]";function M7($){return nA&&($ instanceof ArrayBuffer||sA($))||oA&&$ instanceof Blob||tA&&$ instanceof File}function O7($,Z){if(!$||typeof $!=="object")return!1;if(Array.isArray($)){for(let G=0,J=$.length;G<J;G++)if(O7($[G]))return!0;return!1}if(M7($))return!0;if($.toJSON&&typeof $.toJSON==="function"&&arguments.length===1)return O7($.toJSON(),!0);for(let G in $)if(Object.prototype.hasOwnProperty.call($,G)&&O7($[G]))return!0;return!1}function oY($){let Z=[],G=$.data,J=$;return J.data=XZ(G,Z),J.attachments=Z.length,{packet:J,buffers:Z}}function XZ($,Z){if(!$)return $;if(M7($)){let G={_placeholder:!0,num:Z.length};return Z.push($),G}else if(Array.isArray($)){let G=Array($.length);for(let J=0;J<$.length;J++)G[J]=XZ($[J],Z);return G}else if(typeof $==="object"&&!($ instanceof Date)){let G={};for(let J in $)if(Object.prototype.hasOwnProperty.call($,J))G[J]=XZ($[J],Z);return G}return $}function tY($,Z){return $.data=YZ($.data,Z),delete $.attachments,$}function YZ($,Z){if(!$)return $;if($&&$._placeholder===!0)if(typeof $.num==="number"&&$.num>=0&&$.num<Z.length)return Z[$.num];else throw Error("illegal attachments");else if(Array.isArray($))for(let G=0;G<$.length;G++)$[G]=YZ($[G],Z);else if(typeof $==="object"){for(let G in $)if(Object.prototype.hasOwnProperty.call($,G))$[G]=YZ($[G],Z)}return $}var $H=e(W0(),1),HZ=$H.default("socket.io-parser"),ZH=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"],GH=5,c;(function($){$[$.CONNECT=0]="CONNECT",$[$.DISCONNECT=1]="DISCONNECT",$[$.EVENT=2]="EVENT",$[$.ACK=3]="ACK",$[$.CONNECT_ERROR=4]="CONNECT_ERROR",$[$.BINARY_EVENT=5]="BINARY_EVENT",$[$.BINARY_ACK=6]="BINARY_ACK"})(c||(c={}));class JH{constructor($){this.replacer=$}encode($){if(HZ("encoding packet %j",$),$.type===c.EVENT||$.type===c.ACK){if(O7($))return this.encodeAsBinary({type:$.type===c.EVENT?c.BINARY_EVENT:c.BINARY_ACK,nsp:$.nsp,data:$.data,id:$.id})}return[this.encodeAsString($)]}encodeAsString($){let Z=""+$.type;if($.type===c.BINARY_EVENT||$.type===c.BINARY_ACK)Z+=$.attachments+"-";if($.nsp&&$.nsp!=="/")Z+=$.nsp+",";if($.id!=null)Z+=$.id;if($.data!=null)Z+=JSON.stringify($.data,this.replacer);return HZ("encoded %j as %s",$,Z),Z}encodeAsBinary($){let Z=oY($),G=this.encodeAsString(Z.packet),J=Z.buffers;return J.unshift(G),J}}class QZ extends eY.Emitter{constructor($){super();this.reviver=$}add($){let Z;if(typeof $==="string"){if(this.reconstructor)throw Error("got plaintext data when reconstructing a packet");Z=this.decodeString($);let G=Z.type===c.BINARY_EVENT;if(G||Z.type===c.BINARY_ACK){if(Z.type=G?c.EVENT:c.ACK,this.reconstructor=new XH(Z),Z.attachments===0)super.emitReserved("decoded",Z)}else super.emitReserved("decoded",Z)}else if(M7($)||$.base64){if(!this.reconstructor)throw Error("got binary data when not reconstructing a packet");else if(Z=this.reconstructor.takeBinaryData($),Z)this.reconstructor=null,super.emitReserved("decoded",Z)}else throw Error("Unknown type: "+$)}decodeString($){let Z=0,G={type:Number($.charAt(0))};if(c[G.type]===void 0)throw Error("unknown packet type "+G.type);if(G.type===c.BINARY_EVENT||G.type===c.BINARY_ACK){let X=Z+1;while($.charAt(++Z)!=="-"&&Z!=$.length);let Y=$.substring(X,Z);if(Y!=Number(Y)||$.charAt(Z)!=="-")throw Error("Illegal attachments");G.attachments=Number(Y)}if($.charAt(Z+1)==="/"){let X=Z+1;while(++Z){if($.charAt(Z)===",")break;if(Z===$.length)break}G.nsp=$.substring(X,Z)}else G.nsp="/";let J=$.charAt(Z+1);if(J!==""&&Number(J)==J){let X=Z+1;while(++Z){let Y=$.charAt(Z);if(Y==null||Number(Y)!=Y){--Z;break}if(Z===$.length)break}G.id=Number($.substring(X,Z+1))}if($.charAt(++Z)){let X=this.tryParse($.substr(Z));if(QZ.isPayloadValid(G.type,X))G.data=X;else throw Error("invalid payload")}return HZ("decoded %s as %j",$,G),G}tryParse($){try{return JSON.parse($,this.reviver)}catch(Z){return!1}}static isPayloadValid($,Z){switch($){case c.CONNECT:return h8(Z);case c.DISCONNECT:return Z===void 0;case c.CONNECT_ERROR:return typeof Z==="string"||h8(Z);case c.EVENT:case c.BINARY_EVENT:return Array.isArray(Z)&&(typeof Z[0]==="number"||typeof Z[0]==="string"&&ZH.indexOf(Z[0])===-1);case c.ACK:case c.BINARY_ACK:return Array.isArray(Z)}}destroy(){if(this.reconstructor)this.reconstructor.finishedReconstruction(),this.reconstructor=null}}class XH{constructor($){this.packet=$,this.buffers=[],this.reconPack=$}takeBinaryData($){if(this.buffers.push($),this.buffers.length===this.reconPack.attachments){let Z=tY(this.reconPack,this.buffers);return this.finishedReconstruction(),Z}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}function eA($){return typeof $==="string"}var $N=Number.isInteger||function($){return typeof $==="number"&&isFinite($)&&Math.floor($)===$};function ZN($){return $===void 0||$N($)}function h8($){return Object.prototype.toString.call($)==="[object Object]"}function GN($,Z){switch($){case c.CONNECT:return Z===void 0||h8(Z);case c.DISCONNECT:return Z===void 0;case c.EVENT:return Array.isArray(Z)&&(typeof Z[0]==="number"||typeof Z[0]==="string"&&ZH.indexOf(Z[0])===-1);case c.ACK:return Array.isArray(Z);case c.CONNECT_ERROR:return typeof Z==="string"||h8(Z);default:return!1}}function JN($){return eA($.nsp)&&ZN($.id)&&GN($.type,$.data)}function G0($,Z,G){return $.on(Z,G),function(){$.off(Z,G)}}var YH=e(x5(),1),HH=e(W0(),1),O1=HH.default("socket.io-client:socket"),XN=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class D7 extends YH.Emitter{constructor($,Z,G){super();if(this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=$,this.nsp=Z,G&&G.auth)this.auth=G.auth;if(this._opts=Object.assign({},G),this.io._autoConnect)this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;let $=this.io;this.subs=[G0($,"open",this.onopen.bind(this)),G0($,"packet",this.onpacket.bind(this)),G0($,"error",this.onerror.bind(this)),G0($,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){if(this.connected)return this;if(this.subEvents(),!this.io._reconnecting)this.io.open();if(this.io._readyState==="open")this.onopen();return this}open(){return this.connect()}send(...$){return $.unshift("message"),this.emit.apply(this,$),this}emit($,...Z){var G,J,X;if(XN.hasOwnProperty($))throw Error('"'+$.toString()+'" is a reserved event name');if(Z.unshift($),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(Z),this;let Y={type:c.EVENT,data:Z};if(Y.options={},Y.options.compress=this.flags.compress!==!1,typeof Z[Z.length-1]==="function"){let U=this.ids++;O1("emitting packet with ack id %d",U);let K=Z.pop();this._registerAckCallback(U,K),Y.id=U}let H=(J=(G=this.io.engine)===null||G===void 0?void 0:G.transport)===null||J===void 0?void 0:J.writable,Q=this.connected&&!((X=this.io.engine)===null||X===void 0?void 0:X._hasPingExpired());if(this.flags.volatile&&!H)O1("discard packet as the transport is not currently writable");else if(Q)this.notifyOutgoingListeners(Y),this.packet(Y);else this.sendBuffer.push(Y);return this.flags={},this}_registerAckCallback($,Z){var G;let J=(G=this.flags.timeout)!==null&&G!==void 0?G:this._opts.ackTimeout;if(J===void 0){this.acks[$]=Z;return}let X=this.io.setTimeoutFn(()=>{delete this.acks[$];for(let H=0;H<this.sendBuffer.length;H++)if(this.sendBuffer[H].id===$)O1("removing packet with ack id %d from the buffer",$),this.sendBuffer.splice(H,1);O1("event with ack id %d has timed out after %d ms",$,J),Z.call(this,Error("operation has timed out"))},J),Y=(...H)=>{this.io.clearTimeoutFn(X),Z.apply(this,H)};Y.withError=!0,this.acks[$]=Y}emitWithAck($,...Z){return new Promise((G,J)=>{let X=(Y,H)=>{return Y?J(Y):G(H)};X.withError=!0,Z.push(X),this.emit($,...Z)})}_addToQueue($){let Z;if(typeof $[$.length-1]==="function")Z=$.pop();let G={id:this._queueSeq++,tryCount:0,pending:!1,args:$,flags:Object.assign({fromQueue:!0},this.flags)};$.push((J,...X)=>{if(G!==this._queue[0])return O1("packet [%d] already acknowledged",G.id);if(J!==null){if(G.tryCount>this._opts.retries){if(O1("packet [%d] is discarded after %d tries",G.id,G.tryCount),this._queue.shift(),Z)Z(J)}}else if(O1("packet [%d] was successfully sent",G.id),this._queue.shift(),Z)Z(null,...X);return G.pending=!1,this._drainQueue()}),this._queue.push(G),this._drainQueue()}_drainQueue($=!1){if(O1("draining queue"),!this.connected||this._queue.length===0)return;let Z=this._queue[0];if(Z.pending&&!$){O1("packet [%d] has already been sent and is waiting for an ack",Z.id);return}Z.pending=!0,Z.tryCount++,O1("sending packet [%d] (try n°%d)",Z.id,Z.tryCount),this.flags=Z.flags,this.emit.apply(this,Z.args)}packet($){$.nsp=this.nsp,this.io._packet($)}onopen(){if(O1("transport is open - connecting"),typeof this.auth=="function")this.auth(($)=>{this._sendConnectPacket($)});else this._sendConnectPacket(this.auth)}_sendConnectPacket($){this.packet({type:c.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},$):$})}onerror($){if(!this.connected)this.emitReserved("connect_error",$)}onclose($,Z){O1("close (%s)",$),this.connected=!1,delete this.id,this.emitReserved("disconnect",$,Z),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach(($)=>{if(!this.sendBuffer.some((G)=>String(G.id)===$)){let G=this.acks[$];if(delete this.acks[$],G.withError)G.call(this,Error("socket has been disconnected"))}})}onpacket($){if($.nsp!==this.nsp)return;switch($.type){case c.CONNECT:if($.data&&$.data.sid)this.onconnect($.data.sid,$.data.pid);else this.emitReserved("connect_error",Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case c.EVENT:case c.BINARY_EVENT:this.onevent($);break;case c.ACK:case c.BINARY_ACK:this.onack($);break;case c.DISCONNECT:this.ondisconnect();break;case c.CONNECT_ERROR:this.destroy();let G=Error($.data.message);G.data=$.data.data,this.emitReserved("connect_error",G);break}}onevent($){let Z=$.data||[];if(O1("emitting event %j",Z),$.id!=null)O1("attaching ack callback to event"),Z.push(this.ack($.id));if(this.connected)this.emitEvent(Z);else this.receiveBuffer.push(Object.freeze(Z))}emitEvent($){if(this._anyListeners&&this._anyListeners.length){let Z=this._anyListeners.slice();for(let G of Z)G.apply(this,$)}if(super.emit.apply(this,$),this._pid&&$.length&&typeof $[$.length-1]==="string")this._lastOffset=$[$.length-1]}ack($){let Z=this,G=!1;return function(...J){if(G)return;G=!0,O1("sending ack %j",J),Z.packet({type:c.ACK,id:$,data:J})}}onack($){let Z=this.acks[$.id];if(typeof Z!=="function"){O1("bad ack %s",$.id);return}if(delete this.acks[$.id],O1("calling ack %s with %j",$.id,$.data),Z.withError)$.data.unshift(null);Z.apply(this,$.data)}onconnect($,Z){O1("socket connected with id %s",$),this.id=$,this.recovered=Z&&this._pid===Z,this._pid=Z,this.connected=!0,this.emitBuffered(),this._drainQueue(!0),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(($)=>this.emitEvent($)),this.receiveBuffer=[],this.sendBuffer.forEach(($)=>{this.notifyOutgoingListeners($),this.packet($)}),this.sendBuffer=[]}ondisconnect(){O1("server disconnect (%s)",this.nsp),this.destroy(),this.onclose("io server disconnect")}destroy(){if(this.subs)this.subs.forEach(($)=>$()),this.subs=void 0;this.io._destroy(this)}disconnect(){if(this.connected)O1("performing disconnect (%s)",this.nsp),this.packet({type:c.DISCONNECT});if(this.destroy(),this.connected)this.onclose("io client disconnect");return this}close(){return this.disconnect()}compress($){return this.flags.compress=$,this}get volatile(){return this.flags.volatile=!0,this}timeout($){return this.flags.timeout=$,this}onAny($){return this._anyListeners=this._anyListeners||[],this._anyListeners.push($),this}prependAny($){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift($),this}offAny($){if(!this._anyListeners)return this;if($){let Z=this._anyListeners;for(let G=0;G<Z.length;G++)if($===Z[G])return Z.splice(G,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing($){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push($),this}prependAnyOutgoing($){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift($),this}offAnyOutgoing($){if(!this._anyOutgoingListeners)return this;if($){let Z=this._anyOutgoingListeners;for(let G=0;G<Z.length;G++)if($===Z[G])return Z.splice(G,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners($){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){let Z=this._anyOutgoingListeners.slice();for(let G of Z)G.apply(this,$.data)}}}function u5($){$=$||{},this.ms=$.min||100,this.max=$.max||1e4,this.factor=$.factor||2,this.jitter=$.jitter>0&&$.jitter<=1?$.jitter:0,this.attempts=0}u5.prototype.duration=function(){var $=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var Z=Math.random(),G=Math.floor(Z*this.jitter*$);$=(Math.floor(Z*10)&1)==0?$-G:$+G}return Math.min($,this.max)|0};u5.prototype.reset=function(){this.attempts=0};u5.prototype.setMin=function($){this.ms=$};u5.prototype.setMax=function($){this.max=$};u5.prototype.setJitter=function($){this.jitter=$};var QH=e(x5(),1),qH=e(W0(),1),x1=qH.default("socket.io-client:manager");class I7 extends QH.Emitter{constructor($,Z){var G;super();if(this.nsps={},this.subs=[],$&&typeof $==="object")Z=$,$=void 0;Z=Z||{},Z.path=Z.path||"/socket.io",this.opts=Z,n0(this,Z),this.reconnection(Z.reconnection!==!1),this.reconnectionAttempts(Z.reconnectionAttempts||1/0),this.reconnectionDelay(Z.reconnectionDelay||1000),this.reconnectionDelayMax(Z.reconnectionDelayMax||5000),this.randomizationFactor((G=Z.randomizationFactor)!==null&&G!==void 0?G:0.5),this.backoff=new u5({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(Z.timeout==null?20000:Z.timeout),this._readyState="closed",this.uri=$;let J=Z.parser||qZ;if(this.encoder=new J.Encoder,this.decoder=new J.Decoder,this._autoConnect=Z.autoConnect!==!1,this._autoConnect)this.open()}reconnection($){if(!arguments.length)return this._reconnection;if(this._reconnection=!!$,!$)this.skipReconnect=!0;return this}reconnectionAttempts($){if($===void 0)return this._reconnectionAttempts;return this._reconnectionAttempts=$,this}reconnectionDelay($){var Z;if($===void 0)return this._reconnectionDelay;return this._reconnectionDelay=$,(Z=this.backoff)===null||Z===void 0||Z.setMin($),this}randomizationFactor($){var Z;if($===void 0)return this._randomizationFactor;return this._randomizationFactor=$,(Z=this.backoff)===null||Z===void 0||Z.setJitter($),this}reconnectionDelayMax($){var Z;if($===void 0)return this._reconnectionDelayMax;return this._reconnectionDelayMax=$,(Z=this.backoff)===null||Z===void 0||Z.setMax($),this}timeout($){if(!arguments.length)return this._timeout;return this._timeout=$,this}maybeReconnectOnOpen(){if(!this._reconnecting&&this._reconnection&&this.backoff.attempts===0)this.reconnect()}open($){if(x1("readyState %s",this._readyState),~this._readyState.indexOf("open"))return this;x1("opening %s",this.uri),this.engine=new R7(this.uri,this.opts);let Z=this.engine,G=this;this._readyState="opening",this.skipReconnect=!1;let J=G0(Z,"open",function(){G.onopen(),$&&$()}),X=(H)=>{if(x1("error"),this.cleanup(),this._readyState="closed",this.emitReserved("error",H),$)$(H);else this.maybeReconnectOnOpen()},Y=G0(Z,"error",X);if(this._timeout!==!1){let H=this._timeout;x1("connect attempt will timeout after %d",H);let Q=this.setTimeoutFn(()=>{x1("connect attempt timed out after %d",H),J(),X(Error("timeout")),Z.close()},H);if(this.opts.autoUnref)Q.unref();this.subs.push(()=>{this.clearTimeoutFn(Q)})}return this.subs.push(J),this.subs.push(Y),this}connect($){return this.open($)}onopen(){x1("open"),this.cleanup(),this._readyState="open",this.emitReserved("open");let $=this.engine;this.subs.push(G0($,"ping",this.onping.bind(this)),G0($,"data",this.ondata.bind(this)),G0($,"error",this.onerror.bind(this)),G0($,"close",this.onclose.bind(this)),G0(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata($){try{this.decoder.add($)}catch(Z){this.onclose("parse error",Z)}}ondecoded($){a0(()=>{this.emitReserved("packet",$)},this.setTimeoutFn)}onerror($){x1("error",$),this.emitReserved("error",$)}socket($,Z){let G=this.nsps[$];if(!G)G=new D7(this,$,Z),this.nsps[$]=G;else if(this._autoConnect&&!G.active)G.connect();return G}_destroy($){let Z=Object.keys(this.nsps);for(let G of Z)if(this.nsps[G].active){x1("socket %s is still active, skipping close",G);return}this._close()}_packet($){x1("writing packet %j",$);let Z=this.encoder.encode($);for(let G=0;G<Z.length;G++)this.engine.write(Z[G],$.options)}cleanup(){x1("cleanup"),this.subs.forEach(($)=>$()),this.subs.length=0,this.decoder.destroy()}_close(){x1("disconnect"),this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close")}disconnect(){return this._close()}onclose($,Z){var G;if(x1("closed due to %s",$),this.cleanup(),(G=this.engine)===null||G===void 0||G.close(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",$,Z),this._reconnection&&!this.skipReconnect)this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;let $=this;if(this.backoff.attempts>=this._reconnectionAttempts)x1("reconnect failed"),this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{let Z=this.backoff.duration();x1("will wait %dms before reconnect attempt",Z),this._reconnecting=!0;let G=this.setTimeoutFn(()=>{if($.skipReconnect)return;if(x1("attempting reconnect"),this.emitReserved("reconnect_attempt",$.backoff.attempts),$.skipReconnect)return;$.open((J)=>{if(J)x1("reconnect attempt error"),$._reconnecting=!1,$.reconnect(),this.emitReserved("reconnect_error",J);else x1("reconnect success"),$.onreconnect()})},Z);if(this.opts.autoUnref)G.unref();this.subs.push(()=>{this.clearTimeoutFn(G)})}}onreconnect(){let $=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",$)}}var UH=e(W0(),1),KH=UH.default("socket.io-client"),P7={};function b8($,Z){if(typeof $==="object")Z=$,$=void 0;Z=Z||{};let G=nY($,Z.path||"/socket.io"),J=G.source,X=G.id,Y=G.path,H=P7[X]&&Y in P7[X].nsps,Q=Z.forceNew||Z["force new connection"]||Z.multiplex===!1||H,q;if(Q)KH("ignoring socket cache for %s",J),q=new I7(J,Z);else{if(!P7[X])KH("new io instance for %s",J),P7[X]=new I7(J,Z);q=P7[X]}if(G.query&&!Z.query)Z.query=G.queryKey;return q.socket(G.path,Z)}Object.assign(b8,{Manager:I7,Socket:D7,io:b8,connect:b8});var WH=require("react");var YN=WH.createContext(null),LH=YN;function KZ($){return{all:$=$||new Map,on:function(Z,G){var J=$.get(Z);J?J.push(G):$.set(Z,[G])},off:function(Z,G){var J=$.get(Z);J&&(G?J.splice(J.indexOf(G)>>>0,1):$.set(Z,[]))},emit:function(Z,G){var J=$.get(Z);J&&J.slice().map(function(X){X(G)}),(J=$.get("*"))&&J.slice().map(function(X){X(Z,G)})}}}var zH=require("react"),HN=KZ(),QN=zH.createContext(HN),AH=QN;var qN=({card:$,data:Z,children:G,useSocketioSupport:J=!1,useCentrifugeSupport:X=!1,useMittSupport:Y=!1,centrifugeChannel:H=void 0,methods:Q=void 0})=>{if(X1())console.log("[PieCard] Rendering card:",$),console.log("[PieCard] Card data:",Z),console.log("[PieCard] Component name:",Z?.name),console.log("[PieCard] Real-time support:",{socketio:J,centrifuge:X,mitt:Y,centrifugeChannel:H}),console.log("[PieCard] Methods:",Q?Object.keys(Q):"none"),console.log("[PieCard] Has children:",!!G);let q=A5.useContext(LH),U=A5.useContext(qX),K=A5.useContext(AH);if(A5.useEffect(()=>{if(!q||!J||!Q||!Z.name){if(X1()&&J)console.log("[PieCard] Socket.IO setup skipped:",{hasSocket:!!q,useSocketioSupport:J,hasMethods:!!Q,hasDataName:!!Z?.name});return}return Object.entries(Q).forEach(([W,z])=>{let L=`pie${W}_${Z.name}`;if(X1())console.log(`[PieCard] Socket.IO registering event: ${L}`);q.on(L,z)}),()=>{Object.entries(Q).forEach(([W,z])=>{let L=`pie${W}_${Z.name}`;if(X1())console.log(`[PieCard] Socket.IO unregistering event: ${L}`);q.off(L,z)})}},[q,Q,Z.name]),A5.useEffect(()=>{if(!U||!X||!H||!Q||!Z.name){if(X1()&&X)console.log("[PieCard] Centrifuge setup skipped:",{hasCentrifuge:!!U,useCentrifugeSupport:X,hasCentrifugeChannel:!!H,hasMethods:!!Q,hasDataName:!!Z?.name});return}let W=Object.entries(Q).map(([z,L])=>{let V=`pie${z}_${Z.name}_${H}`;if(X1())console.log(`[PieCard] Centrifuge subscribing to channel: ${V}`);let B=U.newSubscription(V);return B.on("publication",(I)=>{if(X1())console.log(`[PieCard] Centrifuge received data on ${V}:`,I.data);L(I.data)}),B.subscribe(),B});return()=>{W.forEach((z)=>{if(X1())console.log("[PieCard] Centrifuge unsubscribing from channel");z.unsubscribe(),U.removeSubscription(z)})}},[U,H,Q,Z.name]),A5.useEffect(()=>{if(!K||!Y||!Q||!Z.name){if(X1()&&Y)console.log("[PieCard] Mitt setup skipped:",{hasMitt:!!K,useMittSupport:Y,hasMethods:!!Q,hasDataName:!!Z?.name});return}return Object.entries(Q).forEach(([W,z])=>{let L=`pie${W}_${Z.name}`;if(X1())console.log(`[PieCard] Mitt registering event: ${L}`);K.on(L,z)}),()=>{Object.entries(Q).forEach(([W,z])=>{let L=`pie${W}_${Z.name}`;if(X1())console.log(`[PieCard] Mitt unregistering event: ${L}`);K.off(L,z)})}},[K,Q,Z.name]),X1())console.log("[PieCard] Rendering complete, returning children");return G},h0=qN;var NH=new Map;var BH=($)=>{let Z=NH.get($);if(X1())if(Z)console.log("[Registry] Found component:",$);else console.warn("[Registry] Component not found:",$),console.log("[Registry] Available components:",Array.from(NH.keys()));return Z};var m8=require("react");var VH=require("react"),k8=require("react/jsx-dev-runtime"),KN=VH.createContext(k8.jsxDEV(k8.Fragment,{},void 0,!1,void 0,this)),FH=KN;var UZ=require("react/jsx-dev-runtime");function UN({uiConfig:$,setUiAjaxConfiguration:Z}){let G=m8.useContext(FH);if(X1())console.log("[UI] Rendering component:",$.card),console.log("[UI] Component data:",$.data),console.log("[UI] Component content:",$.content),console.log("[UI] Has setUiAjaxConfiguration:",!!Z);let J=BH($.card);if(!J?.component){if(X1())console.warn(`[UI] Component not found in registry: ${$.card}`),console.log("[UI] Returning fallback component");return G}if(X1())console.log("[UI] Found component in registry:",{name:J.name,isLazy:J.isLazy,hasMetadata:!!J.metadata});let X=J.component,Y=UZ.jsxDEV(X,{data:$.data,content:$.content,setUiAjaxConfiguration:Z},void 0,!1,void 0,this);if(J.isLazy){if(X1())console.log("[UI] Rendering lazy component with Suspense:",J.name);return UZ.jsxDEV(m8.Suspense,{fallback:J.fallback??G,children:Y},`${J.name}`,!1,void 0,this)}if(X1())console.log("[UI] Rendering component directly:",J.name);return Y}var N5=UN;function WZ($=1000){return new Promise((Z)=>{let G=()=>{if(typeof window.sid<"u")Z(null);else setTimeout(G,$)};G()})}var f8=($,Z={},G=[],J)=>{if(X1())console.log("Registering AJAX: ",J,Z,G);if(!J||!$){if(X1())console.warn("Registration FAILED: pathname or setUiAjaxConfiguration is missing!");return()=>{}}return async(X={})=>{if(G.includes("sid"))await WZ();let Y=new FormData;for(let[Q,q]of Object.entries({...Z,...X}))Y.append(Q,q);for(let Q of G)if(Q==="sid"){if(!window.sid)throw Error("SocketIO isn't initialized properly");Y.append("sid",window.sid)}else{let q=document.getElementsByName(Q);if(!q.length){if(X1())console.warn(`No input found with name ${Q}`);continue}let U=q[0];if(U instanceof HTMLInputElement)if(U.type==="file"&&U.files)Array.from(U.files).forEach((K)=>Y.append(Q,K));else Y.append(Q,U.value);else if(U instanceof HTMLTextAreaElement)Y.append(Q,U.value)}let H=u2()+"api/ajax_content"+J;return $(null),await fetch(H,{method:"POST",body:Y}).then(async(Q)=>{let U=(Q.headers.get("content-type")||"").includes("application/json");if(!!Q.body?.getReader&&!U){let W=Q.body.getReader(),z=new TextDecoder,L="";while(!0){let{done:V,value:B}=await W.read();if(V)break;L+=z.decode(B,{stream:!0});let I=L.split(`
|
|
35
|
-
`);L=I.pop()??"";for(let D of I){let E=D.trim();if(!E)continue;try{let R=JSON.parse(E);$([R])}catch(R){if(X1())console.warn("Failed to parse streamed line:",E)}}}if(L.trim())try{let V=JSON.parse(L);$([V])}catch(V){if(X1())console.warn("Failed to parse final streamed line:",L)}return{}}else{let W=await Q.json();return $(W),W}}).catch((Q)=>{if(X1())console.error("AJAX request failed:",Q);return $(null),Q})}};var J0=require("react");var u8=require("react"),RH=require("react/jsx-dev-runtime");function LZ($){let[Z,G]=u8.useState(!1),J=u8.useRef(null);return RH.jsxDEV("textarea",{ref:J,...$,onKeyUp:()=>{G(!1)},onKeyDown:(Q)=>{if(Q.key==="Enter"&&Q.shiftKey){if(G(!0),J.current){let q=window.getComputedStyle(J.current),U=parseFloat(q.lineHeight);J.current.style.height=J.current.scrollHeight+U+"px"}}if(Q.key==="Backspace"){if(G(!0),J.current){let q=window.getComputedStyle(J.current),U=parseFloat(q.lineHeight);if(J.current.scrollHeight>U)J.current.style.height=J.current.scrollHeight-U+"px"}}$.onKeyDown&&$.onKeyDown(Q)},onBlur:(Q)=>{G(!1),$.onBlur&&$.onBlur(Q)},style:{resize:Z?"vertical":"none",overflowY:"auto",...$.style}},void 0,!1,void 0,this)}var l8=require("react");var zZ=require("react/jsx-dev-runtime"),WN=()=>zZ.jsxDEV("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:zZ.jsxDEV("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 12L3.269 3.126A59.768 59.768 0 0121.485 12 59.77 59.77 0 013.27 20.876L5.999 12zm0 0h7.5"},void 0,!1,void 0,this)},void 0,!1,void 0,this),OH=WN;var p8=require("react/jsx-dev-runtime"),LN=({type:$="button",onClick:Z,icons:G})=>{let J=l8.useRef(null),X=l8.useCallback(()=>{let H=J.current;if(H)H.style.transform="scale(0.8)",setTimeout(()=>{H.style.transform="scale(1)"},600)},[]);return p8.jsxDEV("button",{ref:J,type:$,onClick:(H)=>{if(Z)Z(H);X()},className:"mr-1.5 rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",style:{transition:"transform 300ms ease"},children:G.sendIcon?p8.jsxDEV("img",{src:G.sendIcon,alt:""},void 0,!1,void 0,this):p8.jsxDEV(OH,{},void 0,!1,void 0,this)},void 0,!1,void 0,this)},MH=LN;var AZ=require("react/jsx-dev-runtime"),zN=()=>AZ.jsxDEV("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:AZ.jsxDEV("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M18.375 12.739l-7.693 7.693a4.5 4.5 0 01-6.364-6.364l10.94-10.94A3 3 0 1119.5 7.372L8.552 18.32m.009-.01l-.01.01m5.699-9.941l-7.81 7.81a1.5 1.5 0 002.112 2.13"},void 0,!1,void 0,this)},void 0,!1,void 0,this),DH=zN;var T7=require("react/jsx-dev-runtime"),AN=({name:$,accept:Z,fileInputRef:G,onSelectFile:J,icons:X})=>{return T7.jsxDEV("button",{className:"rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",type:"button",onClick:()=>{if(G.current)G.current.click()},children:[T7.jsxDEV("input",{name:$+f2+"file",className:"hidden",type:"file",accept:Z,ref:G,onChange:(Y)=>{if(Y.target.files)J(Y.target.files[0])}},void 0,!1,void 0,this),X.attachFileIcon?T7.jsxDEV("img",{src:X.attachFileIcon,alt:""},void 0,!1,void 0,this):T7.jsxDEV(DH,{},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},IH=AN;var NZ=require("react/jsx-dev-runtime"),NN=()=>NZ.jsxDEV("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5 text-gray-500",children:NZ.jsxDEV("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"},void 0,!1,void 0,this)},void 0,!1,void 0,this),PH=NN;var BZ=require("react/jsx-dev-runtime"),BN=()=>BZ.jsxDEV("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:BZ.jsxDEV("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"},void 0,!1,void 0,this)},void 0,!1,void 0,this),i8=BN;var p5=require("react/jsx-dev-runtime"),VN=({name:$,selectedFile:Z,onDropFile:G})=>{return p5.jsxDEV("div",{className:"flex w-full cursor-default flex-row items-center gap-2",children:[p5.jsxDEV(PH,{},void 0,!1,void 0,this),p5.jsxDEV("span",{className:"flex-1",children:Z.name},void 0,!1,void 0,this),p5.jsxDEV("input",{type:"hidden",name:$,value:""},void 0,!1,void 0,this),p5.jsxDEV("button",{className:"rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",type:"button",onClick:G,children:p5.jsxDEV(i8,{},void 0,!1,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},TH=VN;var c8=require("react/jsx-dev-runtime"),FN=()=>c8.jsxDEV("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:[c8.jsxDEV("path",{d:"M8 5C8 2.79086 9.79086 1 12 1C14.2091 1 16 2.79086 16 5V12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12V5Z"},void 0,!1,void 0,this),c8.jsxDEV("path",{d:"M6.25 11.8438V12C6.25 13.525 6.8558 14.9875 7.93414 16.0659C9.01247 17.1442 10.475 17.75 12 17.75C13.525 17.75 14.9875 17.1442 16.0659 16.0659C17.1442 14.9875 17.75 13.525 17.75 12V11.8438C17.75 11.2915 18.1977 10.8438 18.75 10.8438H19.25C19.8023 10.8438 20.25 11.2915 20.25 11.8437V12C20.25 14.188 19.3808 16.2865 17.8336 17.8336C16.5842 19.0831 14.9753 19.8903 13.25 20.1548V22C13.25 22.5523 12.8023 23 12.25 23H11.75C11.1977 23 10.75 22.5523 10.75 22V20.1548C9.02471 19.8903 7.41579 19.0831 6.16637 17.8336C4.61919 16.2865 3.75 14.188 3.75 12V11.8438C3.75 11.2915 4.19772 10.8438 4.75 10.8438H5.25C5.80228 10.8438 6.25 11.2915 6.25 11.8438Z"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),wH=FN;var I6=require("react/jsx-dev-runtime"),RN=({isListening:$,toggleListening:Z,icons:G})=>{return I6.jsxDEV("button",{className:"rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",type:"button",onClick:Z,children:$?G.cancelIcon?I6.jsxDEV("img",{src:G.cancelIcon,alt:""},void 0,!1,void 0,this):I6.jsxDEV(i8,{},void 0,!1,void 0,this):G.voiceRecordingIcon?I6.jsxDEV("img",{src:G.voiceRecordingIcon,alt:""},void 0,!1,void 0,this):I6.jsxDEV(wH,{},void 0,!1,void 0,this)},void 0,!1,void 0,this)},EH=RN;var d8=require("react/jsx-dev-runtime"),ON=({option:$,onClickOption:Z})=>{return d8.jsxDEV("div",{className:"flex w-fit cursor-pointer flex-row place-content-center items-center gap-1 rounded-md border border-black bg-white px-2 py-1 text-black",onClick:()=>{Z($.title)},style:$.sx,children:[$.iconPosition==="start"&&d8.jsxDEV("img",{src:$.iconUrl,alt:""},void 0,!1,void 0,this),$.title,$.iconPosition==="end"&&d8.jsxDEV("img",{src:$.iconUrl,alt:""},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},r8=ON;var VZ=require("react/jsx-dev-runtime"),MN=({options:$,handleOptionClick:Z})=>{return VZ.jsxDEV("div",{className:"flex w-full flex-row flex-wrap justify-start gap-[5px]",children:$.map((G,J)=>{return VZ.jsxDEV(r8,{option:G,onClickOption:Z},J,!1,void 0,this)})},void 0,!1,void 0,this)},FZ=MN;var z0=require("react/jsx-dev-runtime"),DN=J0.forwardRef(({name:$,defaultValue:Z,defaultOptions:G,isArea:J,placeholder:X,fileAccept:Y,optionsPosition:H,icons:Q,handleOptionClick:q,handleSendMessage:U,sx:K},W)=>{let z=J0.useRef(null),[L,V]=J0.useState(null),[B,I]=J0.useState(Z),[D,E]=J0.useState(G),[R,P]=J0.useState(!1);J0.useImperativeHandle(W,()=>({clear:()=>{if(I(""),V(null),z.current)z.current.value=""},setValue:(M)=>I(M),setOptions:(M)=>E(M)})),J0.useEffect(()=>{I(Z)},[Z]);let g=()=>{};return z0.jsxDEV("div",{className:"flex flex-col items-center gap-[0.1rem]",id:$+"_chat_input",style:K,children:[D&&H==="top"&&z0.jsxDEV(FZ,{options:D,handleOptionClick:q},void 0,!1,void 0,this),z0.jsxDEV("div",{className:"stretch relative flex size-full flex-1 flex-row items-stretch gap-3 last:mb-2 md:mx-4 md:flex-col md:last:mb-6 lg:mx-auto",children:z0.jsxDEV("div",{className:"flex w-full grow flex-row items-center rounded-md bg-transparent",children:[L?z0.jsxDEV(TH,{name:$,selectedFile:L,onDropFile:()=>{if(V(null),z.current)z.current.value=""}},void 0,!1,void 0,this):!J?z0.jsxDEV("input",{name:$,value:B,onChange:(M)=>I(M.target.value),onKeyDown:(M)=>{if(M.key==="Enter")M.preventDefault(),U()},tabIndex:0,placeholder:X,className:"m-0 w-full resize-none border-0 bg-transparent outline-none",style:{maxHeight:200,height:"100%",overflowY:"hidden"}},void 0,!1,void 0,this):z0.jsxDEV(LZ,{name:$,value:B,onChange:(M)=>I(M.target.value),onKeyDown:(M)=>{if(M.key==="Enter"&&!M.shiftKey)M.preventDefault(),U()},tabIndex:0,rows:2,placeholder:X,className:"m-0 w-full resize-none border-0 bg-transparent p-0 pl-2 pr-7 outline-none md:pl-0",style:{maxHeight:200,height:"100%",minHeight:24}},void 0,!1,void 0,this),z0.jsxDEV(EH,{isListening:R,toggleListening:g,icons:Q},void 0,!1,void 0,this),z0.jsxDEV(IH,{name:$,fileInputRef:z,accept:Y,onSelectFile:V,icons:Q},void 0,!1,void 0,this),z0.jsxDEV(MH,{onClick:U,icons:Q},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),D&&H==="bottom"&&z0.jsxDEV(FZ,{options:D,handleOptionClick:q},void 0,!1,void 0,this)]},void 0,!0,void 0,this)}),jH=DN;var FG=e(VG(),1),o5=e(VG(),1),A9=FG.default.default||FG.default;var n9=require("react");function a1(){}function N9(){}function Bq($,Z){let G=Z||{};return($[$.length-1]===""?[...$,""]:$).join((G.padRight?" ":"")+","+(G.padLeft===!1?"":" ")).trim()}var vF=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,xF=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,hF={};function B9($,Z){return((Z||hF).jsx?xF:vF).test($)}var bF=/[ \t\n\f\r]/g;function RG($){return typeof $==="object"?$.type==="text"?Vq($.value):!1:Vq($)}function Vq($){return $.replace(bF,"")===""}class P5{constructor($,Z,G){if(this.normal=Z,this.property=$,G)this.space=G}}P5.prototype.normal={};P5.prototype.property={};P5.prototype.space=void 0;function OG($,Z){let G={},J={};for(let X of $)Object.assign(G,X.property),Object.assign(J,X.normal);return new P5(G,J,Z)}function b7($){return $.toLowerCase()}class b1{constructor($,Z){this.attribute=Z,this.property=$}}b1.prototype.attribute="";b1.prototype.booleanish=!1;b1.prototype.boolean=!1;b1.prototype.commaOrSpaceSeparated=!1;b1.prototype.commaSeparated=!1;b1.prototype.defined=!1;b1.prototype.mustUseProperty=!1;b1.prototype.number=!1;b1.prototype.overloadedBoolean=!1;b1.prototype.property="";b1.prototype.spaceSeparated=!1;b1.prototype.space=void 0;var k7={};Q8(k7,{spaceSeparated:()=>Z1,overloadedBoolean:()=>V9,number:()=>j,commaSeparated:()=>T5,commaOrSpaceSeparated:()=>e1,booleanish:()=>A1,boolean:()=>u});var kF=0,u=t5(),A1=t5(),V9=t5(),j=t5(),Z1=t5(),T5=t5(),e1=t5();function t5(){return 2**++kF}var MG=Object.keys(k7);class C6 extends b1{constructor($,Z,G,J){let X=-1;super($,Z);if(Fq(this,"space",J),typeof G==="number")while(++X<MG.length){let Y=MG[X];Fq(this,MG[X],(G&k7[Y])===k7[Y])}}}C6.prototype.defined=!0;function Fq($,Z,G){if(G)$[Z]=G}function A0($){let Z={},G={};for(let[J,X]of Object.entries($.properties)){let Y=new C6(J,$.transform($.attributes||{},J),X,$.space);if($.mustUseProperty&&$.mustUseProperty.includes(J))Y.mustUseProperty=!0;Z[J]=Y,G[b7(J)]=J,G[b7(Y.attribute)]=J}return new P5(Z,G,$.space)}var DG=A0({properties:{ariaActiveDescendant:null,ariaAtomic:A1,ariaAutoComplete:null,ariaBusy:A1,ariaChecked:A1,ariaColCount:j,ariaColIndex:j,ariaColSpan:j,ariaControls:Z1,ariaCurrent:null,ariaDescribedBy:Z1,ariaDetails:null,ariaDisabled:A1,ariaDropEffect:Z1,ariaErrorMessage:null,ariaExpanded:A1,ariaFlowTo:Z1,ariaGrabbed:A1,ariaHasPopup:null,ariaHidden:A1,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:Z1,ariaLevel:j,ariaLive:null,ariaModal:A1,ariaMultiLine:A1,ariaMultiSelectable:A1,ariaOrientation:null,ariaOwns:Z1,ariaPlaceholder:null,ariaPosInSet:j,ariaPressed:A1,ariaReadOnly:A1,ariaRelevant:null,ariaRequired:A1,ariaRoleDescription:Z1,ariaRowCount:j,ariaRowIndex:j,ariaRowSpan:j,ariaSelected:A1,ariaSetSize:j,ariaSort:null,ariaValueMax:j,ariaValueMin:j,ariaValueNow:j,ariaValueText:null,role:null},transform($,Z){return Z==="role"?Z:"aria-"+Z.slice(4).toLowerCase()}});function F9($,Z){return Z in $?$[Z]:Z}function R9($,Z){return F9($,Z.toLowerCase())}var Rq=A0({attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:T5,acceptCharset:Z1,accessKey:Z1,action:null,allow:null,allowFullScreen:u,allowPaymentRequest:u,allowUserMedia:u,alt:null,as:null,async:u,autoCapitalize:null,autoComplete:Z1,autoFocus:u,autoPlay:u,blocking:Z1,capture:null,charSet:null,checked:u,cite:null,className:Z1,cols:j,colSpan:null,content:null,contentEditable:A1,controls:u,controlsList:Z1,coords:j|T5,crossOrigin:null,data:null,dateTime:null,decoding:null,default:u,defer:u,dir:null,dirName:null,disabled:u,download:V9,draggable:A1,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:u,formTarget:null,headers:Z1,height:j,hidden:V9,high:j,href:null,hrefLang:null,htmlFor:Z1,httpEquiv:Z1,id:null,imageSizes:null,imageSrcSet:null,inert:u,inputMode:null,integrity:null,is:null,isMap:u,itemId:null,itemProp:Z1,itemRef:Z1,itemScope:u,itemType:Z1,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:u,low:j,manifest:null,max:null,maxLength:j,media:null,method:null,min:null,minLength:j,multiple:u,muted:u,name:null,nonce:null,noModule:u,noValidate:u,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforeMatch:null,onBeforePrint:null,onBeforeToggle:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextLost:null,onContextMenu:null,onContextRestored:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onScrollEnd:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:u,optimum:j,pattern:null,ping:Z1,placeholder:null,playsInline:u,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:u,referrerPolicy:null,rel:Z1,required:u,reversed:u,rows:j,rowSpan:j,sandbox:Z1,scope:null,scoped:u,seamless:u,selected:u,shadowRootClonable:u,shadowRootDelegatesFocus:u,shadowRootMode:null,shape:null,size:j,sizes:null,slot:null,span:j,spellCheck:A1,src:null,srcDoc:null,srcLang:null,srcSet:null,start:j,step:null,style:null,tabIndex:j,target:null,title:null,translate:null,type:null,typeMustMatch:u,useMap:null,value:A1,width:j,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:Z1,axis:null,background:null,bgColor:null,border:j,borderColor:null,bottomMargin:j,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:u,declare:u,event:null,face:null,frame:null,frameBorder:null,hSpace:j,leftMargin:j,link:null,longDesc:null,lowSrc:null,marginHeight:j,marginWidth:j,noResize:u,noHref:u,noShade:u,noWrap:u,object:null,profile:null,prompt:null,rev:null,rightMargin:j,rules:null,scheme:null,scrolling:A1,standby:null,summary:null,text:null,topMargin:j,valueType:null,version:null,vAlign:null,vLink:null,vSpace:j,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:u,disableRemotePlayback:u,prefix:null,property:null,results:j,security:null,unselectable:null},space:"html",transform:R9});var Oq=A0({attributes:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",className:"class",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",crossOrigin:"crossorigin",dataType:"datatype",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",hrefLang:"hreflang",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",horizOriginY:"horiz-origin-y",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",navDown:"nav-down",navDownLeft:"nav-down-left",navDownRight:"nav-down-right",navLeft:"nav-left",navNext:"nav-next",navPrev:"nav-prev",navRight:"nav-right",navUp:"nav-up",navUpLeft:"nav-up-left",navUpRight:"nav-up-right",onAbort:"onabort",onActivate:"onactivate",onAfterPrint:"onafterprint",onBeforePrint:"onbeforeprint",onBegin:"onbegin",onCancel:"oncancel",onCanPlay:"oncanplay",onCanPlayThrough:"oncanplaythrough",onChange:"onchange",onClick:"onclick",onClose:"onclose",onCopy:"oncopy",onCueChange:"oncuechange",onCut:"oncut",onDblClick:"ondblclick",onDrag:"ondrag",onDragEnd:"ondragend",onDragEnter:"ondragenter",onDragExit:"ondragexit",onDragLeave:"ondragleave",onDragOver:"ondragover",onDragStart:"ondragstart",onDrop:"ondrop",onDurationChange:"ondurationchange",onEmptied:"onemptied",onEnd:"onend",onEnded:"onended",onError:"onerror",onFocus:"onfocus",onFocusIn:"onfocusin",onFocusOut:"onfocusout",onHashChange:"onhashchange",onInput:"oninput",onInvalid:"oninvalid",onKeyDown:"onkeydown",onKeyPress:"onkeypress",onKeyUp:"onkeyup",onLoad:"onload",onLoadedData:"onloadeddata",onLoadedMetadata:"onloadedmetadata",onLoadStart:"onloadstart",onMessage:"onmessage",onMouseDown:"onmousedown",onMouseEnter:"onmouseenter",onMouseLeave:"onmouseleave",onMouseMove:"onmousemove",onMouseOut:"onmouseout",onMouseOver:"onmouseover",onMouseUp:"onmouseup",onMouseWheel:"onmousewheel",onOffline:"onoffline",onOnline:"ononline",onPageHide:"onpagehide",onPageShow:"onpageshow",onPaste:"onpaste",onPause:"onpause",onPlay:"onplay",onPlaying:"onplaying",onPopState:"onpopstate",onProgress:"onprogress",onRateChange:"onratechange",onRepeat:"onrepeat",onReset:"onreset",onResize:"onresize",onScroll:"onscroll",onSeeked:"onseeked",onSeeking:"onseeking",onSelect:"onselect",onShow:"onshow",onStalled:"onstalled",onStorage:"onstorage",onSubmit:"onsubmit",onSuspend:"onsuspend",onTimeUpdate:"ontimeupdate",onToggle:"ontoggle",onUnload:"onunload",onVolumeChange:"onvolumechange",onWaiting:"onwaiting",onZoom:"onzoom",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",referrerPolicy:"referrerpolicy",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDashArray:"stroke-dasharray",strokeDashOffset:"stroke-dashoffset",strokeLineCap:"stroke-linecap",strokeLineJoin:"stroke-linejoin",strokeMiterLimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",tabIndex:"tabindex",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",transformOrigin:"transform-origin",typeOf:"typeof",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",playbackOrder:"playbackorder",timelineBegin:"timelinebegin"},properties:{about:e1,accentHeight:j,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:j,amplitude:j,arabicForm:null,ascent:j,attributeName:null,attributeType:null,azimuth:j,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:j,by:null,calcMode:null,capHeight:j,className:Z1,clip:null,clipPath:null,clipPathUnits:null,clipRule:null,color:null,colorInterpolation:null,colorInterpolationFilters:null,colorProfile:null,colorRendering:null,content:null,contentScriptType:null,contentStyleType:null,crossOrigin:null,cursor:null,cx:null,cy:null,d:null,dataType:null,defaultAction:null,descent:j,diffuseConstant:j,direction:null,display:null,dur:null,divisor:j,dominantBaseline:null,download:u,dx:null,dy:null,edgeMode:null,editable:null,elevation:j,enableBackground:null,end:null,event:null,exponent:j,externalResourcesRequired:null,fill:null,fillOpacity:j,fillRule:null,filter:null,filterRes:null,filterUnits:null,floodColor:null,floodOpacity:null,focusable:null,focusHighlight:null,fontFamily:null,fontSize:null,fontSizeAdjust:null,fontStretch:null,fontStyle:null,fontVariant:null,fontWeight:null,format:null,fr:null,from:null,fx:null,fy:null,g1:T5,g2:T5,glyphName:T5,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:j,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:j,horizOriginX:j,horizOriginY:j,id:null,ideographic:j,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:j,k:j,k1:j,k2:j,k3:j,k4:j,kernelMatrix:e1,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:j,local:null,markerEnd:null,markerMid:null,markerStart:null,markerHeight:null,markerUnits:null,markerWidth:null,mask:null,maskContentUnits:null,maskUnits:null,mathematical:null,max:null,media:null,mediaCharacterEncoding:null,mediaContentEncodings:null,mediaSize:j,mediaTime:null,method:null,min:null,mode:null,name:null,navDown:null,navDownLeft:null,navDownRight:null,navLeft:null,navNext:null,navPrev:null,navRight:null,navUp:null,navUpLeft:null,navUpRight:null,numOctaves:null,observer:null,offset:null,onAbort:null,onActivate:null,onAfterPrint:null,onBeforePrint:null,onBegin:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnd:null,onEnded:null,onError:null,onFocus:null,onFocusIn:null,onFocusOut:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadStart:null,onMessage:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onMouseWheel:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRepeat:null,onReset:null,onResize:null,onScroll:null,onSeeked:null,onSeeking:null,onSelect:null,onShow:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnload:null,onVolumeChange:null,onWaiting:null,onZoom:null,opacity:null,operator:null,order:null,orient:null,orientation:null,origin:null,overflow:null,overlay:null,overlinePosition:j,overlineThickness:j,paintOrder:null,panose1:null,path:null,pathLength:j,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:Z1,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:j,pointsAtY:j,pointsAtZ:j,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:e1,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:e1,rev:e1,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:e1,requiredFeatures:e1,requiredFonts:e1,requiredFormats:e1,resource:null,restart:null,result:null,rotate:null,rx:null,ry:null,scale:null,seed:null,shapeRendering:null,side:null,slope:null,snapshotTime:null,specularConstant:j,specularExponent:j,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:j,strikethroughThickness:j,string:null,stroke:null,strokeDashArray:e1,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:j,strokeOpacity:j,strokeWidth:null,style:null,surfaceScale:j,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:e1,tabIndex:j,tableValues:null,target:null,targetX:j,targetY:j,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:e1,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:j,underlineThickness:j,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:j,values:null,vAlphabetic:j,vMathematical:j,vectorEffect:null,vHanging:j,vIdeographic:j,version:null,vertAdvY:j,vertOriginX:j,vertOriginY:j,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:j,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null},space:"svg",transform:F9});var IG=A0({properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null},space:"xlink",transform($,Z){return"xlink:"+Z.slice(5).toLowerCase()}});var PG=A0({attributes:{xmlnsxlink:"xmlns:xlink"},properties:{xmlnsXLink:null,xmlns:null},space:"xmlns",transform:R9});var TG=A0({properties:{xmlBase:null,xmlLang:null,xmlSpace:null},space:"xml",transform($,Z){return"xml:"+Z.slice(3).toLowerCase()}});var wG={classId:"classID",dataType:"datatype",itemId:"itemID",strokeDashArray:"strokeDasharray",strokeDashOffset:"strokeDashoffset",strokeLineCap:"strokeLinecap",strokeLineJoin:"strokeLinejoin",strokeMiterLimit:"strokeMiterlimit",typeOf:"typeof",xLinkActuate:"xlinkActuate",xLinkArcRole:"xlinkArcrole",xLinkHref:"xlinkHref",xLinkRole:"xlinkRole",xLinkShow:"xlinkShow",xLinkTitle:"xlinkTitle",xLinkType:"xlinkType",xmlnsXLink:"xmlnsXlink"};var mF=/[A-Z]/g,Mq=/-[a-z]/g,fF=/^data[-\w.:]+$/i;function EG($,Z){let G=b7(Z),J=Z,X=b1;if(G in $.normal)return $.property[$.normal[G]];if(G.length>4&&G.slice(0,4)==="data"&&fF.test(Z)){if(Z.charAt(4)==="-"){let Y=Z.slice(5).replace(Mq,pF);J="data"+Y.charAt(0).toUpperCase()+Y.slice(1)}else{let Y=Z.slice(4);if(!Mq.test(Y)){let H=Y.replace(mF,uF);if(H.charAt(0)!=="-")H="-"+H;Z="data"+H}}X=C6}return new X(J,Z)}function uF($){return"-"+$.toLowerCase()}function pF($){return $.charAt(1).toUpperCase()}var Dq=OG([DG,Rq,IG,PG,TG],"html"),O9=OG([DG,Oq,IG,PG,TG],"svg");function Iq($){return $.join(" ").trim()}var Eq=e(WG(),1);var M9=Pq("end"),g6=Pq("start");function Pq($){return Z;function Z(G){let J=G&&G.position&&G.position[$]||{};if(typeof J.line==="number"&&J.line>0&&typeof J.column==="number"&&J.column>0)return{line:J.line,column:J.column,offset:typeof J.offset==="number"&&J.offset>-1?J.offset:void 0}}}function jG($){let Z=g6($),G=M9($);if(Z&&G)return{start:Z,end:G}}function w5($){if(!$||typeof $!=="object")return"";if("position"in $||"type"in $)return Tq($.position);if("start"in $||"end"in $)return Tq($);if("line"in $||"column"in $)return SG($);return""}function SG($){return wq($&&$.line)+":"+wq($&&$.column)}function Tq($){return SG($&&$.start)+"-"+SG($&&$.end)}function wq($){return $&&typeof $==="number"?$:1}class D1 extends Error{constructor($,Z,G){super();if(typeof Z==="string")G=Z,Z=void 0;let J="",X={},Y=!1;if(Z)if("line"in Z&&"column"in Z)X={place:Z};else if("start"in Z&&"end"in Z)X={place:Z};else if("type"in Z)X={ancestors:[Z],place:Z.position};else X={...Z};if(typeof $==="string")J=$;else if(!X.cause&&$)Y=!0,J=$.message,X.cause=$;if(!X.ruleId&&!X.source&&typeof G==="string"){let Q=G.indexOf(":");if(Q===-1)X.ruleId=G;else X.source=G.slice(0,Q),X.ruleId=G.slice(Q+1)}if(!X.place&&X.ancestors&&X.ancestors){let Q=X.ancestors[X.ancestors.length-1];if(Q)X.place=Q.position}let H=X.place&&"start"in X.place?X.place.start:X.place;this.ancestors=X.ancestors||void 0,this.cause=X.cause||void 0,this.column=H?H.column:void 0,this.fatal=void 0,this.file="",this.message=J,this.line=H?H.line:void 0,this.name=w5(X.place)||"1:1",this.place=X.place||void 0,this.reason=this.message,this.ruleId=X.ruleId||void 0,this.source=X.source||void 0,this.stack=Y&&X.cause&&typeof X.cause.stack==="string"?X.cause.stack:"",this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}}D1.prototype.file="";D1.prototype.name="";D1.prototype.reason="";D1.prototype.message="";D1.prototype.stack="";D1.prototype.column=void 0;D1.prototype.line=void 0;D1.prototype.ancestors=void 0;D1.prototype.cause=void 0;D1.prototype.fatal=void 0;D1.prototype.place=void 0;D1.prototype.ruleId=void 0;D1.prototype.source=void 0;var _G={}.hasOwnProperty,lF=new Map,iF=/[A-Z]/g,cF=new Set(["table","tbody","thead","tfoot","tr"]),dF=new Set(["td","th"]),jq="https://github.com/syntax-tree/hast-util-to-jsx-runtime";function CG($,Z){if(!Z||Z.Fragment===void 0)throw TypeError("Expected `Fragment` in options");let G=Z.filePath||void 0,J;if(Z.development){if(typeof Z.jsxDEV!=="function")throw TypeError("Expected `jsxDEV` in options when `development: true`");J=$R(G,Z.jsxDEV)}else{if(typeof Z.jsx!=="function")throw TypeError("Expected `jsx` in production options");if(typeof Z.jsxs!=="function")throw TypeError("Expected `jsxs` in production options");J=eF(G,Z.jsx,Z.jsxs)}let X={Fragment:Z.Fragment,ancestors:[],components:Z.components||{},create:J,elementAttributeNameCase:Z.elementAttributeNameCase||"react",evaluater:Z.createEvaluater?Z.createEvaluater():void 0,filePath:G,ignoreInvalidStyle:Z.ignoreInvalidStyle||!1,passKeys:Z.passKeys!==!1,passNode:Z.passNode||!1,schema:Z.space==="svg"?O9:Dq,stylePropertyNameCase:Z.stylePropertyNameCase||"dom",tableCellAlignToStyle:Z.tableCellAlignToStyle!==!1},Y=Sq(X,$,void 0);if(Y&&typeof Y!=="string")return Y;return X.create($,X.Fragment,{children:Y||void 0},void 0)}function Sq($,Z,G){if(Z.type==="element")return rF($,Z,G);if(Z.type==="mdxFlowExpression"||Z.type==="mdxTextExpression")return aF($,Z);if(Z.type==="mdxJsxFlowElement"||Z.type==="mdxJsxTextElement")return sF($,Z,G);if(Z.type==="mdxjsEsm")return nF($,Z);if(Z.type==="root")return oF($,Z,G);if(Z.type==="text")return tF($,Z)}function rF($,Z,G){let J=$.schema,X=J;if(Z.tagName.toLowerCase()==="svg"&&J.space==="html")X=O9,$.schema=X;$.ancestors.push(Z);let Y=Cq($,Z.tagName,!1),H=ZR($,Z),Q=yG($,Z);if(cF.has(Z.tagName))Q=Q.filter(function(q){return typeof q==="string"?!RG(q):!0});return _q($,H,Y,Z),gG(H,Q),$.ancestors.pop(),$.schema=J,$.create(Z,Y,H,G)}function aF($,Z){if(Z.data&&Z.data.estree&&$.evaluater){let J=Z.data.estree.body[0];return a1(J.type==="ExpressionStatement"),$.evaluater.evaluateExpression(J.expression)}m7($,Z.position)}function nF($,Z){if(Z.data&&Z.data.estree&&$.evaluater)return $.evaluater.evaluateProgram(Z.data.estree);m7($,Z.position)}function sF($,Z,G){let J=$.schema,X=J;if(Z.name==="svg"&&J.space==="html")X=O9,$.schema=X;$.ancestors.push(Z);let Y=Z.name===null?$.Fragment:Cq($,Z.name,!0),H=GR($,Z),Q=yG($,Z);return _q($,H,Y,Z),gG(H,Q),$.ancestors.pop(),$.schema=J,$.create(Z,Y,H,G)}function oF($,Z,G){let J={};return gG(J,yG($,Z)),$.create(Z,$.Fragment,J,G)}function tF($,Z){return Z.value}function _q($,Z,G,J){if(typeof G!=="string"&&G!==$.Fragment&&$.passNode)Z.node=J}function gG($,Z){if(Z.length>0){let G=Z.length>1?Z:Z[0];if(G)$.children=G}}function eF($,Z,G){return J;function J(X,Y,H,Q){let U=Array.isArray(H.children)?G:Z;return Q?U(Y,H,Q):U(Y,H)}}function $R($,Z){return G;function G(J,X,Y,H){let Q=Array.isArray(Y.children),q=g6(J);return Z(X,Y,H,Q,{columnNumber:q?q.column-1:void 0,fileName:$,lineNumber:q?q.line:void 0},void 0)}}function ZR($,Z){let G={},J,X;for(X in Z.properties)if(X!=="children"&&_G.call(Z.properties,X)){let Y=JR($,X,Z.properties[X]);if(Y){let[H,Q]=Y;if($.tableCellAlignToStyle&&H==="align"&&typeof Q==="string"&&dF.has(Z.tagName))J=Q;else G[H]=Q}}if(J){let Y=G.style||(G.style={});Y[$.stylePropertyNameCase==="css"?"text-align":"textAlign"]=J}return G}function GR($,Z){let G={};for(let J of Z.attributes)if(J.type==="mdxJsxExpressionAttribute")if(J.data&&J.data.estree&&$.evaluater){let Y=J.data.estree.body[0];a1(Y.type==="ExpressionStatement");let H=Y.expression;a1(H.type==="ObjectExpression");let Q=H.properties[0];a1(Q.type==="SpreadElement"),Object.assign(G,$.evaluater.evaluateExpression(Q.argument))}else m7($,Z.position);else{let X=J.name,Y;if(J.value&&typeof J.value==="object")if(J.value.data&&J.value.data.estree&&$.evaluater){let Q=J.value.data.estree.body[0];a1(Q.type==="ExpressionStatement"),Y=$.evaluater.evaluateExpression(Q.expression)}else m7($,Z.position);else Y=J.value===null?!0:J.value;G[X]=Y}return G}function yG($,Z){let G=[],J=-1,X=$.passKeys?new Map:lF;while(++J<Z.children.length){let Y=Z.children[J],H;if($.passKeys){let q=Y.type==="element"?Y.tagName:Y.type==="mdxJsxFlowElement"||Y.type==="mdxJsxTextElement"?Y.name:void 0;if(q){let U=X.get(q)||0;H=q+"-"+U,X.set(q,U+1)}}let Q=Sq($,Y,H);if(Q!==void 0)G.push(Q)}return G}function JR($,Z,G){let J=EG($.schema,Z);if(G===null||G===void 0||typeof G==="number"&&Number.isNaN(G))return;if(Array.isArray(G))G=J.commaSeparated?Bq(G):Iq(G);if(J.property==="style"){let X=typeof G==="object"?G:XR($,String(G));if($.stylePropertyNameCase==="css")X=YR(X);return["style",X]}return[$.elementAttributeNameCase==="react"&&J.space?wG[J.property]||J.property:J.attribute,G]}function XR($,Z){try{return Eq.default(Z,{reactCompat:!0})}catch(G){if($.ignoreInvalidStyle)return{};let J=G,X=new D1("Cannot parse `style` attribute",{ancestors:$.ancestors,cause:J,ruleId:"style",source:"hast-util-to-jsx-runtime"});throw X.file=$.filePath||void 0,X.url=jq+"#cannot-parse-style-attribute",X}}function Cq($,Z,G){let J;if(!G)J={type:"Literal",value:Z};else if(Z.includes(".")){let X=Z.split("."),Y=-1,H;while(++Y<X.length){let Q=B9(X[Y])?{type:"Identifier",name:X[Y]}:{type:"Literal",value:X[Y]};H=H?{type:"MemberExpression",object:H,property:Q,computed:Boolean(Y&&Q.type==="Literal"),optional:!1}:Q}a1(H,"always a result"),J=H}else J=B9(Z)&&!/^[a-z]/.test(Z)?{type:"Identifier",name:Z}:{type:"Literal",value:Z};if(J.type==="Literal"){let X=J.value;return _G.call($.components,X)?$.components[X]:X}if($.evaluater)return $.evaluater.evaluateExpression(J);m7($)}function m7($,Z){let G=new D1("Cannot handle MDX estrees without `createEvaluater`",{ancestors:$.ancestors,place:Z,ruleId:"mdx-estree",source:"hast-util-to-jsx-runtime"});throw G.file=$.filePath||void 0,G.url=jq+"#cannot-handle-mdx-estrees-without-createevaluater",G}function YR($){let Z={},G;for(G in $)if(_G.call($,G))Z[HR(G)]=$[G];return Z}function HR($){let Z=$.replace(iF,QR);if(Z.slice(0,3)==="ms-")Z="-"+Z;return Z}function QR($){return"-"+$.toLowerCase()}var f7={action:["form"],cite:["blockquote","del","ins","q"],data:["object"],formAction:["button","input"],href:["a","area","base","link"],icon:["menuitem"],itemId:null,manifest:["html"],ping:["a","area"],poster:["video"],src:["audio","embed","iframe","img","input","script","source","track","video"]};var f6=require("react/jsx-runtime"),$K=require("react");var qR={};function vG($,Z){let G=Z||qR,J=typeof G.includeImageAlt==="boolean"?G.includeImageAlt:!0,X=typeof G.includeHtml==="boolean"?G.includeHtml:!0;return yq($,J,X)}function yq($,Z,G){if(KR($)){if("value"in $)return $.type==="html"&&!G?"":$.value;if(Z&&"alt"in $&&$.alt)return $.alt;if("children"in $)return gq($.children,Z,G)}if(Array.isArray($))return gq($,Z,G);return""}function gq($,Z,G){let J=[],X=-1;while(++X<$.length)J[X]=yq($[X],Z,G);return J.join("")}function KR($){return Boolean($&&typeof $==="object")}var xG={AElig:"Æ",AMP:"&",Aacute:"Á",Abreve:"Ă",Acirc:"Â",Acy:"А",Afr:"\uD835\uDD04",Agrave:"À",Alpha:"Α",Amacr:"Ā",And:"⩓",Aogon:"Ą",Aopf:"\uD835\uDD38",ApplyFunction:"",Aring:"Å",Ascr:"\uD835\uDC9C",Assign:"≔",Atilde:"Ã",Auml:"Ä",Backslash:"∖",Barv:"⫧",Barwed:"⌆",Bcy:"Б",Because:"∵",Bernoullis:"ℬ",Beta:"Β",Bfr:"\uD835\uDD05",Bopf:"\uD835\uDD39",Breve:"˘",Bscr:"ℬ",Bumpeq:"≎",CHcy:"Ч",COPY:"©",Cacute:"Ć",Cap:"⋒",CapitalDifferentialD:"ⅅ",Cayleys:"ℭ",Ccaron:"Č",Ccedil:"Ç",Ccirc:"Ĉ",Cconint:"∰",Cdot:"Ċ",Cedilla:"¸",CenterDot:"·",Cfr:"ℭ",Chi:"Χ",CircleDot:"⊙",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",Colon:"∷",Colone:"⩴",Congruent:"≡",Conint:"∯",ContourIntegral:"∮",Copf:"ℂ",Coproduct:"∐",CounterClockwiseContourIntegral:"∳",Cross:"⨯",Cscr:"\uD835\uDC9E",Cup:"⋓",CupCap:"≍",DD:"ⅅ",DDotrahd:"⤑",DJcy:"Ђ",DScy:"Ѕ",DZcy:"Џ",Dagger:"‡",Darr:"↡",Dashv:"⫤",Dcaron:"Ď",Dcy:"Д",Del:"∇",Delta:"Δ",Dfr:"\uD835\uDD07",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",Diamond:"⋄",DifferentialD:"ⅆ",Dopf:"\uD835\uDD3B",Dot:"¨",DotDot:"⃜",DotEqual:"≐",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",Downarrow:"⇓",Dscr:"\uD835\uDC9F",Dstrok:"Đ",ENG:"Ŋ",ETH:"Ð",Eacute:"É",Ecaron:"Ě",Ecirc:"Ê",Ecy:"Э",Edot:"Ė",Efr:"\uD835\uDD08",Egrave:"È",Element:"∈",Emacr:"Ē",EmptySmallSquare:"◻",EmptyVerySmallSquare:"▫",Eogon:"Ę",Eopf:"\uD835\uDD3C",Epsilon:"Ε",Equal:"⩵",EqualTilde:"≂",Equilibrium:"⇌",Escr:"ℰ",Esim:"⩳",Eta:"Η",Euml:"Ë",Exists:"∃",ExponentialE:"ⅇ",Fcy:"Ф",Ffr:"\uD835\uDD09",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",Fopf:"\uD835\uDD3D",ForAll:"∀",Fouriertrf:"ℱ",Fscr:"ℱ",GJcy:"Ѓ",GT:">",Gamma:"Γ",Gammad:"Ϝ",Gbreve:"Ğ",Gcedil:"Ģ",Gcirc:"Ĝ",Gcy:"Г",Gdot:"Ġ",Gfr:"\uD835\uDD0A",Gg:"⋙",Gopf:"\uD835\uDD3E",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"\uD835\uDCA2",Gt:"≫",HARDcy:"Ъ",Hacek:"ˇ",Hat:"^",Hcirc:"Ĥ",Hfr:"ℌ",HilbertSpace:"ℋ",Hopf:"ℍ",HorizontalLine:"─",Hscr:"ℋ",Hstrok:"Ħ",HumpDownHump:"≎",HumpEqual:"≏",IEcy:"Е",IJlig:"IJ",IOcy:"Ё",Iacute:"Í",Icirc:"Î",Icy:"И",Idot:"İ",Ifr:"ℑ",Igrave:"Ì",Im:"ℑ",Imacr:"Ī",ImaginaryI:"ⅈ",Implies:"⇒",Int:"∬",Integral:"∫",Intersection:"⋂",InvisibleComma:"",InvisibleTimes:"",Iogon:"Į",Iopf:"\uD835\uDD40",Iota:"Ι",Iscr:"ℐ",Itilde:"Ĩ",Iukcy:"І",Iuml:"Ï",Jcirc:"Ĵ",Jcy:"Й",Jfr:"\uD835\uDD0D",Jopf:"\uD835\uDD41",Jscr:"\uD835\uDCA5",Jsercy:"Ј",Jukcy:"Є",KHcy:"Х",KJcy:"Ќ",Kappa:"Κ",Kcedil:"Ķ",Kcy:"К",Kfr:"\uD835\uDD0E",Kopf:"\uD835\uDD42",Kscr:"\uD835\uDCA6",LJcy:"Љ",LT:"<",Lacute:"Ĺ",Lambda:"Λ",Lang:"⟪",Laplacetrf:"ℒ",Larr:"↞",Lcaron:"Ľ",Lcedil:"Ļ",Lcy:"Л",LeftAngleBracket:"⟨",LeftArrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",LeftRightArrow:"↔",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",Leftarrow:"⇐",Leftrightarrow:"⇔",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",LessLess:"⪡",LessSlantEqual:"⩽",LessTilde:"≲",Lfr:"\uD835\uDD0F",Ll:"⋘",Lleftarrow:"⇚",Lmidot:"Ŀ",LongLeftArrow:"⟵",LongLeftRightArrow:"⟷",LongRightArrow:"⟶",Longleftarrow:"⟸",Longleftrightarrow:"⟺",Longrightarrow:"⟹",Lopf:"\uD835\uDD43",LowerLeftArrow:"↙",LowerRightArrow:"↘",Lscr:"ℒ",Lsh:"↰",Lstrok:"Ł",Lt:"≪",Map:"⤅",Mcy:"М",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"\uD835\uDD10",MinusPlus:"∓",Mopf:"\uD835\uDD44",Mscr:"ℳ",Mu:"Μ",NJcy:"Њ",Nacute:"Ń",Ncaron:"Ň",Ncedil:"Ņ",Ncy:"Н",NegativeMediumSpace:"",NegativeThickSpace:"",NegativeThinSpace:"",NegativeVeryThinSpace:"",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:`
|
|
36
|
-
`,Nfr:"\uD835\uDD11",NoBreak:"",NonBreakingSpace:" ",Nopf:"ℕ",Not:"⫬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",Nscr:"\uD835\uDCA9",Ntilde:"Ñ",Nu:"Ν",OElig:"Œ",Oacute:"Ó",Ocirc:"Ô",Ocy:"О",Odblac:"Ő",Ofr:"\uD835\uDD12",Ograve:"Ò",Omacr:"Ō",Omega:"Ω",Omicron:"Ο",Oopf:"\uD835\uDD46",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",Or:"⩔",Oscr:"\uD835\uDCAA",Oslash:"Ø",Otilde:"Õ",Otimes:"⨷",Ouml:"Ö",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",PartialD:"∂",Pcy:"П",Pfr:"\uD835\uDD13",Phi:"Φ",Pi:"Π",PlusMinus:"±",Poincareplane:"ℌ",Popf:"ℙ",Pr:"⪻",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",Prime:"″",Product:"∏",Proportion:"∷",Proportional:"∝",Pscr:"\uD835\uDCAB",Psi:"Ψ",QUOT:'"',Qfr:"\uD835\uDD14",Qopf:"ℚ",Qscr:"\uD835\uDCAC",RBarr:"⤐",REG:"®",Racute:"Ŕ",Rang:"⟫",Rarr:"↠",Rarrtl:"⤖",Rcaron:"Ř",Rcedil:"Ŗ",Rcy:"Р",Re:"ℜ",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",Rfr:"ℜ",Rho:"Ρ",RightAngleBracket:"⟩",RightArrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",Rightarrow:"⇒",Ropf:"ℝ",RoundImplies:"⥰",Rrightarrow:"⇛",Rscr:"ℛ",Rsh:"↱",RuleDelayed:"⧴",SHCHcy:"Щ",SHcy:"Ш",SOFTcy:"Ь",Sacute:"Ś",Sc:"⪼",Scaron:"Š",Scedil:"Ş",Scirc:"Ŝ",Scy:"С",Sfr:"\uD835\uDD16",ShortDownArrow:"↓",ShortLeftArrow:"←",ShortRightArrow:"→",ShortUpArrow:"↑",Sigma:"Σ",SmallCircle:"∘",Sopf:"\uD835\uDD4A",Sqrt:"√",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",Sscr:"\uD835\uDCAE",Star:"⋆",Sub:"⋐",Subset:"⋐",SubsetEqual:"⊆",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",SuchThat:"∋",Sum:"∑",Sup:"⋑",Superset:"⊃",SupersetEqual:"⊇",Supset:"⋑",THORN:"Þ",TRADE:"™",TSHcy:"Ћ",TScy:"Ц",Tab:"\t",Tau:"Τ",Tcaron:"Ť",Tcedil:"Ţ",Tcy:"Т",Tfr:"\uD835\uDD17",Therefore:"∴",Theta:"Θ",ThickSpace:" ",ThinSpace:" ",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",Topf:"\uD835\uDD4B",TripleDot:"⃛",Tscr:"\uD835\uDCAF",Tstrok:"Ŧ",Uacute:"Ú",Uarr:"↟",Uarrocir:"⥉",Ubrcy:"Ў",Ubreve:"Ŭ",Ucirc:"Û",Ucy:"У",Udblac:"Ű",Ufr:"\uD835\uDD18",Ugrave:"Ù",Umacr:"Ū",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",Uopf:"\uD835\uDD4C",UpArrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",UpDownArrow:"↕",UpEquilibrium:"⥮",UpTee:"⊥",UpTeeArrow:"↥",Uparrow:"⇑",Updownarrow:"⇕",UpperLeftArrow:"↖",UpperRightArrow:"↗",Upsi:"ϒ",Upsilon:"Υ",Uring:"Ů",Uscr:"\uD835\uDCB0",Utilde:"Ũ",Uuml:"Ü",VDash:"⊫",Vbar:"⫫",Vcy:"В",Vdash:"⊩",Vdashl:"⫦",Vee:"⋁",Verbar:"‖",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"\uD835\uDD19",Vopf:"\uD835\uDD4D",Vscr:"\uD835\uDCB1",Vvdash:"⊪",Wcirc:"Ŵ",Wedge:"⋀",Wfr:"\uD835\uDD1A",Wopf:"\uD835\uDD4E",Wscr:"\uD835\uDCB2",Xfr:"\uD835\uDD1B",Xi:"Ξ",Xopf:"\uD835\uDD4F",Xscr:"\uD835\uDCB3",YAcy:"Я",YIcy:"Ї",YUcy:"Ю",Yacute:"Ý",Ycirc:"Ŷ",Ycy:"Ы",Yfr:"\uD835\uDD1C",Yopf:"\uD835\uDD50",Yscr:"\uD835\uDCB4",Yuml:"Ÿ",ZHcy:"Ж",Zacute:"Ź",Zcaron:"Ž",Zcy:"З",Zdot:"Ż",ZeroWidthSpace:"",Zeta:"Ζ",Zfr:"ℨ",Zopf:"ℤ",Zscr:"\uD835\uDCB5",aacute:"á",abreve:"ă",ac:"∾",acE:"∾̳",acd:"∿",acirc:"â",acute:"´",acy:"а",aelig:"æ",af:"",afr:"\uD835\uDD1E",agrave:"à",alefsym:"ℵ",aleph:"ℵ",alpha:"α",amacr:"ā",amalg:"⨿",amp:"&",and:"∧",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",aogon:"ą",aopf:"\uD835\uDD52",ap:"≈",apE:"⩰",apacir:"⩯",ape:"≊",apid:"≋",apos:"'",approx:"≈",approxeq:"≊",aring:"å",ascr:"\uD835\uDCB6",ast:"*",asymp:"≈",asympeq:"≍",atilde:"ã",auml:"ä",awconint:"∳",awint:"⨑",bNot:"⫭",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",barvee:"⊽",barwed:"⌅",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",beta:"β",beth:"ℶ",between:"≬",bfr:"\uD835\uDD1F",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bopf:"\uD835\uDD53",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxDL:"╗",boxDR:"╔",boxDl:"╖",boxDr:"╓",boxH:"═",boxHD:"╦",boxHU:"╩",boxHd:"╤",boxHu:"╧",boxUL:"╝",boxUR:"╚",boxUl:"╜",boxUr:"╙",boxV:"║",boxVH:"╬",boxVL:"╣",boxVR:"╠",boxVh:"╫",boxVl:"╢",boxVr:"╟",boxbox:"⧉",boxdL:"╕",boxdR:"╒",boxdl:"┐",boxdr:"┌",boxh:"─",boxhD:"╥",boxhU:"╨",boxhd:"┬",boxhu:"┴",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxuL:"╛",boxuR:"╘",boxul:"┘",boxur:"└",boxv:"│",boxvH:"╪",boxvL:"╡",boxvR:"╞",boxvh:"┼",boxvl:"┤",boxvr:"├",bprime:"‵",breve:"˘",brvbar:"¦",bscr:"\uD835\uDCB7",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",bumpeq:"≏",cacute:"ć",cap:"∩",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",caps:"∩︀",caret:"⁁",caron:"ˇ",ccaps:"⩍",ccaron:"č",ccedil:"ç",ccirc:"ĉ",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",cedil:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",cfr:"\uD835\uDD20",chcy:"ч",check:"✓",checkmark:"✓",chi:"χ",cir:"○",cirE:"⧃",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledR:"®",circledS:"Ⓢ",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",clubs:"♣",clubsuit:"♣",colon:":",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",conint:"∮",copf:"\uD835\uDD54",coprod:"∐",copy:"©",copysr:"℗",crarr:"↵",cross:"✗",cscr:"\uD835\uDCB8",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cup:"∪",cupbrcap:"⩈",cupcap:"⩆",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dArr:"⇓",dHar:"⥥",dagger:"†",daleth:"ℸ",darr:"↓",dash:"‐",dashv:"⊣",dbkarow:"⤏",dblac:"˝",dcaron:"ď",dcy:"д",dd:"ⅆ",ddagger:"‡",ddarr:"⇊",ddotseq:"⩷",deg:"°",delta:"δ",demptyv:"⦱",dfisht:"⥿",dfr:"\uD835\uDD21",dharl:"⇃",dharr:"⇂",diam:"⋄",diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",dopf:"\uD835\uDD55",dot:"˙",doteq:"≐",doteqdot:"≑",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",downarrow:"↓",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",dscr:"\uD835\uDCB9",dscy:"ѕ",dsol:"⧶",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",dzcy:"џ",dzigrarr:"⟿",eDDot:"⩷",eDot:"≑",eacute:"é",easter:"⩮",ecaron:"ě",ecir:"≖",ecirc:"ê",ecolon:"≕",ecy:"э",edot:"ė",ee:"ⅇ",efDot:"≒",efr:"\uD835\uDD22",eg:"⪚",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",emacr:"ē",empty:"∅",emptyset:"∅",emptyv:"∅",emsp13:" ",emsp14:" ",emsp:" ",eng:"ŋ",ensp:" ",eogon:"ę",eopf:"\uD835\uDD56",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",equals:"=",equest:"≟",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erDot:"≓",erarr:"⥱",escr:"ℯ",esdot:"≐",esim:"≂",eta:"η",eth:"ð",euml:"ë",euro:"€",excl:"!",exist:"∃",expectation:"ℰ",exponentiale:"ⅇ",fallingdotseq:"≒",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"\uD835\uDD23",filig:"fi",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"\uD835\uDD57",forall:"∀",fork:"⋔",forkv:"⫙",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"\uD835\uDCBB",gE:"≧",gEl:"⪌",gacute:"ǵ",gamma:"γ",gammad:"ϝ",gap:"⪆",gbreve:"ğ",gcirc:"ĝ",gcy:"г",gdot:"ġ",ge:"≥",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"\uD835\uDD24",gg:"≫",ggg:"⋙",gimel:"ℷ",gjcy:"ѓ",gl:"≷",glE:"⪒",gla:"⪥",glj:"⪤",gnE:"≩",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gneq:"⪈",gneqq:"≩",gnsim:"⋧",gopf:"\uD835\uDD58",grave:"`",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gt:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",hArr:"⇔",hairsp:" ",half:"½",hamilt:"ℋ",hardcy:"ъ",harr:"↔",harrcir:"⥈",harrw:"↭",hbar:"ℏ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"\uD835\uDD25",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"\uD835\uDD59",horbar:"―",hscr:"\uD835\uDCBD",hslash:"ℏ",hstrok:"ħ",hybull:"⁃",hyphen:"‐",iacute:"í",ic:"",icirc:"î",icy:"и",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"\uD835\uDD26",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",imacr:"ī",image:"ℑ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",int:"∫",intcal:"⊺",integers:"ℤ",intercal:"⊺",intlarhk:"⨗",intprod:"⨼",iocy:"ё",iogon:"į",iopf:"\uD835\uDD5A",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"\uD835\uDCBE",isin:"∈",isinE:"⋹",isindot:"⋵",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"",itilde:"ĩ",iukcy:"і",iuml:"ï",jcirc:"ĵ",jcy:"й",jfr:"\uD835\uDD27",jmath:"ȷ",jopf:"\uD835\uDD5B",jscr:"\uD835\uDCBF",jsercy:"ј",jukcy:"є",kappa:"κ",kappav:"ϰ",kcedil:"ķ",kcy:"к",kfr:"\uD835\uDD28",kgreen:"ĸ",khcy:"х",kjcy:"ќ",kopf:"\uD835\uDD5C",kscr:"\uD835\uDCC0",lAarr:"⇚",lArr:"⇐",lAtail:"⤛",lBarr:"⤎",lE:"≦",lEg:"⪋",lHar:"⥢",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",lambda:"λ",lang:"⟨",langd:"⦑",langle:"⟨",lap:"⪅",laquo:"«",larr:"←",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",latail:"⤙",late:"⪭",lates:"⪭︀",lbarr:"⤌",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",lcedil:"ļ",lceil:"⌈",lcub:"{",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",leftarrow:"←",leftarrowtail:"↢",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",leftthreetimes:"⋋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",lessgtr:"≶",lesssim:"≲",lfisht:"⥼",lfloor:"⌊",lfr:"\uD835\uDD29",lg:"≶",lgE:"⪑",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",ljcy:"љ",ll:"≪",llarr:"⇇",llcorner:"⌞",llhard:"⥫",lltri:"◺",lmidot:"ŀ",lmoust:"⎰",lmoustache:"⎰",lnE:"≨",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",longleftrightarrow:"⟷",longmapsto:"⟼",longrightarrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",lopf:"\uD835\uDD5D",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"",lrtri:"⊿",lsaquo:"‹",lscr:"\uD835\uDCC1",lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",lstrok:"ł",lt:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltrPar:"⦖",ltri:"◃",ltrie:"⊴",ltrif:"◂",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",mDDot:"∺",macr:"¯",male:"♂",malt:"✠",maltese:"✠",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",mcy:"м",mdash:"—",measuredangle:"∡",mfr:"\uD835\uDD2A",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",mopf:"\uD835\uDD5E",mp:"∓",mscr:"\uD835\uDCC2",mstpos:"∾",mu:"μ",multimap:"⊸",mumap:"⊸",nGg:"⋙̸",nGt:"≫⃒",nGtv:"≫̸",nLeftarrow:"⇍",nLeftrightarrow:"⇎",nLl:"⋘̸",nLt:"≪⃒",nLtv:"≪̸",nRightarrow:"⇏",nVDash:"⊯",nVdash:"⊮",nabla:"∇",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",ncaron:"ň",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",ndash:"–",ne:"≠",neArr:"⇗",nearhk:"⤤",nearr:"↗",nearrow:"↗",nedot:"≐̸",nequiv:"≢",nesear:"⤨",nesim:"≂̸",nexist:"∄",nexists:"∄",nfr:"\uD835\uDD2B",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",ngsim:"≵",ngt:"≯",ngtr:"≯",nhArr:"⇎",nharr:"↮",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",njcy:"њ",nlArr:"⇍",nlE:"≦̸",nlarr:"↚",nldr:"‥",nle:"≰",nleftarrow:"↚",nleftrightarrow:"↮",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nlsim:"≴",nlt:"≮",nltri:"⋪",nltrie:"⋬",nmid:"∤",nopf:"\uD835\uDD5F",not:"¬",notin:"∉",notinE:"⋹̸",notindot:"⋵̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrArr:"⇏",nrarr:"↛",nrarrc:"⤳̸",nrarrw:"↝̸",nrightarrow:"↛",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",nscr:"\uD835\uDCC3",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",nu:"ν",num:"#",numero:"№",numsp:" ",nvDash:"⊭",nvHarr:"⤄",nvap:"≍⃒",nvdash:"⊬",nvge:"≥⃒",nvgt:">⃒",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwArr:"⇖",nwarhk:"⤣",nwarr:"↖",nwarrow:"↖",nwnear:"⤧",oS:"Ⓢ",oacute:"ó",oast:"⊛",ocir:"⊚",ocirc:"ô",ocy:"о",odash:"⊝",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",oelig:"œ",ofcir:"⦿",ofr:"\uD835\uDD2C",ogon:"˛",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",omacr:"ō",omega:"ω",omicron:"ο",omid:"⦶",ominus:"⊖",oopf:"\uD835\uDD60",opar:"⦷",operp:"⦹",oplus:"⊕",or:"∨",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oscr:"ℴ",oslash:"ø",osol:"⊘",otilde:"õ",otimes:"⊗",otimesas:"⨶",ouml:"ö",ovbar:"⌽",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",pfr:"\uD835\uDD2D",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",pointint:"⨕",popf:"\uD835\uDD61",pound:"£",pr:"≺",prE:"⪳",prap:"⪷",prcue:"≼",pre:"⪯",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",prime:"′",primes:"ℙ",prnE:"⪵",prnap:"⪹",prnsim:"⋨",prod:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",propto:"∝",prsim:"≾",prurel:"⊰",pscr:"\uD835\uDCC5",psi:"ψ",puncsp:" ",qfr:"\uD835\uDD2E",qint:"⨌",qopf:"\uD835\uDD62",qprime:"⁗",qscr:"\uD835\uDCC6",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',rAarr:"⇛",rArr:"⇒",rAtail:"⤜",rBarr:"⤏",rHar:"⥤",race:"∽̱",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarr:"→",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",rarrw:"↝",ratail:"⤚",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",rcedil:"ŗ",rceil:"⌉",rcub:"}",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",reg:"®",rfisht:"⥽",rfloor:"⌋",rfr:"\uD835\uDD2F",rhard:"⇁",rharu:"⇀",rharul:"⥬",rho:"ρ",rhov:"ϱ",rightarrow:"→",rightarrowtail:"↣",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",rightthreetimes:"⋌",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"\uD835\uDD63",roplus:"⨮",rotimes:"⨵",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",rsaquo:"›",rscr:"\uD835\uDCC7",rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",ruluhar:"⥨",rx:"℞",sacute:"ś",sbquo:"‚",sc:"≻",scE:"⪴",scap:"⪸",scaron:"š",sccue:"≽",sce:"⪰",scedil:"ş",scirc:"ŝ",scnE:"⪶",scnap:"⪺",scnsim:"⋩",scpolint:"⨓",scsim:"≿",scy:"с",sdot:"⋅",sdotb:"⊡",sdote:"⩦",seArr:"⇘",searhk:"⤥",searr:"↘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",sfr:"\uD835\uDD30",sfrown:"⌢",sharp:"♯",shchcy:"щ",shcy:"ш",shortmid:"∣",shortparallel:"∥",shy:"",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"\uD835\uDD64",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",square:"□",squarf:"▪",squf:"▪",srarr:"→",sscr:"\uD835\uDCC8",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",subE:"⫅",subdot:"⪽",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",subseteq:"⊆",subseteqq:"⫅",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",supE:"⫆",supdot:"⪾",supdsub:"⫘",supe:"⊇",supedot:"⫄",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swArr:"⇙",swarhk:"⤦",swarr:"↙",swarrow:"↙",swnwar:"⤪",szlig:"ß",target:"⌖",tau:"τ",tbrk:"⎴",tcaron:"ť",tcedil:"ţ",tcy:"т",tdot:"⃛",telrec:"⌕",tfr:"\uD835\uDD31",there4:"∴",therefore:"∴",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",thinsp:" ",thkap:"≈",thksim:"∼",thorn:"þ",tilde:"˜",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",topf:"\uD835\uDD65",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"\uD835\uDCC9",tscy:"ц",tshcy:"ћ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",uArr:"⇑",uHar:"⥣",uacute:"ú",uarr:"↑",ubrcy:"ў",ubreve:"ŭ",ucirc:"û",ucy:"у",udarr:"⇅",udblac:"ű",udhar:"⥮",ufisht:"⥾",ufr:"\uD835\uDD32",ugrave:"ù",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",uml:"¨",uogon:"ų",uopf:"\uD835\uDD66",uparrow:"↑",updownarrow:"↕",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",upsi:"υ",upsih:"ϒ",upsilon:"υ",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",urtri:"◹",uscr:"\uD835\uDCCA",utdot:"⋰",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",uuml:"ü",uwangle:"⦧",vArr:"⇕",vBar:"⫨",vBarv:"⫩",vDash:"⊨",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vcy:"в",vdash:"⊢",vee:"∨",veebar:"⊻",veeeq:"≚",vellip:"⋮",verbar:"|",vert:"|",vfr:"\uD835\uDD33",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",vopf:"\uD835\uDD67",vprop:"∝",vrtri:"⊳",vscr:"\uD835\uDCCB",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",vzigzag:"⦚",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",wedgeq:"≙",weierp:"℘",wfr:"\uD835\uDD34",wopf:"\uD835\uDD68",wp:"℘",wr:"≀",wreath:"≀",wscr:"\uD835\uDCCC",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",xfr:"\uD835\uDD35",xhArr:"⟺",xharr:"⟷",xi:"ξ",xlArr:"⟸",xlarr:"⟵",xmap:"⟼",xnis:"⋻",xodot:"⨀",xopf:"\uD835\uDD69",xoplus:"⨁",xotime:"⨂",xrArr:"⟹",xrarr:"⟶",xscr:"\uD835\uDCCD",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",yacute:"ý",yacy:"я",ycirc:"ŷ",ycy:"ы",yen:"¥",yfr:"\uD835\uDD36",yicy:"ї",yopf:"\uD835\uDD6A",yscr:"\uD835\uDCCE",yucy:"ю",yuml:"ÿ",zacute:"ź",zcaron:"ž",zcy:"з",zdot:"ż",zeetrf:"ℨ",zeta:"ζ",zfr:"\uD835\uDD37",zhcy:"ж",zigrarr:"⇝",zopf:"\uD835\uDD6B",zscr:"\uD835\uDCCF",zwj:"",zwnj:""};var UR={}.hasOwnProperty;function y6($){return UR.call(xG,$)?xG[$]:!1}function k1($,Z,G,J){let X=$.length,Y=0,H;if(Z<0)Z=-Z>X?0:X+Z;else Z=Z>X?X:Z;if(G=G>0?G:0,J.length<1e4)H=Array.from(J),H.unshift(Z,G),$.splice(...H);else{if(G)$.splice(Z,G);while(Y<J.length)H=J.slice(Y,Y+1e4),H.unshift(Z,0),$.splice(...H),Y+=1e4,Z+=1e4}}function n1($,Z){if($.length>0)return k1($,$.length,0,Z),$;return Z}var vq={}.hasOwnProperty;function xq($){let Z={},G=-1;while(++G<$.length)WR(Z,$[G]);return Z}function WR($,Z){let G;for(G in Z){let X=(vq.call($,G)?$[G]:void 0)||($[G]={}),Y=Z[G],H;if(Y)for(H in Y){if(!vq.call(X,H))X[H]=[];let Q=Y[H];LR(X[H],Array.isArray(Q)?Q:Q?[Q]:[])}}}function LR($,Z){let G=-1,J=[];while(++G<Z.length)(Z[G].add==="after"?$:J).push(Z[G]);k1($,0,0,J)}function D9($,Z){let G=Number.parseInt($,Z);if(G<9||G===11||G>13&&G<32||G>126&&G<160||G>55295&&G<57344||G>64975&&G<65008||(G&65535)===65535||(G&65535)===65534||G>1114111)return"�";return String.fromCodePoint(G)}function J5($){return $.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}var Q0=E5(/[A-Za-z]/),g1=E5(/[\dA-Za-z]/),hq=E5(/[#-'*+\--9=?A-Z^-~]/);function u7($){return $!==null&&($<32||$===127)}var p7=E5(/\d/),bq=E5(/[\dA-Fa-f]/),kq=E5(/[!-/:-@[-`{-~]/);function C($){return $!==null&&$<-2}function V1($){return $!==null&&($<0||$===32)}function b($){return $===-2||$===-1||$===32}var mq=E5(/\p{P}|\p{S}/u),fq=E5(/\s/);function E5($){return Z;function Z(G){return G!==null&&G>-1&&$.test(String.fromCharCode(G))}}function N0($){let Z=[],G=-1,J=0,X=0;while(++G<$.length){let Y=$.charCodeAt(G),H="";if(Y===37&&g1($.charCodeAt(G+1))&&g1($.charCodeAt(G+2)))X=2;else if(Y<128){if(!/[!#$&-;=?-Z_a-z~]/.test(String.fromCharCode(Y)))H=String.fromCharCode(Y)}else if(Y>55295&&Y<57344){let Q=$.charCodeAt(G+1);if(Y<56320&&Q>56319&&Q<57344)H=String.fromCharCode(Y,Q),X=1;else H="�"}else H=String.fromCharCode(Y);if(H)Z.push($.slice(J,G),encodeURIComponent(H)),J=G+X+1,H="";if(X)G+=X,X=0}return Z.join("")+$.slice(J)}function p($,Z,G,J){let X=J?J-1:Number.POSITIVE_INFINITY,Y=0;return H;function H(q){if(b(q))return $.enter(G),Q(q);return Z(q)}function Q(q){if(b(q)&&Y++<X)return $.consume(q),Q;return $.exit(G),Z(q)}}var uq={tokenize:zR};function zR($){let Z=$.attempt(this.parser.constructs.contentInitial,J,X),G;return Z;function J(Q){if(Q===null){$.consume(Q);return}return $.enter("lineEnding"),$.consume(Q),$.exit("lineEnding"),p($,Z,"linePrefix")}function X(Q){return $.enter("paragraph"),Y(Q)}function Y(Q){let q=$.enter("chunkText",{contentType:"text",previous:G});if(G)G.next=q;return G=q,H(Q)}function H(Q){if(Q===null){$.exit("chunkText"),$.exit("paragraph"),$.consume(Q);return}if(C(Q))return $.consume(Q),$.exit("chunkText"),Y;return $.consume(Q),H}}var lq={tokenize:AR},pq={tokenize:NR};function AR($){let Z=this,G=[],J=0,X,Y,H;return Q;function Q(R){if(J<G.length){let P=G[J];return Z.containerState=P[1],$.attempt(P[0].continuation,q,U)(R)}return U(R)}function q(R){if(J++,Z.containerState._closeFlow){if(Z.containerState._closeFlow=void 0,X)E();let P=Z.events.length,g=P,M;while(g--)if(Z.events[g][0]==="exit"&&Z.events[g][1].type==="chunkFlow"){M=Z.events[g][1].end;break}D(J);let h=P;while(h<Z.events.length)Z.events[h][1].end={...M},h++;return k1(Z.events,g+1,0,Z.events.slice(P)),Z.events.length=h,U(R)}return Q(R)}function U(R){if(J===G.length){if(!X)return z(R);if(X.currentConstruct&&X.currentConstruct.concrete)return V(R);Z.interrupt=Boolean(X.currentConstruct&&!X._gfmTableDynamicInterruptHack)}return Z.containerState={},$.check(pq,K,W)(R)}function K(R){if(X)E();return D(J),z(R)}function W(R){return Z.parser.lazy[Z.now().line]=J!==G.length,H=Z.now().offset,V(R)}function z(R){return Z.containerState={},$.attempt(pq,L,V)(R)}function L(R){return J++,G.push([Z.currentConstruct,Z.containerState]),z(R)}function V(R){if(R===null){if(X)E();D(0),$.consume(R);return}return X=X||Z.parser.flow(Z.now()),$.enter("chunkFlow",{_tokenizer:X,contentType:"flow",previous:Y}),B(R)}function B(R){if(R===null){I($.exit("chunkFlow"),!0),D(0),$.consume(R);return}if(C(R))return $.consume(R),I($.exit("chunkFlow")),J=0,Z.interrupt=void 0,Q;return $.consume(R),B}function I(R,P){let g=Z.sliceStream(R);if(P)g.push(null);if(R.previous=Y,Y)Y.next=R;if(Y=R,X.defineSkip(R.start),X.write(g),Z.parser.lazy[R.start.line]){let M=X.events.length;while(M--)if(X.events[M][1].start.offset<H&&(!X.events[M][1].end||X.events[M][1].end.offset>H))return;let h=Z.events.length,s=h,i,o;while(s--)if(Z.events[s][0]==="exit"&&Z.events[s][1].type==="chunkFlow"){if(i){o=Z.events[s][1].end;break}i=!0}D(J),M=h;while(M<Z.events.length)Z.events[M][1].end={...o},M++;k1(Z.events,s+1,0,Z.events.slice(h)),Z.events.length=M}}function D(R){let P=G.length;while(P-- >R){let g=G[P];Z.containerState=g[1],g[0].exit.call(Z,$)}G.length=R}function E(){X.write([null]),Y=void 0,X=void 0,Z.containerState._closeFlow=void 0}}function NR($,Z,G){return p($,$.attempt(this.parser.constructs.document,Z,G),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}function hG($){if($===null||V1($)||fq($))return 1;if(mq($))return 2}function v6($,Z,G){let J=[],X=-1;while(++X<$.length){let Y=$[X].resolveAll;if(Y&&!J.includes(Y))Z=Y(Z,G),J.push(Y)}return Z}var l7={name:"attention",resolveAll:BR,tokenize:VR};function BR($,Z){let G=-1,J,X,Y,H,Q,q,U,K;while(++G<$.length)if($[G][0]==="enter"&&$[G][1].type==="attentionSequence"&&$[G][1]._close){J=G;while(J--)if($[J][0]==="exit"&&$[J][1].type==="attentionSequence"&&$[J][1]._open&&Z.sliceSerialize($[J][1]).charCodeAt(0)===Z.sliceSerialize($[G][1]).charCodeAt(0)){if(($[J][1]._close||$[G][1]._open)&&($[G][1].end.offset-$[G][1].start.offset)%3&&!(($[J][1].end.offset-$[J][1].start.offset+$[G][1].end.offset-$[G][1].start.offset)%3))continue;q=$[J][1].end.offset-$[J][1].start.offset>1&&$[G][1].end.offset-$[G][1].start.offset>1?2:1;let W={...$[J][1].end},z={...$[G][1].start};if(iq(W,-q),iq(z,q),H={type:q>1?"strongSequence":"emphasisSequence",start:W,end:{...$[J][1].end}},Q={type:q>1?"strongSequence":"emphasisSequence",start:{...$[G][1].start},end:z},Y={type:q>1?"strongText":"emphasisText",start:{...$[J][1].end},end:{...$[G][1].start}},X={type:q>1?"strong":"emphasis",start:{...H.start},end:{...Q.end}},$[J][1].end={...H.start},$[G][1].start={...Q.end},U=[],$[J][1].end.offset-$[J][1].start.offset)U=n1(U,[["enter",$[J][1],Z],["exit",$[J][1],Z]]);if(U=n1(U,[["enter",X,Z],["enter",H,Z],["exit",H,Z],["enter",Y,Z]]),U=n1(U,v6(Z.parser.constructs.insideSpan.null,$.slice(J+1,G),Z)),U=n1(U,[["exit",Y,Z],["enter",Q,Z],["exit",Q,Z],["exit",X,Z]]),$[G][1].end.offset-$[G][1].start.offset)K=2,U=n1(U,[["enter",$[G][1],Z],["exit",$[G][1],Z]]);else K=0;k1($,J-1,G-J+3,U),G=J+U.length-K-2;break}}G=-1;while(++G<$.length)if($[G][1].type==="attentionSequence")$[G][1].type="data";return $}function VR($,Z){let G=this.parser.constructs.attentionMarkers.null,J=this.previous,X=hG(J),Y;return H;function H(q){return Y=q,$.enter("attentionSequence"),Q(q)}function Q(q){if(q===Y)return $.consume(q),Q;let U=$.exit("attentionSequence"),K=hG(q),W=!K||K===2&&X||G.includes(q),z=!X||X===2&&K||G.includes(J);return U._open=Boolean(Y===42?W:W&&(X||!z)),U._close=Boolean(Y===42?z:z&&(K||!W)),Z(q)}}function iq($,Z){$.column+=Z,$.offset+=Z,$._bufferIndex+=Z}var bG={name:"autolink",tokenize:FR};function FR($,Z,G){let J=0;return X;function X(L){return $.enter("autolink"),$.enter("autolinkMarker"),$.consume(L),$.exit("autolinkMarker"),$.enter("autolinkProtocol"),Y}function Y(L){if(Q0(L))return $.consume(L),H;if(L===64)return G(L);return U(L)}function H(L){if(L===43||L===45||L===46||g1(L))return J=1,Q(L);return U(L)}function Q(L){if(L===58)return $.consume(L),J=0,q;if((L===43||L===45||L===46||g1(L))&&J++<32)return $.consume(L),Q;return J=0,U(L)}function q(L){if(L===62)return $.exit("autolinkProtocol"),$.enter("autolinkMarker"),$.consume(L),$.exit("autolinkMarker"),$.exit("autolink"),Z;if(L===null||L===32||L===60||u7(L))return G(L);return $.consume(L),q}function U(L){if(L===64)return $.consume(L),K;if(hq(L))return $.consume(L),U;return G(L)}function K(L){return g1(L)?W(L):G(L)}function W(L){if(L===46)return $.consume(L),J=0,K;if(L===62)return $.exit("autolinkProtocol").type="autolinkEmail",$.enter("autolinkMarker"),$.consume(L),$.exit("autolinkMarker"),$.exit("autolink"),Z;return z(L)}function z(L){if((L===45||g1(L))&&J++<63){let V=L===45?z:W;return $.consume(L),V}return G(L)}}var j5={partial:!0,tokenize:RR};function RR($,Z,G){return J;function J(Y){return b(Y)?p($,X,"linePrefix")(Y):X(Y)}function X(Y){return Y===null||C(Y)?Z(Y):G(Y)}}var I9={continuation:{tokenize:MR},exit:DR,name:"blockQuote",tokenize:OR};function OR($,Z,G){let J=this;return X;function X(H){if(H===62){let Q=J.containerState;if(!Q.open)$.enter("blockQuote",{_container:!0}),Q.open=!0;return $.enter("blockQuotePrefix"),$.enter("blockQuoteMarker"),$.consume(H),$.exit("blockQuoteMarker"),Y}return G(H)}function Y(H){if(b(H))return $.enter("blockQuotePrefixWhitespace"),$.consume(H),$.exit("blockQuotePrefixWhitespace"),$.exit("blockQuotePrefix"),Z;return $.exit("blockQuotePrefix"),Z(H)}}function MR($,Z,G){let J=this;return X;function X(H){if(b(H))return p($,Y,"linePrefix",J.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(H);return Y(H)}function Y(H){return $.attempt(I9,Z,G)(H)}}function DR($){$.exit("blockQuote")}var P9={name:"characterEscape",tokenize:IR};function IR($,Z,G){return J;function J(Y){return $.enter("characterEscape"),$.enter("escapeMarker"),$.consume(Y),$.exit("escapeMarker"),X}function X(Y){if(kq(Y))return $.enter("characterEscapeValue"),$.consume(Y),$.exit("characterEscapeValue"),$.exit("characterEscape"),Z;return G(Y)}}var T9={name:"characterReference",tokenize:PR};function PR($,Z,G){let J=this,X=0,Y,H;return Q;function Q(W){return $.enter("characterReference"),$.enter("characterReferenceMarker"),$.consume(W),$.exit("characterReferenceMarker"),q}function q(W){if(W===35)return $.enter("characterReferenceMarkerNumeric"),$.consume(W),$.exit("characterReferenceMarkerNumeric"),U;return $.enter("characterReferenceValue"),Y=31,H=g1,K(W)}function U(W){if(W===88||W===120)return $.enter("characterReferenceMarkerHexadecimal"),$.consume(W),$.exit("characterReferenceMarkerHexadecimal"),$.enter("characterReferenceValue"),Y=6,H=bq,K;return $.enter("characterReferenceValue"),Y=7,H=p7,K(W)}function K(W){if(W===59&&X){let z=$.exit("characterReferenceValue");if(H===g1&&!y6(J.sliceSerialize(z)))return G(W);return $.enter("characterReferenceMarker"),$.consume(W),$.exit("characterReferenceMarker"),$.exit("characterReference"),Z}if(H(W)&&X++<Y)return $.consume(W),K;return G(W)}}var cq={partial:!0,tokenize:wR},w9={concrete:!0,name:"codeFenced",tokenize:TR};function TR($,Z,G){let J=this,X={partial:!0,tokenize:g},Y=0,H=0,Q;return q;function q(M){return U(M)}function U(M){let h=J.events[J.events.length-1];return Y=h&&h[1].type==="linePrefix"?h[2].sliceSerialize(h[1],!0).length:0,Q=M,$.enter("codeFenced"),$.enter("codeFencedFence"),$.enter("codeFencedFenceSequence"),K(M)}function K(M){if(M===Q)return H++,$.consume(M),K;if(H<3)return G(M);return $.exit("codeFencedFenceSequence"),b(M)?p($,W,"whitespace")(M):W(M)}function W(M){if(M===null||C(M))return $.exit("codeFencedFence"),J.interrupt?Z(M):$.check(cq,B,P)(M);return $.enter("codeFencedFenceInfo"),$.enter("chunkString",{contentType:"string"}),z(M)}function z(M){if(M===null||C(M))return $.exit("chunkString"),$.exit("codeFencedFenceInfo"),W(M);if(b(M))return $.exit("chunkString"),$.exit("codeFencedFenceInfo"),p($,L,"whitespace")(M);if(M===96&&M===Q)return G(M);return $.consume(M),z}function L(M){if(M===null||C(M))return W(M);return $.enter("codeFencedFenceMeta"),$.enter("chunkString",{contentType:"string"}),V(M)}function V(M){if(M===null||C(M))return $.exit("chunkString"),$.exit("codeFencedFenceMeta"),W(M);if(M===96&&M===Q)return G(M);return $.consume(M),V}function B(M){return $.attempt(X,P,I)(M)}function I(M){return $.enter("lineEnding"),$.consume(M),$.exit("lineEnding"),D}function D(M){return Y>0&&b(M)?p($,E,"linePrefix",Y+1)(M):E(M)}function E(M){if(M===null||C(M))return $.check(cq,B,P)(M);return $.enter("codeFlowValue"),R(M)}function R(M){if(M===null||C(M))return $.exit("codeFlowValue"),E(M);return $.consume(M),R}function P(M){return $.exit("codeFenced"),Z(M)}function g(M,h,s){let i=0;return o;function o(F){return M.enter("lineEnding"),M.consume(F),M.exit("lineEnding"),a}function a(F){return M.enter("codeFencedFence"),b(F)?p(M,t,"linePrefix",J.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(F):t(F)}function t(F){if(F===Q)return M.enter("codeFencedFenceSequence"),_(F);return s(F)}function _(F){if(F===Q)return i++,M.consume(F),_;if(i>=H)return M.exit("codeFencedFenceSequence"),b(F)?p(M,m,"whitespace")(F):m(F);return s(F)}function m(F){if(F===null||C(F))return M.exit("codeFencedFence"),h(F);return s(F)}}}function wR($,Z,G){let J=this;return X;function X(H){if(H===null)return G(H);return $.enter("lineEnding"),$.consume(H),$.exit("lineEnding"),Y}function Y(H){return J.parser.lazy[J.now().line]?G(H):Z(H)}}var i7={name:"codeIndented",tokenize:jR},ER={partial:!0,tokenize:SR};function jR($,Z,G){let J=this;return X;function X(U){return $.enter("codeIndented"),p($,Y,"linePrefix",5)(U)}function Y(U){let K=J.events[J.events.length-1];return K&&K[1].type==="linePrefix"&&K[2].sliceSerialize(K[1],!0).length>=4?H(U):G(U)}function H(U){if(U===null)return q(U);if(C(U))return $.attempt(ER,H,q)(U);return $.enter("codeFlowValue"),Q(U)}function Q(U){if(U===null||C(U))return $.exit("codeFlowValue"),H(U);return $.consume(U),Q}function q(U){return $.exit("codeIndented"),Z(U)}}function SR($,Z,G){let J=this;return X;function X(H){if(J.parser.lazy[J.now().line])return G(H);if(C(H))return $.enter("lineEnding"),$.consume(H),$.exit("lineEnding"),X;return p($,Y,"linePrefix",5)(H)}function Y(H){let Q=J.events[J.events.length-1];return Q&&Q[1].type==="linePrefix"&&Q[2].sliceSerialize(Q[1],!0).length>=4?Z(H):C(H)?X(H):G(H)}}var kG={name:"codeText",previous:CR,resolve:_R,tokenize:gR};function _R($){let Z=$.length-4,G=3,J,X;if(($[G][1].type==="lineEnding"||$[G][1].type==="space")&&($[Z][1].type==="lineEnding"||$[Z][1].type==="space")){J=G;while(++J<Z)if($[J][1].type==="codeTextData"){$[G][1].type="codeTextPadding",$[Z][1].type="codeTextPadding",G+=2,Z-=2;break}}J=G-1,Z++;while(++J<=Z)if(X===void 0){if(J!==Z&&$[J][1].type!=="lineEnding")X=J}else if(J===Z||$[J][1].type==="lineEnding"){if($[X][1].type="codeTextData",J!==X+2)$[X][1].end=$[J-1][1].end,$.splice(X+2,J-X-2),Z-=J-X-2,J=X+2;X=void 0}return $}function CR($){return $!==96||this.events[this.events.length-1][1].type==="characterEscape"}function gR($,Z,G){let J=this,X=0,Y,H;return Q;function Q(z){return $.enter("codeText"),$.enter("codeTextSequence"),q(z)}function q(z){if(z===96)return $.consume(z),X++,q;return $.exit("codeTextSequence"),U(z)}function U(z){if(z===null)return G(z);if(z===32)return $.enter("space"),$.consume(z),$.exit("space"),U;if(z===96)return H=$.enter("codeTextSequence"),Y=0,W(z);if(C(z))return $.enter("lineEnding"),$.consume(z),$.exit("lineEnding"),U;return $.enter("codeTextData"),K(z)}function K(z){if(z===null||z===32||z===96||C(z))return $.exit("codeTextData"),U(z);return $.consume(z),K}function W(z){if(z===96)return $.consume(z),Y++,W;if(Y===X)return $.exit("codeTextSequence"),$.exit("codeText"),Z(z);return H.type="codeTextData",K(z)}}class mG{constructor($){this.left=$?[...$]:[],this.right=[]}get($){if($<0||$>=this.left.length+this.right.length)throw RangeError("Cannot access index `"+$+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");if($<this.left.length)return this.left[$];return this.right[this.right.length-$+this.left.length-1]}get length(){return this.left.length+this.right.length}shift(){return this.setCursor(0),this.right.pop()}slice($,Z){let G=Z===null||Z===void 0?Number.POSITIVE_INFINITY:Z;if(G<this.left.length)return this.left.slice($,G);if($>this.left.length)return this.right.slice(this.right.length-G+this.left.length,this.right.length-$+this.left.length).reverse();return this.left.slice($).concat(this.right.slice(this.right.length-G+this.left.length).reverse())}splice($,Z,G){let J=Z||0;this.setCursor(Math.trunc($));let X=this.right.splice(this.right.length-J,Number.POSITIVE_INFINITY);if(G)c7(this.left,G);return X.reverse()}pop(){return this.setCursor(Number.POSITIVE_INFINITY),this.left.pop()}push($){this.setCursor(Number.POSITIVE_INFINITY),this.left.push($)}pushMany($){this.setCursor(Number.POSITIVE_INFINITY),c7(this.left,$)}unshift($){this.setCursor(0),this.right.push($)}unshiftMany($){this.setCursor(0),c7(this.right,$.reverse())}setCursor($){if($===this.left.length||$>this.left.length&&this.right.length===0||$<0&&this.left.length===0)return;if($<this.left.length){let Z=this.left.splice($,Number.POSITIVE_INFINITY);c7(this.right,Z.reverse())}else{let Z=this.right.splice(this.left.length+this.right.length-$,Number.POSITIVE_INFINITY);c7(this.left,Z.reverse())}}}function c7($,Z){let G=0;if(Z.length<1e4)$.push(...Z);else while(G<Z.length)$.push(...Z.slice(G,G+1e4)),G+=1e4}function E9($){let Z={},G=-1,J,X,Y,H,Q,q,U,K=new mG($);while(++G<K.length){while(G in Z)G=Z[G];if(J=K.get(G),G&&J[1].type==="chunkFlow"&&K.get(G-1)[1].type==="listItemPrefix"){if(q=J[1]._tokenizer.events,Y=0,Y<q.length&&q[Y][1].type==="lineEndingBlank")Y+=2;if(Y<q.length&&q[Y][1].type==="content")while(++Y<q.length){if(q[Y][1].type==="content")break;if(q[Y][1].type==="chunkText")q[Y][1]._isInFirstContentOfListItem=!0,Y++}}if(J[0]==="enter"){if(J[1].contentType)Object.assign(Z,yR(K,G)),G=Z[G],U=!0}else if(J[1]._container){Y=G,X=void 0;while(Y--)if(H=K.get(Y),H[1].type==="lineEnding"||H[1].type==="lineEndingBlank"){if(H[0]==="enter"){if(X)K.get(X)[1].type="lineEndingBlank";H[1].type="lineEnding",X=Y}}else if(H[1].type==="linePrefix"||H[1].type==="listItemIndent");else break;if(X)J[1].end={...K.get(X)[1].start},Q=K.slice(X,G),Q.unshift(J),K.splice(X,G-X+1,Q)}}return k1($,0,Number.POSITIVE_INFINITY,K.slice(0)),!U}function yR($,Z){let G=$.get(Z)[1],J=$.get(Z)[2],X=Z-1,Y=[],H=G._tokenizer;if(!H){if(H=J.parser[G.contentType](G.start),G._contentTypeTextTrailing)H._contentTypeTextTrailing=!0}let Q=H.events,q=[],U={},K,W,z=-1,L=G,V=0,B=0,I=[B];while(L){while($.get(++X)[1]!==L);if(Y.push(X),!L._tokenizer){if(K=J.sliceStream(L),!L.next)K.push(null);if(W)H.defineSkip(L.start);if(L._isInFirstContentOfListItem)H._gfmTasklistFirstContentOfListItem=!0;if(H.write(K),L._isInFirstContentOfListItem)H._gfmTasklistFirstContentOfListItem=void 0}W=L,L=L.next}L=G;while(++z<Q.length)if(Q[z][0]==="exit"&&Q[z-1][0]==="enter"&&Q[z][1].type===Q[z-1][1].type&&Q[z][1].start.line!==Q[z][1].end.line)B=z+1,I.push(B),L._tokenizer=void 0,L.previous=void 0,L=L.next;if(H.events=[],L)L._tokenizer=void 0,L.previous=void 0;else I.pop();z=I.length;while(z--){let D=Q.slice(I[z],I[z+1]),E=Y.pop();q.push([E,E+D.length-1]),$.splice(E,2,D)}q.reverse(),z=-1;while(++z<q.length)U[V+q[z][0]]=V+q[z][1],V+=q[z][1]-q[z][0]-1;return U}var fG={resolve:xR,tokenize:hR},vR={partial:!0,tokenize:bR};function xR($){return E9($),$}function hR($,Z){let G;return J;function J(Q){return $.enter("content"),G=$.enter("chunkContent",{contentType:"content"}),X(Q)}function X(Q){if(Q===null)return Y(Q);if(C(Q))return $.check(vR,H,Y)(Q);return $.consume(Q),X}function Y(Q){return $.exit("chunkContent"),$.exit("content"),Z(Q)}function H(Q){return $.consume(Q),$.exit("chunkContent"),G.next=$.enter("chunkContent",{contentType:"content",previous:G}),G=G.next,X}}function bR($,Z,G){let J=this;return X;function X(H){return $.exit("chunkContent"),$.enter("lineEnding"),$.consume(H),$.exit("lineEnding"),p($,Y,"linePrefix")}function Y(H){if(H===null||C(H))return G(H);let Q=J.events[J.events.length-1];if(!J.parser.constructs.disable.null.includes("codeIndented")&&Q&&Q[1].type==="linePrefix"&&Q[2].sliceSerialize(Q[1],!0).length>=4)return Z(H);return $.interrupt(J.parser.constructs.flow,G,Z)(H)}}function j9($,Z,G,J,X,Y,H,Q,q){let U=q||Number.POSITIVE_INFINITY,K=0;return W;function W(D){if(D===60)return $.enter(J),$.enter(X),$.enter(Y),$.consume(D),$.exit(Y),z;if(D===null||D===32||D===41||u7(D))return G(D);return $.enter(J),$.enter(H),$.enter(Q),$.enter("chunkString",{contentType:"string"}),B(D)}function z(D){if(D===62)return $.enter(Y),$.consume(D),$.exit(Y),$.exit(X),$.exit(J),Z;return $.enter(Q),$.enter("chunkString",{contentType:"string"}),L(D)}function L(D){if(D===62)return $.exit("chunkString"),$.exit(Q),z(D);if(D===null||D===60||C(D))return G(D);return $.consume(D),D===92?V:L}function V(D){if(D===60||D===62||D===92)return $.consume(D),L;return L(D)}function B(D){if(!K&&(D===null||D===41||V1(D)))return $.exit("chunkString"),$.exit(Q),$.exit(H),$.exit(J),Z(D);if(K<U&&D===40)return $.consume(D),K++,B;if(D===41)return $.consume(D),K--,B;if(D===null||D===32||D===40||u7(D))return G(D);return $.consume(D),D===92?I:B}function I(D){if(D===40||D===41||D===92)return $.consume(D),B;return B(D)}}function S9($,Z,G,J,X,Y){let H=this,Q=0,q;return U;function U(L){return $.enter(J),$.enter(X),$.consume(L),$.exit(X),$.enter(Y),K}function K(L){if(Q>999||L===null||L===91||L===93&&!q||L===94&&!Q&&"_hiddenFootnoteSupport"in H.parser.constructs)return G(L);if(L===93)return $.exit(Y),$.enter(X),$.consume(L),$.exit(X),$.exit(J),Z;if(C(L))return $.enter("lineEnding"),$.consume(L),$.exit("lineEnding"),K;return $.enter("chunkString",{contentType:"string"}),W(L)}function W(L){if(L===null||L===91||L===93||C(L)||Q++>999)return $.exit("chunkString"),K(L);if($.consume(L),!q)q=!b(L);return L===92?z:W}function z(L){if(L===91||L===92||L===93)return $.consume(L),Q++,W;return W(L)}}function _9($,Z,G,J,X,Y){let H;return Q;function Q(z){if(z===34||z===39||z===40)return $.enter(J),$.enter(X),$.consume(z),$.exit(X),H=z===40?41:z,q;return G(z)}function q(z){if(z===H)return $.enter(X),$.consume(z),$.exit(X),$.exit(J),Z;return $.enter(Y),U(z)}function U(z){if(z===H)return $.exit(Y),q(H);if(z===null)return G(z);if(C(z))return $.enter("lineEnding"),$.consume(z),$.exit("lineEnding"),p($,U,"linePrefix");return $.enter("chunkString",{contentType:"string"}),K(z)}function K(z){if(z===H||z===null||C(z))return $.exit("chunkString"),U(z);return $.consume(z),z===92?W:K}function W(z){if(z===H||z===92)return $.consume(z),K;return K(z)}}function e5($,Z){let G;return J;function J(X){if(C(X))return $.enter("lineEnding"),$.consume(X),$.exit("lineEnding"),G=!0,J;if(b(X))return p($,J,G?"linePrefix":"lineSuffix")(X);return Z(X)}}var uG={name:"definition",tokenize:mR},kR={partial:!0,tokenize:fR};function mR($,Z,G){let J=this,X;return Y;function Y(L){return $.enter("definition"),H(L)}function H(L){return S9.call(J,$,Q,G,"definitionLabel","definitionLabelMarker","definitionLabelString")(L)}function Q(L){if(X=J5(J.sliceSerialize(J.events[J.events.length-1][1]).slice(1,-1)),L===58)return $.enter("definitionMarker"),$.consume(L),$.exit("definitionMarker"),q;return G(L)}function q(L){return V1(L)?e5($,U)(L):U(L)}function U(L){return j9($,K,G,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(L)}function K(L){return $.attempt(kR,W,W)(L)}function W(L){return b(L)?p($,z,"whitespace")(L):z(L)}function z(L){if(L===null||C(L))return $.exit("definition"),J.parser.defined.push(X),Z(L);return G(L)}}function fR($,Z,G){return J;function J(Q){return V1(Q)?e5($,X)(Q):G(Q)}function X(Q){return _9($,Y,G,"definitionTitle","definitionTitleMarker","definitionTitleString")(Q)}function Y(Q){return b(Q)?p($,H,"whitespace")(Q):H(Q)}function H(Q){return Q===null||C(Q)?Z(Q):G(Q)}}var pG={name:"hardBreakEscape",tokenize:uR};function uR($,Z,G){return J;function J(Y){return $.enter("hardBreakEscape"),$.consume(Y),X}function X(Y){if(C(Y))return $.exit("hardBreakEscape"),Z(Y);return G(Y)}}var lG={name:"headingAtx",resolve:pR,tokenize:lR};function pR($,Z){let G=$.length-2,J=3,X,Y;if($[J][1].type==="whitespace")J+=2;if(G-2>J&&$[G][1].type==="whitespace")G-=2;if($[G][1].type==="atxHeadingSequence"&&(J===G-1||G-4>J&&$[G-2][1].type==="whitespace"))G-=J+1===G?2:4;if(G>J)X={type:"atxHeadingText",start:$[J][1].start,end:$[G][1].end},Y={type:"chunkText",start:$[J][1].start,end:$[G][1].end,contentType:"text"},k1($,J,G-J+1,[["enter",X,Z],["enter",Y,Z],["exit",Y,Z],["exit",X,Z]]);return $}function lR($,Z,G){let J=0;return X;function X(K){return $.enter("atxHeading"),Y(K)}function Y(K){return $.enter("atxHeadingSequence"),H(K)}function H(K){if(K===35&&J++<6)return $.consume(K),H;if(K===null||V1(K))return $.exit("atxHeadingSequence"),Q(K);return G(K)}function Q(K){if(K===35)return $.enter("atxHeadingSequence"),q(K);if(K===null||C(K))return $.exit("atxHeading"),Z(K);if(b(K))return p($,Q,"whitespace")(K);return $.enter("atxHeadingText"),U(K)}function q(K){if(K===35)return $.consume(K),q;return $.exit("atxHeadingSequence"),Q(K)}function U(K){if(K===null||K===35||V1(K))return $.exit("atxHeadingText"),Q(K);return $.consume(K),U}}var dq=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],iG=["pre","script","style","textarea"];var cG={concrete:!0,name:"htmlFlow",resolveTo:dR,tokenize:rR},iR={partial:!0,tokenize:nR},cR={partial:!0,tokenize:aR};function dR($){let Z=$.length;while(Z--)if($[Z][0]==="enter"&&$[Z][1].type==="htmlFlow")break;if(Z>1&&$[Z-2][1].type==="linePrefix")$[Z][1].start=$[Z-2][1].start,$[Z+1][1].start=$[Z-2][1].start,$.splice(Z-2,2);return $}function rR($,Z,G){let J=this,X,Y,H,Q,q;return U;function U(N){return K(N)}function K(N){return $.enter("htmlFlow"),$.enter("htmlFlowData"),$.consume(N),W}function W(N){if(N===33)return $.consume(N),z;if(N===47)return $.consume(N),Y=!0,B;if(N===63)return $.consume(N),X=3,J.interrupt?Z:A;if(Q0(N))return $.consume(N),H=String.fromCharCode(N),I;return G(N)}function z(N){if(N===45)return $.consume(N),X=2,L;if(N===91)return $.consume(N),X=5,Q=0,V;if(Q0(N))return $.consume(N),X=4,J.interrupt?Z:A;return G(N)}function L(N){if(N===45)return $.consume(N),J.interrupt?Z:A;return G(N)}function V(N){if(N==="CDATA[".charCodeAt(Q++)){if($.consume(N),Q===6)return J.interrupt?Z:t;return V}return G(N)}function B(N){if(Q0(N))return $.consume(N),H=String.fromCharCode(N),I;return G(N)}function I(N){if(N===null||N===47||N===62||V1(N)){let Q1=N===47,p1=H.toLowerCase();if(!Q1&&!Y&&iG.includes(p1))return X=1,J.interrupt?Z(N):t(N);if(dq.includes(H.toLowerCase())){if(X=6,Q1)return $.consume(N),D;return J.interrupt?Z(N):t(N)}return X=7,J.interrupt&&!J.parser.lazy[J.now().line]?G(N):Y?E(N):R(N)}if(N===45||g1(N))return $.consume(N),H+=String.fromCharCode(N),I;return G(N)}function D(N){if(N===62)return $.consume(N),J.interrupt?Z:t;return G(N)}function E(N){if(b(N))return $.consume(N),E;return o(N)}function R(N){if(N===47)return $.consume(N),o;if(N===58||N===95||Q0(N))return $.consume(N),P;if(b(N))return $.consume(N),R;return o(N)}function P(N){if(N===45||N===46||N===58||N===95||g1(N))return $.consume(N),P;return g(N)}function g(N){if(N===61)return $.consume(N),M;if(b(N))return $.consume(N),g;return R(N)}function M(N){if(N===null||N===60||N===61||N===62||N===96)return G(N);if(N===34||N===39)return $.consume(N),q=N,h;if(b(N))return $.consume(N),M;return s(N)}function h(N){if(N===q)return $.consume(N),q=null,i;if(N===null||C(N))return G(N);return $.consume(N),h}function s(N){if(N===null||N===34||N===39||N===47||N===60||N===61||N===62||N===96||V1(N))return g(N);return $.consume(N),s}function i(N){if(N===47||N===62||b(N))return R(N);return G(N)}function o(N){if(N===62)return $.consume(N),a;return G(N)}function a(N){if(N===null||C(N))return t(N);if(b(N))return $.consume(N),a;return G(N)}function t(N){if(N===45&&X===2)return $.consume(N),J1;if(N===60&&X===1)return $.consume(N),l;if(N===62&&X===4)return $.consume(N),O0;if(N===63&&X===3)return $.consume(N),A;if(N===93&&X===5)return $.consume(N),w1;if(C(N)&&(X===6||X===7))return $.exit("htmlFlowData"),$.check(iR,M0,_)(N);if(N===null||C(N))return $.exit("htmlFlowData"),_(N);return $.consume(N),t}function _(N){return $.check(cR,m,M0)(N)}function m(N){return $.enter("lineEnding"),$.consume(N),$.exit("lineEnding"),F}function F(N){if(N===null||C(N))return _(N);return $.enter("htmlFlowData"),t(N)}function J1(N){if(N===45)return $.consume(N),A;return t(N)}function l(N){if(N===47)return $.consume(N),H="",F1;return t(N)}function F1(N){if(N===62){let Q1=H.toLowerCase();if(iG.includes(Q1))return $.consume(N),O0;return t(N)}if(Q0(N)&&H.length<8)return $.consume(N),H+=String.fromCharCode(N),F1;return t(N)}function w1(N){if(N===93)return $.consume(N),A;return t(N)}function A(N){if(N===62)return $.consume(N),O0;if(N===45&&X===2)return $.consume(N),A;return t(N)}function O0(N){if(N===null||C(N))return $.exit("htmlFlowData"),M0(N);return $.consume(N),O0}function M0(N){return $.exit("htmlFlow"),Z(N)}}function aR($,Z,G){let J=this;return X;function X(H){if(C(H))return $.enter("lineEnding"),$.consume(H),$.exit("lineEnding"),Y;return G(H)}function Y(H){return J.parser.lazy[J.now().line]?G(H):Z(H)}}function nR($,Z,G){return J;function J(X){return $.enter("lineEnding"),$.consume(X),$.exit("lineEnding"),$.attempt(j5,Z,G)}}var dG={name:"htmlText",tokenize:sR};function sR($,Z,G){let J=this,X,Y,H;return Q;function Q(A){return $.enter("htmlText"),$.enter("htmlTextData"),$.consume(A),q}function q(A){if(A===33)return $.consume(A),U;if(A===47)return $.consume(A),g;if(A===63)return $.consume(A),R;if(Q0(A))return $.consume(A),s;return G(A)}function U(A){if(A===45)return $.consume(A),K;if(A===91)return $.consume(A),Y=0,V;if(Q0(A))return $.consume(A),E;return G(A)}function K(A){if(A===45)return $.consume(A),L;return G(A)}function W(A){if(A===null)return G(A);if(A===45)return $.consume(A),z;if(C(A))return H=W,l(A);return $.consume(A),W}function z(A){if(A===45)return $.consume(A),L;return W(A)}function L(A){return A===62?J1(A):A===45?z(A):W(A)}function V(A){if(A==="CDATA[".charCodeAt(Y++))return $.consume(A),Y===6?B:V;return G(A)}function B(A){if(A===null)return G(A);if(A===93)return $.consume(A),I;if(C(A))return H=B,l(A);return $.consume(A),B}function I(A){if(A===93)return $.consume(A),D;return B(A)}function D(A){if(A===62)return J1(A);if(A===93)return $.consume(A),D;return B(A)}function E(A){if(A===null||A===62)return J1(A);if(C(A))return H=E,l(A);return $.consume(A),E}function R(A){if(A===null)return G(A);if(A===63)return $.consume(A),P;if(C(A))return H=R,l(A);return $.consume(A),R}function P(A){return A===62?J1(A):R(A)}function g(A){if(Q0(A))return $.consume(A),M;return G(A)}function M(A){if(A===45||g1(A))return $.consume(A),M;return h(A)}function h(A){if(C(A))return H=h,l(A);if(b(A))return $.consume(A),h;return J1(A)}function s(A){if(A===45||g1(A))return $.consume(A),s;if(A===47||A===62||V1(A))return i(A);return G(A)}function i(A){if(A===47)return $.consume(A),J1;if(A===58||A===95||Q0(A))return $.consume(A),o;if(C(A))return H=i,l(A);if(b(A))return $.consume(A),i;return J1(A)}function o(A){if(A===45||A===46||A===58||A===95||g1(A))return $.consume(A),o;return a(A)}function a(A){if(A===61)return $.consume(A),t;if(C(A))return H=a,l(A);if(b(A))return $.consume(A),a;return i(A)}function t(A){if(A===null||A===60||A===61||A===62||A===96)return G(A);if(A===34||A===39)return $.consume(A),X=A,_;if(C(A))return H=t,l(A);if(b(A))return $.consume(A),t;return $.consume(A),m}function _(A){if(A===X)return $.consume(A),X=void 0,F;if(A===null)return G(A);if(C(A))return H=_,l(A);return $.consume(A),_}function m(A){if(A===null||A===34||A===39||A===60||A===61||A===96)return G(A);if(A===47||A===62||V1(A))return i(A);return $.consume(A),m}function F(A){if(A===47||A===62||V1(A))return i(A);return G(A)}function J1(A){if(A===62)return $.consume(A),$.exit("htmlTextData"),$.exit("htmlText"),Z;return G(A)}function l(A){return $.exit("htmlTextData"),$.enter("lineEnding"),$.consume(A),$.exit("lineEnding"),F1}function F1(A){return b(A)?p($,w1,"linePrefix",J.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(A):w1(A)}function w1(A){return $.enter("htmlTextData"),H(A)}}var $6={name:"labelEnd",resolveAll:$O,resolveTo:ZO,tokenize:GO},oR={tokenize:JO},tR={tokenize:XO},eR={tokenize:YO};function $O($){let Z=-1,G=[];while(++Z<$.length){let J=$[Z][1];if(G.push($[Z]),J.type==="labelImage"||J.type==="labelLink"||J.type==="labelEnd"){let X=J.type==="labelImage"?4:2;J.type="data",Z+=X}}if($.length!==G.length)k1($,0,$.length,G);return $}function ZO($,Z){let G=$.length,J=0,X,Y,H,Q;while(G--)if(X=$[G][1],Y){if(X.type==="link"||X.type==="labelLink"&&X._inactive)break;if($[G][0]==="enter"&&X.type==="labelLink")X._inactive=!0}else if(H){if($[G][0]==="enter"&&(X.type==="labelImage"||X.type==="labelLink")&&!X._balanced){if(Y=G,X.type!=="labelLink"){J=2;break}}}else if(X.type==="labelEnd")H=G;let q={type:$[Y][1].type==="labelLink"?"link":"image",start:{...$[Y][1].start},end:{...$[$.length-1][1].end}},U={type:"label",start:{...$[Y][1].start},end:{...$[H][1].end}},K={type:"labelText",start:{...$[Y+J+2][1].end},end:{...$[H-2][1].start}};return Q=[["enter",q,Z],["enter",U,Z]],Q=n1(Q,$.slice(Y+1,Y+J+3)),Q=n1(Q,[["enter",K,Z]]),Q=n1(Q,v6(Z.parser.constructs.insideSpan.null,$.slice(Y+J+4,H-3),Z)),Q=n1(Q,[["exit",K,Z],$[H-2],$[H-1],["exit",U,Z]]),Q=n1(Q,$.slice(H+1)),Q=n1(Q,[["exit",q,Z]]),k1($,Y,$.length,Q),$}function GO($,Z,G){let J=this,X=J.events.length,Y,H;while(X--)if((J.events[X][1].type==="labelImage"||J.events[X][1].type==="labelLink")&&!J.events[X][1]._balanced){Y=J.events[X][1];break}return Q;function Q(z){if(!Y)return G(z);if(Y._inactive)return W(z);return H=J.parser.defined.includes(J5(J.sliceSerialize({start:Y.end,end:J.now()}))),$.enter("labelEnd"),$.enter("labelMarker"),$.consume(z),$.exit("labelMarker"),$.exit("labelEnd"),q}function q(z){if(z===40)return $.attempt(oR,K,H?K:W)(z);if(z===91)return $.attempt(tR,K,H?U:W)(z);return H?K(z):W(z)}function U(z){return $.attempt(eR,K,W)(z)}function K(z){return Z(z)}function W(z){return Y._balanced=!0,G(z)}}function JO($,Z,G){return J;function J(W){return $.enter("resource"),$.enter("resourceMarker"),$.consume(W),$.exit("resourceMarker"),X}function X(W){return V1(W)?e5($,Y)(W):Y(W)}function Y(W){if(W===41)return K(W);return j9($,H,Q,"resourceDestination","resourceDestinationLiteral","resourceDestinationLiteralMarker","resourceDestinationRaw","resourceDestinationString",32)(W)}function H(W){return V1(W)?e5($,q)(W):K(W)}function Q(W){return G(W)}function q(W){if(W===34||W===39||W===40)return _9($,U,G,"resourceTitle","resourceTitleMarker","resourceTitleString")(W);return K(W)}function U(W){return V1(W)?e5($,K)(W):K(W)}function K(W){if(W===41)return $.enter("resourceMarker"),$.consume(W),$.exit("resourceMarker"),$.exit("resource"),Z;return G(W)}}function XO($,Z,G){let J=this;return X;function X(Q){return S9.call(J,$,Y,H,"reference","referenceMarker","referenceString")(Q)}function Y(Q){return J.parser.defined.includes(J5(J.sliceSerialize(J.events[J.events.length-1][1]).slice(1,-1)))?Z(Q):G(Q)}function H(Q){return G(Q)}}function YO($,Z,G){return J;function J(Y){return $.enter("reference"),$.enter("referenceMarker"),$.consume(Y),$.exit("referenceMarker"),X}function X(Y){if(Y===93)return $.enter("referenceMarker"),$.consume(Y),$.exit("referenceMarker"),$.exit("reference"),Z;return G(Y)}}var rG={name:"labelStartImage",resolveAll:$6.resolveAll,tokenize:HO};function HO($,Z,G){let J=this;return X;function X(Q){return $.enter("labelImage"),$.enter("labelImageMarker"),$.consume(Q),$.exit("labelImageMarker"),Y}function Y(Q){if(Q===91)return $.enter("labelMarker"),$.consume(Q),$.exit("labelMarker"),$.exit("labelImage"),H;return G(Q)}function H(Q){return Q===94&&"_hiddenFootnoteSupport"in J.parser.constructs?G(Q):Z(Q)}}var aG={name:"labelStartLink",resolveAll:$6.resolveAll,tokenize:QO};function QO($,Z,G){let J=this;return X;function X(H){return $.enter("labelLink"),$.enter("labelMarker"),$.consume(H),$.exit("labelMarker"),$.exit("labelLink"),Y}function Y(H){return H===94&&"_hiddenFootnoteSupport"in J.parser.constructs?G(H):Z(H)}}var d7={name:"lineEnding",tokenize:qO};function qO($,Z){return G;function G(J){return $.enter("lineEnding"),$.consume(J),$.exit("lineEnding"),p($,Z,"linePrefix")}}var Z6={name:"thematicBreak",tokenize:KO};function KO($,Z,G){let J=0,X;return Y;function Y(U){return $.enter("thematicBreak"),H(U)}function H(U){return X=U,Q(U)}function Q(U){if(U===X)return $.enter("thematicBreakSequence"),q(U);if(J>=3&&(U===null||C(U)))return $.exit("thematicBreak"),Z(U);return G(U)}function q(U){if(U===X)return $.consume(U),J++,q;return $.exit("thematicBreakSequence"),b(U)?p($,Q,"whitespace")(U):Q(U)}}var f1={continuation:{tokenize:zO},exit:NO,name:"list",tokenize:LO},UO={partial:!0,tokenize:BO},WO={partial:!0,tokenize:AO};function LO($,Z,G){let J=this,X=J.events[J.events.length-1],Y=X&&X[1].type==="linePrefix"?X[2].sliceSerialize(X[1],!0).length:0,H=0;return Q;function Q(L){let V=J.containerState.type||(L===42||L===43||L===45?"listUnordered":"listOrdered");if(V==="listUnordered"?!J.containerState.marker||L===J.containerState.marker:p7(L)){if(!J.containerState.type)J.containerState.type=V,$.enter(V,{_container:!0});if(V==="listUnordered")return $.enter("listItemPrefix"),L===42||L===45?$.check(Z6,G,U)(L):U(L);if(!J.interrupt||L===49)return $.enter("listItemPrefix"),$.enter("listItemValue"),q(L)}return G(L)}function q(L){if(p7(L)&&++H<10)return $.consume(L),q;if((!J.interrupt||H<2)&&(J.containerState.marker?L===J.containerState.marker:L===41||L===46))return $.exit("listItemValue"),U(L);return G(L)}function U(L){return $.enter("listItemMarker"),$.consume(L),$.exit("listItemMarker"),J.containerState.marker=J.containerState.marker||L,$.check(j5,J.interrupt?G:K,$.attempt(UO,z,W))}function K(L){return J.containerState.initialBlankLine=!0,Y++,z(L)}function W(L){if(b(L))return $.enter("listItemPrefixWhitespace"),$.consume(L),$.exit("listItemPrefixWhitespace"),z;return G(L)}function z(L){return J.containerState.size=Y+J.sliceSerialize($.exit("listItemPrefix"),!0).length,Z(L)}}function zO($,Z,G){let J=this;return J.containerState._closeFlow=void 0,$.check(j5,X,Y);function X(Q){return J.containerState.furtherBlankLines=J.containerState.furtherBlankLines||J.containerState.initialBlankLine,p($,Z,"listItemIndent",J.containerState.size+1)(Q)}function Y(Q){if(J.containerState.furtherBlankLines||!b(Q))return J.containerState.furtherBlankLines=void 0,J.containerState.initialBlankLine=void 0,H(Q);return J.containerState.furtherBlankLines=void 0,J.containerState.initialBlankLine=void 0,$.attempt(WO,Z,H)(Q)}function H(Q){return J.containerState._closeFlow=!0,J.interrupt=void 0,p($,$.attempt(f1,Z,G),"linePrefix",J.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(Q)}}function AO($,Z,G){let J=this;return p($,X,"listItemIndent",J.containerState.size+1);function X(Y){let H=J.events[J.events.length-1];return H&&H[1].type==="listItemIndent"&&H[2].sliceSerialize(H[1],!0).length===J.containerState.size?Z(Y):G(Y)}}function NO($){$.exit(this.containerState.type)}function BO($,Z,G){let J=this;return p($,X,"listItemPrefixWhitespace",J.parser.constructs.disable.null.includes("codeIndented")?void 0:5);function X(Y){let H=J.events[J.events.length-1];return!b(Y)&&H&&H[1].type==="listItemPrefixWhitespace"?Z(Y):G(Y)}}var C9={name:"setextUnderline",resolveTo:VO,tokenize:FO};function VO($,Z){let G=$.length,J,X,Y;while(G--)if($[G][0]==="enter"){if($[G][1].type==="content"){J=G;break}if($[G][1].type==="paragraph")X=G}else{if($[G][1].type==="content")$.splice(G,1);if(!Y&&$[G][1].type==="definition")Y=G}let H={type:"setextHeading",start:{...$[J][1].start},end:{...$[$.length-1][1].end}};if($[X][1].type="setextHeadingText",Y)$.splice(X,0,["enter",H,Z]),$.splice(Y+1,0,["exit",$[J][1],Z]),$[J][1].end={...$[Y][1].end};else $[J][1]=H;return $.push(["exit",H,Z]),$}function FO($,Z,G){let J=this,X;return Y;function Y(U){let K=J.events.length,W;while(K--)if(J.events[K][1].type!=="lineEnding"&&J.events[K][1].type!=="linePrefix"&&J.events[K][1].type!=="content"){W=J.events[K][1].type==="paragraph";break}if(!J.parser.lazy[J.now().line]&&(J.interrupt||W))return $.enter("setextHeadingLine"),X=U,H(U);return G(U)}function H(U){return $.enter("setextHeadingLineSequence"),Q(U)}function Q(U){if(U===X)return $.consume(U),Q;return $.exit("setextHeadingLineSequence"),b(U)?p($,q,"lineSuffix")(U):q(U)}function q(U){if(U===null||C(U))return $.exit("setextHeadingLine"),Z(U);return G(U)}}var rq={tokenize:RO};function RO($){let Z=this,G=$.attempt(j5,J,$.attempt(this.parser.constructs.flowInitial,X,p($,$.attempt(this.parser.constructs.flow,X,$.attempt(fG,X)),"linePrefix")));return G;function J(Y){if(Y===null){$.consume(Y);return}return $.enter("lineEndingBlank"),$.consume(Y),$.exit("lineEndingBlank"),Z.currentConstruct=void 0,G}function X(Y){if(Y===null){$.consume(Y);return}return $.enter("lineEnding"),$.consume(Y),$.exit("lineEnding"),Z.currentConstruct=void 0,G}}var aq={resolveAll:tq()},nq=oq("string"),sq=oq("text");function oq($){return{resolveAll:tq($==="text"?OO:void 0),tokenize:Z};function Z(G){let J=this,X=this.parser.constructs[$],Y=G.attempt(X,H,Q);return H;function H(K){return U(K)?Y(K):Q(K)}function Q(K){if(K===null){G.consume(K);return}return G.enter("data"),G.consume(K),q}function q(K){if(U(K))return G.exit("data"),Y(K);return G.consume(K),q}function U(K){if(K===null)return!0;let W=X[K],z=-1;if(W)while(++z<W.length){let L=W[z];if(!L.previous||L.previous.call(J,J.previous))return!0}return!1}}}function tq($){return Z;function Z(G,J){let X=-1,Y;while(++X<=G.length)if(Y===void 0){if(G[X]&&G[X][1].type==="data")Y=X,X++}else if(!G[X]||G[X][1].type!=="data"){if(X!==Y+2)G[Y][1].end=G[X-1][1].end,G.splice(Y+2,X-Y-2),X=Y+2;Y=void 0}return $?$(G,J):G}}function OO($,Z){let G=0;while(++G<=$.length)if((G===$.length||$[G][1].type==="lineEnding")&&$[G-1][1].type==="data"){let J=$[G-1][1],X=Z.sliceStream(J),Y=X.length,H=-1,Q=0,q;while(Y--){let U=X[Y];if(typeof U==="string"){H=U.length;while(U.charCodeAt(H-1)===32)Q++,H--;if(H)break;H=-1}else if(U===-2)q=!0,Q++;else if(U===-1);else{Y++;break}}if(Z._contentTypeTextTrailing&&G===$.length)Q=0;if(Q){let U={type:G===$.length||q||Q<2?"lineSuffix":"hardBreakTrailing",start:{_bufferIndex:Y?H:J.start._bufferIndex+H,_index:J.start._index+Y,line:J.end.line,column:J.end.column-Q,offset:J.end.offset-Q},end:{...J.end}};if(J.end={...U.start},J.start.offset===J.end.offset)Object.assign(J,U);else $.splice(G,0,["enter",U,Z],["exit",U,Z]),G+=2}G++}return $}var nG={};Q8(nG,{text:()=>wO,string:()=>TO,insideSpan:()=>EO,flowInitial:()=>IO,flow:()=>PO,document:()=>MO,disable:()=>SO,contentInitial:()=>DO,attentionMarkers:()=>jO});var MO={[42]:f1,[43]:f1,[45]:f1,[48]:f1,[49]:f1,[50]:f1,[51]:f1,[52]:f1,[53]:f1,[54]:f1,[55]:f1,[56]:f1,[57]:f1,[62]:I9},DO={[91]:uG},IO={[-2]:i7,[-1]:i7,[32]:i7},PO={[35]:lG,[42]:Z6,[45]:[C9,Z6],[60]:cG,[61]:C9,[95]:Z6,[96]:w9,[126]:w9},TO={[38]:T9,[92]:P9},wO={[-5]:d7,[-4]:d7,[-3]:d7,[33]:rG,[38]:T9,[42]:l7,[60]:[bG,dG],[91]:aG,[92]:[pG,P9],[93]:$6,[95]:l7,[96]:kG},EO={null:[l7,aq]},jO={null:[42,95]},SO={null:[]};function eq($,Z,G){let J={_bufferIndex:-1,_index:0,line:G&&G.line||1,column:G&&G.column||1,offset:G&&G.offset||0},X={},Y=[],H=[],Q=[],q=!0,U={attempt:i(h),check:i(s),consume:P,enter:g,exit:M,interrupt:i(s,{interrupt:!0})},K={code:null,containerState:{},defineSkip:D,events:[],now:I,parser:$,previous:null,sliceSerialize:V,sliceStream:B,write:L},W=Z.tokenize.call(K,U),z;if(Z.resolveAll)Y.push(Z);return K;function L(_){if(H=n1(H,_),E(),H[H.length-1]!==null)return[];return o(Z,0),K.events=v6(Y,K.events,K),K.events}function V(_,m){return CO(B(_),m)}function B(_){return _O(H,_)}function I(){let{_bufferIndex:_,_index:m,line:F,column:J1,offset:l}=J;return{_bufferIndex:_,_index:m,line:F,column:J1,offset:l}}function D(_){X[_.line]=_.column,t()}function E(){let _;while(J._index<H.length){let m=H[J._index];if(typeof m==="string"){if(_=J._index,J._bufferIndex<0)J._bufferIndex=0;while(J._index===_&&J._bufferIndex<m.length)R(m.charCodeAt(J._bufferIndex))}else R(m)}}function R(_){q=void 0,z=_,W=W(_)}function P(_){if(C(_))J.line++,J.column=1,J.offset+=_===-3?2:1,t();else if(_!==-1)J.column++,J.offset++;if(J._bufferIndex<0)J._index++;else if(J._bufferIndex++,J._bufferIndex===H[J._index].length)J._bufferIndex=-1,J._index++;K.previous=_,q=!0}function g(_,m){let F=m||{};return F.type=_,F.start=I(),K.events.push(["enter",F,K]),Q.push(F),F}function M(_){let m=Q.pop();return m.end=I(),K.events.push(["exit",m,K]),m}function h(_,m){o(_,m.from)}function s(_,m){m.restore()}function i(_,m){return F;function F(J1,l,F1){let w1,A,O0,M0;return Array.isArray(J1)?Q1(J1):("tokenize"in J1)?Q1([J1]):N(J1);function N(I1){return s6;function s6(c0){let y5=c0!==null&&I1[c0],q6=c0!==null&&I1.null,P$=[...Array.isArray(y5)?y5:y5?[y5]:[],...Array.isArray(q6)?q6:q6?[q6]:[]];return Q1(P$)(c0)}}function Q1(I1){if(w1=I1,A=0,I1.length===0)return F1;return p1(I1[A])}function p1(I1){return s6;function s6(c0){if(M0=a(),O0=I1,!I1.partial)K.currentConstruct=I1;if(I1.name&&K.parser.constructs.disable.null.includes(I1.name))return i0(c0);return I1.tokenize.call(m?Object.assign(Object.create(K),m):K,U,U0,i0)(c0)}}function U0(I1){return q=!0,_(O0,M0),l}function i0(I1){if(q=!0,M0.restore(),++A<w1.length)return p1(w1[A]);return F1}}}function o(_,m){if(_.resolveAll&&!Y.includes(_))Y.push(_);if(_.resolve)k1(K.events,m,K.events.length-m,_.resolve(K.events.slice(m),K));if(_.resolveTo)K.events=_.resolveTo(K.events,K)}function a(){let _=I(),m=K.previous,F=K.currentConstruct,J1=K.events.length,l=Array.from(Q);return{from:J1,restore:F1};function F1(){J=_,K.previous=m,K.currentConstruct=F,K.events.length=J1,Q=l,t()}}function t(){if(J.line in X&&J.column<2)J.column=X[J.line],J.offset+=X[J.line]-1}}function _O($,Z){let G=Z.start._index,J=Z.start._bufferIndex,X=Z.end._index,Y=Z.end._bufferIndex,H;if(G===X)H=[$[G].slice(J,Y)];else{if(H=$.slice(G,X),J>-1){let Q=H[0];if(typeof Q==="string")H[0]=Q.slice(J);else H.shift()}if(Y>0)H.push($[X].slice(0,Y))}return H}function CO($,Z){let G=-1,J=[],X;while(++G<$.length){let Y=$[G],H;if(typeof Y==="string")H=Y;else switch(Y){case-5:{H="\r";break}case-4:{H=`
|
|
37
|
-
`;break}case-3:{H=`\r
|
|
38
|
-
`;break}case-2:{H=Z?" ":"\t";break}case-1:{if(!Z&&X)continue;H=" ";break}default:H=String.fromCharCode(Y)}X=Y===-2,J.push(H)}return J.join("")}function sG($){let J={constructs:xq([nG,...($||{}).extensions||[]]),content:X(uq),defined:[],document:X(lq),flow:X(rq),lazy:{},string:X(nq),text:X(sq)};return J;function X(Y){return H;function H(Q){return eq(J,Y,Q)}}}function oG($){while(!E9($));return $}var $3=/[\0\t\n\r]/g;function tG(){let $=1,Z="",G=!0,J;return X;function X(Y,H,Q){let q=[],U,K,W,z,L;if(Y=Z+(typeof Y==="string"?Y.toString():new TextDecoder(H||void 0).decode(Y)),W=0,Z="",G){if(Y.charCodeAt(0)===65279)W++;G=void 0}while(W<Y.length){if($3.lastIndex=W,U=$3.exec(Y),z=U&&U.index!==void 0?U.index:Y.length,L=Y.charCodeAt(z),!U){Z=Y.slice(W);break}if(L===10&&W===z&&J)q.push(-3),J=void 0;else{if(J)q.push(-5),J=void 0;if(W<z)q.push(Y.slice(W,z)),$+=z-W;switch(L){case 0:{q.push(65533),$++;break}case 9:{K=Math.ceil($/4)*4,q.push(-2);while($++<K)q.push(-1);break}case 10:{q.push(-4),$=1;break}default:J=!0,$=1}}W=z+1}if(Q){if(J)q.push(-5);if(Z)q.push(Z);q.push(null)}return q}}var gO=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function Z3($){return $.replace(gO,yO)}function yO($,Z,G){if(Z)return Z;if(G.charCodeAt(0)===35){let X=G.charCodeAt(1),Y=X===120||X===88;return D9(G.slice(Y?2:1),Y?16:10)}return y6(G)||$}var J3={}.hasOwnProperty;function eG($,Z,G){if(typeof Z!=="string")G=Z,Z=void 0;return vO(G)(oG(sG(G).document().write(tG()($,Z,!0))))}function vO($){let Z={transforms:[],canContainEols:["emphasis","fragment","heading","paragraph","strong"],enter:{autolink:Y(v2),autolinkProtocol:i,autolinkEmail:i,atxHeading:Y(C2),blockQuote:Y(c0),characterEscape:i,characterReference:i,codeFenced:Y(y5),codeFencedFenceInfo:H,codeFencedFenceMeta:H,codeIndented:Y(y5,H),codeText:Y(q6,H),codeTextData:i,data:i,codeFlowValue:i,definition:Y(P$),definitionDestinationString:H,definitionLabelString:H,definitionTitleString:H,emphasis:Y(KL),hardBreakEscape:Y(g2),hardBreakTrailing:Y(g2),htmlFlow:Y(y2,H),htmlFlowData:i,htmlText:Y(y2,H),htmlTextData:i,image:Y(UL),label:H,link:Y(v2),listItem:Y(WL),listItemValue:z,listOrdered:Y(x2,W),listUnordered:Y(x2),paragraph:Y(LL),reference:N,referenceString:H,resourceDestinationString:H,resourceTitleString:H,setextHeading:Y(C2),strong:Y(zL),thematicBreak:Y(NL)},exit:{atxHeading:q(),atxHeadingSequence:g,autolink:q(),autolinkEmail:s6,autolinkProtocol:I1,blockQuote:q(),characterEscapeValue:o,characterReferenceMarkerHexadecimal:p1,characterReferenceMarkerNumeric:p1,characterReferenceValue:U0,characterReference:i0,codeFenced:q(I),codeFencedFence:B,codeFencedFenceInfo:L,codeFencedFenceMeta:V,codeFlowValue:o,codeIndented:q(D),codeText:q(F),codeTextData:o,data:o,definition:q(),definitionDestinationString:P,definitionLabelString:E,definitionTitleString:R,emphasis:q(),hardBreakEscape:q(t),hardBreakTrailing:q(t),htmlFlow:q(_),htmlFlowData:o,htmlText:q(m),htmlTextData:o,image:q(l),label:w1,labelText:F1,lineEnding:a,link:q(J1),listItem:q(),listOrdered:q(),listUnordered:q(),paragraph:q(),referenceString:Q1,resourceDestinationString:A,resourceTitleString:O0,resource:M0,setextHeading:q(s),setextHeadingLineSequence:h,setextHeadingText:M,strong:q(),thematicBreak:q()}};X3(Z,($||{}).mdastExtensions||[]);let G={};return J;function J(T){let S={type:"root",children:[]},f={stack:[S],tokenStack:[],config:Z,enter:Q,exit:U,buffer:H,resume:K,data:G},n=[],q1=-1;while(++q1<T.length)if(T[q1][1].type==="listOrdered"||T[q1][1].type==="listUnordered")if(T[q1][0]==="enter")n.push(q1);else{let D0=n.pop();q1=X(T,D0,q1)}q1=-1;while(++q1<T.length){let D0=Z[T[q1][0]];if(J3.call(D0,T[q1][1].type))D0[T[q1][1].type].call(Object.assign({sliceSerialize:T[q1][2].sliceSerialize},f),T[q1][1])}if(f.tokenStack.length>0){let D0=f.tokenStack[f.tokenStack.length-1];(D0[1]||G3).call(f,void 0,D0[0])}S.position={start:S5(T.length>0?T[0][1].start:{line:1,column:1,offset:0}),end:S5(T.length>0?T[T.length-2][1].end:{line:1,column:1,offset:0})},q1=-1;while(++q1<Z.transforms.length)S=Z.transforms[q1](S)||S;return S}function X(T,S,f){let n=S-1,q1=-1,D0=!1,v5,d0,o6,t6;while(++n<=f){let $0=T[n];switch($0[1].type){case"listUnordered":case"listOrdered":case"blockQuote":{if($0[0]==="enter")q1++;else q1--;t6=void 0;break}case"lineEndingBlank":{if($0[0]==="enter"){if(v5&&!t6&&!q1&&!o6)o6=n;t6=void 0}break}case"linePrefix":case"listItemValue":case"listItemMarker":case"listItemPrefix":case"listItemPrefixWhitespace":break;default:t6=void 0}if(!q1&&$0[0]==="enter"&&$0[1].type==="listItemPrefix"||q1===-1&&$0[0]==="exit"&&($0[1].type==="listUnordered"||$0[1].type==="listOrdered")){if(v5){let K6=n;d0=void 0;while(K6--){let r0=T[K6];if(r0[1].type==="lineEnding"||r0[1].type==="lineEndingBlank"){if(r0[0]==="exit")continue;if(d0)T[d0][1].type="lineEndingBlank",D0=!0;r0[1].type="lineEnding",d0=K6}else if(r0[1].type==="linePrefix"||r0[1].type==="blockQuotePrefix"||r0[1].type==="blockQuotePrefixWhitespace"||r0[1].type==="blockQuoteMarker"||r0[1].type==="listItemIndent");else break}if(o6&&(!d0||o6<d0))v5._spread=!0;v5.end=Object.assign({},d0?T[d0][1].start:$0[1].end),T.splice(d0||n,0,["exit",v5,$0[2]]),n++,f++}if($0[1].type==="listItemPrefix"){let K6={type:"listItem",_spread:!1,start:Object.assign({},$0[1].start),end:void 0};v5=K6,T.splice(n,0,["enter",K6,$0[2]]),n++,f++,o6=void 0,t6=!0}}}return T[S][1]._spread=D0,f}function Y(T,S){return f;function f(n){if(Q.call(this,T(n),n),S)S.call(this,n)}}function H(){this.stack.push({type:"fragment",children:[]})}function Q(T,S,f){this.stack[this.stack.length-1].children.push(T),this.stack.push(T),this.tokenStack.push([S,f||void 0]),T.position={start:S5(S.start),end:void 0}}function q(T){return S;function S(f){if(T)T.call(this,f);U.call(this,f)}}function U(T,S){let f=this.stack.pop(),n=this.tokenStack.pop();if(!n)throw Error("Cannot close `"+T.type+"` ("+w5({start:T.start,end:T.end})+"): it’s not open");else if(n[0].type!==T.type)if(S)S.call(this,T,n[0]);else(n[1]||G3).call(this,T,n[0]);f.position.end=S5(T.end)}function K(){return vG(this.stack.pop())}function W(){this.data.expectingFirstListItemValue=!0}function z(T){if(this.data.expectingFirstListItemValue){let S=this.stack[this.stack.length-2];S.start=Number.parseInt(this.sliceSerialize(T),10),this.data.expectingFirstListItemValue=void 0}}function L(){let T=this.resume(),S=this.stack[this.stack.length-1];S.lang=T}function V(){let T=this.resume(),S=this.stack[this.stack.length-1];S.meta=T}function B(){if(this.data.flowCodeInside)return;this.buffer(),this.data.flowCodeInside=!0}function I(){let T=this.resume(),S=this.stack[this.stack.length-1];S.value=T.replace(/^(\r?\n|\r)|(\r?\n|\r)$/g,""),this.data.flowCodeInside=void 0}function D(){let T=this.resume(),S=this.stack[this.stack.length-1];S.value=T.replace(/(\r?\n|\r)$/g,"")}function E(T){let S=this.resume(),f=this.stack[this.stack.length-1];f.label=S,f.identifier=J5(this.sliceSerialize(T)).toLowerCase()}function R(){let T=this.resume(),S=this.stack[this.stack.length-1];S.title=T}function P(){let T=this.resume(),S=this.stack[this.stack.length-1];S.url=T}function g(T){let S=this.stack[this.stack.length-1];if(!S.depth){let f=this.sliceSerialize(T).length;S.depth=f}}function M(){this.data.setextHeadingSlurpLineEnding=!0}function h(T){let S=this.stack[this.stack.length-1];S.depth=this.sliceSerialize(T).codePointAt(0)===61?1:2}function s(){this.data.setextHeadingSlurpLineEnding=void 0}function i(T){let f=this.stack[this.stack.length-1].children,n=f[f.length-1];if(!n||n.type!=="text")n=AL(),n.position={start:S5(T.start),end:void 0},f.push(n);this.stack.push(n)}function o(T){let S=this.stack.pop();S.value+=this.sliceSerialize(T),S.position.end=S5(T.end)}function a(T){let S=this.stack[this.stack.length-1];if(this.data.atHardBreak){let f=S.children[S.children.length-1];f.position.end=S5(T.end),this.data.atHardBreak=void 0;return}if(!this.data.setextHeadingSlurpLineEnding&&Z.canContainEols.includes(S.type))i.call(this,T),o.call(this,T)}function t(){this.data.atHardBreak=!0}function _(){let T=this.resume(),S=this.stack[this.stack.length-1];S.value=T}function m(){let T=this.resume(),S=this.stack[this.stack.length-1];S.value=T}function F(){let T=this.resume(),S=this.stack[this.stack.length-1];S.value=T}function J1(){let T=this.stack[this.stack.length-1];if(this.data.inReference){let S=this.data.referenceType||"shortcut";T.type+="Reference",T.referenceType=S,delete T.url,delete T.title}else delete T.identifier,delete T.label;this.data.referenceType=void 0}function l(){let T=this.stack[this.stack.length-1];if(this.data.inReference){let S=this.data.referenceType||"shortcut";T.type+="Reference",T.referenceType=S,delete T.url,delete T.title}else delete T.identifier,delete T.label;this.data.referenceType=void 0}function F1(T){let S=this.sliceSerialize(T),f=this.stack[this.stack.length-2];f.label=Z3(S),f.identifier=J5(S).toLowerCase()}function w1(){let T=this.stack[this.stack.length-1],S=this.resume(),f=this.stack[this.stack.length-1];if(this.data.inReference=!0,f.type==="link"){let n=T.children;f.children=n}else f.alt=S}function A(){let T=this.resume(),S=this.stack[this.stack.length-1];S.url=T}function O0(){let T=this.resume(),S=this.stack[this.stack.length-1];S.title=T}function M0(){this.data.inReference=void 0}function N(){this.data.referenceType="collapsed"}function Q1(T){let S=this.resume(),f=this.stack[this.stack.length-1];f.label=S,f.identifier=J5(this.sliceSerialize(T)).toLowerCase(),this.data.referenceType="full"}function p1(T){this.data.characterReferenceType=T.type}function U0(T){let S=this.sliceSerialize(T),f=this.data.characterReferenceType,n;if(f)n=D9(S,f==="characterReferenceMarkerNumeric"?10:16),this.data.characterReferenceType=void 0;else n=y6(S);let q1=this.stack[this.stack.length-1];q1.value+=n}function i0(T){let S=this.stack.pop();S.position.end=S5(T.end)}function I1(T){o.call(this,T);let S=this.stack[this.stack.length-1];S.url=this.sliceSerialize(T)}function s6(T){o.call(this,T);let S=this.stack[this.stack.length-1];S.url="mailto:"+this.sliceSerialize(T)}function c0(){return{type:"blockquote",children:[]}}function y5(){return{type:"code",lang:null,meta:null,value:""}}function q6(){return{type:"inlineCode",value:""}}function P$(){return{type:"definition",identifier:"",label:null,title:null,url:""}}function KL(){return{type:"emphasis",children:[]}}function C2(){return{type:"heading",depth:0,children:[]}}function g2(){return{type:"break"}}function y2(){return{type:"html",value:""}}function UL(){return{type:"image",title:null,url:"",alt:null}}function v2(){return{type:"link",title:null,url:"",children:[]}}function x2(T){return{type:"list",ordered:T.type==="listOrdered",start:null,spread:T._spread,children:[]}}function WL(T){return{type:"listItem",spread:T._spread,checked:null,children:[]}}function LL(){return{type:"paragraph",children:[]}}function zL(){return{type:"strong",children:[]}}function AL(){return{type:"text",value:""}}function NL(){return{type:"thematicBreak"}}}function S5($){return{line:$.line,column:$.column,offset:$.offset}}function X3($,Z){let G=-1;while(++G<Z.length){let J=Z[G];if(Array.isArray(J))X3($,J);else xO($,J)}}function xO($,Z){let G;for(G in Z)if(J3.call(Z,G))switch(G){case"canContainEols":{let J=Z[G];if(J)$[G].push(...J);break}case"transforms":{let J=Z[G];if(J)$[G].push(...J);break}case"enter":case"exit":{let J=Z[G];if(J)Object.assign($[G],J);break}}}function G3($,Z){if($)throw Error("Cannot close `"+$.type+"` ("+w5({start:$.start,end:$.end})+"): a different token (`"+Z.type+"`, "+w5({start:Z.start,end:Z.end})+") is open");else throw Error("Cannot close document, a token (`"+Z.type+"`, "+w5({start:Z.start,end:Z.end})+") is still open")}function g9($){let Z=this;Z.parser=G;function G(J){return eG(J,{...Z.data("settings"),...$,extensions:Z.data("micromarkExtensions")||[],mdastExtensions:Z.data("fromMarkdownExtensions")||[]})}}function Y3($,Z){let G={type:"element",tagName:"blockquote",properties:{},children:$.wrap($.all(Z),!0)};return $.patch(Z,G),$.applyData(Z,G)}function H3($,Z){let G={type:"element",tagName:"br",properties:{},children:[]};return $.patch(Z,G),[$.applyData(Z,G),{type:"text",value:`
|
|
39
|
-
`}]}function Q3($,Z){let G=Z.value?Z.value+`
|
|
40
|
-
`:"",J={},X=Z.lang?Z.lang.split(/\s+/):[];if(X.length>0)J.className=["language-"+X[0]];let Y={type:"element",tagName:"code",properties:J,children:[{type:"text",value:G}]};if(Z.meta)Y.data={meta:Z.meta};return $.patch(Z,Y),Y=$.applyData(Z,Y),Y={type:"element",tagName:"pre",properties:{},children:[Y]},$.patch(Z,Y),Y}function q3($,Z){let G={type:"element",tagName:"del",properties:{},children:$.all(Z)};return $.patch(Z,G),$.applyData(Z,G)}function K3($,Z){let G={type:"element",tagName:"em",properties:{},children:$.all(Z)};return $.patch(Z,G),$.applyData(Z,G)}function U3($,Z){let G=typeof $.options.clobberPrefix==="string"?$.options.clobberPrefix:"user-content-",J=String(Z.identifier).toUpperCase(),X=N0(J.toLowerCase()),Y=$.footnoteOrder.indexOf(J),H,Q=$.footnoteCounts.get(J);if(Q===void 0)Q=0,$.footnoteOrder.push(J),H=$.footnoteOrder.length;else H=Y+1;Q+=1,$.footnoteCounts.set(J,Q);let q={type:"element",tagName:"a",properties:{href:"#"+G+"fn-"+X,id:G+"fnref-"+X+(Q>1?"-"+Q:""),dataFootnoteRef:!0,ariaDescribedBy:["footnote-label"]},children:[{type:"text",value:String(H)}]};$.patch(Z,q);let U={type:"element",tagName:"sup",properties:{},children:[q]};return $.patch(Z,U),$.applyData(Z,U)}function W3($,Z){let G={type:"element",tagName:"h"+Z.depth,properties:{},children:$.all(Z)};return $.patch(Z,G),$.applyData(Z,G)}function L3($,Z){if($.options.allowDangerousHtml){let G={type:"raw",value:Z.value};return $.patch(Z,G),$.applyData(Z,G)}return}function y9($,Z){let G=Z.referenceType,J="]";if(G==="collapsed")J+="[]";else if(G==="full")J+="["+(Z.label||Z.identifier)+"]";if(Z.type==="imageReference")return[{type:"text",value:"!["+Z.alt+J}];let X=$.all(Z),Y=X[0];if(Y&&Y.type==="text")Y.value="["+Y.value;else X.unshift({type:"text",value:"["});let H=X[X.length-1];if(H&&H.type==="text")H.value+=J;else X.push({type:"text",value:J});return X}function z3($,Z){let G=String(Z.identifier).toUpperCase(),J=$.definitionById.get(G);if(!J)return y9($,Z);let X={src:N0(J.url||""),alt:Z.alt};if(J.title!==null&&J.title!==void 0)X.title=J.title;let Y={type:"element",tagName:"img",properties:X,children:[]};return $.patch(Z,Y),$.applyData(Z,Y)}function A3($,Z){let G={src:N0(Z.url)};if(Z.alt!==null&&Z.alt!==void 0)G.alt=Z.alt;if(Z.title!==null&&Z.title!==void 0)G.title=Z.title;let J={type:"element",tagName:"img",properties:G,children:[]};return $.patch(Z,J),$.applyData(Z,J)}function N3($,Z){let G={type:"text",value:Z.value.replace(/\r?\n|\r/g," ")};$.patch(Z,G);let J={type:"element",tagName:"code",properties:{},children:[G]};return $.patch(Z,J),$.applyData(Z,J)}function B3($,Z){let G=String(Z.identifier).toUpperCase(),J=$.definitionById.get(G);if(!J)return y9($,Z);let X={href:N0(J.url||"")};if(J.title!==null&&J.title!==void 0)X.title=J.title;let Y={type:"element",tagName:"a",properties:X,children:$.all(Z)};return $.patch(Z,Y),$.applyData(Z,Y)}function V3($,Z){let G={href:N0(Z.url)};if(Z.title!==null&&Z.title!==void 0)G.title=Z.title;let J={type:"element",tagName:"a",properties:G,children:$.all(Z)};return $.patch(Z,J),$.applyData(Z,J)}function F3($,Z,G){let J=$.all(Z),X=G?hO(G):R3(Z),Y={},H=[];if(typeof Z.checked==="boolean"){let K=J[0],W;if(K&&K.type==="element"&&K.tagName==="p")W=K;else W={type:"element",tagName:"p",properties:{},children:[]},J.unshift(W);if(W.children.length>0)W.children.unshift({type:"text",value:" "});W.children.unshift({type:"element",tagName:"input",properties:{type:"checkbox",checked:Z.checked,disabled:!0},children:[]}),Y.className=["task-list-item"]}let Q=-1;while(++Q<J.length){let K=J[Q];if(X||Q!==0||K.type!=="element"||K.tagName!=="p")H.push({type:"text",value:`
|
|
41
|
-
`});if(K.type==="element"&&K.tagName==="p"&&!X)H.push(...K.children);else H.push(K)}let q=J[J.length-1];if(q&&(X||q.type!=="element"||q.tagName!=="p"))H.push({type:"text",value:`
|
|
42
|
-
`});let U={type:"element",tagName:"li",properties:Y,children:H};return $.patch(Z,U),$.applyData(Z,U)}function hO($){let Z=!1;if($.type==="list"){Z=$.spread||!1;let G=$.children,J=-1;while(!Z&&++J<G.length)Z=R3(G[J])}return Z}function R3($){let Z=$.spread;return Z===null||Z===void 0?$.children.length>1:Z}function O3($,Z){let G={},J=$.all(Z),X=-1;if(typeof Z.start==="number"&&Z.start!==1)G.start=Z.start;while(++X<J.length){let H=J[X];if(H.type==="element"&&H.tagName==="li"&&H.properties&&Array.isArray(H.properties.className)&&H.properties.className.includes("task-list-item")){G.className=["contains-task-list"];break}}let Y={type:"element",tagName:Z.ordered?"ol":"ul",properties:G,children:$.wrap(J,!0)};return $.patch(Z,Y),$.applyData(Z,Y)}function M3($,Z){let G={type:"element",tagName:"p",properties:{},children:$.all(Z)};return $.patch(Z,G),$.applyData(Z,G)}function D3($,Z){let G={type:"root",children:$.wrap($.all(Z))};return $.patch(Z,G),$.applyData(Z,G)}function I3($,Z){let G={type:"element",tagName:"strong",properties:{},children:$.all(Z)};return $.patch(Z,G),$.applyData(Z,G)}function P3($,Z){let G=$.all(Z),J=G.shift(),X=[];if(J){let H={type:"element",tagName:"thead",properties:{},children:$.wrap([J],!0)};$.patch(Z.children[0],H),X.push(H)}if(G.length>0){let H={type:"element",tagName:"tbody",properties:{},children:$.wrap(G,!0)},Q=g6(Z.children[1]),q=M9(Z.children[Z.children.length-1]);if(Q&&q)H.position={start:Q,end:q};X.push(H)}let Y={type:"element",tagName:"table",properties:{},children:$.wrap(X,!0)};return $.patch(Z,Y),$.applyData(Z,Y)}function T3($,Z,G){let J=G?G.children:void 0,Y=(J?J.indexOf(Z):1)===0?"th":"td",H=G&&G.type==="table"?G.align:void 0,Q=H?H.length:Z.children.length,q=-1,U=[];while(++q<Q){let W=Z.children[q],z={},L=H?H[q]:void 0;if(L)z.align=L;let V={type:"element",tagName:Y,properties:z,children:[]};if(W)V.children=$.all(W),$.patch(W,V),V=$.applyData(W,V);U.push(V)}let K={type:"element",tagName:"tr",properties:{},children:$.wrap(U,!0)};return $.patch(Z,K),$.applyData(Z,K)}function w3($,Z){let G={type:"element",tagName:"td",properties:{},children:$.all(Z)};return $.patch(Z,G),$.applyData(Z,G)}function j3($){let Z=String($),G=/\r?\n|\r/g,J=G.exec(Z),X=0,Y=[];while(J)Y.push(E3(Z.slice(X,J.index),X>0,!0),J[0]),X=J.index+J[0].length,J=G.exec(Z);return Y.push(E3(Z.slice(X),X>0,!1)),Y.join("")}function E3($,Z,G){let J=0,X=$.length;if(Z){let Y=$.codePointAt(J);while(Y===9||Y===32)J++,Y=$.codePointAt(J)}if(G){let Y=$.codePointAt(X-1);while(Y===9||Y===32)X--,Y=$.codePointAt(X-1)}return X>J?$.slice(J,X):""}function S3($,Z){let G={type:"text",value:j3(String(Z.value))};return $.patch(Z,G),$.applyData(Z,G)}function _3($,Z){let G={type:"element",tagName:"hr",properties:{},children:[]};return $.patch(Z,G),$.applyData(Z,G)}var C3={blockquote:Y3,break:H3,code:Q3,delete:q3,emphasis:K3,footnoteReference:U3,heading:W3,html:L3,imageReference:z3,image:A3,inlineCode:N3,linkReference:B3,link:V3,listItem:F3,list:O3,paragraph:M3,root:D3,strong:I3,table:P3,tableCell:w3,tableRow:T3,text:S3,thematicBreak:_3,toml:v9,yaml:v9,definition:v9,footnoteDefinition:v9};function v9(){return}var x9=-1,x6=0,G6=1,h6=2,r7=3,a7=4,n7=5,s7=6,h9=7,b9=8;var g3=typeof self==="object"?self:globalThis,bO=($,Z)=>{let G=(X,Y)=>{return $.set(Y,X),X},J=(X)=>{if($.has(X))return $.get(X);let[Y,H]=Z[X];switch(Y){case x6:case x9:return G(H,X);case G6:{let Q=G([],X);for(let q of H)Q.push(J(q));return Q}case h6:{let Q=G({},X);for(let[q,U]of H)Q[J(q)]=J(U);return Q}case r7:return G(new Date(H),X);case a7:{let{source:Q,flags:q}=H;return G(new RegExp(Q,q),X)}case n7:{let Q=G(new Map,X);for(let[q,U]of H)Q.set(J(q),J(U));return Q}case s7:{let Q=G(new Set,X);for(let q of H)Q.add(J(q));return Q}case h9:{let{name:Q,message:q}=H;return G(new g3[Q](q),X)}case b9:return G(BigInt(H),X);case"BigInt":return G(Object(BigInt(H)),X);case"ArrayBuffer":return G(new Uint8Array(H).buffer,H);case"DataView":{let{buffer:Q}=new Uint8Array(H);return G(new DataView(Q),H)}}return G(new g3[Y](H),X)};return J},$J=($)=>bO(new Map,$)(0);var b6="",{toString:kO}={},{keys:mO}=Object,o7=($)=>{let Z=typeof $;if(Z!=="object"||!$)return[x6,Z];let G=kO.call($).slice(8,-1);switch(G){case"Array":return[G6,b6];case"Object":return[h6,b6];case"Date":return[r7,b6];case"RegExp":return[a7,b6];case"Map":return[n7,b6];case"Set":return[s7,b6];case"DataView":return[G6,G]}if(G.includes("Array"))return[G6,G];if(G.includes("Error"))return[h9,G];return[h6,G]},k9=([$,Z])=>$===x6&&(Z==="function"||Z==="symbol"),fO=($,Z,G,J)=>{let X=(H,Q)=>{let q=J.push(H)-1;return G.set(Q,q),q},Y=(H)=>{if(G.has(H))return G.get(H);let[Q,q]=o7(H);switch(Q){case x6:{let K=H;switch(q){case"bigint":Q=b9,K=H.toString();break;case"function":case"symbol":if($)throw TypeError("unable to serialize "+q);K=null;break;case"undefined":return X([x9],H)}return X([Q,K],H)}case G6:{if(q){let z=H;if(q==="DataView")z=new Uint8Array(H.buffer);else if(q==="ArrayBuffer")z=new Uint8Array(H);return X([q,[...z]],H)}let K=[],W=X([Q,K],H);for(let z of H)K.push(Y(z));return W}case h6:{if(q)switch(q){case"BigInt":return X([q,H.toString()],H);case"Boolean":case"Number":case"String":return X([q,H.valueOf()],H)}if(Z&&"toJSON"in H)return Y(H.toJSON());let K=[],W=X([Q,K],H);for(let z of mO(H))if($||!k9(o7(H[z])))K.push([Y(z),Y(H[z])]);return W}case r7:return X([Q,H.toISOString()],H);case a7:{let{source:K,flags:W}=H;return X([Q,{source:K,flags:W}],H)}case n7:{let K=[],W=X([Q,K],H);for(let[z,L]of H)if($||!(k9(o7(z))||k9(o7(L))))K.push([Y(z),Y(L)]);return W}case s7:{let K=[],W=X([Q,K],H);for(let z of H)if($||!k9(o7(z)))K.push(Y(z));return W}}let{message:U}=H;return X([Q,{name:q,message:U}],H)};return Y},ZJ=($,{json:Z,lossy:G}={})=>{let J=[];return fO(!(Z||G),!!Z,new Map,J)($),J};var k6=typeof structuredClone==="function"?($,Z)=>Z&&(("json"in Z)||("lossy"in Z))?$J(ZJ($,Z)):structuredClone($):($,Z)=>$J(ZJ($,Z));function uO($,Z){let G=[{type:"text",value:"↩"}];if(Z>1)G.push({type:"element",tagName:"sup",properties:{},children:[{type:"text",value:String(Z)}]});return G}function pO($,Z){return"Back to reference "+($+1)+(Z>1?"-"+Z:"")}function y3($){let Z=typeof $.options.clobberPrefix==="string"?$.options.clobberPrefix:"user-content-",G=$.options.footnoteBackContent||uO,J=$.options.footnoteBackLabel||pO,X=$.options.footnoteLabel||"Footnotes",Y=$.options.footnoteLabelTagName||"h2",H=$.options.footnoteLabelProperties||{className:["sr-only"]},Q=[],q=-1;while(++q<$.footnoteOrder.length){let U=$.footnoteById.get($.footnoteOrder[q]);if(!U)continue;let K=$.all(U),W=String(U.identifier).toUpperCase(),z=N0(W.toLowerCase()),L=0,V=[],B=$.footnoteCounts.get(W);while(B!==void 0&&++L<=B){if(V.length>0)V.push({type:"text",value:" "});let E=typeof G==="string"?G:G(q,L);if(typeof E==="string")E={type:"text",value:E};V.push({type:"element",tagName:"a",properties:{href:"#"+Z+"fnref-"+z+(L>1?"-"+L:""),dataFootnoteBackref:"",ariaLabel:typeof J==="string"?J:J(q,L),className:["data-footnote-backref"]},children:Array.isArray(E)?E:[E]})}let I=K[K.length-1];if(I&&I.type==="element"&&I.tagName==="p"){let E=I.children[I.children.length-1];if(E&&E.type==="text")E.value+=" ";else I.children.push({type:"text",value:" "});I.children.push(...V)}else K.push(...V);let D={type:"element",tagName:"li",properties:{id:Z+"fn-"+z},children:$.wrap(K,!0)};$.patch(U,D),Q.push(D)}if(Q.length===0)return;return{type:"element",tagName:"section",properties:{dataFootnotes:!0,className:["footnotes"]},children:[{type:"element",tagName:Y,properties:{...k6(H),id:"footnote-label"},children:[{type:"text",value:X}]},{type:"text",value:`
|
|
43
|
-
`},{type:"element",tagName:"ol",properties:{},children:$.wrap(Q,!0)},{type:"text",value:`
|
|
44
|
-
`}]}}var m9=function($){if($===null||$===void 0)return dO;if(typeof $==="function")return f9($);if(typeof $==="object")return Array.isArray($)?lO($):iO($);if(typeof $==="string")return cO($);throw Error("Expected function, string, or object as test")};function lO($){let Z=[],G=-1;while(++G<$.length)Z[G]=m9($[G]);return f9(J);function J(...X){let Y=-1;while(++Y<Z.length)if(Z[Y].apply(this,X))return!0;return!1}}function iO($){let Z=$;return f9(G);function G(J){let X=J,Y;for(Y in $)if(X[Y]!==Z[Y])return!1;return!0}}function cO($){return f9(Z);function Z(G){return G&&G.type===$}}function f9($){return Z;function Z(G,J,X){return Boolean(rO(G)&&$.call(this,G,typeof J==="number"?J:void 0,X||void 0))}}function dO(){return!0}function rO($){return $!==null&&typeof $==="object"&&"type"in $}function v3($){return"\x1B[33m"+$+"\x1B[39m"}var x3=[],GJ=!0,u9=!1,JJ="skip";function XJ($,Z,G,J){let X;if(typeof Z==="function"&&typeof G!=="function")J=G,G=Z;else X=Z;let Y=m9(X),H=J?-1:1;Q($,void 0,[])();function Q(q,U,K){let W=q&&typeof q==="object"?q:{};if(typeof W.type==="string"){let L=typeof W.tagName==="string"?W.tagName:typeof W.name==="string"?W.name:void 0;Object.defineProperty(z,"name",{value:"node ("+v3(q.type+(L?"<"+L+">":""))+")"})}return z;function z(){let L=x3,V,B,I;if(!Z||Y(q,U,K[K.length-1]||void 0)){if(L=aO(G(q,K)),L[0]===u9)return L}if("children"in q&&q.children){let D=q;if(D.children&&L[0]!==JJ){B=(J?D.children.length:-1)+H,I=K.concat(D);while(B>-1&&B<D.children.length){let E=D.children[B];if(V=Q(E,B,I)(),V[0]===u9)return V;B=typeof V[1]==="number"?V[1]:B+H}}}return L}}}function aO($){if(Array.isArray($))return $;if(typeof $==="number")return[GJ,$];return $===null||$===void 0?x3:[$]}function t7($,Z,G,J){let X,Y,H;if(typeof Z==="function"&&typeof G!=="function")Y=void 0,H=Z,X=G;else Y=Z,H=G,X=J;XJ($,Y,Q,X);function Q(q,U){let K=U[U.length-1],W=K?K.children.indexOf(q):void 0;return H(q,W,K)}}var YJ={}.hasOwnProperty,nO={};function b3($,Z){let G=Z||nO,J=new Map,X=new Map,Y=new Map,H={...C3,...G.handlers},Q={all:U,applyData:oO,definitionById:J,footnoteById:X,footnoteCounts:Y,footnoteOrder:[],handlers:H,one:q,options:G,patch:sO,wrap:eO};return t7($,function(K){if(K.type==="definition"||K.type==="footnoteDefinition"){let W=K.type==="definition"?J:X,z=String(K.identifier).toUpperCase();if(!W.has(z))W.set(z,K)}}),Q;function q(K,W){let z=K.type,L=Q.handlers[z];if(YJ.call(Q.handlers,z)&&L)return L(Q,K,W);if(Q.options.passThrough&&Q.options.passThrough.includes(z)){if("children"in K){let{children:B,...I}=K,D=k6(I);return D.children=Q.all(K),D}return k6(K)}return(Q.options.unknownHandler||tO)(Q,K,W)}function U(K){let W=[];if("children"in K){let z=K.children,L=-1;while(++L<z.length){let V=Q.one(z[L],K);if(V){if(L&&z[L-1].type==="break"){if(!Array.isArray(V)&&V.type==="text")V.value=h3(V.value);if(!Array.isArray(V)&&V.type==="element"){let B=V.children[0];if(B&&B.type==="text")B.value=h3(B.value)}}if(Array.isArray(V))W.push(...V);else W.push(V)}}}return W}}function sO($,Z){if($.position)Z.position=jG($)}function oO($,Z){let G=Z;if($&&$.data){let J=$.data.hName,X=$.data.hChildren,Y=$.data.hProperties;if(typeof J==="string")if(G.type==="element")G.tagName=J;else{let H="children"in G?G.children:[G];G={type:"element",tagName:J,properties:{},children:H}}if(G.type==="element"&&Y)Object.assign(G.properties,k6(Y));if("children"in G&&G.children&&X!==null&&X!==void 0)G.children=X}return G}function tO($,Z){let G=Z.data||{},J="value"in Z&&!(YJ.call(G,"hProperties")||YJ.call(G,"hChildren"))?{type:"text",value:Z.value}:{type:"element",tagName:"div",properties:{},children:$.all(Z)};return $.patch(Z,J),$.applyData(Z,J)}function eO($,Z){let G=[],J=-1;if(Z)G.push({type:"text",value:`
|
|
45
|
-
`});while(++J<$.length){if(J)G.push({type:"text",value:`
|
|
46
|
-
`});G.push($[J])}if(Z&&$.length>0)G.push({type:"text",value:`
|
|
47
|
-
`});return G}function h3($){let Z=0,G=$.charCodeAt(Z);while(G===9||G===32)Z++,G=$.charCodeAt(Z);return $.slice(Z)}function p9($,Z){let G=b3($,Z),J=G.one($,void 0),X=y3(G),Y=Array.isArray(J)?{type:"root",children:J}:J||{type:"root",children:[]};if(X)a1("children"in Y),Y.children.push({type:"text",value:`
|
|
48
|
-
`},X);return Y}function l9($,Z){if($&&"run"in $)return async function(G,J){let X=p9(G,{file:J,...Z});await $.run(X,J)};return function(G,J){return p9(G,{file:J,...$||Z})}}function HJ($){if($)throw $}var r9=e(d3(),1);function e7($){if(typeof $!=="object"||$===null)return!1;let Z=Object.getPrototypeOf($);return(Z===null||Z===Object.prototype||Object.getPrototypeOf(Z)===null)&&!(Symbol.toStringTag in $)&&!(Symbol.iterator in $)}function QJ(){let $=[],Z={run:G,use:J};return Z;function G(...X){let Y=-1,H=X.pop();if(typeof H!=="function")throw TypeError("Expected function as last argument, not "+H);Q(null,...X);function Q(q,...U){let K=$[++Y],W=-1;if(q){H(q);return}while(++W<X.length)if(U[W]===null||U[W]===void 0)U[W]=X[W];if(X=U,K)r3(K,Q)(...U);else H(null,...U)}}function J(X){if(typeof X!=="function")throw TypeError("Expected `middelware` to be a function, not "+X);return $.push(X),Z}}function r3($,Z){let G;return J;function J(...H){let Q=$.length>H.length,q;if(Q)H.push(X);try{q=$.apply(this,H)}catch(U){let K=U;if(Q&&G)throw K;return X(K)}if(!Q)if(q&&q.then&&typeof q.then==="function")q.then(Y,X);else if(q instanceof Error)X(q);else Y(q)}function X(H,...Q){if(!G)G=!0,Z(H,...Q)}function Y(H){X(null,H)}}var B0=e(require("node:path"));var qJ=e(require("node:process"));var KJ=require("node:url");function c9($){return Boolean($!==null&&typeof $==="object"&&"href"in $&&$.href&&"protocol"in $&&$.protocol&&$.auth===void 0)}var UJ=["history","path","basename","stem","extname","dirname"];class m6{constructor($){let Z;if(!$)Z={};else if(c9($))Z={path:$};else if(typeof $==="string"||$M($))Z={value:$};else Z=$;this.cwd="cwd"in Z?"":qJ.default.cwd(),this.data={},this.history=[],this.messages=[],this.value,this.map,this.result,this.stored;let G=-1;while(++G<UJ.length){let X=UJ[G];if(X in Z&&Z[X]!==void 0&&Z[X]!==null)this[X]=X==="history"?[...Z[X]]:Z[X]}let J;for(J in Z)if(!UJ.includes(J))this[J]=Z[J]}get basename(){return typeof this.path==="string"?B0.default.basename(this.path):void 0}set basename($){LJ($,"basename"),WJ($,"basename"),this.path=B0.default.join(this.dirname||"",$)}get dirname(){return typeof this.path==="string"?B0.default.dirname(this.path):void 0}set dirname($){a3(this.basename,"dirname"),this.path=B0.default.join($||"",this.basename)}get extname(){return typeof this.path==="string"?B0.default.extname(this.path):void 0}set extname($){if(WJ($,"extname"),a3(this.dirname,"extname"),$){if($.codePointAt(0)!==46)throw Error("`extname` must start with `.`");if($.includes(".",1))throw Error("`extname` cannot contain multiple dots")}this.path=B0.default.join(this.dirname,this.stem+($||""))}get path(){return this.history[this.history.length-1]}set path($){if(c9($))$=KJ.fileURLToPath($);if(LJ($,"path"),this.path!==$)this.history.push($)}get stem(){return typeof this.path==="string"?B0.default.basename(this.path,this.extname):void 0}set stem($){LJ($,"stem"),WJ($,"stem"),this.path=B0.default.join(this.dirname||"",$+(this.extname||""))}fail($,Z,G){let J=this.message($,Z,G);throw J.fatal=!0,J}info($,Z,G){let J=this.message($,Z,G);return J.fatal=void 0,J}message($,Z,G){let J=new D1($,Z,G);if(this.path)J.name=this.path+":"+J.name,J.file=this.path;return J.fatal=!1,this.messages.push(J),J}toString($){if(this.value===void 0)return"";if(typeof this.value==="string")return this.value;return new TextDecoder($||void 0).decode(this.value)}}function WJ($,Z){if($&&$.includes(B0.default.sep))throw Error("`"+Z+"` cannot be a path: did not expect `"+B0.default.sep+"`")}function LJ($,Z){if(!$)throw Error("`"+Z+"` cannot be empty")}function a3($,Z){if(!$)throw Error("Setting `"+Z+"` requires `path` to be set too")}function $M($){return Boolean($&&typeof $==="object"&&"byteLength"in $&&"byteOffset"in $)}var n3=function($){let J=this.constructor.prototype,X=J[$],Y=function(){return X.apply(Y,arguments)};return Object.setPrototypeOf(Y,J),Y};var ZM={}.hasOwnProperty;class BJ extends n3{constructor(){super("copy");this.Compiler=void 0,this.Parser=void 0,this.attachers=[],this.compiler=void 0,this.freezeIndex=-1,this.frozen=void 0,this.namespace={},this.parser=void 0,this.transformers=QJ()}copy(){let $=new BJ,Z=-1;while(++Z<this.attachers.length){let G=this.attachers[Z];$.use(...G)}return $.data(r9.default(!0,{},this.namespace)),$}data($,Z){if(typeof $==="string"){if(arguments.length===2)return NJ("data",this.frozen),this.namespace[$]=Z,this;return ZM.call(this.namespace,$)&&this.namespace[$]||void 0}if($)return NJ("data",this.frozen),this.namespace=$,this;return this.namespace}freeze(){if(this.frozen)return this;let $=this;while(++this.freezeIndex<this.attachers.length){let[Z,...G]=this.attachers[this.freezeIndex];if(G[0]===!1)continue;if(G[0]===!0)G[0]=void 0;let J=Z.call($,...G);if(typeof J==="function")this.transformers.use(J)}return this.frozen=!0,this.freezeIndex=Number.POSITIVE_INFINITY,this}parse($){this.freeze();let Z=d9($),G=this.parser||this.Parser;return zJ("parse",G),G(String(Z),Z)}process($,Z){let G=this;return this.freeze(),zJ("process",this.parser||this.Parser),AJ("process",this.compiler||this.Compiler),Z?J(void 0,Z):new Promise(J);function J(X,Y){let H=d9($),Q=G.parse(H);G.run(Q,H,function(U,K,W){if(U||!K||!W)return q(U);let z=K,L=G.stringify(z,W);if(JM(L))W.value=L;else W.result=L;q(U,W)});function q(U,K){if(U||!K)Y(U);else if(X)X(K);else a1(Z,"`done` is defined if `resolve` is not"),Z(void 0,K)}}}processSync($){let Z=!1,G;return this.freeze(),zJ("processSync",this.parser||this.Parser),AJ("processSync",this.compiler||this.Compiler),this.process($,J),o3("processSync","process",Z),a1(G,"we either bailed on an error or have a tree"),G;function J(X,Y){Z=!0,HJ(X),G=Y}}run($,Z,G){s3($),this.freeze();let J=this.transformers;if(!G&&typeof Z==="function")G=Z,Z=void 0;return G?X(void 0,G):new Promise(X);function X(Y,H){a1(typeof Z!=="function","`file` can’t be a `done` anymore, we checked");let Q=d9(Z);J.run($,Q,q);function q(U,K,W){let z=K||$;if(U)H(U);else if(Y)Y(z);else a1(G,"`done` is defined if `resolve` is not"),G(void 0,z,W)}}}runSync($,Z){let G=!1,J;return this.run($,Z,X),o3("runSync","run",G),a1(J,"we either bailed on an error or have a tree"),J;function X(Y,H){HJ(Y),J=H,G=!0}}stringify($,Z){this.freeze();let G=d9(Z),J=this.compiler||this.Compiler;return AJ("stringify",J),s3($),J($,G)}use($,...Z){let G=this.attachers,J=this.namespace;if(NJ("use",this.frozen),$===null||$===void 0);else if(typeof $==="function")Q($,Z);else if(typeof $==="object")if(Array.isArray($))H($);else Y($);else throw TypeError("Expected usable value, not `"+$+"`");return this;function X(q){if(typeof q==="function")Q(q,[]);else if(typeof q==="object")if(Array.isArray(q)){let[U,...K]=q;Q(U,K)}else Y(q);else throw TypeError("Expected usable value, not `"+q+"`")}function Y(q){if(!("plugins"in q)&&!("settings"in q))throw Error("Expected usable value but received an empty preset, which is probably a mistake: presets typically come with `plugins` and sometimes with `settings`, but this has neither");if(H(q.plugins),q.settings)J.settings=r9.default(!0,J.settings,q.settings)}function H(q){let U=-1;if(q===null||q===void 0);else if(Array.isArray(q))while(++U<q.length){let K=q[U];X(K)}else throw TypeError("Expected a list of plugins, not `"+q+"`")}function Q(q,U){let K=-1,W=-1;while(++K<G.length)if(G[K][0]===q){W=K;break}if(W===-1)G.push([q,...U]);else if(U.length>0){let[z,...L]=U,V=G[W][1];if(e7(V)&&e7(z))z=r9.default(!0,V,z);G[W]=[q,z,...L]}}}}var VJ=new BJ().freeze();function zJ($,Z){if(typeof Z!=="function")throw TypeError("Cannot `"+$+"` without `parser`")}function AJ($,Z){if(typeof Z!=="function")throw TypeError("Cannot `"+$+"` without `compiler`")}function NJ($,Z){if(Z)throw Error("Cannot call `"+$+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function s3($){if(!e7($)||typeof $.type!=="string")throw TypeError("Expected node, got `"+$+"`")}function o3($,Z,G){if(!G)throw Error("`"+$+"` finished async. Use `"+Z+"` instead")}function d9($){return GM($)?$:new m6($)}function GM($){return Boolean($&&typeof $==="object"&&"message"in $&&"messages"in $)}function JM($){return typeof $==="string"||XM($)}function XM($){return Boolean($&&typeof $==="object"&&"byteLength"in $&&"byteOffset"in $)}var YM="https://github.com/remarkjs/react-markdown/blob/main/changelog.md",t3=[],e3={allowDangerousHtml:!0},HM=/^(https?|ircs?|mailto|xmpp)$/i,QM=[{from:"astPlugins",id:"remove-buggy-html-in-markdown-parser"},{from:"allowDangerousHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"allowNode",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowElement"},{from:"allowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowedElements"},{from:"className",id:"remove-classname"},{from:"disallowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"disallowedElements"},{from:"escapeHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"includeElementIndex",id:"#remove-includeelementindex"},{from:"includeNodeIndex",id:"change-includenodeindex-to-includeelementindex"},{from:"linkTarget",id:"remove-linktarget"},{from:"plugins",id:"change-plugins-to-remarkplugins",to:"remarkPlugins"},{from:"rawSourcePos",id:"#remove-rawsourcepos"},{from:"renderers",id:"change-renderers-to-components",to:"components"},{from:"source",id:"change-source-to-children",to:"children"},{from:"sourcePos",id:"#remove-sourcepos"},{from:"transformImageUri",id:"#add-urltransform",to:"urlTransform"},{from:"transformLinkUri",id:"#add-urltransform",to:"urlTransform"}];function FJ($){let Z=qM($),G=KM($);return UM(Z.runSync(Z.parse(G),G),$)}function qM($){let Z=$.rehypePlugins||t3,G=$.remarkPlugins||t3,J=$.remarkRehypeOptions?{...$.remarkRehypeOptions,...e3}:e3;return VJ().use(g9).use(G).use(l9,J).use(Z)}function KM($){let Z=$.children||"",G=new m6;if(typeof Z==="string")G.value=Z;else N9("Unexpected value `"+Z+"` for `children` prop, expected `string`");return G}function UM($,Z){let{allowedElements:G,allowElement:J,components:X,disallowedElements:Y,skipHtml:H,unwrapDisallowed:Q}=Z,q=Z.urlTransform||ZK;for(let K of QM)if(Object.hasOwn(Z,K.from))N9("Unexpected `"+K.from+"` prop, "+(K.to?"use `"+K.to+"` instead":"remove it")+" (see <"+YM+"#"+K.id+"> for more info)");if(G&&Y)N9("Unexpected combined `allowedElements` and `disallowedElements`, expected one or the other");return t7($,U),CG($,{Fragment:f6.Fragment,components:X,ignoreInvalidStyle:!0,jsx:f6.jsx,jsxs:f6.jsxs,passKeys:!0,passNode:!0});function U(K,W,z){if(K.type==="raw"&&z&&typeof W==="number"){if(H)z.children.splice(W,1);else z.children[W]={type:"text",value:K.value};return W}if(K.type==="element"){let L;for(L in f7)if(Object.hasOwn(f7,L)&&Object.hasOwn(K.properties,L)){let V=K.properties[L],B=f7[L];if(B===null||B.includes(K.tagName))K.properties[L]=q(String(V||""),L,K)}}if(K.type==="element"){let L=G?!G.includes(K.tagName):Y?Y.includes(K.tagName):!1;if(!L&&J&&typeof W==="number")L=!J(K,W,z);if(L&&z&&typeof W==="number"){if(Q&&K.children)z.children.splice(W,1,...K.children);else z.children.splice(W,1);return W}}}}function ZK($){let Z=$.indexOf(":"),G=$.indexOf("?"),J=$.indexOf("#"),X=$.indexOf("/");if(Z===-1||X!==-1&&Z>X||G!==-1&&Z>G||J!==-1&&Z>J||HM.test($.slice(0,Z)))return $;return""}var GK=e(require("rehype-highlight")),zm=require("highlight.js/styles/github.css"),a9=require("react"),RJ=require("react/jsx-dev-runtime");function WM({children:$}){let[Z,G]=a9.useState($);return a9.useEffect(()=>{G($)},[$]),RJ.jsxDEV("div",{className:"max-w-full first:mt-0",children:RJ.jsxDEV(FJ,{rehypePlugins:[GK.default],children:Z},void 0,!1,void 0,this)},void 0,!1,void 0,this)}var JK=WM;var OJ=require("react/jsx-dev-runtime"),LM=()=>OJ.jsxDEV("svg",{width:"30",height:"30",viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",children:OJ.jsxDEV("path",{d:"m 8 1 c -1.65625 0 -3 1.34375 -3 3 s 1.34375 3 3 3 s 3 -1.34375 3 -3 s -1.34375 -3 -3 -3 z m -1.5 7 c -2.492188 0 -4.5 2.007812 -4.5 4.5 v 0.5 c 0 1.109375 0.890625 2 2 2 h 8 c 1.109375 0 2 -0.890625 2 -2 v -0.5 c 0 -2.492188 -2.007812 -4.5 -4.5 -4.5 z m 0 0",fill:"#2e3436"},void 0,!1,void 0,this)},void 0,!1,void 0,this),XK=LM;var $8=require("react/jsx-dev-runtime");function zM({username:$,avatar:Z}){return $8.jsxDEV("div",{className:"w-[30px]",children:$8.jsxDEV("div",{className:"relative flex size-[30px] items-center justify-center rounded-sm p-1 text-white",children:Z?$8.jsxDEV("img",{src:Z,className:"absolute inset-0 rounded",alt:$},void 0,!1,void 0,this):$8.jsxDEV(XK,{},void 0,!1,void 0,this)},void 0,!1,void 0,this)},void 0,!1,void 0,this)}var MJ=zM;var q0=require("react/jsx-dev-runtime"),AM=({message:$,handleOptionClick:Z,setUiAjaxConfiguration:G})=>{let[J,X]=n9.useState(!1);return n9.useEffect(()=>{let Y=setTimeout(()=>{if(J)X(!1)},1000);return()=>clearTimeout(Y)},[J]),q0.jsxDEV("div",{className:"group w-full border-b border-black/10",id:$.id,children:q0.jsxDEV("div",{className:`flex gap-4 p-4 text-base md:max-w-2xl md:gap-6 md:py-6 lg:max-w-3xl xl:max-w-5xl ${$.align==="center"?"m-auto":""} ${$.align==="right"?"ml-auto justify-end":""} ${$.align==="left"?"mr-auto":""} `,children:[($.align==="left"||$.align==="center")&&q0.jsxDEV("div",{className:"relative flex shrink-0 flex-col items-end",children:q0.jsxDEV(MJ,{username:$.username,avatar:$.avatar},void 0,!1,void 0,this)},void 0,!1,void 0,this),q0.jsxDEV("div",{className:"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]",children:[q0.jsxDEV("div",{className:`markdown light prose w-full break-words dark:prose-invert first:mt-0 ${$.align==="right"?"flex justify-end self-end":""}`,children:typeof $.content==="string"?$.parseMode.toLowerCase()==="markdown"?q0.jsxDEV(JK,{children:$.content},Date.now()+Math.random(),!1,void 0,this):$.parseMode.toLowerCase()==="html"?A9($.content):$.content:q0.jsxDEV(N5,{uiConfig:$.content,setUiAjaxConfiguration:G},void 0,!1,void 0,this)},void 0,!1,void 0,this),q0.jsxDEV("div",{className:"flex flex-row flex-wrap justify-start gap-1",children:$.options.map((Y,H)=>q0.jsxDEV(r8,{onClickOption:Z,option:Y},H,!1,void 0,this))},void 0,!1,void 0,this)]},void 0,!0,void 0,this),$.align==="right"&&q0.jsxDEV("div",{className:"relative flex shrink-0 flex-col items-end",children:q0.jsxDEV(MJ,{username:$.username,avatar:$.avatar},void 0,!1,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)},YK=AM;var p0=require("react"),DJ=require("react/jsx-dev-runtime"),NM=p0.forwardRef(({name:$,handleOptionClick:Z,defaultMessages:G,sx:J,setUiAjaxConfiguration:X},Y)=>{let[H,Q]=p0.useState(G),q=p0.useRef(null),U=()=>{if(q.current)q.current.scrollTop=q.current.scrollHeight};return p0.useEffect(()=>{U()},[H]),p0.useImperativeHandle(Y,()=>({setMessages:(K)=>Q(K),addMessage:(K)=>Q((W)=>[...W,K]),scrollToBottom:U})),DJ.jsxDEV("div",{id:$+"_messages",className:"flex flex-col items-center overflow-y-scroll",style:J,ref:q,children:H.map((K)=>DJ.jsxDEV(YK,{message:K,handleOptionClick:Z,setUiAjaxConfiguration:X},K.id,!1,void 0,this))},void 0,!1,void 0,this)}),HK=NM;var X5=require("react"),Z8=require("react/jsx-dev-runtime"),BM=({data:$,setUiAjaxConfiguration:Z})=>{let{name:G,defaultValue:J,defaultMessages:X,defaultOptions:Y,isArea:H,fileAccept:Q,placeholder:q,icons:U,optionsPosition:K,sxMap:W={container:{},chatInput:{},messages:{}},depsNames:z,pathname:L,kwargs:V,useSocketioSupport:B,useCentrifugeSupport:I,centrifugeChannel:D}=$,E=X5.useRef(null),R=X5.useRef(null),[P,g]=X5.useState(!1),M=X5.useMemo(()=>f8(Z,V,z,L),[Z,V,z,L]);X5.useEffect(()=>{if(P)requestAnimationFrame(()=>{M(),g(!1)})},[P]);let h=(_)=>{if(E.current)E.current.setValue(_),g(!0)},s=()=>{if(E.current)E.current.clear()},i=(_)=>{if(E.current)E.current.setOptions(_.options)},o=(_)=>{if(R.current)R.current.addMessage(_.message)},a=(_)=>{if(R.current)R.current.setMessages(_.messages)},t=()=>{g(!0)};return Z8.jsxDEV(h0,{card:"ChatCard",data:$,methods:{clearInput:s,setOptions:i,addMessage:o,setMessages:a},useSocketioSupport:B,useCentrifugeSupport:I,centrifugeChannel:D,children:Z8.jsxDEV("div",{className:"flex size-full flex-col",style:W.container,children:[Z8.jsxDEV(HK,{ref:R,name:G,defaultMessages:X,sx:W.messages,handleOptionClick:h,setUiAjaxConfiguration:Z},void 0,!1,void 0,this),Z8.jsxDEV(jH,{ref:E,name:G,isArea:H,defaultOptions:Y,placeholder:q,defaultValue:J,fileAccept:Q,sx:W.chatInput,handleSendMessage:t,handleOptionClick:h,optionsPosition:K,icons:U},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)},IJ=BM;var HL=e(w2(),1);function D$($){if(!$)return{};let Z={...$};if("animationName"in Z&&typeof Z.animationName==="object"){let G="radiumAnimation_"+Math.random().toString(36).substring(2,8);Z.animationName=HL.default.keyframes(Z.animationName,G)}return Z}var QL=require("react");var H8=require("react/jsx-dev-runtime"),CE=({data:$,setUiAjaxConfiguration:Z})=>{let{name:G,title:J,iconUrl:X,iconPosition:Y,sx:H,pathname:Q,kwargs:q,depsNames:U}=$,K=QL.useMemo(()=>f8(Z,q,U,Q),[Z,q,U,Q]);return H8.jsxDEV(h0,{card:"AjaxButtonCard",data:$,children:H8.jsxDEV("button",{id:G,className:"box-border flex min-h-12 w-full min-w-min cursor-pointer items-center justify-center rounded-[16px] border border-[#080318] bg-white text-center font-[TTForsTrial] text-[#080318] hover:bg-neutral-300",value:G,onClick:()=>K(),style:D$(H),type:"button",children:[X&&Y==="start"&&H8.jsxDEV("img",{src:X,alt:""},void 0,!1,void 0,this),A9(J),X&&Y==="end"&&H8.jsxDEV("img",{src:X,alt:""},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)},E2=CE;var qL=e(w2(),1);var I$=require("react/jsx-dev-runtime"),gE=({data:$,content:Z,setUiAjaxConfiguration:G})=>{let{name:J,sx:X}=$;return I$.jsxDEV(h0,{card:J,data:$,children:I$.jsxDEV("div",{style:D$(X),id:J,children:Z.map((Y,H)=>{return I$.jsxDEV(N5,{uiConfig:Y,setUiAjaxConfiguration:G},`children-${H}`,!1,void 0,this)})},void 0,!1,void 0,this)},void 0,!1,void 0,this)},j2=qL.default(gE);var S2=require("react/jsx-dev-runtime"),yE=({data:$,content:Z,setUiAjaxConfiguration:G})=>{let{name:J}=$;return S2.jsxDEV(h0,{card:J,data:$,children:Z.map((X,Y)=>{return S2.jsxDEV(N5,{uiConfig:X,setUiAjaxConfiguration:G},`children-${Y}`,!1,void 0,this)})},void 0,!1,void 0,this)},_2=yE;
|
|
34
|
+
`).map((Z)=>JSON.parse(Z))}applyDeltaIfNeeded($,Z){let J,G;if($.delta){let Y=_z(Z,new TextEncoder().encode($.data));J=JSON.parse(new TextDecoder().decode(Y)),G=Y}else J=JSON.parse($.data),G=new TextEncoder().encode($.data);return{newData:J,newPrevValue:G}}}var yz={headers:{},token:"",getToken:null,data:null,getData:null,debug:!1,name:"js",version:"",fetch:null,readableStream:null,websocket:null,eventsource:null,sockjs:null,sockjsOptions:{},emulationEndpoint:"/emulation",minReconnectDelay:500,maxReconnectDelay:20000,timeout:5000,maxServerPingDelay:1e4,networkEventTarget:null};class n1 extends Error{constructor($){super($);this.name=this.constructor.name}}class a5 extends bZ{constructor($,Z){super();if(this._reconnectTimeout=null,this._refreshTimeout=null,this._serverPingTimeout=null,this.state=a.Disconnected,this._transportIsOpen=!1,this._endpoint=$,this._emulation=!1,this._transports=[],this._currentTransportIndex=0,this._triedAllTransports=!1,this._transportWasOpen=!1,this._transport=null,this._transportId=0,this._deviceWentOffline=!1,this._transportClosed=!0,this._codec=new I9,this._reconnecting=!1,this._reconnectTimeout=null,this._reconnectAttempts=0,this._client=null,this._session="",this._node="",this._subs={},this._serverSubs={},this._commandId=0,this._commands=[],this._batching=!1,this._refreshRequired=!1,this._refreshTimeout=null,this._callbacks={},this._token="",this._data=null,this._dispatchPromise=Promise.resolve(),this._serverPing=0,this._serverPingTimeout=null,this._sendPong=!1,this._promises={},this._promiseId=0,this._debugEnabled=!1,this._networkEventsSet=!1,this._config=Object.assign(Object.assign({},yz),Z),this._configure(),this._debugEnabled)this.on("state",(J)=>{this._debug("client state",J.oldState,"->",J.newState)}),this.on("error",(J)=>{this._debug("client error",J)});else this.on("error",function(){Function.prototype()})}newSubscription($,Z){if(this.getSubscription($)!==null)throw Error("Subscription to the channel "+$+" already exists");let J=new uZ(this,$,Z);return this._subs[$]=J,J}getSubscription($){return this._getSub($)}removeSubscription($){if(!$)return;if($.state!==V1.Unsubscribed)$.unsubscribe();this._removeSubscription($)}subscriptions(){return this._subs}ready($){return K1(this,void 0,void 0,function*(){switch(this.state){case a.Disconnected:throw{code:b.clientDisconnected,message:"client disconnected"};case a.Connected:return;default:return new Promise((Z,J)=>{let G={resolve:Z,reject:J};if($)G.timeout=setTimeout(()=>{J({code:b.timeout,message:"timeout"})},$);this._promises[this._nextPromiseId()]=G})}})}connect(){if(this._isConnected()){this._debug("connect called when already connected");return}if(this._isConnecting()){this._debug("connect called when already connecting");return}this._debug("connect called"),this._reconnectAttempts=0,this._startConnecting()}disconnect(){this._disconnect(n5.disconnectCalled,"disconnect called",!1)}setToken($){this._token=$}setData($){this._data=$}setHeaders($){this._config.headers=$}send($){return K1(this,void 0,void 0,function*(){let Z={send:{data:$}};if(yield this._methodCall(),!this._transportSendCommands([Z]))throw this._createErrorObject(b.transportWriteError,"transport write error")})}rpc($,Z){return K1(this,void 0,void 0,function*(){let J={rpc:{method:$,data:Z}};return yield this._methodCall(),{data:(yield this._callPromise(J,(Y)=>Y.rpc)).data}})}publish($,Z){return K1(this,void 0,void 0,function*(){let J={publish:{channel:$,data:Z}};return yield this._methodCall(),yield this._callPromise(J,()=>({})),{}})}history($,Z){return K1(this,void 0,void 0,function*(){let J={history:this._getHistoryRequest($,Z)};yield this._methodCall();let G=yield this._callPromise(J,(X)=>X.history),Y=[];if(G.publications)for(let X=0;X<G.publications.length;X++)Y.push(this._getPublicationContext($,G.publications[X]));return{publications:Y,epoch:G.epoch||"",offset:G.offset||0}})}presence($){return K1(this,void 0,void 0,function*(){let Z={presence:{channel:$}};yield this._methodCall();let G=(yield this._callPromise(Z,(Y)=>Y.presence)).presence;for(let Y in G)if(Object.prototype.hasOwnProperty.call(G,Y)){let X=G[Y],Q=X.conn_info,z=X.chan_info;if(Q)X.connInfo=Q;if(z)X.chanInfo=z}return{clients:G}})}presenceStats($){return K1(this,void 0,void 0,function*(){let Z={presence_stats:{channel:$}};yield this._methodCall();let J=yield this._callPromise(Z,(G)=>{return G.presence_stats});return{numUsers:J.num_users,numClients:J.num_clients}})}startBatching(){this._batching=!0}stopBatching(){let $=this;Promise.resolve().then(function(){Promise.resolve().then(function(){$._batching=!1,$._flush()})})}_debug(...$){if(!this._debugEnabled)return;jz("debug",$)}_codecName(){return this._codec.name()}_formatOverride(){return}_configure(){if(!("Promise"in globalThis))throw Error("Promise polyfill required");if(!this._endpoint)throw Error("endpoint configuration required");if(this._config.token!==null)this._token=this._config.token;if(this._config.data!==null)this._data=this._config.data;if(this._codec=new I9,this._formatOverride(),this._config.debug===!0||typeof localStorage<"u"&&typeof localStorage.getItem==="function"&&localStorage.getItem("centrifuge.debug"))this._debugEnabled=!0;if(this._debug("config",this._config),typeof this._endpoint==="string");else if(Array.isArray(this._endpoint)){this._transports=this._endpoint,this._emulation=!0;for(let $ in this._transports)if(this._transports.hasOwnProperty($)){let Z=this._transports[$];if(!Z.endpoint||!Z.transport)throw Error("malformed transport configuration");let J=Z.transport;if(["websocket","http_stream","sse","sockjs","webtransport"].indexOf(J)<0)throw Error("unsupported transport name: "+J)}}else throw Error("unsupported url configuration type: only string or array of objects are supported")}_setState($){if(this.state!==$){this._reconnecting=!1;let Z=this.state;return this.state=$,this.emit("state",{newState:$,oldState:Z}),!0}return!1}_isDisconnected(){return this.state===a.Disconnected}_isConnecting(){return this.state===a.Connecting}_isConnected(){return this.state===a.Connected}_nextCommandId(){return++this._commandId}_setNetworkEvents(){if(this._networkEventsSet)return;let $=null;if(this._config.networkEventTarget!==null)$=this._config.networkEventTarget;else if(typeof globalThis.addEventListener<"u")$=globalThis;if($)$.addEventListener("offline",()=>{if(this._debug("offline event triggered"),this.state===a.Connected||this.state===a.Connecting)this._disconnect(M0.transportClosed,"transport closed",!0),this._deviceWentOffline=!0}),$.addEventListener("online",()=>{if(this._debug("online event triggered"),this.state!==a.Connecting)return;if(this._deviceWentOffline&&!this._transportClosed)this._deviceWentOffline=!1,this._transportClosed=!0;this._clearReconnectTimeout(),this._startReconnecting()}),this._networkEventsSet=!0}_getReconnectDelay(){let $=u6(this._reconnectAttempts,this._config.minReconnectDelay,this._config.maxReconnectDelay);return this._reconnectAttempts+=1,$}_clearOutgoingRequests(){for(let $ in this._callbacks)if(this._callbacks.hasOwnProperty($)){let Z=this._callbacks[$];clearTimeout(Z.timeout);let J=Z.errback;if(!J)continue;J({error:this._createErrorObject(b.connectionClosed,"connection closed")})}this._callbacks={}}_clearConnectedState(){this._client=null,this._clearServerPingTimeout(),this._clearRefreshTimeout();for(let $ in this._subs){if(!this._subs.hasOwnProperty($))continue;let Z=this._subs[$];if(Z.state===V1.Subscribed)Z._setSubscribing(b6.transportClosed,"transport closed")}for(let $ in this._serverSubs)if(this._serverSubs.hasOwnProperty($))this.emit("subscribing",{channel:$})}_handleWriteError($){for(let Z of $){let J=Z.id;if(!(J in this._callbacks))continue;let G=this._callbacks[J];clearTimeout(this._callbacks[J].timeout),delete this._callbacks[J];let Y=G.errback;Y({error:this._createErrorObject(b.transportWriteError,"transport write error")})}}_transportSendCommands($){if(!$.length)return!0;if(!this._transport)return!1;try{this._transport.send(this._codec.encodeCommands($),this._session,this._node)}catch(Z){return this._debug("error writing commands",Z),this._handleWriteError($),!1}return!0}_initializeTransport(){let $;if(this._config.websocket!==null)$=this._config.websocket;else if(!(typeof globalThis.WebSocket!=="function"&&typeof globalThis.WebSocket!=="object"))$=globalThis.WebSocket;let Z=null;if(this._config.sockjs!==null)Z=this._config.sockjs;else if(typeof globalThis.SockJS<"u")Z=globalThis.SockJS;let J=null;if(this._config.eventsource!==null)J=this._config.eventsource;else if(typeof globalThis.EventSource<"u")J=globalThis.EventSource;let G=null;if(this._config.fetch!==null)G=this._config.fetch;else if(typeof globalThis.fetch<"u")G=globalThis.fetch;let Y=null;if(this._config.readableStream!==null)Y=this._config.readableStream;else if(typeof globalThis.ReadableStream<"u")Y=globalThis.ReadableStream;if(!this._emulation){if(vz(this._endpoint,"http"))throw Error("Provide explicit transport endpoints configuration in case of using HTTP (i.e. using array of TransportEndpoint instead of a single string), or use ws(s):// scheme in an endpoint if you aimed using WebSocket transport");else if(this._debug("client will use websocket"),this._transport=new R9(this._endpoint,{websocket:$}),!this._transport.supported())throw Error("WebSocket constructor not found, make sure it is available globally or passed as a dependency in Centrifuge options")}else{if(this._currentTransportIndex>=this._transports.length)this._triedAllTransports=!0,this._currentTransportIndex=0;let W=0;while(!0){if(W>=this._transports.length)throw Error("no supported transport found");let L=this._transports[this._currentTransportIndex],B=L.transport,V=L.endpoint;if(B==="websocket"){if(this._debug("trying websocket transport"),this._transport=new R9(V,{websocket:$}),!this._transport.supported()){this._debug("websocket transport not available"),this._currentTransportIndex++,W++;continue}}else if(B==="webtransport"){if(this._debug("trying webtransport transport"),this._transport=new iZ(V,{webtransport:globalThis.WebTransport,decoder:this._codec,encoder:this._codec}),!this._transport.supported()){this._debug("webtransport transport not available"),this._currentTransportIndex++,W++;continue}}else if(B==="http_stream"){if(this._debug("trying http_stream transport"),this._transport=new cZ(V,{fetch:G,readableStream:Y,emulationEndpoint:this._config.emulationEndpoint,decoder:this._codec,encoder:this._codec}),!this._transport.supported()){this._debug("http_stream transport not available"),this._currentTransportIndex++,W++;continue}}else if(B==="sse"){if(this._debug("trying sse transport"),this._transport=new pZ(V,{eventsource:J,fetch:G,emulationEndpoint:this._config.emulationEndpoint}),!this._transport.supported()){this._debug("sse transport not available"),this._currentTransportIndex++,W++;continue}}else if(B==="sockjs"){if(this._debug("trying sockjs"),this._transport=new lZ(V,{sockjs:Z,sockjsOptions:this._config.sockjsOptions}),!this._transport.supported()){this._debug("sockjs transport not available"),this._currentTransportIndex++,W++;continue}}else throw Error("unknown transport "+B);break}}let X=this,Q=this._transport,z=this._nextTransportId();X._debug("id of transport",z);let H=!1,K=[];if(this._transport.emulation()){let W=X._sendConnect(!0);K.push(W)}this._setNetworkEvents();let U=this._codec.encodeCommands(K);this._transportClosed=!1;let O;O=setTimeout(function(){Q.close()},this._config.timeout),this._transport.initialize(this._codecName(),{onOpen:function(){if(O)clearTimeout(O),O=null;if(X._transportId!=z){X._debug("open callback from non-actual transport"),Q.close();return}if(H=!0,X._debug(Q.subName(),"transport open"),Q.emulation())return;X._transportIsOpen=!0,X._transportWasOpen=!0,X.startBatching(),X._sendConnect(!1),X._sendSubscribeCommands(),X.stopBatching(),X.emit("__centrifuge_debug:connect_frame_sent",{})},onError:function(W){if(X._transportId!=z){X._debug("error callback from non-actual transport");return}X._debug("transport level error",W)},onClose:function(W){if(O)clearTimeout(O),O=null;if(X._transportId!=z){X._debug("close callback from non-actual transport");return}X._debug(Q.subName(),"transport closed"),X._transportClosed=!0,X._transportIsOpen=!1;let L="connection closed",B=!0,V=0;if(W&&"code"in W&&W.code)V=W.code;if(W&&W.reason)try{let R=JSON.parse(W.reason);L=R.reason,B=R.reconnect}catch(R){if(L=W.reason,V>=3500&&V<4000||V>=4500&&V<5000)B=!1}if(V<3000){if(V===1009)V=n5.messageSizeLimit,L="message size limit exceeded",B=!1;else V=M0.transportClosed,L="transport closed";if(X._emulation&&!X._transportWasOpen){if(X._currentTransportIndex++,X._currentTransportIndex>=X._transports.length)X._triedAllTransports=!0,X._currentTransportIndex=0}}else X._transportWasOpen=!0;if(X._isConnecting()&&!H)X.emit("error",{type:"transport",error:{code:b.transportClosed,message:"transport closed"},transport:Q.name()});X._reconnecting=!1,X._disconnect(V,L,B)},onMessage:function(W){X._dataReceived(W)}},U),X.emit("__centrifuge_debug:transport_initialized",{})}_sendConnect($){let Z=this._constructConnectCommand(),J=this;return this._call(Z,$).then((G)=>{let Y=G.reply.connect;if(J._connectResponse(Y),G.next)G.next()},(G)=>{if(J._connectError(G.error),G.next)G.next()}),Z}_startReconnecting(){if(this._debug("start reconnecting"),!this._isConnecting()){this._debug("stop reconnecting: client not in connecting state");return}if(this._reconnecting){this._debug("reconnect already in progress, return from reconnect routine");return}if(this._transportClosed===!1){this._debug("waiting for transport close");return}this._reconnecting=!0;let $=this._token==="";if(!(this._refreshRequired||$&&this._config.getToken!==null)){if(this._config.getData)this._config.getData().then((G)=>{if(!this._isConnecting())return;this._data=G,this._initializeTransport()}).catch((G)=>this._handleGetDataError(G));else this._initializeTransport();return}let J=this;this._getToken().then(function(G){if(!J._isConnecting())return;if(G==null||G==null){J._failUnauthorized();return}if(J._token=G,J._debug("connection token refreshed"),J._config.getData)J._config.getData().then(function(Y){if(!J._isConnecting())return;J._data=Y,J._initializeTransport()}).catch((Y)=>J._handleGetDataError(Y));else J._initializeTransport()}).catch(function(G){if(!J._isConnecting())return;if(G instanceof n1){J._failUnauthorized();return}J.emit("error",{type:"connectToken",error:{code:b.clientConnectToken,message:G!==void 0?G.toString():""}});let Y=J._getReconnectDelay();J._debug("error on getting connection token, reconnect after "+Y+" milliseconds",G),J._reconnecting=!1,J._reconnectTimeout=setTimeout(()=>{J._startReconnecting()},Y)})}_handleGetDataError($){if($ instanceof n1){this._failUnauthorized();return}this.emit("error",{type:"connectData",error:{code:b.badConfiguration,message:($===null||$===void 0?void 0:$.toString())||""}});let Z=this._getReconnectDelay();this._debug("error on getting connect data, reconnect after "+Z+" milliseconds",$),this._reconnecting=!1,this._reconnectTimeout=setTimeout(()=>{this._startReconnecting()},Z)}_connectError($){if(this.state!==a.Connecting)return;if($.code===109)this._refreshRequired=!0;if($.code<100||$.temporary===!0||$.code===109)this.emit("error",{type:"connect",error:$}),this._debug("closing transport due to connect error"),this._disconnect($.code,$.message,!0);else this._disconnect($.code,$.message,!1)}_scheduleReconnect(){if(!this._isConnecting())return;let $=!1;if(this._emulation&&!this._transportWasOpen&&!this._triedAllTransports)$=!0;let Z=this._getReconnectDelay();if($)Z=0;this._debug("reconnect after "+Z+" milliseconds"),this._clearReconnectTimeout(),this._reconnectTimeout=setTimeout(()=>{this._startReconnecting()},Z)}_constructConnectCommand(){let $={};if(this._token)$.token=this._token;if(this._data)$.data=this._data;if(this._config.name)$.name=this._config.name;if(this._config.version)$.version=this._config.version;if(Object.keys(this._config.headers).length>0)$.headers=this._config.headers;let Z={},J=!1;for(let G in this._serverSubs)if(this._serverSubs.hasOwnProperty(G)&&this._serverSubs[G].recoverable){J=!0;let Y={recover:!0};if(this._serverSubs[G].offset)Y.offset=this._serverSubs[G].offset;if(this._serverSubs[G].epoch)Y.epoch=this._serverSubs[G].epoch;Z[G]=Y}if(J)$.subs=Z;return{connect:$}}_getHistoryRequest($,Z){let J={channel:$};if(Z!==void 0){if(Z.since){if(J.since={offset:Z.since.offset},Z.since.epoch)J.since.epoch=Z.since.epoch}if(Z.limit!==void 0)J.limit=Z.limit;if(Z.reverse===!0)J.reverse=!0}return J}_methodCall(){if(this._isConnected())return Promise.resolve();return new Promise(($,Z)=>{let J=setTimeout(function(){Z({code:b.timeout,message:"timeout"})},this._config.timeout);this._promises[this._nextPromiseId()]={timeout:J,resolve:$,reject:Z}})}_callPromise($,Z){return new Promise((J,G)=>{this._call($,!1).then((Y)=>{var X;let Q=Z(Y.reply);J(Q),(X=Y.next)===null||X===void 0||X.call(Y)},(Y)=>{var X;G(Y.error),(X=Y.next)===null||X===void 0||X.call(Y)})})}_dataReceived($){if(this._serverPing>0)this._waitServerPing();let Z=this._codec.decodeReplies($);this._dispatchPromise=this._dispatchPromise.then(()=>{let J;this._dispatchPromise=new Promise((G)=>{J=G}),this._dispatchSynchronized(Z,J)})}_dispatchSynchronized($,Z){let J=Promise.resolve();for(let G in $)if($.hasOwnProperty(G))J=J.then(()=>{return this._dispatchReply($[G])});J=J.then(()=>{Z()})}_dispatchReply($){let Z,J=new Promise((Y)=>{Z=Y});if($===void 0||$===null)return this._debug("dispatch: got undefined or null reply"),Z(),J;let G=$.id;if(G&&G>0)this._handleReply($,Z);else if(!$.push)this._handleServerPing(Z);else this._handlePush($.push,Z);return J}_call($,Z){return new Promise((J,G)=>{if($.id=this._nextCommandId(),this._registerCall($.id,J,G),!Z)this._addCommand($)})}_startConnecting(){if(this._debug("start connecting"),this._setState(a.Connecting))this.emit("connecting",{code:M0.connectCalled,reason:"connect called"});this._client=null,this._startReconnecting()}_disconnect($,Z,J){if(this._isDisconnected())return;this._transportIsOpen=!1;let G=this.state;this._reconnecting=!1;let Y={code:$,reason:Z},X=!1;if(J)X=this._setState(a.Connecting);else X=this._setState(a.Disconnected),this._rejectPromises({code:b.clientDisconnected,message:"disconnected"});if(this._clearOutgoingRequests(),G===a.Connecting)this._clearReconnectTimeout();if(G===a.Connected)this._clearConnectedState();if(X)if(this._isConnecting())this.emit("connecting",Y);else this.emit("disconnected",Y);if(this._transport){this._debug("closing existing transport");let Q=this._transport;this._transport=null,Q.close(),this._transportClosed=!0,this._nextTransportId()}else this._debug("no transport to close");this._scheduleReconnect()}_failUnauthorized(){this._disconnect(n5.unauthorized,"unauthorized",!1)}_getToken(){if(this._debug("get connection token"),!this._config.getToken)return this.emit("error",{type:"configuration",error:{code:b.badConfiguration,message:"token expired but no getToken function set in the configuration"}}),Promise.reject(new n1(""));return this._config.getToken({})}_refresh(){let $=this._client,Z=this;this._getToken().then(function(J){if($!==Z._client)return;if(!J){Z._failUnauthorized();return}if(Z._token=J,Z._debug("connection token refreshed"),!Z._isConnected())return;let G={refresh:{token:Z._token}};Z._call(G,!1).then((Y)=>{let X=Y.reply.refresh;if(Z._refreshResponse(X),Y.next)Y.next()},(Y)=>{if(Z._refreshError(Y.error),Y.next)Y.next()})}).catch(function(J){if(!Z._isConnected())return;if(J instanceof n1){Z._failUnauthorized();return}Z.emit("error",{type:"refreshToken",error:{code:b.clientRefreshToken,message:J!==void 0?J.toString():""}}),Z._refreshTimeout=setTimeout(()=>Z._refresh(),Z._getRefreshRetryDelay())})}_refreshError($){if($.code<100||$.temporary===!0)this.emit("error",{type:"refresh",error:$}),this._refreshTimeout=setTimeout(()=>this._refresh(),this._getRefreshRetryDelay());else this._disconnect($.code,$.message,!1)}_getRefreshRetryDelay(){return u6(0,5000,1e4)}_refreshResponse($){if(this._refreshTimeout)clearTimeout(this._refreshTimeout),this._refreshTimeout=null;if($.expires)this._client=$.client,this._refreshTimeout=setTimeout(()=>this._refresh(),l6($.ttl))}_removeSubscription($){if($===null)return;delete this._subs[$.channel]}_unsubscribe($){if(!this._transportIsOpen)return Promise.resolve();let J={unsubscribe:{channel:$.channel}},G=this;return new Promise((X,Q)=>{this._call(J,!1).then((z)=>{if(X(),z.next)z.next()},(z)=>{if(X(),z.next)z.next();G._disconnect(M0.unsubscribeError,"unsubscribe error",!0)})})}_getSub($,Z){if(Z&&Z>0){for(let G in this._subs)if(this._subs.hasOwnProperty(G)){let Y=this._subs[G];if(Y._id===Z)return Y}return null}let J=this._subs[$];if(!J)return null;return J}_isServerSub($){return this._serverSubs[$]!==void 0}_sendSubscribeCommands(){let $=[];for(let Z in this._subs){if(!this._subs.hasOwnProperty(Z))continue;let J=this._subs[Z];if(J._inflight===!0)continue;if(J.state===V1.Subscribing){let G=J._subscribe();if(G)$.push(G)}}return $}_connectResponse($){if(this._transportIsOpen=!0,this._transportWasOpen=!0,this._reconnectAttempts=0,this._refreshRequired=!1,this._isConnected())return;if(this._client=$.client,this._setState(a.Connected),this._refreshTimeout)clearTimeout(this._refreshTimeout);if($.expires)this._refreshTimeout=setTimeout(()=>this._refresh(),l6($.ttl));this._session=$.session,this._node=$.node,this.startBatching(),this._sendSubscribeCommands(),this.stopBatching();let Z={client:$.client,transport:this._transport.subName()};if($.data)Z.data=$.data;if(this.emit("connected",Z),this._resolvePromises(),this._processServerSubs($.subs||{}),$.ping&&$.ping>0)this._serverPing=$.ping*1000,this._sendPong=$.pong===!0,this._waitServerPing();else this._serverPing=0}_processServerSubs($){for(let Z in $){if(!$.hasOwnProperty(Z))continue;let J=$[Z];this._serverSubs[Z]={offset:J.offset,epoch:J.epoch,recoverable:J.recoverable||!1};let G=this._getSubscribeContext(Z,J);this.emit("subscribed",G)}for(let Z in $){if(!$.hasOwnProperty(Z))continue;let J=$[Z];if(J.recovered){let G=J.publications;if(G&&G.length>0){for(let Y in G)if(G.hasOwnProperty(Y))this._handlePublication(Z,G[Y])}}}for(let Z in this._serverSubs){if(!this._serverSubs.hasOwnProperty(Z))continue;if(!$[Z])this.emit("unsubscribed",{channel:Z}),delete this._serverSubs[Z]}}_clearRefreshTimeout(){if(this._refreshTimeout!==null)clearTimeout(this._refreshTimeout),this._refreshTimeout=null}_clearReconnectTimeout(){if(this._reconnectTimeout!==null)clearTimeout(this._reconnectTimeout),this._reconnectTimeout=null}_clearServerPingTimeout(){if(this._serverPingTimeout!==null)clearTimeout(this._serverPingTimeout),this._serverPingTimeout=null}_waitServerPing(){if(this._config.maxServerPingDelay===0)return;if(!this._isConnected())return;this._clearServerPingTimeout(),this._serverPingTimeout=setTimeout(()=>{if(!this._isConnected())return;this._disconnect(M0.noPing,"no ping",!0)},this._serverPing+this._config.maxServerPingDelay)}_getSubscribeContext($,Z){let J={channel:$,positioned:!1,recoverable:!1,wasRecovering:!1,recovered:!1,hasRecoveredPublications:!1};if(Z.recovered)J.recovered=!0;if(Z.positioned)J.positioned=!0;if(Z.recoverable)J.recoverable=!0;if(Z.was_recovering)J.wasRecovering=!0;let G="";if("epoch"in Z)G=Z.epoch;let Y=0;if("offset"in Z)Y=Z.offset;if(J.positioned||J.recoverable)J.streamPosition={offset:Y,epoch:G};if(Array.isArray(Z.publications)&&Z.publications.length>0)J.hasRecoveredPublications=!0;if(Z.data)J.data=Z.data;return J}_handleReply($,Z){let J=$.id;if(!(J in this._callbacks)){Z();return}let G=this._callbacks[J];if(clearTimeout(this._callbacks[J].timeout),delete this._callbacks[J],!Sz($)){let Y=G.callback;if(!Y)return;Y({reply:$,next:Z})}else{let Y=G.errback;if(!Y){Z();return}let X={code:$.error.code,message:$.error.message||"",temporary:$.error.temporary||!1};Y({error:X,next:Z})}}_handleJoin($,Z,J){let G=this._getSub($,J);if(!G&&$){if(this._isServerSub($)){let Y={channel:$,info:this._getJoinLeaveContext(Z.info)};this.emit("join",Y)}return}G._handleJoin(Z)}_handleLeave($,Z,J){let G=this._getSub($,J);if(!G&&$){if(this._isServerSub($)){let Y={channel:$,info:this._getJoinLeaveContext(Z.info)};this.emit("leave",Y)}return}G._handleLeave(Z)}_handleUnsubscribe($,Z){let J=this._getSub($,0);if(!J&&$){if(this._isServerSub($))delete this._serverSubs[$],this.emit("unsubscribed",{channel:$});return}if(Z.code<2500)J._setUnsubscribed(Z.code,Z.reason,!1);else J._setSubscribing(Z.code,Z.reason)}_handleSubscribe($,Z){this._serverSubs[$]={offset:Z.offset,epoch:Z.epoch,recoverable:Z.recoverable||!1},this.emit("subscribed",this._getSubscribeContext($,Z))}_handleDisconnect($){let Z=$.code,J=!0;if(Z>=3500&&Z<4000||Z>=4500&&Z<5000)J=!1;this._disconnect(Z,$.reason,J)}_getPublicationContext($,Z){let J={channel:$,data:Z.data};if(Z.offset)J.offset=Z.offset;if(Z.info)J.info=this._getJoinLeaveContext(Z.info);if(Z.tags)J.tags=Z.tags;return J}_getJoinLeaveContext($){let Z={client:$.client,user:$.user},J=$.conn_info;if(J)Z.connInfo=J;let G=$.chan_info;if(G)Z.chanInfo=G;return Z}_handlePublication($,Z,J){let G=this._getSub($,J);if(!G&&$){if(this._isServerSub($)){let Y=this._getPublicationContext($,Z);if(this.emit("publication",Y),Z.offset!==void 0)this._serverSubs[$].offset=Z.offset}return}G._handlePublication(Z)}_handleMessage($){this.emit("message",{data:$.data})}_handleServerPing($){if(this._sendPong){let Z={};this._transportSendCommands([Z])}$()}_handlePush($,Z){let{channel:J,id:G}=$;if($.pub)this._handlePublication(J,$.pub,G);else if($.message)this._handleMessage($.message);else if($.join)this._handleJoin(J,$.join,G);else if($.leave)this._handleLeave(J,$.leave,G);else if($.unsubscribe)this._handleUnsubscribe(J,$.unsubscribe);else if($.subscribe)this._handleSubscribe(J,$.subscribe);else if($.disconnect)this._handleDisconnect($.disconnect);Z()}_flush(){let $=this._commands.slice(0);this._commands=[],this._transportSendCommands($)}_createErrorObject($,Z,J){let G={code:$,message:Z};if(J)G.temporary=!0;return G}_registerCall($,Z,J){this._callbacks[$]={callback:Z,errback:J,timeout:null},this._callbacks[$].timeout=setTimeout(()=>{if(delete this._callbacks[$],mZ(J))J({error:this._createErrorObject(b.timeout,"timeout")})},this._config.timeout)}_addCommand($){if(this._batching)this._commands.push($);else this._transportSendCommands([$])}_nextPromiseId(){return++this._promiseId}_nextTransportId(){return++this._transportId}_resolvePromises(){for(let $ in this._promises){if(!this._promises.hasOwnProperty($))continue;if(this._promises[$].timeout)clearTimeout(this._promises[$].timeout);this._promises[$].resolve(),delete this._promises[$]}}_rejectPromises($){for(let Z in this._promises){if(!this._promises.hasOwnProperty(Z))continue;if(this._promises[Z].timeout)clearTimeout(this._promises[Z].timeout);this._promises[Z].reject($),delete this._promises[Z]}}}a5.SubscriptionState=V1;a5.State=a;a5.UnauthorizedError=n1;var gz=aZ.createContext(null),rZ=gz;var C9=y(tZ(),1);var g1=Object.create(null);g1.open="0";g1.close="1";g1.ping="2";g1.pong="3";g1.message="4";g1.upgrade="5";g1.noop="6";var r5=Object.create(null);Object.keys(g1).forEach(($)=>{r5[g1[$]]=$});var o5={type:"error",data:"parser error"};var s5=({type:$,data:Z},J,G)=>{if(Z instanceof ArrayBuffer||ArrayBuffer.isView(Z))return G(J?Z:"b"+eZ(Z,!0).toString("base64"));return G(g1[$]+(Z||""))},eZ=($,Z)=>{if(Buffer.isBuffer($)||$ instanceof Uint8Array&&!Z)return $;else if($ instanceof ArrayBuffer)return Buffer.from($);else return Buffer.from($.buffer,$.byteOffset,$.byteLength)},T9;function $J($,Z){if($.data instanceof ArrayBuffer||ArrayBuffer.isView($.data))return Z(eZ($.data,!1));s5($,!0,(J)=>{if(!T9)T9=new TextEncoder;Z(T9.encode(J))})}var t5=($,Z)=>{if(typeof $!=="string")return{type:"message",data:ZJ($,Z)};let J=$.charAt(0);if(J==="b"){let G=Buffer.from($.substring(1),"base64");return{type:"message",data:ZJ(G,Z)}}if(!r5[J])return o5;return $.length>1?{type:r5[J],data:$.substring(1)}:{type:r5[J]}},ZJ=($,Z)=>{switch(Z){case"arraybuffer":if($ instanceof ArrayBuffer)return $;else if(Buffer.isBuffer($))return $.buffer.slice($.byteOffset,$.byteOffset+$.byteLength);else return $.buffer;case"nodebuffer":default:if(Buffer.isBuffer($))return $;else return Buffer.from($)}};var JJ=String.fromCharCode(30),GJ=($,Z)=>{let J=$.length,G=Array(J),Y=0;$.forEach((X,Q)=>{s5(X,!1,(z)=>{if(G[Q]=z,++Y===J)Z(G.join(JJ))})})},YJ=($,Z)=>{let J=$.split(JJ),G=[];for(let Y=0;Y<J.length;Y++){let X=t5(J[Y],Z);if(G.push(X),X.type==="error")break}return G};function XJ(){return new TransformStream({transform($,Z){$J($,(J)=>{let G=J.length,Y;if(G<126)Y=new Uint8Array(1),new DataView(Y.buffer).setUint8(0,G);else if(G<65536){Y=new Uint8Array(3);let X=new DataView(Y.buffer);X.setUint8(0,126),X.setUint16(1,G)}else{Y=new Uint8Array(9);let X=new DataView(Y.buffer);X.setUint8(0,127),X.setBigUint64(1,BigInt(G))}if($.data&&typeof $.data!=="string")Y[0]|=128;Z.enqueue(Y),Z.enqueue(J)})}})}var w9;function p6($){return $.reduce((Z,J)=>Z+J.length,0)}function i6($,Z){if($[0].length===Z)return $.shift();let J=new Uint8Array(Z),G=0;for(let Y=0;Y<Z;Y++)if(J[Y]=$[0][G++],G===$[0].length)$.shift(),G=0;if($.length&&G<$[0].length)$[0]=$[0].slice(G);return J}function QJ($,Z){if(!w9)w9=new TextDecoder;let J=[],G=0,Y=-1,X=!1;return new TransformStream({transform(Q,z){J.push(Q);while(!0){if(G===0){if(p6(J)<1)break;let H=i6(J,1);if(X=(H[0]&128)===128,Y=H[0]&127,Y<126)G=3;else if(Y===126)G=1;else G=2}else if(G===1){if(p6(J)<2)break;let H=i6(J,2);Y=new DataView(H.buffer,H.byteOffset,H.length).getUint16(0),G=3}else if(G===2){if(p6(J)<8)break;let H=i6(J,8),K=new DataView(H.buffer,H.byteOffset,H.length),U=K.getUint32(0);if(U>Math.pow(2,21)-1){z.enqueue(o5);break}Y=U*Math.pow(2,32)+K.getUint32(4),G=3}else{if(p6(J)<Y)break;let H=i6(J,Y);z.enqueue(t5(X?H:w9.decode(H),Z)),G=0}if(Y===0||Y>$){z.enqueue(o5);break}}}})}var E9=4;var MJ=y(l0(),1);var X0=process.nextTick,A1=global,zJ="nodebuffer";function KJ(){return new UJ}function bz($){let Z=$.split("; "),J=Z[0].indexOf("=");if(J===-1)return;let G=Z[0].substring(0,J).trim();if(!G.length)return;let Y=Z[0].substring(J+1).trim();if(Y.charCodeAt(0)===34)Y=Y.slice(1,-1);let X={name:G,value:Y};for(let Q=1;Q<Z.length;Q++){let z=Z[Q].split("=");if(z.length!==2)continue;let H=z[0].trim(),K=z[1].trim();switch(H){case"Expires":X.expires=new Date(K);break;case"Max-Age":let U=new Date;U.setUTCSeconds(U.getUTCSeconds()+parseInt(K,10)),X.expires=U;break;default:}}return X}class UJ{constructor(){this._cookies=new Map}parseCookies($){if(!$)return;$.forEach((Z)=>{let J=bz(Z);if(J)this._cookies.set(J.name,J)})}get cookies(){let $=Date.now();return this._cookies.forEach((Z,J)=>{var G;if(((G=Z.expires)===null||G===void 0?void 0:G.getTime())<$)this._cookies.delete(J)}),this._cookies.entries()}addCookies($){let Z=[];for(let[J,G]of this.cookies)Z.push(`${J}=${G.value}`);if(Z.length)$.setDisableHeaderCheck(!0),$.setRequestHeader("cookie",Z.join("; "))}appendCookies($){for(let[Z,J]of this.cookies)$.append("cookie",`${Z}=${J.value}`)}}function d6($,...Z){return Z.reduce((J,G)=>{if($.hasOwnProperty(G))J[G]=$[G];return J},{})}var mz=A1.setTimeout,uz=A1.clearTimeout;function Q0($,Z){if(Z.useNativeTimers)$.setTimeoutFn=mz.bind(A1),$.clearTimeoutFn=uz.bind(A1);else $.setTimeoutFn=A1.setTimeout.bind(A1),$.clearTimeoutFn=A1.clearTimeout.bind(A1)}var lz=1.33;function OJ($){if(typeof $==="string")return cz($);return Math.ceil(($.byteLength||$.size)*lz)}function cz($){let Z=0,J=0;for(let G=0,Y=$.length;G<Y;G++)if(Z=$.charCodeAt(G),Z<128)J+=1;else if(Z<2048)J+=2;else if(Z<55296||Z>=57344)J+=3;else G++,J+=4;return J}function n6(){return Date.now().toString(36).substring(3)+Math.random().toString(36).substring(2,5)}function VJ($){let Z="";for(let J in $)if($.hasOwnProperty(J)){if(Z.length)Z+="&";Z+=encodeURIComponent(J)+"="+encodeURIComponent($[J])}return Z}function WJ($){let Z={},J=$.split("&");for(let G=0,Y=J.length;G<Y;G++){let X=J[G].split("=");Z[decodeURIComponent(X[0])]=decodeURIComponent(X[1])}return Z}var RJ=y(f1(),1),U3=RJ.default("engine.io-client:transport");class f9 extends Error{constructor($,Z,J){super($);this.description=Z,this.context=J,this.type="TransportError"}}class R0 extends MJ.Emitter{constructor($){super();this.writable=!1,Q0(this,$),this.opts=$,this.query=$.query,this.socket=$.socket,this.supportsBinary=!$.forceBase64}onError($,Z,J){return super.emitReserved("error",new f9($,Z,J)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){if(this.readyState==="opening"||this.readyState==="open")this.doClose(),this.onClose();return this}send($){if(this.readyState==="open")this.write($);else U3("transport is not open, discarding packets")}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData($){let Z=t5($,this.socket.binaryType);this.onPacket(Z)}onPacket($){super.emitReserved("packet",$)}onClose($){this.readyState="closed",super.emitReserved("close",$)}pause($){}createUri($,Z={}){return $+"://"+this._hostname()+this._port()+this.opts.path+this._query(Z)}_hostname(){let $=this.opts.hostname;return $.indexOf(":")===-1?$:"["+$+"]"}_port(){if(this.opts.port&&(this.opts.secure&&Number(this.opts.port)!==443||!this.opts.secure&&Number(this.opts.port)!==80))return":"+this.opts.port;else return""}_query($){let Z=VJ($);return Z.length?"?"+Z:""}}var IJ=y(f1(),1),h1=IJ.default("engine.io-client:polling");class t6 extends R0{constructor(){super(...arguments);this._polling=!1}get name(){return"polling"}doOpen(){this._poll()}pause($){this.readyState="pausing";let Z=()=>{h1("paused"),this.readyState="paused",$()};if(this._polling||!this.writable){let J=0;if(this._polling)h1("we are currently polling - waiting to pause"),J++,this.once("pollComplete",function(){h1("pre-pause polling complete"),--J||Z()});if(!this.writable)h1("we are currently writing - waiting to pause"),J++,this.once("drain",function(){h1("pre-pause writing complete"),--J||Z()})}else Z()}_poll(){h1("polling"),this._polling=!0,this.doPoll(),this.emitReserved("poll")}onData($){h1("polling got data %s",$);let Z=(J)=>{if(this.readyState==="opening"&&J.type==="open")this.onOpen();if(J.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(J)};if(YJ($,this.socket.binaryType).forEach(Z),this.readyState!=="closed")if(this._polling=!1,this.emitReserved("pollComplete"),this.readyState==="open")this._poll();else h1('ignoring poll - transport state "%s"',this.readyState)}doClose(){let $=()=>{h1("writing close packet"),this.write([{type:"close"}])};if(this.readyState==="open")h1("transport open - closing"),$();else h1("transport not open - deferring close"),this.once("open",$)}write($){this.writable=!1,GJ($,(Z)=>{this.doWrite(Z,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){let $=this.opts.secure?"https":"http",Z=this.query||{};if(this.opts.timestampRequests!==!1)Z[this.opts.timestampParam]=n6();if(!this.supportsBinary&&!Z.sid)Z.b64=1;return this.createUri($,Z)}}var wJ=y(l0(),1);var PJ=!1;try{PJ=typeof XMLHttpRequest<"u"&&"withCredentials"in new XMLHttpRequest}catch($){}var DJ=PJ;var EJ=y(f1(),1),S9=EJ.default("engine.io-client:polling");function O3(){}class x9 extends t6{constructor($){super($);if(typeof location<"u"){let Z=location.protocol==="https:",J=location.port;if(!J)J=Z?"443":"80";this.xd=typeof location<"u"&&$.hostname!==location.hostname||J!==$.port}}doWrite($,Z){let J=this.request({method:"POST",data:$});J.on("success",Z),J.on("error",(G,Y)=>{this.onError("xhr post error",G,Y)})}doPoll(){S9("xhr poll");let $=this.request();$.on("data",this.onData.bind(this)),$.on("error",(Z,J)=>{this.onError("xhr poll error",Z,J)}),this.pollXhr=$}}class k1 extends wJ.Emitter{constructor($,Z,J){super();this.createRequest=$,Q0(this,J),this._opts=J,this._method=J.method||"GET",this._uri=Z,this._data=J.data!==void 0?J.data:null,this._create()}_create(){var $;let Z=d6(this._opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");Z.xdomain=!!this._opts.xd;let J=this._xhr=this.createRequest(Z);try{S9("xhr open %s: %s",this._method,this._uri),J.open(this._method,this._uri,!0);try{if(this._opts.extraHeaders){J.setDisableHeaderCheck&&J.setDisableHeaderCheck(!0);for(let G in this._opts.extraHeaders)if(this._opts.extraHeaders.hasOwnProperty(G))J.setRequestHeader(G,this._opts.extraHeaders[G])}}catch(G){}if(this._method==="POST")try{J.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(G){}try{J.setRequestHeader("Accept","*/*")}catch(G){}if(($=this._opts.cookieJar)===null||$===void 0||$.addCookies(J),"withCredentials"in J)J.withCredentials=this._opts.withCredentials;if(this._opts.requestTimeout)J.timeout=this._opts.requestTimeout;J.onreadystatechange=()=>{var G;if(J.readyState===3)(G=this._opts.cookieJar)===null||G===void 0||G.parseCookies(J.getResponseHeader("set-cookie"));if(J.readyState!==4)return;if(J.status===200||J.status===1223)this._onLoad();else this.setTimeoutFn(()=>{this._onError(typeof J.status==="number"?J.status:0)},0)},S9("xhr data %s",this._data),J.send(this._data)}catch(G){this.setTimeoutFn(()=>{this._onError(G)},0);return}if(typeof document<"u")this._index=k1.requestsCount++,k1.requests[this._index]=this}_onError($){this.emitReserved("error",$,this._xhr),this._cleanup(!0)}_cleanup($){if(typeof this._xhr>"u"||this._xhr===null)return;if(this._xhr.onreadystatechange=O3,$)try{this._xhr.abort()}catch(Z){}if(typeof document<"u")delete k1.requests[this._index];this._xhr=null}_onLoad(){let $=this._xhr.responseText;if($!==null)this.emitReserved("data",$),this.emitReserved("success"),this._cleanup()}abort(){this._cleanup()}}k1.requestsCount=0;k1.requests={};if(typeof document<"u"){if(typeof attachEvent==="function")attachEvent("onunload",TJ);else if(typeof addEventListener==="function"){let $="onpagehide"in A1?"pagehide":"unload";addEventListener($,TJ,!1)}}function TJ(){for(let $ in k1.requests)if(k1.requests.hasOwnProperty($))k1.requests[$].abort()}var kM=function(){let $=V3({xdomain:!1});return $&&$.responseType!==null}();function V3($){let Z=$.xdomain;try{if(typeof XMLHttpRequest<"u"&&(!Z||DJ))return new XMLHttpRequest}catch(J){}if(!Z)try{return new A1[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP")}catch(J){}}var W3=C9.default||C9;class e5 extends x9{request($={}){var Z;return Object.assign($,{xd:this.xd,cookieJar:(Z=this.socket)===null||Z===void 0?void 0:Z._cookieJar},this.opts),new k1((J)=>new W3(J),this.uri(),$)}}var SK=y(I2(),1),xK=y(b9(),1),CK=y(u9(),1),a9=y(K7(),1),_K=y(j2(),1);var f2=y(f1(),1),gK=f2.default("engine.io-client:websocket"),hK=typeof navigator<"u"&&typeof navigator.product==="string"&&navigator.product.toLowerCase()==="reactnative";class r9 extends R0{get name(){return"websocket"}doOpen(){let $=this.uri(),Z=this.opts.protocols,J=hK?{}:d6(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");if(this.opts.extraHeaders)J.headers=this.opts.extraHeaders;try{this.ws=this.createSocket($,Z,J)}catch(G){return this.emitReserved("error",G)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{if(this.opts.autoUnref)this.ws._socket.unref();this.onOpen()},this.ws.onclose=($)=>this.onClose({description:"websocket connection closed",context:$}),this.ws.onmessage=($)=>this.onData($.data),this.ws.onerror=($)=>this.onError("websocket error",$)}write($){this.writable=!1;for(let Z=0;Z<$.length;Z++){let J=$[Z],G=Z===$.length-1;s5(J,this.supportsBinary,(Y)=>{try{this.doWrite(J,Y)}catch(X){gK("websocket closed before onclose event")}if(G)X0(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){if(typeof this.ws<"u")this.ws.onerror=()=>{},this.ws.close(),this.ws=null}uri(){let $=this.opts.secure?"wss":"ws",Z=this.query||{};if(this.opts.timestampRequests)Z[this.opts.timestampParam]=n6();if(!this.supportsBinary)Z.b64=1;return this.createUri($,Z)}}var UR=A1.WebSocket||A1.MozWebSocket;class z6 extends r9{createSocket($,Z,J){var G;if((G=this.socket)===null||G===void 0?void 0:G._cookieJar){J.headers=J.headers||{},J.headers.cookie=typeof J.headers.cookie==="string"?[J.headers.cookie]:J.headers.cookie||[];for(let[Y,X]of this.socket._cookieJar.cookies)J.headers.cookie.push(`${Y}=${X.value}`)}return new a9.default($,Z,J)}doWrite($,Z){let J={};if($.options)J.compress=$.options.compress;if(this.opts.perMessageDeflate){if((typeof Z==="string"?Buffer.byteLength(Z):Z.length)<this.opts.perMessageDeflate.threshold)J.compress=!1}this.ws.send(Z,J)}}var S2=y(f1(),1),K6=S2.default("engine.io-client:webtransport");class U6 extends R0{get name(){return"webtransport"}doOpen(){try{this._transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name])}catch($){return this.emitReserved("error",$)}this._transport.closed.then(()=>{K6("transport closed gracefully"),this.onClose()}).catch(($)=>{K6("transport closed due to %s",$),this.onError("webtransport error",$)}),this._transport.ready.then(()=>{this._transport.createBidirectionalStream().then(($)=>{let Z=QJ(Number.MAX_SAFE_INTEGER,this.socket.binaryType),J=$.readable.pipeThrough(Z).getReader(),G=XJ();G.readable.pipeTo($.writable),this._writer=G.writable.getWriter();let Y=()=>{J.read().then(({done:Q,value:z})=>{if(Q){K6("session is closed");return}K6("received chunk: %o",z),this.onPacket(z),Y()}).catch((Q)=>{K6("an error occurred while reading: %s",Q)})};Y();let X={type:"open"};if(this.query.sid)X.data=`{"sid":"${this.query.sid}"}`;this._writer.write(X).then(()=>this.onOpen())})})}write($){this.writable=!1;for(let Z=0;Z<$.length;Z++){let J=$[Z],G=Z===$.length-1;this._writer.write(J).then(()=>{if(G)X0(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var $;($=this._transport)===null||$===void 0||$.close()}}var o9={websocket:z6,webtransport:U6,polling:e5};var kK=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,bK=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function P5($){if($.length>8000)throw"URI too long";let Z=$,J=$.indexOf("["),G=$.indexOf("]");if(J!=-1&&G!=-1)$=$.substring(0,J)+$.substring(J,G).replace(/:/g,";")+$.substring(G,$.length);let Y=kK.exec($||""),X={},Q=14;while(Q--)X[bK[Q]]=Y[Q]||"";if(J!=-1&&G!=-1)X.source=Z,X.host=X.host.substring(1,X.host.length-1).replace(/;/g,":"),X.authority=X.authority.replace("[","").replace("]","").replace(/;/g,":"),X.ipv6uri=!0;return X.pathNames=mK(X,X.path),X.queryKey=uK(X,X.query),X}function mK($,Z){let J=/\/{2,9}/g,G=Z.replace(J,"/").split("/");if(Z.slice(0,1)=="/"||Z.length===0)G.splice(0,1);if(Z.slice(-1)=="/")G.splice(G.length-1,1);return G}function uK($,Z){let J={};return Z.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(G,Y,X){if(Y)J[Y]=X}),J}var x2=y(l0(),1);var C2=y(f1(),1),k=C2.default("engine.io-client:socket"),s9=typeof addEventListener==="function"&&typeof removeEventListener==="function",O6=[];if(s9)addEventListener("offline",()=>{k("closing %d connection(s) because the network was lost",O6.length),O6.forEach(($)=>$())},!1);class U0 extends x2.Emitter{constructor($,Z){super();if(this.binaryType=zJ,this.writeBuffer=[],this._prevBufferLen=0,this._pingInterval=-1,this._pingTimeout=-1,this._maxPayload=-1,this._pingTimeoutTime=1/0,$&&typeof $==="object")Z=$,$=null;if($){let J=P5($);if(Z.hostname=J.host,Z.secure=J.protocol==="https"||J.protocol==="wss",Z.port=J.port,J.query)Z.query=J.query}else if(Z.host)Z.hostname=P5(Z.host).host;if(Q0(this,Z),this.secure=Z.secure!=null?Z.secure:typeof location<"u"&&location.protocol==="https:",Z.hostname&&!Z.port)Z.port=this.secure?"443":"80";if(this.hostname=Z.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=Z.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=[],this._transportsByName={},Z.transports.forEach((J)=>{let G=J.prototype.name;this.transports.push(G),this._transportsByName[G]=J}),this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},Z),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query==="string")this.opts.query=WJ(this.opts.query);if(s9){if(this.opts.closeOnBeforeunload)this._beforeunloadEventListener=()=>{if(this.transport)this.transport.removeAllListeners(),this.transport.close()},addEventListener("beforeunload",this._beforeunloadEventListener,!1);if(this.hostname!=="localhost")k("adding listener for the 'offline' event"),this._offlineEventListener=()=>{this._onClose("transport close",{description:"network connection lost"})},O6.push(this._offlineEventListener)}if(this.opts.withCredentials)this._cookieJar=KJ();this._open()}createTransport($){k('creating transport "%s"',$);let Z=Object.assign({},this.opts.query);if(Z.EIO=E9,Z.transport=$,this.id)Z.sid=this.id;let J=Object.assign({},this.opts,{query:Z,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[$]);return k("options: %j",J),new this._transportsByName[$](J)}_open(){if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}let $=this.opts.rememberUpgrade&&U0.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1?"websocket":this.transports[0];this.readyState="opening";let Z=this.createTransport($);Z.open(),this.setTransport(Z)}setTransport($){if(k("setting transport %s",$.name),this.transport)k("clearing existing transport %s",this.transport.name),this.transport.removeAllListeners();this.transport=$,$.on("drain",this._onDrain.bind(this)).on("packet",this._onPacket.bind(this)).on("error",this._onError.bind(this)).on("close",(Z)=>this._onClose("transport close",Z))}onOpen(){k("socket open"),this.readyState="open",U0.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush()}_onPacket($){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")switch(k('socket receive: type "%s", data "%s"',$.type,$.data),this.emitReserved("packet",$),this.emitReserved("heartbeat"),$.type){case"open":this.onHandshake(JSON.parse($.data));break;case"ping":this._sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong"),this._resetPingTimeout();break;case"error":let Z=Error("server error");Z.code=$.data,this._onError(Z);break;case"message":this.emitReserved("data",$.data),this.emitReserved("message",$.data);break}else k('packet received with socket readyState "%s"',this.readyState)}onHandshake($){if(this.emitReserved("handshake",$),this.id=$.sid,this.transport.query.sid=$.sid,this._pingInterval=$.pingInterval,this._pingTimeout=$.pingTimeout,this._maxPayload=$.maxPayload,this.onOpen(),this.readyState==="closed")return;this._resetPingTimeout()}_resetPingTimeout(){this.clearTimeoutFn(this._pingTimeoutTimer);let $=this._pingInterval+this._pingTimeout;if(this._pingTimeoutTime=Date.now()+$,this._pingTimeoutTimer=this.setTimeoutFn(()=>{this._onClose("ping timeout")},$),this.opts.autoUnref)this._pingTimeoutTimer.unref()}_onDrain(){if(this.writeBuffer.splice(0,this._prevBufferLen),this._prevBufferLen=0,this.writeBuffer.length===0)this.emitReserved("drain");else this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){let $=this._getWritablePackets();k("flushing %d packets in socket",$.length),this.transport.send($),this._prevBufferLen=$.length,this.emitReserved("flush")}}_getWritablePackets(){if(!(this._maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let Z=1;for(let J=0;J<this.writeBuffer.length;J++){let G=this.writeBuffer[J].data;if(G)Z+=OJ(G);if(J>0&&Z>this._maxPayload)return k("only send %d out of %d packets",J,this.writeBuffer.length),this.writeBuffer.slice(0,J);Z+=2}return k("payload size is %d (max: %d)",Z,this._maxPayload),this.writeBuffer}_hasPingExpired(){if(!this._pingTimeoutTime)return!0;let $=Date.now()>this._pingTimeoutTime;if($)k("throttled timer detected, scheduling connection close"),this._pingTimeoutTime=0,X0(()=>{this._onClose("ping timeout")},this.setTimeoutFn);return $}write($,Z,J){return this._sendPacket("message",$,Z,J),this}send($,Z,J){return this._sendPacket("message",$,Z,J),this}_sendPacket($,Z,J,G){if(typeof Z==="function")G=Z,Z=void 0;if(typeof J==="function")G=J,J=null;if(this.readyState==="closing"||this.readyState==="closed")return;J=J||{},J.compress=J.compress!==!1;let Y={type:$,data:Z,options:J};if(this.emitReserved("packetCreate",Y),this.writeBuffer.push(Y),G)this.once("flush",G);this.flush()}close(){let $=()=>{this._onClose("forced close"),k("socket closing - telling transport to close"),this.transport.close()},Z=()=>{this.off("upgrade",Z),this.off("upgradeError",Z),$()},J=()=>{this.once("upgrade",Z),this.once("upgradeError",Z)};if(this.readyState==="opening"||this.readyState==="open")if(this.readyState="closing",this.writeBuffer.length)this.once("drain",()=>{if(this.upgrading)J();else $()});else if(this.upgrading)J();else $();return this}_onError($){if(k("socket error %j",$),U0.priorWebsocketSuccess=!1,this.opts.tryAllTransports&&this.transports.length>1&&this.readyState==="opening")return k("trying next transport"),this.transports.shift(),this._open();this.emitReserved("error",$),this._onClose("transport error",$)}_onClose($,Z){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing"){if(k('socket close with reason: "%s"',$),this.clearTimeoutFn(this._pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),s9){if(this._beforeunloadEventListener)removeEventListener("beforeunload",this._beforeunloadEventListener,!1);if(this._offlineEventListener){let J=O6.indexOf(this._offlineEventListener);if(J!==-1)k("removing listener for the 'offline' event"),O6.splice(J,1)}}this.readyState="closed",this.id=null,this.emitReserved("close",$,Z),this.writeBuffer=[],this._prevBufferLen=0}}}U0.protocol=E9;class t9 extends U0{constructor(){super(...arguments);this._upgrades=[]}onOpen(){if(super.onOpen(),this.readyState==="open"&&this.opts.upgrade){k("starting upgrade probes");for(let $=0;$<this._upgrades.length;$++)this._probe(this._upgrades[$])}}_probe($){k('probing transport "%s"',$);let Z=this.createTransport($),J=!1;U0.priorWebsocketSuccess=!1;let G=()=>{if(J)return;k('probe transport "%s" opened',$),Z.send([{type:"ping",data:"probe"}]),Z.once("packet",(U)=>{if(J)return;if(U.type==="pong"&&U.data==="probe"){if(k('probe transport "%s" pong',$),this.upgrading=!0,this.emitReserved("upgrading",Z),!Z)return;U0.priorWebsocketSuccess=Z.name==="websocket",k('pausing current transport "%s"',this.transport.name),this.transport.pause(()=>{if(J)return;if(this.readyState==="closed")return;k("changing transport and sending upgrade packet"),K(),this.setTransport(Z),Z.send([{type:"upgrade"}]),this.emitReserved("upgrade",Z),Z=null,this.upgrading=!1,this.flush()})}else{k('probe transport "%s" failed',$);let O=Error("probe error");O.transport=Z.name,this.emitReserved("upgradeError",O)}})};function Y(){if(J)return;J=!0,K(),Z.close(),Z=null}let X=(U)=>{let O=Error("probe error: "+U);O.transport=Z.name,Y(),k('probe transport "%s" failed because of error: %s',$,U),this.emitReserved("upgradeError",O)};function Q(){X("transport closed")}function z(){X("socket closed")}function H(U){if(Z&&U.name!==Z.name)k('"%s" works - aborting "%s"',U.name,Z.name),Y()}let K=()=>{Z.removeListener("open",G),Z.removeListener("error",X),Z.removeListener("close",Q),this.off("close",z),this.off("upgrading",H)};if(Z.once("open",G),Z.once("error",X),Z.once("close",Q),this.once("close",z),this.once("upgrading",H),this._upgrades.indexOf("webtransport")!==-1&&$!=="webtransport")this.setTimeoutFn(()=>{if(!J)Z.open()},200);else Z.open()}onHandshake($){this._upgrades=this._filterUpgrades($.upgrades),super.onHandshake($)}_filterUpgrades($){let Z=[];for(let J=0;J<$.length;J++)if(~this.transports.indexOf($[J]))Z.push($[J]);return Z}}class V6 extends t9{constructor($,Z={}){let J=typeof $==="object"?$:Z;if(!J.transports||J.transports&&typeof J.transports[0]==="string")J.transports=(J.transports||["polling","websocket","webtransport"]).map((G)=>o9[G]).filter((G)=>!!G);super($,J)}}var CR=V6.protocol;var y2=y(f1(),1),_2=y2.default("socket.io-client:url");function g2($,Z="",J){let G=$;if(J=J||typeof location<"u"&&location,$==null)$=J.protocol+"//"+J.host;if(typeof $==="string"){if($.charAt(0)==="/")if($.charAt(1)==="/")$=J.protocol+$;else $=J.host+$;if(!/^(https?|wss?):\/\//.test($))if(_2("protocol-less url %s",$),typeof J<"u")$=J.protocol+"//"+$;else $="https://"+$;_2("parse %s",$),G=P5($)}if(!G.port){if(/^(http|ws)$/.test(G.protocol))G.port="80";else if(/^(http|ws)s$/.test(G.protocol))G.port="443"}G.path=G.path||"/";let X=G.host.indexOf(":")!==-1?"["+G.host+"]":G.host;return G.id=G.protocol+"://"+X+":"+G.port+Z,G.href=G.protocol+"://"+X+(J&&J.port===G.port?"":":"+G.port),G}var G$={};wZ(G$,{protocol:()=>c2,isPacketValid:()=>eK,PacketType:()=>j,Encoder:()=>p2,Decoder:()=>J$});var m2=y(l0(),1);var iK=typeof ArrayBuffer==="function",dK=($)=>{return typeof ArrayBuffer.isView==="function"?ArrayBuffer.isView($):$.buffer instanceof ArrayBuffer},h2=Object.prototype.toString,nK=typeof Blob==="function"||typeof Blob<"u"&&h2.call(Blob)==="[object BlobConstructor]",aK=typeof File==="function"||typeof File<"u"&&h2.call(File)==="[object FileConstructor]";function A6($){return iK&&($ instanceof ArrayBuffer||dK($))||nK&&$ instanceof Blob||aK&&$ instanceof File}function W6($,Z){if(!$||typeof $!=="object")return!1;if(Array.isArray($)){for(let J=0,G=$.length;J<G;J++)if(W6($[J]))return!0;return!1}if(A6($))return!0;if($.toJSON&&typeof $.toJSON==="function"&&arguments.length===1)return W6($.toJSON(),!0);for(let J in $)if(Object.prototype.hasOwnProperty.call($,J)&&W6($[J]))return!0;return!1}function k2($){let Z=[],J=$.data,G=$;return G.data=e9(J,Z),G.attachments=Z.length,{packet:G,buffers:Z}}function e9($,Z){if(!$)return $;if(A6($)){let J={_placeholder:!0,num:Z.length};return Z.push($),J}else if(Array.isArray($)){let J=Array($.length);for(let G=0;G<$.length;G++)J[G]=e9($[G],Z);return J}else if(typeof $==="object"&&!($ instanceof Date)){let J={};for(let G in $)if(Object.prototype.hasOwnProperty.call($,G))J[G]=e9($[G],Z);return J}return $}function b2($,Z){return $.data=$$($.data,Z),delete $.attachments,$}function $$($,Z){if(!$)return $;if($&&$._placeholder===!0)if(typeof $.num==="number"&&$.num>=0&&$.num<Z.length)return Z[$.num];else throw Error("illegal attachments");else if(Array.isArray($))for(let J=0;J<$.length;J++)$[J]=$$($[J],Z);else if(typeof $==="object"){for(let J in $)if(Object.prototype.hasOwnProperty.call($,J))$[J]=$$($[J],Z)}return $}var u2=y(f1(),1),Z$=u2.default("socket.io-parser"),l2=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"],c2=5,j;(function($){$[$.CONNECT=0]="CONNECT",$[$.DISCONNECT=1]="DISCONNECT",$[$.EVENT=2]="EVENT",$[$.ACK=3]="ACK",$[$.CONNECT_ERROR=4]="CONNECT_ERROR",$[$.BINARY_EVENT=5]="BINARY_EVENT",$[$.BINARY_ACK=6]="BINARY_ACK"})(j||(j={}));class p2{constructor($){this.replacer=$}encode($){if(Z$("encoding packet %j",$),$.type===j.EVENT||$.type===j.ACK){if(W6($))return this.encodeAsBinary({type:$.type===j.EVENT?j.BINARY_EVENT:j.BINARY_ACK,nsp:$.nsp,data:$.data,id:$.id})}return[this.encodeAsString($)]}encodeAsString($){let Z=""+$.type;if($.type===j.BINARY_EVENT||$.type===j.BINARY_ACK)Z+=$.attachments+"-";if($.nsp&&$.nsp!=="/")Z+=$.nsp+",";if($.id!=null)Z+=$.id;if($.data!=null)Z+=JSON.stringify($.data,this.replacer);return Z$("encoded %j as %s",$,Z),Z}encodeAsBinary($){let Z=k2($),J=this.encodeAsString(Z.packet),G=Z.buffers;return G.unshift(J),G}}class J$ extends m2.Emitter{constructor($){super();this.reviver=$}add($){let Z;if(typeof $==="string"){if(this.reconstructor)throw Error("got plaintext data when reconstructing a packet");Z=this.decodeString($);let J=Z.type===j.BINARY_EVENT;if(J||Z.type===j.BINARY_ACK){if(Z.type=J?j.EVENT:j.ACK,this.reconstructor=new i2(Z),Z.attachments===0)super.emitReserved("decoded",Z)}else super.emitReserved("decoded",Z)}else if(A6($)||$.base64){if(!this.reconstructor)throw Error("got binary data when not reconstructing a packet");else if(Z=this.reconstructor.takeBinaryData($),Z)this.reconstructor=null,super.emitReserved("decoded",Z)}else throw Error("Unknown type: "+$)}decodeString($){let Z=0,J={type:Number($.charAt(0))};if(j[J.type]===void 0)throw Error("unknown packet type "+J.type);if(J.type===j.BINARY_EVENT||J.type===j.BINARY_ACK){let Y=Z+1;while($.charAt(++Z)!=="-"&&Z!=$.length);let X=$.substring(Y,Z);if(X!=Number(X)||$.charAt(Z)!=="-")throw Error("Illegal attachments");J.attachments=Number(X)}if($.charAt(Z+1)==="/"){let Y=Z+1;while(++Z){if($.charAt(Z)===",")break;if(Z===$.length)break}J.nsp=$.substring(Y,Z)}else J.nsp="/";let G=$.charAt(Z+1);if(G!==""&&Number(G)==G){let Y=Z+1;while(++Z){let X=$.charAt(Z);if(X==null||Number(X)!=X){--Z;break}if(Z===$.length)break}J.id=Number($.substring(Y,Z+1))}if($.charAt(++Z)){let Y=this.tryParse($.substr(Z));if(J$.isPayloadValid(J.type,Y))J.data=Y;else throw Error("invalid payload")}return Z$("decoded %s as %j",$,J),J}tryParse($){try{return JSON.parse($,this.reviver)}catch(Z){return!1}}static isPayloadValid($,Z){switch($){case j.CONNECT:return O7(Z);case j.DISCONNECT:return Z===void 0;case j.CONNECT_ERROR:return typeof Z==="string"||O7(Z);case j.EVENT:case j.BINARY_EVENT:return Array.isArray(Z)&&(typeof Z[0]==="number"||typeof Z[0]==="string"&&l2.indexOf(Z[0])===-1);case j.ACK:case j.BINARY_ACK:return Array.isArray(Z)}}destroy(){if(this.reconstructor)this.reconstructor.finishedReconstruction(),this.reconstructor=null}}class i2{constructor($){this.packet=$,this.buffers=[],this.reconPack=$}takeBinaryData($){if(this.buffers.push($),this.buffers.length===this.reconPack.attachments){let Z=b2(this.reconPack,this.buffers);return this.finishedReconstruction(),Z}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}function rK($){return typeof $==="string"}var oK=Number.isInteger||function($){return typeof $==="number"&&isFinite($)&&Math.floor($)===$};function sK($){return $===void 0||oK($)}function O7($){return Object.prototype.toString.call($)==="[object Object]"}function tK($,Z){switch($){case j.CONNECT:return Z===void 0||O7(Z);case j.DISCONNECT:return Z===void 0;case j.EVENT:return Array.isArray(Z)&&(typeof Z[0]==="number"||typeof Z[0]==="string"&&l2.indexOf(Z[0])===-1);case j.ACK:return Array.isArray(Z);case j.CONNECT_ERROR:return typeof Z==="string"||O7(Z);default:return!1}}function eK($){return rK($.nsp)&&sK($.id)&&tK($.type,$.data)}function P1($,Z,J){return $.on(Z,J),function(){$.off(Z,J)}}var d2=y(l0(),1),n2=y(f1(),1),r=n2.default("socket.io-client:socket"),$U=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class F6 extends d2.Emitter{constructor($,Z,J){super();if(this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=$,this.nsp=Z,J&&J.auth)this.auth=J.auth;if(this._opts=Object.assign({},J),this.io._autoConnect)this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;let $=this.io;this.subs=[P1($,"open",this.onopen.bind(this)),P1($,"packet",this.onpacket.bind(this)),P1($,"error",this.onerror.bind(this)),P1($,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){if(this.connected)return this;if(this.subEvents(),!this.io._reconnecting)this.io.open();if(this.io._readyState==="open")this.onopen();return this}open(){return this.connect()}send(...$){return $.unshift("message"),this.emit.apply(this,$),this}emit($,...Z){var J,G,Y;if($U.hasOwnProperty($))throw Error('"'+$.toString()+'" is a reserved event name');if(Z.unshift($),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(Z),this;let X={type:j.EVENT,data:Z};if(X.options={},X.options.compress=this.flags.compress!==!1,typeof Z[Z.length-1]==="function"){let K=this.ids++;r("emitting packet with ack id %d",K);let U=Z.pop();this._registerAckCallback(K,U),X.id=K}let Q=(G=(J=this.io.engine)===null||J===void 0?void 0:J.transport)===null||G===void 0?void 0:G.writable,z=this.connected&&!((Y=this.io.engine)===null||Y===void 0?void 0:Y._hasPingExpired());if(this.flags.volatile&&!Q)r("discard packet as the transport is not currently writable");else if(z)this.notifyOutgoingListeners(X),this.packet(X);else this.sendBuffer.push(X);return this.flags={},this}_registerAckCallback($,Z){var J;let G=(J=this.flags.timeout)!==null&&J!==void 0?J:this._opts.ackTimeout;if(G===void 0){this.acks[$]=Z;return}let Y=this.io.setTimeoutFn(()=>{delete this.acks[$];for(let Q=0;Q<this.sendBuffer.length;Q++)if(this.sendBuffer[Q].id===$)r("removing packet with ack id %d from the buffer",$),this.sendBuffer.splice(Q,1);r("event with ack id %d has timed out after %d ms",$,G),Z.call(this,Error("operation has timed out"))},G),X=(...Q)=>{this.io.clearTimeoutFn(Y),Z.apply(this,Q)};X.withError=!0,this.acks[$]=X}emitWithAck($,...Z){return new Promise((J,G)=>{let Y=(X,Q)=>{return X?G(X):J(Q)};Y.withError=!0,Z.push(Y),this.emit($,...Z)})}_addToQueue($){let Z;if(typeof $[$.length-1]==="function")Z=$.pop();let J={id:this._queueSeq++,tryCount:0,pending:!1,args:$,flags:Object.assign({fromQueue:!0},this.flags)};$.push((G,...Y)=>{if(J!==this._queue[0])return r("packet [%d] already acknowledged",J.id);if(G!==null){if(J.tryCount>this._opts.retries){if(r("packet [%d] is discarded after %d tries",J.id,J.tryCount),this._queue.shift(),Z)Z(G)}}else if(r("packet [%d] was successfully sent",J.id),this._queue.shift(),Z)Z(null,...Y);return J.pending=!1,this._drainQueue()}),this._queue.push(J),this._drainQueue()}_drainQueue($=!1){if(r("draining queue"),!this.connected||this._queue.length===0)return;let Z=this._queue[0];if(Z.pending&&!$){r("packet [%d] has already been sent and is waiting for an ack",Z.id);return}Z.pending=!0,Z.tryCount++,r("sending packet [%d] (try n°%d)",Z.id,Z.tryCount),this.flags=Z.flags,this.emit.apply(this,Z.args)}packet($){$.nsp=this.nsp,this.io._packet($)}onopen(){if(r("transport is open - connecting"),typeof this.auth=="function")this.auth(($)=>{this._sendConnectPacket($)});else this._sendConnectPacket(this.auth)}_sendConnectPacket($){this.packet({type:j.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},$):$})}onerror($){if(!this.connected)this.emitReserved("connect_error",$)}onclose($,Z){r("close (%s)",$),this.connected=!1,delete this.id,this.emitReserved("disconnect",$,Z),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach(($)=>{if(!this.sendBuffer.some((J)=>String(J.id)===$)){let J=this.acks[$];if(delete this.acks[$],J.withError)J.call(this,Error("socket has been disconnected"))}})}onpacket($){if($.nsp!==this.nsp)return;switch($.type){case j.CONNECT:if($.data&&$.data.sid)this.onconnect($.data.sid,$.data.pid);else this.emitReserved("connect_error",Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case j.EVENT:case j.BINARY_EVENT:this.onevent($);break;case j.ACK:case j.BINARY_ACK:this.onack($);break;case j.DISCONNECT:this.ondisconnect();break;case j.CONNECT_ERROR:this.destroy();let J=Error($.data.message);J.data=$.data.data,this.emitReserved("connect_error",J);break}}onevent($){let Z=$.data||[];if(r("emitting event %j",Z),$.id!=null)r("attaching ack callback to event"),Z.push(this.ack($.id));if(this.connected)this.emitEvent(Z);else this.receiveBuffer.push(Object.freeze(Z))}emitEvent($){if(this._anyListeners&&this._anyListeners.length){let Z=this._anyListeners.slice();for(let J of Z)J.apply(this,$)}if(super.emit.apply(this,$),this._pid&&$.length&&typeof $[$.length-1]==="string")this._lastOffset=$[$.length-1]}ack($){let Z=this,J=!1;return function(...G){if(J)return;J=!0,r("sending ack %j",G),Z.packet({type:j.ACK,id:$,data:G})}}onack($){let Z=this.acks[$.id];if(typeof Z!=="function"){r("bad ack %s",$.id);return}if(delete this.acks[$.id],r("calling ack %s with %j",$.id,$.data),Z.withError)$.data.unshift(null);Z.apply(this,$.data)}onconnect($,Z){r("socket connected with id %s",$),this.id=$,this.recovered=Z&&this._pid===Z,this._pid=Z,this.connected=!0,this.emitBuffered(),this._drainQueue(!0),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(($)=>this.emitEvent($)),this.receiveBuffer=[],this.sendBuffer.forEach(($)=>{this.notifyOutgoingListeners($),this.packet($)}),this.sendBuffer=[]}ondisconnect(){r("server disconnect (%s)",this.nsp),this.destroy(),this.onclose("io server disconnect")}destroy(){if(this.subs)this.subs.forEach(($)=>$()),this.subs=void 0;this.io._destroy(this)}disconnect(){if(this.connected)r("performing disconnect (%s)",this.nsp),this.packet({type:j.DISCONNECT});if(this.destroy(),this.connected)this.onclose("io client disconnect");return this}close(){return this.disconnect()}compress($){return this.flags.compress=$,this}get volatile(){return this.flags.volatile=!0,this}timeout($){return this.flags.timeout=$,this}onAny($){return this._anyListeners=this._anyListeners||[],this._anyListeners.push($),this}prependAny($){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift($),this}offAny($){if(!this._anyListeners)return this;if($){let Z=this._anyListeners;for(let J=0;J<Z.length;J++)if($===Z[J])return Z.splice(J,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing($){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push($),this}prependAnyOutgoing($){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift($),this}offAnyOutgoing($){if(!this._anyOutgoingListeners)return this;if($){let Z=this._anyOutgoingListeners;for(let J=0;J<Z.length;J++)if($===Z[J])return Z.splice(J,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners($){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){let Z=this._anyOutgoingListeners.slice();for(let J of Z)J.apply(this,$.data)}}}function a0($){$=$||{},this.ms=$.min||100,this.max=$.max||1e4,this.factor=$.factor||2,this.jitter=$.jitter>0&&$.jitter<=1?$.jitter:0,this.attempts=0}a0.prototype.duration=function(){var $=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var Z=Math.random(),J=Math.floor(Z*this.jitter*$);$=(Math.floor(Z*10)&1)==0?$-J:$+J}return Math.min($,this.max)|0};a0.prototype.reset=function(){this.attempts=0};a0.prototype.setMin=function($){this.ms=$};a0.prototype.setMax=function($){this.max=$};a0.prototype.setJitter=function($){this.jitter=$};var a2=y(l0(),1),r2=y(f1(),1),H1=r2.default("socket.io-client:manager");class B6 extends a2.Emitter{constructor($,Z){var J;super();if(this.nsps={},this.subs=[],$&&typeof $==="object")Z=$,$=void 0;Z=Z||{},Z.path=Z.path||"/socket.io",this.opts=Z,Q0(this,Z),this.reconnection(Z.reconnection!==!1),this.reconnectionAttempts(Z.reconnectionAttempts||1/0),this.reconnectionDelay(Z.reconnectionDelay||1000),this.reconnectionDelayMax(Z.reconnectionDelayMax||5000),this.randomizationFactor((J=Z.randomizationFactor)!==null&&J!==void 0?J:0.5),this.backoff=new a0({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(Z.timeout==null?20000:Z.timeout),this._readyState="closed",this.uri=$;let G=Z.parser||G$;if(this.encoder=new G.Encoder,this.decoder=new G.Decoder,this._autoConnect=Z.autoConnect!==!1,this._autoConnect)this.open()}reconnection($){if(!arguments.length)return this._reconnection;if(this._reconnection=!!$,!$)this.skipReconnect=!0;return this}reconnectionAttempts($){if($===void 0)return this._reconnectionAttempts;return this._reconnectionAttempts=$,this}reconnectionDelay($){var Z;if($===void 0)return this._reconnectionDelay;return this._reconnectionDelay=$,(Z=this.backoff)===null||Z===void 0||Z.setMin($),this}randomizationFactor($){var Z;if($===void 0)return this._randomizationFactor;return this._randomizationFactor=$,(Z=this.backoff)===null||Z===void 0||Z.setJitter($),this}reconnectionDelayMax($){var Z;if($===void 0)return this._reconnectionDelayMax;return this._reconnectionDelayMax=$,(Z=this.backoff)===null||Z===void 0||Z.setMax($),this}timeout($){if(!arguments.length)return this._timeout;return this._timeout=$,this}maybeReconnectOnOpen(){if(!this._reconnecting&&this._reconnection&&this.backoff.attempts===0)this.reconnect()}open($){if(H1("readyState %s",this._readyState),~this._readyState.indexOf("open"))return this;H1("opening %s",this.uri),this.engine=new V6(this.uri,this.opts);let Z=this.engine,J=this;this._readyState="opening",this.skipReconnect=!1;let G=P1(Z,"open",function(){J.onopen(),$&&$()}),Y=(Q)=>{if(H1("error"),this.cleanup(),this._readyState="closed",this.emitReserved("error",Q),$)$(Q);else this.maybeReconnectOnOpen()},X=P1(Z,"error",Y);if(this._timeout!==!1){let Q=this._timeout;H1("connect attempt will timeout after %d",Q);let z=this.setTimeoutFn(()=>{H1("connect attempt timed out after %d",Q),G(),Y(Error("timeout")),Z.close()},Q);if(this.opts.autoUnref)z.unref();this.subs.push(()=>{this.clearTimeoutFn(z)})}return this.subs.push(G),this.subs.push(X),this}connect($){return this.open($)}onopen(){H1("open"),this.cleanup(),this._readyState="open",this.emitReserved("open");let $=this.engine;this.subs.push(P1($,"ping",this.onping.bind(this)),P1($,"data",this.ondata.bind(this)),P1($,"error",this.onerror.bind(this)),P1($,"close",this.onclose.bind(this)),P1(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata($){try{this.decoder.add($)}catch(Z){this.onclose("parse error",Z)}}ondecoded($){X0(()=>{this.emitReserved("packet",$)},this.setTimeoutFn)}onerror($){H1("error",$),this.emitReserved("error",$)}socket($,Z){let J=this.nsps[$];if(!J)J=new F6(this,$,Z),this.nsps[$]=J;else if(this._autoConnect&&!J.active)J.connect();return J}_destroy($){let Z=Object.keys(this.nsps);for(let J of Z)if(this.nsps[J].active){H1("socket %s is still active, skipping close",J);return}this._close()}_packet($){H1("writing packet %j",$);let Z=this.encoder.encode($);for(let J=0;J<Z.length;J++)this.engine.write(Z[J],$.options)}cleanup(){H1("cleanup"),this.subs.forEach(($)=>$()),this.subs.length=0,this.decoder.destroy()}_close(){H1("disconnect"),this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close")}disconnect(){return this._close()}onclose($,Z){var J;if(H1("closed due to %s",$),this.cleanup(),(J=this.engine)===null||J===void 0||J.close(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",$,Z),this._reconnection&&!this.skipReconnect)this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;let $=this;if(this.backoff.attempts>=this._reconnectionAttempts)H1("reconnect failed"),this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{let Z=this.backoff.duration();H1("will wait %dms before reconnect attempt",Z),this._reconnecting=!0;let J=this.setTimeoutFn(()=>{if($.skipReconnect)return;if(H1("attempting reconnect"),this.emitReserved("reconnect_attempt",$.backoff.attempts),$.skipReconnect)return;$.open((G)=>{if(G)H1("reconnect attempt error"),$._reconnecting=!1,$.reconnect(),this.emitReserved("reconnect_error",G);else H1("reconnect success"),$.onreconnect()})},Z);if(this.opts.autoUnref)J.unref();this.subs.push(()=>{this.clearTimeoutFn(J)})}}onreconnect(){let $=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",$)}}var s2=y(f1(),1),o2=s2.default("socket.io-client"),L6={};function V7($,Z){if(typeof $==="object")Z=$,$=void 0;Z=Z||{};let J=g2($,Z.path||"/socket.io"),G=J.source,Y=J.id,X=J.path,Q=L6[Y]&&X in L6[Y].nsps,z=Z.forceNew||Z["force new connection"]||Z.multiplex===!1||Q,H;if(z)o2("ignoring socket cache for %s",G),H=new B6(G,Z);else{if(!L6[Y])o2("new io instance for %s",G),L6[Y]=new B6(G,Z);H=L6[Y]}if(J.query&&!Z.query)Z.query=J.queryKey;return H.socket(J.path,Z)}Object.assign(V7,{Manager:B6,Socket:F6,io:V7,connect:V7});var t2=require("react");var ZU=t2.createContext(null),e2=ZU;function Y$($){return{all:$=$||new Map,on:function(Z,J){var G=$.get(Z);G?G.push(J):$.set(Z,[J])},off:function(Z,J){var G=$.get(Z);G&&(J?G.splice(G.indexOf(J)>>>0,1):$.set(Z,[]))},emit:function(Z,J){var G=$.get(Z);G&&G.slice().map(function(Y){Y(J)}),(G=$.get("*"))&&G.slice().map(function(Y){Y(Z,J)})}}}var $G=require("react"),JU=Y$(),GU=$G.createContext(JU),ZG=GU;var YU=({card:$,data:Z,children:J,useSocketioSupport:G=!1,useCentrifugeSupport:Y=!1,useMittSupport:X=!1,centrifugeChannel:Q=void 0,methods:z=void 0})=>{let H=U5();if(H)console.log("[PieCard] Rendering card:",$),console.log("[PieCard] Card data:",Z),console.log("[PieCard] Component name:",Z?.name),console.log("[PieCard] Real-time support:",{socketio:G,centrifuge:Y,mitt:X,centrifugeChannel:Q}),console.log("[PieCard] Methods:",z?Object.keys(z):"none"),console.log("[PieCard] Has children:",!!J);let K=w0.useContext(e2),U=w0.useContext(rZ),O=w0.useContext(ZG);if(w0.useEffect(()=>{if(!K||!G||!z||!Z.name){if(H&&G)console.log("[PieCard] Socket.IO setup skipped:",{hasSocket:!!K,useSocketioSupport:G,hasMethods:!!z,hasDataName:!!Z?.name});return}return Object.entries(z).forEach(([W,L])=>{let B=`pie${W}_${Z.name}`;if(H)console.log(`[PieCard] Socket.IO registering event: ${B}`);K.on(B,L)}),()=>{Object.entries(z).forEach(([W,L])=>{let B=`pie${W}_${Z.name}`;if(H)console.log(`[PieCard] Socket.IO unregistering event: ${B}`);K.off(B,L)})}},[K,z,Z.name]),w0.useEffect(()=>{if(!U||!Y||!Q||!z||!Z.name){if(H&&Y)console.log("[PieCard] Centrifuge setup skipped:",{hasCentrifuge:!!U,useCentrifugeSupport:Y,hasCentrifugeChannel:!!Q,hasMethods:!!z,hasDataName:!!Z?.name});return}let W=Object.entries(z).map(([L,B])=>{let V=`pie${L}_${Z.name}_${Q}`;if(H)console.log(`[PieCard] Centrifuge subscribing to channel: ${V}`);let R=U.newSubscription(V);return R.on("publication",(T)=>{if(H)console.log(`[PieCard] Centrifuge received data on ${V}:`,T.data);B(T.data)}),R.subscribe(),R});return()=>{W.forEach((L)=>{if(H)console.log("[PieCard] Centrifuge unsubscribing from channel");L.unsubscribe(),U.removeSubscription(L)})}},[U,Q,z,Z.name]),w0.useEffect(()=>{if(!O||!X||!z||!Z.name){if(H&&X)console.log("[PieCard] Mitt setup skipped:",{hasMitt:!!O,useMittSupport:X,hasMethods:!!z,hasDataName:!!Z?.name});return}return Object.entries(z).forEach(([W,L])=>{let B=`pie${W}_${Z.name}`;if(H)console.log(`[PieCard] Mitt registering event: ${B}`);O.on(B,L)}),()=>{Object.entries(z).forEach(([W,L])=>{let B=`pie${W}_${Z.name}`;if(H)console.log(`[PieCard] Mitt unregistering event: ${B}`);O.off(B,L)})}},[O,z,Z.name]),H)console.log("[PieCard] Rendering complete, returning children");return J},r1=YU;var XU=new Map;var JG=($)=>{return XU.get($)};var A7=require("react");var GG=require("react"),W7=require("react/jsx-runtime"),QU=GG.createContext(W7.jsx(W7.Fragment,{})),YG=QU;var X$=require("react/jsx-runtime");function HU({uiConfig:$,setUiAjaxConfiguration:Z}){let J=A7.useContext(YG),G=U5();if(G)console.log("[UI] Rendering component:",$.card),console.log("[UI] Component data:",$.data),console.log("[UI] Component content:",$.content),console.log("[UI] Has setUiAjaxConfiguration:",!!Z);let Y=JG($.card);if(!Y?.component){if(G)console.warn(`[UI] Component not found in registry: ${$.card}`),console.log("[UI] Returning fallback component");return J}if(G)console.log("[UI] Found component in registry:",{name:Y.name,isLazy:Y.isLazy,hasMetadata:!!Y.metadata});let X=Y.component,Q=X$.jsx(X,{data:$.data,content:$.content,setUiAjaxConfiguration:Z});if(Y.isLazy){if(G)console.log("[UI] Rendering lazy component with Suspense:",Y.name);return X$.jsx(A7.Suspense,{fallback:Y.fallback??J,children:Q},`${Y.name}`)}if(G)console.log("[UI] Rendering component directly:",Y.name);return Q}var E0=HU;function Q$($=1000){return new Promise((Z)=>{if(typeof window>"u"){Z();return}let J=()=>{if(typeof window.sid<"u")Z();else setTimeout(J,$)};J()})}var F7=($,Z={},J=[],G)=>{let Y=U5();if(Y)console.log("Registering AJAX: ",G,Z,J);if(!G||!$){if(Y)console.warn("Registration FAILED: pathname or setUiAjaxConfiguration is missing!");return()=>{}}return async(X={})=>{if(typeof window>"u"||typeof document>"u"){if(Y)console.warn("getAjaxSubmit called on server, skipping DOM-dependent logic");return}if(J.includes("sid"))await Q$();let Q=new FormData;for(let[H,K]of Object.entries({...Z,...X}))Q.append(H,K);for(let H of J)if(H==="sid"){if(!window.sid)throw Error("SocketIO isn't initialized properly");Q.append("sid",window.sid)}else{let K=document.getElementsByName(H);if(!K.length){if(Y)console.warn(`No input found with name ${H}`);continue}let U=K[0];if(U instanceof HTMLInputElement)if(U.type==="file"&&U.files)Array.from(U.files).forEach((O)=>Q.append(H,O));else Q.append(H,U.value);else if(U instanceof HTMLTextAreaElement)Q.append(H,U.value)}let z=vZ()+"api/ajax_content"+G;return $(null),await fetch(z,{method:"POST",body:Q}).then(async(H)=>{let U=(H.headers.get("content-type")||"").includes("application/json");if(!!H.body?.getReader&&!U){let W=H.body.getReader(),L=new TextDecoder,B="";while(!0){let{done:V,value:R}=await W.read();if(V)break;B+=L.decode(R,{stream:!0});let T=B.split(`
|
|
35
|
+
`);B=T.pop()??"";for(let P of T){let q=P.trim();if(!q)continue;try{let N=JSON.parse(q);$([N])}catch(N){if(Y)console.warn("Failed to parse streamed line:",q)}}}if(B.trim())try{let V=JSON.parse(B);$([V])}catch(V){if(Y)console.warn("Failed to parse final streamed line:",B)}return{}}else{let W=await H.json();return $(W),W}}).catch((H)=>{if(Y)console.error("AJAX request failed:",H);return $(null),H})}};var T1=require("react");var B7=require("react"),XG=require("react/jsx-runtime");function H$($){let[Z,J]=B7.useState(!1),G=B7.useRef(null);return XG.jsx("textarea",{ref:G,...$,onKeyUp:()=>{J(!1)},onKeyDown:(z)=>{if(z.key==="Enter"&&z.shiftKey){if(J(!0),G.current&&typeof window<"u"){let H=window.getComputedStyle(G.current),K=parseFloat(H.lineHeight);G.current.style.height=G.current.scrollHeight+K+"px"}}if(z.key==="Backspace"){if(J(!0),G.current&&typeof window<"u"){let H=window.getComputedStyle(G.current),K=parseFloat(H.lineHeight);if(G.current.scrollHeight>K)G.current.style.height=G.current.scrollHeight-K+"px"}}$.onKeyDown&&$.onKeyDown(z)},onBlur:(z)=>{J(!1),$.onBlur&&$.onBlur(z)},style:{resize:Z?"vertical":"none",overflowY:"auto",...$.style}})}var q7=require("react");var z$=require("react/jsx-runtime"),zU=()=>z$.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:z$.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 12L3.269 3.126A59.768 59.768 0 0121.485 12 59.77 59.77 0 013.27 20.876L5.999 12zm0 0h7.5"})}),QG=zU;var L7=require("react/jsx-runtime"),KU=({type:$="button",onClick:Z,icons:J})=>{let G=q7.useRef(null),Y=q7.useCallback(()=>{let Q=G.current;if(Q)Q.style.transform="scale(0.8)",setTimeout(()=>{Q.style.transform="scale(1)"},600)},[]);return L7.jsx("button",{ref:G,type:$,onClick:(Q)=>{if(Z)Z(Q);Y()},className:"mr-1.5 rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",style:{transition:"transform 300ms ease"},children:J.sendIcon?L7.jsx("img",{src:J.sendIcon,alt:""}):L7.jsx(QG,{})})},HG=KU;var K$=require("react/jsx-runtime"),UU=()=>K$.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:K$.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M18.375 12.739l-7.693 7.693a4.5 4.5 0 01-6.364-6.364l10.94-10.94A3 3 0 1119.5 7.372L8.552 18.32m.009-.01l-.01.01m5.699-9.941l-7.81 7.81a1.5 1.5 0 002.112 2.13"})}),zG=UU;var D5=require("react/jsx-runtime"),OU=({name:$,accept:Z,fileInputRef:J,onSelectFile:G,icons:Y})=>{return D5.jsxs("button",{className:"rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",type:"button",onClick:()=>{if(J.current)J.current.click()},children:[D5.jsx("input",{name:$+"__pie__file",className:"hidden",type:"file",accept:Z,ref:J,onChange:(X)=>{if(X.target.files)G(X.target.files[0])}}),Y.attachFileIcon?D5.jsx("img",{src:Y.attachFileIcon,alt:""}):D5.jsx(zG,{})]})},KG=OU;var U$=require("react/jsx-runtime"),VU=()=>U$.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5 text-gray-500",children:U$.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"})}),UG=VU;var O$=require("react/jsx-runtime"),WU=()=>O$.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:O$.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18L18 6M6 6l12 12"})}),N7=WU;var v0=require("react/jsx-runtime"),AU=({name:$,selectedFile:Z,onDropFile:J})=>{return v0.jsxs("div",{className:"flex w-full cursor-default flex-row items-center gap-2",children:[v0.jsx(UG,{}),v0.jsx("span",{className:"flex-1",children:Z.name}),v0.jsx("input",{type:"hidden",name:$,value:""}),v0.jsx("button",{className:"rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",type:"button",onClick:J,children:v0.jsx(N7,{})})]})},OG=AU;var q6=require("react/jsx-runtime"),FU=()=>q6.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"size-5",children:[q6.jsx("path",{d:"M8 5C8 2.79086 9.79086 1 12 1C14.2091 1 16 2.79086 16 5V12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12V5Z"}),q6.jsx("path",{d:"M6.25 11.8438V12C6.25 13.525 6.8558 14.9875 7.93414 16.0659C9.01247 17.1442 10.475 17.75 12 17.75C13.525 17.75 14.9875 17.1442 16.0659 16.0659C17.1442 14.9875 17.75 13.525 17.75 12V11.8438C17.75 11.2915 18.1977 10.8438 18.75 10.8438H19.25C19.8023 10.8438 20.25 11.2915 20.25 11.8437V12C20.25 14.188 19.3808 16.2865 17.8336 17.8336C16.5842 19.0831 14.9753 19.8903 13.25 20.1548V22C13.25 22.5523 12.8023 23 12.25 23H11.75C11.1977 23 10.75 22.5523 10.75 22V20.1548C9.02471 19.8903 7.41579 19.0831 6.16637 17.8336C4.61919 16.2865 3.75 14.188 3.75 12V11.8438C3.75 11.2915 4.19772 10.8438 4.75 10.8438H5.25C5.80228 10.8438 6.25 11.2915 6.25 11.8438Z"})]}),VG=FU;var T5=require("react/jsx-runtime"),BU=({isListening:$,toggleListening:Z,icons:J})=>{return T5.jsx("button",{className:"rounded-md p-1 text-gray-500 ring-0 hover:bg-gray-100 disabled:opacity-40 disabled:hover:bg-transparent",type:"button",onClick:Z,children:$?J.cancelIcon?T5.jsx("img",{src:J.cancelIcon,alt:""}):T5.jsx(N7,{}):J.voiceRecordingIcon?T5.jsx("img",{src:J.voiceRecordingIcon,alt:""}):T5.jsx(VG,{})})},WG=BU;var N6=require("react/jsx-runtime"),LU=({option:$,onClickOption:Z})=>{return N6.jsxs("div",{className:"flex w-fit cursor-pointer flex-row place-content-center items-center gap-1 rounded-md border border-black bg-white px-2 py-1 text-black",onClick:()=>{Z($.title)},style:$.sx,children:[$.iconPosition==="start"&&N6.jsx("img",{src:$.iconUrl,alt:""}),$.title,$.iconPosition==="end"&&N6.jsx("img",{src:$.iconUrl,alt:""})]})},M7=LU;var V$=require("react/jsx-runtime"),qU=({options:$,handleOptionClick:Z})=>{return V$.jsx("div",{className:"flex w-full flex-row flex-wrap justify-start gap-[5px]",children:$.map((J,G)=>{return V$.jsx(M7,{option:J,onClickOption:Z},G)})})},W$=qU;var D1=require("react/jsx-runtime"),NU=T1.forwardRef(({name:$,defaultValue:Z,defaultOptions:J,isArea:G,placeholder:Y,fileAccept:X,optionsPosition:Q,icons:z,handleOptionClick:H,handleSendMessage:K,sx:U},O)=>{let W=T1.useRef(null),[L,B]=T1.useState(null),[V,R]=T1.useState(Z),[T,P]=T1.useState(J),[q,N]=T1.useState(!1);T1.useImperativeHandle(O,()=>({clear:()=>{if(R(""),B(null),W.current)W.current.value=""},setValue:(S)=>R(S),setOptions:(S)=>P(S)})),T1.useEffect(()=>{R(Z)},[Z]);let v=()=>{};return D1.jsxs("div",{className:"flex flex-col items-center gap-[0.1rem]",id:$+"_chat_input",style:U,children:[T&&Q==="top"&&D1.jsx(W$,{options:T,handleOptionClick:H}),D1.jsx("div",{className:"stretch relative flex size-full flex-1 flex-row items-stretch gap-3 last:mb-2 md:mx-4 md:flex-col md:last:mb-6 lg:mx-auto",children:D1.jsxs("div",{className:"flex w-full grow flex-row items-center rounded-md bg-transparent",children:[L?D1.jsx(OG,{name:$,selectedFile:L,onDropFile:()=>{if(B(null),W.current)W.current.value=""}}):!G?D1.jsx("input",{name:$,value:V,onChange:(S)=>R(S.target.value),onKeyDown:(S)=>{if(S.key==="Enter")S.preventDefault(),K()},tabIndex:0,placeholder:Y,className:"m-0 w-full resize-none border-0 bg-transparent outline-none",style:{maxHeight:200,height:"100%",overflowY:"hidden"}}):D1.jsx(H$,{name:$,value:V,onChange:(S)=>R(S.target.value),onKeyDown:(S)=>{if(S.key==="Enter"&&!S.shiftKey)S.preventDefault(),K()},tabIndex:0,rows:2,placeholder:Y,className:"m-0 w-full resize-none border-0 bg-transparent p-0 pl-2 pr-7 outline-none md:pl-0",style:{maxHeight:200,height:"100%",minHeight:24}}),D1.jsx(WG,{isListening:q,toggleListening:v,icons:z}),D1.jsx(KG,{name:$,fileInputRef:W,accept:X,onSelectFile:B,icons:z}),D1.jsx(HG,{onClick:K,icons:z})]})}),T&&Q==="bottom"&&D1.jsx(W$,{options:T,handleOptionClick:H})]})}),AG=NU;var V4=y(O4(),1),G5=y(O4(),1),u7=V4.default.default||V4.default;var c7=require("react");var l7=require("react"),YX=require("react/jsx-runtime");function SW({children:$}){let[Z,J]=l7.useState($);return l7.useEffect(()=>{J($)},[$]),YX.jsx("div",{className:"max-w-full first:mt-0",children:Z})}var GX=SW;var W4=require("react/jsx-runtime"),xW=()=>W4.jsx("svg",{width:"30",height:"30",viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",children:W4.jsx("path",{d:"m 8 1 c -1.65625 0 -3 1.34375 -3 3 s 1.34375 3 3 3 s 3 -1.34375 3 -3 s -1.34375 -3 -3 -3 z m -1.5 7 c -2.492188 0 -4.5 2.007812 -4.5 4.5 v 0.5 c 0 1.109375 0.890625 2 2 2 h 8 c 1.109375 0 2 -0.890625 2 -2 v -0.5 c 0 -2.492188 -2.007812 -4.5 -4.5 -4.5 z m 0 0",fill:"#2e3436"})}),XX=xW;var S6=require("react/jsx-runtime");function CW({username:$,avatar:Z}){return S6.jsx("div",{className:"w-[30px]",children:S6.jsx("div",{className:"relative flex size-[30px] items-center justify-center rounded-sm p-1 text-white",children:Z?S6.jsx("img",{src:Z,className:"absolute inset-0 rounded",alt:$}):S6.jsx(XX,{})})})}var A4=CW;var M1=require("react/jsx-runtime"),_W=({message:$,handleOptionClick:Z,setUiAjaxConfiguration:J})=>{let[G,Y]=c7.useState(!1);return c7.useEffect(()=>{let X=setTimeout(()=>{if(G)Y(!1)},1000);return()=>clearTimeout(X)},[G]),M1.jsx("div",{className:"group w-full border-b border-black/10",id:$.id,children:M1.jsxs("div",{className:`flex gap-4 p-4 text-base md:max-w-2xl md:gap-6 md:py-6 lg:max-w-3xl xl:max-w-5xl ${$.align==="center"?"m-auto":""} ${$.align==="right"?"ml-auto justify-end":""} ${$.align==="left"?"mr-auto":""} `,children:[($.align==="left"||$.align==="center")&&M1.jsx("div",{className:"relative flex shrink-0 flex-col items-end",children:M1.jsx(A4,{username:$.username,avatar:$.avatar})}),M1.jsxs("div",{className:"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]",children:[M1.jsx("div",{className:`markdown light prose w-full break-words dark:prose-invert first:mt-0 ${$.align==="right"?"flex justify-end self-end":""}`,children:typeof $.content==="string"?$.parseMode.toLowerCase()==="markdown"?M1.jsx(GX,{children:$.content},Date.now()+Math.random()):$.parseMode.toLowerCase()==="html"?u7($.content):$.content:M1.jsx(E0,{uiConfig:$.content,setUiAjaxConfiguration:J})}),M1.jsx("div",{className:"flex flex-row flex-wrap justify-start gap-1",children:$.options.map((X,Q)=>M1.jsx(M7,{onClickOption:Z,option:X},Q))})]}),$.align==="right"&&M1.jsx("div",{className:"relative flex shrink-0 flex-col items-end",children:M1.jsx(A4,{username:$.username,avatar:$.avatar})})]})})},QX=_W;var Z0=require("react"),F4=require("react/jsx-runtime"),yW=Z0.forwardRef(({name:$,handleOptionClick:Z,defaultMessages:J,sx:G,setUiAjaxConfiguration:Y},X)=>{let[Q,z]=Z0.useState(J),H=Z0.useRef(null),K=()=>{if(H.current)H.current.scrollTop=H.current.scrollHeight};return Z0.useEffect(()=>{K()},[Q]),Z0.useImperativeHandle(X,()=>({setMessages:(U)=>z(U),addMessage:(U)=>z((O)=>[...O,U]),scrollToBottom:K})),F4.jsx("div",{id:$+"_messages",className:"flex flex-col items-center overflow-y-scroll",style:G,ref:H,children:Q.map((U)=>F4.jsx(QX,{message:U,handleOptionClick:Z,setUiAjaxConfiguration:Y},U.id))})}),HX=yW;var A0=require("react"),C5=require("react/jsx-runtime"),gW=({data:$,setUiAjaxConfiguration:Z})=>{let{name:J,defaultValue:G,defaultMessages:Y,defaultOptions:X,isArea:Q,fileAccept:z,placeholder:H,icons:K,optionsPosition:U,sxMap:O={container:{},chatInput:{},messages:{}},depsNames:W,pathname:L,kwargs:B,useSocketioSupport:V,useCentrifugeSupport:R,centrifugeChannel:T}=$,P=A0.useRef(null),q=A0.useRef(null),[N,v]=A0.useState(!1),S=A0.useMemo(()=>F7(Z,B,W,L),[Z,B,W,L]);A0.useEffect(()=>{if(N)requestAnimationFrame(()=>{S(),v(!1)})},[N]);let s=(d)=>{if(P.current)P.current.setValue(d),v(!0)},R1=()=>{if(P.current)P.current.clear()},y1=(d)=>{if(P.current)P.current.setOptions(d.options)},G0=(d)=>{if(q.current)q.current.addMessage(d.message)},l=(d)=>{if(q.current)q.current.setMessages(d.messages)},K5=()=>{v(!0)};return C5.jsx(r1,{card:"ChatCard",data:$,methods:{clearInput:R1,setOptions:y1,addMessage:G0,setMessages:l},useSocketioSupport:V,useCentrifugeSupport:R,centrifugeChannel:T,children:C5.jsxs("div",{className:"flex size-full flex-col",style:O.container,children:[C5.jsx(HX,{ref:q,name:J,defaultMessages:Y,sx:O.messages,handleOptionClick:s,setUiAjaxConfiguration:Z}),C5.jsx(AG,{ref:P,name:J,isArea:Q,defaultOptions:X,placeholder:H,defaultValue:G,fileAccept:z,sx:O.chatInput,handleSendMessage:K5,handleOptionClick:s,optionsPosition:U,icons:K})]})})},B4=gW;var zz=require("react");var Kz=y(B9(),1);var Hz=y(B9(),1);function L9($){if(!$)return{};let Z={...$};if("animationName"in Z&&typeof Z.animationName==="object"){let J="radiumAnimation_"+Math.random().toString(36).substring(2,8);Z.animationName=Hz.default.keyframes(Z.animationName,J)}return Z}var c5=require("react/jsx-runtime"),sN=({data:$,setUiAjaxConfiguration:Z})=>{let{name:J,title:G,iconUrl:Y,iconPosition:X,sx:Q,pathname:z,kwargs:H,depsNames:K}=$,U=zz.useMemo(()=>F7(Z,H,K,z),[Z,H,K,z]);return c5.jsx(r1,{card:"AjaxButtonCard",data:$,children:c5.jsxs("button",{id:J,className:"box-border flex min-h-12 w-full min-w-min cursor-pointer items-center justify-center rounded-[16px] border border-[#080318] bg-white text-center font-[TTForsTrial] text-[#080318] hover:bg-neutral-300",value:J,onClick:()=>U(),style:L9(Q),type:"button",children:[Y&&X==="start"&&c5.jsx("img",{src:Y,alt:""}),u7(G),Y&&X==="end"&&c5.jsx("img",{src:Y,alt:""})]})})},NZ=Kz.default(sN);var Uz=y(B9(),1);var q9=require("react/jsx-runtime"),tN=({data:$,content:Z,setUiAjaxConfiguration:J})=>{let{name:G,sx:Y}=$;return q9.jsx(r1,{card:G,data:$,children:q9.jsx("div",{style:L9(Y),id:G,children:Z.map((X,Q)=>{return q9.jsx(E0,{uiConfig:X,setUiAjaxConfiguration:J},`children-${Q}`)})})})},MZ=Uz.default(tN);var RZ=require("react/jsx-runtime"),eN=({data:$,content:Z,setUiAjaxConfiguration:J})=>{let{name:G}=$;return RZ.jsx(r1,{card:G,data:$,children:Z.map((Y,X)=>{return RZ.jsx(E0,{uiConfig:Y,setUiAjaxConfiguration:J},`children-${X}`)})})},IZ=eN;
|