vue-wiguet-chatweb 0.0.33 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,6 @@
1
- (function(re,u){typeof exports=="object"&&typeof module<"u"?u(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],u):(re=typeof globalThis<"u"?globalThis:re||self,u(re["vue-wiguet-chatweb"]={},re.Vue))})(this,function(re,u){"use strict";let Ye;const kr=new Uint8Array(16);function Er(){if(!Ye&&(Ye=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Ye))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Ye(kr)}const A=[];for(let t=0;t<256;++t)A.push((t+256).toString(16).slice(1));function Tr(t,e=0){return A[t[e+0]]+A[t[e+1]]+A[t[e+2]]+A[t[e+3]]+"-"+A[t[e+4]]+A[t[e+5]]+"-"+A[t[e+6]]+A[t[e+7]]+"-"+A[t[e+8]]+A[t[e+9]]+"-"+A[t[e+10]]+A[t[e+11]]+A[t[e+12]]+A[t[e+13]]+A[t[e+14]]+A[t[e+15]]}const ln={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function _r(t,e,n){if(ln.randomUUID&&!e&&!t)return ln.randomUUID();t=t||{};const s=t.random||(t.rng||Er)();return s[6]=s[6]&15|64,s[8]=s[8]&63|128,Tr(s)}var Or=Object.defineProperty,Cr=(t,e,n)=>e in t?Or(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,Nr=(t,e,n)=>(Cr(t,e+"",n),n);const Fe={LF:`
2
- `,NULL:"\0"};class ie{constructor(e){const{command:n,headers:s,body:r,binaryBody:i,escapeHeaderValues:o,skipContentLengthHeader:a}=e;this.command=n,this.headers=Object.assign({},s||{}),i?(this._binaryBody=i,this.isBinaryBody=!0):(this._body=r||"",this.isBinaryBody=!1),this.escapeHeaderValues=o||!1,this.skipContentLengthHeader=a||!1}get body(){return!this._body&&this.isBinaryBody&&(this._body=new TextDecoder().decode(this._binaryBody)),this._body||""}get binaryBody(){return!this._binaryBody&&!this.isBinaryBody&&(this._binaryBody=new TextEncoder().encode(this._body)),this._binaryBody}static fromRawFrame(e,n){const s={},r=i=>i.replace(/^\s+|\s+$/g,"");for(const i of e.headers.reverse()){i.indexOf(":");const o=r(i[0]);let a=r(i[1]);n&&e.command!=="CONNECT"&&e.command!=="CONNECTED"&&(a=ie.hdrValueUnEscape(a)),s[o]=a}return new ie({command:e.command,headers:s,binaryBody:e.binaryBody,escapeHeaderValues:n})}toString(){return this.serializeCmdAndHeaders()}serialize(){const e=this.serializeCmdAndHeaders();return this.isBinaryBody?ie.toUnit8Array(e,this._binaryBody).buffer:e+this._body+Fe.NULL}serializeCmdAndHeaders(){const e=[this.command];this.skipContentLengthHeader&&delete this.headers["content-length"];for(const n of Object.keys(this.headers||{})){const s=this.headers[n];this.escapeHeaderValues&&this.command!=="CONNECT"&&this.command!=="CONNECTED"?e.push(`${n}:${ie.hdrValueEscape(`${s}`)}`):e.push(`${n}:${s}`)}return(this.isBinaryBody||!this.isBodyEmpty()&&!this.skipContentLengthHeader)&&e.push(`content-length:${this.bodyLength()}`),e.join(Fe.LF)+Fe.LF+Fe.LF}isBodyEmpty(){return this.bodyLength()===0}bodyLength(){const e=this.binaryBody;return e?e.length:0}static sizeOfUTF8(e){return e?new TextEncoder().encode(e).length:0}static toUnit8Array(e,n){const s=new TextEncoder().encode(e),r=new Uint8Array([0]),i=new Uint8Array(s.length+n.length+r.length);return i.set(s),i.set(n,s.length),i.set(r,s.length+n.length),i}static marshall(e){return new ie(e).serialize()}static hdrValueEscape(e){return e.replace(/\\/g,"\\\\").replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/:/g,"\\c")}static hdrValueUnEscape(e){return e.replace(/\\r/g,"\r").replace(/\\n/g,`
3
- `).replace(/\\c/g,":").replace(/\\\\/g,"\\")}}const un=0,Je=10,Ke=13,Ir=58;class xr{constructor(e,n){this.onFrame=e,this.onIncomingPing=n,this._encoder=new TextEncoder,this._decoder=new TextDecoder,this._token=[],this._initState()}parseChunk(e,n=!1){let s;if(typeof e=="string"?s=this._encoder.encode(e):s=new Uint8Array(e),n&&s[s.length-1]!==0){const r=new Uint8Array(s.length+1);r.set(s,0),r[s.length]=0,s=r}for(let r=0;r<s.length;r++){const i=s[r];this._onByte(i)}}_collectFrame(e){if(e!==un&&e!==Ke){if(e===Je){this.onIncomingPing();return}this._onByte=this._collectCommand,this._reinjectByte(e)}}_collectCommand(e){if(e!==Ke){if(e===Je){this._results.command=this._consumeTokenAsUTF8(),this._onByte=this._collectHeaders;return}this._consumeByte(e)}}_collectHeaders(e){if(e!==Ke){if(e===Je){this._setupCollectBody();return}this._onByte=this._collectHeaderKey,this._reinjectByte(e)}}_reinjectByte(e){this._onByte(e)}_collectHeaderKey(e){if(e===Ir){this._headerKey=this._consumeTokenAsUTF8(),this._onByte=this._collectHeaderValue;return}this._consumeByte(e)}_collectHeaderValue(e){if(e!==Ke){if(e===Je){this._results.headers.push([this._headerKey,this._consumeTokenAsUTF8()]),this._headerKey=void 0,this._onByte=this._collectHeaders;return}this._consumeByte(e)}}_setupCollectBody(){const e=this._results.headers.filter(n=>n[0]==="content-length")[0];e?(this._bodyBytesRemaining=parseInt(e[1],10),this._onByte=this._collectBodyFixedSize):this._onByte=this._collectBodyNullTerminated}_collectBodyNullTerminated(e){if(e===un){this._retrievedBody();return}this._consumeByte(e)}_collectBodyFixedSize(e){if(this._bodyBytesRemaining--===0){this._retrievedBody();return}this._consumeByte(e)}_retrievedBody(){this._results.binaryBody=this._consumeTokenAsRaw();try{this.onFrame(this._results)}catch(e){console.log("Ignoring an exception thrown by a frame handler. Original exception: ",e)}this._initState()}_consumeByte(e){this._token.push(e)}_consumeTokenAsUTF8(){return this._decoder.decode(this._consumeTokenAsRaw())}_consumeTokenAsRaw(){const e=new Uint8Array(this._token);return this._token=[],e}_initState(){this._results={command:void 0,headers:[],binaryBody:void 0},this._token=[],this._headerKey=void 0,this._onByte=this._collectFrame}}var te;(function(t){t[t.CONNECTING=0]="CONNECTING",t[t.OPEN=1]="OPEN",t[t.CLOSING=2]="CLOSING",t[t.CLOSED=3]="CLOSED"})(te=te||(te={}));var H;(function(t){t[t.ACTIVE=0]="ACTIVE",t[t.DEACTIVATING=1]="DEACTIVATING",t[t.INACTIVE=2]="INACTIVE"})(H=H||(H={}));class B{constructor(e){this.versions=e}supportedVersions(){return this.versions.join(",")}protocolVersions(){return this.versions.map(e=>`v${e.replace(".","")}.stomp`)}}B.V1_0="1.0",B.V1_1="1.1",B.V1_2="1.2",B.default=new B([B.V1_2,B.V1_1,B.V1_0]);function vr(t,e){t.terminate=function(){const n=()=>{};this.onerror=n,this.onmessage=n,this.onopen=n;const s=new Date,r=Math.random().toString().substring(2,8),i=this.onclose;this.onclose=o=>{const a=new Date().getTime()-s.getTime();e(`Discarded socket (#${r}) closed after ${a}ms, with code/reason: ${o.code}/${o.reason}`)},this.close(),i==null||i.call(t,{code:4001,reason:`Quick discarding socket (#${r}) without waiting for the shutdown sequence.`,wasClean:!1})}}class Mr{constructor(e,n,s){this._client=e,this._webSocket=n,this._connected=!1,this._serverFrameHandlers={CONNECTED:r=>{this.debug(`connected to server ${r.headers.server}`),this._connected=!0,this._connectedVersion=r.headers.version,this._connectedVersion===B.V1_2&&(this._escapeHeaderValues=!0),this._setupHeartbeat(r.headers),this.onConnect(r)},MESSAGE:r=>{const i=r.headers.subscription,o=this._subscriptions[i]||this.onUnhandledMessage,a=r,c=this,l=this._connectedVersion===B.V1_2?a.headers.ack:a.headers["message-id"];a.ack=(d={})=>c.ack(l,i,d),a.nack=(d={})=>c.nack(l,i,d),o(a)},RECEIPT:r=>{const i=this._receiptWatchers[r.headers["receipt-id"]];i?(i(r),delete this._receiptWatchers[r.headers["receipt-id"]]):this.onUnhandledReceipt(r)},ERROR:r=>{this.onStompError(r)}},this._counter=0,this._subscriptions={},this._receiptWatchers={},this._partialData="",this._escapeHeaderValues=!1,this._lastServerActivityTS=Date.now(),this.debug=s.debug,this.stompVersions=s.stompVersions,this.connectHeaders=s.connectHeaders,this.disconnectHeaders=s.disconnectHeaders,this.heartbeatIncoming=s.heartbeatIncoming,this.heartbeatOutgoing=s.heartbeatOutgoing,this.splitLargeFrames=s.splitLargeFrames,this.maxWebSocketChunkSize=s.maxWebSocketChunkSize,this.forceBinaryWSFrames=s.forceBinaryWSFrames,this.logRawCommunication=s.logRawCommunication,this.appendMissingNULLonIncoming=s.appendMissingNULLonIncoming,this.discardWebsocketOnCommFailure=s.discardWebsocketOnCommFailure,this.onConnect=s.onConnect,this.onDisconnect=s.onDisconnect,this.onStompError=s.onStompError,this.onWebSocketClose=s.onWebSocketClose,this.onWebSocketError=s.onWebSocketError,this.onUnhandledMessage=s.onUnhandledMessage,this.onUnhandledReceipt=s.onUnhandledReceipt,this.onUnhandledFrame=s.onUnhandledFrame}get connectedVersion(){return this._connectedVersion}get connected(){return this._connected}start(){const e=new xr(n=>{const s=ie.fromRawFrame(n,this._escapeHeaderValues);this.logRawCommunication||this.debug(`<<< ${s}`),(this._serverFrameHandlers[s.command]||this.onUnhandledFrame)(s)},()=>{this.debug("<<< PONG")});this._webSocket.onmessage=n=>{if(this.debug("Received data"),this._lastServerActivityTS=Date.now(),this.logRawCommunication){const s=n.data instanceof ArrayBuffer?new TextDecoder().decode(n.data):n.data;this.debug(`<<< ${s}`)}e.parseChunk(n.data,this.appendMissingNULLonIncoming)},this._webSocket.onclose=n=>{this.debug(`Connection closed to ${this._webSocket.url}`),this._cleanUp(),this.onWebSocketClose(n)},this._webSocket.onerror=n=>{this.onWebSocketError(n)},this._webSocket.onopen=()=>{const n=Object.assign({},this.connectHeaders);this.debug("Web Socket Opened..."),n["accept-version"]=this.stompVersions.supportedVersions(),n["heart-beat"]=[this.heartbeatOutgoing,this.heartbeatIncoming].join(","),this._transmit({command:"CONNECT",headers:n})}}_setupHeartbeat(e){if(e.version!==B.V1_1&&e.version!==B.V1_2||!e["heart-beat"])return;const[n,s]=e["heart-beat"].split(",").map(r=>parseInt(r,10));if(this.heartbeatOutgoing!==0&&s!==0){const r=Math.max(this.heartbeatOutgoing,s);this.debug(`send PING every ${r}ms`),this._pinger=setInterval(()=>{this._webSocket.readyState===te.OPEN&&(this._webSocket.send(Fe.LF),this.debug(">>> PING"))},r)}if(this.heartbeatIncoming!==0&&n!==0){const r=Math.max(this.heartbeatIncoming,n);this.debug(`check PONG every ${r}ms`),this._ponger=setInterval(()=>{const i=Date.now()-this._lastServerActivityTS;i>r*2&&(this.debug(`did not receive server activity for the last ${i}ms`),this._closeOrDiscardWebsocket())},r)}}_closeOrDiscardWebsocket(){this.discardWebsocketOnCommFailure?(this.debug("Discarding websocket, the underlying socket may linger for a while"),this.discardWebsocket()):(this.debug("Issuing close on the websocket"),this._closeWebsocket())}forceDisconnect(){this._webSocket&&(this._webSocket.readyState===te.CONNECTING||this._webSocket.readyState===te.OPEN)&&this._closeOrDiscardWebsocket()}_closeWebsocket(){this._webSocket.onmessage=()=>{},this._webSocket.close()}discardWebsocket(){typeof this._webSocket.terminate!="function"&&vr(this._webSocket,e=>this.debug(e)),this._webSocket.terminate()}_transmit(e){const{command:n,headers:s,body:r,binaryBody:i,skipContentLengthHeader:o}=e,a=new ie({command:n,headers:s,body:r,binaryBody:i,escapeHeaderValues:this._escapeHeaderValues,skipContentLengthHeader:o});let c=a.serialize();if(this.logRawCommunication?this.debug(`>>> ${c}`):this.debug(`>>> ${a}`),this.forceBinaryWSFrames&&typeof c=="string"&&(c=new TextEncoder().encode(c)),typeof c!="string"||!this.splitLargeFrames)this._webSocket.send(c);else{let l=c;for(;l.length>0;){const d=l.substring(0,this.maxWebSocketChunkSize);l=l.substring(this.maxWebSocketChunkSize),this._webSocket.send(d),this.debug(`chunk sent = ${d.length}, remaining = ${l.length}`)}}}dispose(){if(this.connected)try{const e=Object.assign({},this.disconnectHeaders);e.receipt||(e.receipt=`close-${this._counter++}`),this.watchForReceipt(e.receipt,n=>{this._closeWebsocket(),this._cleanUp(),this.onDisconnect(n)}),this._transmit({command:"DISCONNECT",headers:e})}catch(e){this.debug(`Ignoring error during disconnect ${e}`)}else(this._webSocket.readyState===te.CONNECTING||this._webSocket.readyState===te.OPEN)&&this._closeWebsocket()}_cleanUp(){this._connected=!1,this._pinger&&(clearInterval(this._pinger),this._pinger=void 0),this._ponger&&(clearInterval(this._ponger),this._ponger=void 0)}publish(e){const{destination:n,headers:s,body:r,binaryBody:i,skipContentLengthHeader:o}=e,a=Object.assign({destination:n},s);this._transmit({command:"SEND",headers:a,body:r,binaryBody:i,skipContentLengthHeader:o})}watchForReceipt(e,n){this._receiptWatchers[e]=n}subscribe(e,n,s={}){s=Object.assign({},s),s.id||(s.id=`sub-${this._counter++}`),s.destination=e,this._subscriptions[s.id]=n,this._transmit({command:"SUBSCRIBE",headers:s});const r=this;return{id:s.id,unsubscribe(i){return r.unsubscribe(s.id,i)}}}unsubscribe(e,n={}){n=Object.assign({},n),delete this._subscriptions[e],n.id=e,this._transmit({command:"UNSUBSCRIBE",headers:n})}begin(e){const n=e||`tx-${this._counter++}`;this._transmit({command:"BEGIN",headers:{transaction:n}});const s=this;return{id:n,commit(){s.commit(n)},abort(){s.abort(n)}}}commit(e){this._transmit({command:"COMMIT",headers:{transaction:e}})}abort(e){this._transmit({command:"ABORT",headers:{transaction:e}})}ack(e,n,s={}){s=Object.assign({},s),this._connectedVersion===B.V1_2?s.id=e:s["message-id"]=e,s.subscription=n,this._transmit({command:"ACK",headers:s})}nack(e,n,s={}){return s=Object.assign({},s),this._connectedVersion===B.V1_2?s.id=e:s["message-id"]=e,s.subscription=n,this._transmit({command:"NACK",headers:s})}}class Dr{constructor(e={}){this.stompVersions=B.default,this.connectionTimeout=0,this.reconnectDelay=5e3,this.heartbeatIncoming=1e4,this.heartbeatOutgoing=1e4,this.splitLargeFrames=!1,this.maxWebSocketChunkSize=8*1024,this.forceBinaryWSFrames=!1,this.appendMissingNULLonIncoming=!1,this.discardWebsocketOnCommFailure=!1,this.state=H.INACTIVE;const n=()=>{};this.debug=n,this.beforeConnect=n,this.onConnect=n,this.onDisconnect=n,this.onUnhandledMessage=n,this.onUnhandledReceipt=n,this.onUnhandledFrame=n,this.onStompError=n,this.onWebSocketClose=n,this.onWebSocketError=n,this.logRawCommunication=!1,this.onChangeState=n,this.connectHeaders={},this._disconnectHeaders={},this.configure(e)}get webSocket(){var e;return(e=this._stompHandler)==null?void 0:e._webSocket}get disconnectHeaders(){return this._disconnectHeaders}set disconnectHeaders(e){this._disconnectHeaders=e,this._stompHandler&&(this._stompHandler.disconnectHeaders=this._disconnectHeaders)}get connected(){return!!this._stompHandler&&this._stompHandler.connected}get connectedVersion(){return this._stompHandler?this._stompHandler.connectedVersion:void 0}get active(){return this.state===H.ACTIVE}_changeState(e){this.state=e,this.onChangeState(e)}configure(e){Object.assign(this,e)}activate(){const e=()=>{if(this.active){this.debug("Already ACTIVE, ignoring request to activate");return}this._changeState(H.ACTIVE),this._connect()};this.state===H.DEACTIVATING?(this.debug("Waiting for deactivation to finish before activating"),this.deactivate().then(()=>{e()})):e()}async _connect(){if(await this.beforeConnect(),this._stompHandler){this.debug("There is already a stompHandler, skipping the call to connect");return}if(!this.active){this.debug("Client has been marked inactive, will not attempt to connect");return}this.connectionTimeout>0&&(this._connectionWatcher&&clearTimeout(this._connectionWatcher),this._connectionWatcher=setTimeout(()=>{this.connected||(this.debug(`Connection not established in ${this.connectionTimeout}ms, closing socket`),this.forceDisconnect())},this.connectionTimeout)),this.debug("Opening Web Socket...");const e=this._createWebSocket();this._stompHandler=new Mr(this,e,{debug:this.debug,stompVersions:this.stompVersions,connectHeaders:this.connectHeaders,disconnectHeaders:this._disconnectHeaders,heartbeatIncoming:this.heartbeatIncoming,heartbeatOutgoing:this.heartbeatOutgoing,splitLargeFrames:this.splitLargeFrames,maxWebSocketChunkSize:this.maxWebSocketChunkSize,forceBinaryWSFrames:this.forceBinaryWSFrames,logRawCommunication:this.logRawCommunication,appendMissingNULLonIncoming:this.appendMissingNULLonIncoming,discardWebsocketOnCommFailure:this.discardWebsocketOnCommFailure,onConnect:n=>{if(this._connectionWatcher&&(clearTimeout(this._connectionWatcher),this._connectionWatcher=void 0),!this.active){this.debug("STOMP got connected while deactivate was issued, will disconnect now"),this._disposeStompHandler();return}this.onConnect(n)},onDisconnect:n=>{this.onDisconnect(n)},onStompError:n=>{this.onStompError(n)},onWebSocketClose:n=>{this._stompHandler=void 0,this.state===H.DEACTIVATING&&this._changeState(H.INACTIVE),this.onWebSocketClose(n),this.active&&this._schedule_reconnect()},onWebSocketError:n=>{this.onWebSocketError(n)},onUnhandledMessage:n=>{this.onUnhandledMessage(n)},onUnhandledReceipt:n=>{this.onUnhandledReceipt(n)},onUnhandledFrame:n=>{this.onUnhandledFrame(n)}}),this._stompHandler.start()}_createWebSocket(){let e;if(this.webSocketFactory)e=this.webSocketFactory();else if(this.brokerURL)e=new WebSocket(this.brokerURL,this.stompVersions.protocolVersions());else throw new Error("Either brokerURL or webSocketFactory must be provided");return e.binaryType="arraybuffer",e}_schedule_reconnect(){this.reconnectDelay>0&&(this.debug(`STOMP: scheduling reconnection in ${this.reconnectDelay}ms`),this._reconnector=setTimeout(()=>{this._connect()},this.reconnectDelay))}async deactivate(e={}){var n;const s=e.force||!1,r=this.active;let i;if(this.state===H.INACTIVE)return this.debug("Already INACTIVE, nothing more to do"),Promise.resolve();if(this._changeState(H.DEACTIVATING),this._reconnector&&(clearTimeout(this._reconnector),this._reconnector=void 0),this._stompHandler&&this.webSocket.readyState!==te.CLOSED){const o=this._stompHandler.onWebSocketClose;i=new Promise((a,c)=>{this._stompHandler.onWebSocketClose=l=>{o(l),a()}})}else return this._changeState(H.INACTIVE),Promise.resolve();return s?(n=this._stompHandler)==null||n.discardWebsocket():r&&this._disposeStompHandler(),i}forceDisconnect(){this._stompHandler&&this._stompHandler.forceDisconnect()}_disposeStompHandler(){this._stompHandler&&this._stompHandler.dispose()}publish(e){this._checkConnection(),this._stompHandler.publish(e)}_checkConnection(){if(!this.connected)throw new TypeError("There is no underlying STOMP connection")}watchForReceipt(e,n){this._checkConnection(),this._stompHandler.watchForReceipt(e,n)}subscribe(e,n,s={}){return this._checkConnection(),this._stompHandler.subscribe(e,n,s)}unsubscribe(e,n={}){this._checkConnection(),this._stompHandler.unsubscribe(e,n)}begin(e){return this._checkConnection(),this._stompHandler.begin(e)}commit(e){this._checkConnection(),this._stompHandler.commit(e)}abort(e){this._checkConnection(),this._stompHandler.abort(e)}ack(e,n,s={}){this._checkConnection(),this._stompHandler.ack(e,n,s)}nack(e,n,s={}){this._checkConnection(),this._stompHandler.nack(e,n,s)}}class Vr{constructor(e,n){Nr(this,"client"),this.virtualHost=e,this.queue=n,this.client=new Dr({brokerURL:window.VITE_BROKER_URL?window.VITE_BROKER_URL:"ws://192.168.20.107:15674/ws",connectHeaders:{login:window.VITE_USERNAME?window.VITE_USERNAME:"admin",passcode:window.VITE_PASSWORD?window.VITE_PASSWORD:"password",host:this.virtualHost}})}async connect(){return new Promise((e,n)=>{this.client.onConnect=()=>{e()},this.client.activate()})}async disconnectClient(){this.client.onDisconnect=()=>{},this.client.deactivate(),this.client.unsubscribe("")}async subscribe(e){await this.connect(),this.client.subscribe(`/queue/${this.queue}`,n=>{const s=JSON.parse(n.body);e(s)})}async publish(e){this.client.publish({destination:`/queue/${this.queue}`,body:JSON.stringify({data:e})})}}const G=(t,e)=>{const n=t.__vccOpts||t;for(const[s,r]of e)n[s]=r;return n},Ar={},Fr={width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Rr=[u.createElementVNode("path",{d:"M16 31C24.2843 31 31 24.2843 31 16C31 7.71573 24.2843 1 16 1C7.71573 1 1 7.71573 1 16C1 24.2843 7.71573 31 16 31Z",stroke:"#B3B3B3","stroke-miterlimit":"10"},null,-1),u.createElementVNode("path",{d:"M19.78 22.3L15.98 16.63H15.9601L12.2001 22.3H11.0701L15.37 15.8899L11.25 9.69995H12.38L15.98 15.08H16L19.67 9.69995H20.8L16.55 15.82L20.92 22.3H19.77H19.78Z",fill:"#B3B3B3"},null,-1)];function Lr(t,e){return u.openBlock(),u.createElementBlock("svg",Fr,Rr)}const Br=G(Ar,[["render",Lr]]),$r={},Wr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},Ur=[u.createElementVNode("path",{fill:"#F28B0C",d:"M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z"},null,-1)];function Hr(t,e){return u.openBlock(),u.createElementBlock("svg",Wr,Ur)}const Pr=G($r,[["render",Hr]]);function dn(t,e){return function(){return t.apply(e,arguments)}}const{toString:zr}=Object.prototype,{getPrototypeOf:Ot}=Object,Qe=(t=>e=>{const n=zr.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),X=t=>(t=t.toLowerCase(),e=>Qe(e)===t),Xe=t=>e=>typeof e===t,{isArray:be}=Array,Re=Xe("undefined");function qr(t){return t!==null&&!Re(t)&&t.constructor!==null&&!Re(t.constructor)&&P(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const hn=X("ArrayBuffer");function Zr(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&hn(t.buffer),e}const jr=Xe("string"),P=Xe("function"),fn=Xe("number"),et=t=>t!==null&&typeof t=="object",Gr=t=>t===!0||t===!1,tt=t=>{if(Qe(t)!=="object")return!1;const e=Ot(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},Yr=X("Date"),Jr=X("File"),Kr=X("Blob"),Qr=X("FileList"),Xr=t=>et(t)&&P(t.pipe),ei=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||P(t.append)&&((e=Qe(t))==="formdata"||e==="object"&&P(t.toString)&&t.toString()==="[object FormData]"))},ti=X("URLSearchParams"),ni=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Le(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let s,r;if(typeof t!="object"&&(t=[t]),be(t))for(s=0,r=t.length;s<r;s++)e.call(null,t[s],s,t);else{const i=n?Object.getOwnPropertyNames(t):Object.keys(t),o=i.length;let a;for(s=0;s<o;s++)a=i[s],e.call(null,t[a],a,t)}}function mn(t,e){e=e.toLowerCase();const n=Object.keys(t);let s=n.length,r;for(;s-- >0;)if(r=n[s],e===r.toLowerCase())return r;return null}const pn=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,yn=t=>!Re(t)&&t!==pn;function Ct(){const{caseless:t}=yn(this)&&this||{},e={},n=(s,r)=>{const i=t&&mn(e,r)||r;tt(e[i])&&tt(s)?e[i]=Ct(e[i],s):tt(s)?e[i]=Ct({},s):be(s)?e[i]=s.slice():e[i]=s};for(let s=0,r=arguments.length;s<r;s++)arguments[s]&&Le(arguments[s],n);return e}const si=(t,e,n,{allOwnKeys:s}={})=>(Le(e,(r,i)=>{n&&P(r)?t[i]=dn(r,n):t[i]=r},{allOwnKeys:s}),t),ri=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),ii=(t,e,n,s)=>{t.prototype=Object.create(e.prototype,s),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},oi=(t,e,n,s)=>{let r,i,o;const a={};if(e=e||{},t==null)return e;do{for(r=Object.getOwnPropertyNames(t),i=r.length;i-- >0;)o=r[i],(!s||s(o,t,e))&&!a[o]&&(e[o]=t[o],a[o]=!0);t=n!==!1&&Ot(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},ai=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const s=t.indexOf(e,n);return s!==-1&&s===n},ci=t=>{if(!t)return null;if(be(t))return t;let e=t.length;if(!fn(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},li=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&Ot(Uint8Array)),ui=(t,e)=>{const s=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=s.next())&&!r.done;){const i=r.value;e.call(t,i[0],i[1])}},di=(t,e)=>{let n;const s=[];for(;(n=t.exec(e))!==null;)s.push(n);return s},hi=X("HTMLFormElement"),fi=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,s,r){return s.toUpperCase()+r}),gn=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),mi=X("RegExp"),wn=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),s={};Le(n,(r,i)=>{e(r,i,t)!==!1&&(s[i]=r)}),Object.defineProperties(t,s)},pi=t=>{wn(t,(e,n)=>{if(P(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const s=t[n];if(P(s)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},yi=(t,e)=>{const n={},s=r=>{r.forEach(i=>{n[i]=!0})};return be(t)?s(t):s(String(t).split(e)),n},gi=()=>{},wi=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Nt="abcdefghijklmnopqrstuvwxyz",Sn="0123456789",bn={DIGIT:Sn,ALPHA:Nt,ALPHA_DIGIT:Nt+Nt.toUpperCase()+Sn},Si=(t=16,e=bn.ALPHA_DIGIT)=>{let n="";const{length:s}=e;for(;t--;)n+=e[Math.random()*s|0];return n};function bi(t){return!!(t&&P(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const ki=t=>{const e=new Array(10),n=(s,r)=>{if(et(s)){if(e.indexOf(s)>=0)return;if(!("toJSON"in s)){e[r]=s;const i=be(s)?[]:{};return Le(s,(o,a)=>{const c=n(o,r+1);!Re(c)&&(i[a]=c)}),e[r]=void 0,i}}return s};return n(t,0)},Ei=X("AsyncFunction"),h={isArray:be,isArrayBuffer:hn,isBuffer:qr,isFormData:ei,isArrayBufferView:Zr,isString:jr,isNumber:fn,isBoolean:Gr,isObject:et,isPlainObject:tt,isUndefined:Re,isDate:Yr,isFile:Jr,isBlob:Kr,isRegExp:mi,isFunction:P,isStream:Xr,isURLSearchParams:ti,isTypedArray:li,isFileList:Qr,forEach:Le,merge:Ct,extend:si,trim:ni,stripBOM:ri,inherits:ii,toFlatObject:oi,kindOf:Qe,kindOfTest:X,endsWith:ai,toArray:ci,forEachEntry:ui,matchAll:di,isHTMLForm:hi,hasOwnProperty:gn,hasOwnProp:gn,reduceDescriptors:wn,freezeMethods:pi,toObjectSet:yi,toCamelCase:fi,noop:gi,toFiniteNumber:wi,findKey:mn,global:pn,isContextDefined:yn,ALPHABET:bn,generateString:Si,isSpecCompliantForm:bi,toJSONObject:ki,isAsyncFn:Ei,isThenable:t=>t&&(et(t)||P(t))&&P(t.then)&&P(t.catch)};function k(t,e,n,s,r){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),s&&(this.request=s),r&&(this.response=r)}h.inherits(k,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:h.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const kn=k.prototype,En={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{En[t]={value:t}}),Object.defineProperties(k,En),Object.defineProperty(kn,"isAxiosError",{value:!0}),k.from=(t,e,n,s,r,i)=>{const o=Object.create(kn);return h.toFlatObject(t,o,function(c){return c!==Error.prototype},a=>a!=="isAxiosError"),k.call(o,t.message,e,n,s,r),o.cause=t,o.name=t.name,i&&Object.assign(o,i),o};const Ti=null;function It(t){return h.isPlainObject(t)||h.isArray(t)}function Tn(t){return h.endsWith(t,"[]")?t.slice(0,-2):t}function _n(t,e,n){return t?t.concat(e).map(function(r,i){return r=Tn(r),!n&&i?"["+r+"]":r}).join(n?".":""):e}function _i(t){return h.isArray(t)&&!t.some(It)}const Oi=h.toFlatObject(h,{},null,function(e){return/^is[A-Z]/.test(e)});function nt(t,e,n){if(!h.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=h.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(g,C){return!h.isUndefined(C[g])});const s=n.metaTokens,r=n.visitor||d,i=n.dots,o=n.indexes,c=(n.Blob||typeof Blob<"u"&&Blob)&&h.isSpecCompliantForm(e);if(!h.isFunction(r))throw new TypeError("visitor must be a function");function l(m){if(m===null)return"";if(h.isDate(m))return m.toISOString();if(!c&&h.isBlob(m))throw new k("Blob is not supported. Use a Buffer instead.");return h.isArrayBuffer(m)||h.isTypedArray(m)?c&&typeof Blob=="function"?new Blob([m]):Buffer.from(m):m}function d(m,g,C){let I=m;if(m&&!C&&typeof m=="object"){if(h.endsWith(g,"{}"))g=s?g:g.slice(0,-2),m=JSON.stringify(m);else if(h.isArray(m)&&_i(m)||(h.isFileList(m)||h.endsWith(g,"[]"))&&(I=h.toArray(m)))return g=Tn(g),I.forEach(function(se,N){!(h.isUndefined(se)||se===null)&&e.append(o===!0?_n([g],N,i):o===null?g:g+"[]",l(se))}),!1}return It(m)?!0:(e.append(_n(C,g,i),l(m)),!1)}const f=[],b=Object.assign(Oi,{defaultVisitor:d,convertValue:l,isVisitable:It});function p(m,g){if(!h.isUndefined(m)){if(f.indexOf(m)!==-1)throw Error("Circular reference detected in "+g.join("."));f.push(m),h.forEach(m,function(I,x){(!(h.isUndefined(I)||I===null)&&r.call(e,I,h.isString(x)?x.trim():x,g,b))===!0&&p(I,g?g.concat(x):[x])}),f.pop()}}if(!h.isObject(t))throw new TypeError("data must be an object");return p(t),e}function On(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(s){return e[s]})}function xt(t,e){this._pairs=[],t&&nt(t,this,e)}const Cn=xt.prototype;Cn.append=function(e,n){this._pairs.push([e,n])},Cn.toString=function(e){const n=e?function(s){return e.call(this,s,On)}:On;return this._pairs.map(function(r){return n(r[0])+"="+n(r[1])},"").join("&")};function Ci(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Nn(t,e,n){if(!e)return t;const s=n&&n.encode||Ci,r=n&&n.serialize;let i;if(r?i=r(e,n):i=h.isURLSearchParams(e)?e.toString():new xt(e,n).toString(s),i){const o=t.indexOf("#");o!==-1&&(t=t.slice(0,o)),t+=(t.indexOf("?")===-1?"?":"&")+i}return t}class In{constructor(){this.handlers=[]}use(e,n,s){return this.handlers.push({fulfilled:e,rejected:n,synchronous:s?s.synchronous:!1,runWhen:s?s.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){h.forEach(this.handlers,function(s){s!==null&&e(s)})}}const xn={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Ni=typeof URLSearchParams<"u"?URLSearchParams:xt,Ii=typeof FormData<"u"?FormData:null,xi=typeof Blob<"u"?Blob:null,vi=(()=>{let t;return typeof navigator<"u"&&((t=navigator.product)==="ReactNative"||t==="NativeScript"||t==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),Mi=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",ee={isBrowser:!0,classes:{URLSearchParams:Ni,FormData:Ii,Blob:xi},isStandardBrowserEnv:vi,isStandardBrowserWebWorkerEnv:Mi,protocols:["http","https","file","blob","url","data"]};function Di(t,e){return nt(t,new ee.classes.URLSearchParams,Object.assign({visitor:function(n,s,r,i){return ee.isNode&&h.isBuffer(n)?(this.append(s,n.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function Vi(t){return h.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function Ai(t){const e={},n=Object.keys(t);let s;const r=n.length;let i;for(s=0;s<r;s++)i=n[s],e[i]=t[i];return e}function vn(t){function e(n,s,r,i){let o=n[i++];const a=Number.isFinite(+o),c=i>=n.length;return o=!o&&h.isArray(r)?r.length:o,c?(h.hasOwnProp(r,o)?r[o]=[r[o],s]:r[o]=s,!a):((!r[o]||!h.isObject(r[o]))&&(r[o]=[]),e(n,s,r[o],i)&&h.isArray(r[o])&&(r[o]=Ai(r[o])),!a)}if(h.isFormData(t)&&h.isFunction(t.entries)){const n={};return h.forEachEntry(t,(s,r)=>{e(Vi(s),r,n,0)}),n}return null}const Fi={"Content-Type":void 0};function Ri(t,e,n){if(h.isString(t))try{return(e||JSON.parse)(t),h.trim(t)}catch(s){if(s.name!=="SyntaxError")throw s}return(n||JSON.stringify)(t)}const ke={transitional:xn,adapter:["xhr","http"],transformRequest:[function(e,n){const s=n.getContentType()||"",r=s.indexOf("application/json")>-1,i=h.isObject(e);if(i&&h.isHTMLForm(e)&&(e=new FormData(e)),h.isFormData(e))return r&&r?JSON.stringify(vn(e)):e;if(h.isArrayBuffer(e)||h.isBuffer(e)||h.isStream(e)||h.isFile(e)||h.isBlob(e))return e;if(h.isArrayBufferView(e))return e.buffer;if(h.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let a;if(i){if(s.indexOf("application/x-www-form-urlencoded")>-1)return Di(e,this.formSerializer).toString();if((a=h.isFileList(e))||s.indexOf("multipart/form-data")>-1){const c=this.env&&this.env.FormData;return nt(a?{"files[]":e}:e,c&&new c,this.formSerializer)}}return i||r?(n.setContentType("application/json",!1),Ri(e)):e}],transformResponse:[function(e){const n=this.transitional||ke.transitional,s=n&&n.forcedJSONParsing,r=this.responseType==="json";if(e&&h.isString(e)&&(s&&!this.responseType||r)){const o=!(n&&n.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(a){if(o)throw a.name==="SyntaxError"?k.from(a,k.ERR_BAD_RESPONSE,this,null,this.response):a}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ee.classes.FormData,Blob:ee.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};h.forEach(["delete","get","head"],function(e){ke.headers[e]={}}),h.forEach(["post","put","patch"],function(e){ke.headers[e]=h.merge(Fi)});const Li=h.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Bi=t=>{const e={};let n,s,r;return t&&t.split(`
4
- `).forEach(function(o){r=o.indexOf(":"),n=o.substring(0,r).trim().toLowerCase(),s=o.substring(r+1).trim(),!(!n||e[n]&&Li[n])&&(n==="set-cookie"?e[n]?e[n].push(s):e[n]=[s]:e[n]=e[n]?e[n]+", "+s:s)}),e},Mn=Symbol("internals");function Be(t){return t&&String(t).trim().toLowerCase()}function st(t){return t===!1||t==null?t:h.isArray(t)?t.map(st):String(t)}function $i(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let s;for(;s=n.exec(t);)e[s[1]]=s[2];return e}const Wi=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function vt(t,e,n,s,r){if(h.isFunction(s))return s.call(this,e,n);if(r&&(e=n),!!h.isString(e)){if(h.isString(s))return e.indexOf(s)!==-1;if(h.isRegExp(s))return s.test(e)}}function Ui(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,s)=>n.toUpperCase()+s)}function Hi(t,e){const n=h.toCamelCase(" "+e);["get","set","has"].forEach(s=>{Object.defineProperty(t,s+n,{value:function(r,i,o){return this[s].call(this,e,r,i,o)},configurable:!0})})}class z{constructor(e){e&&this.set(e)}set(e,n,s){const r=this;function i(a,c,l){const d=Be(c);if(!d)throw new Error("header name must be a non-empty string");const f=h.findKey(r,d);(!f||r[f]===void 0||l===!0||l===void 0&&r[f]!==!1)&&(r[f||c]=st(a))}const o=(a,c)=>h.forEach(a,(l,d)=>i(l,d,c));return h.isPlainObject(e)||e instanceof this.constructor?o(e,n):h.isString(e)&&(e=e.trim())&&!Wi(e)?o(Bi(e),n):e!=null&&i(n,e,s),this}get(e,n){if(e=Be(e),e){const s=h.findKey(this,e);if(s){const r=this[s];if(!n)return r;if(n===!0)return $i(r);if(h.isFunction(n))return n.call(this,r,s);if(h.isRegExp(n))return n.exec(r);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=Be(e),e){const s=h.findKey(this,e);return!!(s&&this[s]!==void 0&&(!n||vt(this,this[s],s,n)))}return!1}delete(e,n){const s=this;let r=!1;function i(o){if(o=Be(o),o){const a=h.findKey(s,o);a&&(!n||vt(s,s[a],a,n))&&(delete s[a],r=!0)}}return h.isArray(e)?e.forEach(i):i(e),r}clear(e){const n=Object.keys(this);let s=n.length,r=!1;for(;s--;){const i=n[s];(!e||vt(this,this[i],i,e,!0))&&(delete this[i],r=!0)}return r}normalize(e){const n=this,s={};return h.forEach(this,(r,i)=>{const o=h.findKey(s,i);if(o){n[o]=st(r),delete n[i];return}const a=e?Ui(i):String(i).trim();a!==i&&delete n[i],n[a]=st(r),s[a]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return h.forEach(this,(s,r)=>{s!=null&&s!==!1&&(n[r]=e&&h.isArray(s)?s.join(", "):s)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join(`
5
- `)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const s=new this(e);return n.forEach(r=>s.set(r)),s}static accessor(e){const s=(this[Mn]=this[Mn]={accessors:{}}).accessors,r=this.prototype;function i(o){const a=Be(o);s[a]||(Hi(r,o),s[a]=!0)}return h.isArray(e)?e.forEach(i):i(e),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),h.freezeMethods(z.prototype),h.freezeMethods(z);function Mt(t,e){const n=this||ke,s=e||n,r=z.from(s.headers);let i=s.data;return h.forEach(t,function(a){i=a.call(n,i,r.normalize(),e?e.status:void 0)}),r.normalize(),i}function Dn(t){return!!(t&&t.__CANCEL__)}function $e(t,e,n){k.call(this,t??"canceled",k.ERR_CANCELED,e,n),this.name="CanceledError"}h.inherits($e,k,{__CANCEL__:!0});function Pi(t,e,n){const s=n.config.validateStatus;!n.status||!s||s(n.status)?t(n):e(new k("Request failed with status code "+n.status,[k.ERR_BAD_REQUEST,k.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const zi=ee.isStandardBrowserEnv?function(){return{write:function(n,s,r,i,o,a){const c=[];c.push(n+"="+encodeURIComponent(s)),h.isNumber(r)&&c.push("expires="+new Date(r).toGMTString()),h.isString(i)&&c.push("path="+i),h.isString(o)&&c.push("domain="+o),a===!0&&c.push("secure"),document.cookie=c.join("; ")},read:function(n){const s=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return s?decodeURIComponent(s[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function qi(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function Zi(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}function Vn(t,e){return t&&!qi(e)?Zi(t,e):e}const ji=ee.isStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let s;function r(i){let o=i;return e&&(n.setAttribute("href",o),o=n.href),n.setAttribute("href",o),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return s=r(window.location.href),function(o){const a=h.isString(o)?r(o):o;return a.protocol===s.protocol&&a.host===s.host}}():function(){return function(){return!0}}();function Gi(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function Yi(t,e){t=t||10;const n=new Array(t),s=new Array(t);let r=0,i=0,o;return e=e!==void 0?e:1e3,function(c){const l=Date.now(),d=s[i];o||(o=l),n[r]=c,s[r]=l;let f=i,b=0;for(;f!==r;)b+=n[f++],f=f%t;if(r=(r+1)%t,r===i&&(i=(i+1)%t),l-o<e)return;const p=d&&l-d;return p?Math.round(b*1e3/p):void 0}}function An(t,e){let n=0;const s=Yi(50,250);return r=>{const i=r.loaded,o=r.lengthComputable?r.total:void 0,a=i-n,c=s(a),l=i<=o;n=i;const d={loaded:i,total:o,progress:o?i/o:void 0,bytes:a,rate:c||void 0,estimated:c&&o&&l?(o-i)/c:void 0,event:r};d[e?"download":"upload"]=!0,t(d)}}const rt={http:Ti,xhr:typeof XMLHttpRequest<"u"&&function(t){return new Promise(function(n,s){let r=t.data;const i=z.from(t.headers).normalize(),o=t.responseType;let a;function c(){t.cancelToken&&t.cancelToken.unsubscribe(a),t.signal&&t.signal.removeEventListener("abort",a)}h.isFormData(r)&&(ee.isStandardBrowserEnv||ee.isStandardBrowserWebWorkerEnv?i.setContentType(!1):i.setContentType("multipart/form-data;",!1));let l=new XMLHttpRequest;if(t.auth){const p=t.auth.username||"",m=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(p+":"+m))}const d=Vn(t.baseURL,t.url);l.open(t.method.toUpperCase(),Nn(d,t.params,t.paramsSerializer),!0),l.timeout=t.timeout;function f(){if(!l)return;const p=z.from("getAllResponseHeaders"in l&&l.getAllResponseHeaders()),g={data:!o||o==="text"||o==="json"?l.responseText:l.response,status:l.status,statusText:l.statusText,headers:p,config:t,request:l};Pi(function(I){n(I),c()},function(I){s(I),c()},g),l=null}if("onloadend"in l?l.onloadend=f:l.onreadystatechange=function(){!l||l.readyState!==4||l.status===0&&!(l.responseURL&&l.responseURL.indexOf("file:")===0)||setTimeout(f)},l.onabort=function(){l&&(s(new k("Request aborted",k.ECONNABORTED,t,l)),l=null)},l.onerror=function(){s(new k("Network Error",k.ERR_NETWORK,t,l)),l=null},l.ontimeout=function(){let m=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const g=t.transitional||xn;t.timeoutErrorMessage&&(m=t.timeoutErrorMessage),s(new k(m,g.clarifyTimeoutError?k.ETIMEDOUT:k.ECONNABORTED,t,l)),l=null},ee.isStandardBrowserEnv){const p=(t.withCredentials||ji(d))&&t.xsrfCookieName&&zi.read(t.xsrfCookieName);p&&i.set(t.xsrfHeaderName,p)}r===void 0&&i.setContentType(null),"setRequestHeader"in l&&h.forEach(i.toJSON(),function(m,g){l.setRequestHeader(g,m)}),h.isUndefined(t.withCredentials)||(l.withCredentials=!!t.withCredentials),o&&o!=="json"&&(l.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&l.addEventListener("progress",An(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&l.upload&&l.upload.addEventListener("progress",An(t.onUploadProgress)),(t.cancelToken||t.signal)&&(a=p=>{l&&(s(!p||p.type?new $e(null,t,l):p),l.abort(),l=null)},t.cancelToken&&t.cancelToken.subscribe(a),t.signal&&(t.signal.aborted?a():t.signal.addEventListener("abort",a)));const b=Gi(d);if(b&&ee.protocols.indexOf(b)===-1){s(new k("Unsupported protocol "+b+":",k.ERR_BAD_REQUEST,t));return}l.send(r||null)})}};h.forEach(rt,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const Ji={getAdapter:t=>{t=h.isArray(t)?t:[t];const{length:e}=t;let n,s;for(let r=0;r<e&&(n=t[r],!(s=h.isString(n)?rt[n.toLowerCase()]:n));r++);if(!s)throw s===!1?new k(`Adapter ${n} is not supported by the environment`,"ERR_NOT_SUPPORT"):new Error(h.hasOwnProp(rt,n)?`Adapter '${n}' is not available in the build`:`Unknown adapter '${n}'`);if(!h.isFunction(s))throw new TypeError("adapter is not a function");return s},adapters:rt};function Dt(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new $e(null,t)}function Fn(t){return Dt(t),t.headers=z.from(t.headers),t.data=Mt.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),Ji.getAdapter(t.adapter||ke.adapter)(t).then(function(s){return Dt(t),s.data=Mt.call(t,t.transformResponse,s),s.headers=z.from(s.headers),s},function(s){return Dn(s)||(Dt(t),s&&s.response&&(s.response.data=Mt.call(t,t.transformResponse,s.response),s.response.headers=z.from(s.response.headers))),Promise.reject(s)})}const Rn=t=>t instanceof z?t.toJSON():t;function Ee(t,e){e=e||{};const n={};function s(l,d,f){return h.isPlainObject(l)&&h.isPlainObject(d)?h.merge.call({caseless:f},l,d):h.isPlainObject(d)?h.merge({},d):h.isArray(d)?d.slice():d}function r(l,d,f){if(h.isUndefined(d)){if(!h.isUndefined(l))return s(void 0,l,f)}else return s(l,d,f)}function i(l,d){if(!h.isUndefined(d))return s(void 0,d)}function o(l,d){if(h.isUndefined(d)){if(!h.isUndefined(l))return s(void 0,l)}else return s(void 0,d)}function a(l,d,f){if(f in e)return s(l,d);if(f in t)return s(void 0,l)}const c={url:i,method:i,data:i,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:a,headers:(l,d)=>r(Rn(l),Rn(d),!0)};return h.forEach(Object.keys(Object.assign({},t,e)),function(d){const f=c[d]||r,b=f(t[d],e[d],d);h.isUndefined(b)&&f!==a||(n[d]=b)}),n}const Ln="1.4.0",Vt={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{Vt[t]=function(s){return typeof s===t||"a"+(e<1?"n ":" ")+t}});const Bn={};Vt.transitional=function(e,n,s){function r(i,o){return"[Axios v"+Ln+"] Transitional option '"+i+"'"+o+(s?". "+s:"")}return(i,o,a)=>{if(e===!1)throw new k(r(o," has been removed"+(n?" in "+n:"")),k.ERR_DEPRECATED);return n&&!Bn[o]&&(Bn[o]=!0,console.warn(r(o," has been deprecated since v"+n+" and will be removed in the near future"))),e?e(i,o,a):!0}};function Ki(t,e,n){if(typeof t!="object")throw new k("options must be an object",k.ERR_BAD_OPTION_VALUE);const s=Object.keys(t);let r=s.length;for(;r-- >0;){const i=s[r],o=e[i];if(o){const a=t[i],c=a===void 0||o(a,i,t);if(c!==!0)throw new k("option "+i+" must be "+c,k.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new k("Unknown option "+i,k.ERR_BAD_OPTION)}}const At={assertOptions:Ki,validators:Vt},oe=At.validators;class fe{constructor(e){this.defaults=e,this.interceptors={request:new In,response:new In}}request(e,n){typeof e=="string"?(n=n||{},n.url=e):n=e||{},n=Ee(this.defaults,n);const{transitional:s,paramsSerializer:r,headers:i}=n;s!==void 0&&At.assertOptions(s,{silentJSONParsing:oe.transitional(oe.boolean),forcedJSONParsing:oe.transitional(oe.boolean),clarifyTimeoutError:oe.transitional(oe.boolean)},!1),r!=null&&(h.isFunction(r)?n.paramsSerializer={serialize:r}:At.assertOptions(r,{encode:oe.function,serialize:oe.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let o;o=i&&h.merge(i.common,i[n.method]),o&&h.forEach(["delete","get","head","post","put","patch","common"],m=>{delete i[m]}),n.headers=z.concat(o,i);const a=[];let c=!0;this.interceptors.request.forEach(function(g){typeof g.runWhen=="function"&&g.runWhen(n)===!1||(c=c&&g.synchronous,a.unshift(g.fulfilled,g.rejected))});const l=[];this.interceptors.response.forEach(function(g){l.push(g.fulfilled,g.rejected)});let d,f=0,b;if(!c){const m=[Fn.bind(this),void 0];for(m.unshift.apply(m,a),m.push.apply(m,l),b=m.length,d=Promise.resolve(n);f<b;)d=d.then(m[f++],m[f++]);return d}b=a.length;let p=n;for(f=0;f<b;){const m=a[f++],g=a[f++];try{p=m(p)}catch(C){g.call(this,C);break}}try{d=Fn.call(this,p)}catch(m){return Promise.reject(m)}for(f=0,b=l.length;f<b;)d=d.then(l[f++],l[f++]);return d}getUri(e){e=Ee(this.defaults,e);const n=Vn(e.baseURL,e.url);return Nn(n,e.params,e.paramsSerializer)}}h.forEach(["delete","get","head","options"],function(e){fe.prototype[e]=function(n,s){return this.request(Ee(s||{},{method:e,url:n,data:(s||{}).data}))}}),h.forEach(["post","put","patch"],function(e){function n(s){return function(i,o,a){return this.request(Ee(a||{},{method:e,headers:s?{"Content-Type":"multipart/form-data"}:{},url:i,data:o}))}}fe.prototype[e]=n(),fe.prototype[e+"Form"]=n(!0)});class Ft{constructor(e){if(typeof e!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(i){n=i});const s=this;this.promise.then(r=>{if(!s._listeners)return;let i=s._listeners.length;for(;i-- >0;)s._listeners[i](r);s._listeners=null}),this.promise.then=r=>{let i;const o=new Promise(a=>{s.subscribe(a),i=a}).then(r);return o.cancel=function(){s.unsubscribe(i)},o},e(function(i,o,a){s.reason||(s.reason=new $e(i,o,a),n(s.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}static source(){let e;return{token:new Ft(function(r){e=r}),cancel:e}}}function Qi(t){return function(n){return t.apply(null,n)}}function Xi(t){return h.isObject(t)&&t.isAxiosError===!0}const Rt={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Rt).forEach(([t,e])=>{Rt[e]=t});function $n(t){const e=new fe(t),n=dn(fe.prototype.request,e);return h.extend(n,fe.prototype,e,{allOwnKeys:!0}),h.extend(n,e,null,{allOwnKeys:!0}),n.create=function(r){return $n(Ee(t,r))},n}const V=$n(ke);V.Axios=fe,V.CanceledError=$e,V.CancelToken=Ft,V.isCancel=Dn,V.VERSION=Ln,V.toFormData=nt,V.AxiosError=k,V.Cancel=V.CanceledError,V.all=function(e){return Promise.all(e)},V.spread=Qi,V.isAxiosError=Xi,V.mergeConfig=Ee,V.AxiosHeaders=z,V.formToJSON=t=>vn(h.isHTMLForm(t)?new FormData(t):t),V.HttpStatusCode=Rt,V.default=V;const it=async function(t){const e=t,n=window.VITE_BACKEND_URL?window.VITE_BACKEND_URL:"https://chatadmin-gw.dev.mp.gob.bo",s={method:e.method,url:`${n}${e.url}`,headers:{Authorization:`Bearer ${t.token}`,"Content-Type":"application/json; charset=utf-8",...e.headers},data:e.data};return await V(s).then(async function(r){return await r.data}).catch(async function(r){console.error(r);const i=await r.response.data;if(i.statusCode==401&&i.message=="Unauthorized")localStorage.clear();else throw i})};async function eo(t){const e={url:"/v1/message/list-messages",method:"post",data:t.body,token:t.token},n=await it(e).catch(r=>(console.error(r),null)),s=n==null?void 0:n.response;return s!=null&&s.data?{data:s.data,pagination:s.pagination}:{data:[],pagination:{total:0,limit:0,size:0}}}async function to(t,e){var r;const s=await it({url:"/v1/message/send-message",method:"POST",data:t,token:e}).catch(i=>(console.error(i),null));return(r=s==null?void 0:s.response)==null?void 0:r.data}async function Wn(t){var s;const n=await it({url:"/v1/app-chats/web-chat",method:"get",token:t}).catch(r=>(console.error(r),null));return(s=n==null?void 0:n.response)==null?void 0:s.data}async function Un(t,e){var i;const n={esCliente:!0,totalNoVistos:0,totalNoVistosCliente:0},s={url:`/v1/app-chats/update-vistos/${t}`,method:"PATCH",data:n,token:e},r=await it(s).catch(o=>(console.error(o),null));return(i=r==null?void 0:r.response)==null?void 0:i.data}function no(t){return u.getCurrentScope()?(u.onScopeDispose(t),!0):!1}function Hn(t){return typeof t=="function"?t():u.unref(t)}const so=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const ro=t=>t!=null,Lt=()=>{};function Bt(t){var e;const n=Hn(t);return(e=n==null?void 0:n.$el)!=null?e:n}const io=so?window:void 0;function oo(){const t=u.ref(!1),e=u.getCurrentInstance();return e&&u.onMounted(()=>{t.value=!0},e),t}function ao(t){const e=oo();return u.computed(()=>(e.value,!!t()))}function co(t,e,n={}){const{root:s,rootMargin:r="0px",threshold:i=.1,window:o=io,immediate:a=!0}=n,c=ao(()=>o&&"IntersectionObserver"in o),l=u.computed(()=>{const m=Hn(t);return(Array.isArray(m)?m:[m]).map(Bt).filter(ro)});let d=Lt;const f=u.ref(a),b=c.value?u.watch(()=>[l.value,Bt(s),f.value],([m,g])=>{if(d(),!f.value||!m.length)return;const C=new IntersectionObserver(e,{root:Bt(g),rootMargin:r,threshold:i});m.forEach(I=>I&&C.observe(I)),d=()=>{C.disconnect(),d=Lt}},{immediate:a,flush:"post"}):Lt,p=()=>{d(),b(),f.value=!1};return no(p),{isSupported:c,isActive:f,pause(){d(),f.value=!1},resume(){f.value=!0},stop:p}}class me extends Error{}class lo extends me{constructor(e){super(`Invalid DateTime: ${e.toMessage()}`)}}class uo extends me{constructor(e){super(`Invalid Interval: ${e.toMessage()}`)}}class ho extends me{constructor(e){super(`Invalid Duration: ${e.toMessage()}`)}}class Te extends me{}class Pn extends me{constructor(e){super(`Invalid unit ${e}`)}}class F extends me{}class ae extends me{constructor(){super("Zone is an abstract class")}}const y="numeric",Y="short",U="long",ot={year:y,month:y,day:y},zn={year:y,month:Y,day:y},fo={year:y,month:Y,day:y,weekday:Y},qn={year:y,month:U,day:y},Zn={year:y,month:U,day:y,weekday:U},jn={hour:y,minute:y},Gn={hour:y,minute:y,second:y},Yn={hour:y,minute:y,second:y,timeZoneName:Y},Jn={hour:y,minute:y,second:y,timeZoneName:U},Kn={hour:y,minute:y,hourCycle:"h23"},Qn={hour:y,minute:y,second:y,hourCycle:"h23"},Xn={hour:y,minute:y,second:y,hourCycle:"h23",timeZoneName:Y},es={hour:y,minute:y,second:y,hourCycle:"h23",timeZoneName:U},ts={year:y,month:y,day:y,hour:y,minute:y},ns={year:y,month:y,day:y,hour:y,minute:y,second:y},ss={year:y,month:Y,day:y,hour:y,minute:y},rs={year:y,month:Y,day:y,hour:y,minute:y,second:y},mo={year:y,month:Y,day:y,weekday:Y,hour:y,minute:y},is={year:y,month:U,day:y,hour:y,minute:y,timeZoneName:Y},os={year:y,month:U,day:y,hour:y,minute:y,second:y,timeZoneName:Y},as={year:y,month:U,day:y,weekday:U,hour:y,minute:y,timeZoneName:U},cs={year:y,month:U,day:y,weekday:U,hour:y,minute:y,second:y,timeZoneName:U};class We{get type(){throw new ae}get name(){throw new ae}get ianaName(){return this.name}get isUniversal(){throw new ae}offsetName(e,n){throw new ae}formatOffset(e,n){throw new ae}offset(e){throw new ae}equals(e){throw new ae}get isValid(){throw new ae}}let $t=null;class at extends We{static get instance(){return $t===null&&($t=new at),$t}get type(){return"system"}get name(){return new Intl.DateTimeFormat().resolvedOptions().timeZone}get isUniversal(){return!1}offsetName(e,{format:n,locale:s}){return Vs(e,n,s)}formatOffset(e,n){return ze(this.offset(e),n)}offset(e){return-new Date(e).getTimezoneOffset()}equals(e){return e.type==="system"}get isValid(){return!0}}let ct={};function po(t){return ct[t]||(ct[t]=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:t,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",era:"short"})),ct[t]}const yo={year:0,month:1,day:2,era:3,hour:4,minute:5,second:6};function go(t,e){const n=t.format(e).replace(/\u200E/g,""),s=/(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(n),[,r,i,o,a,c,l,d]=s;return[o,r,i,a,c,l,d]}function wo(t,e){const n=t.formatToParts(e),s=[];for(let r=0;r<n.length;r++){const{type:i,value:o}=n[r],a=yo[i];i==="era"?s[a]=o:w(a)||(s[a]=parseInt(o,10))}return s}let lt={};class ne extends We{static create(e){return lt[e]||(lt[e]=new ne(e)),lt[e]}static resetCache(){lt={},ct={}}static isValidSpecifier(e){return this.isValidZone(e)}static isValidZone(e){if(!e)return!1;try{return new Intl.DateTimeFormat("en-US",{timeZone:e}).format(),!0}catch{return!1}}constructor(e){super(),this.zoneName=e,this.valid=ne.isValidZone(e)}get type(){return"iana"}get name(){return this.zoneName}get isUniversal(){return!1}offsetName(e,{format:n,locale:s}){return Vs(e,n,s,this.name)}formatOffset(e,n){return ze(this.offset(e),n)}offset(e){const n=new Date(e);if(isNaN(n))return NaN;const s=po(this.name);let[r,i,o,a,c,l,d]=s.formatToParts?wo(s,n):go(s,n);a==="BC"&&(r=-Math.abs(r)+1);const b=mt({year:r,month:i,day:o,hour:c===24?0:c,minute:l,second:d,millisecond:0});let p=+n;const m=p%1e3;return p-=m>=0?m:1e3+m,(b-p)/(60*1e3)}equals(e){return e.type==="iana"&&e.name===this.name}get isValid(){return this.valid}}let ls={};function So(t,e={}){const n=JSON.stringify([t,e]);let s=ls[n];return s||(s=new Intl.ListFormat(t,e),ls[n]=s),s}let Wt={};function Ut(t,e={}){const n=JSON.stringify([t,e]);let s=Wt[n];return s||(s=new Intl.DateTimeFormat(t,e),Wt[n]=s),s}let Ht={};function bo(t,e={}){const n=JSON.stringify([t,e]);let s=Ht[n];return s||(s=new Intl.NumberFormat(t,e),Ht[n]=s),s}let Pt={};function ko(t,e={}){const{base:n,...s}=e,r=JSON.stringify([t,s]);let i=Pt[r];return i||(i=new Intl.RelativeTimeFormat(t,e),Pt[r]=i),i}let Ue=null;function Eo(){return Ue||(Ue=new Intl.DateTimeFormat().resolvedOptions().locale,Ue)}let us={};function To(t){let e=us[t];if(!e){const n=new Intl.Locale(t);e="getWeekInfo"in n?n.getWeekInfo():n.weekInfo,us[t]=e}return e}function _o(t){const e=t.indexOf("-x-");e!==-1&&(t=t.substring(0,e));const n=t.indexOf("-u-");if(n===-1)return[t];{let s,r;try{s=Ut(t).resolvedOptions(),r=t}catch{const c=t.substring(0,n);s=Ut(c).resolvedOptions(),r=c}const{numberingSystem:i,calendar:o}=s;return[r,i,o]}}function Oo(t,e,n){return(n||e)&&(t.includes("-u-")||(t+="-u"),n&&(t+=`-ca-${n}`),e&&(t+=`-nu-${e}`)),t}function Co(t){const e=[];for(let n=1;n<=12;n++){const s=S.utc(2009,n,1);e.push(t(s))}return e}function No(t){const e=[];for(let n=1;n<=7;n++){const s=S.utc(2016,11,13+n);e.push(t(s))}return e}function ut(t,e,n,s){const r=t.listingMode();return r==="error"?null:r==="en"?n(e):s(e)}function Io(t){return t.numberingSystem&&t.numberingSystem!=="latn"?!1:t.numberingSystem==="latn"||!t.locale||t.locale.startsWith("en")||new Intl.DateTimeFormat(t.intl).resolvedOptions().numberingSystem==="latn"}class xo{constructor(e,n,s){this.padTo=s.padTo||0,this.floor=s.floor||!1;const{padTo:r,floor:i,...o}=s;if(!n||Object.keys(o).length>0){const a={useGrouping:!1,...s};s.padTo>0&&(a.minimumIntegerDigits=s.padTo),this.inf=bo(e,a)}}format(e){if(this.inf){const n=this.floor?Math.floor(e):e;return this.inf.format(n)}else{const n=this.floor?Math.floor(e):Kt(e,3);return D(n,this.padTo)}}}class vo{constructor(e,n,s){this.opts=s,this.originalZone=void 0;let r;if(this.opts.timeZone)this.dt=e;else if(e.zone.type==="fixed"){const o=-1*(e.offset/60),a=o>=0?`Etc/GMT+${o}`:`Etc/GMT${o}`;e.offset!==0&&ne.create(a).valid?(r=a,this.dt=e):(r="UTC",this.dt=e.offset===0?e:e.setZone("UTC").plus({minutes:e.offset}),this.originalZone=e.zone)}else e.zone.type==="system"?this.dt=e:e.zone.type==="iana"?(this.dt=e,r=e.zone.name):(r="UTC",this.dt=e.setZone("UTC").plus({minutes:e.offset}),this.originalZone=e.zone);const i={...this.opts};i.timeZone=i.timeZone||r,this.dtf=Ut(n,i)}format(){return this.originalZone?this.formatToParts().map(({value:e})=>e).join(""):this.dtf.format(this.dt.toJSDate())}formatToParts(){const e=this.dtf.formatToParts(this.dt.toJSDate());return this.originalZone?e.map(n=>{if(n.type==="timeZoneName"){const s=this.originalZone.offsetName(this.dt.ts,{locale:this.dt.locale,format:this.opts.timeZoneName});return{...n,value:s}}else return n}):e}resolvedOptions(){return this.dtf.resolvedOptions()}}class Mo{constructor(e,n,s){this.opts={style:"long",...s},!n&&xs()&&(this.rtf=ko(e,s))}format(e,n){return this.rtf?this.rtf.format(e,n):ea(n,e,this.opts.numeric,this.opts.style!=="long")}formatToParts(e,n){return this.rtf?this.rtf.formatToParts(e,n):[]}}const Do={firstDay:1,minimalDays:4,weekend:[6,7]};class O{static fromOpts(e){return O.create(e.locale,e.numberingSystem,e.outputCalendar,e.weekSettings,e.defaultToEN)}static create(e,n,s,r,i=!1){const o=e||v.defaultLocale,a=o||(i?"en-US":Eo()),c=n||v.defaultNumberingSystem,l=s||v.defaultOutputCalendar,d=Yt(r)||v.defaultWeekSettings;return new O(a,c,l,d,o)}static resetCache(){Ue=null,Wt={},Ht={},Pt={}}static fromObject({locale:e,numberingSystem:n,outputCalendar:s,weekSettings:r}={}){return O.create(e,n,s,r)}constructor(e,n,s,r,i){const[o,a,c]=_o(e);this.locale=o,this.numberingSystem=n||a||null,this.outputCalendar=s||c||null,this.weekSettings=r,this.intl=Oo(this.locale,this.numberingSystem,this.outputCalendar),this.weekdaysCache={format:{},standalone:{}},this.monthsCache={format:{},standalone:{}},this.meridiemCache=null,this.eraCache={},this.specifiedLocale=i,this.fastNumbersCached=null}get fastNumbers(){return this.fastNumbersCached==null&&(this.fastNumbersCached=Io(this)),this.fastNumbersCached}listingMode(){const e=this.isEnglish(),n=(this.numberingSystem===null||this.numberingSystem==="latn")&&(this.outputCalendar===null||this.outputCalendar==="gregory");return e&&n?"en":"intl"}clone(e){return!e||Object.getOwnPropertyNames(e).length===0?this:O.create(e.locale||this.specifiedLocale,e.numberingSystem||this.numberingSystem,e.outputCalendar||this.outputCalendar,Yt(e.weekSettings)||this.weekSettings,e.defaultToEN||!1)}redefaultToEN(e={}){return this.clone({...e,defaultToEN:!0})}redefaultToSystem(e={}){return this.clone({...e,defaultToEN:!1})}months(e,n=!1){return ut(this,e,Rs,()=>{const s=n?{month:e,day:"numeric"}:{month:e},r=n?"format":"standalone";return this.monthsCache[r][e]||(this.monthsCache[r][e]=Co(i=>this.extract(i,s,"month"))),this.monthsCache[r][e]})}weekdays(e,n=!1){return ut(this,e,$s,()=>{const s=n?{weekday:e,year:"numeric",month:"long",day:"numeric"}:{weekday:e},r=n?"format":"standalone";return this.weekdaysCache[r][e]||(this.weekdaysCache[r][e]=No(i=>this.extract(i,s,"weekday"))),this.weekdaysCache[r][e]})}meridiems(){return ut(this,void 0,()=>Ws,()=>{if(!this.meridiemCache){const e={hour:"numeric",hourCycle:"h12"};this.meridiemCache=[S.utc(2016,11,13,9),S.utc(2016,11,13,19)].map(n=>this.extract(n,e,"dayperiod"))}return this.meridiemCache})}eras(e){return ut(this,e,Us,()=>{const n={era:e};return this.eraCache[e]||(this.eraCache[e]=[S.utc(-40,1,1),S.utc(2017,1,1)].map(s=>this.extract(s,n,"era"))),this.eraCache[e]})}extract(e,n,s){const r=this.dtFormatter(e,n),i=r.formatToParts(),o=i.find(a=>a.type.toLowerCase()===s);return o?o.value:null}numberFormatter(e={}){return new xo(this.intl,e.forceSimple||this.fastNumbers,e)}dtFormatter(e,n={}){return new vo(e,this.intl,n)}relFormatter(e={}){return new Mo(this.intl,this.isEnglish(),e)}listFormatter(e={}){return So(this.intl,e)}isEnglish(){return this.locale==="en"||this.locale.toLowerCase()==="en-us"||new Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith("en-us")}getWeekSettings(){return this.weekSettings?this.weekSettings:vs()?To(this.locale):Do}getStartOfWeek(){return this.getWeekSettings().firstDay}getMinDaysInFirstWeek(){return this.getWeekSettings().minimalDays}getWeekendDays(){return this.getWeekSettings().weekend}equals(e){return this.locale===e.locale&&this.numberingSystem===e.numberingSystem&&this.outputCalendar===e.outputCalendar}toString(){return`Locale(${this.locale}, ${this.numberingSystem}, ${this.outputCalendar})`}}let zt=null;class $ extends We{static get utcInstance(){return zt===null&&(zt=new $(0)),zt}static instance(e){return e===0?$.utcInstance:new $(e)}static parseSpecifier(e){if(e){const n=e.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);if(n)return new $(pt(n[1],n[2]))}return null}constructor(e){super(),this.fixed=e}get type(){return"fixed"}get name(){return this.fixed===0?"UTC":`UTC${ze(this.fixed,"narrow")}`}get ianaName(){return this.fixed===0?"Etc/UTC":`Etc/GMT${ze(-this.fixed,"narrow")}`}offsetName(){return this.name}formatOffset(e,n){return ze(this.fixed,n)}get isUniversal(){return!0}offset(){return this.fixed}equals(e){return e.type==="fixed"&&e.fixed===this.fixed}get isValid(){return!0}}class Vo extends We{constructor(e){super(),this.zoneName=e}get type(){return"invalid"}get name(){return this.zoneName}get isUniversal(){return!1}offsetName(){return null}formatOffset(){return""}offset(){return NaN}equals(){return!1}get isValid(){return!1}}function ce(t,e){if(w(t)||t===null)return e;if(t instanceof We)return t;if($o(t)){const n=t.toLowerCase();return n==="default"?e:n==="local"||n==="system"?at.instance:n==="utc"||n==="gmt"?$.utcInstance:$.parseSpecifier(n)||ne.create(t)}else return le(t)?$.instance(t):typeof t=="object"&&"offset"in t&&typeof t.offset=="function"?t:new Vo(t)}const qt={arab:"[٠-٩]",arabext:"[۰-۹]",bali:"[᭐-᭙]",beng:"[০-৯]",deva:"[०-९]",fullwide:"[0-9]",gujr:"[૦-૯]",hanidec:"[〇|一|二|三|四|五|六|七|八|九]",khmr:"[០-៩]",knda:"[೦-೯]",laoo:"[໐-໙]",limb:"[᥆-᥏]",mlym:"[൦-൯]",mong:"[᠐-᠙]",mymr:"[၀-၉]",orya:"[୦-୯]",tamldec:"[௦-௯]",telu:"[౦-౯]",thai:"[๐-๙]",tibt:"[༠-༩]",latn:"\\d"},ds={arab:[1632,1641],arabext:[1776,1785],bali:[6992,7001],beng:[2534,2543],deva:[2406,2415],fullwide:[65296,65303],gujr:[2790,2799],khmr:[6112,6121],knda:[3302,3311],laoo:[3792,3801],limb:[6470,6479],mlym:[3430,3439],mong:[6160,6169],mymr:[4160,4169],orya:[2918,2927],tamldec:[3046,3055],telu:[3174,3183],thai:[3664,3673],tibt:[3872,3881]},Ao=qt.hanidec.replace(/[\[|\]]/g,"").split("");function Fo(t){let e=parseInt(t,10);if(isNaN(e)){e="";for(let n=0;n<t.length;n++){const s=t.charCodeAt(n);if(t[n].search(qt.hanidec)!==-1)e+=Ao.indexOf(t[n]);else for(const r in ds){const[i,o]=ds[r];s>=i&&s<=o&&(e+=s-i)}}return parseInt(e,10)}else return e}let _e={};function Ro(){_e={}}function J({numberingSystem:t},e=""){const n=t||"latn";return _e[n]||(_e[n]={}),_e[n][e]||(_e[n][e]=new RegExp(`${qt[n]}${e}`)),_e[n][e]}let hs=()=>Date.now(),fs="system",ms=null,ps=null,ys=null,gs=60,ws,Ss=null;class v{static get now(){return hs}static set now(e){hs=e}static set defaultZone(e){fs=e}static get defaultZone(){return ce(fs,at.instance)}static get defaultLocale(){return ms}static set defaultLocale(e){ms=e}static get defaultNumberingSystem(){return ps}static set defaultNumberingSystem(e){ps=e}static get defaultOutputCalendar(){return ys}static set defaultOutputCalendar(e){ys=e}static get defaultWeekSettings(){return Ss}static set defaultWeekSettings(e){Ss=Yt(e)}static get twoDigitCutoffYear(){return gs}static set twoDigitCutoffYear(e){gs=e%100}static get throwOnInvalid(){return ws}static set throwOnInvalid(e){ws=e}static resetCaches(){O.resetCache(),ne.resetCache(),S.resetCache(),Ro()}}class K{constructor(e,n){this.reason=e,this.explanation=n}toMessage(){return this.explanation?`${this.reason}: ${this.explanation}`:this.reason}}const bs=[0,31,59,90,120,151,181,212,243,273,304,334],ks=[0,31,60,91,121,152,182,213,244,274,305,335];function q(t,e){return new K("unit out of range",`you specified ${e} (of type ${typeof e}) as a ${t}, which is invalid`)}function Zt(t,e,n){const s=new Date(Date.UTC(t,e-1,n));t<100&&t>=0&&s.setUTCFullYear(s.getUTCFullYear()-1900);const r=s.getUTCDay();return r===0?7:r}function Es(t,e,n){return n+(He(t)?ks:bs)[e-1]}function Ts(t,e){const n=He(t)?ks:bs,s=n.findIndex(i=>i<e),r=e-n[s];return{month:s+1,day:r}}function jt(t,e){return(t-e+7)%7+1}function dt(t,e=4,n=1){const{year:s,month:r,day:i}=t,o=Es(s,r,i),a=jt(Zt(s,r,i),n);let c=Math.floor((o-a+14-e)/7),l;return c<1?(l=s-1,c=Pe(l,e,n)):c>Pe(s,e,n)?(l=s+1,c=1):l=s,{weekYear:l,weekNumber:c,weekday:a,...gt(t)}}function _s(t,e=4,n=1){const{weekYear:s,weekNumber:r,weekday:i}=t,o=jt(Zt(s,1,e),n),a=Ce(s);let c=r*7+i-o-7+e,l;c<1?(l=s-1,c+=Ce(l)):c>a?(l=s+1,c-=Ce(s)):l=s;const{month:d,day:f}=Ts(l,c);return{year:l,month:d,day:f,...gt(t)}}function Gt(t){const{year:e,month:n,day:s}=t,r=Es(e,n,s);return{year:e,ordinal:r,...gt(t)}}function Os(t){const{year:e,ordinal:n}=t,{month:s,day:r}=Ts(e,n);return{year:e,month:s,day:r,...gt(t)}}function Cs(t,e){if(!w(t.localWeekday)||!w(t.localWeekNumber)||!w(t.localWeekYear)){if(!w(t.weekday)||!w(t.weekNumber)||!w(t.weekYear))throw new Te("Cannot mix locale-based week fields with ISO-based week fields");return w(t.localWeekday)||(t.weekday=t.localWeekday),w(t.localWeekNumber)||(t.weekNumber=t.localWeekNumber),w(t.localWeekYear)||(t.weekYear=t.localWeekYear),delete t.localWeekday,delete t.localWeekNumber,delete t.localWeekYear,{minDaysInFirstWeek:e.getMinDaysInFirstWeek(),startOfWeek:e.getStartOfWeek()}}else return{minDaysInFirstWeek:4,startOfWeek:1}}function Lo(t,e=4,n=1){const s=ht(t.weekYear),r=Z(t.weekNumber,1,Pe(t.weekYear,e,n)),i=Z(t.weekday,1,7);return s?r?i?!1:q("weekday",t.weekday):q("week",t.weekNumber):q("weekYear",t.weekYear)}function Bo(t){const e=ht(t.year),n=Z(t.ordinal,1,Ce(t.year));return e?n?!1:q("ordinal",t.ordinal):q("year",t.year)}function Ns(t){const e=ht(t.year),n=Z(t.month,1,12),s=Z(t.day,1,ft(t.year,t.month));return e?n?s?!1:q("day",t.day):q("month",t.month):q("year",t.year)}function Is(t){const{hour:e,minute:n,second:s,millisecond:r}=t,i=Z(e,0,23)||e===24&&n===0&&s===0&&r===0,o=Z(n,0,59),a=Z(s,0,59),c=Z(r,0,999);return i?o?a?c?!1:q("millisecond",r):q("second",s):q("minute",n):q("hour",e)}function w(t){return typeof t>"u"}function le(t){return typeof t=="number"}function ht(t){return typeof t=="number"&&t%1===0}function $o(t){return typeof t=="string"}function Wo(t){return Object.prototype.toString.call(t)==="[object Date]"}function xs(){try{return typeof Intl<"u"&&!!Intl.RelativeTimeFormat}catch{return!1}}function vs(){try{return typeof Intl<"u"&&!!Intl.Locale&&("weekInfo"in Intl.Locale.prototype||"getWeekInfo"in Intl.Locale.prototype)}catch{return!1}}function Uo(t){return Array.isArray(t)?t:[t]}function Ms(t,e,n){if(t.length!==0)return t.reduce((s,r)=>{const i=[e(r),r];return s&&n(s[0],i[0])===s[0]?s:i},null)[1]}function Ho(t,e){return e.reduce((n,s)=>(n[s]=t[s],n),{})}function Oe(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function Yt(t){if(t==null)return null;if(typeof t!="object")throw new F("Week settings must be an object");if(!Z(t.firstDay,1,7)||!Z(t.minimalDays,1,7)||!Array.isArray(t.weekend)||t.weekend.some(e=>!Z(e,1,7)))throw new F("Invalid week settings");return{firstDay:t.firstDay,minimalDays:t.minimalDays,weekend:Array.from(t.weekend)}}function Z(t,e,n){return ht(t)&&t>=e&&t<=n}function Po(t,e){return t-e*Math.floor(t/e)}function D(t,e=2){const n=t<0;let s;return n?s="-"+(""+-t).padStart(e,"0"):s=(""+t).padStart(e,"0"),s}function ue(t){if(!(w(t)||t===null||t===""))return parseInt(t,10)}function pe(t){if(!(w(t)||t===null||t===""))return parseFloat(t)}function Jt(t){if(!(w(t)||t===null||t==="")){const e=parseFloat("0."+t)*1e3;return Math.floor(e)}}function Kt(t,e,n=!1){const s=10**e;return(n?Math.trunc:Math.round)(t*s)/s}function He(t){return t%4===0&&(t%100!==0||t%400===0)}function Ce(t){return He(t)?366:365}function ft(t,e){const n=Po(e-1,12)+1,s=t+(e-n)/12;return n===2?He(s)?29:28:[31,null,31,30,31,30,31,31,30,31,30,31][n-1]}function mt(t){let e=Date.UTC(t.year,t.month-1,t.day,t.hour,t.minute,t.second,t.millisecond);return t.year<100&&t.year>=0&&(e=new Date(e),e.setUTCFullYear(t.year,t.month-1,t.day)),+e}function Ds(t,e,n){return-jt(Zt(t,1,e),n)+e-1}function Pe(t,e=4,n=1){const s=Ds(t,e,n),r=Ds(t+1,e,n);return(Ce(t)-s+r)/7}function Qt(t){return t>99?t:t>v.twoDigitCutoffYear?1900+t:2e3+t}function Vs(t,e,n,s=null){const r=new Date(t),i={hourCycle:"h23",year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"};s&&(i.timeZone=s);const o={timeZoneName:e,...i},a=new Intl.DateTimeFormat(n,o).formatToParts(r).find(c=>c.type.toLowerCase()==="timezonename");return a?a.value:null}function pt(t,e){let n=parseInt(t,10);Number.isNaN(n)&&(n=0);const s=parseInt(e,10)||0,r=n<0||Object.is(n,-0)?-s:s;return n*60+r}function As(t){const e=Number(t);if(typeof t=="boolean"||t===""||Number.isNaN(e))throw new F(`Invalid unit value ${t}`);return e}function yt(t,e){const n={};for(const s in t)if(Oe(t,s)){const r=t[s];if(r==null)continue;n[e(s)]=As(r)}return n}function ze(t,e){const n=Math.trunc(Math.abs(t/60)),s=Math.trunc(Math.abs(t%60)),r=t>=0?"+":"-";switch(e){case"short":return`${r}${D(n,2)}:${D(s,2)}`;case"narrow":return`${r}${n}${s>0?`:${s}`:""}`;case"techie":return`${r}${D(n,2)}${D(s,2)}`;default:throw new RangeError(`Value format ${e} is out of range for property format`)}}function gt(t){return Ho(t,["hour","minute","second","millisecond"])}const zo=["January","February","March","April","May","June","July","August","September","October","November","December"],Fs=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],qo=["J","F","M","A","M","J","J","A","S","O","N","D"];function Rs(t){switch(t){case"narrow":return[...qo];case"short":return[...Fs];case"long":return[...zo];case"numeric":return["1","2","3","4","5","6","7","8","9","10","11","12"];case"2-digit":return["01","02","03","04","05","06","07","08","09","10","11","12"];default:return null}}const Ls=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],Bs=["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],Zo=["M","T","W","T","F","S","S"];function $s(t){switch(t){case"narrow":return[...Zo];case"short":return[...Bs];case"long":return[...Ls];case"numeric":return["1","2","3","4","5","6","7"];default:return null}}const Ws=["AM","PM"],jo=["Before Christ","Anno Domini"],Go=["BC","AD"],Yo=["B","A"];function Us(t){switch(t){case"narrow":return[...Yo];case"short":return[...Go];case"long":return[...jo];default:return null}}function Jo(t){return Ws[t.hour<12?0:1]}function Ko(t,e){return $s(e)[t.weekday-1]}function Qo(t,e){return Rs(e)[t.month-1]}function Xo(t,e){return Us(e)[t.year<0?0:1]}function ea(t,e,n="always",s=!1){const r={years:["year","yr."],quarters:["quarter","qtr."],months:["month","mo."],weeks:["week","wk."],days:["day","day","days"],hours:["hour","hr."],minutes:["minute","min."],seconds:["second","sec."]},i=["hours","minutes","seconds"].indexOf(t)===-1;if(n==="auto"&&i){const f=t==="days";switch(e){case 1:return f?"tomorrow":`next ${r[t][0]}`;case-1:return f?"yesterday":`last ${r[t][0]}`;case 0:return f?"today":`this ${r[t][0]}`}}const o=Object.is(e,-0)||e<0,a=Math.abs(e),c=a===1,l=r[t],d=s?c?l[1]:l[2]||l[1]:c?r[t][0]:t;return o?`${a} ${d} ago`:`in ${a} ${d}`}function Hs(t,e){let n="";for(const s of t)s.literal?n+=s.val:n+=e(s.val);return n}const ta={D:ot,DD:zn,DDD:qn,DDDD:Zn,t:jn,tt:Gn,ttt:Yn,tttt:Jn,T:Kn,TT:Qn,TTT:Xn,TTTT:es,f:ts,ff:ss,fff:is,ffff:as,F:ns,FF:rs,FFF:os,FFFF:cs};class R{static create(e,n={}){return new R(e,n)}static parseFormat(e){let n=null,s="",r=!1;const i=[];for(let o=0;o<e.length;o++){const a=e.charAt(o);a==="'"?(s.length>0&&i.push({literal:r||/^\s+$/.test(s),val:s}),n=null,s="",r=!r):r||a===n?s+=a:(s.length>0&&i.push({literal:/^\s+$/.test(s),val:s}),s=a,n=a)}return s.length>0&&i.push({literal:r||/^\s+$/.test(s),val:s}),i}static macroTokenToFormatOpts(e){return ta[e]}constructor(e,n){this.opts=n,this.loc=e,this.systemLoc=null}formatWithSystemDefault(e,n){return this.systemLoc===null&&(this.systemLoc=this.loc.redefaultToSystem()),this.systemLoc.dtFormatter(e,{...this.opts,...n}).format()}dtFormatter(e,n={}){return this.loc.dtFormatter(e,{...this.opts,...n})}formatDateTime(e,n){return this.dtFormatter(e,n).format()}formatDateTimeParts(e,n){return this.dtFormatter(e,n).formatToParts()}formatInterval(e,n){return this.dtFormatter(e.start,n).dtf.formatRange(e.start.toJSDate(),e.end.toJSDate())}resolvedOptions(e,n){return this.dtFormatter(e,n).resolvedOptions()}num(e,n=0){if(this.opts.forceSimple)return D(e,n);const s={...this.opts};return n>0&&(s.padTo=n),this.loc.numberFormatter(s).format(e)}formatDateTimeFromString(e,n){const s=this.loc.listingMode()==="en",r=this.loc.outputCalendar&&this.loc.outputCalendar!=="gregory",i=(p,m)=>this.loc.extract(e,p,m),o=p=>e.isOffsetFixed&&e.offset===0&&p.allowZ?"Z":e.isValid?e.zone.formatOffset(e.ts,p.format):"",a=()=>s?Jo(e):i({hour:"numeric",hourCycle:"h12"},"dayperiod"),c=(p,m)=>s?Qo(e,p):i(m?{month:p}:{month:p,day:"numeric"},"month"),l=(p,m)=>s?Ko(e,p):i(m?{weekday:p}:{weekday:p,month:"long",day:"numeric"},"weekday"),d=p=>{const m=R.macroTokenToFormatOpts(p);return m?this.formatWithSystemDefault(e,m):p},f=p=>s?Xo(e,p):i({era:p},"era"),b=p=>{switch(p){case"S":return this.num(e.millisecond);case"u":case"SSS":return this.num(e.millisecond,3);case"s":return this.num(e.second);case"ss":return this.num(e.second,2);case"uu":return this.num(Math.floor(e.millisecond/10),2);case"uuu":return this.num(Math.floor(e.millisecond/100));case"m":return this.num(e.minute);case"mm":return this.num(e.minute,2);case"h":return this.num(e.hour%12===0?12:e.hour%12);case"hh":return this.num(e.hour%12===0?12:e.hour%12,2);case"H":return this.num(e.hour);case"HH":return this.num(e.hour,2);case"Z":return o({format:"narrow",allowZ:this.opts.allowZ});case"ZZ":return o({format:"short",allowZ:this.opts.allowZ});case"ZZZ":return o({format:"techie",allowZ:this.opts.allowZ});case"ZZZZ":return e.zone.offsetName(e.ts,{format:"short",locale:this.loc.locale});case"ZZZZZ":return e.zone.offsetName(e.ts,{format:"long",locale:this.loc.locale});case"z":return e.zoneName;case"a":return a();case"d":return r?i({day:"numeric"},"day"):this.num(e.day);case"dd":return r?i({day:"2-digit"},"day"):this.num(e.day,2);case"c":return this.num(e.weekday);case"ccc":return l("short",!0);case"cccc":return l("long",!0);case"ccccc":return l("narrow",!0);case"E":return this.num(e.weekday);case"EEE":return l("short",!1);case"EEEE":return l("long",!1);case"EEEEE":return l("narrow",!1);case"L":return r?i({month:"numeric",day:"numeric"},"month"):this.num(e.month);case"LL":return r?i({month:"2-digit",day:"numeric"},"month"):this.num(e.month,2);case"LLL":return c("short",!0);case"LLLL":return c("long",!0);case"LLLLL":return c("narrow",!0);case"M":return r?i({month:"numeric"},"month"):this.num(e.month);case"MM":return r?i({month:"2-digit"},"month"):this.num(e.month,2);case"MMM":return c("short",!1);case"MMMM":return c("long",!1);case"MMMMM":return c("narrow",!1);case"y":return r?i({year:"numeric"},"year"):this.num(e.year);case"yy":return r?i({year:"2-digit"},"year"):this.num(e.year.toString().slice(-2),2);case"yyyy":return r?i({year:"numeric"},"year"):this.num(e.year,4);case"yyyyyy":return r?i({year:"numeric"},"year"):this.num(e.year,6);case"G":return f("short");case"GG":return f("long");case"GGGGG":return f("narrow");case"kk":return this.num(e.weekYear.toString().slice(-2),2);case"kkkk":return this.num(e.weekYear,4);case"W":return this.num(e.weekNumber);case"WW":return this.num(e.weekNumber,2);case"n":return this.num(e.localWeekNumber);case"nn":return this.num(e.localWeekNumber,2);case"ii":return this.num(e.localWeekYear.toString().slice(-2),2);case"iiii":return this.num(e.localWeekYear,4);case"o":return this.num(e.ordinal);case"ooo":return this.num(e.ordinal,3);case"q":return this.num(e.quarter);case"qq":return this.num(e.quarter,2);case"X":return this.num(Math.floor(e.ts/1e3));case"x":return this.num(e.ts);default:return d(p)}};return Hs(R.parseFormat(n),b)}formatDurationFromString(e,n){const s=c=>{switch(c[0]){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":return"hour";case"d":return"day";case"w":return"week";case"M":return"month";case"y":return"year";default:return null}},r=c=>l=>{const d=s(l);return d?this.num(c.get(d),l.length):l},i=R.parseFormat(n),o=i.reduce((c,{literal:l,val:d})=>l?c:c.concat(d),[]),a=e.shiftTo(...o.map(s).filter(c=>c));return Hs(i,r(a))}}const Ps=/[A-Za-z_+-]{1,256}(?::?\/[A-Za-z0-9_+-]{1,256}(?:\/[A-Za-z0-9_+-]{1,256})?)?/;function Ne(...t){const e=t.reduce((n,s)=>n+s.source,"");return RegExp(`^${e}$`)}function Ie(...t){return e=>t.reduce(([n,s,r],i)=>{const[o,a,c]=i(e,r);return[{...n,...o},a||s,c]},[{},null,1]).slice(0,2)}function xe(t,...e){if(t==null)return[null,null];for(const[n,s]of e){const r=n.exec(t);if(r)return s(r)}return[null,null]}function zs(...t){return(e,n)=>{const s={};let r;for(r=0;r<t.length;r++)s[t[r]]=ue(e[n+r]);return[s,null,n+r]}}const qs=/(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/,na=`(?:${qs.source}?(?:\\[(${Ps.source})\\])?)?`,Xt=/(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/,Zs=RegExp(`${Xt.source}${na}`),en=RegExp(`(?:T${Zs.source})?`),sa=/([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/,ra=/(\d{4})-?W(\d\d)(?:-?(\d))?/,ia=/(\d{4})-?(\d{3})/,oa=zs("weekYear","weekNumber","weekDay"),aa=zs("year","ordinal"),ca=/(\d{4})-(\d\d)-(\d\d)/,js=RegExp(`${Xt.source} ?(?:${qs.source}|(${Ps.source}))?`),la=RegExp(`(?: ${js.source})?`);function ve(t,e,n){const s=t[e];return w(s)?n:ue(s)}function ua(t,e){return[{year:ve(t,e),month:ve(t,e+1,1),day:ve(t,e+2,1)},null,e+3]}function Me(t,e){return[{hours:ve(t,e,0),minutes:ve(t,e+1,0),seconds:ve(t,e+2,0),milliseconds:Jt(t[e+3])},null,e+4]}function qe(t,e){const n=!t[e]&&!t[e+1],s=pt(t[e+1],t[e+2]),r=n?null:$.instance(s);return[{},r,e+3]}function Ze(t,e){const n=t[e]?ne.create(t[e]):null;return[{},n,e+1]}const da=RegExp(`^T?${Xt.source}$`),ha=/^-?P(?:(?:(-?\d{1,20}(?:\.\d{1,20})?)Y)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20}(?:\.\d{1,20})?)W)?(?:(-?\d{1,20}(?:\.\d{1,20})?)D)?(?:T(?:(-?\d{1,20}(?:\.\d{1,20})?)H)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,20}))?S)?)?)$/;function fa(t){const[e,n,s,r,i,o,a,c,l]=t,d=e[0]==="-",f=c&&c[0]==="-",b=(p,m=!1)=>p!==void 0&&(m||p&&d)?-p:p;return[{years:b(pe(n)),months:b(pe(s)),weeks:b(pe(r)),days:b(pe(i)),hours:b(pe(o)),minutes:b(pe(a)),seconds:b(pe(c),c==="-0"),milliseconds:b(Jt(l),f)}]}const ma={GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function tn(t,e,n,s,r,i,o){const a={year:e.length===2?Qt(ue(e)):ue(e),month:Fs.indexOf(n)+1,day:ue(s),hour:ue(r),minute:ue(i)};return o&&(a.second=ue(o)),t&&(a.weekday=t.length>3?Ls.indexOf(t)+1:Bs.indexOf(t)+1),a}const pa=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;function ya(t){const[,e,n,s,r,i,o,a,c,l,d,f]=t,b=tn(e,r,s,n,i,o,a);let p;return c?p=ma[c]:l?p=0:p=pt(d,f),[b,new $(p)]}function ga(t){return t.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").trim()}const wa=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/,Sa=/^(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/,ba=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;function Gs(t){const[,e,n,s,r,i,o,a]=t;return[tn(e,r,s,n,i,o,a),$.utcInstance]}function ka(t){const[,e,n,s,r,i,o,a]=t;return[tn(e,a,n,s,r,i,o),$.utcInstance]}const Ea=Ne(sa,en),Ta=Ne(ra,en),_a=Ne(ia,en),Oa=Ne(Zs),Ys=Ie(ua,Me,qe,Ze),Ca=Ie(oa,Me,qe,Ze),Na=Ie(aa,Me,qe,Ze),Ia=Ie(Me,qe,Ze);function xa(t){return xe(t,[Ea,Ys],[Ta,Ca],[_a,Na],[Oa,Ia])}function va(t){return xe(ga(t),[pa,ya])}function Ma(t){return xe(t,[wa,Gs],[Sa,Gs],[ba,ka])}function Da(t){return xe(t,[ha,fa])}const Va=Ie(Me);function Aa(t){return xe(t,[da,Va])}const Fa=Ne(ca,la),Ra=Ne(js),La=Ie(Me,qe,Ze);function Ba(t){return xe(t,[Fa,Ys],[Ra,La])}const Js="Invalid Duration",Ks={weeks:{days:7,hours:7*24,minutes:7*24*60,seconds:7*24*60*60,milliseconds:7*24*60*60*1e3},days:{hours:24,minutes:24*60,seconds:24*60*60,milliseconds:24*60*60*1e3},hours:{minutes:60,seconds:60*60,milliseconds:60*60*1e3},minutes:{seconds:60,milliseconds:60*1e3},seconds:{milliseconds:1e3}},$a={years:{quarters:4,months:12,weeks:52,days:365,hours:365*24,minutes:365*24*60,seconds:365*24*60*60,milliseconds:365*24*60*60*1e3},quarters:{months:3,weeks:13,days:91,hours:91*24,minutes:91*24*60,seconds:91*24*60*60,milliseconds:91*24*60*60*1e3},months:{weeks:4,days:30,hours:30*24,minutes:30*24*60,seconds:30*24*60*60,milliseconds:30*24*60*60*1e3},...Ks},j=146097/400,De=146097/4800,Wa={years:{quarters:4,months:12,weeks:j/7,days:j,hours:j*24,minutes:j*24*60,seconds:j*24*60*60,milliseconds:j*24*60*60*1e3},quarters:{months:3,weeks:j/28,days:j/4,hours:j*24/4,minutes:j*24*60/4,seconds:j*24*60*60/4,milliseconds:j*24*60*60*1e3/4},months:{weeks:De/7,days:De,hours:De*24,minutes:De*24*60,seconds:De*24*60*60,milliseconds:De*24*60*60*1e3},...Ks},ye=["years","quarters","months","weeks","days","hours","minutes","seconds","milliseconds"],Ua=ye.slice(0).reverse();function de(t,e,n=!1){const s={values:n?e.values:{...t.values,...e.values||{}},loc:t.loc.clone(e.loc),conversionAccuracy:e.conversionAccuracy||t.conversionAccuracy,matrix:e.matrix||t.matrix};return new E(s)}function Qs(t,e){let n=e.milliseconds??0;for(const s of Ua.slice(1))e[s]&&(n+=e[s]*t[s].milliseconds);return n}function Xs(t,e){const n=Qs(t,e)<0?-1:1;ye.reduceRight((s,r)=>{if(w(e[r]))return s;if(s){const i=e[s]*n,o=t[r][s],a=Math.floor(i/o);e[r]+=a*n,e[s]-=a*o*n}return r},null),ye.reduce((s,r)=>{if(w(e[r]))return s;if(s){const i=e[s]%1;e[s]-=i,e[r]+=i*t[s][r]}return r},null)}function Ha(t){const e={};for(const[n,s]of Object.entries(t))s!==0&&(e[n]=s);return e}class E{constructor(e){const n=e.conversionAccuracy==="longterm"||!1;let s=n?Wa:$a;e.matrix&&(s=e.matrix),this.values=e.values,this.loc=e.loc||O.create(),this.conversionAccuracy=n?"longterm":"casual",this.invalid=e.invalid||null,this.matrix=s,this.isLuxonDuration=!0}static fromMillis(e,n){return E.fromObject({milliseconds:e},n)}static fromObject(e,n={}){if(e==null||typeof e!="object")throw new F(`Duration.fromObject: argument expected to be an object, got ${e===null?"null":typeof e}`);return new E({values:yt(e,E.normalizeUnit),loc:O.fromObject(n),conversionAccuracy:n.conversionAccuracy,matrix:n.matrix})}static fromDurationLike(e){if(le(e))return E.fromMillis(e);if(E.isDuration(e))return e;if(typeof e=="object")return E.fromObject(e);throw new F(`Unknown duration argument ${e} of type ${typeof e}`)}static fromISO(e,n){const[s]=Da(e);return s?E.fromObject(s,n):E.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static fromISOTime(e,n){const[s]=Aa(e);return s?E.fromObject(s,n):E.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static invalid(e,n=null){if(!e)throw new F("need to specify a reason the Duration is invalid");const s=e instanceof K?e:new K(e,n);if(v.throwOnInvalid)throw new ho(s);return new E({invalid:s})}static normalizeUnit(e){const n={year:"years",years:"years",quarter:"quarters",quarters:"quarters",month:"months",months:"months",week:"weeks",weeks:"weeks",day:"days",days:"days",hour:"hours",hours:"hours",minute:"minutes",minutes:"minutes",second:"seconds",seconds:"seconds",millisecond:"milliseconds",milliseconds:"milliseconds"}[e&&e.toLowerCase()];if(!n)throw new Pn(e);return n}static isDuration(e){return e&&e.isLuxonDuration||!1}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}toFormat(e,n={}){const s={...n,floor:n.round!==!1&&n.floor!==!1};return this.isValid?R.create(this.loc,s).formatDurationFromString(this,e):Js}toHuman(e={}){if(!this.isValid)return Js;const n=ye.map(s=>{const r=this.values[s];return w(r)?null:this.loc.numberFormatter({style:"unit",unitDisplay:"long",...e,unit:s.slice(0,-1)}).format(r)}).filter(s=>s);return this.loc.listFormatter({type:"conjunction",style:e.listStyle||"narrow",...e}).format(n)}toObject(){return this.isValid?{...this.values}:{}}toISO(){if(!this.isValid)return null;let e="P";return this.years!==0&&(e+=this.years+"Y"),(this.months!==0||this.quarters!==0)&&(e+=this.months+this.quarters*3+"M"),this.weeks!==0&&(e+=this.weeks+"W"),this.days!==0&&(e+=this.days+"D"),(this.hours!==0||this.minutes!==0||this.seconds!==0||this.milliseconds!==0)&&(e+="T"),this.hours!==0&&(e+=this.hours+"H"),this.minutes!==0&&(e+=this.minutes+"M"),(this.seconds!==0||this.milliseconds!==0)&&(e+=Kt(this.seconds+this.milliseconds/1e3,3)+"S"),e==="P"&&(e+="T0S"),e}toISOTime(e={}){if(!this.isValid)return null;const n=this.toMillis();return n<0||n>=864e5?null:(e={suppressMilliseconds:!1,suppressSeconds:!1,includePrefix:!1,format:"extended",...e,includeOffset:!1},S.fromMillis(n,{zone:"UTC"}).toISOTime(e))}toJSON(){return this.toISO()}toString(){return this.toISO()}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`Duration { values: ${JSON.stringify(this.values)} }`:`Duration { Invalid, reason: ${this.invalidReason} }`}toMillis(){return this.isValid?Qs(this.matrix,this.values):NaN}valueOf(){return this.toMillis()}plus(e){if(!this.isValid)return this;const n=E.fromDurationLike(e),s={};for(const r of ye)(Oe(n.values,r)||Oe(this.values,r))&&(s[r]=n.get(r)+this.get(r));return de(this,{values:s},!0)}minus(e){if(!this.isValid)return this;const n=E.fromDurationLike(e);return this.plus(n.negate())}mapUnits(e){if(!this.isValid)return this;const n={};for(const s of Object.keys(this.values))n[s]=As(e(this.values[s],s));return de(this,{values:n},!0)}get(e){return this[E.normalizeUnit(e)]}set(e){if(!this.isValid)return this;const n={...this.values,...yt(e,E.normalizeUnit)};return de(this,{values:n})}reconfigure({locale:e,numberingSystem:n,conversionAccuracy:s,matrix:r}={}){const o={loc:this.loc.clone({locale:e,numberingSystem:n}),matrix:r,conversionAccuracy:s};return de(this,o)}as(e){return this.isValid?this.shiftTo(e).get(e):NaN}normalize(){if(!this.isValid)return this;const e=this.toObject();return Xs(this.matrix,e),de(this,{values:e},!0)}rescale(){if(!this.isValid)return this;const e=Ha(this.normalize().shiftToAll().toObject());return de(this,{values:e},!0)}shiftTo(...e){if(!this.isValid)return this;if(e.length===0)return this;e=e.map(o=>E.normalizeUnit(o));const n={},s={},r=this.toObject();let i;for(const o of ye)if(e.indexOf(o)>=0){i=o;let a=0;for(const l in s)a+=this.matrix[l][o]*s[l],s[l]=0;le(r[o])&&(a+=r[o]);const c=Math.trunc(a);n[o]=c,s[o]=(a*1e3-c*1e3)/1e3}else le(r[o])&&(s[o]=r[o]);for(const o in s)s[o]!==0&&(n[i]+=o===i?s[o]:s[o]/this.matrix[i][o]);return Xs(this.matrix,n),de(this,{values:n},!0)}shiftToAll(){return this.isValid?this.shiftTo("years","months","weeks","days","hours","minutes","seconds","milliseconds"):this}negate(){if(!this.isValid)return this;const e={};for(const n of Object.keys(this.values))e[n]=this.values[n]===0?0:-this.values[n];return de(this,{values:e},!0)}get years(){return this.isValid?this.values.years||0:NaN}get quarters(){return this.isValid?this.values.quarters||0:NaN}get months(){return this.isValid?this.values.months||0:NaN}get weeks(){return this.isValid?this.values.weeks||0:NaN}get days(){return this.isValid?this.values.days||0:NaN}get hours(){return this.isValid?this.values.hours||0:NaN}get minutes(){return this.isValid?this.values.minutes||0:NaN}get seconds(){return this.isValid?this.values.seconds||0:NaN}get milliseconds(){return this.isValid?this.values.milliseconds||0:NaN}get isValid(){return this.invalid===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}equals(e){if(!this.isValid||!e.isValid||!this.loc.equals(e.loc))return!1;function n(s,r){return s===void 0||s===0?r===void 0||r===0:s===r}for(const s of ye)if(!n(this.values[s],e.values[s]))return!1;return!0}}const Ve="Invalid Interval";function Pa(t,e){return!t||!t.isValid?M.invalid("missing or invalid start"):!e||!e.isValid?M.invalid("missing or invalid end"):e<t?M.invalid("end before start",`The end of an interval must be after its start, but you had start=${t.toISO()} and end=${e.toISO()}`):null}class M{constructor(e){this.s=e.start,this.e=e.end,this.invalid=e.invalid||null,this.isLuxonInterval=!0}static invalid(e,n=null){if(!e)throw new F("need to specify a reason the Interval is invalid");const s=e instanceof K?e:new K(e,n);if(v.throwOnInvalid)throw new uo(s);return new M({invalid:s})}static fromDateTimes(e,n){const s=Ge(e),r=Ge(n),i=Pa(s,r);return i??new M({start:s,end:r})}static after(e,n){const s=E.fromDurationLike(n),r=Ge(e);return M.fromDateTimes(r,r.plus(s))}static before(e,n){const s=E.fromDurationLike(n),r=Ge(e);return M.fromDateTimes(r.minus(s),r)}static fromISO(e,n){const[s,r]=(e||"").split("/",2);if(s&&r){let i,o;try{i=S.fromISO(s,n),o=i.isValid}catch{o=!1}let a,c;try{a=S.fromISO(r,n),c=a.isValid}catch{c=!1}if(o&&c)return M.fromDateTimes(i,a);if(o){const l=E.fromISO(r,n);if(l.isValid)return M.after(i,l)}else if(c){const l=E.fromISO(s,n);if(l.isValid)return M.before(a,l)}}return M.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static isInterval(e){return e&&e.isLuxonInterval||!1}get start(){return this.isValid?this.s:null}get end(){return this.isValid?this.e:null}get isValid(){return this.invalidReason===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}length(e="milliseconds"){return this.isValid?this.toDuration(e).get(e):NaN}count(e="milliseconds",n){if(!this.isValid)return NaN;const s=this.start.startOf(e,n);let r;return n!=null&&n.useLocaleWeeks?r=this.end.reconfigure({locale:s.locale}):r=this.end,r=r.startOf(e,n),Math.floor(r.diff(s,e).get(e))+(r.valueOf()!==this.end.valueOf())}hasSame(e){return this.isValid?this.isEmpty()||this.e.minus(1).hasSame(this.s,e):!1}isEmpty(){return this.s.valueOf()===this.e.valueOf()}isAfter(e){return this.isValid?this.s>e:!1}isBefore(e){return this.isValid?this.e<=e:!1}contains(e){return this.isValid?this.s<=e&&this.e>e:!1}set({start:e,end:n}={}){return this.isValid?M.fromDateTimes(e||this.s,n||this.e):this}splitAt(...e){if(!this.isValid)return[];const n=e.map(Ge).filter(o=>this.contains(o)).sort((o,a)=>o.toMillis()-a.toMillis()),s=[];let{s:r}=this,i=0;for(;r<this.e;){const o=n[i]||this.e,a=+o>+this.e?this.e:o;s.push(M.fromDateTimes(r,a)),r=a,i+=1}return s}splitBy(e){const n=E.fromDurationLike(e);if(!this.isValid||!n.isValid||n.as("milliseconds")===0)return[];let{s}=this,r=1,i;const o=[];for(;s<this.e;){const a=this.start.plus(n.mapUnits(c=>c*r));i=+a>+this.e?this.e:a,o.push(M.fromDateTimes(s,i)),s=i,r+=1}return o}divideEqually(e){return this.isValid?this.splitBy(this.length()/e).slice(0,e):[]}overlaps(e){return this.e>e.s&&this.s<e.e}abutsStart(e){return this.isValid?+this.e==+e.s:!1}abutsEnd(e){return this.isValid?+e.e==+this.s:!1}engulfs(e){return this.isValid?this.s<=e.s&&this.e>=e.e:!1}equals(e){return!this.isValid||!e.isValid?!1:this.s.equals(e.s)&&this.e.equals(e.e)}intersection(e){if(!this.isValid)return this;const n=this.s>e.s?this.s:e.s,s=this.e<e.e?this.e:e.e;return n>=s?null:M.fromDateTimes(n,s)}union(e){if(!this.isValid)return this;const n=this.s<e.s?this.s:e.s,s=this.e>e.e?this.e:e.e;return M.fromDateTimes(n,s)}static merge(e){const[n,s]=e.sort((r,i)=>r.s-i.s).reduce(([r,i],o)=>i?i.overlaps(o)||i.abutsStart(o)?[r,i.union(o)]:[r.concat([i]),o]:[r,o],[[],null]);return s&&n.push(s),n}static xor(e){let n=null,s=0;const r=[],i=e.map(c=>[{time:c.s,type:"s"},{time:c.e,type:"e"}]),o=Array.prototype.concat(...i),a=o.sort((c,l)=>c.time-l.time);for(const c of a)s+=c.type==="s"?1:-1,s===1?n=c.time:(n&&+n!=+c.time&&r.push(M.fromDateTimes(n,c.time)),n=null);return M.merge(r)}difference(...e){return M.xor([this].concat(e)).map(n=>this.intersection(n)).filter(n=>n&&!n.isEmpty())}toString(){return this.isValid?`[${this.s.toISO()} – ${this.e.toISO()})`:Ve}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`Interval { start: ${this.s.toISO()}, end: ${this.e.toISO()} }`:`Interval { Invalid, reason: ${this.invalidReason} }`}toLocaleString(e=ot,n={}){return this.isValid?R.create(this.s.loc.clone(n),e).formatInterval(this):Ve}toISO(e){return this.isValid?`${this.s.toISO(e)}/${this.e.toISO(e)}`:Ve}toISODate(){return this.isValid?`${this.s.toISODate()}/${this.e.toISODate()}`:Ve}toISOTime(e){return this.isValid?`${this.s.toISOTime(e)}/${this.e.toISOTime(e)}`:Ve}toFormat(e,{separator:n=" – "}={}){return this.isValid?`${this.s.toFormat(e)}${n}${this.e.toFormat(e)}`:Ve}toDuration(e,n){return this.isValid?this.e.diff(this.s,e,n):E.invalid(this.invalidReason)}mapEndpoints(e){return M.fromDateTimes(e(this.s),e(this.e))}}class wt{static hasDST(e=v.defaultZone){const n=S.now().setZone(e).set({month:12});return!e.isUniversal&&n.offset!==n.set({month:6}).offset}static isValidIANAZone(e){return ne.isValidZone(e)}static normalizeZone(e){return ce(e,v.defaultZone)}static getStartOfWeek({locale:e=null,locObj:n=null}={}){return(n||O.create(e)).getStartOfWeek()}static getMinimumDaysInFirstWeek({locale:e=null,locObj:n=null}={}){return(n||O.create(e)).getMinDaysInFirstWeek()}static getWeekendWeekdays({locale:e=null,locObj:n=null}={}){return(n||O.create(e)).getWeekendDays().slice()}static months(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null,outputCalendar:i="gregory"}={}){return(r||O.create(n,s,i)).months(e)}static monthsFormat(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null,outputCalendar:i="gregory"}={}){return(r||O.create(n,s,i)).months(e,!0)}static weekdays(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null}={}){return(r||O.create(n,s,null)).weekdays(e)}static weekdaysFormat(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null}={}){return(r||O.create(n,s,null)).weekdays(e,!0)}static meridiems({locale:e=null}={}){return O.create(e).meridiems()}static eras(e="short",{locale:n=null}={}){return O.create(n,null,"gregory").eras(e)}static features(){return{relative:xs(),localeWeek:vs()}}}function er(t,e){const n=r=>r.toUTC(0,{keepLocalTime:!0}).startOf("day").valueOf(),s=n(e)-n(t);return Math.floor(E.fromMillis(s).as("days"))}function za(t,e,n){const s=[["years",(c,l)=>l.year-c.year],["quarters",(c,l)=>l.quarter-c.quarter+(l.year-c.year)*4],["months",(c,l)=>l.month-c.month+(l.year-c.year)*12],["weeks",(c,l)=>{const d=er(c,l);return(d-d%7)/7}],["days",er]],r={},i=t;let o,a;for(const[c,l]of s)n.indexOf(c)>=0&&(o=c,r[c]=l(t,e),a=i.plus(r),a>e?(r[c]--,t=i.plus(r),t>e&&(a=t,r[c]--,t=i.plus(r))):t=a);return[t,r,a,o]}function qa(t,e,n,s){let[r,i,o,a]=za(t,e,n);const c=e-r,l=n.filter(f=>["hours","minutes","seconds","milliseconds"].indexOf(f)>=0);l.length===0&&(o<e&&(o=r.plus({[a]:1})),o!==r&&(i[a]=(i[a]||0)+c/(o-r)));const d=E.fromObject(i,s);return l.length>0?E.fromMillis(c,s).shiftTo(...l).plus(d):d}const Za="missing Intl.DateTimeFormat.formatToParts support";function T(t,e=n=>n){return{regex:t,deser:([n])=>e(Fo(n))}}const tr="[  ]",nr=new RegExp(tr,"g");function ja(t){return t.replace(/\./g,"\\.?").replace(nr,tr)}function sr(t){return t.replace(/\./g,"").replace(nr," ").toLowerCase()}function Q(t,e){return t===null?null:{regex:RegExp(t.map(ja).join("|")),deser:([n])=>t.findIndex(s=>sr(n)===sr(s))+e}}function rr(t,e){return{regex:t,deser:([,n,s])=>pt(n,s),groups:e}}function St(t){return{regex:t,deser:([e])=>e}}function Ga(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")}function Ya(t,e){const n=J(e),s=J(e,"{2}"),r=J(e,"{3}"),i=J(e,"{4}"),o=J(e,"{6}"),a=J(e,"{1,2}"),c=J(e,"{1,3}"),l=J(e,"{1,6}"),d=J(e,"{1,9}"),f=J(e,"{2,4}"),b=J(e,"{4,6}"),p=C=>({regex:RegExp(Ga(C.val)),deser:([I])=>I,literal:!0}),g=(C=>{if(t.literal)return p(C);switch(C.val){case"G":return Q(e.eras("short"),0);case"GG":return Q(e.eras("long"),0);case"y":return T(l);case"yy":return T(f,Qt);case"yyyy":return T(i);case"yyyyy":return T(b);case"yyyyyy":return T(o);case"M":return T(a);case"MM":return T(s);case"MMM":return Q(e.months("short",!0),1);case"MMMM":return Q(e.months("long",!0),1);case"L":return T(a);case"LL":return T(s);case"LLL":return Q(e.months("short",!1),1);case"LLLL":return Q(e.months("long",!1),1);case"d":return T(a);case"dd":return T(s);case"o":return T(c);case"ooo":return T(r);case"HH":return T(s);case"H":return T(a);case"hh":return T(s);case"h":return T(a);case"mm":return T(s);case"m":return T(a);case"q":return T(a);case"qq":return T(s);case"s":return T(a);case"ss":return T(s);case"S":return T(c);case"SSS":return T(r);case"u":return St(d);case"uu":return St(a);case"uuu":return T(n);case"a":return Q(e.meridiems(),0);case"kkkk":return T(i);case"kk":return T(f,Qt);case"W":return T(a);case"WW":return T(s);case"E":case"c":return T(n);case"EEE":return Q(e.weekdays("short",!1),1);case"EEEE":return Q(e.weekdays("long",!1),1);case"ccc":return Q(e.weekdays("short",!0),1);case"cccc":return Q(e.weekdays("long",!0),1);case"Z":case"ZZ":return rr(new RegExp(`([+-]${a.source})(?::(${s.source}))?`),2);case"ZZZ":return rr(new RegExp(`([+-]${a.source})(${s.source})?`),2);case"z":return St(/[a-z_+-/]{1,256}?/i);case" ":return St(/[^\S\n\r]/);default:return p(C)}})(t)||{invalidReason:Za};return g.token=t,g}const Ja={year:{"2-digit":"yy",numeric:"yyyyy"},month:{numeric:"M","2-digit":"MM",short:"MMM",long:"MMMM"},day:{numeric:"d","2-digit":"dd"},weekday:{short:"EEE",long:"EEEE"},dayperiod:"a",dayPeriod:"a",hour12:{numeric:"h","2-digit":"hh"},hour24:{numeric:"H","2-digit":"HH"},minute:{numeric:"m","2-digit":"mm"},second:{numeric:"s","2-digit":"ss"},timeZoneName:{long:"ZZZZZ",short:"ZZZ"}};function Ka(t,e,n){const{type:s,value:r}=t;if(s==="literal"){const c=/^\s+$/.test(r);return{literal:!c,val:c?" ":r}}const i=e[s];let o=s;s==="hour"&&(e.hour12!=null?o=e.hour12?"hour12":"hour24":e.hourCycle!=null?e.hourCycle==="h11"||e.hourCycle==="h12"?o="hour12":o="hour24":o=n.hour12?"hour12":"hour24");let a=Ja[o];if(typeof a=="object"&&(a=a[i]),a)return{literal:!1,val:a}}function Qa(t){return[`^${t.map(n=>n.regex).reduce((n,s)=>`${n}(${s.source})`,"")}$`,t]}function Xa(t,e,n){const s=t.match(e);if(s){const r={};let i=1;for(const o in n)if(Oe(n,o)){const a=n[o],c=a.groups?a.groups+1:1;!a.literal&&a.token&&(r[a.token.val[0]]=a.deser(s.slice(i,i+c))),i+=c}return[s,r]}else return[s,{}]}function ec(t){const e=i=>{switch(i){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":case"H":return"hour";case"d":return"day";case"o":return"ordinal";case"L":case"M":return"month";case"y":return"year";case"E":case"c":return"weekday";case"W":return"weekNumber";case"k":return"weekYear";case"q":return"quarter";default:return null}};let n=null,s;return w(t.z)||(n=ne.create(t.z)),w(t.Z)||(n||(n=new $(t.Z)),s=t.Z),w(t.q)||(t.M=(t.q-1)*3+1),w(t.h)||(t.h<12&&t.a===1?t.h+=12:t.h===12&&t.a===0&&(t.h=0)),t.G===0&&t.y&&(t.y=-t.y),w(t.u)||(t.S=Jt(t.u)),[Object.keys(t).reduce((i,o)=>{const a=e(o);return a&&(i[a]=t[o]),i},{}),n,s]}let nn=null;function tc(){return nn||(nn=S.fromMillis(1555555555555)),nn}function nc(t,e){if(t.literal)return t;const n=R.macroTokenToFormatOpts(t.val),s=cr(n,e);return s==null||s.includes(void 0)?t:s}function ir(t,e){return Array.prototype.concat(...t.map(n=>nc(n,e)))}class or{constructor(e,n){if(this.locale=e,this.format=n,this.tokens=ir(R.parseFormat(n),e),this.units=this.tokens.map(s=>Ya(s,e)),this.disqualifyingUnit=this.units.find(s=>s.invalidReason),!this.disqualifyingUnit){const[s,r]=Qa(this.units);this.regex=RegExp(s,"i"),this.handlers=r}}explainFromTokens(e){if(this.isValid){const[n,s]=Xa(e,this.regex,this.handlers),[r,i,o]=s?ec(s):[null,null,void 0];if(Oe(s,"a")&&Oe(s,"H"))throw new Te("Can't include meridiem when specifying 24-hour format");return{input:e,tokens:this.tokens,regex:this.regex,rawMatches:n,matches:s,result:r,zone:i,specificOffset:o}}else return{input:e,tokens:this.tokens,invalidReason:this.invalidReason}}get isValid(){return!this.disqualifyingUnit}get invalidReason(){return this.disqualifyingUnit?this.disqualifyingUnit.invalidReason:null}}function ar(t,e,n){return new or(t,n).explainFromTokens(e)}function sc(t,e,n){const{result:s,zone:r,specificOffset:i,invalidReason:o}=ar(t,e,n);return[s,r,i,o]}function cr(t,e){if(!t)return null;const s=R.create(e,t).dtFormatter(tc()),r=s.formatToParts(),i=s.resolvedOptions();return r.map(o=>Ka(o,t,i))}const sn="Invalid DateTime",lr=864e13;function je(t){return new K("unsupported zone",`the zone "${t.name}" is not supported`)}function rn(t){return t.weekData===null&&(t.weekData=dt(t.c)),t.weekData}function on(t){return t.localWeekData===null&&(t.localWeekData=dt(t.c,t.loc.getMinDaysInFirstWeek(),t.loc.getStartOfWeek())),t.localWeekData}function ge(t,e){const n={ts:t.ts,zone:t.zone,c:t.c,o:t.o,loc:t.loc,invalid:t.invalid};return new S({...n,...e,old:n})}function ur(t,e,n){let s=t-e*60*1e3;const r=n.offset(s);if(e===r)return[s,e];s-=(r-e)*60*1e3;const i=n.offset(s);return r===i?[s,r]:[t-Math.min(r,i)*60*1e3,Math.max(r,i)]}function bt(t,e){t+=e*60*1e3;const n=new Date(t);return{year:n.getUTCFullYear(),month:n.getUTCMonth()+1,day:n.getUTCDate(),hour:n.getUTCHours(),minute:n.getUTCMinutes(),second:n.getUTCSeconds(),millisecond:n.getUTCMilliseconds()}}function kt(t,e,n){return ur(mt(t),e,n)}function dr(t,e){const n=t.o,s=t.c.year+Math.trunc(e.years),r=t.c.month+Math.trunc(e.months)+Math.trunc(e.quarters)*3,i={...t.c,year:s,month:r,day:Math.min(t.c.day,ft(s,r))+Math.trunc(e.days)+Math.trunc(e.weeks)*7},o=E.fromObject({years:e.years-Math.trunc(e.years),quarters:e.quarters-Math.trunc(e.quarters),months:e.months-Math.trunc(e.months),weeks:e.weeks-Math.trunc(e.weeks),days:e.days-Math.trunc(e.days),hours:e.hours,minutes:e.minutes,seconds:e.seconds,milliseconds:e.milliseconds}).as("milliseconds"),a=mt(i);let[c,l]=ur(a,n,t.zone);return o!==0&&(c+=o,l=t.zone.offset(c)),{ts:c,o:l}}function Ae(t,e,n,s,r,i){const{setZone:o,zone:a}=n;if(t&&Object.keys(t).length!==0||e){const c=e||a,l=S.fromObject(t,{...n,zone:c,specificOffset:i});return o?l:l.setZone(a)}else return S.invalid(new K("unparsable",`the input "${r}" can't be parsed as ${s}`))}function Et(t,e,n=!0){return t.isValid?R.create(O.create("en-US"),{allowZ:n,forceSimple:!0}).formatDateTimeFromString(t,e):null}function an(t,e){const n=t.c.year>9999||t.c.year<0;let s="";return n&&t.c.year>=0&&(s+="+"),s+=D(t.c.year,n?6:4),e?(s+="-",s+=D(t.c.month),s+="-",s+=D(t.c.day)):(s+=D(t.c.month),s+=D(t.c.day)),s}function hr(t,e,n,s,r,i){let o=D(t.c.hour);return e?(o+=":",o+=D(t.c.minute),(t.c.millisecond!==0||t.c.second!==0||!n)&&(o+=":")):o+=D(t.c.minute),(t.c.millisecond!==0||t.c.second!==0||!n)&&(o+=D(t.c.second),(t.c.millisecond!==0||!s)&&(o+=".",o+=D(t.c.millisecond,3))),r&&(t.isOffsetFixed&&t.offset===0&&!i?o+="Z":t.o<0?(o+="-",o+=D(Math.trunc(-t.o/60)),o+=":",o+=D(Math.trunc(-t.o%60))):(o+="+",o+=D(Math.trunc(t.o/60)),o+=":",o+=D(Math.trunc(t.o%60)))),i&&(o+="["+t.zone.ianaName+"]"),o}const fr={month:1,day:1,hour:0,minute:0,second:0,millisecond:0},rc={weekNumber:1,weekday:1,hour:0,minute:0,second:0,millisecond:0},ic={ordinal:1,hour:0,minute:0,second:0,millisecond:0},mr=["year","month","day","hour","minute","second","millisecond"],oc=["weekYear","weekNumber","weekday","hour","minute","second","millisecond"],ac=["year","ordinal","hour","minute","second","millisecond"];function cc(t){const e={year:"year",years:"year",month:"month",months:"month",day:"day",days:"day",hour:"hour",hours:"hour",minute:"minute",minutes:"minute",quarter:"quarter",quarters:"quarter",second:"second",seconds:"second",millisecond:"millisecond",milliseconds:"millisecond",weekday:"weekday",weekdays:"weekday",weeknumber:"weekNumber",weeksnumber:"weekNumber",weeknumbers:"weekNumber",weekyear:"weekYear",weekyears:"weekYear",ordinal:"ordinal"}[t.toLowerCase()];if(!e)throw new Pn(t);return e}function pr(t){switch(t.toLowerCase()){case"localweekday":case"localweekdays":return"localWeekday";case"localweeknumber":case"localweeknumbers":return"localWeekNumber";case"localweekyear":case"localweekyears":return"localWeekYear";default:return cc(t)}}function lc(t){return _t[t]||(Tt===void 0&&(Tt=v.now()),_t[t]=t.offset(Tt)),_t[t]}function yr(t,e){const n=ce(e.zone,v.defaultZone);if(!n.isValid)return S.invalid(je(n));const s=O.fromObject(e);let r,i;if(w(t.year))r=v.now();else{for(const c of mr)w(t[c])&&(t[c]=fr[c]);const o=Ns(t)||Is(t);if(o)return S.invalid(o);const a=lc(n);[r,i]=kt(t,a,n)}return new S({ts:r,zone:n,loc:s,o:i})}function gr(t,e,n){const s=w(n.round)?!0:n.round,r=(o,a)=>(o=Kt(o,s||n.calendary?0:2,!0),e.loc.clone(n).relFormatter(n).format(o,a)),i=o=>n.calendary?e.hasSame(t,o)?0:e.startOf(o).diff(t.startOf(o),o).get(o):e.diff(t,o).get(o);if(n.unit)return r(i(n.unit),n.unit);for(const o of n.units){const a=i(o);if(Math.abs(a)>=1)return r(a,o)}return r(t>e?-0:0,n.units[n.units.length-1])}function wr(t){let e={},n;return t.length>0&&typeof t[t.length-1]=="object"?(e=t[t.length-1],n=Array.from(t).slice(0,t.length-1)):n=Array.from(t),[e,n]}let Tt,_t={};class S{constructor(e){const n=e.zone||v.defaultZone;let s=e.invalid||(Number.isNaN(e.ts)?new K("invalid input"):null)||(n.isValid?null:je(n));this.ts=w(e.ts)?v.now():e.ts;let r=null,i=null;if(!s)if(e.old&&e.old.ts===this.ts&&e.old.zone.equals(n))[r,i]=[e.old.c,e.old.o];else{const a=le(e.o)&&!e.old?e.o:n.offset(this.ts);r=bt(this.ts,a),s=Number.isNaN(r.year)?new K("invalid input"):null,r=s?null:r,i=s?null:a}this._zone=n,this.loc=e.loc||O.create(),this.invalid=s,this.weekData=null,this.localWeekData=null,this.c=r,this.o=i,this.isLuxonDateTime=!0}static now(){return new S({})}static local(){const[e,n]=wr(arguments),[s,r,i,o,a,c,l]=n;return yr({year:s,month:r,day:i,hour:o,minute:a,second:c,millisecond:l},e)}static utc(){const[e,n]=wr(arguments),[s,r,i,o,a,c,l]=n;return e.zone=$.utcInstance,yr({year:s,month:r,day:i,hour:o,minute:a,second:c,millisecond:l},e)}static fromJSDate(e,n={}){const s=Wo(e)?e.valueOf():NaN;if(Number.isNaN(s))return S.invalid("invalid input");const r=ce(n.zone,v.defaultZone);return r.isValid?new S({ts:s,zone:r,loc:O.fromObject(n)}):S.invalid(je(r))}static fromMillis(e,n={}){if(le(e))return e<-lr||e>lr?S.invalid("Timestamp out of range"):new S({ts:e,zone:ce(n.zone,v.defaultZone),loc:O.fromObject(n)});throw new F(`fromMillis requires a numerical input, but received a ${typeof e} with value ${e}`)}static fromSeconds(e,n={}){if(le(e))return new S({ts:e*1e3,zone:ce(n.zone,v.defaultZone),loc:O.fromObject(n)});throw new F("fromSeconds requires a numerical input")}static fromObject(e,n={}){e=e||{};const s=ce(n.zone,v.defaultZone);if(!s.isValid)return S.invalid(je(s));const r=O.fromObject(n),i=yt(e,pr),{minDaysInFirstWeek:o,startOfWeek:a}=Cs(i,r),c=v.now(),l=w(n.specificOffset)?s.offset(c):n.specificOffset,d=!w(i.ordinal),f=!w(i.year),b=!w(i.month)||!w(i.day),p=f||b,m=i.weekYear||i.weekNumber;if((p||d)&&m)throw new Te("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(b&&d)throw new Te("Can't mix ordinal dates with month/day");const g=m||i.weekday&&!p;let C,I,x=bt(c,l);g?(C=oc,I=rc,x=dt(x,o,a)):d?(C=ac,I=ic,x=Gt(x)):(C=mr,I=fr);let se=!1;for(const Se of C){const cn=i[Se];w(cn)?se?i[Se]=I[Se]:i[Se]=x[Se]:se=!0}const N=g?Lo(i,o,a):d?Bo(i):Ns(i),_=N||Is(i);if(_)return S.invalid(_);const W=g?_s(i,o,a):d?Os(i):i,[L,we]=kt(W,l,s),he=new S({ts:L,zone:s,o:we,loc:r});return i.weekday&&p&&e.weekday!==he.weekday?S.invalid("mismatched weekday",`you can't specify both a weekday of ${i.weekday} and a date of ${he.toISO()}`):he.isValid?he:S.invalid(he.invalid)}static fromISO(e,n={}){const[s,r]=xa(e);return Ae(s,r,n,"ISO 8601",e)}static fromRFC2822(e,n={}){const[s,r]=va(e);return Ae(s,r,n,"RFC 2822",e)}static fromHTTP(e,n={}){const[s,r]=Ma(e);return Ae(s,r,n,"HTTP",n)}static fromFormat(e,n,s={}){if(w(e)||w(n))throw new F("fromFormat requires an input string and a format");const{locale:r=null,numberingSystem:i=null}=s,o=O.fromOpts({locale:r,numberingSystem:i,defaultToEN:!0}),[a,c,l,d]=sc(o,e,n);return d?S.invalid(d):Ae(a,c,s,`format ${n}`,e,l)}static fromString(e,n,s={}){return S.fromFormat(e,n,s)}static fromSQL(e,n={}){const[s,r]=Ba(e);return Ae(s,r,n,"SQL",e)}static invalid(e,n=null){if(!e)throw new F("need to specify a reason the DateTime is invalid");const s=e instanceof K?e:new K(e,n);if(v.throwOnInvalid)throw new lo(s);return new S({invalid:s})}static isDateTime(e){return e&&e.isLuxonDateTime||!1}static parseFormatForOpts(e,n={}){const s=cr(e,O.fromObject(n));return s?s.map(r=>r?r.val:null).join(""):null}static expandFormat(e,n={}){return ir(R.parseFormat(e),O.fromObject(n)).map(r=>r.val).join("")}static resetCache(){Tt=void 0,_t={}}get(e){return this[e]}get isValid(){return this.invalid===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}get outputCalendar(){return this.isValid?this.loc.outputCalendar:null}get zone(){return this._zone}get zoneName(){return this.isValid?this.zone.name:null}get year(){return this.isValid?this.c.year:NaN}get quarter(){return this.isValid?Math.ceil(this.c.month/3):NaN}get month(){return this.isValid?this.c.month:NaN}get day(){return this.isValid?this.c.day:NaN}get hour(){return this.isValid?this.c.hour:NaN}get minute(){return this.isValid?this.c.minute:NaN}get second(){return this.isValid?this.c.second:NaN}get millisecond(){return this.isValid?this.c.millisecond:NaN}get weekYear(){return this.isValid?rn(this).weekYear:NaN}get weekNumber(){return this.isValid?rn(this).weekNumber:NaN}get weekday(){return this.isValid?rn(this).weekday:NaN}get isWeekend(){return this.isValid&&this.loc.getWeekendDays().includes(this.weekday)}get localWeekday(){return this.isValid?on(this).weekday:NaN}get localWeekNumber(){return this.isValid?on(this).weekNumber:NaN}get localWeekYear(){return this.isValid?on(this).weekYear:NaN}get ordinal(){return this.isValid?Gt(this.c).ordinal:NaN}get monthShort(){return this.isValid?wt.months("short",{locObj:this.loc})[this.month-1]:null}get monthLong(){return this.isValid?wt.months("long",{locObj:this.loc})[this.month-1]:null}get weekdayShort(){return this.isValid?wt.weekdays("short",{locObj:this.loc})[this.weekday-1]:null}get weekdayLong(){return this.isValid?wt.weekdays("long",{locObj:this.loc})[this.weekday-1]:null}get offset(){return this.isValid?+this.o:NaN}get offsetNameShort(){return this.isValid?this.zone.offsetName(this.ts,{format:"short",locale:this.locale}):null}get offsetNameLong(){return this.isValid?this.zone.offsetName(this.ts,{format:"long",locale:this.locale}):null}get isOffsetFixed(){return this.isValid?this.zone.isUniversal:null}get isInDST(){return this.isOffsetFixed?!1:this.offset>this.set({month:1,day:1}).offset||this.offset>this.set({month:5}).offset}getPossibleOffsets(){if(!this.isValid||this.isOffsetFixed)return[this];const e=864e5,n=6e4,s=mt(this.c),r=this.zone.offset(s-e),i=this.zone.offset(s+e),o=this.zone.offset(s-r*n),a=this.zone.offset(s-i*n);if(o===a)return[this];const c=s-o*n,l=s-a*n,d=bt(c,o),f=bt(l,a);return d.hour===f.hour&&d.minute===f.minute&&d.second===f.second&&d.millisecond===f.millisecond?[ge(this,{ts:c}),ge(this,{ts:l})]:[this]}get isInLeapYear(){return He(this.year)}get daysInMonth(){return ft(this.year,this.month)}get daysInYear(){return this.isValid?Ce(this.year):NaN}get weeksInWeekYear(){return this.isValid?Pe(this.weekYear):NaN}get weeksInLocalWeekYear(){return this.isValid?Pe(this.localWeekYear,this.loc.getMinDaysInFirstWeek(),this.loc.getStartOfWeek()):NaN}resolvedLocaleOptions(e={}){const{locale:n,numberingSystem:s,calendar:r}=R.create(this.loc.clone(e),e).resolvedOptions(this);return{locale:n,numberingSystem:s,outputCalendar:r}}toUTC(e=0,n={}){return this.setZone($.instance(e),n)}toLocal(){return this.setZone(v.defaultZone)}setZone(e,{keepLocalTime:n=!1,keepCalendarTime:s=!1}={}){if(e=ce(e,v.defaultZone),e.equals(this.zone))return this;if(e.isValid){let r=this.ts;if(n||s){const i=e.offset(this.ts),o=this.toObject();[r]=kt(o,i,e)}return ge(this,{ts:r,zone:e})}else return S.invalid(je(e))}reconfigure({locale:e,numberingSystem:n,outputCalendar:s}={}){const r=this.loc.clone({locale:e,numberingSystem:n,outputCalendar:s});return ge(this,{loc:r})}setLocale(e){return this.reconfigure({locale:e})}set(e){if(!this.isValid)return this;const n=yt(e,pr),{minDaysInFirstWeek:s,startOfWeek:r}=Cs(n,this.loc),i=!w(n.weekYear)||!w(n.weekNumber)||!w(n.weekday),o=!w(n.ordinal),a=!w(n.year),c=!w(n.month)||!w(n.day),l=a||c,d=n.weekYear||n.weekNumber;if((l||o)&&d)throw new Te("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(c&&o)throw new Te("Can't mix ordinal dates with month/day");let f;i?f=_s({...dt(this.c,s,r),...n},s,r):w(n.ordinal)?(f={...this.toObject(),...n},w(n.day)&&(f.day=Math.min(ft(f.year,f.month),f.day))):f=Os({...Gt(this.c),...n});const[b,p]=kt(f,this.o,this.zone);return ge(this,{ts:b,o:p})}plus(e){if(!this.isValid)return this;const n=E.fromDurationLike(e);return ge(this,dr(this,n))}minus(e){if(!this.isValid)return this;const n=E.fromDurationLike(e).negate();return ge(this,dr(this,n))}startOf(e,{useLocaleWeeks:n=!1}={}){if(!this.isValid)return this;const s={},r=E.normalizeUnit(e);switch(r){case"years":s.month=1;case"quarters":case"months":s.day=1;case"weeks":case"days":s.hour=0;case"hours":s.minute=0;case"minutes":s.second=0;case"seconds":s.millisecond=0;break}if(r==="weeks")if(n){const i=this.loc.getStartOfWeek(),{weekday:o}=this;o<i&&(s.weekNumber=this.weekNumber-1),s.weekday=i}else s.weekday=1;if(r==="quarters"){const i=Math.ceil(this.month/3);s.month=(i-1)*3+1}return this.set(s)}endOf(e,n){return this.isValid?this.plus({[e]:1}).startOf(e,n).minus(1):this}toFormat(e,n={}){return this.isValid?R.create(this.loc.redefaultToEN(n)).formatDateTimeFromString(this,e):sn}toLocaleString(e=ot,n={}){return this.isValid?R.create(this.loc.clone(n),e).formatDateTime(this):sn}toLocaleParts(e={}){return this.isValid?R.create(this.loc.clone(e),e).formatDateTimeParts(this):[]}toISO({format:e="extended",suppressSeconds:n=!1,suppressMilliseconds:s=!1,includeOffset:r=!0,extendedZone:i=!1}={}){if(!this.isValid)return null;const o=e==="extended";let a=an(this,o);return a+="T",a+=hr(this,o,n,s,r,i),a}toISODate({format:e="extended"}={}){return this.isValid?an(this,e==="extended"):null}toISOWeekDate(){return Et(this,"kkkk-'W'WW-c")}toISOTime({suppressMilliseconds:e=!1,suppressSeconds:n=!1,includeOffset:s=!0,includePrefix:r=!1,extendedZone:i=!1,format:o="extended"}={}){return this.isValid?(r?"T":"")+hr(this,o==="extended",n,e,s,i):null}toRFC2822(){return Et(this,"EEE, dd LLL yyyy HH:mm:ss ZZZ",!1)}toHTTP(){return Et(this.toUTC(),"EEE, dd LLL yyyy HH:mm:ss 'GMT'")}toSQLDate(){return this.isValid?an(this,!0):null}toSQLTime({includeOffset:e=!0,includeZone:n=!1,includeOffsetSpace:s=!0}={}){let r="HH:mm:ss.SSS";return(n||e)&&(s&&(r+=" "),n?r+="z":e&&(r+="ZZ")),Et(this,r,!0)}toSQL(e={}){return this.isValid?`${this.toSQLDate()} ${this.toSQLTime(e)}`:null}toString(){return this.isValid?this.toISO():sn}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`DateTime { ts: ${this.toISO()}, zone: ${this.zone.name}, locale: ${this.locale} }`:`DateTime { Invalid, reason: ${this.invalidReason} }`}valueOf(){return this.toMillis()}toMillis(){return this.isValid?this.ts:NaN}toSeconds(){return this.isValid?this.ts/1e3:NaN}toUnixInteger(){return this.isValid?Math.floor(this.ts/1e3):NaN}toJSON(){return this.toISO()}toBSON(){return this.toJSDate()}toObject(e={}){if(!this.isValid)return{};const n={...this.c};return e.includeConfig&&(n.outputCalendar=this.outputCalendar,n.numberingSystem=this.loc.numberingSystem,n.locale=this.loc.locale),n}toJSDate(){return new Date(this.isValid?this.ts:NaN)}diff(e,n="milliseconds",s={}){if(!this.isValid||!e.isValid)return E.invalid("created by diffing an invalid DateTime");const r={locale:this.locale,numberingSystem:this.numberingSystem,...s},i=Uo(n).map(E.normalizeUnit),o=e.valueOf()>this.valueOf(),a=o?this:e,c=o?e:this,l=qa(a,c,i,r);return o?l.negate():l}diffNow(e="milliseconds",n={}){return this.diff(S.now(),e,n)}until(e){return this.isValid?M.fromDateTimes(this,e):this}hasSame(e,n,s){if(!this.isValid)return!1;const r=e.valueOf(),i=this.setZone(e.zone,{keepLocalTime:!0});return i.startOf(n,s)<=r&&r<=i.endOf(n,s)}equals(e){return this.isValid&&e.isValid&&this.valueOf()===e.valueOf()&&this.zone.equals(e.zone)&&this.loc.equals(e.loc)}toRelative(e={}){if(!this.isValid)return null;const n=e.base||S.fromObject({},{zone:this.zone}),s=e.padding?this<n?-e.padding:e.padding:0;let r=["years","months","days","hours","minutes","seconds"],i=e.unit;return Array.isArray(e.unit)&&(r=e.unit,i=void 0),gr(n,this.plus(s),{...e,numeric:"always",units:r,unit:i})}toRelativeCalendar(e={}){return this.isValid?gr(e.base||S.fromObject({},{zone:this.zone}),this,{...e,numeric:"auto",units:["years","months","days"],calendary:!0}):null}static min(...e){if(!e.every(S.isDateTime))throw new F("min requires all arguments be DateTimes");return Ms(e,n=>n.valueOf(),Math.min)}static max(...e){if(!e.every(S.isDateTime))throw new F("max requires all arguments be DateTimes");return Ms(e,n=>n.valueOf(),Math.max)}static fromFormatExplain(e,n,s={}){const{locale:r=null,numberingSystem:i=null}=s,o=O.fromOpts({locale:r,numberingSystem:i,defaultToEN:!0});return ar(o,e,n)}static fromStringExplain(e,n,s={}){return S.fromFormatExplain(e,n,s)}static buildFormatParser(e,n={}){const{locale:s=null,numberingSystem:r=null}=n,i=O.fromOpts({locale:s,numberingSystem:r,defaultToEN:!0});return new or(i,e)}static fromFormatParser(e,n,s={}){if(w(e)||w(n))throw new F("fromFormatParser requires an input string and a format parser");const{locale:r=null,numberingSystem:i=null}=s,o=O.fromOpts({locale:r,numberingSystem:i,defaultToEN:!0});if(!o.equals(n.locale))throw new F(`fromFormatParser called with a locale of ${o}, but the format parser was created for ${n.locale}`);const{result:a,zone:c,specificOffset:l,invalidReason:d}=n.explainFromTokens(e);return d?S.invalid(d):Ae(a,c,s,`format ${n.format}`,e,l)}static get DATE_SHORT(){return ot}static get DATE_MED(){return zn}static get DATE_MED_WITH_WEEKDAY(){return fo}static get DATE_FULL(){return qn}static get DATE_HUGE(){return Zn}static get TIME_SIMPLE(){return jn}static get TIME_WITH_SECONDS(){return Gn}static get TIME_WITH_SHORT_OFFSET(){return Yn}static get TIME_WITH_LONG_OFFSET(){return Jn}static get TIME_24_SIMPLE(){return Kn}static get TIME_24_WITH_SECONDS(){return Qn}static get TIME_24_WITH_SHORT_OFFSET(){return Xn}static get TIME_24_WITH_LONG_OFFSET(){return es}static get DATETIME_SHORT(){return ts}static get DATETIME_SHORT_WITH_SECONDS(){return ns}static get DATETIME_MED(){return ss}static get DATETIME_MED_WITH_SECONDS(){return rs}static get DATETIME_MED_WITH_WEEKDAY(){return mo}static get DATETIME_FULL(){return is}static get DATETIME_FULL_WITH_SECONDS(){return os}static get DATETIME_HUGE(){return as}static get DATETIME_HUGE_WITH_SECONDS(){return cs}}function Ge(t){if(S.isDateTime(t))return t;if(t&&t.valueOf&&le(t.valueOf()))return S.fromJSDate(t);if(t&&typeof t=="object")return S.fromObject(t);throw new F(`Unknown datetime argument: ${t}, of type ${typeof t}`)}const uc={},dc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},hc=[u.createElementVNode("path",{fill:"rgb(248 113 113)",d:"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"},null,-1)];function fc(t,e){return u.openBlock(),u.createElementBlock("svg",dc,hc)}const mc=G(uc,[["render",fc]]),pc={class:"messages-container-list"},yc={class:"message-container"},gc={key:0,class:"btn-container-widget"},wc=["onClick"],Sc={class:"chat-message"},bc={class:"message-text"},kc={class:"detail-message flex justify-content-between"},Ec={key:0,class:"mr-5"},Tc={key:1,class:"mr-5"},_c=G(u.defineComponent({__name:"MessageList",props:{messages:{type:Array,default:()=>[]},canLoadMoreMessages:{type:Boolean,default:!1}},emits:["loadMore","retry"],setup(t,{emit:e}){const n=t,s=u.ref(),{pause:r,resume:i}=co(s,([{isIntersecting:o}])=>{o&&e("loadMore")});return u.onBeforeMount(()=>{n.canLoadMoreMessages||r()}),u.watch(()=>n.canLoadMoreMessages,o=>{if(o){i();return}r()}),(o,a)=>(u.openBlock(),u.createElementBlock(u.Fragment,null,[u.createElementVNode("div",{ref_key:"target",ref:s,class:"target"},null,512),u.createElementVNode("div",pc,[(u.openBlock(!0),u.createElementBlock(u.Fragment,null,u.renderList(n.messages,c=>{var l,d;return u.openBlock(),u.createElementBlock("div",{key:c.id,class:u.normalizeClass(["message",c.esCliente?"message-right":"message-left"])},[u.createElementVNode("div",yc,[c.error&&c.esCliente?(u.openBlock(),u.createElementBlock("div",gc,[u.createElementVNode("button",{text:"",rounded:"",class:"btn-danger",icon:"fa-solid fa-circle-exclamation","aria-label":"Cancel",onClick:f=>e("retry",c)},[u.createVNode(mc)],8,wc)])):u.createCommentVNode("",!0),u.createElementVNode("div",Sc,[u.createElementVNode("div",{class:u.normalizeClass(["bubble",c.esCliente?"right":"left"])},[u.createElementVNode("div",{class:u.normalizeClass(c.esCliente?"content-right":"content-left")},[u.createElementVNode("div",bc,u.toDisplayString(c.message),1),u.createElementVNode("div",kc,[(l=c.sender)!=null&&l.nombreCompleto?(u.openBlock(),u.createElementBlock("span",Ec,u.toDisplayString(c.esCliente?(d=c.sender)==null?void 0:d.nombreCompleto:"ECOSISTEMA JL"),1)):(u.openBlock(),u.createElementBlock("span",Tc)),u.createElementVNode("span",null,u.toDisplayString(u.unref(S).fromISO(c.createdAt).toFormat("dd-MM-yyyy HH:mm")),1)])],2)],2)])])],2)}),128))])],64))}}),[["__scopeId","data-v-a9fc4a05"]]),Oc={},Sr=t=>(u.pushScopeId("data-v-d9a6b2b7"),t=t(),u.popScopeId(),t),Cc={viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",style:{width:"28px",height:"28px"}},Nc=[Sr(()=>u.createElementVNode("path",{d:"M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z",opacity:".25"},null,-1)),Sr(()=>u.createElementVNode("path",{d:"M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z",class:"spinner_ajPY"},null,-1))];function Ic(t,e){return u.openBlock(),u.createElementBlock("svg",Cc,Nc)}const xc=G(Oc,[["render",Ic],["__scopeId","data-v-d9a6b2b7"]]);function vc(t,e,n){for(let s=t.length-1;s>=0;s--)if(t[s][e]===n)return s;return-1}var br=(t=>(t.NEW_MESSAGE="new_message",t))(br||{});const Mc={class:"widget"},Dc={class:"header-widget"},Vc={class:"title-chat"},Ac={key:0,class:"loader"},Fc={class:"w-full"},Rc=["onSubmit"],Lc={class:"form-message"},Bc={class:"jl-inputgroup-chat"},$c=["onKeyup"],Wc={type:"submit",class:"pointer btn-primary"},Uc=14,Hc=G(u.defineComponent({__name:"Chat",props:{titlePrincipal:{type:String,default:"Comunicación en linea para consultas"},toggleChat:{type:Function,required:!0},tokenAuth:{type:String,required:!0},user:{type:Object,required:!0},visible:{type:Boolean,required:!0}},emits:["show-toast","show-confirm","new-message","clear-new-messages","not-viewed-total"],setup(t,{emit:e}){const n=t,s=u.ref(null),r=u.ref(""),i=u.ref(0),o=u.ref({data:[],canLoadMoreMessages:!1}),a=u.ref({virtualhost:""}),c=u.ref(""),l=u.ref(!1),d=u.ref(null);u.watch(()=>n.visible,async N=>{if(!N||(e("clear-new-messages"),C(),i.value>0&&Un(c.value,n.tokenAuth),a.value&&c.value))return;const _=await Wn(n.tokenAuth);_&&(a.value=_.virtualHost,c.value=_.appChat.id,g())}),u.onMounted(async()=>{if(a.value&&c.value)return;const N=await Wn(n.tokenAuth);N&&(a.value=N.virtualHost,c.value=N.appChat.id,e("not-viewed-total",N.appChat.totalNoVistosCliente),i.value=N.appChat.totalNoVistosCliente,p(),g())});const f=async N=>{var L;if(((L=r.value)==null?void 0:L.length)>300){e("show-toast",{severity:"warn",summary:"Error",detail:"El mensaje no puede superar los 300 caracteres",life:5e3});return}if(!r.value.trim()){e("show-toast",{severity:"warn",summary:"Error",detail:"Por favor ingrese un mensaje",life:5e3});return}const _={id:_r(),message:r.value,visto:!0,multimedia:!1,esCliente:!0,appChatId:c.value,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString(),sender:{nombreCompleto:n.user.nombreCompleto,ci:n.user.ci,msPersonaId:n.user.msPersonaId}},W=o.value.data.push(_)-1;b(r.value,c.value).then(we=>{we?o.value.data[W]=we:(o.value.data[W].error={error:!0,id:_.id},e("show-toast",{severity:"error",summary:"Error",detail:"Ocurrio un error al enviar el mensaje, intente nuevamente",life:5e3}))}),r.value="",C(),x.value&&(x.value.style.height="20px")},b=async(N,_)=>to({esCliente:!0,message:N,appChatId:_},n.tokenAuth),p=async()=>{var L,we,he;const N=(L=o.value.data[0])==null?void 0:L.id,_={lastMessagesId:N,appChatId:c.value,limit:10};l.value=!0;const W=await eo({body:_,token:n.tokenAuth});l.value=!1,o.value.data.unshift(...W.data.sort((Se,cn)=>-cn.createdAt.localeCompare(Se.createdAt))),o.value.canLoadMoreMessages=W.pagination.total>W.pagination.size,N&&((we=d.value)!=null&&we.scrollHeight)&&I((he=d.value)==null?void 0:he.scrollHeight),N||C()},m=async N=>{e("show-confirm",async()=>{var W;if(!((W=N.error)!=null&&W.id))return;const _=await b(N.message,c.value);if(!_)e("show-toast",{severity:"error",summary:"Error",detail:"Ocurrio un error al enviar el mensaje, intente nuevamente",life:5e3});else{const L=vc(o.value.data,"id",N.error.id);o.value.data[L]={..._,error:void 0}}C()})},g=(N="webchat")=>{const{virtualhost:_}=a.value;if(!sessionStorage.getItem("tabBrowser")){let L=Date.now();sessionStorage.setItem("tabBrowser",`${L}`)}s.value=new Vr(`${_}`,`widget_chat_${sessionStorage.getItem("tabBrowser")}`),s.value.connect(),s.value.subscribe(async L=>{L.event&&L.event===br.NEW_MESSAGE&&!L.message.esCliente&&(o.value.data.push(L.message),n.visible===!0&&Un(c.value,n.tokenAuth),n.visible===!1&&(i.value=i.value+1,e("new-message")),C())})},C=()=>{u.nextTick(()=>{d.value&&(d.value.scrollTop=d.value.scrollHeight)})},I=N=>{u.nextTick(()=>{const _=d.value;_&&(_.scrollTop=_.scrollHeight-N)})},x=u.ref();function se(){x.value&&(x.value.style.height=x.value.scrollHeight-Uc+"px",x.value.scrollHeight!==x.value.clientHeight&&(x.value.style.height=x.value.scrollHeight+"px"))}return(N,_)=>(u.openBlock(),u.createElementBlock("div",Mc,[u.createElementVNode("div",Dc,[u.createElementVNode("h4",Vc,u.toDisplayString(t.titlePrincipal),1),u.createElementVNode("button",{onClick:_[0]||(_[0]=()=>t.toggleChat()),class:"btn-close"},[u.createVNode(Br,{class:"pointer"})])]),u.createElementVNode("div",{class:"messages-container",ref_key:"messageContainerRef",ref:d},[l.value?(u.openBlock(),u.createElementBlock("div",Ac,[u.createVNode(xc)])):u.createCommentVNode("",!0),u.createVNode(_c,{messages:o.value.data,canLoadMoreMessages:o.value.canLoadMoreMessages,onLoadMore:p,onRetry:m},null,8,["messages","canLoadMoreMessages"])],512),u.createElementVNode("div",Fc,[u.createElementVNode("form",{class:"message-send",onSubmit:u.withModifiers(f,["prevent"])},[u.createElementVNode("div",Lc,[u.createElementVNode("div",Bc,[u.withDirectives(u.createElementVNode("textarea",{"onUpdate:modelValue":_[1]||(_[1]=W=>r.value=W),class:"jl2-input-chat",required:"",ref_key:"textAreaRef",ref:x,onInput:_[2]||(_[2]=()=>se()),onKeydown:_[3]||(_[3]=u.withKeys(u.withModifiers(()=>{},["prevent"]),["enter"])),onKeyup:u.withKeys(u.withModifiers(f,["prevent"]),["enter"])},null,40,$c),[[u.vModelText,r.value]]),u.createElementVNode("button",Wc,[u.createVNode(Pr,{style:{width:"20px",height:"20px"}})])])])],40,Rc)])]))}}),[["__scopeId","data-v-659d93d4"]]),Pc={},zc={width:"87",height:"87",viewBox:"0 0 87 87",fill:"none",xmlns:"http://www.w3.org/2000/svg"},qc=[u.createStaticVNode('<g filter="url(#filter0_d_4007_3488)"><path d="M43.5 77C64.2107 77 81 60.2107 81 39.5C81 18.7893 64.2107 2 43.5 2C22.7893 2 6 18.7893 6 39.5C6 60.2107 22.7893 77 43.5 77Z" fill="white" stroke="#F28B0C" stroke-width="3" stroke-miterlimit="10"></path><path d="M39.705 38.885C40.6908 38.885 41.49 38.0858 41.49 37.1C41.49 36.1142 40.6908 35.315 39.705 35.315C38.7192 35.315 37.92 36.1142 37.92 37.1C37.92 38.0858 38.7192 38.885 39.705 38.885Z" fill="#F28B0C"></path><path d="M45.075 38.885C46.0608 38.885 46.86 38.0858 46.86 37.1C46.86 36.1142 46.0608 35.315 45.075 35.315C44.0892 35.315 43.29 36.1142 43.29 37.1C43.29 38.0858 44.0892 38.885 45.075 38.885Z" fill="#F28B0C"></path><path d="M50.445 38.885C51.4308 38.885 52.23 38.0858 52.23 37.1C52.23 36.1142 51.4308 35.315 50.445 35.315C49.4592 35.315 48.66 36.1142 48.66 37.1C48.66 38.0858 49.4592 38.885 50.445 38.885Z" fill="#F28B0C"></path><path d="M63.27 58.235L58.755 47.78C61.125 44.765 62.415 40.97 62.415 37.175C62.415 26.435 52.665 18.185 41.925 20.12C39.99 19.325 37.98 18.905 35.835 18.905C26.955 18.905 19.785 26.135 19.785 34.955C19.785 38.54 21 41.975 23.145 44.765L18.99 54.44C18.84 54.8 18.915 55.235 19.2 55.445C19.485 55.73 19.92 55.73 20.205 55.595L30.6 50.15C31.89 50.585 33.255 50.87 34.68 50.945C39.48 54.53 45.57 55.25 50.655 53.45L61.905 59.33C62.265 59.48 62.625 59.48 62.91 59.18C63.345 58.97 63.405 58.61 63.27 58.25V58.235ZM51.24 51.71C51.03 51.56 50.745 51.56 50.52 51.635C48.795 52.28 46.935 52.64 45.15 52.64C36.69 52.64 29.61 45.755 29.61 37.1C29.61 29.72 34.845 23.345 42.075 21.845C51.75 19.91 60.705 27.29 60.705 37.1C60.705 40.685 59.415 44.27 57.12 46.985C56.91 47.27 56.835 47.63 56.97 47.915L60.69 56.585L51.24 51.71Z" fill="#F28B0C"></path></g><defs><filter id="filter0_d_4007_3488" x="0.5" y="0.5" width="86" height="86" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="2"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4007_3488"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4007_3488" result="shape"></feBlend></filter></defs>',2)];function Zc(t,e){return u.openBlock(),u.createElementBlock("svg",zc,qc)}const jc=G(Pc,[["render",Zc]]),Gc={},Yc={viewBox:"0 0 256 256",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",preserveAspectRatio:"xMidYMid"},Jc=[u.createElementVNode("g",null,[u.createElementVNode("path",{d:"M128,0 C57.307,0 0,57.307 0,128 L0,128 C0,198.693 57.307,256 128,256 L128,256 C198.693,256 256,198.693 256,128 L256,128 C256,57.307 198.693,0 128,0 L128,0 Z",fill:"#40B3E0"}),u.createElementVNode("path",{d:"M190.2826,73.6308 L167.4206,188.8978 C167.4206,188.8978 164.2236,196.8918 155.4306,193.0548 L102.6726,152.6068 L83.4886,143.3348 L51.1946,132.4628 C51.1946,132.4628 46.2386,130.7048 45.7586,126.8678 C45.2796,123.0308 51.3546,120.9528 51.3546,120.9528 L179.7306,70.5928 C179.7306,70.5928 190.2826,65.9568 190.2826,73.6308",fill:"#FFFFFF"}),u.createElementVNode("path",{d:"M98.6178,187.6035 C98.6178,187.6035 97.0778,187.4595 95.1588,181.3835 C93.2408,175.3085 83.4888,143.3345 83.4888,143.3345 L161.0258,94.0945 C161.0258,94.0945 165.5028,91.3765 165.3428,94.0945 C165.3428,94.0945 166.1418,94.5735 163.7438,96.8115 C161.3458,99.0505 102.8328,151.6475 102.8328,151.6475",fill:"#D2E5F1"}),u.createElementVNode("path",{d:"M122.9015,168.1154 L102.0335,187.1414 C102.0335,187.1414 100.4025,188.3794 98.6175,187.6034 L102.6135,152.2624",fill:"#B5CFE4"})],-1)];function Kc(t,e){return u.openBlock(),u.createElementBlock("svg",Yc,Jc)}const Qc=G(Gc,[["render",Kc]]),Xc={},el={version:"1.1",id:"Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 455.731 455.731","xml:space":"preserve"},tl=[u.createElementVNode("g",null,[u.createElementVNode("rect",{x:"0",y:"0",style:{fill:"#1bd741"},width:"455.731",height:"455.731"}),u.createElementVNode("g",null,[u.createElementVNode("path",{style:{fill:"#ffffff"},d:`M68.494,387.41l22.323-79.284c-14.355-24.387-21.913-52.134-21.913-80.638
1
+ (function(ue,u){typeof exports=="object"&&typeof module<"u"?u(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],u):(ue=typeof globalThis<"u"?globalThis:ue||self,u(ue["vue-wiguet-chatweb"]={},ue.Vue))})(this,function(ue,u){"use strict";let et;const pi=new Uint8Array(16);function yi(){if(!et&&(et=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!et))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return et(pi)}const F=[];for(let t=0;t<256;++t)F.push((t+256).toString(16).slice(1));function gi(t,e=0){return F[t[e+0]]+F[t[e+1]]+F[t[e+2]]+F[t[e+3]]+"-"+F[t[e+4]]+F[t[e+5]]+"-"+F[t[e+6]]+F[t[e+7]]+"-"+F[t[e+8]]+F[t[e+9]]+"-"+F[t[e+10]]+F[t[e+11]]+F[t[e+12]]+F[t[e+13]]+F[t[e+14]]+F[t[e+15]]}const In={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function wi(t,e,n){if(In.randomUUID&&!e&&!t)return In.randomUUID();t=t||{};const s=t.random||(t.rng||yi)();return s[6]=s[6]&15|64,s[8]=s[8]&63|128,gi(s)}const X=(t,e)=>{const n=t.__vccOpts||t;for(const[s,r]of e)n[s]=r;return n},Ei={},ki={width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Si=[u.createElementVNode("path",{d:"M16 31C24.2843 31 31 24.2843 31 16C31 7.71573 24.2843 1 16 1C7.71573 1 1 7.71573 1 16C1 24.2843 7.71573 31 16 31Z",stroke:"#B3B3B3","stroke-miterlimit":"10"},null,-1),u.createElementVNode("path",{d:"M19.78 22.3L15.98 16.63H15.9601L12.2001 22.3H11.0701L15.37 15.8899L11.25 9.69995H12.38L15.98 15.08H16L19.67 9.69995H20.8L16.55 15.82L20.92 22.3H19.77H19.78Z",fill:"#B3B3B3"},null,-1)];function bi(t,e){return u.openBlock(),u.createElementBlock("svg",ki,Si)}const Ti=X(Ei,[["render",bi]]),Oi={},Ni={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},Ci=[u.createElementVNode("path",{fill:"#F28B0C",d:"M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z"},null,-1)];function vi(t,e){return u.openBlock(),u.createElementBlock("svg",Ni,Ci)}const _i=X(Oi,[["render",vi]]);function Ln(t,e){return function(){return t.apply(e,arguments)}}const{toString:xi}=Object.prototype,{getPrototypeOf:Vt}=Object,tt=(t=>e=>{const n=xi.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),re=t=>(t=t.toLowerCase(),e=>tt(e)===t),nt=t=>e=>typeof e===t,{isArray:be}=Array,$e=nt("undefined");function Ai(t){return t!==null&&!$e(t)&&t.constructor!==null&&!$e(t.constructor)&&z(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const Vn=re("ArrayBuffer");function Mi(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&Vn(t.buffer),e}const Di=nt("string"),z=nt("function"),Fn=nt("number"),st=t=>t!==null&&typeof t=="object",Ri=t=>t===!0||t===!1,rt=t=>{if(tt(t)!=="object")return!1;const e=Vt(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},Ii=re("Date"),Li=re("File"),Vi=re("Blob"),Fi=re("FileList"),Bi=t=>st(t)&&z(t.pipe),$i=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||z(t.append)&&((e=tt(t))==="formdata"||e==="object"&&z(t.toString)&&t.toString()==="[object FormData]"))},Ui=re("URLSearchParams"),Pi=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Ue(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let s,r;if(typeof t!="object"&&(t=[t]),be(t))for(s=0,r=t.length;s<r;s++)e.call(null,t[s],s,t);else{const i=n?Object.getOwnPropertyNames(t):Object.keys(t),o=i.length;let a;for(s=0;s<o;s++)a=i[s],e.call(null,t[a],a,t)}}function Bn(t,e){e=e.toLowerCase();const n=Object.keys(t);let s=n.length,r;for(;s-- >0;)if(r=n[s],e===r.toLowerCase())return r;return null}const $n=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Un=t=>!$e(t)&&t!==$n;function Ft(){const{caseless:t}=Un(this)&&this||{},e={},n=(s,r)=>{const i=t&&Bn(e,r)||r;rt(e[i])&&rt(s)?e[i]=Ft(e[i],s):rt(s)?e[i]=Ft({},s):be(s)?e[i]=s.slice():e[i]=s};for(let s=0,r=arguments.length;s<r;s++)arguments[s]&&Ue(arguments[s],n);return e}const Wi=(t,e,n,{allOwnKeys:s}={})=>(Ue(e,(r,i)=>{n&&z(r)?t[i]=Ln(r,n):t[i]=r},{allOwnKeys:s}),t),qi=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),Hi=(t,e,n,s)=>{t.prototype=Object.create(e.prototype,s),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},zi=(t,e,n,s)=>{let r,i,o;const a={};if(e=e||{},t==null)return e;do{for(r=Object.getOwnPropertyNames(t),i=r.length;i-- >0;)o=r[i],(!s||s(o,t,e))&&!a[o]&&(e[o]=t[o],a[o]=!0);t=n!==!1&&Vt(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},Zi=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const s=t.indexOf(e,n);return s!==-1&&s===n},ji=t=>{if(!t)return null;if(be(t))return t;let e=t.length;if(!Fn(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},Yi=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&Vt(Uint8Array)),Ji=(t,e)=>{const s=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=s.next())&&!r.done;){const i=r.value;e.call(t,i[0],i[1])}},Gi=(t,e)=>{let n;const s=[];for(;(n=t.exec(e))!==null;)s.push(n);return s},Ki=re("HTMLFormElement"),Xi=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,s,r){return s.toUpperCase()+r}),Pn=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Qi=re("RegExp"),Wn=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),s={};Ue(n,(r,i)=>{e(r,i,t)!==!1&&(s[i]=r)}),Object.defineProperties(t,s)},eo=t=>{Wn(t,(e,n)=>{if(z(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const s=t[n];if(z(s)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},to=(t,e)=>{const n={},s=r=>{r.forEach(i=>{n[i]=!0})};return be(t)?s(t):s(String(t).split(e)),n},no=()=>{},so=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Bt="abcdefghijklmnopqrstuvwxyz",qn="0123456789",Hn={DIGIT:qn,ALPHA:Bt,ALPHA_DIGIT:Bt+Bt.toUpperCase()+qn},ro=(t=16,e=Hn.ALPHA_DIGIT)=>{let n="";const{length:s}=e;for(;t--;)n+=e[Math.random()*s|0];return n};function io(t){return!!(t&&z(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const oo=t=>{const e=new Array(10),n=(s,r)=>{if(st(s)){if(e.indexOf(s)>=0)return;if(!("toJSON"in s)){e[r]=s;const i=be(s)?[]:{};return Ue(s,(o,a)=>{const c=n(o,r+1);!$e(c)&&(i[a]=c)}),e[r]=void 0,i}}return s};return n(t,0)},ao=re("AsyncFunction"),h={isArray:be,isArrayBuffer:Vn,isBuffer:Ai,isFormData:$i,isArrayBufferView:Mi,isString:Di,isNumber:Fn,isBoolean:Ri,isObject:st,isPlainObject:rt,isUndefined:$e,isDate:Ii,isFile:Li,isBlob:Vi,isRegExp:Qi,isFunction:z,isStream:Bi,isURLSearchParams:Ui,isTypedArray:Yi,isFileList:Fi,forEach:Ue,merge:Ft,extend:Wi,trim:Pi,stripBOM:qi,inherits:Hi,toFlatObject:zi,kindOf:tt,kindOfTest:re,endsWith:Zi,toArray:ji,forEachEntry:Ji,matchAll:Gi,isHTMLForm:Ki,hasOwnProperty:Pn,hasOwnProp:Pn,reduceDescriptors:Wn,freezeMethods:eo,toObjectSet:to,toCamelCase:Xi,noop:no,toFiniteNumber:so,findKey:Bn,global:$n,isContextDefined:Un,ALPHABET:Hn,generateString:ro,isSpecCompliantForm:io,toJSONObject:oo,isAsyncFn:ao,isThenable:t=>t&&(st(t)||z(t))&&z(t.then)&&z(t.catch)};function T(t,e,n,s,r){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),s&&(this.request=s),r&&(this.response=r)}h.inherits(T,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:h.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const zn=T.prototype,Zn={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{Zn[t]={value:t}}),Object.defineProperties(T,Zn),Object.defineProperty(zn,"isAxiosError",{value:!0}),T.from=(t,e,n,s,r,i)=>{const o=Object.create(zn);return h.toFlatObject(t,o,function(c){return c!==Error.prototype},a=>a!=="isAxiosError"),T.call(o,t.message,e,n,s,r),o.cause=t,o.name=t.name,i&&Object.assign(o,i),o};const co=null;function $t(t){return h.isPlainObject(t)||h.isArray(t)}function jn(t){return h.endsWith(t,"[]")?t.slice(0,-2):t}function Yn(t,e,n){return t?t.concat(e).map(function(r,i){return r=jn(r),!n&&i?"["+r+"]":r}).join(n?".":""):e}function lo(t){return h.isArray(t)&&!t.some($t)}const uo=h.toFlatObject(h,{},null,function(e){return/^is[A-Z]/.test(e)});function it(t,e,n){if(!h.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=h.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(g,x){return!h.isUndefined(x[g])});const s=n.metaTokens,r=n.visitor||f,i=n.dots,o=n.indexes,c=(n.Blob||typeof Blob<"u"&&Blob)&&h.isSpecCompliantForm(e);if(!h.isFunction(r))throw new TypeError("visitor must be a function");function l(p){if(p===null)return"";if(h.isDate(p))return p.toISOString();if(!c&&h.isBlob(p))throw new T("Blob is not supported. Use a Buffer instead.");return h.isArrayBuffer(p)||h.isTypedArray(p)?c&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function f(p,g,x){let v=p;if(p&&!x&&typeof p=="object"){if(h.endsWith(g,"{}"))g=s?g:g.slice(0,-2),p=JSON.stringify(p);else if(h.isArray(p)&&lo(p)||(h.isFileList(p)||h.endsWith(g,"[]"))&&(v=h.toArray(p)))return g=jn(g),v.forEach(function(le,S){!(h.isUndefined(le)||le===null)&&e.append(o===!0?Yn([g],S,i):o===null?g:g+"[]",l(le))}),!1}return $t(p)?!0:(e.append(Yn(x,g,i),l(p)),!1)}const d=[],w=Object.assign(uo,{defaultVisitor:f,convertValue:l,isVisitable:$t});function m(p,g){if(!h.isUndefined(p)){if(d.indexOf(p)!==-1)throw Error("Circular reference detected in "+g.join("."));d.push(p),h.forEach(p,function(v,I){(!(h.isUndefined(v)||v===null)&&r.call(e,v,h.isString(I)?I.trim():I,g,w))===!0&&m(v,g?g.concat(I):[I])}),d.pop()}}if(!h.isObject(t))throw new TypeError("data must be an object");return m(t),e}function Jn(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(s){return e[s]})}function Ut(t,e){this._pairs=[],t&&it(t,this,e)}const Gn=Ut.prototype;Gn.append=function(e,n){this._pairs.push([e,n])},Gn.toString=function(e){const n=e?function(s){return e.call(this,s,Jn)}:Jn;return this._pairs.map(function(r){return n(r[0])+"="+n(r[1])},"").join("&")};function fo(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Kn(t,e,n){if(!e)return t;const s=n&&n.encode||fo,r=n&&n.serialize;let i;if(r?i=r(e,n):i=h.isURLSearchParams(e)?e.toString():new Ut(e,n).toString(s),i){const o=t.indexOf("#");o!==-1&&(t=t.slice(0,o)),t+=(t.indexOf("?")===-1?"?":"&")+i}return t}class Xn{constructor(){this.handlers=[]}use(e,n,s){return this.handlers.push({fulfilled:e,rejected:n,synchronous:s?s.synchronous:!1,runWhen:s?s.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){h.forEach(this.handlers,function(s){s!==null&&e(s)})}}const Qn={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},ho=typeof URLSearchParams<"u"?URLSearchParams:Ut,mo=typeof FormData<"u"?FormData:null,po=typeof Blob<"u"?Blob:null,yo=(()=>{let t;return typeof navigator<"u"&&((t=navigator.product)==="ReactNative"||t==="NativeScript"||t==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),go=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",ie={isBrowser:!0,classes:{URLSearchParams:ho,FormData:mo,Blob:po},isStandardBrowserEnv:yo,isStandardBrowserWebWorkerEnv:go,protocols:["http","https","file","blob","url","data"]};function wo(t,e){return it(t,new ie.classes.URLSearchParams,Object.assign({visitor:function(n,s,r,i){return ie.isNode&&h.isBuffer(n)?(this.append(s,n.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function Eo(t){return h.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function ko(t){const e={},n=Object.keys(t);let s;const r=n.length;let i;for(s=0;s<r;s++)i=n[s],e[i]=t[i];return e}function es(t){function e(n,s,r,i){let o=n[i++];const a=Number.isFinite(+o),c=i>=n.length;return o=!o&&h.isArray(r)?r.length:o,c?(h.hasOwnProp(r,o)?r[o]=[r[o],s]:r[o]=s,!a):((!r[o]||!h.isObject(r[o]))&&(r[o]=[]),e(n,s,r[o],i)&&h.isArray(r[o])&&(r[o]=ko(r[o])),!a)}if(h.isFormData(t)&&h.isFunction(t.entries)){const n={};return h.forEachEntry(t,(s,r)=>{e(Eo(s),r,n,0)}),n}return null}const So={"Content-Type":void 0};function bo(t,e,n){if(h.isString(t))try{return(e||JSON.parse)(t),h.trim(t)}catch(s){if(s.name!=="SyntaxError")throw s}return(n||JSON.stringify)(t)}const Te={transitional:Qn,adapter:["xhr","http"],transformRequest:[function(e,n){const s=n.getContentType()||"",r=s.indexOf("application/json")>-1,i=h.isObject(e);if(i&&h.isHTMLForm(e)&&(e=new FormData(e)),h.isFormData(e))return r&&r?JSON.stringify(es(e)):e;if(h.isArrayBuffer(e)||h.isBuffer(e)||h.isStream(e)||h.isFile(e)||h.isBlob(e))return e;if(h.isArrayBufferView(e))return e.buffer;if(h.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let a;if(i){if(s.indexOf("application/x-www-form-urlencoded")>-1)return wo(e,this.formSerializer).toString();if((a=h.isFileList(e))||s.indexOf("multipart/form-data")>-1){const c=this.env&&this.env.FormData;return it(a?{"files[]":e}:e,c&&new c,this.formSerializer)}}return i||r?(n.setContentType("application/json",!1),bo(e)):e}],transformResponse:[function(e){const n=this.transitional||Te.transitional,s=n&&n.forcedJSONParsing,r=this.responseType==="json";if(e&&h.isString(e)&&(s&&!this.responseType||r)){const o=!(n&&n.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(a){if(o)throw a.name==="SyntaxError"?T.from(a,T.ERR_BAD_RESPONSE,this,null,this.response):a}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ie.classes.FormData,Blob:ie.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};h.forEach(["delete","get","head"],function(e){Te.headers[e]={}}),h.forEach(["post","put","patch"],function(e){Te.headers[e]=h.merge(So)});const To=h.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Oo=t=>{const e={};let n,s,r;return t&&t.split(`
2
+ `).forEach(function(o){r=o.indexOf(":"),n=o.substring(0,r).trim().toLowerCase(),s=o.substring(r+1).trim(),!(!n||e[n]&&To[n])&&(n==="set-cookie"?e[n]?e[n].push(s):e[n]=[s]:e[n]=e[n]?e[n]+", "+s:s)}),e},ts=Symbol("internals");function Pe(t){return t&&String(t).trim().toLowerCase()}function ot(t){return t===!1||t==null?t:h.isArray(t)?t.map(ot):String(t)}function No(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let s;for(;s=n.exec(t);)e[s[1]]=s[2];return e}const Co=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Pt(t,e,n,s,r){if(h.isFunction(s))return s.call(this,e,n);if(r&&(e=n),!!h.isString(e)){if(h.isString(s))return e.indexOf(s)!==-1;if(h.isRegExp(s))return s.test(e)}}function vo(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,s)=>n.toUpperCase()+s)}function _o(t,e){const n=h.toCamelCase(" "+e);["get","set","has"].forEach(s=>{Object.defineProperty(t,s+n,{value:function(r,i,o){return this[s].call(this,e,r,i,o)},configurable:!0})})}class Z{constructor(e){e&&this.set(e)}set(e,n,s){const r=this;function i(a,c,l){const f=Pe(c);if(!f)throw new Error("header name must be a non-empty string");const d=h.findKey(r,f);(!d||r[d]===void 0||l===!0||l===void 0&&r[d]!==!1)&&(r[d||c]=ot(a))}const o=(a,c)=>h.forEach(a,(l,f)=>i(l,f,c));return h.isPlainObject(e)||e instanceof this.constructor?o(e,n):h.isString(e)&&(e=e.trim())&&!Co(e)?o(Oo(e),n):e!=null&&i(n,e,s),this}get(e,n){if(e=Pe(e),e){const s=h.findKey(this,e);if(s){const r=this[s];if(!n)return r;if(n===!0)return No(r);if(h.isFunction(n))return n.call(this,r,s);if(h.isRegExp(n))return n.exec(r);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=Pe(e),e){const s=h.findKey(this,e);return!!(s&&this[s]!==void 0&&(!n||Pt(this,this[s],s,n)))}return!1}delete(e,n){const s=this;let r=!1;function i(o){if(o=Pe(o),o){const a=h.findKey(s,o);a&&(!n||Pt(s,s[a],a,n))&&(delete s[a],r=!0)}}return h.isArray(e)?e.forEach(i):i(e),r}clear(e){const n=Object.keys(this);let s=n.length,r=!1;for(;s--;){const i=n[s];(!e||Pt(this,this[i],i,e,!0))&&(delete this[i],r=!0)}return r}normalize(e){const n=this,s={};return h.forEach(this,(r,i)=>{const o=h.findKey(s,i);if(o){n[o]=ot(r),delete n[i];return}const a=e?vo(i):String(i).trim();a!==i&&delete n[i],n[a]=ot(r),s[a]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return h.forEach(this,(s,r)=>{s!=null&&s!==!1&&(n[r]=e&&h.isArray(s)?s.join(", "):s)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join(`
3
+ `)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const s=new this(e);return n.forEach(r=>s.set(r)),s}static accessor(e){const s=(this[ts]=this[ts]={accessors:{}}).accessors,r=this.prototype;function i(o){const a=Pe(o);s[a]||(_o(r,o),s[a]=!0)}return h.isArray(e)?e.forEach(i):i(e),this}}Z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),h.freezeMethods(Z.prototype),h.freezeMethods(Z);function Wt(t,e){const n=this||Te,s=e||n,r=Z.from(s.headers);let i=s.data;return h.forEach(t,function(a){i=a.call(n,i,r.normalize(),e?e.status:void 0)}),r.normalize(),i}function ns(t){return!!(t&&t.__CANCEL__)}function We(t,e,n){T.call(this,t??"canceled",T.ERR_CANCELED,e,n),this.name="CanceledError"}h.inherits(We,T,{__CANCEL__:!0});function xo(t,e,n){const s=n.config.validateStatus;!n.status||!s||s(n.status)?t(n):e(new T("Request failed with status code "+n.status,[T.ERR_BAD_REQUEST,T.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const Ao=ie.isStandardBrowserEnv?function(){return{write:function(n,s,r,i,o,a){const c=[];c.push(n+"="+encodeURIComponent(s)),h.isNumber(r)&&c.push("expires="+new Date(r).toGMTString()),h.isString(i)&&c.push("path="+i),h.isString(o)&&c.push("domain="+o),a===!0&&c.push("secure"),document.cookie=c.join("; ")},read:function(n){const s=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return s?decodeURIComponent(s[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function Mo(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function Do(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}function ss(t,e){return t&&!Mo(e)?Do(t,e):e}const Ro=ie.isStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let s;function r(i){let o=i;return e&&(n.setAttribute("href",o),o=n.href),n.setAttribute("href",o),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return s=r(window.location.href),function(o){const a=h.isString(o)?r(o):o;return a.protocol===s.protocol&&a.host===s.host}}():function(){return function(){return!0}}();function Io(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function Lo(t,e){t=t||10;const n=new Array(t),s=new Array(t);let r=0,i=0,o;return e=e!==void 0?e:1e3,function(c){const l=Date.now(),f=s[i];o||(o=l),n[r]=c,s[r]=l;let d=i,w=0;for(;d!==r;)w+=n[d++],d=d%t;if(r=(r+1)%t,r===i&&(i=(i+1)%t),l-o<e)return;const m=f&&l-f;return m?Math.round(w*1e3/m):void 0}}function rs(t,e){let n=0;const s=Lo(50,250);return r=>{const i=r.loaded,o=r.lengthComputable?r.total:void 0,a=i-n,c=s(a),l=i<=o;n=i;const f={loaded:i,total:o,progress:o?i/o:void 0,bytes:a,rate:c||void 0,estimated:c&&o&&l?(o-i)/c:void 0,event:r};f[e?"download":"upload"]=!0,t(f)}}const at={http:co,xhr:typeof XMLHttpRequest<"u"&&function(t){return new Promise(function(n,s){let r=t.data;const i=Z.from(t.headers).normalize(),o=t.responseType;let a;function c(){t.cancelToken&&t.cancelToken.unsubscribe(a),t.signal&&t.signal.removeEventListener("abort",a)}h.isFormData(r)&&(ie.isStandardBrowserEnv||ie.isStandardBrowserWebWorkerEnv?i.setContentType(!1):i.setContentType("multipart/form-data;",!1));let l=new XMLHttpRequest;if(t.auth){const m=t.auth.username||"",p=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(m+":"+p))}const f=ss(t.baseURL,t.url);l.open(t.method.toUpperCase(),Kn(f,t.params,t.paramsSerializer),!0),l.timeout=t.timeout;function d(){if(!l)return;const m=Z.from("getAllResponseHeaders"in l&&l.getAllResponseHeaders()),g={data:!o||o==="text"||o==="json"?l.responseText:l.response,status:l.status,statusText:l.statusText,headers:m,config:t,request:l};xo(function(v){n(v),c()},function(v){s(v),c()},g),l=null}if("onloadend"in l?l.onloadend=d:l.onreadystatechange=function(){!l||l.readyState!==4||l.status===0&&!(l.responseURL&&l.responseURL.indexOf("file:")===0)||setTimeout(d)},l.onabort=function(){l&&(s(new T("Request aborted",T.ECONNABORTED,t,l)),l=null)},l.onerror=function(){s(new T("Network Error",T.ERR_NETWORK,t,l)),l=null},l.ontimeout=function(){let p=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const g=t.transitional||Qn;t.timeoutErrorMessage&&(p=t.timeoutErrorMessage),s(new T(p,g.clarifyTimeoutError?T.ETIMEDOUT:T.ECONNABORTED,t,l)),l=null},ie.isStandardBrowserEnv){const m=(t.withCredentials||Ro(f))&&t.xsrfCookieName&&Ao.read(t.xsrfCookieName);m&&i.set(t.xsrfHeaderName,m)}r===void 0&&i.setContentType(null),"setRequestHeader"in l&&h.forEach(i.toJSON(),function(p,g){l.setRequestHeader(g,p)}),h.isUndefined(t.withCredentials)||(l.withCredentials=!!t.withCredentials),o&&o!=="json"&&(l.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&l.addEventListener("progress",rs(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&l.upload&&l.upload.addEventListener("progress",rs(t.onUploadProgress)),(t.cancelToken||t.signal)&&(a=m=>{l&&(s(!m||m.type?new We(null,t,l):m),l.abort(),l=null)},t.cancelToken&&t.cancelToken.subscribe(a),t.signal&&(t.signal.aborted?a():t.signal.addEventListener("abort",a)));const w=Io(f);if(w&&ie.protocols.indexOf(w)===-1){s(new T("Unsupported protocol "+w+":",T.ERR_BAD_REQUEST,t));return}l.send(r||null)})}};h.forEach(at,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const Vo={getAdapter:t=>{t=h.isArray(t)?t:[t];const{length:e}=t;let n,s;for(let r=0;r<e&&(n=t[r],!(s=h.isString(n)?at[n.toLowerCase()]:n));r++);if(!s)throw s===!1?new T(`Adapter ${n} is not supported by the environment`,"ERR_NOT_SUPPORT"):new Error(h.hasOwnProp(at,n)?`Adapter '${n}' is not available in the build`:`Unknown adapter '${n}'`);if(!h.isFunction(s))throw new TypeError("adapter is not a function");return s},adapters:at};function qt(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new We(null,t)}function is(t){return qt(t),t.headers=Z.from(t.headers),t.data=Wt.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),Vo.getAdapter(t.adapter||Te.adapter)(t).then(function(s){return qt(t),s.data=Wt.call(t,t.transformResponse,s),s.headers=Z.from(s.headers),s},function(s){return ns(s)||(qt(t),s&&s.response&&(s.response.data=Wt.call(t,t.transformResponse,s.response),s.response.headers=Z.from(s.response.headers))),Promise.reject(s)})}const os=t=>t instanceof Z?t.toJSON():t;function Oe(t,e){e=e||{};const n={};function s(l,f,d){return h.isPlainObject(l)&&h.isPlainObject(f)?h.merge.call({caseless:d},l,f):h.isPlainObject(f)?h.merge({},f):h.isArray(f)?f.slice():f}function r(l,f,d){if(h.isUndefined(f)){if(!h.isUndefined(l))return s(void 0,l,d)}else return s(l,f,d)}function i(l,f){if(!h.isUndefined(f))return s(void 0,f)}function o(l,f){if(h.isUndefined(f)){if(!h.isUndefined(l))return s(void 0,l)}else return s(void 0,f)}function a(l,f,d){if(d in e)return s(l,f);if(d in t)return s(void 0,l)}const c={url:i,method:i,data:i,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:a,headers:(l,f)=>r(os(l),os(f),!0)};return h.forEach(Object.keys(Object.assign({},t,e)),function(f){const d=c[f]||r,w=d(t[f],e[f],f);h.isUndefined(w)&&d!==a||(n[f]=w)}),n}const as="1.4.0",Ht={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{Ht[t]=function(s){return typeof s===t||"a"+(e<1?"n ":" ")+t}});const cs={};Ht.transitional=function(e,n,s){function r(i,o){return"[Axios v"+as+"] Transitional option '"+i+"'"+o+(s?". "+s:"")}return(i,o,a)=>{if(e===!1)throw new T(r(o," has been removed"+(n?" in "+n:"")),T.ERR_DEPRECATED);return n&&!cs[o]&&(cs[o]=!0,console.warn(r(o," has been deprecated since v"+n+" and will be removed in the near future"))),e?e(i,o,a):!0}};function Fo(t,e,n){if(typeof t!="object")throw new T("options must be an object",T.ERR_BAD_OPTION_VALUE);const s=Object.keys(t);let r=s.length;for(;r-- >0;){const i=s[r],o=e[i];if(o){const a=t[i],c=a===void 0||o(a,i,t);if(c!==!0)throw new T("option "+i+" must be "+c,T.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new T("Unknown option "+i,T.ERR_BAD_OPTION)}}const zt={assertOptions:Fo,validators:Ht},fe=zt.validators;class ge{constructor(e){this.defaults=e,this.interceptors={request:new Xn,response:new Xn}}request(e,n){typeof e=="string"?(n=n||{},n.url=e):n=e||{},n=Oe(this.defaults,n);const{transitional:s,paramsSerializer:r,headers:i}=n;s!==void 0&&zt.assertOptions(s,{silentJSONParsing:fe.transitional(fe.boolean),forcedJSONParsing:fe.transitional(fe.boolean),clarifyTimeoutError:fe.transitional(fe.boolean)},!1),r!=null&&(h.isFunction(r)?n.paramsSerializer={serialize:r}:zt.assertOptions(r,{encode:fe.function,serialize:fe.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let o;o=i&&h.merge(i.common,i[n.method]),o&&h.forEach(["delete","get","head","post","put","patch","common"],p=>{delete i[p]}),n.headers=Z.concat(o,i);const a=[];let c=!0;this.interceptors.request.forEach(function(g){typeof g.runWhen=="function"&&g.runWhen(n)===!1||(c=c&&g.synchronous,a.unshift(g.fulfilled,g.rejected))});const l=[];this.interceptors.response.forEach(function(g){l.push(g.fulfilled,g.rejected)});let f,d=0,w;if(!c){const p=[is.bind(this),void 0];for(p.unshift.apply(p,a),p.push.apply(p,l),w=p.length,f=Promise.resolve(n);d<w;)f=f.then(p[d++],p[d++]);return f}w=a.length;let m=n;for(d=0;d<w;){const p=a[d++],g=a[d++];try{m=p(m)}catch(x){g.call(this,x);break}}try{f=is.call(this,m)}catch(p){return Promise.reject(p)}for(d=0,w=l.length;d<w;)f=f.then(l[d++],l[d++]);return f}getUri(e){e=Oe(this.defaults,e);const n=ss(e.baseURL,e.url);return Kn(n,e.params,e.paramsSerializer)}}h.forEach(["delete","get","head","options"],function(e){ge.prototype[e]=function(n,s){return this.request(Oe(s||{},{method:e,url:n,data:(s||{}).data}))}}),h.forEach(["post","put","patch"],function(e){function n(s){return function(i,o,a){return this.request(Oe(a||{},{method:e,headers:s?{"Content-Type":"multipart/form-data"}:{},url:i,data:o}))}}ge.prototype[e]=n(),ge.prototype[e+"Form"]=n(!0)});class Zt{constructor(e){if(typeof e!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(i){n=i});const s=this;this.promise.then(r=>{if(!s._listeners)return;let i=s._listeners.length;for(;i-- >0;)s._listeners[i](r);s._listeners=null}),this.promise.then=r=>{let i;const o=new Promise(a=>{s.subscribe(a),i=a}).then(r);return o.cancel=function(){s.unsubscribe(i)},o},e(function(i,o,a){s.reason||(s.reason=new We(i,o,a),n(s.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}static source(){let e;return{token:new Zt(function(r){e=r}),cancel:e}}}function Bo(t){return function(n){return t.apply(null,n)}}function $o(t){return h.isObject(t)&&t.isAxiosError===!0}const jt={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(jt).forEach(([t,e])=>{jt[e]=t});function ls(t){const e=new ge(t),n=Ln(ge.prototype.request,e);return h.extend(n,ge.prototype,e,{allOwnKeys:!0}),h.extend(n,e,null,{allOwnKeys:!0}),n.create=function(r){return ls(Oe(t,r))},n}const L=ls(Te);L.Axios=ge,L.CanceledError=We,L.CancelToken=Zt,L.isCancel=ns,L.VERSION=as,L.toFormData=it,L.AxiosError=T,L.Cancel=L.CanceledError,L.all=function(e){return Promise.all(e)},L.spread=Bo,L.isAxiosError=$o,L.mergeConfig=Oe,L.AxiosHeaders=Z,L.formToJSON=t=>es(h.isHTMLForm(t)?new FormData(t):t),L.HttpStatusCode=jt,L.default=L;const ct=async function(t){const e=t,n=window.VITE_BACKEND_URL?window.VITE_BACKEND_URL:"https://chatadmin-gw.dev.mp.gob.bo",s={method:e.method,url:`${n}${e.url}`,headers:{Authorization:`Bearer ${t.token}`,"Content-Type":"application/json; charset=utf-8",...e.headers},data:e.data};return await L(s).then(async function(r){return await r.data}).catch(async function(r){console.error(r);const i=await r.response.data;if(i.statusCode==401&&i.message=="Unauthorized")localStorage.clear();else throw i})};async function Uo(t){const e={url:"/v1/message/list-messages",method:"post",data:t.body,token:t.token},n=await ct(e).catch(r=>(console.error(r),null)),s=n==null?void 0:n.response;return s!=null&&s.data?{data:s.data,pagination:s.pagination}:{data:[],pagination:{total:0,limit:0,size:0}}}async function Po(t,e){var r;const s=await ct({url:"/v1/message/send-message",method:"POST",data:t,token:e}).catch(i=>(console.error(i),null));return(r=s==null?void 0:s.response)==null?void 0:r.data}async function us(t){var s;const n=await ct({url:"/v1/app-chats/web-chat",method:"get",token:t}).catch(r=>(console.error(r),null));return(s=n==null?void 0:n.response)==null?void 0:s.data}async function fs(t,e){var i;const n={esCliente:!0,totalNoVistos:0,totalNoVistosCliente:0},s={url:`/v1/app-chats/update-vistos/${t}`,method:"PATCH",data:n,token:e},r=await ct(s).catch(o=>(console.error(o),null));return(i=r==null?void 0:r.response)==null?void 0:i.data}function Wo(t){return u.getCurrentScope()?(u.onScopeDispose(t),!0):!1}function hs(t){return typeof t=="function"?t():u.unref(t)}const qo=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Ho=t=>t!=null,Yt=()=>{};function Jt(t){var e;const n=hs(t);return(e=n==null?void 0:n.$el)!=null?e:n}const zo=qo?window:void 0;function Zo(){const t=u.ref(!1),e=u.getCurrentInstance();return e&&u.onMounted(()=>{t.value=!0},e),t}function jo(t){const e=Zo();return u.computed(()=>(e.value,!!t()))}function Yo(t,e,n={}){const{root:s,rootMargin:r="0px",threshold:i=.1,window:o=zo,immediate:a=!0}=n,c=jo(()=>o&&"IntersectionObserver"in o),l=u.computed(()=>{const p=hs(t);return(Array.isArray(p)?p:[p]).map(Jt).filter(Ho)});let f=Yt;const d=u.ref(a),w=c.value?u.watch(()=>[l.value,Jt(s),d.value],([p,g])=>{if(f(),!d.value||!p.length)return;const x=new IntersectionObserver(e,{root:Jt(g),rootMargin:r,threshold:i});p.forEach(v=>v&&x.observe(v)),f=()=>{x.disconnect(),f=Yt}},{immediate:a,flush:"post"}):Yt,m=()=>{f(),w(),d.value=!1};return Wo(m),{isSupported:c,isActive:d,pause(){f(),d.value=!1},resume(){d.value=!0},stop:m}}class we extends Error{}class Jo extends we{constructor(e){super(`Invalid DateTime: ${e.toMessage()}`)}}class Go extends we{constructor(e){super(`Invalid Interval: ${e.toMessage()}`)}}class Ko extends we{constructor(e){super(`Invalid Duration: ${e.toMessage()}`)}}class Ne extends we{}class ds extends we{constructor(e){super(`Invalid unit ${e}`)}}class $ extends we{}class he extends we{constructor(){super("Zone is an abstract class")}}const y="numeric",Q="short",q="long",lt={year:y,month:y,day:y},ms={year:y,month:Q,day:y},Xo={year:y,month:Q,day:y,weekday:Q},ps={year:y,month:q,day:y},ys={year:y,month:q,day:y,weekday:q},gs={hour:y,minute:y},ws={hour:y,minute:y,second:y},Es={hour:y,minute:y,second:y,timeZoneName:Q},ks={hour:y,minute:y,second:y,timeZoneName:q},Ss={hour:y,minute:y,hourCycle:"h23"},bs={hour:y,minute:y,second:y,hourCycle:"h23"},Ts={hour:y,minute:y,second:y,hourCycle:"h23",timeZoneName:Q},Os={hour:y,minute:y,second:y,hourCycle:"h23",timeZoneName:q},Ns={year:y,month:y,day:y,hour:y,minute:y},Cs={year:y,month:y,day:y,hour:y,minute:y,second:y},vs={year:y,month:Q,day:y,hour:y,minute:y},_s={year:y,month:Q,day:y,hour:y,minute:y,second:y},Qo={year:y,month:Q,day:y,weekday:Q,hour:y,minute:y},xs={year:y,month:q,day:y,hour:y,minute:y,timeZoneName:Q},As={year:y,month:q,day:y,hour:y,minute:y,second:y,timeZoneName:Q},Ms={year:y,month:q,day:y,weekday:q,hour:y,minute:y,timeZoneName:q},Ds={year:y,month:q,day:y,weekday:q,hour:y,minute:y,second:y,timeZoneName:q};class qe{get type(){throw new he}get name(){throw new he}get ianaName(){return this.name}get isUniversal(){throw new he}offsetName(e,n){throw new he}formatOffset(e,n){throw new he}offset(e){throw new he}equals(e){throw new he}get isValid(){throw new he}}let Gt=null;class ut extends qe{static get instance(){return Gt===null&&(Gt=new ut),Gt}get type(){return"system"}get name(){return new Intl.DateTimeFormat().resolvedOptions().timeZone}get isUniversal(){return!1}offsetName(e,{format:n,locale:s}){return sr(e,n,s)}formatOffset(e,n){return je(this.offset(e),n)}offset(e){return-new Date(e).getTimezoneOffset()}equals(e){return e.type==="system"}get isValid(){return!0}}let ft={};function ea(t){return ft[t]||(ft[t]=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:t,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",era:"short"})),ft[t]}const ta={year:0,month:1,day:2,era:3,hour:4,minute:5,second:6};function na(t,e){const n=t.format(e).replace(/\u200E/g,""),s=/(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(n),[,r,i,o,a,c,l,f]=s;return[o,r,i,a,c,l,f]}function sa(t,e){const n=t.formatToParts(e),s=[];for(let r=0;r<n.length;r++){const{type:i,value:o}=n[r],a=ta[i];i==="era"?s[a]=o:E(a)||(s[a]=parseInt(o,10))}return s}let ht={};class ce extends qe{static create(e){return ht[e]||(ht[e]=new ce(e)),ht[e]}static resetCache(){ht={},ft={}}static isValidSpecifier(e){return this.isValidZone(e)}static isValidZone(e){if(!e)return!1;try{return new Intl.DateTimeFormat("en-US",{timeZone:e}).format(),!0}catch{return!1}}constructor(e){super(),this.zoneName=e,this.valid=ce.isValidZone(e)}get type(){return"iana"}get name(){return this.zoneName}get isUniversal(){return!1}offsetName(e,{format:n,locale:s}){return sr(e,n,s,this.name)}formatOffset(e,n){return je(this.offset(e),n)}offset(e){const n=new Date(e);if(isNaN(n))return NaN;const s=ea(this.name);let[r,i,o,a,c,l,f]=s.formatToParts?sa(s,n):na(s,n);a==="BC"&&(r=-Math.abs(r)+1);const w=gt({year:r,month:i,day:o,hour:c===24?0:c,minute:l,second:f,millisecond:0});let m=+n;const p=m%1e3;return m-=p>=0?p:1e3+p,(w-m)/(60*1e3)}equals(e){return e.type==="iana"&&e.name===this.name}get isValid(){return this.valid}}let Rs={};function ra(t,e={}){const n=JSON.stringify([t,e]);let s=Rs[n];return s||(s=new Intl.ListFormat(t,e),Rs[n]=s),s}let Kt={};function Xt(t,e={}){const n=JSON.stringify([t,e]);let s=Kt[n];return s||(s=new Intl.DateTimeFormat(t,e),Kt[n]=s),s}let Qt={};function ia(t,e={}){const n=JSON.stringify([t,e]);let s=Qt[n];return s||(s=new Intl.NumberFormat(t,e),Qt[n]=s),s}let en={};function oa(t,e={}){const{base:n,...s}=e,r=JSON.stringify([t,s]);let i=en[r];return i||(i=new Intl.RelativeTimeFormat(t,e),en[r]=i),i}let He=null;function aa(){return He||(He=new Intl.DateTimeFormat().resolvedOptions().locale,He)}let Is={};function ca(t){let e=Is[t];if(!e){const n=new Intl.Locale(t);e="getWeekInfo"in n?n.getWeekInfo():n.weekInfo,Is[t]=e}return e}function la(t){const e=t.indexOf("-x-");e!==-1&&(t=t.substring(0,e));const n=t.indexOf("-u-");if(n===-1)return[t];{let s,r;try{s=Xt(t).resolvedOptions(),r=t}catch{const c=t.substring(0,n);s=Xt(c).resolvedOptions(),r=c}const{numberingSystem:i,calendar:o}=s;return[r,i,o]}}function ua(t,e,n){return(n||e)&&(t.includes("-u-")||(t+="-u"),n&&(t+=`-ca-${n}`),e&&(t+=`-nu-${e}`)),t}function fa(t){const e=[];for(let n=1;n<=12;n++){const s=k.utc(2009,n,1);e.push(t(s))}return e}function ha(t){const e=[];for(let n=1;n<=7;n++){const s=k.utc(2016,11,13+n);e.push(t(s))}return e}function dt(t,e,n,s){const r=t.listingMode();return r==="error"?null:r==="en"?n(e):s(e)}function da(t){return t.numberingSystem&&t.numberingSystem!=="latn"?!1:t.numberingSystem==="latn"||!t.locale||t.locale.startsWith("en")||new Intl.DateTimeFormat(t.intl).resolvedOptions().numberingSystem==="latn"}class ma{constructor(e,n,s){this.padTo=s.padTo||0,this.floor=s.floor||!1;const{padTo:r,floor:i,...o}=s;if(!n||Object.keys(o).length>0){const a={useGrouping:!1,...s};s.padTo>0&&(a.minimumIntegerDigits=s.padTo),this.inf=ia(e,a)}}format(e){if(this.inf){const n=this.floor?Math.floor(e):e;return this.inf.format(n)}else{const n=this.floor?Math.floor(e):ln(e,3);return D(n,this.padTo)}}}class pa{constructor(e,n,s){this.opts=s,this.originalZone=void 0;let r;if(this.opts.timeZone)this.dt=e;else if(e.zone.type==="fixed"){const o=-1*(e.offset/60),a=o>=0?`Etc/GMT+${o}`:`Etc/GMT${o}`;e.offset!==0&&ce.create(a).valid?(r=a,this.dt=e):(r="UTC",this.dt=e.offset===0?e:e.setZone("UTC").plus({minutes:e.offset}),this.originalZone=e.zone)}else e.zone.type==="system"?this.dt=e:e.zone.type==="iana"?(this.dt=e,r=e.zone.name):(r="UTC",this.dt=e.setZone("UTC").plus({minutes:e.offset}),this.originalZone=e.zone);const i={...this.opts};i.timeZone=i.timeZone||r,this.dtf=Xt(n,i)}format(){return this.originalZone?this.formatToParts().map(({value:e})=>e).join(""):this.dtf.format(this.dt.toJSDate())}formatToParts(){const e=this.dtf.formatToParts(this.dt.toJSDate());return this.originalZone?e.map(n=>{if(n.type==="timeZoneName"){const s=this.originalZone.offsetName(this.dt.ts,{locale:this.dt.locale,format:this.opts.timeZoneName});return{...n,value:s}}else return n}):e}resolvedOptions(){return this.dtf.resolvedOptions()}}class ya{constructor(e,n,s){this.opts={style:"long",...s},!n&&Qs()&&(this.rtf=oa(e,s))}format(e,n){return this.rtf?this.rtf.format(e,n):$a(n,e,this.opts.numeric,this.opts.style!=="long")}formatToParts(e,n){return this.rtf?this.rtf.formatToParts(e,n):[]}}const ga={firstDay:1,minimalDays:4,weekend:[6,7]};class C{static fromOpts(e){return C.create(e.locale,e.numberingSystem,e.outputCalendar,e.weekSettings,e.defaultToEN)}static create(e,n,s,r,i=!1){const o=e||A.defaultLocale,a=o||(i?"en-US":aa()),c=n||A.defaultNumberingSystem,l=s||A.defaultOutputCalendar,f=an(r)||A.defaultWeekSettings;return new C(a,c,l,f,o)}static resetCache(){He=null,Kt={},Qt={},en={}}static fromObject({locale:e,numberingSystem:n,outputCalendar:s,weekSettings:r}={}){return C.create(e,n,s,r)}constructor(e,n,s,r,i){const[o,a,c]=la(e);this.locale=o,this.numberingSystem=n||a||null,this.outputCalendar=s||c||null,this.weekSettings=r,this.intl=ua(this.locale,this.numberingSystem,this.outputCalendar),this.weekdaysCache={format:{},standalone:{}},this.monthsCache={format:{},standalone:{}},this.meridiemCache=null,this.eraCache={},this.specifiedLocale=i,this.fastNumbersCached=null}get fastNumbers(){return this.fastNumbersCached==null&&(this.fastNumbersCached=da(this)),this.fastNumbersCached}listingMode(){const e=this.isEnglish(),n=(this.numberingSystem===null||this.numberingSystem==="latn")&&(this.outputCalendar===null||this.outputCalendar==="gregory");return e&&n?"en":"intl"}clone(e){return!e||Object.getOwnPropertyNames(e).length===0?this:C.create(e.locale||this.specifiedLocale,e.numberingSystem||this.numberingSystem,e.outputCalendar||this.outputCalendar,an(e.weekSettings)||this.weekSettings,e.defaultToEN||!1)}redefaultToEN(e={}){return this.clone({...e,defaultToEN:!0})}redefaultToSystem(e={}){return this.clone({...e,defaultToEN:!1})}months(e,n=!1){return dt(this,e,or,()=>{const s=n?{month:e,day:"numeric"}:{month:e},r=n?"format":"standalone";return this.monthsCache[r][e]||(this.monthsCache[r][e]=fa(i=>this.extract(i,s,"month"))),this.monthsCache[r][e]})}weekdays(e,n=!1){return dt(this,e,lr,()=>{const s=n?{weekday:e,year:"numeric",month:"long",day:"numeric"}:{weekday:e},r=n?"format":"standalone";return this.weekdaysCache[r][e]||(this.weekdaysCache[r][e]=ha(i=>this.extract(i,s,"weekday"))),this.weekdaysCache[r][e]})}meridiems(){return dt(this,void 0,()=>ur,()=>{if(!this.meridiemCache){const e={hour:"numeric",hourCycle:"h12"};this.meridiemCache=[k.utc(2016,11,13,9),k.utc(2016,11,13,19)].map(n=>this.extract(n,e,"dayperiod"))}return this.meridiemCache})}eras(e){return dt(this,e,fr,()=>{const n={era:e};return this.eraCache[e]||(this.eraCache[e]=[k.utc(-40,1,1),k.utc(2017,1,1)].map(s=>this.extract(s,n,"era"))),this.eraCache[e]})}extract(e,n,s){const r=this.dtFormatter(e,n),i=r.formatToParts(),o=i.find(a=>a.type.toLowerCase()===s);return o?o.value:null}numberFormatter(e={}){return new ma(this.intl,e.forceSimple||this.fastNumbers,e)}dtFormatter(e,n={}){return new pa(e,this.intl,n)}relFormatter(e={}){return new ya(this.intl,this.isEnglish(),e)}listFormatter(e={}){return ra(this.intl,e)}isEnglish(){return this.locale==="en"||this.locale.toLowerCase()==="en-us"||new Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith("en-us")}getWeekSettings(){return this.weekSettings?this.weekSettings:er()?ca(this.locale):ga}getStartOfWeek(){return this.getWeekSettings().firstDay}getMinDaysInFirstWeek(){return this.getWeekSettings().minimalDays}getWeekendDays(){return this.getWeekSettings().weekend}equals(e){return this.locale===e.locale&&this.numberingSystem===e.numberingSystem&&this.outputCalendar===e.outputCalendar}toString(){return`Locale(${this.locale}, ${this.numberingSystem}, ${this.outputCalendar})`}}let tn=null;class P extends qe{static get utcInstance(){return tn===null&&(tn=new P(0)),tn}static instance(e){return e===0?P.utcInstance:new P(e)}static parseSpecifier(e){if(e){const n=e.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);if(n)return new P(wt(n[1],n[2]))}return null}constructor(e){super(),this.fixed=e}get type(){return"fixed"}get name(){return this.fixed===0?"UTC":`UTC${je(this.fixed,"narrow")}`}get ianaName(){return this.fixed===0?"Etc/UTC":`Etc/GMT${je(-this.fixed,"narrow")}`}offsetName(){return this.name}formatOffset(e,n){return je(this.fixed,n)}get isUniversal(){return!0}offset(){return this.fixed}equals(e){return e.type==="fixed"&&e.fixed===this.fixed}get isValid(){return!0}}class wa extends qe{constructor(e){super(),this.zoneName=e}get type(){return"invalid"}get name(){return this.zoneName}get isUniversal(){return!1}offsetName(){return null}formatOffset(){return""}offset(){return NaN}equals(){return!1}get isValid(){return!1}}function de(t,e){if(E(t)||t===null)return e;if(t instanceof qe)return t;if(Oa(t)){const n=t.toLowerCase();return n==="default"?e:n==="local"||n==="system"?ut.instance:n==="utc"||n==="gmt"?P.utcInstance:P.parseSpecifier(n)||ce.create(t)}else return me(t)?P.instance(t):typeof t=="object"&&"offset"in t&&typeof t.offset=="function"?t:new wa(t)}const nn={arab:"[٠-٩]",arabext:"[۰-۹]",bali:"[᭐-᭙]",beng:"[০-৯]",deva:"[०-९]",fullwide:"[0-9]",gujr:"[૦-૯]",hanidec:"[〇|一|二|三|四|五|六|七|八|九]",khmr:"[០-៩]",knda:"[೦-೯]",laoo:"[໐-໙]",limb:"[᥆-᥏]",mlym:"[൦-൯]",mong:"[᠐-᠙]",mymr:"[၀-၉]",orya:"[୦-୯]",tamldec:"[௦-௯]",telu:"[౦-౯]",thai:"[๐-๙]",tibt:"[༠-༩]",latn:"\\d"},Ls={arab:[1632,1641],arabext:[1776,1785],bali:[6992,7001],beng:[2534,2543],deva:[2406,2415],fullwide:[65296,65303],gujr:[2790,2799],khmr:[6112,6121],knda:[3302,3311],laoo:[3792,3801],limb:[6470,6479],mlym:[3430,3439],mong:[6160,6169],mymr:[4160,4169],orya:[2918,2927],tamldec:[3046,3055],telu:[3174,3183],thai:[3664,3673],tibt:[3872,3881]},Ea=nn.hanidec.replace(/[\[|\]]/g,"").split("");function ka(t){let e=parseInt(t,10);if(isNaN(e)){e="";for(let n=0;n<t.length;n++){const s=t.charCodeAt(n);if(t[n].search(nn.hanidec)!==-1)e+=Ea.indexOf(t[n]);else for(const r in Ls){const[i,o]=Ls[r];s>=i&&s<=o&&(e+=s-i)}}return parseInt(e,10)}else return e}let Ce={};function Sa(){Ce={}}function ee({numberingSystem:t},e=""){const n=t||"latn";return Ce[n]||(Ce[n]={}),Ce[n][e]||(Ce[n][e]=new RegExp(`${nn[n]}${e}`)),Ce[n][e]}let Vs=()=>Date.now(),Fs="system",Bs=null,$s=null,Us=null,Ps=60,Ws,qs=null;class A{static get now(){return Vs}static set now(e){Vs=e}static set defaultZone(e){Fs=e}static get defaultZone(){return de(Fs,ut.instance)}static get defaultLocale(){return Bs}static set defaultLocale(e){Bs=e}static get defaultNumberingSystem(){return $s}static set defaultNumberingSystem(e){$s=e}static get defaultOutputCalendar(){return Us}static set defaultOutputCalendar(e){Us=e}static get defaultWeekSettings(){return qs}static set defaultWeekSettings(e){qs=an(e)}static get twoDigitCutoffYear(){return Ps}static set twoDigitCutoffYear(e){Ps=e%100}static get throwOnInvalid(){return Ws}static set throwOnInvalid(e){Ws=e}static resetCaches(){C.resetCache(),ce.resetCache(),k.resetCache(),Sa()}}class te{constructor(e,n){this.reason=e,this.explanation=n}toMessage(){return this.explanation?`${this.reason}: ${this.explanation}`:this.reason}}const Hs=[0,31,59,90,120,151,181,212,243,273,304,334],zs=[0,31,60,91,121,152,182,213,244,274,305,335];function j(t,e){return new te("unit out of range",`you specified ${e} (of type ${typeof e}) as a ${t}, which is invalid`)}function sn(t,e,n){const s=new Date(Date.UTC(t,e-1,n));t<100&&t>=0&&s.setUTCFullYear(s.getUTCFullYear()-1900);const r=s.getUTCDay();return r===0?7:r}function Zs(t,e,n){return n+(ze(t)?zs:Hs)[e-1]}function js(t,e){const n=ze(t)?zs:Hs,s=n.findIndex(i=>i<e),r=e-n[s];return{month:s+1,day:r}}function rn(t,e){return(t-e+7)%7+1}function mt(t,e=4,n=1){const{year:s,month:r,day:i}=t,o=Zs(s,r,i),a=rn(sn(s,r,i),n);let c=Math.floor((o-a+14-e)/7),l;return c<1?(l=s-1,c=Ze(l,e,n)):c>Ze(s,e,n)?(l=s+1,c=1):l=s,{weekYear:l,weekNumber:c,weekday:a,...kt(t)}}function Ys(t,e=4,n=1){const{weekYear:s,weekNumber:r,weekday:i}=t,o=rn(sn(s,1,e),n),a=_e(s);let c=r*7+i-o-7+e,l;c<1?(l=s-1,c+=_e(l)):c>a?(l=s+1,c-=_e(s)):l=s;const{month:f,day:d}=js(l,c);return{year:l,month:f,day:d,...kt(t)}}function on(t){const{year:e,month:n,day:s}=t,r=Zs(e,n,s);return{year:e,ordinal:r,...kt(t)}}function Js(t){const{year:e,ordinal:n}=t,{month:s,day:r}=js(e,n);return{year:e,month:s,day:r,...kt(t)}}function Gs(t,e){if(!E(t.localWeekday)||!E(t.localWeekNumber)||!E(t.localWeekYear)){if(!E(t.weekday)||!E(t.weekNumber)||!E(t.weekYear))throw new Ne("Cannot mix locale-based week fields with ISO-based week fields");return E(t.localWeekday)||(t.weekday=t.localWeekday),E(t.localWeekNumber)||(t.weekNumber=t.localWeekNumber),E(t.localWeekYear)||(t.weekYear=t.localWeekYear),delete t.localWeekday,delete t.localWeekNumber,delete t.localWeekYear,{minDaysInFirstWeek:e.getMinDaysInFirstWeek(),startOfWeek:e.getStartOfWeek()}}else return{minDaysInFirstWeek:4,startOfWeek:1}}function ba(t,e=4,n=1){const s=pt(t.weekYear),r=Y(t.weekNumber,1,Ze(t.weekYear,e,n)),i=Y(t.weekday,1,7);return s?r?i?!1:j("weekday",t.weekday):j("week",t.weekNumber):j("weekYear",t.weekYear)}function Ta(t){const e=pt(t.year),n=Y(t.ordinal,1,_e(t.year));return e?n?!1:j("ordinal",t.ordinal):j("year",t.year)}function Ks(t){const e=pt(t.year),n=Y(t.month,1,12),s=Y(t.day,1,yt(t.year,t.month));return e?n?s?!1:j("day",t.day):j("month",t.month):j("year",t.year)}function Xs(t){const{hour:e,minute:n,second:s,millisecond:r}=t,i=Y(e,0,23)||e===24&&n===0&&s===0&&r===0,o=Y(n,0,59),a=Y(s,0,59),c=Y(r,0,999);return i?o?a?c?!1:j("millisecond",r):j("second",s):j("minute",n):j("hour",e)}function E(t){return typeof t>"u"}function me(t){return typeof t=="number"}function pt(t){return typeof t=="number"&&t%1===0}function Oa(t){return typeof t=="string"}function Na(t){return Object.prototype.toString.call(t)==="[object Date]"}function Qs(){try{return typeof Intl<"u"&&!!Intl.RelativeTimeFormat}catch{return!1}}function er(){try{return typeof Intl<"u"&&!!Intl.Locale&&("weekInfo"in Intl.Locale.prototype||"getWeekInfo"in Intl.Locale.prototype)}catch{return!1}}function Ca(t){return Array.isArray(t)?t:[t]}function tr(t,e,n){if(t.length!==0)return t.reduce((s,r)=>{const i=[e(r),r];return s&&n(s[0],i[0])===s[0]?s:i},null)[1]}function va(t,e){return e.reduce((n,s)=>(n[s]=t[s],n),{})}function ve(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function an(t){if(t==null)return null;if(typeof t!="object")throw new $("Week settings must be an object");if(!Y(t.firstDay,1,7)||!Y(t.minimalDays,1,7)||!Array.isArray(t.weekend)||t.weekend.some(e=>!Y(e,1,7)))throw new $("Invalid week settings");return{firstDay:t.firstDay,minimalDays:t.minimalDays,weekend:Array.from(t.weekend)}}function Y(t,e,n){return pt(t)&&t>=e&&t<=n}function _a(t,e){return t-e*Math.floor(t/e)}function D(t,e=2){const n=t<0;let s;return n?s="-"+(""+-t).padStart(e,"0"):s=(""+t).padStart(e,"0"),s}function pe(t){if(!(E(t)||t===null||t===""))return parseInt(t,10)}function Ee(t){if(!(E(t)||t===null||t===""))return parseFloat(t)}function cn(t){if(!(E(t)||t===null||t==="")){const e=parseFloat("0."+t)*1e3;return Math.floor(e)}}function ln(t,e,n=!1){const s=10**e;return(n?Math.trunc:Math.round)(t*s)/s}function ze(t){return t%4===0&&(t%100!==0||t%400===0)}function _e(t){return ze(t)?366:365}function yt(t,e){const n=_a(e-1,12)+1,s=t+(e-n)/12;return n===2?ze(s)?29:28:[31,null,31,30,31,30,31,31,30,31,30,31][n-1]}function gt(t){let e=Date.UTC(t.year,t.month-1,t.day,t.hour,t.minute,t.second,t.millisecond);return t.year<100&&t.year>=0&&(e=new Date(e),e.setUTCFullYear(t.year,t.month-1,t.day)),+e}function nr(t,e,n){return-rn(sn(t,1,e),n)+e-1}function Ze(t,e=4,n=1){const s=nr(t,e,n),r=nr(t+1,e,n);return(_e(t)-s+r)/7}function un(t){return t>99?t:t>A.twoDigitCutoffYear?1900+t:2e3+t}function sr(t,e,n,s=null){const r=new Date(t),i={hourCycle:"h23",year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"};s&&(i.timeZone=s);const o={timeZoneName:e,...i},a=new Intl.DateTimeFormat(n,o).formatToParts(r).find(c=>c.type.toLowerCase()==="timezonename");return a?a.value:null}function wt(t,e){let n=parseInt(t,10);Number.isNaN(n)&&(n=0);const s=parseInt(e,10)||0,r=n<0||Object.is(n,-0)?-s:s;return n*60+r}function rr(t){const e=Number(t);if(typeof t=="boolean"||t===""||Number.isNaN(e))throw new $(`Invalid unit value ${t}`);return e}function Et(t,e){const n={};for(const s in t)if(ve(t,s)){const r=t[s];if(r==null)continue;n[e(s)]=rr(r)}return n}function je(t,e){const n=Math.trunc(Math.abs(t/60)),s=Math.trunc(Math.abs(t%60)),r=t>=0?"+":"-";switch(e){case"short":return`${r}${D(n,2)}:${D(s,2)}`;case"narrow":return`${r}${n}${s>0?`:${s}`:""}`;case"techie":return`${r}${D(n,2)}${D(s,2)}`;default:throw new RangeError(`Value format ${e} is out of range for property format`)}}function kt(t){return va(t,["hour","minute","second","millisecond"])}const xa=["January","February","March","April","May","June","July","August","September","October","November","December"],ir=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],Aa=["J","F","M","A","M","J","J","A","S","O","N","D"];function or(t){switch(t){case"narrow":return[...Aa];case"short":return[...ir];case"long":return[...xa];case"numeric":return["1","2","3","4","5","6","7","8","9","10","11","12"];case"2-digit":return["01","02","03","04","05","06","07","08","09","10","11","12"];default:return null}}const ar=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],cr=["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],Ma=["M","T","W","T","F","S","S"];function lr(t){switch(t){case"narrow":return[...Ma];case"short":return[...cr];case"long":return[...ar];case"numeric":return["1","2","3","4","5","6","7"];default:return null}}const ur=["AM","PM"],Da=["Before Christ","Anno Domini"],Ra=["BC","AD"],Ia=["B","A"];function fr(t){switch(t){case"narrow":return[...Ia];case"short":return[...Ra];case"long":return[...Da];default:return null}}function La(t){return ur[t.hour<12?0:1]}function Va(t,e){return lr(e)[t.weekday-1]}function Fa(t,e){return or(e)[t.month-1]}function Ba(t,e){return fr(e)[t.year<0?0:1]}function $a(t,e,n="always",s=!1){const r={years:["year","yr."],quarters:["quarter","qtr."],months:["month","mo."],weeks:["week","wk."],days:["day","day","days"],hours:["hour","hr."],minutes:["minute","min."],seconds:["second","sec."]},i=["hours","minutes","seconds"].indexOf(t)===-1;if(n==="auto"&&i){const d=t==="days";switch(e){case 1:return d?"tomorrow":`next ${r[t][0]}`;case-1:return d?"yesterday":`last ${r[t][0]}`;case 0:return d?"today":`this ${r[t][0]}`}}const o=Object.is(e,-0)||e<0,a=Math.abs(e),c=a===1,l=r[t],f=s?c?l[1]:l[2]||l[1]:c?r[t][0]:t;return o?`${a} ${f} ago`:`in ${a} ${f}`}function hr(t,e){let n="";for(const s of t)s.literal?n+=s.val:n+=e(s.val);return n}const Ua={D:lt,DD:ms,DDD:ps,DDDD:ys,t:gs,tt:ws,ttt:Es,tttt:ks,T:Ss,TT:bs,TTT:Ts,TTTT:Os,f:Ns,ff:vs,fff:xs,ffff:Ms,F:Cs,FF:_s,FFF:As,FFFF:Ds};class U{static create(e,n={}){return new U(e,n)}static parseFormat(e){let n=null,s="",r=!1;const i=[];for(let o=0;o<e.length;o++){const a=e.charAt(o);a==="'"?(s.length>0&&i.push({literal:r||/^\s+$/.test(s),val:s}),n=null,s="",r=!r):r||a===n?s+=a:(s.length>0&&i.push({literal:/^\s+$/.test(s),val:s}),s=a,n=a)}return s.length>0&&i.push({literal:r||/^\s+$/.test(s),val:s}),i}static macroTokenToFormatOpts(e){return Ua[e]}constructor(e,n){this.opts=n,this.loc=e,this.systemLoc=null}formatWithSystemDefault(e,n){return this.systemLoc===null&&(this.systemLoc=this.loc.redefaultToSystem()),this.systemLoc.dtFormatter(e,{...this.opts,...n}).format()}dtFormatter(e,n={}){return this.loc.dtFormatter(e,{...this.opts,...n})}formatDateTime(e,n){return this.dtFormatter(e,n).format()}formatDateTimeParts(e,n){return this.dtFormatter(e,n).formatToParts()}formatInterval(e,n){return this.dtFormatter(e.start,n).dtf.formatRange(e.start.toJSDate(),e.end.toJSDate())}resolvedOptions(e,n){return this.dtFormatter(e,n).resolvedOptions()}num(e,n=0){if(this.opts.forceSimple)return D(e,n);const s={...this.opts};return n>0&&(s.padTo=n),this.loc.numberFormatter(s).format(e)}formatDateTimeFromString(e,n){const s=this.loc.listingMode()==="en",r=this.loc.outputCalendar&&this.loc.outputCalendar!=="gregory",i=(m,p)=>this.loc.extract(e,m,p),o=m=>e.isOffsetFixed&&e.offset===0&&m.allowZ?"Z":e.isValid?e.zone.formatOffset(e.ts,m.format):"",a=()=>s?La(e):i({hour:"numeric",hourCycle:"h12"},"dayperiod"),c=(m,p)=>s?Fa(e,m):i(p?{month:m}:{month:m,day:"numeric"},"month"),l=(m,p)=>s?Va(e,m):i(p?{weekday:m}:{weekday:m,month:"long",day:"numeric"},"weekday"),f=m=>{const p=U.macroTokenToFormatOpts(m);return p?this.formatWithSystemDefault(e,p):m},d=m=>s?Ba(e,m):i({era:m},"era"),w=m=>{switch(m){case"S":return this.num(e.millisecond);case"u":case"SSS":return this.num(e.millisecond,3);case"s":return this.num(e.second);case"ss":return this.num(e.second,2);case"uu":return this.num(Math.floor(e.millisecond/10),2);case"uuu":return this.num(Math.floor(e.millisecond/100));case"m":return this.num(e.minute);case"mm":return this.num(e.minute,2);case"h":return this.num(e.hour%12===0?12:e.hour%12);case"hh":return this.num(e.hour%12===0?12:e.hour%12,2);case"H":return this.num(e.hour);case"HH":return this.num(e.hour,2);case"Z":return o({format:"narrow",allowZ:this.opts.allowZ});case"ZZ":return o({format:"short",allowZ:this.opts.allowZ});case"ZZZ":return o({format:"techie",allowZ:this.opts.allowZ});case"ZZZZ":return e.zone.offsetName(e.ts,{format:"short",locale:this.loc.locale});case"ZZZZZ":return e.zone.offsetName(e.ts,{format:"long",locale:this.loc.locale});case"z":return e.zoneName;case"a":return a();case"d":return r?i({day:"numeric"},"day"):this.num(e.day);case"dd":return r?i({day:"2-digit"},"day"):this.num(e.day,2);case"c":return this.num(e.weekday);case"ccc":return l("short",!0);case"cccc":return l("long",!0);case"ccccc":return l("narrow",!0);case"E":return this.num(e.weekday);case"EEE":return l("short",!1);case"EEEE":return l("long",!1);case"EEEEE":return l("narrow",!1);case"L":return r?i({month:"numeric",day:"numeric"},"month"):this.num(e.month);case"LL":return r?i({month:"2-digit",day:"numeric"},"month"):this.num(e.month,2);case"LLL":return c("short",!0);case"LLLL":return c("long",!0);case"LLLLL":return c("narrow",!0);case"M":return r?i({month:"numeric"},"month"):this.num(e.month);case"MM":return r?i({month:"2-digit"},"month"):this.num(e.month,2);case"MMM":return c("short",!1);case"MMMM":return c("long",!1);case"MMMMM":return c("narrow",!1);case"y":return r?i({year:"numeric"},"year"):this.num(e.year);case"yy":return r?i({year:"2-digit"},"year"):this.num(e.year.toString().slice(-2),2);case"yyyy":return r?i({year:"numeric"},"year"):this.num(e.year,4);case"yyyyyy":return r?i({year:"numeric"},"year"):this.num(e.year,6);case"G":return d("short");case"GG":return d("long");case"GGGGG":return d("narrow");case"kk":return this.num(e.weekYear.toString().slice(-2),2);case"kkkk":return this.num(e.weekYear,4);case"W":return this.num(e.weekNumber);case"WW":return this.num(e.weekNumber,2);case"n":return this.num(e.localWeekNumber);case"nn":return this.num(e.localWeekNumber,2);case"ii":return this.num(e.localWeekYear.toString().slice(-2),2);case"iiii":return this.num(e.localWeekYear,4);case"o":return this.num(e.ordinal);case"ooo":return this.num(e.ordinal,3);case"q":return this.num(e.quarter);case"qq":return this.num(e.quarter,2);case"X":return this.num(Math.floor(e.ts/1e3));case"x":return this.num(e.ts);default:return f(m)}};return hr(U.parseFormat(n),w)}formatDurationFromString(e,n){const s=c=>{switch(c[0]){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":return"hour";case"d":return"day";case"w":return"week";case"M":return"month";case"y":return"year";default:return null}},r=c=>l=>{const f=s(l);return f?this.num(c.get(f),l.length):l},i=U.parseFormat(n),o=i.reduce((c,{literal:l,val:f})=>l?c:c.concat(f),[]),a=e.shiftTo(...o.map(s).filter(c=>c));return hr(i,r(a))}}const dr=/[A-Za-z_+-]{1,256}(?::?\/[A-Za-z0-9_+-]{1,256}(?:\/[A-Za-z0-9_+-]{1,256})?)?/;function xe(...t){const e=t.reduce((n,s)=>n+s.source,"");return RegExp(`^${e}$`)}function Ae(...t){return e=>t.reduce(([n,s,r],i)=>{const[o,a,c]=i(e,r);return[{...n,...o},a||s,c]},[{},null,1]).slice(0,2)}function Me(t,...e){if(t==null)return[null,null];for(const[n,s]of e){const r=n.exec(t);if(r)return s(r)}return[null,null]}function mr(...t){return(e,n)=>{const s={};let r;for(r=0;r<t.length;r++)s[t[r]]=pe(e[n+r]);return[s,null,n+r]}}const pr=/(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/,Pa=`(?:${pr.source}?(?:\\[(${dr.source})\\])?)?`,fn=/(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/,yr=RegExp(`${fn.source}${Pa}`),hn=RegExp(`(?:T${yr.source})?`),Wa=/([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/,qa=/(\d{4})-?W(\d\d)(?:-?(\d))?/,Ha=/(\d{4})-?(\d{3})/,za=mr("weekYear","weekNumber","weekDay"),Za=mr("year","ordinal"),ja=/(\d{4})-(\d\d)-(\d\d)/,gr=RegExp(`${fn.source} ?(?:${pr.source}|(${dr.source}))?`),Ya=RegExp(`(?: ${gr.source})?`);function De(t,e,n){const s=t[e];return E(s)?n:pe(s)}function Ja(t,e){return[{year:De(t,e),month:De(t,e+1,1),day:De(t,e+2,1)},null,e+3]}function Re(t,e){return[{hours:De(t,e,0),minutes:De(t,e+1,0),seconds:De(t,e+2,0),milliseconds:cn(t[e+3])},null,e+4]}function Ye(t,e){const n=!t[e]&&!t[e+1],s=wt(t[e+1],t[e+2]),r=n?null:P.instance(s);return[{},r,e+3]}function Je(t,e){const n=t[e]?ce.create(t[e]):null;return[{},n,e+1]}const Ga=RegExp(`^T?${fn.source}$`),Ka=/^-?P(?:(?:(-?\d{1,20}(?:\.\d{1,20})?)Y)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20}(?:\.\d{1,20})?)W)?(?:(-?\d{1,20}(?:\.\d{1,20})?)D)?(?:T(?:(-?\d{1,20}(?:\.\d{1,20})?)H)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,20}))?S)?)?)$/;function Xa(t){const[e,n,s,r,i,o,a,c,l]=t,f=e[0]==="-",d=c&&c[0]==="-",w=(m,p=!1)=>m!==void 0&&(p||m&&f)?-m:m;return[{years:w(Ee(n)),months:w(Ee(s)),weeks:w(Ee(r)),days:w(Ee(i)),hours:w(Ee(o)),minutes:w(Ee(a)),seconds:w(Ee(c),c==="-0"),milliseconds:w(cn(l),d)}]}const Qa={GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function dn(t,e,n,s,r,i,o){const a={year:e.length===2?un(pe(e)):pe(e),month:ir.indexOf(n)+1,day:pe(s),hour:pe(r),minute:pe(i)};return o&&(a.second=pe(o)),t&&(a.weekday=t.length>3?ar.indexOf(t)+1:cr.indexOf(t)+1),a}const ec=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;function tc(t){const[,e,n,s,r,i,o,a,c,l,f,d]=t,w=dn(e,r,s,n,i,o,a);let m;return c?m=Qa[c]:l?m=0:m=wt(f,d),[w,new P(m)]}function nc(t){return t.replace(/\([^()]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").trim()}const sc=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/,rc=/^(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/,ic=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;function wr(t){const[,e,n,s,r,i,o,a]=t;return[dn(e,r,s,n,i,o,a),P.utcInstance]}function oc(t){const[,e,n,s,r,i,o,a]=t;return[dn(e,a,n,s,r,i,o),P.utcInstance]}const ac=xe(Wa,hn),cc=xe(qa,hn),lc=xe(Ha,hn),uc=xe(yr),Er=Ae(Ja,Re,Ye,Je),fc=Ae(za,Re,Ye,Je),hc=Ae(Za,Re,Ye,Je),dc=Ae(Re,Ye,Je);function mc(t){return Me(t,[ac,Er],[cc,fc],[lc,hc],[uc,dc])}function pc(t){return Me(nc(t),[ec,tc])}function yc(t){return Me(t,[sc,wr],[rc,wr],[ic,oc])}function gc(t){return Me(t,[Ka,Xa])}const wc=Ae(Re);function Ec(t){return Me(t,[Ga,wc])}const kc=xe(ja,Ya),Sc=xe(gr),bc=Ae(Re,Ye,Je);function Tc(t){return Me(t,[kc,Er],[Sc,bc])}const kr="Invalid Duration",Sr={weeks:{days:7,hours:7*24,minutes:7*24*60,seconds:7*24*60*60,milliseconds:7*24*60*60*1e3},days:{hours:24,minutes:24*60,seconds:24*60*60,milliseconds:24*60*60*1e3},hours:{minutes:60,seconds:60*60,milliseconds:60*60*1e3},minutes:{seconds:60,milliseconds:60*1e3},seconds:{milliseconds:1e3}},Oc={years:{quarters:4,months:12,weeks:52,days:365,hours:365*24,minutes:365*24*60,seconds:365*24*60*60,milliseconds:365*24*60*60*1e3},quarters:{months:3,weeks:13,days:91,hours:91*24,minutes:91*24*60,seconds:91*24*60*60,milliseconds:91*24*60*60*1e3},months:{weeks:4,days:30,hours:30*24,minutes:30*24*60,seconds:30*24*60*60,milliseconds:30*24*60*60*1e3},...Sr},J=146097/400,Ie=146097/4800,Nc={years:{quarters:4,months:12,weeks:J/7,days:J,hours:J*24,minutes:J*24*60,seconds:J*24*60*60,milliseconds:J*24*60*60*1e3},quarters:{months:3,weeks:J/28,days:J/4,hours:J*24/4,minutes:J*24*60/4,seconds:J*24*60*60/4,milliseconds:J*24*60*60*1e3/4},months:{weeks:Ie/7,days:Ie,hours:Ie*24,minutes:Ie*24*60,seconds:Ie*24*60*60,milliseconds:Ie*24*60*60*1e3},...Sr},ke=["years","quarters","months","weeks","days","hours","minutes","seconds","milliseconds"],Cc=ke.slice(0).reverse();function ye(t,e,n=!1){const s={values:n?e.values:{...t.values,...e.values||{}},loc:t.loc.clone(e.loc),conversionAccuracy:e.conversionAccuracy||t.conversionAccuracy,matrix:e.matrix||t.matrix};return new O(s)}function br(t,e){let n=e.milliseconds??0;for(const s of Cc.slice(1))e[s]&&(n+=e[s]*t[s].milliseconds);return n}function Tr(t,e){const n=br(t,e)<0?-1:1;ke.reduceRight((s,r)=>{if(E(e[r]))return s;if(s){const i=e[s]*n,o=t[r][s],a=Math.floor(i/o);e[r]+=a*n,e[s]-=a*o*n}return r},null),ke.reduce((s,r)=>{if(E(e[r]))return s;if(s){const i=e[s]%1;e[s]-=i,e[r]+=i*t[s][r]}return r},null)}function vc(t){const e={};for(const[n,s]of Object.entries(t))s!==0&&(e[n]=s);return e}class O{constructor(e){const n=e.conversionAccuracy==="longterm"||!1;let s=n?Nc:Oc;e.matrix&&(s=e.matrix),this.values=e.values,this.loc=e.loc||C.create(),this.conversionAccuracy=n?"longterm":"casual",this.invalid=e.invalid||null,this.matrix=s,this.isLuxonDuration=!0}static fromMillis(e,n){return O.fromObject({milliseconds:e},n)}static fromObject(e,n={}){if(e==null||typeof e!="object")throw new $(`Duration.fromObject: argument expected to be an object, got ${e===null?"null":typeof e}`);return new O({values:Et(e,O.normalizeUnit),loc:C.fromObject(n),conversionAccuracy:n.conversionAccuracy,matrix:n.matrix})}static fromDurationLike(e){if(me(e))return O.fromMillis(e);if(O.isDuration(e))return e;if(typeof e=="object")return O.fromObject(e);throw new $(`Unknown duration argument ${e} of type ${typeof e}`)}static fromISO(e,n){const[s]=gc(e);return s?O.fromObject(s,n):O.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static fromISOTime(e,n){const[s]=Ec(e);return s?O.fromObject(s,n):O.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static invalid(e,n=null){if(!e)throw new $("need to specify a reason the Duration is invalid");const s=e instanceof te?e:new te(e,n);if(A.throwOnInvalid)throw new Ko(s);return new O({invalid:s})}static normalizeUnit(e){const n={year:"years",years:"years",quarter:"quarters",quarters:"quarters",month:"months",months:"months",week:"weeks",weeks:"weeks",day:"days",days:"days",hour:"hours",hours:"hours",minute:"minutes",minutes:"minutes",second:"seconds",seconds:"seconds",millisecond:"milliseconds",milliseconds:"milliseconds"}[e&&e.toLowerCase()];if(!n)throw new ds(e);return n}static isDuration(e){return e&&e.isLuxonDuration||!1}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}toFormat(e,n={}){const s={...n,floor:n.round!==!1&&n.floor!==!1};return this.isValid?U.create(this.loc,s).formatDurationFromString(this,e):kr}toHuman(e={}){if(!this.isValid)return kr;const n=ke.map(s=>{const r=this.values[s];return E(r)?null:this.loc.numberFormatter({style:"unit",unitDisplay:"long",...e,unit:s.slice(0,-1)}).format(r)}).filter(s=>s);return this.loc.listFormatter({type:"conjunction",style:e.listStyle||"narrow",...e}).format(n)}toObject(){return this.isValid?{...this.values}:{}}toISO(){if(!this.isValid)return null;let e="P";return this.years!==0&&(e+=this.years+"Y"),(this.months!==0||this.quarters!==0)&&(e+=this.months+this.quarters*3+"M"),this.weeks!==0&&(e+=this.weeks+"W"),this.days!==0&&(e+=this.days+"D"),(this.hours!==0||this.minutes!==0||this.seconds!==0||this.milliseconds!==0)&&(e+="T"),this.hours!==0&&(e+=this.hours+"H"),this.minutes!==0&&(e+=this.minutes+"M"),(this.seconds!==0||this.milliseconds!==0)&&(e+=ln(this.seconds+this.milliseconds/1e3,3)+"S"),e==="P"&&(e+="T0S"),e}toISOTime(e={}){if(!this.isValid)return null;const n=this.toMillis();return n<0||n>=864e5?null:(e={suppressMilliseconds:!1,suppressSeconds:!1,includePrefix:!1,format:"extended",...e,includeOffset:!1},k.fromMillis(n,{zone:"UTC"}).toISOTime(e))}toJSON(){return this.toISO()}toString(){return this.toISO()}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`Duration { values: ${JSON.stringify(this.values)} }`:`Duration { Invalid, reason: ${this.invalidReason} }`}toMillis(){return this.isValid?br(this.matrix,this.values):NaN}valueOf(){return this.toMillis()}plus(e){if(!this.isValid)return this;const n=O.fromDurationLike(e),s={};for(const r of ke)(ve(n.values,r)||ve(this.values,r))&&(s[r]=n.get(r)+this.get(r));return ye(this,{values:s},!0)}minus(e){if(!this.isValid)return this;const n=O.fromDurationLike(e);return this.plus(n.negate())}mapUnits(e){if(!this.isValid)return this;const n={};for(const s of Object.keys(this.values))n[s]=rr(e(this.values[s],s));return ye(this,{values:n},!0)}get(e){return this[O.normalizeUnit(e)]}set(e){if(!this.isValid)return this;const n={...this.values,...Et(e,O.normalizeUnit)};return ye(this,{values:n})}reconfigure({locale:e,numberingSystem:n,conversionAccuracy:s,matrix:r}={}){const o={loc:this.loc.clone({locale:e,numberingSystem:n}),matrix:r,conversionAccuracy:s};return ye(this,o)}as(e){return this.isValid?this.shiftTo(e).get(e):NaN}normalize(){if(!this.isValid)return this;const e=this.toObject();return Tr(this.matrix,e),ye(this,{values:e},!0)}rescale(){if(!this.isValid)return this;const e=vc(this.normalize().shiftToAll().toObject());return ye(this,{values:e},!0)}shiftTo(...e){if(!this.isValid)return this;if(e.length===0)return this;e=e.map(o=>O.normalizeUnit(o));const n={},s={},r=this.toObject();let i;for(const o of ke)if(e.indexOf(o)>=0){i=o;let a=0;for(const l in s)a+=this.matrix[l][o]*s[l],s[l]=0;me(r[o])&&(a+=r[o]);const c=Math.trunc(a);n[o]=c,s[o]=(a*1e3-c*1e3)/1e3}else me(r[o])&&(s[o]=r[o]);for(const o in s)s[o]!==0&&(n[i]+=o===i?s[o]:s[o]/this.matrix[i][o]);return Tr(this.matrix,n),ye(this,{values:n},!0)}shiftToAll(){return this.isValid?this.shiftTo("years","months","weeks","days","hours","minutes","seconds","milliseconds"):this}negate(){if(!this.isValid)return this;const e={};for(const n of Object.keys(this.values))e[n]=this.values[n]===0?0:-this.values[n];return ye(this,{values:e},!0)}get years(){return this.isValid?this.values.years||0:NaN}get quarters(){return this.isValid?this.values.quarters||0:NaN}get months(){return this.isValid?this.values.months||0:NaN}get weeks(){return this.isValid?this.values.weeks||0:NaN}get days(){return this.isValid?this.values.days||0:NaN}get hours(){return this.isValid?this.values.hours||0:NaN}get minutes(){return this.isValid?this.values.minutes||0:NaN}get seconds(){return this.isValid?this.values.seconds||0:NaN}get milliseconds(){return this.isValid?this.values.milliseconds||0:NaN}get isValid(){return this.invalid===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}equals(e){if(!this.isValid||!e.isValid||!this.loc.equals(e.loc))return!1;function n(s,r){return s===void 0||s===0?r===void 0||r===0:s===r}for(const s of ke)if(!n(this.values[s],e.values[s]))return!1;return!0}}const Le="Invalid Interval";function _c(t,e){return!t||!t.isValid?M.invalid("missing or invalid start"):!e||!e.isValid?M.invalid("missing or invalid end"):e<t?M.invalid("end before start",`The end of an interval must be after its start, but you had start=${t.toISO()} and end=${e.toISO()}`):null}class M{constructor(e){this.s=e.start,this.e=e.end,this.invalid=e.invalid||null,this.isLuxonInterval=!0}static invalid(e,n=null){if(!e)throw new $("need to specify a reason the Interval is invalid");const s=e instanceof te?e:new te(e,n);if(A.throwOnInvalid)throw new Go(s);return new M({invalid:s})}static fromDateTimes(e,n){const s=Ke(e),r=Ke(n),i=_c(s,r);return i??new M({start:s,end:r})}static after(e,n){const s=O.fromDurationLike(n),r=Ke(e);return M.fromDateTimes(r,r.plus(s))}static before(e,n){const s=O.fromDurationLike(n),r=Ke(e);return M.fromDateTimes(r.minus(s),r)}static fromISO(e,n){const[s,r]=(e||"").split("/",2);if(s&&r){let i,o;try{i=k.fromISO(s,n),o=i.isValid}catch{o=!1}let a,c;try{a=k.fromISO(r,n),c=a.isValid}catch{c=!1}if(o&&c)return M.fromDateTimes(i,a);if(o){const l=O.fromISO(r,n);if(l.isValid)return M.after(i,l)}else if(c){const l=O.fromISO(s,n);if(l.isValid)return M.before(a,l)}}return M.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static isInterval(e){return e&&e.isLuxonInterval||!1}get start(){return this.isValid?this.s:null}get end(){return this.isValid?this.e:null}get isValid(){return this.invalidReason===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}length(e="milliseconds"){return this.isValid?this.toDuration(e).get(e):NaN}count(e="milliseconds",n){if(!this.isValid)return NaN;const s=this.start.startOf(e,n);let r;return n!=null&&n.useLocaleWeeks?r=this.end.reconfigure({locale:s.locale}):r=this.end,r=r.startOf(e,n),Math.floor(r.diff(s,e).get(e))+(r.valueOf()!==this.end.valueOf())}hasSame(e){return this.isValid?this.isEmpty()||this.e.minus(1).hasSame(this.s,e):!1}isEmpty(){return this.s.valueOf()===this.e.valueOf()}isAfter(e){return this.isValid?this.s>e:!1}isBefore(e){return this.isValid?this.e<=e:!1}contains(e){return this.isValid?this.s<=e&&this.e>e:!1}set({start:e,end:n}={}){return this.isValid?M.fromDateTimes(e||this.s,n||this.e):this}splitAt(...e){if(!this.isValid)return[];const n=e.map(Ke).filter(o=>this.contains(o)).sort((o,a)=>o.toMillis()-a.toMillis()),s=[];let{s:r}=this,i=0;for(;r<this.e;){const o=n[i]||this.e,a=+o>+this.e?this.e:o;s.push(M.fromDateTimes(r,a)),r=a,i+=1}return s}splitBy(e){const n=O.fromDurationLike(e);if(!this.isValid||!n.isValid||n.as("milliseconds")===0)return[];let{s}=this,r=1,i;const o=[];for(;s<this.e;){const a=this.start.plus(n.mapUnits(c=>c*r));i=+a>+this.e?this.e:a,o.push(M.fromDateTimes(s,i)),s=i,r+=1}return o}divideEqually(e){return this.isValid?this.splitBy(this.length()/e).slice(0,e):[]}overlaps(e){return this.e>e.s&&this.s<e.e}abutsStart(e){return this.isValid?+this.e==+e.s:!1}abutsEnd(e){return this.isValid?+e.e==+this.s:!1}engulfs(e){return this.isValid?this.s<=e.s&&this.e>=e.e:!1}equals(e){return!this.isValid||!e.isValid?!1:this.s.equals(e.s)&&this.e.equals(e.e)}intersection(e){if(!this.isValid)return this;const n=this.s>e.s?this.s:e.s,s=this.e<e.e?this.e:e.e;return n>=s?null:M.fromDateTimes(n,s)}union(e){if(!this.isValid)return this;const n=this.s<e.s?this.s:e.s,s=this.e>e.e?this.e:e.e;return M.fromDateTimes(n,s)}static merge(e){const[n,s]=e.sort((r,i)=>r.s-i.s).reduce(([r,i],o)=>i?i.overlaps(o)||i.abutsStart(o)?[r,i.union(o)]:[r.concat([i]),o]:[r,o],[[],null]);return s&&n.push(s),n}static xor(e){let n=null,s=0;const r=[],i=e.map(c=>[{time:c.s,type:"s"},{time:c.e,type:"e"}]),o=Array.prototype.concat(...i),a=o.sort((c,l)=>c.time-l.time);for(const c of a)s+=c.type==="s"?1:-1,s===1?n=c.time:(n&&+n!=+c.time&&r.push(M.fromDateTimes(n,c.time)),n=null);return M.merge(r)}difference(...e){return M.xor([this].concat(e)).map(n=>this.intersection(n)).filter(n=>n&&!n.isEmpty())}toString(){return this.isValid?`[${this.s.toISO()} – ${this.e.toISO()})`:Le}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`Interval { start: ${this.s.toISO()}, end: ${this.e.toISO()} }`:`Interval { Invalid, reason: ${this.invalidReason} }`}toLocaleString(e=lt,n={}){return this.isValid?U.create(this.s.loc.clone(n),e).formatInterval(this):Le}toISO(e){return this.isValid?`${this.s.toISO(e)}/${this.e.toISO(e)}`:Le}toISODate(){return this.isValid?`${this.s.toISODate()}/${this.e.toISODate()}`:Le}toISOTime(e){return this.isValid?`${this.s.toISOTime(e)}/${this.e.toISOTime(e)}`:Le}toFormat(e,{separator:n=" – "}={}){return this.isValid?`${this.s.toFormat(e)}${n}${this.e.toFormat(e)}`:Le}toDuration(e,n){return this.isValid?this.e.diff(this.s,e,n):O.invalid(this.invalidReason)}mapEndpoints(e){return M.fromDateTimes(e(this.s),e(this.e))}}class St{static hasDST(e=A.defaultZone){const n=k.now().setZone(e).set({month:12});return!e.isUniversal&&n.offset!==n.set({month:6}).offset}static isValidIANAZone(e){return ce.isValidZone(e)}static normalizeZone(e){return de(e,A.defaultZone)}static getStartOfWeek({locale:e=null,locObj:n=null}={}){return(n||C.create(e)).getStartOfWeek()}static getMinimumDaysInFirstWeek({locale:e=null,locObj:n=null}={}){return(n||C.create(e)).getMinDaysInFirstWeek()}static getWeekendWeekdays({locale:e=null,locObj:n=null}={}){return(n||C.create(e)).getWeekendDays().slice()}static months(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null,outputCalendar:i="gregory"}={}){return(r||C.create(n,s,i)).months(e)}static monthsFormat(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null,outputCalendar:i="gregory"}={}){return(r||C.create(n,s,i)).months(e,!0)}static weekdays(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null}={}){return(r||C.create(n,s,null)).weekdays(e)}static weekdaysFormat(e="long",{locale:n=null,numberingSystem:s=null,locObj:r=null}={}){return(r||C.create(n,s,null)).weekdays(e,!0)}static meridiems({locale:e=null}={}){return C.create(e).meridiems()}static eras(e="short",{locale:n=null}={}){return C.create(n,null,"gregory").eras(e)}static features(){return{relative:Qs(),localeWeek:er()}}}function Or(t,e){const n=r=>r.toUTC(0,{keepLocalTime:!0}).startOf("day").valueOf(),s=n(e)-n(t);return Math.floor(O.fromMillis(s).as("days"))}function xc(t,e,n){const s=[["years",(c,l)=>l.year-c.year],["quarters",(c,l)=>l.quarter-c.quarter+(l.year-c.year)*4],["months",(c,l)=>l.month-c.month+(l.year-c.year)*12],["weeks",(c,l)=>{const f=Or(c,l);return(f-f%7)/7}],["days",Or]],r={},i=t;let o,a;for(const[c,l]of s)n.indexOf(c)>=0&&(o=c,r[c]=l(t,e),a=i.plus(r),a>e?(r[c]--,t=i.plus(r),t>e&&(a=t,r[c]--,t=i.plus(r))):t=a);return[t,r,a,o]}function Ac(t,e,n,s){let[r,i,o,a]=xc(t,e,n);const c=e-r,l=n.filter(d=>["hours","minutes","seconds","milliseconds"].indexOf(d)>=0);l.length===0&&(o<e&&(o=r.plus({[a]:1})),o!==r&&(i[a]=(i[a]||0)+c/(o-r)));const f=O.fromObject(i,s);return l.length>0?O.fromMillis(c,s).shiftTo(...l).plus(f):f}const Mc="missing Intl.DateTimeFormat.formatToParts support";function N(t,e=n=>n){return{regex:t,deser:([n])=>e(ka(n))}}const Nr="[  ]",Cr=new RegExp(Nr,"g");function Dc(t){return t.replace(/\./g,"\\.?").replace(Cr,Nr)}function vr(t){return t.replace(/\./g,"").replace(Cr," ").toLowerCase()}function ne(t,e){return t===null?null:{regex:RegExp(t.map(Dc).join("|")),deser:([n])=>t.findIndex(s=>vr(n)===vr(s))+e}}function _r(t,e){return{regex:t,deser:([,n,s])=>wt(n,s),groups:e}}function bt(t){return{regex:t,deser:([e])=>e}}function Rc(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")}function Ic(t,e){const n=ee(e),s=ee(e,"{2}"),r=ee(e,"{3}"),i=ee(e,"{4}"),o=ee(e,"{6}"),a=ee(e,"{1,2}"),c=ee(e,"{1,3}"),l=ee(e,"{1,6}"),f=ee(e,"{1,9}"),d=ee(e,"{2,4}"),w=ee(e,"{4,6}"),m=x=>({regex:RegExp(Rc(x.val)),deser:([v])=>v,literal:!0}),g=(x=>{if(t.literal)return m(x);switch(x.val){case"G":return ne(e.eras("short"),0);case"GG":return ne(e.eras("long"),0);case"y":return N(l);case"yy":return N(d,un);case"yyyy":return N(i);case"yyyyy":return N(w);case"yyyyyy":return N(o);case"M":return N(a);case"MM":return N(s);case"MMM":return ne(e.months("short",!0),1);case"MMMM":return ne(e.months("long",!0),1);case"L":return N(a);case"LL":return N(s);case"LLL":return ne(e.months("short",!1),1);case"LLLL":return ne(e.months("long",!1),1);case"d":return N(a);case"dd":return N(s);case"o":return N(c);case"ooo":return N(r);case"HH":return N(s);case"H":return N(a);case"hh":return N(s);case"h":return N(a);case"mm":return N(s);case"m":return N(a);case"q":return N(a);case"qq":return N(s);case"s":return N(a);case"ss":return N(s);case"S":return N(c);case"SSS":return N(r);case"u":return bt(f);case"uu":return bt(a);case"uuu":return N(n);case"a":return ne(e.meridiems(),0);case"kkkk":return N(i);case"kk":return N(d,un);case"W":return N(a);case"WW":return N(s);case"E":case"c":return N(n);case"EEE":return ne(e.weekdays("short",!1),1);case"EEEE":return ne(e.weekdays("long",!1),1);case"ccc":return ne(e.weekdays("short",!0),1);case"cccc":return ne(e.weekdays("long",!0),1);case"Z":case"ZZ":return _r(new RegExp(`([+-]${a.source})(?::(${s.source}))?`),2);case"ZZZ":return _r(new RegExp(`([+-]${a.source})(${s.source})?`),2);case"z":return bt(/[a-z_+-/]{1,256}?/i);case" ":return bt(/[^\S\n\r]/);default:return m(x)}})(t)||{invalidReason:Mc};return g.token=t,g}const Lc={year:{"2-digit":"yy",numeric:"yyyyy"},month:{numeric:"M","2-digit":"MM",short:"MMM",long:"MMMM"},day:{numeric:"d","2-digit":"dd"},weekday:{short:"EEE",long:"EEEE"},dayperiod:"a",dayPeriod:"a",hour12:{numeric:"h","2-digit":"hh"},hour24:{numeric:"H","2-digit":"HH"},minute:{numeric:"m","2-digit":"mm"},second:{numeric:"s","2-digit":"ss"},timeZoneName:{long:"ZZZZZ",short:"ZZZ"}};function Vc(t,e,n){const{type:s,value:r}=t;if(s==="literal"){const c=/^\s+$/.test(r);return{literal:!c,val:c?" ":r}}const i=e[s];let o=s;s==="hour"&&(e.hour12!=null?o=e.hour12?"hour12":"hour24":e.hourCycle!=null?e.hourCycle==="h11"||e.hourCycle==="h12"?o="hour12":o="hour24":o=n.hour12?"hour12":"hour24");let a=Lc[o];if(typeof a=="object"&&(a=a[i]),a)return{literal:!1,val:a}}function Fc(t){return[`^${t.map(n=>n.regex).reduce((n,s)=>`${n}(${s.source})`,"")}$`,t]}function Bc(t,e,n){const s=t.match(e);if(s){const r={};let i=1;for(const o in n)if(ve(n,o)){const a=n[o],c=a.groups?a.groups+1:1;!a.literal&&a.token&&(r[a.token.val[0]]=a.deser(s.slice(i,i+c))),i+=c}return[s,r]}else return[s,{}]}function $c(t){const e=i=>{switch(i){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":case"H":return"hour";case"d":return"day";case"o":return"ordinal";case"L":case"M":return"month";case"y":return"year";case"E":case"c":return"weekday";case"W":return"weekNumber";case"k":return"weekYear";case"q":return"quarter";default:return null}};let n=null,s;return E(t.z)||(n=ce.create(t.z)),E(t.Z)||(n||(n=new P(t.Z)),s=t.Z),E(t.q)||(t.M=(t.q-1)*3+1),E(t.h)||(t.h<12&&t.a===1?t.h+=12:t.h===12&&t.a===0&&(t.h=0)),t.G===0&&t.y&&(t.y=-t.y),E(t.u)||(t.S=cn(t.u)),[Object.keys(t).reduce((i,o)=>{const a=e(o);return a&&(i[a]=t[o]),i},{}),n,s]}let mn=null;function Uc(){return mn||(mn=k.fromMillis(1555555555555)),mn}function Pc(t,e){if(t.literal)return t;const n=U.macroTokenToFormatOpts(t.val),s=Dr(n,e);return s==null||s.includes(void 0)?t:s}function xr(t,e){return Array.prototype.concat(...t.map(n=>Pc(n,e)))}class Ar{constructor(e,n){if(this.locale=e,this.format=n,this.tokens=xr(U.parseFormat(n),e),this.units=this.tokens.map(s=>Ic(s,e)),this.disqualifyingUnit=this.units.find(s=>s.invalidReason),!this.disqualifyingUnit){const[s,r]=Fc(this.units);this.regex=RegExp(s,"i"),this.handlers=r}}explainFromTokens(e){if(this.isValid){const[n,s]=Bc(e,this.regex,this.handlers),[r,i,o]=s?$c(s):[null,null,void 0];if(ve(s,"a")&&ve(s,"H"))throw new Ne("Can't include meridiem when specifying 24-hour format");return{input:e,tokens:this.tokens,regex:this.regex,rawMatches:n,matches:s,result:r,zone:i,specificOffset:o}}else return{input:e,tokens:this.tokens,invalidReason:this.invalidReason}}get isValid(){return!this.disqualifyingUnit}get invalidReason(){return this.disqualifyingUnit?this.disqualifyingUnit.invalidReason:null}}function Mr(t,e,n){return new Ar(t,n).explainFromTokens(e)}function Wc(t,e,n){const{result:s,zone:r,specificOffset:i,invalidReason:o}=Mr(t,e,n);return[s,r,i,o]}function Dr(t,e){if(!t)return null;const s=U.create(e,t).dtFormatter(Uc()),r=s.formatToParts(),i=s.resolvedOptions();return r.map(o=>Vc(o,t,i))}const pn="Invalid DateTime",Rr=864e13;function Ge(t){return new te("unsupported zone",`the zone "${t.name}" is not supported`)}function yn(t){return t.weekData===null&&(t.weekData=mt(t.c)),t.weekData}function gn(t){return t.localWeekData===null&&(t.localWeekData=mt(t.c,t.loc.getMinDaysInFirstWeek(),t.loc.getStartOfWeek())),t.localWeekData}function Se(t,e){const n={ts:t.ts,zone:t.zone,c:t.c,o:t.o,loc:t.loc,invalid:t.invalid};return new k({...n,...e,old:n})}function Ir(t,e,n){let s=t-e*60*1e3;const r=n.offset(s);if(e===r)return[s,e];s-=(r-e)*60*1e3;const i=n.offset(s);return r===i?[s,r]:[t-Math.min(r,i)*60*1e3,Math.max(r,i)]}function Tt(t,e){t+=e*60*1e3;const n=new Date(t);return{year:n.getUTCFullYear(),month:n.getUTCMonth()+1,day:n.getUTCDate(),hour:n.getUTCHours(),minute:n.getUTCMinutes(),second:n.getUTCSeconds(),millisecond:n.getUTCMilliseconds()}}function Ot(t,e,n){return Ir(gt(t),e,n)}function Lr(t,e){const n=t.o,s=t.c.year+Math.trunc(e.years),r=t.c.month+Math.trunc(e.months)+Math.trunc(e.quarters)*3,i={...t.c,year:s,month:r,day:Math.min(t.c.day,yt(s,r))+Math.trunc(e.days)+Math.trunc(e.weeks)*7},o=O.fromObject({years:e.years-Math.trunc(e.years),quarters:e.quarters-Math.trunc(e.quarters),months:e.months-Math.trunc(e.months),weeks:e.weeks-Math.trunc(e.weeks),days:e.days-Math.trunc(e.days),hours:e.hours,minutes:e.minutes,seconds:e.seconds,milliseconds:e.milliseconds}).as("milliseconds"),a=gt(i);let[c,l]=Ir(a,n,t.zone);return o!==0&&(c+=o,l=t.zone.offset(c)),{ts:c,o:l}}function Ve(t,e,n,s,r,i){const{setZone:o,zone:a}=n;if(t&&Object.keys(t).length!==0||e){const c=e||a,l=k.fromObject(t,{...n,zone:c,specificOffset:i});return o?l:l.setZone(a)}else return k.invalid(new te("unparsable",`the input "${r}" can't be parsed as ${s}`))}function Nt(t,e,n=!0){return t.isValid?U.create(C.create("en-US"),{allowZ:n,forceSimple:!0}).formatDateTimeFromString(t,e):null}function wn(t,e){const n=t.c.year>9999||t.c.year<0;let s="";return n&&t.c.year>=0&&(s+="+"),s+=D(t.c.year,n?6:4),e?(s+="-",s+=D(t.c.month),s+="-",s+=D(t.c.day)):(s+=D(t.c.month),s+=D(t.c.day)),s}function Vr(t,e,n,s,r,i){let o=D(t.c.hour);return e?(o+=":",o+=D(t.c.minute),(t.c.millisecond!==0||t.c.second!==0||!n)&&(o+=":")):o+=D(t.c.minute),(t.c.millisecond!==0||t.c.second!==0||!n)&&(o+=D(t.c.second),(t.c.millisecond!==0||!s)&&(o+=".",o+=D(t.c.millisecond,3))),r&&(t.isOffsetFixed&&t.offset===0&&!i?o+="Z":t.o<0?(o+="-",o+=D(Math.trunc(-t.o/60)),o+=":",o+=D(Math.trunc(-t.o%60))):(o+="+",o+=D(Math.trunc(t.o/60)),o+=":",o+=D(Math.trunc(t.o%60)))),i&&(o+="["+t.zone.ianaName+"]"),o}const Fr={month:1,day:1,hour:0,minute:0,second:0,millisecond:0},qc={weekNumber:1,weekday:1,hour:0,minute:0,second:0,millisecond:0},Hc={ordinal:1,hour:0,minute:0,second:0,millisecond:0},Br=["year","month","day","hour","minute","second","millisecond"],zc=["weekYear","weekNumber","weekday","hour","minute","second","millisecond"],Zc=["year","ordinal","hour","minute","second","millisecond"];function jc(t){const e={year:"year",years:"year",month:"month",months:"month",day:"day",days:"day",hour:"hour",hours:"hour",minute:"minute",minutes:"minute",quarter:"quarter",quarters:"quarter",second:"second",seconds:"second",millisecond:"millisecond",milliseconds:"millisecond",weekday:"weekday",weekdays:"weekday",weeknumber:"weekNumber",weeksnumber:"weekNumber",weeknumbers:"weekNumber",weekyear:"weekYear",weekyears:"weekYear",ordinal:"ordinal"}[t.toLowerCase()];if(!e)throw new ds(t);return e}function $r(t){switch(t.toLowerCase()){case"localweekday":case"localweekdays":return"localWeekday";case"localweeknumber":case"localweeknumbers":return"localWeekNumber";case"localweekyear":case"localweekyears":return"localWeekYear";default:return jc(t)}}function Yc(t){return vt[t]||(Ct===void 0&&(Ct=A.now()),vt[t]=t.offset(Ct)),vt[t]}function Ur(t,e){const n=de(e.zone,A.defaultZone);if(!n.isValid)return k.invalid(Ge(n));const s=C.fromObject(e);let r,i;if(E(t.year))r=A.now();else{for(const c of Br)E(t[c])&&(t[c]=Fr[c]);const o=Ks(t)||Xs(t);if(o)return k.invalid(o);const a=Yc(n);[r,i]=Ot(t,a,n)}return new k({ts:r,zone:n,loc:s,o:i})}function Pr(t,e,n){const s=E(n.round)?!0:n.round,r=(o,a)=>(o=ln(o,s||n.calendary?0:2,!0),e.loc.clone(n).relFormatter(n).format(o,a)),i=o=>n.calendary?e.hasSame(t,o)?0:e.startOf(o).diff(t.startOf(o),o).get(o):e.diff(t,o).get(o);if(n.unit)return r(i(n.unit),n.unit);for(const o of n.units){const a=i(o);if(Math.abs(a)>=1)return r(a,o)}return r(t>e?-0:0,n.units[n.units.length-1])}function Wr(t){let e={},n;return t.length>0&&typeof t[t.length-1]=="object"?(e=t[t.length-1],n=Array.from(t).slice(0,t.length-1)):n=Array.from(t),[e,n]}let Ct,vt={};class k{constructor(e){const n=e.zone||A.defaultZone;let s=e.invalid||(Number.isNaN(e.ts)?new te("invalid input"):null)||(n.isValid?null:Ge(n));this.ts=E(e.ts)?A.now():e.ts;let r=null,i=null;if(!s)if(e.old&&e.old.ts===this.ts&&e.old.zone.equals(n))[r,i]=[e.old.c,e.old.o];else{const a=me(e.o)&&!e.old?e.o:n.offset(this.ts);r=Tt(this.ts,a),s=Number.isNaN(r.year)?new te("invalid input"):null,r=s?null:r,i=s?null:a}this._zone=n,this.loc=e.loc||C.create(),this.invalid=s,this.weekData=null,this.localWeekData=null,this.c=r,this.o=i,this.isLuxonDateTime=!0}static now(){return new k({})}static local(){const[e,n]=Wr(arguments),[s,r,i,o,a,c,l]=n;return Ur({year:s,month:r,day:i,hour:o,minute:a,second:c,millisecond:l},e)}static utc(){const[e,n]=Wr(arguments),[s,r,i,o,a,c,l]=n;return e.zone=P.utcInstance,Ur({year:s,month:r,day:i,hour:o,minute:a,second:c,millisecond:l},e)}static fromJSDate(e,n={}){const s=Na(e)?e.valueOf():NaN;if(Number.isNaN(s))return k.invalid("invalid input");const r=de(n.zone,A.defaultZone);return r.isValid?new k({ts:s,zone:r,loc:C.fromObject(n)}):k.invalid(Ge(r))}static fromMillis(e,n={}){if(me(e))return e<-Rr||e>Rr?k.invalid("Timestamp out of range"):new k({ts:e,zone:de(n.zone,A.defaultZone),loc:C.fromObject(n)});throw new $(`fromMillis requires a numerical input, but received a ${typeof e} with value ${e}`)}static fromSeconds(e,n={}){if(me(e))return new k({ts:e*1e3,zone:de(n.zone,A.defaultZone),loc:C.fromObject(n)});throw new $("fromSeconds requires a numerical input")}static fromObject(e,n={}){e=e||{};const s=de(n.zone,A.defaultZone);if(!s.isValid)return k.invalid(Ge(s));const r=C.fromObject(n),i=Et(e,$r),{minDaysInFirstWeek:o,startOfWeek:a}=Gs(i,r),c=A.now(),l=E(n.specificOffset)?s.offset(c):n.specificOffset,f=!E(i.ordinal),d=!E(i.year),w=!E(i.month)||!E(i.day),m=d||w,p=i.weekYear||i.weekNumber;if((m||f)&&p)throw new Ne("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(w&&f)throw new Ne("Can't mix ordinal dates with month/day");const g=p||i.weekday&&!m;let x,v,I=Tt(c,l);g?(x=zc,v=qc,I=mt(I,o,a)):f?(x=Zc,v=Hc,I=on(I)):(x=Br,v=Fr);let le=!1;for(const K of x){const Rn=i[K];E(Rn)?le?i[K]=v[K]:i[K]=I[K]:le=!0}const S=g?ba(i,o,a):f?Ta(i):Ks(i),_=S||Xs(i);if(_)return k.invalid(_);const B=g?Ys(i,o,a):f?Js(i):i,[H,V]=Ot(B,l,s),W=new k({ts:H,zone:s,o:V,loc:r});return i.weekday&&m&&e.weekday!==W.weekday?k.invalid("mismatched weekday",`you can't specify both a weekday of ${i.weekday} and a date of ${W.toISO()}`):W.isValid?W:k.invalid(W.invalid)}static fromISO(e,n={}){const[s,r]=mc(e);return Ve(s,r,n,"ISO 8601",e)}static fromRFC2822(e,n={}){const[s,r]=pc(e);return Ve(s,r,n,"RFC 2822",e)}static fromHTTP(e,n={}){const[s,r]=yc(e);return Ve(s,r,n,"HTTP",n)}static fromFormat(e,n,s={}){if(E(e)||E(n))throw new $("fromFormat requires an input string and a format");const{locale:r=null,numberingSystem:i=null}=s,o=C.fromOpts({locale:r,numberingSystem:i,defaultToEN:!0}),[a,c,l,f]=Wc(o,e,n);return f?k.invalid(f):Ve(a,c,s,`format ${n}`,e,l)}static fromString(e,n,s={}){return k.fromFormat(e,n,s)}static fromSQL(e,n={}){const[s,r]=Tc(e);return Ve(s,r,n,"SQL",e)}static invalid(e,n=null){if(!e)throw new $("need to specify a reason the DateTime is invalid");const s=e instanceof te?e:new te(e,n);if(A.throwOnInvalid)throw new Jo(s);return new k({invalid:s})}static isDateTime(e){return e&&e.isLuxonDateTime||!1}static parseFormatForOpts(e,n={}){const s=Dr(e,C.fromObject(n));return s?s.map(r=>r?r.val:null).join(""):null}static expandFormat(e,n={}){return xr(U.parseFormat(e),C.fromObject(n)).map(r=>r.val).join("")}static resetCache(){Ct=void 0,vt={}}get(e){return this[e]}get isValid(){return this.invalid===null}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}get outputCalendar(){return this.isValid?this.loc.outputCalendar:null}get zone(){return this._zone}get zoneName(){return this.isValid?this.zone.name:null}get year(){return this.isValid?this.c.year:NaN}get quarter(){return this.isValid?Math.ceil(this.c.month/3):NaN}get month(){return this.isValid?this.c.month:NaN}get day(){return this.isValid?this.c.day:NaN}get hour(){return this.isValid?this.c.hour:NaN}get minute(){return this.isValid?this.c.minute:NaN}get second(){return this.isValid?this.c.second:NaN}get millisecond(){return this.isValid?this.c.millisecond:NaN}get weekYear(){return this.isValid?yn(this).weekYear:NaN}get weekNumber(){return this.isValid?yn(this).weekNumber:NaN}get weekday(){return this.isValid?yn(this).weekday:NaN}get isWeekend(){return this.isValid&&this.loc.getWeekendDays().includes(this.weekday)}get localWeekday(){return this.isValid?gn(this).weekday:NaN}get localWeekNumber(){return this.isValid?gn(this).weekNumber:NaN}get localWeekYear(){return this.isValid?gn(this).weekYear:NaN}get ordinal(){return this.isValid?on(this.c).ordinal:NaN}get monthShort(){return this.isValid?St.months("short",{locObj:this.loc})[this.month-1]:null}get monthLong(){return this.isValid?St.months("long",{locObj:this.loc})[this.month-1]:null}get weekdayShort(){return this.isValid?St.weekdays("short",{locObj:this.loc})[this.weekday-1]:null}get weekdayLong(){return this.isValid?St.weekdays("long",{locObj:this.loc})[this.weekday-1]:null}get offset(){return this.isValid?+this.o:NaN}get offsetNameShort(){return this.isValid?this.zone.offsetName(this.ts,{format:"short",locale:this.locale}):null}get offsetNameLong(){return this.isValid?this.zone.offsetName(this.ts,{format:"long",locale:this.locale}):null}get isOffsetFixed(){return this.isValid?this.zone.isUniversal:null}get isInDST(){return this.isOffsetFixed?!1:this.offset>this.set({month:1,day:1}).offset||this.offset>this.set({month:5}).offset}getPossibleOffsets(){if(!this.isValid||this.isOffsetFixed)return[this];const e=864e5,n=6e4,s=gt(this.c),r=this.zone.offset(s-e),i=this.zone.offset(s+e),o=this.zone.offset(s-r*n),a=this.zone.offset(s-i*n);if(o===a)return[this];const c=s-o*n,l=s-a*n,f=Tt(c,o),d=Tt(l,a);return f.hour===d.hour&&f.minute===d.minute&&f.second===d.second&&f.millisecond===d.millisecond?[Se(this,{ts:c}),Se(this,{ts:l})]:[this]}get isInLeapYear(){return ze(this.year)}get daysInMonth(){return yt(this.year,this.month)}get daysInYear(){return this.isValid?_e(this.year):NaN}get weeksInWeekYear(){return this.isValid?Ze(this.weekYear):NaN}get weeksInLocalWeekYear(){return this.isValid?Ze(this.localWeekYear,this.loc.getMinDaysInFirstWeek(),this.loc.getStartOfWeek()):NaN}resolvedLocaleOptions(e={}){const{locale:n,numberingSystem:s,calendar:r}=U.create(this.loc.clone(e),e).resolvedOptions(this);return{locale:n,numberingSystem:s,outputCalendar:r}}toUTC(e=0,n={}){return this.setZone(P.instance(e),n)}toLocal(){return this.setZone(A.defaultZone)}setZone(e,{keepLocalTime:n=!1,keepCalendarTime:s=!1}={}){if(e=de(e,A.defaultZone),e.equals(this.zone))return this;if(e.isValid){let r=this.ts;if(n||s){const i=e.offset(this.ts),o=this.toObject();[r]=Ot(o,i,e)}return Se(this,{ts:r,zone:e})}else return k.invalid(Ge(e))}reconfigure({locale:e,numberingSystem:n,outputCalendar:s}={}){const r=this.loc.clone({locale:e,numberingSystem:n,outputCalendar:s});return Se(this,{loc:r})}setLocale(e){return this.reconfigure({locale:e})}set(e){if(!this.isValid)return this;const n=Et(e,$r),{minDaysInFirstWeek:s,startOfWeek:r}=Gs(n,this.loc),i=!E(n.weekYear)||!E(n.weekNumber)||!E(n.weekday),o=!E(n.ordinal),a=!E(n.year),c=!E(n.month)||!E(n.day),l=a||c,f=n.weekYear||n.weekNumber;if((l||o)&&f)throw new Ne("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(c&&o)throw new Ne("Can't mix ordinal dates with month/day");let d;i?d=Ys({...mt(this.c,s,r),...n},s,r):E(n.ordinal)?(d={...this.toObject(),...n},E(n.day)&&(d.day=Math.min(yt(d.year,d.month),d.day))):d=Js({...on(this.c),...n});const[w,m]=Ot(d,this.o,this.zone);return Se(this,{ts:w,o:m})}plus(e){if(!this.isValid)return this;const n=O.fromDurationLike(e);return Se(this,Lr(this,n))}minus(e){if(!this.isValid)return this;const n=O.fromDurationLike(e).negate();return Se(this,Lr(this,n))}startOf(e,{useLocaleWeeks:n=!1}={}){if(!this.isValid)return this;const s={},r=O.normalizeUnit(e);switch(r){case"years":s.month=1;case"quarters":case"months":s.day=1;case"weeks":case"days":s.hour=0;case"hours":s.minute=0;case"minutes":s.second=0;case"seconds":s.millisecond=0;break}if(r==="weeks")if(n){const i=this.loc.getStartOfWeek(),{weekday:o}=this;o<i&&(s.weekNumber=this.weekNumber-1),s.weekday=i}else s.weekday=1;if(r==="quarters"){const i=Math.ceil(this.month/3);s.month=(i-1)*3+1}return this.set(s)}endOf(e,n){return this.isValid?this.plus({[e]:1}).startOf(e,n).minus(1):this}toFormat(e,n={}){return this.isValid?U.create(this.loc.redefaultToEN(n)).formatDateTimeFromString(this,e):pn}toLocaleString(e=lt,n={}){return this.isValid?U.create(this.loc.clone(n),e).formatDateTime(this):pn}toLocaleParts(e={}){return this.isValid?U.create(this.loc.clone(e),e).formatDateTimeParts(this):[]}toISO({format:e="extended",suppressSeconds:n=!1,suppressMilliseconds:s=!1,includeOffset:r=!0,extendedZone:i=!1}={}){if(!this.isValid)return null;const o=e==="extended";let a=wn(this,o);return a+="T",a+=Vr(this,o,n,s,r,i),a}toISODate({format:e="extended"}={}){return this.isValid?wn(this,e==="extended"):null}toISOWeekDate(){return Nt(this,"kkkk-'W'WW-c")}toISOTime({suppressMilliseconds:e=!1,suppressSeconds:n=!1,includeOffset:s=!0,includePrefix:r=!1,extendedZone:i=!1,format:o="extended"}={}){return this.isValid?(r?"T":"")+Vr(this,o==="extended",n,e,s,i):null}toRFC2822(){return Nt(this,"EEE, dd LLL yyyy HH:mm:ss ZZZ",!1)}toHTTP(){return Nt(this.toUTC(),"EEE, dd LLL yyyy HH:mm:ss 'GMT'")}toSQLDate(){return this.isValid?wn(this,!0):null}toSQLTime({includeOffset:e=!0,includeZone:n=!1,includeOffsetSpace:s=!0}={}){let r="HH:mm:ss.SSS";return(n||e)&&(s&&(r+=" "),n?r+="z":e&&(r+="ZZ")),Nt(this,r,!0)}toSQL(e={}){return this.isValid?`${this.toSQLDate()} ${this.toSQLTime(e)}`:null}toString(){return this.isValid?this.toISO():pn}[Symbol.for("nodejs.util.inspect.custom")](){return this.isValid?`DateTime { ts: ${this.toISO()}, zone: ${this.zone.name}, locale: ${this.locale} }`:`DateTime { Invalid, reason: ${this.invalidReason} }`}valueOf(){return this.toMillis()}toMillis(){return this.isValid?this.ts:NaN}toSeconds(){return this.isValid?this.ts/1e3:NaN}toUnixInteger(){return this.isValid?Math.floor(this.ts/1e3):NaN}toJSON(){return this.toISO()}toBSON(){return this.toJSDate()}toObject(e={}){if(!this.isValid)return{};const n={...this.c};return e.includeConfig&&(n.outputCalendar=this.outputCalendar,n.numberingSystem=this.loc.numberingSystem,n.locale=this.loc.locale),n}toJSDate(){return new Date(this.isValid?this.ts:NaN)}diff(e,n="milliseconds",s={}){if(!this.isValid||!e.isValid)return O.invalid("created by diffing an invalid DateTime");const r={locale:this.locale,numberingSystem:this.numberingSystem,...s},i=Ca(n).map(O.normalizeUnit),o=e.valueOf()>this.valueOf(),a=o?this:e,c=o?e:this,l=Ac(a,c,i,r);return o?l.negate():l}diffNow(e="milliseconds",n={}){return this.diff(k.now(),e,n)}until(e){return this.isValid?M.fromDateTimes(this,e):this}hasSame(e,n,s){if(!this.isValid)return!1;const r=e.valueOf(),i=this.setZone(e.zone,{keepLocalTime:!0});return i.startOf(n,s)<=r&&r<=i.endOf(n,s)}equals(e){return this.isValid&&e.isValid&&this.valueOf()===e.valueOf()&&this.zone.equals(e.zone)&&this.loc.equals(e.loc)}toRelative(e={}){if(!this.isValid)return null;const n=e.base||k.fromObject({},{zone:this.zone}),s=e.padding?this<n?-e.padding:e.padding:0;let r=["years","months","days","hours","minutes","seconds"],i=e.unit;return Array.isArray(e.unit)&&(r=e.unit,i=void 0),Pr(n,this.plus(s),{...e,numeric:"always",units:r,unit:i})}toRelativeCalendar(e={}){return this.isValid?Pr(e.base||k.fromObject({},{zone:this.zone}),this,{...e,numeric:"auto",units:["years","months","days"],calendary:!0}):null}static min(...e){if(!e.every(k.isDateTime))throw new $("min requires all arguments be DateTimes");return tr(e,n=>n.valueOf(),Math.min)}static max(...e){if(!e.every(k.isDateTime))throw new $("max requires all arguments be DateTimes");return tr(e,n=>n.valueOf(),Math.max)}static fromFormatExplain(e,n,s={}){const{locale:r=null,numberingSystem:i=null}=s,o=C.fromOpts({locale:r,numberingSystem:i,defaultToEN:!0});return Mr(o,e,n)}static fromStringExplain(e,n,s={}){return k.fromFormatExplain(e,n,s)}static buildFormatParser(e,n={}){const{locale:s=null,numberingSystem:r=null}=n,i=C.fromOpts({locale:s,numberingSystem:r,defaultToEN:!0});return new Ar(i,e)}static fromFormatParser(e,n,s={}){if(E(e)||E(n))throw new $("fromFormatParser requires an input string and a format parser");const{locale:r=null,numberingSystem:i=null}=s,o=C.fromOpts({locale:r,numberingSystem:i,defaultToEN:!0});if(!o.equals(n.locale))throw new $(`fromFormatParser called with a locale of ${o}, but the format parser was created for ${n.locale}`);const{result:a,zone:c,specificOffset:l,invalidReason:f}=n.explainFromTokens(e);return f?k.invalid(f):Ve(a,c,s,`format ${n.format}`,e,l)}static get DATE_SHORT(){return lt}static get DATE_MED(){return ms}static get DATE_MED_WITH_WEEKDAY(){return Xo}static get DATE_FULL(){return ps}static get DATE_HUGE(){return ys}static get TIME_SIMPLE(){return gs}static get TIME_WITH_SECONDS(){return ws}static get TIME_WITH_SHORT_OFFSET(){return Es}static get TIME_WITH_LONG_OFFSET(){return ks}static get TIME_24_SIMPLE(){return Ss}static get TIME_24_WITH_SECONDS(){return bs}static get TIME_24_WITH_SHORT_OFFSET(){return Ts}static get TIME_24_WITH_LONG_OFFSET(){return Os}static get DATETIME_SHORT(){return Ns}static get DATETIME_SHORT_WITH_SECONDS(){return Cs}static get DATETIME_MED(){return vs}static get DATETIME_MED_WITH_SECONDS(){return _s}static get DATETIME_MED_WITH_WEEKDAY(){return Qo}static get DATETIME_FULL(){return xs}static get DATETIME_FULL_WITH_SECONDS(){return As}static get DATETIME_HUGE(){return Ms}static get DATETIME_HUGE_WITH_SECONDS(){return Ds}}function Ke(t){if(k.isDateTime(t))return t;if(t&&t.valueOf&&me(t.valueOf()))return k.fromJSDate(t);if(t&&typeof t=="object")return k.fromObject(t);throw new $(`Unknown datetime argument: ${t}, of type ${typeof t}`)}const Jc={},Gc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},Kc=[u.createElementVNode("path",{fill:"rgb(248 113 113)",d:"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"},null,-1)];function Xc(t,e){return u.openBlock(),u.createElementBlock("svg",Gc,Kc)}const Qc=X(Jc,[["render",Xc]]),el={class:"messages-container-list"},tl={class:"message-container"},nl={key:0,class:"btn-container-widget"},sl=["onClick"],rl={class:"chat-message"},il={class:"message-text"},ol={class:"detail-message flex justify-content-between"},al={key:0,class:"mr-5"},cl={key:1,class:"mr-5"},ll=X(u.defineComponent({__name:"MessageList",props:{messages:{type:Array,default:()=>[]},canLoadMoreMessages:{type:Boolean,default:!1}},emits:["loadMore","retry"],setup(t,{emit:e}){const n=t,s=u.ref(),{pause:r,resume:i}=Yo(s,([{isIntersecting:o}])=>{o&&e("loadMore")});return u.onBeforeMount(()=>{n.canLoadMoreMessages||r()}),u.watch(()=>n.canLoadMoreMessages,o=>{if(o){i();return}r()}),(o,a)=>(u.openBlock(),u.createElementBlock(u.Fragment,null,[u.createElementVNode("div",{ref_key:"target",ref:s,class:"target"},null,512),u.createElementVNode("div",el,[(u.openBlock(!0),u.createElementBlock(u.Fragment,null,u.renderList(n.messages,c=>{var l,f;return u.openBlock(),u.createElementBlock("div",{key:c.id,class:u.normalizeClass(["message",c.esCliente?"message-right":"message-left"])},[u.createElementVNode("div",tl,[c.error&&c.esCliente?(u.openBlock(),u.createElementBlock("div",nl,[u.createElementVNode("button",{text:"",rounded:"",class:"btn-danger",icon:"fa-solid fa-circle-exclamation","aria-label":"Cancel",onClick:d=>e("retry",c)},[u.createVNode(Qc)],8,sl)])):u.createCommentVNode("",!0),u.createElementVNode("div",rl,[u.createElementVNode("div",{class:u.normalizeClass(["bubble",c.esCliente?"right":"left"])},[u.createElementVNode("div",{class:u.normalizeClass(c.esCliente?"content-right":"content-left")},[u.createElementVNode("div",il,u.toDisplayString(c.message),1),u.createElementVNode("div",ol,[(l=c.sender)!=null&&l.nombreCompleto?(u.openBlock(),u.createElementBlock("span",al,u.toDisplayString(c.esCliente?(f=c.sender)==null?void 0:f.nombreCompleto:"ECOSISTEMA JL"),1)):(u.openBlock(),u.createElementBlock("span",cl)),u.createElementVNode("span",null,u.toDisplayString(u.unref(k).fromISO(c.createdAt).toFormat("dd-MM-yyyy HH:mm")),1)])],2)],2)])])],2)}),128))])],64))}}),[["__scopeId","data-v-a9fc4a05"]]),ul={},qr=t=>(u.pushScopeId("data-v-d9a6b2b7"),t=t(),u.popScopeId(),t),fl={viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",style:{width:"28px",height:"28px"}},hl=[qr(()=>u.createElementVNode("path",{d:"M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z",opacity:".25"},null,-1)),qr(()=>u.createElementVNode("path",{d:"M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z",class:"spinner_ajPY"},null,-1))];function dl(t,e){return u.openBlock(),u.createElementBlock("svg",fl,hl)}const ml=X(ul,[["render",dl],["__scopeId","data-v-d9a6b2b7"]]);function pl(t,e,n){for(let s=t.length-1;s>=0;s--)if(t[s][e]===n)return s;return-1}const oe=Object.create(null);oe.open="0",oe.close="1",oe.ping="2",oe.pong="3",oe.message="4",oe.upgrade="5",oe.noop="6";const _t=Object.create(null);Object.keys(oe).forEach(t=>{_t[oe[t]]=t});const En={type:"error",data:"parser error"},Hr=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",zr=typeof ArrayBuffer=="function",Zr=t=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(t):t&&t.buffer instanceof ArrayBuffer,kn=({type:t,data:e},n,s)=>Hr&&e instanceof Blob?n?s(e):jr(e,s):zr&&(e instanceof ArrayBuffer||Zr(e))?n?s(e):jr(new Blob([e]),s):s(oe[t]+(e||"")),jr=(t,e)=>{const n=new FileReader;return n.onload=function(){const s=n.result.split(",")[1];e("b"+(s||""))},n.readAsDataURL(t)};function Yr(t){return t instanceof Uint8Array?t:t instanceof ArrayBuffer?new Uint8Array(t):new Uint8Array(t.buffer,t.byteOffset,t.byteLength)}let Sn;function yl(t,e){if(Hr&&t.data instanceof Blob)return t.data.arrayBuffer().then(Yr).then(e);if(zr&&(t.data instanceof ArrayBuffer||Zr(t.data)))return e(Yr(t.data));kn(t,!1,n=>{Sn||(Sn=new TextEncoder),e(Sn.encode(n))})}const Jr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Xe=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let t=0;t<Jr.length;t++)Xe[Jr.charCodeAt(t)]=t;const gl=t=>{let e=t.length*.75,n=t.length,s,r=0,i,o,a,c;t[t.length-1]==="="&&(e--,t[t.length-2]==="="&&e--);const l=new ArrayBuffer(e),f=new Uint8Array(l);for(s=0;s<n;s+=4)i=Xe[t.charCodeAt(s)],o=Xe[t.charCodeAt(s+1)],a=Xe[t.charCodeAt(s+2)],c=Xe[t.charCodeAt(s+3)],f[r++]=i<<2|o>>4,f[r++]=(o&15)<<4|a>>2,f[r++]=(a&3)<<6|c&63;return l},wl=typeof ArrayBuffer=="function",bn=(t,e)=>{if(typeof t!="string")return{type:"message",data:Gr(t,e)};const n=t.charAt(0);return n==="b"?{type:"message",data:El(t.substring(1),e)}:_t[n]?t.length>1?{type:_t[n],data:t.substring(1)}:{type:_t[n]}:En},El=(t,e)=>{if(wl){const n=gl(t);return Gr(n,e)}else return{base64:!0,data:t}},Gr=(t,e)=>{switch(e){case"blob":return t instanceof Blob?t:new Blob([t]);case"arraybuffer":default:return t instanceof ArrayBuffer?t:t.buffer}},Kr="",kl=(t,e)=>{const n=t.length,s=new Array(n);let r=0;t.forEach((i,o)=>{kn(i,!1,a=>{s[o]=a,++r===n&&e(s.join(Kr))})})},Sl=(t,e)=>{const n=t.split(Kr),s=[];for(let r=0;r<n.length;r++){const i=bn(n[r],e);if(s.push(i),i.type==="error")break}return s};function bl(){return new TransformStream({transform(t,e){yl(t,n=>{const s=n.length;let r;if(s<126)r=new Uint8Array(1),new DataView(r.buffer).setUint8(0,s);else if(s<65536){r=new Uint8Array(3);const i=new DataView(r.buffer);i.setUint8(0,126),i.setUint16(1,s)}else{r=new Uint8Array(9);const i=new DataView(r.buffer);i.setUint8(0,127),i.setBigUint64(1,BigInt(s))}t.data&&typeof t.data!="string"&&(r[0]|=128),e.enqueue(r),e.enqueue(n)})}})}let Tn;function xt(t){return t.reduce((e,n)=>e+n.length,0)}function At(t,e){if(t[0].length===e)return t.shift();const n=new Uint8Array(e);let s=0;for(let r=0;r<e;r++)n[r]=t[0][s++],s===t[0].length&&(t.shift(),s=0);return t.length&&s<t[0].length&&(t[0]=t[0].slice(s)),n}function Tl(t,e){Tn||(Tn=new TextDecoder);const n=[];let s=0,r=-1,i=!1;return new TransformStream({transform(o,a){for(n.push(o);;){if(s===0){if(xt(n)<1)break;const c=At(n,1);i=(c[0]&128)===128,r=c[0]&127,r<126?s=3:r===126?s=1:s=2}else if(s===1){if(xt(n)<2)break;const c=At(n,2);r=new DataView(c.buffer,c.byteOffset,c.length).getUint16(0),s=3}else if(s===2){if(xt(n)<8)break;const c=At(n,8),l=new DataView(c.buffer,c.byteOffset,c.length),f=l.getUint32(0);if(f>Math.pow(2,21)-1){a.enqueue(En);break}r=f*Math.pow(2,32)+l.getUint32(4),s=3}else{if(xt(n)<r)break;const c=At(n,r);a.enqueue(bn(i?c:Tn.decode(c),e)),s=0}if(r===0||r>t){a.enqueue(En);break}}}})}const Xr=4;function R(t){if(t)return Ol(t)}function Ol(t){for(var e in R.prototype)t[e]=R.prototype[e];return t}R.prototype.on=R.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},R.prototype.once=function(t,e){function n(){this.off(t,n),e.apply(this,arguments)}return n.fn=e,this.on(t,n),this},R.prototype.off=R.prototype.removeListener=R.prototype.removeAllListeners=R.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var n=this._callbacks["$"+t];if(!n)return this;if(arguments.length==1)return delete this._callbacks["$"+t],this;for(var s,r=0;r<n.length;r++)if(s=n[r],s===e||s.fn===e){n.splice(r,1);break}return n.length===0&&delete this._callbacks["$"+t],this},R.prototype.emit=function(t){this._callbacks=this._callbacks||{};for(var e=new Array(arguments.length-1),n=this._callbacks["$"+t],s=1;s<arguments.length;s++)e[s-1]=arguments[s];if(n){n=n.slice(0);for(var s=0,r=n.length;s<r;++s)n[s].apply(this,e)}return this},R.prototype.emitReserved=R.prototype.emit,R.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks["$"+t]||[]},R.prototype.hasListeners=function(t){return!!this.listeners(t).length};const G=typeof self<"u"?self:typeof window<"u"?window:Function("return this")();function Qr(t,...e){return e.reduce((n,s)=>(t.hasOwnProperty(s)&&(n[s]=t[s]),n),{})}const Nl=G.setTimeout,Cl=G.clearTimeout;function Mt(t,e){e.useNativeTimers?(t.setTimeoutFn=Nl.bind(G),t.clearTimeoutFn=Cl.bind(G)):(t.setTimeoutFn=G.setTimeout.bind(G),t.clearTimeoutFn=G.clearTimeout.bind(G))}const vl=1.33;function _l(t){return typeof t=="string"?xl(t):Math.ceil((t.byteLength||t.size)*vl)}function xl(t){let e=0,n=0;for(let s=0,r=t.length;s<r;s++)e=t.charCodeAt(s),e<128?n+=1:e<2048?n+=2:e<55296||e>=57344?n+=3:(s++,n+=4);return n}function Al(t){let e="";for(let n in t)t.hasOwnProperty(n)&&(e.length&&(e+="&"),e+=encodeURIComponent(n)+"="+encodeURIComponent(t[n]));return e}function Ml(t){let e={},n=t.split("&");for(let s=0,r=n.length;s<r;s++){let i=n[s].split("=");e[decodeURIComponent(i[0])]=decodeURIComponent(i[1])}return e}class Dl extends Error{constructor(e,n,s){super(e),this.description=n,this.context=s,this.type="TransportError"}}class On extends R{constructor(e){super(),this.writable=!1,Mt(this,e),this.opts=e,this.query=e.query,this.socket=e.socket}onError(e,n,s){return super.emitReserved("error",new Dl(e,n,s)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(e){this.readyState==="open"&&this.write(e)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(e){const n=bn(e,this.socket.binaryType);this.onPacket(n)}onPacket(e){super.emitReserved("packet",e)}onClose(e){this.readyState="closed",super.emitReserved("close",e)}pause(e){}createUri(e,n={}){return e+"://"+this._hostname()+this._port()+this.opts.path+this._query(n)}_hostname(){const e=this.opts.hostname;return e.indexOf(":")===-1?e:"["+e+"]"}_port(){return this.opts.port&&(this.opts.secure&&+(this.opts.port!==443)||!this.opts.secure&&Number(this.opts.port)!==80)?":"+this.opts.port:""}_query(e){const n=Al(e);return n.length?"?"+n:""}}const ei="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),Nn=64,Rl={};let ti=0,Dt=0,ni;function si(t){let e="";do e=ei[t%Nn]+e,t=Math.floor(t/Nn);while(t>0);return e}function ri(){const t=si(+new Date);return t!==ni?(ti=0,ni=t):t+"."+si(ti++)}for(;Dt<Nn;Dt++)Rl[ei[Dt]]=Dt;let ii=!1;try{ii=typeof XMLHttpRequest<"u"&&"withCredentials"in new XMLHttpRequest}catch{}const Il=ii;function oi(t){const e=t.xdomain;try{if(typeof XMLHttpRequest<"u"&&(!e||Il))return new XMLHttpRequest}catch{}if(!e)try{return new G[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP")}catch{}}function ef(){}function Ll(){}const Vl=function(){return new oi({xdomain:!1}).responseType!=null}();class Fl extends On{constructor(e){if(super(e),this.polling=!1,typeof location<"u"){const s=location.protocol==="https:";let r=location.port;r||(r=s?"443":"80"),this.xd=typeof location<"u"&&e.hostname!==location.hostname||r!==e.port}const n=e&&e.forceBase64;this.supportsBinary=Vl&&!n,this.opts.withCredentials&&(this.cookieJar=void 0)}get name(){return"polling"}doOpen(){this.poll()}pause(e){this.readyState="pausing";const n=()=>{this.readyState="paused",e()};if(this.polling||!this.writable){let s=0;this.polling&&(s++,this.once("pollComplete",function(){--s||n()})),this.writable||(s++,this.once("drain",function(){--s||n()}))}else n()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(e){const n=s=>{if(this.readyState==="opening"&&s.type==="open"&&this.onOpen(),s.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(s)};Sl(e,this.socket.binaryType).forEach(n),this.readyState!=="closed"&&(this.polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this.poll())}doClose(){const e=()=>{this.write([{type:"close"}])};this.readyState==="open"?e():this.once("open",e)}write(e){this.writable=!1,kl(e,n=>{this.doWrite(n,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){const e=this.opts.secure?"https":"http",n=this.query||{};return this.opts.timestampRequests!==!1&&(n[this.opts.timestampParam]=ri()),!this.supportsBinary&&!n.sid&&(n.b64=1),this.createUri(e,n)}request(e={}){return Object.assign(e,{xd:this.xd,cookieJar:this.cookieJar},this.opts),new ae(this.uri(),e)}doWrite(e,n){const s=this.request({method:"POST",data:e});s.on("success",n),s.on("error",(r,i)=>{this.onError("xhr post error",r,i)})}doPoll(){const e=this.request();e.on("data",this.onData.bind(this)),e.on("error",(n,s)=>{this.onError("xhr poll error",n,s)}),this.pollXhr=e}}class ae extends R{constructor(e,n){super(),Mt(this,n),this.opts=n,this.method=n.method||"GET",this.uri=e,this.data=n.data!==void 0?n.data:null,this.create()}create(){var e;const n=Qr(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");n.xdomain=!!this.opts.xd;const s=this.xhr=new oi(n);try{s.open(this.method,this.uri,!0);try{if(this.opts.extraHeaders){s.setDisableHeaderCheck&&s.setDisableHeaderCheck(!0);for(let r in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&s.setRequestHeader(r,this.opts.extraHeaders[r])}}catch{}if(this.method==="POST")try{s.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{s.setRequestHeader("Accept","*/*")}catch{}(e=this.opts.cookieJar)===null||e===void 0||e.addCookies(s),"withCredentials"in s&&(s.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(s.timeout=this.opts.requestTimeout),s.onreadystatechange=()=>{var r;s.readyState===3&&((r=this.opts.cookieJar)===null||r===void 0||r.parseCookies(s)),s.readyState===4&&(s.status===200||s.status===1223?this.onLoad():this.setTimeoutFn(()=>{this.onError(typeof s.status=="number"?s.status:0)},0))},s.send(this.data)}catch(r){this.setTimeoutFn(()=>{this.onError(r)},0);return}typeof document<"u"&&(this.index=ae.requestsCount++,ae.requests[this.index]=this)}onError(e){this.emitReserved("error",e,this.xhr),this.cleanup(!0)}cleanup(e){if(!(typeof this.xhr>"u"||this.xhr===null)){if(this.xhr.onreadystatechange=Ll,e)try{this.xhr.abort()}catch{}typeof document<"u"&&delete ae.requests[this.index],this.xhr=null}}onLoad(){const e=this.xhr.responseText;e!==null&&(this.emitReserved("data",e),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}if(ae.requestsCount=0,ae.requests={},typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",ai);else if(typeof addEventListener=="function"){const t="onpagehide"in G?"pagehide":"unload";addEventListener(t,ai,!1)}}function ai(){for(let t in ae.requests)ae.requests.hasOwnProperty(t)&&ae.requests[t].abort()}const Cn=typeof Promise=="function"&&typeof Promise.resolve=="function"?e=>Promise.resolve().then(e):(e,n)=>n(e,0),Rt=G.WebSocket||G.MozWebSocket,ci=!0,Bl="arraybuffer",li=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class $l extends On{constructor(e){super(e),this.supportsBinary=!e.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const e=this.uri(),n=this.opts.protocols,s=li?{}:Qr(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(s.headers=this.opts.extraHeaders);try{this.ws=ci&&!li?n?new Rt(e,n):new Rt(e):new Rt(e,n,s)}catch(r){return this.emitReserved("error",r)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=e=>this.onClose({description:"websocket connection closed",context:e}),this.ws.onmessage=e=>this.onData(e.data),this.ws.onerror=e=>this.onError("websocket error",e)}write(e){this.writable=!1;for(let n=0;n<e.length;n++){const s=e[n],r=n===e.length-1;kn(s,this.supportsBinary,i=>{const o={};try{ci&&this.ws.send(i)}catch{}r&&Cn(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.close(),this.ws=null)}uri(){const e=this.opts.secure?"wss":"ws",n=this.query||{};return this.opts.timestampRequests&&(n[this.opts.timestampParam]=ri()),this.supportsBinary||(n.b64=1),this.createUri(e,n)}check(){return!!Rt}}class Ul extends On{get name(){return"webtransport"}doOpen(){typeof WebTransport=="function"&&(this.transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name]),this.transport.closed.then(()=>{this.onClose()}).catch(e=>{this.onError("webtransport error",e)}),this.transport.ready.then(()=>{this.transport.createBidirectionalStream().then(e=>{const n=Tl(Number.MAX_SAFE_INTEGER,this.socket.binaryType),s=e.readable.pipeThrough(n).getReader(),r=bl();r.readable.pipeTo(e.writable),this.writer=r.writable.getWriter();const i=()=>{s.read().then(({done:a,value:c})=>{a||(this.onPacket(c),i())}).catch(a=>{})};i();const o={type:"open"};this.query.sid&&(o.data=`{"sid":"${this.query.sid}"}`),this.writer.write(o).then(()=>this.onOpen())})}))}write(e){this.writable=!1;for(let n=0;n<e.length;n++){const s=e[n],r=n===e.length-1;this.writer.write(s).then(()=>{r&&Cn(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var e;(e=this.transport)===null||e===void 0||e.close()}}const Pl={websocket:$l,webtransport:Ul,polling:Fl},Wl=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,ql=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function vn(t){const e=t,n=t.indexOf("["),s=t.indexOf("]");n!=-1&&s!=-1&&(t=t.substring(0,n)+t.substring(n,s).replace(/:/g,";")+t.substring(s,t.length));let r=Wl.exec(t||""),i={},o=14;for(;o--;)i[ql[o]]=r[o]||"";return n!=-1&&s!=-1&&(i.source=e,i.host=i.host.substring(1,i.host.length-1).replace(/;/g,":"),i.authority=i.authority.replace("[","").replace("]","").replace(/;/g,":"),i.ipv6uri=!0),i.pathNames=Hl(i,i.path),i.queryKey=zl(i,i.query),i}function Hl(t,e){const n=/\/{2,9}/g,s=e.replace(n,"/").split("/");return(e.slice(0,1)=="/"||e.length===0)&&s.splice(0,1),e.slice(-1)=="/"&&s.splice(s.length-1,1),s}function zl(t,e){const n={};return e.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(s,r,i){r&&(n[r]=i)}),n}let ui=class Be extends R{constructor(e,n={}){super(),this.binaryType=Bl,this.writeBuffer=[],e&&typeof e=="object"&&(n=e,e=null),e?(e=vn(e),n.hostname=e.host,n.secure=e.protocol==="https"||e.protocol==="wss",n.port=e.port,e.query&&(n.query=e.query)):n.host&&(n.hostname=vn(n.host).host),Mt(this,n),this.secure=n.secure!=null?n.secure:typeof location<"u"&&location.protocol==="https:",n.hostname&&!n.port&&(n.port=this.secure?"443":"80"),this.hostname=n.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=n.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=n.transports||["polling","websocket","webtransport"],this.writeBuffer=[],this.prevBufferLen=0,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},n),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query=="string"&&(this.opts.query=Ml(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,typeof addEventListener=="function"&&(this.opts.closeOnBeforeunload&&(this.beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this.beforeunloadEventListener,!1)),this.hostname!=="localhost"&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(e){const n=Object.assign({},this.opts.query);n.EIO=Xr,n.transport=e,this.id&&(n.sid=this.id);const s=Object.assign({},this.opts,{query:n,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[e]);return new Pl[e](s)}open(){let e;if(this.opts.rememberUpgrade&&Be.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1)e="websocket";else if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}else e=this.transports[0];this.readyState="opening";try{e=this.createTransport(e)}catch{this.transports.shift(),this.open();return}e.open(),this.setTransport(e)}setTransport(e){this.transport&&this.transport.removeAllListeners(),this.transport=e,e.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",n=>this.onClose("transport close",n))}probe(e){let n=this.createTransport(e),s=!1;Be.priorWebsocketSuccess=!1;const r=()=>{s||(n.send([{type:"ping",data:"probe"}]),n.once("packet",d=>{if(!s)if(d.type==="pong"&&d.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",n),!n)return;Be.priorWebsocketSuccess=n.name==="websocket",this.transport.pause(()=>{s||this.readyState!=="closed"&&(f(),this.setTransport(n),n.send([{type:"upgrade"}]),this.emitReserved("upgrade",n),n=null,this.upgrading=!1,this.flush())})}else{const w=new Error("probe error");w.transport=n.name,this.emitReserved("upgradeError",w)}}))};function i(){s||(s=!0,f(),n.close(),n=null)}const o=d=>{const w=new Error("probe error: "+d);w.transport=n.name,i(),this.emitReserved("upgradeError",w)};function a(){o("transport closed")}function c(){o("socket closed")}function l(d){n&&d.name!==n.name&&i()}const f=()=>{n.removeListener("open",r),n.removeListener("error",o),n.removeListener("close",a),this.off("close",c),this.off("upgrading",l)};n.once("open",r),n.once("error",o),n.once("close",a),this.once("close",c),this.once("upgrading",l),this.upgrades.indexOf("webtransport")!==-1&&e!=="webtransport"?this.setTimeoutFn(()=>{s||n.open()},200):n.open()}onOpen(){if(this.readyState="open",Be.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush(),this.readyState==="open"&&this.opts.upgrade){let e=0;const n=this.upgrades.length;for(;e<n;e++)this.probe(this.upgrades[e])}}onPacket(e){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")switch(this.emitReserved("packet",e),this.emitReserved("heartbeat"),this.resetPingTimeout(),e.type){case"open":this.onHandshake(JSON.parse(e.data));break;case"ping":this.sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong");break;case"error":const n=new Error("server error");n.code=e.data,this.onError(n);break;case"message":this.emitReserved("data",e.data),this.emitReserved("message",e.data);break}}onHandshake(e){this.emitReserved("handshake",e),this.id=e.sid,this.transport.query.sid=e.sid,this.upgrades=this.filterUpgrades(e.upgrades),this.pingInterval=e.pingInterval,this.pingTimeout=e.pingTimeout,this.maxPayload=e.maxPayload,this.onOpen(),this.readyState!=="closed"&&this.resetPingTimeout()}resetPingTimeout(){this.clearTimeoutFn(this.pingTimeoutTimer),this.pingTimeoutTimer=this.setTimeoutFn(()=>{this.onClose("ping timeout")},this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const e=this.getWritablePackets();this.transport.send(e),this.prevBufferLen=e.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let n=1;for(let s=0;s<this.writeBuffer.length;s++){const r=this.writeBuffer[s].data;if(r&&(n+=_l(r)),s>0&&n>this.maxPayload)return this.writeBuffer.slice(0,s);n+=2}return this.writeBuffer}write(e,n,s){return this.sendPacket("message",e,n,s),this}send(e,n,s){return this.sendPacket("message",e,n,s),this}sendPacket(e,n,s,r){if(typeof n=="function"&&(r=n,n=void 0),typeof s=="function"&&(r=s,s=null),this.readyState==="closing"||this.readyState==="closed")return;s=s||{},s.compress=s.compress!==!1;const i={type:e,data:n,options:s};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),r&&this.once("flush",r),this.flush()}close(){const e=()=>{this.onClose("forced close"),this.transport.close()},n=()=>{this.off("upgrade",n),this.off("upgradeError",n),e()},s=()=>{this.once("upgrade",n),this.once("upgradeError",n)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?s():e()}):this.upgrading?s():e()),this}onError(e){Be.priorWebsocketSuccess=!1,this.emitReserved("error",e),this.onClose("transport error",e)}onClose(e,n){(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")&&(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),typeof removeEventListener=="function"&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",e,n),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(e){const n=[];let s=0;const r=e.length;for(;s<r;s++)~this.transports.indexOf(e[s])&&n.push(e[s]);return n}};ui.protocol=Xr;function Zl(t,e="",n){let s=t;n=n||typeof location<"u"&&location,t==null&&(t=n.protocol+"//"+n.host),typeof t=="string"&&(t.charAt(0)==="/"&&(t.charAt(1)==="/"?t=n.protocol+t:t=n.host+t),/^(https?|wss?):\/\//.test(t)||(typeof n<"u"?t=n.protocol+"//"+t:t="https://"+t),s=vn(t)),s.port||(/^(http|ws)$/.test(s.protocol)?s.port="80":/^(http|ws)s$/.test(s.protocol)&&(s.port="443")),s.path=s.path||"/";const i=s.host.indexOf(":")!==-1?"["+s.host+"]":s.host;return s.id=s.protocol+"://"+i+":"+s.port+e,s.href=s.protocol+"://"+i+(n&&n.port===s.port?"":":"+s.port),s}const jl=typeof ArrayBuffer=="function",Yl=t=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(t):t.buffer instanceof ArrayBuffer,fi=Object.prototype.toString,Jl=typeof Blob=="function"||typeof Blob<"u"&&fi.call(Blob)==="[object BlobConstructor]",Gl=typeof File=="function"||typeof File<"u"&&fi.call(File)==="[object FileConstructor]";function _n(t){return jl&&(t instanceof ArrayBuffer||Yl(t))||Jl&&t instanceof Blob||Gl&&t instanceof File}function It(t,e){if(!t||typeof t!="object")return!1;if(Array.isArray(t)){for(let n=0,s=t.length;n<s;n++)if(It(t[n]))return!0;return!1}if(_n(t))return!0;if(t.toJSON&&typeof t.toJSON=="function"&&arguments.length===1)return It(t.toJSON(),!0);for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)&&It(t[n]))return!0;return!1}function Kl(t){const e=[],n=t.data,s=t;return s.data=xn(n,e),s.attachments=e.length,{packet:s,buffers:e}}function xn(t,e){if(!t)return t;if(_n(t)){const n={_placeholder:!0,num:e.length};return e.push(t),n}else if(Array.isArray(t)){const n=new Array(t.length);for(let s=0;s<t.length;s++)n[s]=xn(t[s],e);return n}else if(typeof t=="object"&&!(t instanceof Date)){const n={};for(const s in t)Object.prototype.hasOwnProperty.call(t,s)&&(n[s]=xn(t[s],e));return n}return t}function Xl(t,e){return t.data=An(t.data,e),delete t.attachments,t}function An(t,e){if(!t)return t;if(t&&t._placeholder===!0){if(typeof t.num=="number"&&t.num>=0&&t.num<e.length)return e[t.num];throw new Error("illegal attachments")}else if(Array.isArray(t))for(let n=0;n<t.length;n++)t[n]=An(t[n],e);else if(typeof t=="object")for(const n in t)Object.prototype.hasOwnProperty.call(t,n)&&(t[n]=An(t[n],e));return t}const Ql=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"],eu=5;var b;(function(t){t[t.CONNECT=0]="CONNECT",t[t.DISCONNECT=1]="DISCONNECT",t[t.EVENT=2]="EVENT",t[t.ACK=3]="ACK",t[t.CONNECT_ERROR=4]="CONNECT_ERROR",t[t.BINARY_EVENT=5]="BINARY_EVENT",t[t.BINARY_ACK=6]="BINARY_ACK"})(b||(b={}));class tu{constructor(e){this.replacer=e}encode(e){return(e.type===b.EVENT||e.type===b.ACK)&&It(e)?this.encodeAsBinary({type:e.type===b.EVENT?b.BINARY_EVENT:b.BINARY_ACK,nsp:e.nsp,data:e.data,id:e.id}):[this.encodeAsString(e)]}encodeAsString(e){let n=""+e.type;return(e.type===b.BINARY_EVENT||e.type===b.BINARY_ACK)&&(n+=e.attachments+"-"),e.nsp&&e.nsp!=="/"&&(n+=e.nsp+","),e.id!=null&&(n+=e.id),e.data!=null&&(n+=JSON.stringify(e.data,this.replacer)),n}encodeAsBinary(e){const n=Kl(e),s=this.encodeAsString(n.packet),r=n.buffers;return r.unshift(s),r}}function hi(t){return Object.prototype.toString.call(t)==="[object Object]"}class Mn extends R{constructor(e){super(),this.reviver=e}add(e){let n;if(typeof e=="string"){if(this.reconstructor)throw new Error("got plaintext data when reconstructing a packet");n=this.decodeString(e);const s=n.type===b.BINARY_EVENT;s||n.type===b.BINARY_ACK?(n.type=s?b.EVENT:b.ACK,this.reconstructor=new nu(n),n.attachments===0&&super.emitReserved("decoded",n)):super.emitReserved("decoded",n)}else if(_n(e)||e.base64)if(this.reconstructor)n=this.reconstructor.takeBinaryData(e),n&&(this.reconstructor=null,super.emitReserved("decoded",n));else throw new Error("got binary data when not reconstructing a packet");else throw new Error("Unknown type: "+e)}decodeString(e){let n=0;const s={type:Number(e.charAt(0))};if(b[s.type]===void 0)throw new Error("unknown packet type "+s.type);if(s.type===b.BINARY_EVENT||s.type===b.BINARY_ACK){const i=n+1;for(;e.charAt(++n)!=="-"&&n!=e.length;);const o=e.substring(i,n);if(o!=Number(o)||e.charAt(n)!=="-")throw new Error("Illegal attachments");s.attachments=Number(o)}if(e.charAt(n+1)==="/"){const i=n+1;for(;++n&&!(e.charAt(n)===","||n===e.length););s.nsp=e.substring(i,n)}else s.nsp="/";const r=e.charAt(n+1);if(r!==""&&Number(r)==r){const i=n+1;for(;++n;){const o=e.charAt(n);if(o==null||Number(o)!=o){--n;break}if(n===e.length)break}s.id=Number(e.substring(i,n+1))}if(e.charAt(++n)){const i=this.tryParse(e.substr(n));if(Mn.isPayloadValid(s.type,i))s.data=i;else throw new Error("invalid payload")}return s}tryParse(e){try{return JSON.parse(e,this.reviver)}catch{return!1}}static isPayloadValid(e,n){switch(e){case b.CONNECT:return hi(n);case b.DISCONNECT:return n===void 0;case b.CONNECT_ERROR:return typeof n=="string"||hi(n);case b.EVENT:case b.BINARY_EVENT:return Array.isArray(n)&&(typeof n[0]=="number"||typeof n[0]=="string"&&Ql.indexOf(n[0])===-1);case b.ACK:case b.BINARY_ACK:return Array.isArray(n)}}destroy(){this.reconstructor&&(this.reconstructor.finishedReconstruction(),this.reconstructor=null)}}class nu{constructor(e){this.packet=e,this.buffers=[],this.reconPack=e}takeBinaryData(e){if(this.buffers.push(e),this.buffers.length===this.reconPack.attachments){const n=Xl(this.reconPack,this.buffers);return this.finishedReconstruction(),n}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const su=Object.freeze(Object.defineProperty({__proto__:null,Decoder:Mn,Encoder:tu,get PacketType(){return b},protocol:eu},Symbol.toStringTag,{value:"Module"}));function se(t,e,n){return t.on(e,n),function(){t.off(e,n)}}const ru=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class di extends R{constructor(e,n,s){super(),this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=e,this.nsp=n,s&&s.auth&&(this.auth=s.auth),this._opts=Object.assign({},s),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const e=this.io;this.subs=[se(e,"open",this.onopen.bind(this)),se(e,"packet",this.onpacket.bind(this)),se(e,"error",this.onerror.bind(this)),se(e,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...e){return e.unshift("message"),this.emit.apply(this,e),this}emit(e,...n){if(ru.hasOwnProperty(e))throw new Error('"'+e.toString()+'" is a reserved event name');if(n.unshift(e),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(n),this;const s={type:b.EVENT,data:n};if(s.options={},s.options.compress=this.flags.compress!==!1,typeof n[n.length-1]=="function"){const o=this.ids++,a=n.pop();this._registerAckCallback(o,a),s.id=o}const r=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!r||!this.connected)||(this.connected?(this.notifyOutgoingListeners(s),this.packet(s)):this.sendBuffer.push(s)),this.flags={},this}_registerAckCallback(e,n){var s;const r=(s=this.flags.timeout)!==null&&s!==void 0?s:this._opts.ackTimeout;if(r===void 0){this.acks[e]=n;return}const i=this.io.setTimeoutFn(()=>{delete this.acks[e];for(let o=0;o<this.sendBuffer.length;o++)this.sendBuffer[o].id===e&&this.sendBuffer.splice(o,1);n.call(this,new Error("operation has timed out"))},r);this.acks[e]=(...o)=>{this.io.clearTimeoutFn(i),n.apply(this,[null,...o])}}emitWithAck(e,...n){const s=this.flags.timeout!==void 0||this._opts.ackTimeout!==void 0;return new Promise((r,i)=>{n.push((o,a)=>s?o?i(o):r(a):r(o)),this.emit(e,...n)})}_addToQueue(e){let n;typeof e[e.length-1]=="function"&&(n=e.pop());const s={id:this._queueSeq++,tryCount:0,pending:!1,args:e,flags:Object.assign({fromQueue:!0},this.flags)};e.push((r,...i)=>s!==this._queue[0]?void 0:(r!==null?s.tryCount>this._opts.retries&&(this._queue.shift(),n&&n(r)):(this._queue.shift(),n&&n(null,...i)),s.pending=!1,this._drainQueue())),this._queue.push(s),this._drainQueue()}_drainQueue(e=!1){if(!this.connected||this._queue.length===0)return;const n=this._queue[0];n.pending&&!e||(n.pending=!0,n.tryCount++,this.flags=n.flags,this.emit.apply(this,n.args))}packet(e){e.nsp=this.nsp,this.io._packet(e)}onopen(){typeof this.auth=="function"?this.auth(e=>{this._sendConnectPacket(e)}):this._sendConnectPacket(this.auth)}_sendConnectPacket(e){this.packet({type:b.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},e):e})}onerror(e){this.connected||this.emitReserved("connect_error",e)}onclose(e,n){this.connected=!1,delete this.id,this.emitReserved("disconnect",e,n)}onpacket(e){if(e.nsp===this.nsp)switch(e.type){case b.CONNECT:e.data&&e.data.sid?this.onconnect(e.data.sid,e.data.pid):this.emitReserved("connect_error",new 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 b.EVENT:case b.BINARY_EVENT:this.onevent(e);break;case b.ACK:case b.BINARY_ACK:this.onack(e);break;case b.DISCONNECT:this.ondisconnect();break;case b.CONNECT_ERROR:this.destroy();const s=new Error(e.data.message);s.data=e.data.data,this.emitReserved("connect_error",s);break}}onevent(e){const n=e.data||[];e.id!=null&&n.push(this.ack(e.id)),this.connected?this.emitEvent(n):this.receiveBuffer.push(Object.freeze(n))}emitEvent(e){if(this._anyListeners&&this._anyListeners.length){const n=this._anyListeners.slice();for(const s of n)s.apply(this,e)}super.emit.apply(this,e),this._pid&&e.length&&typeof e[e.length-1]=="string"&&(this._lastOffset=e[e.length-1])}ack(e){const n=this;let s=!1;return function(...r){s||(s=!0,n.packet({type:b.ACK,id:e,data:r}))}}onack(e){const n=this.acks[e.id];typeof n=="function"&&(n.apply(this,e.data),delete this.acks[e.id])}onconnect(e,n){this.id=e,this.recovered=n&&this._pid===n,this._pid=n,this.connected=!0,this.emitBuffered(),this.emitReserved("connect"),this._drainQueue(!0)}emitBuffered(){this.receiveBuffer.forEach(e=>this.emitEvent(e)),this.receiveBuffer=[],this.sendBuffer.forEach(e=>{this.notifyOutgoingListeners(e),this.packet(e)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(e=>e()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:b.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(e){return this.flags.compress=e,this}get volatile(){return this.flags.volatile=!0,this}timeout(e){return this.flags.timeout=e,this}onAny(e){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(e),this}prependAny(e){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(e),this}offAny(e){if(!this._anyListeners)return this;if(e){const n=this._anyListeners;for(let s=0;s<n.length;s++)if(e===n[s])return n.splice(s,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing(e){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push(e),this}prependAnyOutgoing(e){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift(e),this}offAnyOutgoing(e){if(!this._anyOutgoingListeners)return this;if(e){const n=this._anyOutgoingListeners;for(let s=0;s<n.length;s++)if(e===n[s])return n.splice(s,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners(e){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){const n=this._anyOutgoingListeners.slice();for(const s of n)s.apply(this,e.data)}}}function Fe(t){t=t||{},this.ms=t.min||100,this.max=t.max||1e4,this.factor=t.factor||2,this.jitter=t.jitter>0&&t.jitter<=1?t.jitter:0,this.attempts=0}Fe.prototype.duration=function(){var t=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),n=Math.floor(e*this.jitter*t);t=Math.floor(e*10)&1?t+n:t-n}return Math.min(t,this.max)|0},Fe.prototype.reset=function(){this.attempts=0},Fe.prototype.setMin=function(t){this.ms=t},Fe.prototype.setMax=function(t){this.max=t},Fe.prototype.setJitter=function(t){this.jitter=t};class Dn extends R{constructor(e,n){var s;super(),this.nsps={},this.subs=[],e&&typeof e=="object"&&(n=e,e=void 0),n=n||{},n.path=n.path||"/socket.io",this.opts=n,Mt(this,n),this.reconnection(n.reconnection!==!1),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor((s=n.randomizationFactor)!==null&&s!==void 0?s:.5),this.backoff=new Fe({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(n.timeout==null?2e4:n.timeout),this._readyState="closed",this.uri=e;const r=n.parser||su;this.encoder=new r.Encoder,this.decoder=new r.Decoder,this._autoConnect=n.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(e){return arguments.length?(this._reconnection=!!e,this):this._reconnection}reconnectionAttempts(e){return e===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=e,this)}reconnectionDelay(e){var n;return e===void 0?this._reconnectionDelay:(this._reconnectionDelay=e,(n=this.backoff)===null||n===void 0||n.setMin(e),this)}randomizationFactor(e){var n;return e===void 0?this._randomizationFactor:(this._randomizationFactor=e,(n=this.backoff)===null||n===void 0||n.setJitter(e),this)}reconnectionDelayMax(e){var n;return e===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=e,(n=this.backoff)===null||n===void 0||n.setMax(e),this)}timeout(e){return arguments.length?(this._timeout=e,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(e){if(~this._readyState.indexOf("open"))return this;this.engine=new ui(this.uri,this.opts);const n=this.engine,s=this;this._readyState="opening",this.skipReconnect=!1;const r=se(n,"open",function(){s.onopen(),e&&e()}),i=a=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",a),e?e(a):this.maybeReconnectOnOpen()},o=se(n,"error",i);if(this._timeout!==!1){const a=this._timeout,c=this.setTimeoutFn(()=>{r(),i(new Error("timeout")),n.close()},a);this.opts.autoUnref&&c.unref(),this.subs.push(()=>{this.clearTimeoutFn(c)})}return this.subs.push(r),this.subs.push(o),this}connect(e){return this.open(e)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const e=this.engine;this.subs.push(se(e,"ping",this.onping.bind(this)),se(e,"data",this.ondata.bind(this)),se(e,"error",this.onerror.bind(this)),se(e,"close",this.onclose.bind(this)),se(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(e){try{this.decoder.add(e)}catch(n){this.onclose("parse error",n)}}ondecoded(e){Cn(()=>{this.emitReserved("packet",e)},this.setTimeoutFn)}onerror(e){this.emitReserved("error",e)}socket(e,n){let s=this.nsps[e];return s?this._autoConnect&&!s.active&&s.connect():(s=new di(this,e,n),this.nsps[e]=s),s}_destroy(e){const n=Object.keys(this.nsps);for(const s of n)if(this.nsps[s].active)return;this._close()}_packet(e){const n=this.encoder.encode(e);for(let s=0;s<n.length;s++)this.engine.write(n[s],e.options)}cleanup(){this.subs.forEach(e=>e()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(e,n){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",e,n),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const e=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const n=this.backoff.duration();this._reconnecting=!0;const s=this.setTimeoutFn(()=>{e.skipReconnect||(this.emitReserved("reconnect_attempt",e.backoff.attempts),!e.skipReconnect&&e.open(r=>{r?(e._reconnecting=!1,e.reconnect(),this.emitReserved("reconnect_error",r)):e.onreconnect()}))},n);this.opts.autoUnref&&s.unref(),this.subs.push(()=>{this.clearTimeoutFn(s)})}}onreconnect(){const e=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",e)}}const Qe={};function Lt(t,e){typeof t=="object"&&(e=t,t=void 0),e=e||{};const n=Zl(t,e.path||"/socket.io"),s=n.source,r=n.id,i=n.path,o=Qe[r]&&i in Qe[r].nsps,a=e.forceNew||e["force new connection"]||e.multiplex===!1||o;let c;return a?c=new Dn(s,e):(Qe[r]||(Qe[r]=new Dn(s,e)),c=Qe[r]),n.query&&!e.query&&(e.query=n.queryKey),c.socket(n.path,e)}Object.assign(Lt,{Manager:Dn,Socket:di,io:Lt,connect:Lt});var mi=(t=>(t.WEBCHAT="webchat",t.CENTRAL="central",t.WHATSAPP="whatsapp",t.TELEGRAM="telegram",t.SMS="sms",t))(mi||{});const iu={class:"widget"},ou={class:"header-widget"},au={class:"title-chat"},cu={key:0,class:"loader"},lu={class:"w-full"},uu=["onSubmit"],fu={class:"form-message"},hu={class:"jl-inputgroup-chat"},du=["onKeyup"],mu={type:"submit",class:"pointer btn-primary"},pu=14,yu=X(u.defineComponent({__name:"Chat",props:{titlePrincipal:{type:String,default:"Comunicación en linea para consultas"},toggleChat:{type:Function,required:!0},tokenAuth:{type:String,required:!0},user:{type:Object,required:!0},visible:{type:Boolean,required:!0}},emits:["show-toast","show-confirm","new-message","clear-new-messages","not-viewed-total"],setup(t,{emit:e}){const n=t,s=u.ref(""),r=u.ref(0),i=u.ref({data:[],canLoadMoreMessages:!1}),o=u.ref(""),a=u.ref(!1),c=u.ref(null);u.watch(()=>n.visible,async S=>{if(!S||(e("clear-new-messages"),m(),r.value>0&&fs(o.value,n.tokenAuth),o.value))return;const _=await us(n.tokenAuth);_&&(o.value=_.appChat.id)});const l=async S=>{var H;if(((H=s.value)==null?void 0:H.length)>300){e("show-toast",{severity:"warn",summary:"Error",detail:"El mensaje no puede superar los 300 caracteres",life:5e3});return}if(!s.value.trim()){e("show-toast",{severity:"warn",summary:"Error",detail:"Por favor ingrese un mensaje",life:5e3});return}const _={id:wi(),message:s.value,visto:!0,multimedia:!1,esCliente:!0,appChatId:o.value,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString(),sender:{nombreCompleto:n.user.nombreCompleto,ci:n.user.ci,msPersonaId:n.user.msPersonaId}},B=i.value.data.push(_)-1;f(s.value,o.value).then(V=>{var W;V?(i.value.data[B]=V,v.value.emit("sendMessage",{roomId:(W=I==null?void 0:I.value)==null?void 0:W.appChat.id,message:V},K=>{console.log("🚀 ~ socketService.value.emit ~ response:",K)})):(i.value.data[B].error={error:!0,id:_.id},e("show-toast",{severity:"error",summary:"Error",detail:"Ocurrio un error al enviar el mensaje, intente nuevamente",life:5e3}))}),s.value="",m(),g.value&&(g.value.style.height="20px")},f=async(S,_)=>Po({esCliente:!0,message:S,appChatId:_},n.tokenAuth),d=async()=>{var H,V,W;const S=(H=i.value.data[0])==null?void 0:H.id,_={lastMessagesId:S,appChatId:o.value,limit:10};a.value=!0;const B=await Uo({body:_,token:n.tokenAuth});a.value=!1,i.value.data.unshift(...B.data.sort((K,Rn)=>-Rn.createdAt.localeCompare(K.createdAt))),i.value.canLoadMoreMessages=B.pagination.total>B.pagination.size,S&&((V=c.value)!=null&&V.scrollHeight)&&p((W=c.value)==null?void 0:W.scrollHeight),S||m()},w=async S=>{e("show-confirm",async()=>{var B,H;if(!((B=S.error)!=null&&B.id))return;const _=await f(S.message,o.value);if(!_)e("show-toast",{severity:"error",summary:"Error",detail:"Ocurrio un error al enviar el mensaje, intente nuevamente",life:5e3});else{const V=pl(i.value.data,"id",S.error.id);i.value.data[V]={..._,error:void 0},v.value.emit("sendMessage",{roomId:(H=I==null?void 0:I.value)==null?void 0:H.appChat.id,message:S})}m()})},m=()=>{u.nextTick(()=>{c.value&&(c.value.scrollTop=c.value.scrollHeight)})},p=S=>{u.nextTick(()=>{const _=c.value;_&&(_.scrollTop=_.scrollHeight-S)})},g=u.ref();function x(){g.value&&(g.value.style.height=g.value.scrollHeight-pu+"px",g.value.scrollHeight!==g.value.clientHeight&&(g.value.style.height=g.value.scrollHeight+"px"))}const v=u.ref(),I=u.ref();function le(S,_=mi.WEBCHAT){var B,H;if(!S)throw new Error("user chat is required");v.value=Lt(window.VITE_SOCKET_URI,{query:{usuarioId:`${(H=(B=S==null?void 0:S.chat)==null?void 0:B.persona)==null?void 0:H.funcionarioId}`,aplicacion:_},extraHeaders:{Authorization:n.tokenAuth}}),v.value.on("connect",()=>{var V;console.log("Conectado al servidor de sockets"),v.value.emit("joinRoom",`${(V=S==null?void 0:S.appChat)==null?void 0:V.id}`)}),v.value.on("disconnect",()=>{console.log("Desconectado del servidor de sockets")}),v.value.on("receiveMessage",V=>{var W,K;console.log("Mensaje recibido:",V.message,S),V.message.sender.msPersonaId!==((K=(W=S==null?void 0:S.chat)==null?void 0:W.persona)==null?void 0:K.msPersonaId)&&(i.value.data.push(V.message),fs(V.message.appChatId,n.tokenAuth),m())})}return u.onMounted(async()=>{if(o.value)return;const S=await us(n.tokenAuth);S&&(I.value=S,o.value=S.appChat.id,r.value=S.appChat.totalNoVistosCliente,le(S),d(),e("not-viewed-total",S.appChat.totalNoVistosCliente))}),u.onUnmounted(()=>{v.value.off()}),(S,_)=>(u.openBlock(),u.createElementBlock("div",iu,[u.createElementVNode("div",ou,[u.createElementVNode("h4",au,u.toDisplayString(t.titlePrincipal),1),u.createElementVNode("button",{onClick:_[0]||(_[0]=()=>t.toggleChat()),class:"btn-close"},[u.createVNode(Ti,{class:"pointer"})])]),u.createElementVNode("div",{class:"messages-container",ref_key:"messageContainerRef",ref:c},[a.value?(u.openBlock(),u.createElementBlock("div",cu,[u.createVNode(ml)])):u.createCommentVNode("",!0),u.createVNode(ll,{messages:i.value.data,canLoadMoreMessages:i.value.canLoadMoreMessages,onLoadMore:d,onRetry:w},null,8,["messages","canLoadMoreMessages"])],512),u.createElementVNode("div",lu,[u.createElementVNode("form",{class:"message-send",onSubmit:u.withModifiers(l,["prevent"])},[u.createElementVNode("div",fu,[u.createElementVNode("div",hu,[u.withDirectives(u.createElementVNode("textarea",{"onUpdate:modelValue":_[1]||(_[1]=B=>s.value=B),class:"jl2-input-chat",required:"",ref_key:"textAreaRef",ref:g,onInput:_[2]||(_[2]=()=>x()),onKeydown:_[3]||(_[3]=u.withKeys(u.withModifiers(()=>{},["prevent"]),["enter"])),onKeyup:u.withKeys(u.withModifiers(l,["prevent"]),["enter"])},null,40,du),[[u.vModelText,s.value]]),u.createElementVNode("button",mu,[u.createVNode(_i,{style:{width:"20px",height:"20px"}})])])])],40,uu)])]))}}),[["__scopeId","data-v-a9ff4a6e"]]),gu={},wu={width:"87",height:"87",viewBox:"0 0 87 87",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Eu=[u.createStaticVNode('<g filter="url(#filter0_d_4007_3488)"><path d="M43.5 77C64.2107 77 81 60.2107 81 39.5C81 18.7893 64.2107 2 43.5 2C22.7893 2 6 18.7893 6 39.5C6 60.2107 22.7893 77 43.5 77Z" fill="white" stroke="#F28B0C" stroke-width="3" stroke-miterlimit="10"></path><path d="M39.705 38.885C40.6908 38.885 41.49 38.0858 41.49 37.1C41.49 36.1142 40.6908 35.315 39.705 35.315C38.7192 35.315 37.92 36.1142 37.92 37.1C37.92 38.0858 38.7192 38.885 39.705 38.885Z" fill="#F28B0C"></path><path d="M45.075 38.885C46.0608 38.885 46.86 38.0858 46.86 37.1C46.86 36.1142 46.0608 35.315 45.075 35.315C44.0892 35.315 43.29 36.1142 43.29 37.1C43.29 38.0858 44.0892 38.885 45.075 38.885Z" fill="#F28B0C"></path><path d="M50.445 38.885C51.4308 38.885 52.23 38.0858 52.23 37.1C52.23 36.1142 51.4308 35.315 50.445 35.315C49.4592 35.315 48.66 36.1142 48.66 37.1C48.66 38.0858 49.4592 38.885 50.445 38.885Z" fill="#F28B0C"></path><path d="M63.27 58.235L58.755 47.78C61.125 44.765 62.415 40.97 62.415 37.175C62.415 26.435 52.665 18.185 41.925 20.12C39.99 19.325 37.98 18.905 35.835 18.905C26.955 18.905 19.785 26.135 19.785 34.955C19.785 38.54 21 41.975 23.145 44.765L18.99 54.44C18.84 54.8 18.915 55.235 19.2 55.445C19.485 55.73 19.92 55.73 20.205 55.595L30.6 50.15C31.89 50.585 33.255 50.87 34.68 50.945C39.48 54.53 45.57 55.25 50.655 53.45L61.905 59.33C62.265 59.48 62.625 59.48 62.91 59.18C63.345 58.97 63.405 58.61 63.27 58.25V58.235ZM51.24 51.71C51.03 51.56 50.745 51.56 50.52 51.635C48.795 52.28 46.935 52.64 45.15 52.64C36.69 52.64 29.61 45.755 29.61 37.1C29.61 29.72 34.845 23.345 42.075 21.845C51.75 19.91 60.705 27.29 60.705 37.1C60.705 40.685 59.415 44.27 57.12 46.985C56.91 47.27 56.835 47.63 56.97 47.915L60.69 56.585L51.24 51.71Z" fill="#F28B0C"></path></g><defs><filter id="filter0_d_4007_3488" x="0.5" y="0.5" width="86" height="86" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="2"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4007_3488"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4007_3488" result="shape"></feBlend></filter></defs>',2)];function ku(t,e){return u.openBlock(),u.createElementBlock("svg",wu,Eu)}const Su=X(gu,[["render",ku]]),bu={},Tu={viewBox:"0 0 256 256",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",preserveAspectRatio:"xMidYMid"},Ou=[u.createElementVNode("g",null,[u.createElementVNode("path",{d:"M128,0 C57.307,0 0,57.307 0,128 L0,128 C0,198.693 57.307,256 128,256 L128,256 C198.693,256 256,198.693 256,128 L256,128 C256,57.307 198.693,0 128,0 L128,0 Z",fill:"#40B3E0"}),u.createElementVNode("path",{d:"M190.2826,73.6308 L167.4206,188.8978 C167.4206,188.8978 164.2236,196.8918 155.4306,193.0548 L102.6726,152.6068 L83.4886,143.3348 L51.1946,132.4628 C51.1946,132.4628 46.2386,130.7048 45.7586,126.8678 C45.2796,123.0308 51.3546,120.9528 51.3546,120.9528 L179.7306,70.5928 C179.7306,70.5928 190.2826,65.9568 190.2826,73.6308",fill:"#FFFFFF"}),u.createElementVNode("path",{d:"M98.6178,187.6035 C98.6178,187.6035 97.0778,187.4595 95.1588,181.3835 C93.2408,175.3085 83.4888,143.3345 83.4888,143.3345 L161.0258,94.0945 C161.0258,94.0945 165.5028,91.3765 165.3428,94.0945 C165.3428,94.0945 166.1418,94.5735 163.7438,96.8115 C161.3458,99.0505 102.8328,151.6475 102.8328,151.6475",fill:"#D2E5F1"}),u.createElementVNode("path",{d:"M122.9015,168.1154 L102.0335,187.1414 C102.0335,187.1414 100.4025,188.3794 98.6175,187.6034 L102.6135,152.2624",fill:"#B5CFE4"})],-1)];function Nu(t,e){return u.openBlock(),u.createElementBlock("svg",Tu,Ou)}const Cu=X(bu,[["render",Nu]]),vu={},_u={version:"1.1",id:"Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 455.731 455.731","xml:space":"preserve"},xu=[u.createElementVNode("g",null,[u.createElementVNode("rect",{x:"0",y:"0",style:{fill:"#1bd741"},width:"455.731",height:"455.731"}),u.createElementVNode("g",null,[u.createElementVNode("path",{style:{fill:"#ffffff"},d:`M68.494,387.41l22.323-79.284c-14.355-24.387-21.913-52.134-21.913-80.638
6
4
  c0-87.765,71.402-159.167,159.167-159.167s159.166,71.402,159.166,159.167c0,87.765-71.401,159.167-159.166,159.167
7
5
  c-27.347,0-54.125-7-77.814-20.292L68.494,387.41z M154.437,337.406l4.872,2.975c20.654,12.609,44.432,19.274,68.762,19.274
8
6
  c72.877,0,132.166-59.29,132.166-132.167S300.948,95.321,228.071,95.321S95.904,154.611,95.904,227.488
@@ -11,7 +9,7 @@
11
9
  c15.575,4.404,27.827,1.435,37.28-4.612c7.487-4.789,12.648-12.476,14.508-21.166l1.649-7.702c0.524-2.448-0.719-4.932-2.993-5.98
12
10
  l-34.905-16.089c-2.266-1.044-4.953-0.384-6.477,1.591l-13.703,17.764c-1.035,1.342-2.807,1.874-4.407,1.312
13
11
  c-9.384-3.298-40.818-16.463-58.066-49.687c-0.748-1.441-0.562-3.19,0.499-4.419l13.096-15.15
14
- c1.338-1.547,1.676-3.722,0.872-5.602l-15.046-35.201C187.187,154.774,185.392,153.518,183.359,153.407z`})])],-1)];function nl(t,e){return u.openBlock(),u.createElementBlock("svg",el,tl)}const sl=G(Xc,[["render",nl]]),rl={},il={version:"1.1",id:"Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"-10 -10 78 78","xml:space":"preserve"},ol=[u.createElementVNode("g",null,[u.createElementVNode("path",{style:{fill:"orange"},d:`M29,1.5c-16.016,0-29,11.641-29,26c0,5.292,1.768,10.211,4.796,14.318
12
+ c1.338-1.547,1.676-3.722,0.872-5.602l-15.046-35.201C187.187,154.774,185.392,153.518,183.359,153.407z`})])],-1)];function Au(t,e){return u.openBlock(),u.createElementBlock("svg",_u,xu)}const Mu=X(vu,[["render",Au]]),Du={},Ru={version:"1.1",id:"Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"-10 -10 78 78","xml:space":"preserve"},Iu=[u.createElementVNode("g",null,[u.createElementVNode("path",{style:{fill:"orange"},d:`M29,1.5c-16.016,0-29,11.641-29,26c0,5.292,1.768,10.211,4.796,14.318
15
13
  C4.398,46.563,3.254,53.246,0,56.5c0,0,9.943-1.395,16.677-5.462c0.007,0.003,0.015,0.006,0.022,0.009
16
14
  c2.764-1.801,5.532-3.656,6.105-4.126c0.3-0.421,0.879-0.548,1.33-0.277c0.296,0.178,0.483,0.503,0.489,0.848
17
- c0.01,0.622-0.005,0.784-5.585,4.421C22.146,52.933,25.498,53.5,29,53.5c16.016,0,29-11.641,29-26S45.016,1.5,29,1.5z`}),u.createElementVNode("circle",{style:{fill:"#ffffff"},cx:"15",cy:"27.5",r:"3"}),u.createElementVNode("circle",{style:{fill:"#ffffff"},cx:"29",cy:"27.5",r:"3"}),u.createElementVNode("circle",{style:{fill:"#ffffff"},cx:"43",cy:"27.5",r:"3"})],-1)];function al(t,e){return u.openBlock(),u.createElementBlock("svg",il,ol)}const cl=G(rl,[["render",al]]),ll={id:"chat-circle",class:"widget-container"},ul={key:0,class:"new-message-badge"},dl={class:"chat-box"},hl=G(u.defineComponent({__name:"Widget",props:{tokenAuth:{type:String,required:!0},titlePrincipal:{type:String},user:{type:Object,required:!0},isDarkMode:{type:Boolean,default:!1}},emits:["show-toast","show-confirm"],setup(t,{emit:e}){const n=t;function s(c){const l=window.VITE_CELLPHONE_NUMBERS.split(",");if(l.length===0){console.warn("not found cellphone numbers");return}o.value=!1;const d=Math.floor(Math.random()*l.length);if(c===0){window.open("https://wa.me/"+l[d],"WhatsApp","noopener");return}window.open("https://t.me/+"+l[d],"Telegram","noopener")}const r=u.ref(!1),i=u.ref(0),o=u.ref(!1),a=()=>{r.value=!r.value};return(c,l)=>(u.openBlock(),u.createElementBlock("div",{class:u.normalizeClass(["widget-css-reset widget-container",t.isDarkMode?"chat-dark-mode":""])},[u.withDirectives(u.createElementVNode("div",ll,[u.createElementVNode("div",{class:u.normalizeClass(["container-buttons-chat",{active:o.value}])},[u.createElementVNode("a",{href:"javascript:;",class:"button whatsapp",onClick:l[0]||(l[0]=d=>s(0))},[u.createVNode(sl)]),u.createElementVNode("a",{href:"javascript:;",class:"button telegram",onClick:l[1]||(l[1]=d=>s(1))},[u.createVNode(Qc)]),u.createElementVNode("a",{href:"javascript:;",class:u.normalizeClass(["button webchat",{disabled:n.tokenAuth.length<10}]),title:"Debe estar autenticado",onClick:l[2]||(l[2]=d=>o.value&&n.tokenAuth.length>10&&a())},[u.createVNode(cl)],2)],2),i.value?(u.openBlock(),u.createElementBlock("div",ul,u.toDisplayString(i.value>9?"9+":i.value),1)):u.createCommentVNode("",!0),u.createElementVNode("a",{href:"javascript:;",onClick:l[3]||(l[3]=d=>o.value=!o.value)},[u.createVNode(jc)])],512),[[u.vShow,!r.value]]),u.withDirectives(u.createElementVNode("div",dl,[u.createVNode(Hc,{visible:r.value,titlePrincipal:t.titlePrincipal,toggleChat:a,tokenAuth:t.tokenAuth,user:t.user,onShowToast:l[4]||(l[4]=d=>e("show-toast",d)),onShowConfirm:l[5]||(l[5]=d=>e("show-confirm",d)),onClearNewMessages:l[6]||(l[6]=d=>i.value=0),onNewMessage:l[7]||(l[7]=()=>i.value++),onNotViewedTotal:l[8]||(l[8]=d=>i.value=d)},null,8,["visible","titlePrincipal","tokenAuth","user"])],512),[[u.vShow,r.value]])],2))}}),[["__scopeId","data-v-dcfa29e9"]]),fl={install(t,e){window.VITE_BACKEND_URL=e.VITE_BACKEND_URL,window.VITE_BROKER_URL=e.VITE_BROKER_URL,window.VITE_USERNAME=e.VITE_USERNAME,window.VITE_PASSWORD=e.VITE_PASSWORD,window.VITE_CELLPHONE_NUMBERS=e.VITE_CELLPHONE_NUMBERS??""}};re.Widget=hl,re.default=fl,Object.defineProperties(re,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
15
+ c0.01,0.622-0.005,0.784-5.585,4.421C22.146,52.933,25.498,53.5,29,53.5c16.016,0,29-11.641,29-26S45.016,1.5,29,1.5z`}),u.createElementVNode("circle",{style:{fill:"#ffffff"},cx:"15",cy:"27.5",r:"3"}),u.createElementVNode("circle",{style:{fill:"#ffffff"},cx:"29",cy:"27.5",r:"3"}),u.createElementVNode("circle",{style:{fill:"#ffffff"},cx:"43",cy:"27.5",r:"3"})],-1)];function Lu(t,e){return u.openBlock(),u.createElementBlock("svg",Ru,Iu)}const Vu=X(Du,[["render",Lu]]),Fu={id:"chat-circle",class:"widget-container"},Bu={key:0,class:"new-message-badge"},$u={class:"chat-box"},Uu=X(u.defineComponent({__name:"Widget",props:{tokenAuth:{type:String,required:!0},titlePrincipal:{type:String},user:{type:Object,required:!0},isDarkMode:{type:Boolean,default:!1}},emits:["show-toast","show-confirm"],setup(t,{emit:e}){const n=t;function s(c){var d;const l=((d=window.VITE_CELLPHONE_NUMBERS)==null?void 0:d.split(","))??[];if(l.length===0){console.warn("not found cellphone numbers");return}o.value=!1;const f=Math.floor(Math.random()*l.length);if(c===0){window.open("https://wa.me/"+l[f],"WhatsApp","noopener");return}window.open("https://t.me/+"+l[f],"Telegram","noopener")}const r=u.ref(!1),i=u.ref(0),o=u.ref(!1),a=()=>{r.value=!r.value};return(c,l)=>(u.openBlock(),u.createElementBlock("div",{class:u.normalizeClass(["widget-css-reset widget-container",t.isDarkMode?"chat-dark-mode":""])},[u.withDirectives(u.createElementVNode("div",Fu,[u.createElementVNode("div",{class:u.normalizeClass(["container-buttons-chat",{active:o.value}])},[u.createElementVNode("a",{href:"javascript:;",class:"button whatsapp",onClick:l[0]||(l[0]=f=>s(0))},[u.createVNode(Mu)]),u.createElementVNode("a",{href:"javascript:;",class:"button telegram",onClick:l[1]||(l[1]=f=>s(1))},[u.createVNode(Cu)]),u.createElementVNode("a",{href:"javascript:;",class:u.normalizeClass(["button webchat",{disabled:n.tokenAuth.length<10}]),title:"Debe estar autenticado",onClick:l[2]||(l[2]=f=>o.value&&n.tokenAuth.length>10&&a())},[u.createVNode(Vu)],2)],2),i.value?(u.openBlock(),u.createElementBlock("div",Bu,u.toDisplayString(i.value>9?"9+":i.value),1)):u.createCommentVNode("",!0),u.createElementVNode("a",{href:"javascript:;",onClick:l[3]||(l[3]=f=>o.value=!o.value)},[u.createVNode(Su)])],512),[[u.vShow,!r.value]]),u.withDirectives(u.createElementVNode("div",$u,[u.createVNode(yu,{visible:r.value,titlePrincipal:t.titlePrincipal,toggleChat:a,tokenAuth:t.tokenAuth,user:t.user,onShowToast:l[4]||(l[4]=f=>e("show-toast",f)),onShowConfirm:l[5]||(l[5]=f=>e("show-confirm",f)),onClearNewMessages:l[6]||(l[6]=f=>i.value=0),onNewMessage:l[7]||(l[7]=()=>i.value++),onNotViewedTotal:l[8]||(l[8]=f=>i.value=f)},null,8,["visible","titlePrincipal","tokenAuth","user"])],512),[[u.vShow,r.value]])],2))}}),[["__scopeId","data-v-5f191354"]]),Pu={install(t,e){window.VITE_BACKEND_URL=e.VITE_BACKEND_URL,window.VITE_SOCKET_URI=e.VITE_SOCKET_URI,window.VITE_CELLPHONE_NUMBERS=e.VITE_CELLPHONE_NUMBERS}};ue.Widget=Uu,ue.default=Pu,Object.defineProperties(ue,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});