@tmsoft/webphone 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -32
- package/dist/webphone.cjs.js +1 -1
- package/dist/webphone.es.js +2 -2
- package/dist/webphone.iife.js +1 -1
- package/dist/webphone.umd.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,19 +17,19 @@
|
|
|
17
17
|
|
|
18
18
|
## 🚀 **Instalación**
|
|
19
19
|
|
|
20
|
-
En
|
|
20
|
+
En NPM:
|
|
21
21
|
|
|
22
22
|
```sh
|
|
23
23
|
npm install @tmsoft/webphone
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
En
|
|
26
|
+
En Yarn:
|
|
27
27
|
|
|
28
28
|
```sh
|
|
29
29
|
yarn add @tmsoft/webphone
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
En
|
|
32
|
+
En PNPM:
|
|
33
33
|
|
|
34
34
|
```sh
|
|
35
35
|
pnpm add @tmsoft/webphone
|
|
@@ -39,7 +39,7 @@ pnpm add @tmsoft/webphone
|
|
|
39
39
|
|
|
40
40
|
## 🛠 **Uso**
|
|
41
41
|
|
|
42
|
-
En una aplicación Vue,
|
|
42
|
+
En una aplicación Vue, se puede importar y utilizar de la siguiente manera:
|
|
43
43
|
|
|
44
44
|
```vue
|
|
45
45
|
<script setup lang="ts">
|
|
@@ -48,16 +48,30 @@ import WebPhone from '@tmsoft/webphone'
|
|
|
48
48
|
|
|
49
49
|
const extension = ref('1001')
|
|
50
50
|
const password = ref('supersecret')
|
|
51
|
+
const domain = ref('sip.example.com')
|
|
51
52
|
</script>
|
|
52
53
|
|
|
53
54
|
<template>
|
|
54
|
-
<WebPhone :extension="extension" :password="password" />
|
|
55
|
+
<WebPhone :extension="extension" :password="password" :domain="domain" />
|
|
55
56
|
</template>
|
|
56
57
|
```
|
|
57
58
|
|
|
58
59
|
---
|
|
59
60
|
|
|
60
|
-
##
|
|
61
|
+
## 📌 **Props del Componente**
|
|
62
|
+
|
|
63
|
+
| Propiedad | Tipo | Requerida | Descripción |
|
|
64
|
+
| ----------- | -------- | --------- | --------------------------------------------------------------------------------- |
|
|
65
|
+
| `extension` | `String` | ✅ | Número de extensión del usuario. |
|
|
66
|
+
| `password` | `String` | ✅ | Contraseña SIP de la extensión. |
|
|
67
|
+
| `domain` | `String` | ✅ | Dominio del servidor SIP. |
|
|
68
|
+
| `mode` | `String` | ❌ | Tipo de llamada. Valores: `'call'`, `'webcall'`, `'video'`. Por defecto `'call'`. |
|
|
69
|
+
| `image` | `String` | ❌ | Imagen base64 o URL para mostrar en modo `webcall`. |
|
|
70
|
+
| `to` | `String` | ❌ | Número de destino en modo `webcall`. |
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 🏗 **Construcción del Paquete**
|
|
61
75
|
|
|
62
76
|
Para compilar el paquete, ejecutar:
|
|
63
77
|
|
|
@@ -75,9 +89,7 @@ Esto generará los archivos de distribución en `dist/` con los siguientes forma
|
|
|
75
89
|
|
|
76
90
|
## 🌎 **Uso en CDN**
|
|
77
91
|
|
|
78
|
-
Para cargar la librería
|
|
79
|
-
|
|
80
|
-
### **Carga en HTML con ES Module**
|
|
92
|
+
Para cargar la librería directamente en una página sin instalar NPM, usar un CDN como [jsDelivr](https://www.jsdelivr.com/):
|
|
81
93
|
|
|
82
94
|
```html
|
|
83
95
|
<script type="module">
|
|
@@ -85,34 +97,17 @@ Para cargar la librería sin necesidad de instalarla, se puede usar un CDN como
|
|
|
85
97
|
</script>
|
|
86
98
|
```
|
|
87
99
|
|
|
88
|
-
|
|
100
|
+
Para UMD:
|
|
89
101
|
|
|
90
102
|
```html
|
|
91
103
|
<script src="https://cdn.jsdelivr.net/npm/@tmsoft/webphone/dist/webphone.umd.js"></script>
|
|
92
104
|
```
|
|
93
105
|
|
|
94
|
-
### **Uso en HTML**
|
|
95
|
-
|
|
96
|
-
```html
|
|
97
|
-
<!DOCTYPE html>
|
|
98
|
-
<html lang="es">
|
|
99
|
-
<head>
|
|
100
|
-
<meta charset="UTF-8" />
|
|
101
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
102
|
-
<title>WebPhone Example</title>
|
|
103
|
-
<script src="https://cdn.jsdelivr.net/npm/@tmsoft/webphone/dist/webphone.umd.js"></script>
|
|
104
|
-
</head>
|
|
105
|
-
<body>
|
|
106
|
-
<web-phone extension="1001" password="supersecret"></web-phone>
|
|
107
|
-
</body>
|
|
108
|
-
</html>
|
|
109
|
-
```
|
|
110
|
-
|
|
111
106
|
---
|
|
112
107
|
|
|
113
108
|
## 📤 **Publicación en NPM**
|
|
114
109
|
|
|
115
|
-
Para publicar una nueva versión en NPM:
|
|
110
|
+
Para publicar una nueva versión del paquete en NPM:
|
|
116
111
|
|
|
117
112
|
1️⃣ **Autenticarse en NPM**
|
|
118
113
|
Si no se ha iniciado sesión:
|
|
@@ -131,15 +126,13 @@ Ejemplo: Incrementar la versión **`1.0.1` → `1.0.2`** en `package.json`:
|
|
|
131
126
|
}
|
|
132
127
|
```
|
|
133
128
|
|
|
134
|
-
3️⃣ **
|
|
129
|
+
3️⃣ **Construir el paquete**
|
|
135
130
|
|
|
136
131
|
```sh
|
|
137
132
|
npm run build
|
|
138
133
|
```
|
|
139
134
|
|
|
140
|
-
4️⃣ **
|
|
141
|
-
|
|
142
|
-
Para publicar en un registro público:
|
|
135
|
+
4️⃣ **Publicar el paquete en NPM**
|
|
143
136
|
|
|
144
137
|
```sh
|
|
145
138
|
npm run publish:lib
|
package/dist/webphone.cjs.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @vue/shared v3.5.13
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
|
-
**//*! #__NO_SIDE_EFFECTS__ */function Ni(e){const t=Object.create(null);for(const o of e.split(","))t[o]=1;return o=>o in t}const We={},Wn=[],Ft=()=>{},dg=()=>!1,Qo=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),ji=e=>e.startsWith("onUpdate:"),et=Object.assign,Wi=(e,t)=>{const o=e.indexOf(t);o>-1&&e.splice(o,1)},fg=Object.prototype.hasOwnProperty,Ke=(e,t)=>fg.call(e,t),Ee=Array.isArray,Hn=e=>Yo(e)==="[object Map]",Vc=e=>Yo(e)==="[object Set]",ke=e=>typeof e=="function",ze=e=>typeof e=="string",An=e=>typeof e=="symbol",_e=e=>e!==null&&typeof e=="object",bc=e=>(_e(e)||ke(e))&&ke(e.then)&&ke(e.catch),Cc=Object.prototype.toString,Yo=e=>Cc.call(e),gg=e=>Yo(e).slice(8,-1),Go=e=>Yo(e)==="[object Object]",Hi=e=>ze(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,hr=Ni(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Ko=e=>{const t=Object.create(null);return o=>t[o]||(t[o]=e(o))},hg=/-(\w)/g,Ct=Ko(e=>e.replace(hg,(t,o)=>o?o.toUpperCase():"")),pg=/\B([A-Z])/g,Rt=Ko(e=>e.replace(pg,"-$1").toLowerCase()),Jo=Ko(e=>e.charAt(0).toUpperCase()+e.slice(1)),EA=Ko(e=>e?`on${Jo(e)}`:""),bn=(e,t)=>!Object.is(e,t),kA=(e,...t)=>{for(let o=0;o<e.length;o++)e[o](...t)},vc=(e,t,o,A=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:A,value:o})},qg=e=>{const t=parseFloat(e);return isNaN(t)?e:t},vi=e=>{const t=ze(e)?Number(e):NaN;return isNaN(t)?e:t};let ca;const No=()=>ca||(ca=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function jo(e){if(Ee(e)){const t={};for(let o=0;o<e.length;o++){const A=e[o],l=ze(A)?Cg(A):jo(A);if(l)for(const a in l)t[a]=l[a]}return t}else if(ze(e)||_e(e))return e}const mg=/;(?![^(]*\))/g,Vg=/:([^]+)/,bg=/\/\*[^]*?\*\//g;function Cg(e){const t={};return e.replace(bg,"").split(mg).forEach(o=>{if(o){const A=o.split(Vg);A.length>1&&(t[A[0].trim()]=A[1].trim())}}),t}function ht(e){let t="";if(ze(e))t=e;else if(Ee(e))for(let o=0;o<e.length;o++){const A=ht(e[o]);A&&(t+=A+" ")}else if(_e(e))for(const o in e)e[o]&&(t+=o+" ");return t.trim()}function vg(e){if(!e)return null;let{class:t,style:o}=e;return t&&!ze(t)&&(e.class=ht(t)),o&&(e.style=jo(o)),e}const yg="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Ig=Ni(yg);function yc(e){return!!e||e===""}const Ic=e=>!!(e&&e.__v_isRef===!0),nt=e=>ze(e)?e:e==null?"":Ee(e)||_e(e)&&(e.toString===Cc||!ke(e.toString))?Ic(e)?nt(e.value):JSON.stringify(e,Sc,2):String(e),Sc=(e,t)=>Ic(t)?Sc(e,t.value):Hn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((o,[A,l],a)=>(o[TA(A,a)+" =>"]=l,o),{})}:Vc(t)?{[`Set(${t.size})`]:[...t.values()].map(o=>TA(o))}:An(t)?TA(t):_e(t)&&!Ee(t)&&!Go(t)?String(t):t,TA=(e,t="")=>{var o;return An(e)?`Symbol(${(o=e.description)!=null?o:t})`:e};var Sg={NVM_INC:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node",TERM_PROGRAM:"vscode",NODE:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NVM_CD_FLAGS:"-q",INIT_CWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",SHELL:"/bin/zsh",TERM:"xterm-256color",HOMEBREW_REPOSITORY:"/opt/homebrew",TMPDIR:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/",npm_config_global_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",TERM_PROGRAM_VERSION:"1.97.2",MallocNanoZone:"0",ORIGINAL_XDG_CURRENT_DESKTOP:"undefined",ZDOTDIR:"/Users/cesarbacca",COLOR:"1",npm_config_noproxy:"",npm_config_local_prefix:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",NVM_DIR:"/Users/cesarbacca/.nvm",USER:"cesarbacca",COMMAND_MODE:"unix2003",npm_config_globalconfig:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc",Q_SET_PARENT_CHECK:"1",SSH_AUTH_SOCK:"/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners",VSCODE_PROFILE_INITIALIZED:"1",__CF_USER_TEXT_ENCODING:"0x1F5:0x0:0x8",npm_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js",npm_package_integrity:"null",npm_config_access:"public",PATH:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand",_:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite",npm_package_json:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json",SHELL_PID:"39908",USER_ZDOTDIR:"/Users/cesarbacca",__CFBundleIdentifier:"com.microsoft.VSCode",npm_config_init_module:"/Users/cesarbacca/.npm-init.js",npm_config_userconfig:"/Users/cesarbacca/.npmrc",PWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",TTY:"/dev/ttys006",npm_command:"run-script",VSCODE_NONCE:"96a18e43-5963-4f03-b640-682987711925",EDITOR:"vi",npm_lifecycle_event:"build-only",LANG:"es_ES.UTF-8",npm_package_name:"@tmsoft/webphone",VSCODE_GIT_ASKPASS_EXTRA_ARGS:"",XPC_FLAGS:"0x0",npm_config_npm_version:"10.9.2",npm_config_node_gyp:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js",XPC_SERVICE_NAME:"0",npm_package_version:"1.0.5",VSCODE_INJECTION:"1",npm_package_resolved:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",HOME:"/Users/cesarbacca",SHLVL:"5",VSCODE_GIT_ASKPASS_MAIN:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass-main.js",HOMEBREW_PREFIX:"/opt/homebrew",LOGNAME:"cesarbacca",npm_config_cache:"/Users/cesarbacca/.npm",npm_lifecycle_script:"vite build",VSCODE_GIT_IPC_HANDLE:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/vscode-git-ec41402399.sock",NVM_BIN:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin",npm_config_user_agent:"npm/10.9.2 node/v22.14.0 darwin arm64 workspaces/false",GIT_ASKPASS:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass.sh",HOMEBREW_CELLAR:"/opt/homebrew/Cellar",INFOPATH:"/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:",VSCODE_GIT_ASKPASS_NODE:"/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Plugin).app/Contents/MacOS/Code Helper (Plugin)",QTERM_SESSION_ID:"4dd62bd2d127495fb911e54876516fcd",Q_TERM:"1.6.3",COLORTERM:"truecolor",npm_config_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",npm_node_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NODE_ENV:"production",LAUNCH_EDITOR:"code"};let wt;class wg{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=wt,!t&&wt&&(this.index=(wt.scopes||(wt.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,o;if(this.scopes)for(t=0,o=this.scopes.length;t<o;t++)this.scopes[t].pause();for(t=0,o=this.effects.length;t<o;t++)this.effects[t].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let t,o;if(this.scopes)for(t=0,o=this.scopes.length;t<o;t++)this.scopes[t].resume();for(t=0,o=this.effects.length;t<o;t++)this.effects[t].resume()}}run(t){if(this._active){const o=wt;try{return wt=this,t()}finally{wt=o}}}on(){wt=this}off(){wt=this.parent}stop(t){if(this._active){this._active=!1;let o,A;for(o=0,A=this.effects.length;o<A;o++)this.effects[o].stop();for(this.effects.length=0,o=0,A=this.cleanups.length;o<A;o++)this.cleanups[o]();if(this.cleanups.length=0,this.scopes){for(o=0,A=this.scopes.length;o<A;o++)this.scopes[o].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!t){const l=this.parent.scopes.pop();l&&l!==this&&(this.parent.scopes[this.index]=l,l.index=this.index)}this.parent=void 0}}}function Eg(){return wt}let He;const RA=new WeakSet;class wc{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,wt&&wt.active&&wt.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,RA.has(this)&&(RA.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||kc(this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,da(this),Tc(this);const t=He,o=Qt;He=this,Qt=!0;try{return this.fn()}finally{Rc(this),He=t,Qt=o,this.flags&=-3}}stop(){if(this.flags&1){for(let t=this.deps;t;t=t.nextDep)zi(t);this.deps=this.depsTail=void 0,da(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?RA.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){yi(this)&&this.run()}get dirty(){return yi(this)}}let Ec=0,pr,qr;function kc(e,t=!1){if(e.flags|=8,t){e.next=qr,qr=e;return}e.next=pr,pr=e}function Zi(){Ec++}function Pi(){if(--Ec>0)return;if(qr){let t=qr;for(qr=void 0;t;){const o=t.next;t.next=void 0,t.flags&=-9,t=o}}let e;for(;pr;){let t=pr;for(pr=void 0;t;){const o=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(A){e||(e=A)}t=o}}if(e)throw e}function Tc(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Rc(e){let t,o=e.depsTail,A=o;for(;A;){const l=A.prevDep;A.version===-1?(A===o&&(o=l),zi(A),kg(A)):t=A,A.dep.activeLink=A.prevActiveLink,A.prevActiveLink=void 0,A=l}e.deps=t,e.depsTail=o}function yi(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Mc(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Mc(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Ir))return;e.globalVersion=Ir;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&e.deps&&!yi(e)){e.flags&=-3;return}const o=He,A=Qt;He=e,Qt=!0;try{Tc(e);const l=e.fn(e._value);(t.version===0||bn(l,e._value))&&(e._value=l,t.version++)}catch(l){throw t.version++,l}finally{He=o,Qt=A,Rc(e),e.flags&=-3}}function zi(e,t=!1){const{dep:o,prevSub:A,nextSub:l}=e;if(A&&(A.nextSub=l,e.prevSub=void 0),l&&(l.prevSub=A,e.nextSub=void 0),o.subs===e&&(o.subs=A,!A&&o.computed)){o.computed.flags&=-5;for(let a=o.computed.deps;a;a=a.nextDep)zi(a,!0)}!t&&!--o.sc&&o.map&&o.map.delete(o.key)}function kg(e){const{prevDep:t,nextDep:o}=e;t&&(t.nextDep=o,e.prevDep=void 0),o&&(o.prevDep=t,e.nextDep=void 0)}let Qt=!0;const xc=[];function sn(){xc.push(Qt),Qt=!1}function ln(){const e=xc.pop();Qt=e===void 0?!0:e}function da(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const o=He;He=void 0;try{t()}finally{He=o}}}let Ir=0;class Tg{constructor(t,o){this.sub=t,this.dep=o,this.version=o.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class _i{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0}track(t){if(!He||!Qt||He===this.computed)return;let o=this.activeLink;if(o===void 0||o.sub!==He)o=this.activeLink=new Tg(He,this),He.deps?(o.prevDep=He.depsTail,He.depsTail.nextDep=o,He.depsTail=o):He.deps=He.depsTail=o,Oc(o);else if(o.version===-1&&(o.version=this.version,o.nextDep)){const A=o.nextDep;A.prevDep=o.prevDep,o.prevDep&&(o.prevDep.nextDep=A),o.prevDep=He.depsTail,o.nextDep=void 0,He.depsTail.nextDep=o,He.depsTail=o,He.deps===o&&(He.deps=A)}return o}trigger(t){this.version++,Ir++,this.notify(t)}notify(t){Zi();try{Sg.NODE_ENV;for(let o=this.subs;o;o=o.prevSub)o.sub.notify()&&o.sub.dep.notify()}finally{Pi()}}}function Oc(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let A=t.deps;A;A=A.nextDep)Oc(A)}const o=e.dep.subs;o!==e&&(e.prevSub=o,o&&(o.nextSub=e)),e.dep.subs=e}}const Ii=new WeakMap,Dn=Symbol(""),Si=Symbol(""),Sr=Symbol("");function ft(e,t,o){if(Qt&&He){let A=Ii.get(e);A||Ii.set(e,A=new Map);let l=A.get(o);l||(A.set(o,l=new _i),l.map=A,l.key=o),l.track()}}function tn(e,t,o,A,l,a){const n=Ii.get(e);if(!n){Ir++;return}const f=h=>{h&&h.trigger()};if(Zi(),t==="clear")n.forEach(f);else{const h=Ee(e),s=h&&Hi(o);if(h&&o==="length"){const d=Number(A);n.forEach((c,p)=>{(p==="length"||p===Sr||!An(p)&&p>=d)&&f(c)})}else switch((o!==void 0||n.has(void 0))&&f(n.get(o)),s&&f(n.get(Sr)),t){case"add":h?s&&f(n.get("length")):(f(n.get(Dn)),Hn(e)&&f(n.get(Si)));break;case"delete":h||(f(n.get(Dn)),Hn(e)&&f(n.get(Si)));break;case"set":Hn(e)&&f(n.get(Dn));break}}Pi()}function Yn(e){const t=Fe(e);return t===e?t:(ft(t,"iterate",Sr),xt(e)?t:t.map(gt))}function Wo(e){return ft(e=Fe(e),"iterate",Sr),e}const Rg={__proto__:null,[Symbol.iterator](){return MA(this,Symbol.iterator,gt)},concat(...e){return Yn(this).concat(...e.map(t=>Ee(t)?Yn(t):t))},entries(){return MA(this,"entries",e=>(e[1]=gt(e[1]),e))},every(e,t){return zt(this,"every",e,t,void 0,arguments)},filter(e,t){return zt(this,"filter",e,t,o=>o.map(gt),arguments)},find(e,t){return zt(this,"find",e,t,gt,arguments)},findIndex(e,t){return zt(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return zt(this,"findLast",e,t,gt,arguments)},findLastIndex(e,t){return zt(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return zt(this,"forEach",e,t,void 0,arguments)},includes(...e){return xA(this,"includes",e)},indexOf(...e){return xA(this,"indexOf",e)},join(e){return Yn(this).join(e)},lastIndexOf(...e){return xA(this,"lastIndexOf",e)},map(e,t){return zt(this,"map",e,t,void 0,arguments)},pop(){return ar(this,"pop")},push(...e){return ar(this,"push",e)},reduce(e,...t){return fa(this,"reduce",e,t)},reduceRight(e,...t){return fa(this,"reduceRight",e,t)},shift(){return ar(this,"shift")},some(e,t){return zt(this,"some",e,t,void 0,arguments)},splice(...e){return ar(this,"splice",e)},toReversed(){return Yn(this).toReversed()},toSorted(e){return Yn(this).toSorted(e)},toSpliced(...e){return Yn(this).toSpliced(...e)},unshift(...e){return ar(this,"unshift",e)},values(){return MA(this,"values",gt)}};function MA(e,t,o){const A=Wo(e),l=A[t]();return A!==e&&!xt(e)&&(l._next=l.next,l.next=()=>{const a=l._next();return a.value&&(a.value=o(a.value)),a}),l}const Mg=Array.prototype;function zt(e,t,o,A,l,a){const n=Wo(e),f=n!==e&&!xt(e),h=n[t];if(h!==Mg[t]){const c=h.apply(e,a);return f?gt(c):c}let s=o;n!==e&&(f?s=function(c,p){return o.call(this,gt(c),p,e)}:o.length>2&&(s=function(c,p){return o.call(this,c,p,e)}));const d=h.call(n,s,A);return f&&l?l(d):d}function fa(e,t,o,A){const l=Wo(e);let a=o;return l!==e&&(xt(e)?o.length>3&&(a=function(n,f,h){return o.call(this,n,f,h,e)}):a=function(n,f,h){return o.call(this,n,gt(f),h,e)}),l[t](a,...A)}function xA(e,t,o){const A=Fe(e);ft(A,"iterate",Sr);const l=A[t](...o);return(l===-1||l===!1)&&$i(o[0])?(o[0]=Fe(o[0]),A[t](...o)):l}function ar(e,t,o=[]){sn(),Zi();const A=Fe(e)[t].apply(e,o);return Pi(),ln(),A}const xg=Ni("__proto__,__v_isRef,__isVue"),Bc=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(An));function Og(e){An(e)||(e=String(e));const t=Fe(this);return ft(t,"has",e),t.hasOwnProperty(e)}class Uc{constructor(t=!1,o=!1){this._isReadonly=t,this._isShallow=o}get(t,o,A){if(o==="__v_skip")return t.__v_skip;const l=this._isReadonly,a=this._isShallow;if(o==="__v_isReactive")return!l;if(o==="__v_isReadonly")return l;if(o==="__v_isShallow")return a;if(o==="__v_raw")return A===(l?a?Gc:Yc:a?Qc:Fc).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(A)?t:void 0;const n=Ee(t);if(!l){let h;if(n&&(h=Rg[o]))return h;if(o==="hasOwnProperty")return Og}const f=Reflect.get(t,o,ut(t)?t:A);return(An(o)?Bc.has(o):xg(o))||(l||ft(t,"get",o),a)?f:ut(f)?n&&Hi(o)?f:f.value:_e(f)?l?Xi(f):Zo(f):f}}class Dc extends Uc{constructor(t=!1){super(!1,t)}set(t,o,A,l){let a=t[o];if(!this._isShallow){const h=Ln(a);if(!xt(A)&&!Ln(A)&&(a=Fe(a),A=Fe(A)),!Ee(t)&&ut(a)&&!ut(A))return h?!1:(a.value=A,!0)}const n=Ee(t)&&Hi(o)?Number(o)<t.length:Ke(t,o),f=Reflect.set(t,o,A,ut(t)?t:l);return t===Fe(l)&&(n?bn(A,a)&&tn(t,"set",o,A):tn(t,"add",o,A)),f}deleteProperty(t,o){const A=Ke(t,o);t[o];const l=Reflect.deleteProperty(t,o);return l&&A&&tn(t,"delete",o,void 0),l}has(t,o){const A=Reflect.has(t,o);return(!An(o)||!Bc.has(o))&&ft(t,"has",o),A}ownKeys(t){return ft(t,"iterate",Ee(t)?"length":Dn),Reflect.ownKeys(t)}}class Lc extends Uc{constructor(t=!1){super(!0,t)}set(t,o){return!0}deleteProperty(t,o){return!0}}const Bg=new Dc,Ug=new Lc,Dg=new Dc(!0),Lg=new Lc(!0),wi=e=>e,ao=e=>Reflect.getPrototypeOf(e);function Fg(e,t,o){return function(...A){const l=this.__v_raw,a=Fe(l),n=Hn(a),f=e==="entries"||e===Symbol.iterator&&n,h=e==="keys"&&n,s=l[e](...A),d=o?wi:t?Ei:gt;return!t&&ft(a,"iterate",h?Si:Dn),{next(){const{value:c,done:p}=s.next();return p?{value:c,done:p}:{value:f?[d(c[0]),d(c[1])]:d(c),done:p}},[Symbol.iterator](){return this}}}}function uo(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Qg(e,t){const o={get(l){const a=this.__v_raw,n=Fe(a),f=Fe(l);e||(bn(l,f)&&ft(n,"get",l),ft(n,"get",f));const{has:h}=ao(n),s=t?wi:e?Ei:gt;if(h.call(n,l))return s(a.get(l));if(h.call(n,f))return s(a.get(f));a!==n&&a.get(l)},get size(){const l=this.__v_raw;return!e&&ft(Fe(l),"iterate",Dn),Reflect.get(l,"size",l)},has(l){const a=this.__v_raw,n=Fe(a),f=Fe(l);return e||(bn(l,f)&&ft(n,"has",l),ft(n,"has",f)),l===f?a.has(l):a.has(l)||a.has(f)},forEach(l,a){const n=this,f=n.__v_raw,h=Fe(f),s=t?wi:e?Ei:gt;return!e&&ft(h,"iterate",Dn),f.forEach((d,c)=>l.call(a,s(d),s(c),n))}};return et(o,e?{add:uo("add"),set:uo("set"),delete:uo("delete"),clear:uo("clear")}:{add(l){!t&&!xt(l)&&!Ln(l)&&(l=Fe(l));const a=Fe(this);return ao(a).has.call(a,l)||(a.add(l),tn(a,"add",l,l)),this},set(l,a){!t&&!xt(a)&&!Ln(a)&&(a=Fe(a));const n=Fe(this),{has:f,get:h}=ao(n);let s=f.call(n,l);s||(l=Fe(l),s=f.call(n,l));const d=h.call(n,l);return n.set(l,a),s?bn(a,d)&&tn(n,"set",l,a):tn(n,"add",l,a),this},delete(l){const a=Fe(this),{has:n,get:f}=ao(a);let h=n.call(a,l);h||(l=Fe(l),h=n.call(a,l)),f&&f.call(a,l);const s=a.delete(l);return h&&tn(a,"delete",l,void 0),s},clear(){const l=Fe(this),a=l.size!==0,n=l.clear();return a&&tn(l,"clear",void 0,void 0),n}}),["keys","values","entries",Symbol.iterator].forEach(l=>{o[l]=Fg(l,e,t)}),o}function Ho(e,t){const o=Qg(e,t);return(A,l,a)=>l==="__v_isReactive"?!e:l==="__v_isReadonly"?e:l==="__v_raw"?A:Reflect.get(Ke(o,l)&&l in A?o:A,l,a)}const Yg={get:Ho(!1,!1)},Gg={get:Ho(!1,!0)},Kg={get:Ho(!0,!1)},Jg={get:Ho(!0,!0)},Fc=new WeakMap,Qc=new WeakMap,Yc=new WeakMap,Gc=new WeakMap;function Ng(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function jg(e){return e.__v_skip||!Object.isExtensible(e)?0:Ng(gg(e))}function Zo(e){return Ln(e)?e:Po(e,!1,Bg,Yg,Fc)}function Wg(e){return Po(e,!1,Dg,Gg,Qc)}function Xi(e){return Po(e,!0,Ug,Kg,Yc)}function co(e){return Po(e,!0,Lg,Jg,Gc)}function Po(e,t,o,A,l){if(!_e(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const a=l.get(e);if(a)return a;const n=jg(e);if(n===0)return e;const f=new Proxy(e,n===2?A:o);return l.set(e,f),f}function Zn(e){return Ln(e)?Zn(e.__v_raw):!!(e&&e.__v_isReactive)}function Ln(e){return!!(e&&e.__v_isReadonly)}function xt(e){return!!(e&&e.__v_isShallow)}function $i(e){return e?!!e.__v_raw:!1}function Fe(e){const t=e&&e.__v_raw;return t?Fe(t):e}function Hg(e){return!Ke(e,"__v_skip")&&Object.isExtensible(e)&&vc(e,"__v_skip",!0),e}const gt=e=>_e(e)?Zo(e):e,Ei=e=>_e(e)?Xi(e):e;function ut(e){return e?e.__v_isRef===!0:!1}function Je(e){return Zg(e,!1)}function Zg(e,t){return ut(e)?e:new Pg(e,t)}class Pg{constructor(t,o){this.dep=new _i,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=o?t:Fe(t),this._value=o?t:gt(t),this.__v_isShallow=o}get value(){return this.dep.track(),this._value}set value(t){const o=this._rawValue,A=this.__v_isShallow||xt(t)||Ln(t);t=A?t:Fe(t),bn(t,o)&&(this._rawValue=t,this._value=A?t:gt(t),this.dep.trigger())}}function Kc(e){return ut(e)?e.value:e}const zg={get:(e,t,o)=>t==="__v_raw"?e:Kc(Reflect.get(e,t,o)),set:(e,t,o,A)=>{const l=e[t];return ut(l)&&!ut(o)?(l.value=o,!0):Reflect.set(e,t,o,A)}};function Jc(e){return Zn(e)?e:new Proxy(e,zg)}class _g{constructor(t,o,A){this.fn=t,this.setter=o,this._value=void 0,this.dep=new _i(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Ir-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!o,this.isSSR=A}notify(){if(this.flags|=16,!(this.flags&8)&&He!==this)return kc(this,!0),!0}get value(){const t=this.dep.track();return Mc(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Xg(e,t,o=!1){let A,l;return ke(e)?A=e:(A=e.get,l=e.set),new _g(A,l,o)}const fo={},ko=new WeakMap;let xn;function $g(e,t=!1,o=xn){if(o){let A=ko.get(o);A||ko.set(o,A=[]),A.push(e)}}function eh(e,t,o=We){const{immediate:A,deep:l,once:a,scheduler:n,augmentJob:f,call:h}=o,s=C=>l?C:xt(C)||l===!1||l===0?nn(C,1):nn(C);let d,c,p,V,M=!1,T=!1;if(ut(e)?(c=()=>e.value,M=xt(e)):Zn(e)?(c=()=>s(e),M=!0):Ee(e)?(T=!0,M=e.some(C=>Zn(C)||xt(C)),c=()=>e.map(C=>{if(ut(C))return C.value;if(Zn(C))return s(C);if(ke(C))return h?h(C,2):C()})):ke(e)?t?c=h?()=>h(e,2):e:c=()=>{if(p){sn();try{p()}finally{ln()}}const C=xn;xn=d;try{return h?h(e,3,[V]):e(V)}finally{xn=C}}:c=Ft,t&&l){const C=c,v=l===!0?1/0:l;c=()=>nn(C(),v)}const R=Eg(),I=()=>{d.stop(),R&&R.active&&Wi(R.effects,d)};if(a&&t){const C=t;t=(...v)=>{C(...v),I()}}let x=T?new Array(e.length).fill(fo):fo;const E=C=>{if(!(!(d.flags&1)||!d.dirty&&!C))if(t){const v=d.run();if(l||M||(T?v.some((O,L)=>bn(O,x[L])):bn(v,x))){p&&p();const O=xn;xn=d;try{const L=[v,x===fo?void 0:T&&x[0]===fo?[]:x,V];h?h(t,3,L):t(...L),x=v}finally{xn=O}}}else d.run()};return f&&f(E),d=new wc(c),d.scheduler=n?()=>n(E,!1):E,V=C=>$g(C,!1,d),p=d.onStop=()=>{const C=ko.get(d);if(C){if(h)h(C,4);else for(const v of C)v();ko.delete(d)}},t?A?E(!0):x=d.run():n?n(E.bind(null,!0),!0):d.run(),I.pause=d.pause.bind(d),I.resume=d.resume.bind(d),I.stop=I,I}function nn(e,t=1/0,o){if(t<=0||!_e(e)||e.__v_skip||(o=o||new Set,o.has(e)))return e;if(o.add(e),t--,ut(e))nn(e.value,t,o);else if(Ee(e))for(let A=0;A<e.length;A++)nn(e[A],t,o);else if(Vc(e)||Hn(e))e.forEach(A=>{nn(A,t,o)});else if(Go(e)){for(const A in e)nn(e[A],t,o);for(const A of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,A)&&nn(e[A],t,o)}return e}var hn={NVM_INC:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node",TERM_PROGRAM:"vscode",NODE:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NVM_CD_FLAGS:"-q",INIT_CWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",SHELL:"/bin/zsh",TERM:"xterm-256color",HOMEBREW_REPOSITORY:"/opt/homebrew",TMPDIR:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/",npm_config_global_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",TERM_PROGRAM_VERSION:"1.97.2",MallocNanoZone:"0",ORIGINAL_XDG_CURRENT_DESKTOP:"undefined",ZDOTDIR:"/Users/cesarbacca",COLOR:"1",npm_config_noproxy:"",npm_config_local_prefix:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",NVM_DIR:"/Users/cesarbacca/.nvm",USER:"cesarbacca",COMMAND_MODE:"unix2003",npm_config_globalconfig:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc",Q_SET_PARENT_CHECK:"1",SSH_AUTH_SOCK:"/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners",VSCODE_PROFILE_INITIALIZED:"1",__CF_USER_TEXT_ENCODING:"0x1F5:0x0:0x8",npm_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js",npm_package_integrity:"null",npm_config_access:"public",PATH:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand",_:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite",npm_package_json:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json",SHELL_PID:"39908",USER_ZDOTDIR:"/Users/cesarbacca",__CFBundleIdentifier:"com.microsoft.VSCode",npm_config_init_module:"/Users/cesarbacca/.npm-init.js",npm_config_userconfig:"/Users/cesarbacca/.npmrc",PWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",TTY:"/dev/ttys006",npm_command:"run-script",VSCODE_NONCE:"96a18e43-5963-4f03-b640-682987711925",EDITOR:"vi",npm_lifecycle_event:"build-only",LANG:"es_ES.UTF-8",npm_package_name:"@tmsoft/webphone",VSCODE_GIT_ASKPASS_EXTRA_ARGS:"",XPC_FLAGS:"0x0",npm_config_npm_version:"10.9.2",npm_config_node_gyp:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js",XPC_SERVICE_NAME:"0",npm_package_version:"1.0.5",VSCODE_INJECTION:"1",npm_package_resolved:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",HOME:"/Users/cesarbacca",SHLVL:"5",VSCODE_GIT_ASKPASS_MAIN:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass-main.js",HOMEBREW_PREFIX:"/opt/homebrew",LOGNAME:"cesarbacca",npm_config_cache:"/Users/cesarbacca/.npm",npm_lifecycle_script:"vite build",VSCODE_GIT_IPC_HANDLE:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/vscode-git-ec41402399.sock",NVM_BIN:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin",npm_config_user_agent:"npm/10.9.2 node/v22.14.0 darwin arm64 workspaces/false",GIT_ASKPASS:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass.sh",HOMEBREW_CELLAR:"/opt/homebrew/Cellar",INFOPATH:"/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:",VSCODE_GIT_ASKPASS_NODE:"/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Plugin).app/Contents/MacOS/Code Helper (Plugin)",QTERM_SESSION_ID:"4dd62bd2d127495fb911e54876516fcd",Q_TERM:"1.6.3",COLORTERM:"truecolor",npm_config_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",npm_node_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NODE_ENV:"production",LAUNCH_EDITOR:"code"};const mr=[];let OA=!1;function th(e,...t){if(OA)return;OA=!0,sn();const o=mr.length?mr[mr.length-1].component:null,A=o&&o.appContext.config.warnHandler,l=nh();if(A)tr(A,o,11,[e+t.map(a=>{var n,f;return(f=(n=a.toString)==null?void 0:n.call(a))!=null?f:JSON.stringify(a)}).join(""),o&&o.proxy,l.map(({vnode:a})=>`at <${xd(o,a.type)}>`).join(`
|
|
5
|
+
**//*! #__NO_SIDE_EFFECTS__ */function Ni(e){const t=Object.create(null);for(const o of e.split(","))t[o]=1;return o=>o in t}const We={},Wn=[],Ft=()=>{},dg=()=>!1,Qo=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),ji=e=>e.startsWith("onUpdate:"),et=Object.assign,Wi=(e,t)=>{const o=e.indexOf(t);o>-1&&e.splice(o,1)},fg=Object.prototype.hasOwnProperty,Ke=(e,t)=>fg.call(e,t),Ee=Array.isArray,Hn=e=>Yo(e)==="[object Map]",Vc=e=>Yo(e)==="[object Set]",ke=e=>typeof e=="function",ze=e=>typeof e=="string",An=e=>typeof e=="symbol",_e=e=>e!==null&&typeof e=="object",bc=e=>(_e(e)||ke(e))&&ke(e.then)&&ke(e.catch),Cc=Object.prototype.toString,Yo=e=>Cc.call(e),gg=e=>Yo(e).slice(8,-1),Go=e=>Yo(e)==="[object Object]",Hi=e=>ze(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,hr=Ni(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Ko=e=>{const t=Object.create(null);return o=>t[o]||(t[o]=e(o))},hg=/-(\w)/g,Ct=Ko(e=>e.replace(hg,(t,o)=>o?o.toUpperCase():"")),pg=/\B([A-Z])/g,Rt=Ko(e=>e.replace(pg,"-$1").toLowerCase()),Jo=Ko(e=>e.charAt(0).toUpperCase()+e.slice(1)),EA=Ko(e=>e?`on${Jo(e)}`:""),bn=(e,t)=>!Object.is(e,t),kA=(e,...t)=>{for(let o=0;o<e.length;o++)e[o](...t)},vc=(e,t,o,A=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:A,value:o})},qg=e=>{const t=parseFloat(e);return isNaN(t)?e:t},vi=e=>{const t=ze(e)?Number(e):NaN;return isNaN(t)?e:t};let ca;const No=()=>ca||(ca=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function jo(e){if(Ee(e)){const t={};for(let o=0;o<e.length;o++){const A=e[o],l=ze(A)?Cg(A):jo(A);if(l)for(const a in l)t[a]=l[a]}return t}else if(ze(e)||_e(e))return e}const mg=/;(?![^(]*\))/g,Vg=/:([^]+)/,bg=/\/\*[^]*?\*\//g;function Cg(e){const t={};return e.replace(bg,"").split(mg).forEach(o=>{if(o){const A=o.split(Vg);A.length>1&&(t[A[0].trim()]=A[1].trim())}}),t}function ht(e){let t="";if(ze(e))t=e;else if(Ee(e))for(let o=0;o<e.length;o++){const A=ht(e[o]);A&&(t+=A+" ")}else if(_e(e))for(const o in e)e[o]&&(t+=o+" ");return t.trim()}function vg(e){if(!e)return null;let{class:t,style:o}=e;return t&&!ze(t)&&(e.class=ht(t)),o&&(e.style=jo(o)),e}const yg="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Ig=Ni(yg);function yc(e){return!!e||e===""}const Ic=e=>!!(e&&e.__v_isRef===!0),nt=e=>ze(e)?e:e==null?"":Ee(e)||_e(e)&&(e.toString===Cc||!ke(e.toString))?Ic(e)?nt(e.value):JSON.stringify(e,Sc,2):String(e),Sc=(e,t)=>Ic(t)?Sc(e,t.value):Hn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((o,[A,l],a)=>(o[TA(A,a)+" =>"]=l,o),{})}:Vc(t)?{[`Set(${t.size})`]:[...t.values()].map(o=>TA(o))}:An(t)?TA(t):_e(t)&&!Ee(t)&&!Go(t)?String(t):t,TA=(e,t="")=>{var o;return An(e)?`Symbol(${(o=e.description)!=null?o:t})`:e};var Sg={NVM_INC:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node",TERM_PROGRAM:"vscode",NODE:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NVM_CD_FLAGS:"-q",INIT_CWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",SHELL:"/bin/zsh",TERM:"xterm-256color",HOMEBREW_REPOSITORY:"/opt/homebrew",TMPDIR:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/",npm_config_global_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",TERM_PROGRAM_VERSION:"1.97.2",MallocNanoZone:"0",ORIGINAL_XDG_CURRENT_DESKTOP:"undefined",ZDOTDIR:"/Users/cesarbacca",COLOR:"1",npm_config_noproxy:"",npm_config_local_prefix:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",NVM_DIR:"/Users/cesarbacca/.nvm",USER:"cesarbacca",COMMAND_MODE:"unix2003",npm_config_globalconfig:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc",Q_SET_PARENT_CHECK:"1",SSH_AUTH_SOCK:"/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners",VSCODE_PROFILE_INITIALIZED:"1",__CF_USER_TEXT_ENCODING:"0x1F5:0x0:0x8",npm_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js",npm_package_integrity:"null",npm_config_access:"public",PATH:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand",_:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite",npm_package_json:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json",SHELL_PID:"39908",USER_ZDOTDIR:"/Users/cesarbacca",__CFBundleIdentifier:"com.microsoft.VSCode",npm_config_init_module:"/Users/cesarbacca/.npm-init.js",npm_config_userconfig:"/Users/cesarbacca/.npmrc",PWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",TTY:"/dev/ttys006",npm_command:"run-script",VSCODE_NONCE:"96a18e43-5963-4f03-b640-682987711925",EDITOR:"vi",npm_lifecycle_event:"build-only",LANG:"es_ES.UTF-8",npm_package_name:"@tmsoft/webphone",VSCODE_GIT_ASKPASS_EXTRA_ARGS:"",XPC_FLAGS:"0x0",npm_config_npm_version:"10.9.2",npm_config_node_gyp:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js",XPC_SERVICE_NAME:"0",npm_package_version:"1.0.6",VSCODE_INJECTION:"1",npm_package_resolved:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",HOME:"/Users/cesarbacca",SHLVL:"5",VSCODE_GIT_ASKPASS_MAIN:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass-main.js",HOMEBREW_PREFIX:"/opt/homebrew",LOGNAME:"cesarbacca",npm_config_cache:"/Users/cesarbacca/.npm",npm_lifecycle_script:"vite build",VSCODE_GIT_IPC_HANDLE:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/vscode-git-ec41402399.sock",NVM_BIN:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin",npm_config_user_agent:"npm/10.9.2 node/v22.14.0 darwin arm64 workspaces/false",GIT_ASKPASS:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass.sh",HOMEBREW_CELLAR:"/opt/homebrew/Cellar",INFOPATH:"/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:",VSCODE_GIT_ASKPASS_NODE:"/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Plugin).app/Contents/MacOS/Code Helper (Plugin)",QTERM_SESSION_ID:"4dd62bd2d127495fb911e54876516fcd",Q_TERM:"1.6.3",COLORTERM:"truecolor",npm_config_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",npm_node_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NODE_ENV:"production",LAUNCH_EDITOR:"code"};let wt;class wg{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=wt,!t&&wt&&(this.index=(wt.scopes||(wt.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,o;if(this.scopes)for(t=0,o=this.scopes.length;t<o;t++)this.scopes[t].pause();for(t=0,o=this.effects.length;t<o;t++)this.effects[t].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let t,o;if(this.scopes)for(t=0,o=this.scopes.length;t<o;t++)this.scopes[t].resume();for(t=0,o=this.effects.length;t<o;t++)this.effects[t].resume()}}run(t){if(this._active){const o=wt;try{return wt=this,t()}finally{wt=o}}}on(){wt=this}off(){wt=this.parent}stop(t){if(this._active){this._active=!1;let o,A;for(o=0,A=this.effects.length;o<A;o++)this.effects[o].stop();for(this.effects.length=0,o=0,A=this.cleanups.length;o<A;o++)this.cleanups[o]();if(this.cleanups.length=0,this.scopes){for(o=0,A=this.scopes.length;o<A;o++)this.scopes[o].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!t){const l=this.parent.scopes.pop();l&&l!==this&&(this.parent.scopes[this.index]=l,l.index=this.index)}this.parent=void 0}}}function Eg(){return wt}let He;const RA=new WeakSet;class wc{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,wt&&wt.active&&wt.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,RA.has(this)&&(RA.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||kc(this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,da(this),Tc(this);const t=He,o=Qt;He=this,Qt=!0;try{return this.fn()}finally{Rc(this),He=t,Qt=o,this.flags&=-3}}stop(){if(this.flags&1){for(let t=this.deps;t;t=t.nextDep)zi(t);this.deps=this.depsTail=void 0,da(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?RA.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){yi(this)&&this.run()}get dirty(){return yi(this)}}let Ec=0,pr,qr;function kc(e,t=!1){if(e.flags|=8,t){e.next=qr,qr=e;return}e.next=pr,pr=e}function Zi(){Ec++}function Pi(){if(--Ec>0)return;if(qr){let t=qr;for(qr=void 0;t;){const o=t.next;t.next=void 0,t.flags&=-9,t=o}}let e;for(;pr;){let t=pr;for(pr=void 0;t;){const o=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(A){e||(e=A)}t=o}}if(e)throw e}function Tc(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Rc(e){let t,o=e.depsTail,A=o;for(;A;){const l=A.prevDep;A.version===-1?(A===o&&(o=l),zi(A),kg(A)):t=A,A.dep.activeLink=A.prevActiveLink,A.prevActiveLink=void 0,A=l}e.deps=t,e.depsTail=o}function yi(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Mc(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Mc(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Ir))return;e.globalVersion=Ir;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&e.deps&&!yi(e)){e.flags&=-3;return}const o=He,A=Qt;He=e,Qt=!0;try{Tc(e);const l=e.fn(e._value);(t.version===0||bn(l,e._value))&&(e._value=l,t.version++)}catch(l){throw t.version++,l}finally{He=o,Qt=A,Rc(e),e.flags&=-3}}function zi(e,t=!1){const{dep:o,prevSub:A,nextSub:l}=e;if(A&&(A.nextSub=l,e.prevSub=void 0),l&&(l.prevSub=A,e.nextSub=void 0),o.subs===e&&(o.subs=A,!A&&o.computed)){o.computed.flags&=-5;for(let a=o.computed.deps;a;a=a.nextDep)zi(a,!0)}!t&&!--o.sc&&o.map&&o.map.delete(o.key)}function kg(e){const{prevDep:t,nextDep:o}=e;t&&(t.nextDep=o,e.prevDep=void 0),o&&(o.prevDep=t,e.nextDep=void 0)}let Qt=!0;const xc=[];function sn(){xc.push(Qt),Qt=!1}function ln(){const e=xc.pop();Qt=e===void 0?!0:e}function da(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const o=He;He=void 0;try{t()}finally{He=o}}}let Ir=0;class Tg{constructor(t,o){this.sub=t,this.dep=o,this.version=o.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class _i{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0}track(t){if(!He||!Qt||He===this.computed)return;let o=this.activeLink;if(o===void 0||o.sub!==He)o=this.activeLink=new Tg(He,this),He.deps?(o.prevDep=He.depsTail,He.depsTail.nextDep=o,He.depsTail=o):He.deps=He.depsTail=o,Oc(o);else if(o.version===-1&&(o.version=this.version,o.nextDep)){const A=o.nextDep;A.prevDep=o.prevDep,o.prevDep&&(o.prevDep.nextDep=A),o.prevDep=He.depsTail,o.nextDep=void 0,He.depsTail.nextDep=o,He.depsTail=o,He.deps===o&&(He.deps=A)}return o}trigger(t){this.version++,Ir++,this.notify(t)}notify(t){Zi();try{Sg.NODE_ENV;for(let o=this.subs;o;o=o.prevSub)o.sub.notify()&&o.sub.dep.notify()}finally{Pi()}}}function Oc(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let A=t.deps;A;A=A.nextDep)Oc(A)}const o=e.dep.subs;o!==e&&(e.prevSub=o,o&&(o.nextSub=e)),e.dep.subs=e}}const Ii=new WeakMap,Dn=Symbol(""),Si=Symbol(""),Sr=Symbol("");function ft(e,t,o){if(Qt&&He){let A=Ii.get(e);A||Ii.set(e,A=new Map);let l=A.get(o);l||(A.set(o,l=new _i),l.map=A,l.key=o),l.track()}}function tn(e,t,o,A,l,a){const n=Ii.get(e);if(!n){Ir++;return}const f=h=>{h&&h.trigger()};if(Zi(),t==="clear")n.forEach(f);else{const h=Ee(e),s=h&&Hi(o);if(h&&o==="length"){const d=Number(A);n.forEach((c,p)=>{(p==="length"||p===Sr||!An(p)&&p>=d)&&f(c)})}else switch((o!==void 0||n.has(void 0))&&f(n.get(o)),s&&f(n.get(Sr)),t){case"add":h?s&&f(n.get("length")):(f(n.get(Dn)),Hn(e)&&f(n.get(Si)));break;case"delete":h||(f(n.get(Dn)),Hn(e)&&f(n.get(Si)));break;case"set":Hn(e)&&f(n.get(Dn));break}}Pi()}function Yn(e){const t=Fe(e);return t===e?t:(ft(t,"iterate",Sr),xt(e)?t:t.map(gt))}function Wo(e){return ft(e=Fe(e),"iterate",Sr),e}const Rg={__proto__:null,[Symbol.iterator](){return MA(this,Symbol.iterator,gt)},concat(...e){return Yn(this).concat(...e.map(t=>Ee(t)?Yn(t):t))},entries(){return MA(this,"entries",e=>(e[1]=gt(e[1]),e))},every(e,t){return zt(this,"every",e,t,void 0,arguments)},filter(e,t){return zt(this,"filter",e,t,o=>o.map(gt),arguments)},find(e,t){return zt(this,"find",e,t,gt,arguments)},findIndex(e,t){return zt(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return zt(this,"findLast",e,t,gt,arguments)},findLastIndex(e,t){return zt(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return zt(this,"forEach",e,t,void 0,arguments)},includes(...e){return xA(this,"includes",e)},indexOf(...e){return xA(this,"indexOf",e)},join(e){return Yn(this).join(e)},lastIndexOf(...e){return xA(this,"lastIndexOf",e)},map(e,t){return zt(this,"map",e,t,void 0,arguments)},pop(){return ar(this,"pop")},push(...e){return ar(this,"push",e)},reduce(e,...t){return fa(this,"reduce",e,t)},reduceRight(e,...t){return fa(this,"reduceRight",e,t)},shift(){return ar(this,"shift")},some(e,t){return zt(this,"some",e,t,void 0,arguments)},splice(...e){return ar(this,"splice",e)},toReversed(){return Yn(this).toReversed()},toSorted(e){return Yn(this).toSorted(e)},toSpliced(...e){return Yn(this).toSpliced(...e)},unshift(...e){return ar(this,"unshift",e)},values(){return MA(this,"values",gt)}};function MA(e,t,o){const A=Wo(e),l=A[t]();return A!==e&&!xt(e)&&(l._next=l.next,l.next=()=>{const a=l._next();return a.value&&(a.value=o(a.value)),a}),l}const Mg=Array.prototype;function zt(e,t,o,A,l,a){const n=Wo(e),f=n!==e&&!xt(e),h=n[t];if(h!==Mg[t]){const c=h.apply(e,a);return f?gt(c):c}let s=o;n!==e&&(f?s=function(c,p){return o.call(this,gt(c),p,e)}:o.length>2&&(s=function(c,p){return o.call(this,c,p,e)}));const d=h.call(n,s,A);return f&&l?l(d):d}function fa(e,t,o,A){const l=Wo(e);let a=o;return l!==e&&(xt(e)?o.length>3&&(a=function(n,f,h){return o.call(this,n,f,h,e)}):a=function(n,f,h){return o.call(this,n,gt(f),h,e)}),l[t](a,...A)}function xA(e,t,o){const A=Fe(e);ft(A,"iterate",Sr);const l=A[t](...o);return(l===-1||l===!1)&&$i(o[0])?(o[0]=Fe(o[0]),A[t](...o)):l}function ar(e,t,o=[]){sn(),Zi();const A=Fe(e)[t].apply(e,o);return Pi(),ln(),A}const xg=Ni("__proto__,__v_isRef,__isVue"),Bc=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(An));function Og(e){An(e)||(e=String(e));const t=Fe(this);return ft(t,"has",e),t.hasOwnProperty(e)}class Uc{constructor(t=!1,o=!1){this._isReadonly=t,this._isShallow=o}get(t,o,A){if(o==="__v_skip")return t.__v_skip;const l=this._isReadonly,a=this._isShallow;if(o==="__v_isReactive")return!l;if(o==="__v_isReadonly")return l;if(o==="__v_isShallow")return a;if(o==="__v_raw")return A===(l?a?Gc:Yc:a?Qc:Fc).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(A)?t:void 0;const n=Ee(t);if(!l){let h;if(n&&(h=Rg[o]))return h;if(o==="hasOwnProperty")return Og}const f=Reflect.get(t,o,ut(t)?t:A);return(An(o)?Bc.has(o):xg(o))||(l||ft(t,"get",o),a)?f:ut(f)?n&&Hi(o)?f:f.value:_e(f)?l?Xi(f):Zo(f):f}}class Dc extends Uc{constructor(t=!1){super(!1,t)}set(t,o,A,l){let a=t[o];if(!this._isShallow){const h=Ln(a);if(!xt(A)&&!Ln(A)&&(a=Fe(a),A=Fe(A)),!Ee(t)&&ut(a)&&!ut(A))return h?!1:(a.value=A,!0)}const n=Ee(t)&&Hi(o)?Number(o)<t.length:Ke(t,o),f=Reflect.set(t,o,A,ut(t)?t:l);return t===Fe(l)&&(n?bn(A,a)&&tn(t,"set",o,A):tn(t,"add",o,A)),f}deleteProperty(t,o){const A=Ke(t,o);t[o];const l=Reflect.deleteProperty(t,o);return l&&A&&tn(t,"delete",o,void 0),l}has(t,o){const A=Reflect.has(t,o);return(!An(o)||!Bc.has(o))&&ft(t,"has",o),A}ownKeys(t){return ft(t,"iterate",Ee(t)?"length":Dn),Reflect.ownKeys(t)}}class Lc extends Uc{constructor(t=!1){super(!0,t)}set(t,o){return!0}deleteProperty(t,o){return!0}}const Bg=new Dc,Ug=new Lc,Dg=new Dc(!0),Lg=new Lc(!0),wi=e=>e,ao=e=>Reflect.getPrototypeOf(e);function Fg(e,t,o){return function(...A){const l=this.__v_raw,a=Fe(l),n=Hn(a),f=e==="entries"||e===Symbol.iterator&&n,h=e==="keys"&&n,s=l[e](...A),d=o?wi:t?Ei:gt;return!t&&ft(a,"iterate",h?Si:Dn),{next(){const{value:c,done:p}=s.next();return p?{value:c,done:p}:{value:f?[d(c[0]),d(c[1])]:d(c),done:p}},[Symbol.iterator](){return this}}}}function uo(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Qg(e,t){const o={get(l){const a=this.__v_raw,n=Fe(a),f=Fe(l);e||(bn(l,f)&&ft(n,"get",l),ft(n,"get",f));const{has:h}=ao(n),s=t?wi:e?Ei:gt;if(h.call(n,l))return s(a.get(l));if(h.call(n,f))return s(a.get(f));a!==n&&a.get(l)},get size(){const l=this.__v_raw;return!e&&ft(Fe(l),"iterate",Dn),Reflect.get(l,"size",l)},has(l){const a=this.__v_raw,n=Fe(a),f=Fe(l);return e||(bn(l,f)&&ft(n,"has",l),ft(n,"has",f)),l===f?a.has(l):a.has(l)||a.has(f)},forEach(l,a){const n=this,f=n.__v_raw,h=Fe(f),s=t?wi:e?Ei:gt;return!e&&ft(h,"iterate",Dn),f.forEach((d,c)=>l.call(a,s(d),s(c),n))}};return et(o,e?{add:uo("add"),set:uo("set"),delete:uo("delete"),clear:uo("clear")}:{add(l){!t&&!xt(l)&&!Ln(l)&&(l=Fe(l));const a=Fe(this);return ao(a).has.call(a,l)||(a.add(l),tn(a,"add",l,l)),this},set(l,a){!t&&!xt(a)&&!Ln(a)&&(a=Fe(a));const n=Fe(this),{has:f,get:h}=ao(n);let s=f.call(n,l);s||(l=Fe(l),s=f.call(n,l));const d=h.call(n,l);return n.set(l,a),s?bn(a,d)&&tn(n,"set",l,a):tn(n,"add",l,a),this},delete(l){const a=Fe(this),{has:n,get:f}=ao(a);let h=n.call(a,l);h||(l=Fe(l),h=n.call(a,l)),f&&f.call(a,l);const s=a.delete(l);return h&&tn(a,"delete",l,void 0),s},clear(){const l=Fe(this),a=l.size!==0,n=l.clear();return a&&tn(l,"clear",void 0,void 0),n}}),["keys","values","entries",Symbol.iterator].forEach(l=>{o[l]=Fg(l,e,t)}),o}function Ho(e,t){const o=Qg(e,t);return(A,l,a)=>l==="__v_isReactive"?!e:l==="__v_isReadonly"?e:l==="__v_raw"?A:Reflect.get(Ke(o,l)&&l in A?o:A,l,a)}const Yg={get:Ho(!1,!1)},Gg={get:Ho(!1,!0)},Kg={get:Ho(!0,!1)},Jg={get:Ho(!0,!0)},Fc=new WeakMap,Qc=new WeakMap,Yc=new WeakMap,Gc=new WeakMap;function Ng(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function jg(e){return e.__v_skip||!Object.isExtensible(e)?0:Ng(gg(e))}function Zo(e){return Ln(e)?e:Po(e,!1,Bg,Yg,Fc)}function Wg(e){return Po(e,!1,Dg,Gg,Qc)}function Xi(e){return Po(e,!0,Ug,Kg,Yc)}function co(e){return Po(e,!0,Lg,Jg,Gc)}function Po(e,t,o,A,l){if(!_e(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const a=l.get(e);if(a)return a;const n=jg(e);if(n===0)return e;const f=new Proxy(e,n===2?A:o);return l.set(e,f),f}function Zn(e){return Ln(e)?Zn(e.__v_raw):!!(e&&e.__v_isReactive)}function Ln(e){return!!(e&&e.__v_isReadonly)}function xt(e){return!!(e&&e.__v_isShallow)}function $i(e){return e?!!e.__v_raw:!1}function Fe(e){const t=e&&e.__v_raw;return t?Fe(t):e}function Hg(e){return!Ke(e,"__v_skip")&&Object.isExtensible(e)&&vc(e,"__v_skip",!0),e}const gt=e=>_e(e)?Zo(e):e,Ei=e=>_e(e)?Xi(e):e;function ut(e){return e?e.__v_isRef===!0:!1}function Je(e){return Zg(e,!1)}function Zg(e,t){return ut(e)?e:new Pg(e,t)}class Pg{constructor(t,o){this.dep=new _i,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=o?t:Fe(t),this._value=o?t:gt(t),this.__v_isShallow=o}get value(){return this.dep.track(),this._value}set value(t){const o=this._rawValue,A=this.__v_isShallow||xt(t)||Ln(t);t=A?t:Fe(t),bn(t,o)&&(this._rawValue=t,this._value=A?t:gt(t),this.dep.trigger())}}function Kc(e){return ut(e)?e.value:e}const zg={get:(e,t,o)=>t==="__v_raw"?e:Kc(Reflect.get(e,t,o)),set:(e,t,o,A)=>{const l=e[t];return ut(l)&&!ut(o)?(l.value=o,!0):Reflect.set(e,t,o,A)}};function Jc(e){return Zn(e)?e:new Proxy(e,zg)}class _g{constructor(t,o,A){this.fn=t,this.setter=o,this._value=void 0,this.dep=new _i(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Ir-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!o,this.isSSR=A}notify(){if(this.flags|=16,!(this.flags&8)&&He!==this)return kc(this,!0),!0}get value(){const t=this.dep.track();return Mc(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Xg(e,t,o=!1){let A,l;return ke(e)?A=e:(A=e.get,l=e.set),new _g(A,l,o)}const fo={},ko=new WeakMap;let xn;function $g(e,t=!1,o=xn){if(o){let A=ko.get(o);A||ko.set(o,A=[]),A.push(e)}}function eh(e,t,o=We){const{immediate:A,deep:l,once:a,scheduler:n,augmentJob:f,call:h}=o,s=C=>l?C:xt(C)||l===!1||l===0?nn(C,1):nn(C);let d,c,p,V,M=!1,T=!1;if(ut(e)?(c=()=>e.value,M=xt(e)):Zn(e)?(c=()=>s(e),M=!0):Ee(e)?(T=!0,M=e.some(C=>Zn(C)||xt(C)),c=()=>e.map(C=>{if(ut(C))return C.value;if(Zn(C))return s(C);if(ke(C))return h?h(C,2):C()})):ke(e)?t?c=h?()=>h(e,2):e:c=()=>{if(p){sn();try{p()}finally{ln()}}const C=xn;xn=d;try{return h?h(e,3,[V]):e(V)}finally{xn=C}}:c=Ft,t&&l){const C=c,v=l===!0?1/0:l;c=()=>nn(C(),v)}const R=Eg(),I=()=>{d.stop(),R&&R.active&&Wi(R.effects,d)};if(a&&t){const C=t;t=(...v)=>{C(...v),I()}}let x=T?new Array(e.length).fill(fo):fo;const E=C=>{if(!(!(d.flags&1)||!d.dirty&&!C))if(t){const v=d.run();if(l||M||(T?v.some((O,L)=>bn(O,x[L])):bn(v,x))){p&&p();const O=xn;xn=d;try{const L=[v,x===fo?void 0:T&&x[0]===fo?[]:x,V];h?h(t,3,L):t(...L),x=v}finally{xn=O}}}else d.run()};return f&&f(E),d=new wc(c),d.scheduler=n?()=>n(E,!1):E,V=C=>$g(C,!1,d),p=d.onStop=()=>{const C=ko.get(d);if(C){if(h)h(C,4);else for(const v of C)v();ko.delete(d)}},t?A?E(!0):x=d.run():n?n(E.bind(null,!0),!0):d.run(),I.pause=d.pause.bind(d),I.resume=d.resume.bind(d),I.stop=I,I}function nn(e,t=1/0,o){if(t<=0||!_e(e)||e.__v_skip||(o=o||new Set,o.has(e)))return e;if(o.add(e),t--,ut(e))nn(e.value,t,o);else if(Ee(e))for(let A=0;A<e.length;A++)nn(e[A],t,o);else if(Vc(e)||Hn(e))e.forEach(A=>{nn(A,t,o)});else if(Go(e)){for(const A in e)nn(e[A],t,o);for(const A of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,A)&&nn(e[A],t,o)}return e}var hn={NVM_INC:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node",TERM_PROGRAM:"vscode",NODE:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NVM_CD_FLAGS:"-q",INIT_CWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",SHELL:"/bin/zsh",TERM:"xterm-256color",HOMEBREW_REPOSITORY:"/opt/homebrew",TMPDIR:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/",npm_config_global_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",TERM_PROGRAM_VERSION:"1.97.2",MallocNanoZone:"0",ORIGINAL_XDG_CURRENT_DESKTOP:"undefined",ZDOTDIR:"/Users/cesarbacca",COLOR:"1",npm_config_noproxy:"",npm_config_local_prefix:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",NVM_DIR:"/Users/cesarbacca/.nvm",USER:"cesarbacca",COMMAND_MODE:"unix2003",npm_config_globalconfig:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc",Q_SET_PARENT_CHECK:"1",SSH_AUTH_SOCK:"/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners",VSCODE_PROFILE_INITIALIZED:"1",__CF_USER_TEXT_ENCODING:"0x1F5:0x0:0x8",npm_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js",npm_package_integrity:"null",npm_config_access:"public",PATH:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand",_:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite",npm_package_json:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json",SHELL_PID:"39908",USER_ZDOTDIR:"/Users/cesarbacca",__CFBundleIdentifier:"com.microsoft.VSCode",npm_config_init_module:"/Users/cesarbacca/.npm-init.js",npm_config_userconfig:"/Users/cesarbacca/.npmrc",PWD:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",TTY:"/dev/ttys006",npm_command:"run-script",VSCODE_NONCE:"96a18e43-5963-4f03-b640-682987711925",EDITOR:"vi",npm_lifecycle_event:"build-only",LANG:"es_ES.UTF-8",npm_package_name:"@tmsoft/webphone",VSCODE_GIT_ASKPASS_EXTRA_ARGS:"",XPC_FLAGS:"0x0",npm_config_npm_version:"10.9.2",npm_config_node_gyp:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js",XPC_SERVICE_NAME:"0",npm_package_version:"1.0.6",VSCODE_INJECTION:"1",npm_package_resolved:"/Users/cesarbacca/Documents/GitHub/company/webphone-lib",HOME:"/Users/cesarbacca",SHLVL:"5",VSCODE_GIT_ASKPASS_MAIN:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass-main.js",HOMEBREW_PREFIX:"/opt/homebrew",LOGNAME:"cesarbacca",npm_config_cache:"/Users/cesarbacca/.npm",npm_lifecycle_script:"vite build",VSCODE_GIT_IPC_HANDLE:"/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/vscode-git-ec41402399.sock",NVM_BIN:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin",npm_config_user_agent:"npm/10.9.2 node/v22.14.0 darwin arm64 workspaces/false",GIT_ASKPASS:"/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass.sh",HOMEBREW_CELLAR:"/opt/homebrew/Cellar",INFOPATH:"/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:",VSCODE_GIT_ASKPASS_NODE:"/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Plugin).app/Contents/MacOS/Code Helper (Plugin)",QTERM_SESSION_ID:"4dd62bd2d127495fb911e54876516fcd",Q_TERM:"1.6.3",COLORTERM:"truecolor",npm_config_prefix:"/Users/cesarbacca/.nvm/versions/node/v22.14.0",npm_node_execpath:"/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node",NODE_ENV:"production",LAUNCH_EDITOR:"code"};const mr=[];let OA=!1;function th(e,...t){if(OA)return;OA=!0,sn();const o=mr.length?mr[mr.length-1].component:null,A=o&&o.appContext.config.warnHandler,l=nh();if(A)tr(A,o,11,[e+t.map(a=>{var n,f;return(f=(n=a.toString)==null?void 0:n.call(a))!=null?f:JSON.stringify(a)}).join(""),o&&o.proxy,l.map(({vnode:a})=>`at <${xd(o,a.type)}>`).join(`
|
|
6
6
|
`),l]);else{const a=[`[Vue warn]: ${e}`,...t];l.length&&a.push(`
|
|
7
7
|
`,...rh(l)),console.warn(...a)}ln(),OA=!1}function nh(){let e=mr[mr.length-1];if(!e)return[];const t=[];for(;e;){const o=t[0];o&&o.vnode===e?o.recurseCount++:t.push({vnode:e,recurseCount:0});const A=e.component&&e.component.parent;e=A&&A.vnode}return t}function rh(e){const t=[];return e.forEach((o,A)=>{t.push(...A===0?[]:[`
|
|
8
8
|
`],...oh(o))}),t}function oh({vnode:e,recurseCount:t}){const o=t>0?`... (${t} recursive calls)`:"",A=e.component?e.component.parent==null:!1,l=` at <${xd(e.component,e.type,A)}`,a=">"+o;return e.props?[l,...Ah(e.props),a]:[l+a]}function Ah(e){const t=[],o=Object.keys(e);return o.slice(0,3).forEach(A=>{t.push(...Nc(A,e[A]))}),o.length>3&&t.push(" ..."),t}function Nc(e,t,o){return ze(t)?(t=JSON.stringify(t),o?t:[`${e}=${t}`]):typeof t=="number"||typeof t=="boolean"||t==null?o?t:[`${e}=${t}`]:ut(t)?(t=Nc(e,Fe(t.value),!0),o?t:[`${e}=Ref<`,t,">"]):ke(t)?[`${e}=fn${t.name?`<${t.name}>`:""}`]:(t=Fe(t),o?t:[`${e}=`,t])}function tr(e,t,o,A){try{return A?e(...A):e()}catch(l){zo(l,t,o)}}function Yt(e,t,o,A){if(ke(e)){const l=tr(e,t,o,A);return l&&bc(l)&&l.catch(a=>{zo(a,t,o)}),l}if(Ee(e)){const l=[];for(let a=0;a<e.length;a++)l.push(Yt(e[a],t,o,A));return l}}function zo(e,t,o,A=!0){const l=t?t.vnode:null,{errorHandler:a,throwUnhandledErrorInProduction:n}=t&&t.appContext.config||We;if(t){let f=t.parent;const h=t.proxy,s=`https://vuejs.org/error-reference/#runtime-${o}`;for(;f;){const d=f.ec;if(d){for(let c=0;c<d.length;c++)if(d[c](e,h,s)===!1)return}f=f.parent}if(a){sn(),tr(a,null,10,[e,h,s]),ln();return}}ih(e,o,l,A,n)}function ih(e,t,o,A=!0,l=!1){if(l)throw e;console.error(e)}const Vt=[];let Nt=-1;const Pn=[];let pn=null,Gn=0;const jc=Promise.resolve();let To=null;function es(e){const t=To||jc;return e?t.then(this?e.bind(this):e):t}function sh(e){let t=Nt+1,o=Vt.length;for(;t<o;){const A=t+o>>>1,l=Vt[A],a=wr(l);a<e||a===e&&l.flags&2?t=A+1:o=A}return t}function ts(e){if(!(e.flags&1)){const t=wr(e),o=Vt[Vt.length-1];!o||!(e.flags&2)&&t>=wr(o)?Vt.push(e):Vt.splice(sh(t),0,e),e.flags|=1,Wc()}}function Wc(){To||(To=jc.then(Zc))}function lh(e){Ee(e)?Pn.push(...e):pn&&e.id===-1?pn.splice(Gn+1,0,e):e.flags&1||(Pn.push(e),e.flags|=1),Wc()}function ga(e,t,o=Nt+1){for(;o<Vt.length;o++){const A=Vt[o];if(A&&A.flags&2){if(e&&A.id!==e.uid)continue;Vt.splice(o,1),o--,A.flags&4&&(A.flags&=-2),A(),A.flags&4||(A.flags&=-2)}}}function Hc(e){if(Pn.length){const t=[...new Set(Pn)].sort((o,A)=>wr(o)-wr(A));if(Pn.length=0,pn){pn.push(...t);return}for(pn=t,Gn=0;Gn<pn.length;Gn++){const o=pn[Gn];o.flags&4&&(o.flags&=-2),o.flags&8||o(),o.flags&=-2}pn=null,Gn=0}}const wr=e=>e.id==null?e.flags&2?-1:1/0:e.id;function Zc(e){const t=Ft;try{for(Nt=0;Nt<Vt.length;Nt++){const o=Vt[Nt];o&&!(o.flags&8)&&(hn.NODE_ENV!=="production"&&t(o),o.flags&4&&(o.flags&=-2),tr(o,o.i,o.i?15:14),o.flags&4||(o.flags&=-2))}}finally{for(;Nt<Vt.length;Nt++){const o=Vt[Nt];o&&(o.flags&=-2)}Nt=-1,Vt.length=0,Hc(),To=null,(Vt.length||Pn.length)&&Zc()}}let st=null,Pc=null;function Ro(e){const t=st;return st=e,Pc=e&&e.type.__scopeId||null,t}function Pe(e,t=st,o){if(!t||e._n)return e;const A=(...l)=>{A._d&&ka(-1);const a=Ro(t);let n;try{n=e(...l)}finally{Ro(a),A._d&&ka(1)}return n};return A._n=!0,A._c=!0,A._d=!0,A}function ns(e,t){if(st===null)return e;const o=nA(st),A=e.dirs||(e.dirs=[]);for(let l=0;l<t.length;l++){let[a,n,f,h=We]=t[l];a&&(ke(a)&&(a={mounted:a,updated:a}),a.deep&&nn(n),A.push({dir:a,instance:o,value:n,oldValue:void 0,arg:f,modifiers:h}))}return e}function kn(e,t,o,A){const l=e.dirs,a=t&&t.dirs;for(let n=0;n<l.length;n++){const f=l[n];a&&(f.oldValue=a[n].value);let h=f.dir[A];h&&(sn(),Yt(h,o,8,[e.el,f,e,t]),ln())}}const zc=Symbol("_vte"),_c=e=>e.__isTeleport,Vr=e=>e&&(e.disabled||e.disabled===""),ha=e=>e&&(e.defer||e.defer===""),pa=e=>typeof SVGElement<"u"&&e instanceof SVGElement,qa=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,ki=(e,t)=>{const o=e&&e.to;return ze(o)?t?t(o):null:o},Xc={name:"Teleport",__isTeleport:!0,process(e,t,o,A,l,a,n,f,h,s){const{mc:d,pc:c,pbc:p,o:{insert:V,querySelector:M,createText:T,createComment:R}}=s,I=Vr(t.props);let{shapeFlag:x,children:E,dynamicChildren:C}=t;if(e==null){const v=t.el=T(""),O=t.anchor=T("");V(v,o,A),V(O,o,A);const L=(D,N)=>{x&16&&(l&&l.isCE&&(l.ce._teleportTarget=D),d(E,D,N,l,a,n,f,h))},k=()=>{const D=t.target=ki(t.props,M),N=$c(D,t,T,V);D&&(n!=="svg"&&pa(D)?n="svg":n!=="mathml"&&qa(D)&&(n="mathml"),I||(L(D,N),vo(t,!1)))};I&&(L(o,O),vo(t,!0)),ha(t.props)?mt(()=>{k(),t.el.__isMounted=!0},a):k()}else{if(ha(t.props)&&!e.el.__isMounted){mt(()=>{Xc.process(e,t,o,A,l,a,n,f,h,s),delete e.el.__isMounted},a);return}t.el=e.el,t.targetStart=e.targetStart;const v=t.anchor=e.anchor,O=t.target=e.target,L=t.targetAnchor=e.targetAnchor,k=Vr(e.props),D=k?o:O,N=k?v:L;if(n==="svg"||pa(O)?n="svg":(n==="mathml"||qa(O))&&(n="mathml"),C?(p(e.dynamicChildren,C,D,l,a,n,f),as(e,t,!0)):h||c(e,t,D,N,l,a,n,f,!1),I)k?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):go(t,o,v,s,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const W=t.target=ki(t.props,M);W&&go(t,W,null,s,0)}else k&&go(t,O,L,s,1);vo(t,I)}},remove(e,t,o,{um:A,o:{remove:l}},a){const{shapeFlag:n,children:f,anchor:h,targetStart:s,targetAnchor:d,target:c,props:p}=e;if(c&&(l(s),l(d)),a&&l(h),n&16){const V=a||!Vr(p);for(let M=0;M<f.length;M++){const T=f[M];A(T,t,o,V,!!T.dynamicChildren)}}},move:go,hydrate:ah};function go(e,t,o,{o:{insert:A},m:l},a=2){a===0&&A(e.targetAnchor,t,o);const{el:n,anchor:f,shapeFlag:h,children:s,props:d}=e,c=a===2;if(c&&A(n,t,o),(!c||Vr(d))&&h&16)for(let p=0;p<s.length;p++)l(s[p],t,o,2);c&&A(f,t,o)}function ah(e,t,o,A,l,a,{o:{nextSibling:n,parentNode:f,querySelector:h,insert:s,createText:d}},c){const p=t.target=ki(t.props,h);if(p){const V=Vr(t.props),M=p._lpa||p.firstChild;if(t.shapeFlag&16)if(V)t.anchor=c(n(e),t,f(e),o,A,l,a),t.targetStart=M,t.targetAnchor=M&&n(M);else{t.anchor=n(e);let T=M;for(;T;){if(T&&T.nodeType===8){if(T.data==="teleport start anchor")t.targetStart=T;else if(T.data==="teleport anchor"){t.targetAnchor=T,p._lpa=t.targetAnchor&&n(t.targetAnchor);break}}T=n(T)}t.targetAnchor||$c(p,t,d,s),c(M&&n(M),t,p,o,A,l,a)}vo(t,V)}return t.anchor&&n(t.anchor)}const uh=Xc;function vo(e,t){const o=e.ctx;if(o&&o.ut){let A,l;for(t?(A=e.el,l=e.anchor):(A=e.targetStart,l=e.targetAnchor);A&&A!==l;)A.nodeType===1&&A.setAttribute("data-v-owner",o.uid),A=A.nextSibling;o.ut()}}function $c(e,t,o,A){const l=t.targetStart=o(""),a=t.targetAnchor=o("");return l[zc]=a,e&&(A(l,e),A(a,e)),a}const qn=Symbol("_leaveCb"),ho=Symbol("_enterCb");function ch(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return $o(()=>{e.isMounted=!0}),os(()=>{e.isUnmounting=!0}),e}const kt=[Function,Array],ed={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:kt,onEnter:kt,onAfterEnter:kt,onEnterCancelled:kt,onBeforeLeave:kt,onLeave:kt,onAfterLeave:kt,onLeaveCancelled:kt,onBeforeAppear:kt,onAppear:kt,onAfterAppear:kt,onAppearCancelled:kt},td=e=>{const t=e.subTree;return t.component?td(t.component):t},dh={name:"BaseTransition",props:ed,setup(e,{slots:t}){const o=kd(),A=ch();return()=>{const l=t.default&&od(t.default(),!0);if(!l||!l.length)return;const a=nd(l),n=Fe(e),{mode:f}=n;if(A.isLeaving)return BA(a);const h=ma(a);if(!h)return BA(a);let s=Ti(h,n,A,o,c=>s=c);h.type!==bt&&Er(h,s);let d=o.subTree&&ma(o.subTree);if(d&&d.type!==bt&&!On(h,d)&&td(o).type!==bt){let c=Ti(d,n,A,o);if(Er(d,c),f==="out-in"&&h.type!==bt)return A.isLeaving=!0,c.afterLeave=()=>{A.isLeaving=!1,o.job.flags&8||o.update(),delete c.afterLeave,d=void 0},BA(a);f==="in-out"&&h.type!==bt?c.delayLeave=(p,V,M)=>{const T=rd(A,d);T[String(d.key)]=d,p[qn]=()=>{V(),p[qn]=void 0,delete s.delayedLeave,d=void 0},s.delayedLeave=()=>{M(),delete s.delayedLeave,d=void 0}}:d=void 0}else d&&(d=void 0);return a}}};function nd(e){let t=e[0];if(e.length>1){for(const o of e)if(o.type!==bt){t=o;break}}return t}const fh=dh;function rd(e,t){const{leavingVNodes:o}=e;let A=o.get(t.type);return A||(A=Object.create(null),o.set(t.type,A)),A}function Ti(e,t,o,A,l){const{appear:a,mode:n,persisted:f=!1,onBeforeEnter:h,onEnter:s,onAfterEnter:d,onEnterCancelled:c,onBeforeLeave:p,onLeave:V,onAfterLeave:M,onLeaveCancelled:T,onBeforeAppear:R,onAppear:I,onAfterAppear:x,onAppearCancelled:E}=t,C=String(e.key),v=rd(o,e),O=(D,N)=>{D&&Yt(D,A,9,N)},L=(D,N)=>{const W=N[1];O(D,N),Ee(D)?D.every(B=>B.length<=1)&&W():D.length<=1&&W()},k={mode:n,persisted:f,beforeEnter(D){let N=h;if(!o.isMounted)if(a)N=R||h;else return;D[qn]&&D[qn](!0);const W=v[C];W&&On(e,W)&&W.el[qn]&&W.el[qn](),O(N,[D])},enter(D){let N=s,W=d,B=c;if(!o.isMounted)if(a)N=I||s,W=x||d,B=E||c;else return;let H=!1;const y=D[ho]=S=>{H||(H=!0,S?O(B,[D]):O(W,[D]),k.delayedLeave&&k.delayedLeave(),D[ho]=void 0)};N?L(N,[D,y]):y()},leave(D,N){const W=String(e.key);if(D[ho]&&D[ho](!0),o.isUnmounting)return N();O(p,[D]);let B=!1;const H=D[qn]=y=>{B||(B=!0,N(),y?O(T,[D]):O(M,[D]),D[qn]=void 0,v[W]===e&&delete v[W])};v[W]=e,V?L(V,[D,H]):H()},clone(D){const N=Ti(D,t,o,A,l);return l&&l(N),N}};return k}function BA(e){if(_o(e))return e=Cn(e),e.children=null,e}function ma(e){if(!_o(e))return _c(e.type)&&e.children?nd(e.children):e;const{shapeFlag:t,children:o}=e;if(o){if(t&16)return o[0];if(t&32&&ke(o.default))return o.default()}}function Er(e,t){e.shapeFlag&6&&e.component?(e.transition=t,Er(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function od(e,t=!1,o){let A=[],l=0;for(let a=0;a<e.length;a++){let n=e[a];const f=o==null?n.key:String(o)+String(n.key!=null?n.key:a);n.type===$e?(n.patchFlag&128&&l++,A=A.concat(od(n.children,t,f))):(t||n.type!==bt)&&A.push(f!=null?Cn(n,{key:f}):n)}if(l>1)for(let a=0;a<A.length;a++)A[a].patchFlag=-2;return A}/*! #__NO_SIDE_EFFECTS__ */function rs(e,t){return ke(e)?et({name:e.name},t,{setup:e}):e}function Ad(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}function Mo(e,t,o,A,l=!1){if(Ee(e)){e.forEach((M,T)=>Mo(M,t&&(Ee(t)?t[T]:t),o,A,l));return}if(zn(A)&&!l){A.shapeFlag&512&&A.type.__asyncResolved&&A.component.subTree.component&&Mo(e,t,o,A.component.subTree);return}const a=A.shapeFlag&4?nA(A.component):A.el,n=l?null:a,{i:f,r:h}=e,s=t&&t.r,d=f.refs===We?f.refs={}:f.refs,c=f.setupState,p=Fe(c),V=c===We?()=>!1:M=>Ke(p,M);if(s!=null&&s!==h&&(ze(s)?(d[s]=null,V(s)&&(c[s]=null)):ut(s)&&(s.value=null)),ke(h))tr(h,f,12,[n,d]);else{const M=ze(h),T=ut(h);if(M||T){const R=()=>{if(e.f){const I=M?V(h)?c[h]:d[h]:h.value;l?Ee(I)&&Wi(I,a):Ee(I)?I.includes(a)||I.push(a):M?(d[h]=[a],V(h)&&(c[h]=d[h])):(h.value=[a],e.k&&(d[e.k]=h.value))}else M?(d[h]=n,V(h)&&(c[h]=n)):T&&(h.value=n,e.k&&(d[e.k]=n))};n?(R.id=-1,mt(R,o)):R()}}}No().requestIdleCallback;No().cancelIdleCallback;const zn=e=>!!e.type.__asyncLoader,_o=e=>e.type.__isKeepAlive;function gh(e,t){id(e,"a",t)}function hh(e,t){id(e,"da",t)}function id(e,t,o=At){const A=e.__wdc||(e.__wdc=()=>{let l=o;for(;l;){if(l.isDeactivated)return;l=l.parent}return e()});if(Xo(t,A,o),o){let l=o.parent;for(;l&&l.parent;)_o(l.parent.vnode)&&ph(A,t,o,l),l=l.parent}}function ph(e,t,o,A){const l=Xo(t,e,A,!0);sd(()=>{Wi(A[t],l)},o)}function Xo(e,t,o=At,A=!1){if(o){const l=o[e]||(o[e]=[]),a=t.__weh||(t.__weh=(...n)=>{sn();const f=Wr(o),h=Yt(t,o,e,n);return f(),ln(),h});return A?l.unshift(a):l.push(a),a}}const an=e=>(t,o=At)=>{(!Mr||e==="sp")&&Xo(e,(...A)=>t(...A),o)},qh=an("bm"),$o=an("m"),mh=an("bu"),Vh=an("u"),os=an("bum"),sd=an("um"),bh=an("sp"),Ch=an("rtg"),vh=an("rtc");function yh(e,t=At){Xo("ec",e,t)}const As="components",Ih="directives";function Ye(e,t){return ss(As,e,!0,t)||e}const ld=Symbol.for("v-ndc");function kr(e){return ze(e)?ss(As,e,!1)||e:e||ld}function is(e){return ss(Ih,e)}function ss(e,t,o=!0,A=!1){const l=st||At;if(l){const a=l.type;if(e===As){const f=Md(a,!1);if(f&&(f===t||f===Ct(t)||f===Jo(Ct(t))))return a}const n=Va(l[e]||a[e],t)||Va(l.appContext[e],t);return!n&&A?a:n}}function Va(e,t){return e&&(e[t]||e[Ct(t)]||e[Jo(Ct(t))])}function xo(e,t,o,A){let l;const a=o,n=Ee(e);if(n||ze(e)){const f=n&&Zn(e);let h=!1;f&&(h=!xt(e),e=Wo(e)),l=new Array(e.length);for(let s=0,d=e.length;s<d;s++)l[s]=t(h?gt(e[s]):e[s],s,void 0,a)}else if(typeof e=="number"){l=new Array(e);for(let f=0;f<e;f++)l[f]=t(f+1,f,void 0,a)}else if(_e(e))if(e[Symbol.iterator])l=Array.from(e,(f,h)=>t(f,h,void 0,a));else{const f=Object.keys(e);l=new Array(f.length);for(let h=0,s=f.length;h<s;h++){const d=f[h];l[h]=t(e[d],d,h,a)}}else l=[];return l}function Sh(e,t){for(let o=0;o<t.length;o++){const A=t[o];if(Ee(A))for(let l=0;l<A.length;l++)e[A[l].name]=A[l].fn;else A&&(e[A.name]=A.key?(...l)=>{const a=A.fn(...l);return a&&(a.key=A.key),a}:A.fn)}return e}function Qe(e,t,o={},A,l){if(st.ce||st.parent&&zn(st.parent)&&st.parent.ce)return t!=="default"&&(o.name=t),de(),Oe($e,null,[Re("slot",o,A&&A())],64);let a=e[t];a&&a._c&&(a._d=!1),de();const n=a&&ad(a(o)),f=o.key||n&&n.key,h=Oe($e,{key:(f&&!An(f)?f:`_${t}`)+(!n&&A?"_fb":"")},n||(A?A():[]),n&&e._===1?64:-2);return h.scopeId&&(h.slotScopeIds=[h.scopeId+"-s"]),a&&a._c&&(a._d=!0),h}function ad(e){return e.some(t=>Rr(t)?!(t.type===bt||t.type===$e&&!ad(t.children)):!0)?e:null}const Ri=e=>e?Td(e)?nA(e):Ri(e.parent):null,br=et(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Ri(e.parent),$root:e=>Ri(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>cd(e),$forceUpdate:e=>e.f||(e.f=()=>{ts(e.update)}),$nextTick:e=>e.n||(e.n=es.bind(e.proxy)),$watch:e=>Zh.bind(e)}),UA=(e,t)=>e!==We&&!e.__isScriptSetup&&Ke(e,t),wh={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:o,setupState:A,data:l,props:a,accessCache:n,type:f,appContext:h}=e;let s;if(t[0]!=="$"){const V=n[t];if(V!==void 0)switch(V){case 1:return A[t];case 2:return l[t];case 4:return o[t];case 3:return a[t]}else{if(UA(A,t))return n[t]=1,A[t];if(l!==We&&Ke(l,t))return n[t]=2,l[t];if((s=e.propsOptions[0])&&Ke(s,t))return n[t]=3,a[t];if(o!==We&&Ke(o,t))return n[t]=4,o[t];Mi&&(n[t]=0)}}const d=br[t];let c,p;if(d)return t==="$attrs"&&ft(e.attrs,"get",""),d(e);if((c=f.__cssModules)&&(c=c[t]))return c;if(o!==We&&Ke(o,t))return n[t]=4,o[t];if(p=h.config.globalProperties,Ke(p,t))return p[t]},set({_:e},t,o){const{data:A,setupState:l,ctx:a}=e;return UA(l,t)?(l[t]=o,!0):A!==We&&Ke(A,t)?(A[t]=o,!0):Ke(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(a[t]=o,!0)},has({_:{data:e,setupState:t,accessCache:o,ctx:A,appContext:l,propsOptions:a}},n){let f;return!!o[n]||e!==We&&Ke(e,n)||UA(t,n)||(f=a[0])&&Ke(f,n)||Ke(A,n)||Ke(br,n)||Ke(l.config.globalProperties,n)},defineProperty(e,t,o){return o.get!=null?e._.accessCache[t]=0:Ke(o,"value")&&this.set(e,t,o.value,null),Reflect.defineProperty(e,t,o)}};function ba(e){return Ee(e)?e.reduce((t,o)=>(t[o]=null,t),{}):e}let Mi=!0;function Eh(e){const t=cd(e),o=e.proxy,A=e.ctx;Mi=!1,t.beforeCreate&&Ca(t.beforeCreate,e,"bc");const{data:l,computed:a,methods:n,watch:f,provide:h,inject:s,created:d,beforeMount:c,mounted:p,beforeUpdate:V,updated:M,activated:T,deactivated:R,beforeDestroy:I,beforeUnmount:x,destroyed:E,unmounted:C,render:v,renderTracked:O,renderTriggered:L,errorCaptured:k,serverPrefetch:D,expose:N,inheritAttrs:W,components:B,directives:H,filters:y}=t;if(s&&kh(s,A,null),n)for(const U in n){const J=n[U];ke(J)&&(A[U]=J.bind(o))}if(l){const U=l.call(o,o);_e(U)&&(e.data=Zo(U))}if(Mi=!0,a)for(const U in a){const J=a[U],Z=ke(J)?J.bind(o,o):ke(J.get)?J.get.bind(o,o):Ft,G=!ke(J)&&ke(J.set)?J.set.bind(o):Ft,q=ot({get:Z,set:G});Object.defineProperty(A,U,{enumerable:!0,configurable:!0,get:()=>q.value,set:w=>q.value=w})}if(f)for(const U in f)ud(f[U],A,o,U);if(h){const U=ke(h)?h.call(o):h;Reflect.ownKeys(U).forEach(J=>{Bh(J,U[J])})}d&&Ca(d,e,"c");function Q(U,J){Ee(J)?J.forEach(Z=>U(Z.bind(o))):J&&U(J.bind(o))}if(Q(qh,c),Q($o,p),Q(mh,V),Q(Vh,M),Q(gh,T),Q(hh,R),Q(yh,k),Q(vh,O),Q(Ch,L),Q(os,x),Q(sd,C),Q(bh,D),Ee(N))if(N.length){const U=e.exposed||(e.exposed={});N.forEach(J=>{Object.defineProperty(U,J,{get:()=>o[J],set:Z=>o[J]=Z})})}else e.exposed||(e.exposed={});v&&e.render===Ft&&(e.render=v),W!=null&&(e.inheritAttrs=W),B&&(e.components=B),H&&(e.directives=H),D&&Ad(e)}function kh(e,t,o=Ft){Ee(e)&&(e=xi(e));for(const A in e){const l=e[A];let a;_e(l)?"default"in l?a=yo(l.from||A,l.default,!0):a=yo(l.from||A):a=yo(l),ut(a)?Object.defineProperty(t,A,{enumerable:!0,configurable:!0,get:()=>a.value,set:n=>a.value=n}):t[A]=a}}function Ca(e,t,o){Yt(Ee(e)?e.map(A=>A.bind(t.proxy)):e.bind(t.proxy),t,o)}function ud(e,t,o,A){let l=A.includes(".")?yd(o,A):()=>o[A];if(ze(e)){const a=t[e];ke(a)&&rn(l,a)}else if(ke(e))rn(l,e.bind(o));else if(_e(e))if(Ee(e))e.forEach(a=>ud(a,t,o,A));else{const a=ke(e.handler)?e.handler.bind(o):t[e.handler];ke(a)&&rn(l,a,e)}}function cd(e){const t=e.type,{mixins:o,extends:A}=t,{mixins:l,optionsCache:a,config:{optionMergeStrategies:n}}=e.appContext,f=a.get(t);let h;return f?h=f:!l.length&&!o&&!A?h=t:(h={},l.length&&l.forEach(s=>Oo(h,s,n,!0)),Oo(h,t,n)),_e(t)&&a.set(t,h),h}function Oo(e,t,o,A=!1){const{mixins:l,extends:a}=t;a&&Oo(e,a,o,!0),l&&l.forEach(n=>Oo(e,n,o,!0));for(const n in t)if(!(A&&n==="expose")){const f=Th[n]||o&&o[n];e[n]=f?f(e[n],t[n]):t[n]}return e}const Th={data:va,props:ya,emits:ya,methods:fr,computed:fr,beforeCreate:qt,created:qt,beforeMount:qt,mounted:qt,beforeUpdate:qt,updated:qt,beforeDestroy:qt,beforeUnmount:qt,destroyed:qt,unmounted:qt,activated:qt,deactivated:qt,errorCaptured:qt,serverPrefetch:qt,components:fr,directives:fr,watch:Mh,provide:va,inject:Rh};function va(e,t){return t?e?function(){return et(ke(e)?e.call(this,this):e,ke(t)?t.call(this,this):t)}:t:e}function Rh(e,t){return fr(xi(e),xi(t))}function xi(e){if(Ee(e)){const t={};for(let o=0;o<e.length;o++)t[e[o]]=e[o];return t}return e}function qt(e,t){return e?[...new Set([].concat(e,t))]:t}function fr(e,t){return e?et(Object.create(null),e,t):t}function ya(e,t){return e?Ee(e)&&Ee(t)?[...new Set([...e,...t])]:et(Object.create(null),ba(e),ba(t??{})):t}function Mh(e,t){if(!e)return t;if(!t)return e;const o=et(Object.create(null),e);for(const A in t)o[A]=qt(e[A],t[A]);return o}function dd(){return{app:null,config:{isNativeTag:dg,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let xh=0;function Oh(e,t){return function(A,l=null){ke(A)||(A=et({},A)),l!=null&&!_e(l)&&(l=null);const a=dd(),n=new WeakSet,f=[];let h=!1;const s=a.app={_uid:xh++,_component:A,_props:l,_container:null,_context:a,_instance:null,version:pp,get config(){return a.config},set config(d){},use(d,...c){return n.has(d)||(d&&ke(d.install)?(n.add(d),d.install(s,...c)):ke(d)&&(n.add(d),d(s,...c))),s},mixin(d){return a.mixins.includes(d)||a.mixins.push(d),s},component(d,c){return c?(a.components[d]=c,s):a.components[d]},directive(d,c){return c?(a.directives[d]=c,s):a.directives[d]},mount(d,c,p){if(!h){const V=s._ceVNode||Re(A,l);return V.appContext=a,p===!0?p="svg":p===!1&&(p=void 0),e(V,d,p),h=!0,s._container=d,d.__vue_app__=s,nA(V.component)}},onUnmount(d){f.push(d)},unmount(){h&&(Yt(f,s._instance,16),e(null,s._container),delete s._container.__vue_app__)},provide(d,c){return a.provides[d]=c,s},runWithContext(d){const c=_n;_n=s;try{return d()}finally{_n=c}}};return s}}let _n=null;function Bh(e,t){if(At){let o=At.provides;const A=At.parent&&At.parent.provides;A===o&&(o=At.provides=Object.create(A)),o[e]=t}}function yo(e,t,o=!1){const A=At||st;if(A||_n){const l=_n?_n._context.provides:A?A.parent==null?A.vnode.appContext&&A.vnode.appContext.provides:A.parent.provides:void 0;if(l&&e in l)return l[e];if(arguments.length>1)return o&&ke(t)?t.call(A&&A.proxy):t}}const fd={},gd=()=>Object.create(fd),hd=e=>Object.getPrototypeOf(e)===fd;function Uh(e,t,o,A=!1){const l={},a=gd();e.propsDefaults=Object.create(null),pd(e,t,l,a);for(const n in e.propsOptions[0])n in l||(l[n]=void 0);o?e.props=A?l:Wg(l):e.type.props?e.props=l:e.props=a,e.attrs=a}function Dh(e,t,o,A){const{props:l,attrs:a,vnode:{patchFlag:n}}=e,f=Fe(l),[h]=e.propsOptions;let s=!1;if((A||n>0)&&!(n&16)){if(n&8){const d=e.vnode.dynamicProps;for(let c=0;c<d.length;c++){let p=d[c];if(eA(e.emitsOptions,p))continue;const V=t[p];if(h)if(Ke(a,p))V!==a[p]&&(a[p]=V,s=!0);else{const M=Ct(p);l[M]=Oi(h,f,M,V,e,!1)}else V!==a[p]&&(a[p]=V,s=!0)}}}else{pd(e,t,l,a)&&(s=!0);let d;for(const c in f)(!t||!Ke(t,c)&&((d=Rt(c))===c||!Ke(t,d)))&&(h?o&&(o[c]!==void 0||o[d]!==void 0)&&(l[c]=Oi(h,f,c,void 0,e,!0)):delete l[c]);if(a!==f)for(const c in a)(!t||!Ke(t,c))&&(delete a[c],s=!0)}s&&tn(e.attrs,"set","")}function pd(e,t,o,A){const[l,a]=e.propsOptions;let n=!1,f;if(t)for(let h in t){if(hr(h))continue;const s=t[h];let d;l&&Ke(l,d=Ct(h))?!a||!a.includes(d)?o[d]=s:(f||(f={}))[d]=s:eA(e.emitsOptions,h)||(!(h in A)||s!==A[h])&&(A[h]=s,n=!0)}if(a){const h=Fe(o),s=f||We;for(let d=0;d<a.length;d++){const c=a[d];o[c]=Oi(l,h,c,s[c],e,!Ke(s,c))}}return n}function Oi(e,t,o,A,l,a){const n=e[o];if(n!=null){const f=Ke(n,"default");if(f&&A===void 0){const h=n.default;if(n.type!==Function&&!n.skipFactory&&ke(h)){const{propsDefaults:s}=l;if(o in s)A=s[o];else{const d=Wr(l);A=s[o]=h.call(null,t),d()}}else A=h;l.ce&&l.ce._setProp(o,A)}n[0]&&(a&&!f?A=!1:n[1]&&(A===""||A===Rt(o))&&(A=!0))}return A}const Lh=new WeakMap;function qd(e,t,o=!1){const A=o?Lh:t.propsCache,l=A.get(e);if(l)return l;const a=e.props,n={},f=[];let h=!1;if(!ke(e)){const d=c=>{h=!0;const[p,V]=qd(c,t,!0);et(n,p),V&&f.push(...V)};!o&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}if(!a&&!h)return _e(e)&&A.set(e,Wn),Wn;if(Ee(a))for(let d=0;d<a.length;d++){const c=Ct(a[d]);Ia(c)&&(n[c]=We)}else if(a)for(const d in a){const c=Ct(d);if(Ia(c)){const p=a[d],V=n[c]=Ee(p)||ke(p)?{type:p}:et({},p),M=V.type;let T=!1,R=!0;if(Ee(M))for(let I=0;I<M.length;++I){const x=M[I],E=ke(x)&&x.name;if(E==="Boolean"){T=!0;break}else E==="String"&&(R=!1)}else T=ke(M)&&M.name==="Boolean";V[0]=T,V[1]=R,(T||Ke(V,"default"))&&f.push(c)}}const s=[n,f];return _e(e)&&A.set(e,s),s}function Ia(e){return e[0]!=="$"&&!hr(e)}const md=e=>e[0]==="_"||e==="$stable",ls=e=>Ee(e)?e.map(jt):[jt(e)],Fh=(e,t,o)=>{if(t._n)return t;const A=Pe((...l)=>(hn.NODE_ENV!=="production"&&At&&(!o||(o.root,At.root)),ls(t(...l))),o);return A._c=!1,A},Vd=(e,t,o)=>{const A=e._ctx;for(const l in e){if(md(l))continue;const a=e[l];if(ke(a))t[l]=Fh(l,a,A);else if(a!=null){const n=ls(a);t[l]=()=>n}}},bd=(e,t)=>{const o=ls(t);e.slots.default=()=>o},Cd=(e,t,o)=>{for(const A in t)(o||A!=="_")&&(e[A]=t[A])},Qh=(e,t,o)=>{const A=e.slots=gd();if(e.vnode.shapeFlag&32){const l=t._;l?(Cd(A,t,o),o&&vc(A,"_",l,!0)):Vd(t,A)}else t&&bd(e,t)},Yh=(e,t,o)=>{const{vnode:A,slots:l}=e;let a=!0,n=We;if(A.shapeFlag&32){const f=t._;f?o&&f===1?a=!1:Cd(l,t,o):(a=!t.$stable,Vd(t,l)),n=t}else t&&(bd(e,t),n={default:1});if(a)for(const f in l)!md(f)&&n[f]==null&&delete l[f]},mt=tp;function Gh(e){return Kh(e)}function Kh(e,t){const o=No();o.__VUE__=!0;const{insert:A,remove:l,patchProp:a,createElement:n,createText:f,createComment:h,setText:s,setElementText:d,parentNode:c,nextSibling:p,setScopeId:V=Ft,insertStaticContent:M}=e,T=(Y,K,$,te=null,X=null,ne=null,ue=void 0,re=null,ie=!!K.dynamicChildren)=>{if(Y===K)return;Y&&!On(Y,K)&&(te=le(Y),w(Y,X,ne,!0),Y=null),K.patchFlag===-2&&(ie=!1,K.dynamicChildren=null);const{type:se,ref:Ce,shapeFlag:he}=K;switch(se){case tA:R(Y,K,$,te);break;case bt:I(Y,K,$,te);break;case Io:Y==null&&x(K,$,te,ue);break;case $e:B(Y,K,$,te,X,ne,ue,re,ie);break;default:he&1?v(Y,K,$,te,X,ne,ue,re,ie):he&6?H(Y,K,$,te,X,ne,ue,re,ie):(he&64||he&128)&&se.process(Y,K,$,te,X,ne,ue,re,ie,pe)}Ce!=null&&X&&Mo(Ce,Y&&Y.ref,ne,K||Y,!K)},R=(Y,K,$,te)=>{if(Y==null)A(K.el=f(K.children),$,te);else{const X=K.el=Y.el;K.children!==Y.children&&s(X,K.children)}},I=(Y,K,$,te)=>{Y==null?A(K.el=h(K.children||""),$,te):K.el=Y.el},x=(Y,K,$,te)=>{[Y.el,Y.anchor]=M(Y.children,K,$,te,Y.el,Y.anchor)},E=({el:Y,anchor:K},$,te)=>{let X;for(;Y&&Y!==K;)X=p(Y),A(Y,$,te),Y=X;A(K,$,te)},C=({el:Y,anchor:K})=>{let $;for(;Y&&Y!==K;)$=p(Y),l(Y),Y=$;l(K)},v=(Y,K,$,te,X,ne,ue,re,ie)=>{K.type==="svg"?ue="svg":K.type==="math"&&(ue="mathml"),Y==null?O(K,$,te,X,ne,ue,re,ie):D(Y,K,X,ne,ue,re,ie)},O=(Y,K,$,te,X,ne,ue,re)=>{let ie,se;const{props:Ce,shapeFlag:he,transition:ye,dirs:we}=Y;if(ie=Y.el=n(Y.type,ne,Ce&&Ce.is,Ce),he&8?d(ie,Y.children):he&16&&k(Y.children,ie,null,te,X,DA(Y,ne),ue,re),we&&kn(Y,null,te,"created"),L(ie,Y,Y.scopeId,ue,te),Ce){for(const Ue in Ce)Ue!=="value"&&!hr(Ue)&&a(ie,Ue,null,Ce[Ue],ne,te);"value"in Ce&&a(ie,"value",null,Ce.value,ne),(se=Ce.onVnodeBeforeMount)&&Kt(se,te,Y)}we&&kn(Y,null,te,"beforeMount");const Ie=Jh(X,ye);Ie&&ye.beforeEnter(ie),A(ie,K,$),((se=Ce&&Ce.onVnodeMounted)||Ie||we)&&mt(()=>{se&&Kt(se,te,Y),Ie&&ye.enter(ie),we&&kn(Y,null,te,"mounted")},X)},L=(Y,K,$,te,X)=>{if($&&V(Y,$),te)for(let ne=0;ne<te.length;ne++)V(Y,te[ne]);if(X){let ne=X.subTree;if(K===ne||Sd(ne.type)&&(ne.ssContent===K||ne.ssFallback===K)){const ue=X.vnode;L(Y,ue,ue.scopeId,ue.slotScopeIds,X.parent)}}},k=(Y,K,$,te,X,ne,ue,re,ie=0)=>{for(let se=ie;se<Y.length;se++){const Ce=Y[se]=re?mn(Y[se]):jt(Y[se]);T(null,Ce,K,$,te,X,ne,ue,re)}},D=(Y,K,$,te,X,ne,ue)=>{const re=K.el=Y.el;let{patchFlag:ie,dynamicChildren:se,dirs:Ce}=K;ie|=Y.patchFlag&16;const he=Y.props||We,ye=K.props||We;let we;if($&&Tn($,!1),(we=ye.onVnodeBeforeUpdate)&&Kt(we,$,K,Y),Ce&&kn(K,Y,$,"beforeUpdate"),$&&Tn($,!0),(he.innerHTML&&ye.innerHTML==null||he.textContent&&ye.textContent==null)&&d(re,""),se?N(Y.dynamicChildren,se,re,$,te,DA(K,X),ne):ue||J(Y,K,re,null,$,te,DA(K,X),ne,!1),ie>0){if(ie&16)W(re,he,ye,$,X);else if(ie&2&&he.class!==ye.class&&a(re,"class",null,ye.class,X),ie&4&&a(re,"style",he.style,ye.style,X),ie&8){const Ie=K.dynamicProps;for(let Ue=0;Ue<Ie.length;Ue++){const Me=Ie[Ue],at=he[Me],it=ye[Me];(it!==at||Me==="value")&&a(re,Me,at,it,X,$)}}ie&1&&Y.children!==K.children&&d(re,K.children)}else!ue&&se==null&&W(re,he,ye,$,X);((we=ye.onVnodeUpdated)||Ce)&&mt(()=>{we&&Kt(we,$,K,Y),Ce&&kn(K,Y,$,"updated")},te)},N=(Y,K,$,te,X,ne,ue)=>{for(let re=0;re<K.length;re++){const ie=Y[re],se=K[re],Ce=ie.el&&(ie.type===$e||!On(ie,se)||ie.shapeFlag&70)?c(ie.el):$;T(ie,se,Ce,null,te,X,ne,ue,!0)}},W=(Y,K,$,te,X)=>{if(K!==$){if(K!==We)for(const ne in K)!hr(ne)&&!(ne in $)&&a(Y,ne,K[ne],null,X,te);for(const ne in $){if(hr(ne))continue;const ue=$[ne],re=K[ne];ue!==re&&ne!=="value"&&a(Y,ne,re,ue,X,te)}"value"in $&&a(Y,"value",K.value,$.value,X)}},B=(Y,K,$,te,X,ne,ue,re,ie)=>{const se=K.el=Y?Y.el:f(""),Ce=K.anchor=Y?Y.anchor:f("");let{patchFlag:he,dynamicChildren:ye,slotScopeIds:we}=K;we&&(re=re?re.concat(we):we),Y==null?(A(se,$,te),A(Ce,$,te),k(K.children||[],$,Ce,X,ne,ue,re,ie)):he>0&&he&64&&ye&&Y.dynamicChildren?(N(Y.dynamicChildren,ye,$,X,ne,ue,re),(K.key!=null||X&&K===X.subTree)&&as(Y,K,!0)):J(Y,K,$,Ce,X,ne,ue,re,ie)},H=(Y,K,$,te,X,ne,ue,re,ie)=>{K.slotScopeIds=re,Y==null?K.shapeFlag&512?X.ctx.activate(K,$,te,ue,ie):y(K,$,te,X,ne,ue,ie):S(Y,K,ie)},y=(Y,K,$,te,X,ne,ue)=>{const re=Y.component=sp(Y,te,X);if(_o(Y)&&(re.ctx.renderer=pe),lp(re,!1,ue),re.asyncDep){if(X&&X.registerDep(re,Q,ue),!Y.el){const ie=re.subTree=Re(bt);I(null,ie,K,$)}}else Q(re,Y,K,$,X,ne,ue)},S=(Y,K,$)=>{const te=K.component=Y.component;if($h(Y,K,$))if(te.asyncDep&&!te.asyncResolved){U(te,K,$);return}else te.next=K,te.update();else K.el=Y.el,te.vnode=K},Q=(Y,K,$,te,X,ne,ue)=>{const re=()=>{if(Y.isMounted){let{next:he,bu:ye,u:we,parent:Ie,vnode:Ue}=Y;{const vt=vd(Y);if(vt){he&&(he.el=Ue.el,U(Y,he,ue)),vt.asyncDep.then(()=>{Y.isUnmounted||re()});return}}let Me=he,at;Tn(Y,!1),he?(he.el=Ue.el,U(Y,he,ue)):he=Ue,ye&&kA(ye),(at=he.props&&he.props.onVnodeBeforeUpdate)&&Kt(at,Ie,he,Ue),Tn(Y,!0);const it=wa(Y),St=Y.subTree;Y.subTree=it,T(St,it,c(St.el),le(St),Y,X,ne),he.el=it.el,Me===null&&ep(Y,it.el),we&&mt(we,X),(at=he.props&&he.props.onVnodeUpdated)&&mt(()=>Kt(at,Ie,he,Ue),X)}else{let he;const{el:ye,props:we}=K,{bm:Ie,m:Ue,parent:Me,root:at,type:it}=Y,St=zn(K);Tn(Y,!1),Ie&&kA(Ie),!St&&(he=we&&we.onVnodeBeforeMount)&&Kt(he,Me,K),Tn(Y,!0);{at.ce&&at.ce._injectChildStyle(it);const vt=Y.subTree=wa(Y);T(null,vt,$,te,Y,X,ne),K.el=vt.el}if(Ue&&mt(Ue,X),!St&&(he=we&&we.onVnodeMounted)){const vt=K;mt(()=>Kt(he,Me,vt),X)}(K.shapeFlag&256||Me&&zn(Me.vnode)&&Me.vnode.shapeFlag&256)&&Y.a&&mt(Y.a,X),Y.isMounted=!0,K=$=te=null}};Y.scope.on();const ie=Y.effect=new wc(re);Y.scope.off();const se=Y.update=ie.run.bind(ie),Ce=Y.job=ie.runIfDirty.bind(ie);Ce.i=Y,Ce.id=Y.uid,ie.scheduler=()=>ts(Ce),Tn(Y,!0),se()},U=(Y,K,$)=>{K.component=Y;const te=Y.vnode.props;Y.vnode=K,Y.next=null,Dh(Y,K.props,te,$),Yh(Y,K.children,$),sn(),ga(Y),ln()},J=(Y,K,$,te,X,ne,ue,re,ie=!1)=>{const se=Y&&Y.children,Ce=Y?Y.shapeFlag:0,he=K.children,{patchFlag:ye,shapeFlag:we}=K;if(ye>0){if(ye&128){G(se,he,$,te,X,ne,ue,re,ie);return}else if(ye&256){Z(se,he,$,te,X,ne,ue,re,ie);return}}we&8?(Ce&16&&_(se,X,ne),he!==se&&d($,he)):Ce&16?we&16?G(se,he,$,te,X,ne,ue,re,ie):_(se,X,ne,!0):(Ce&8&&d($,""),we&16&&k(he,$,te,X,ne,ue,re,ie))},Z=(Y,K,$,te,X,ne,ue,re,ie)=>{Y=Y||Wn,K=K||Wn;const se=Y.length,Ce=K.length,he=Math.min(se,Ce);let ye;for(ye=0;ye<he;ye++){const we=K[ye]=ie?mn(K[ye]):jt(K[ye]);T(Y[ye],we,$,null,X,ne,ue,re,ie)}se>Ce?_(Y,X,ne,!0,!1,he):k(K,$,te,X,ne,ue,re,ie,he)},G=(Y,K,$,te,X,ne,ue,re,ie)=>{let se=0;const Ce=K.length;let he=Y.length-1,ye=Ce-1;for(;se<=he&&se<=ye;){const we=Y[se],Ie=K[se]=ie?mn(K[se]):jt(K[se]);if(On(we,Ie))T(we,Ie,$,null,X,ne,ue,re,ie);else break;se++}for(;se<=he&&se<=ye;){const we=Y[he],Ie=K[ye]=ie?mn(K[ye]):jt(K[ye]);if(On(we,Ie))T(we,Ie,$,null,X,ne,ue,re,ie);else break;he--,ye--}if(se>he){if(se<=ye){const we=ye+1,Ie=we<Ce?K[we].el:te;for(;se<=ye;)T(null,K[se]=ie?mn(K[se]):jt(K[se]),$,Ie,X,ne,ue,re,ie),se++}}else if(se>ye)for(;se<=he;)w(Y[se],X,ne,!0),se++;else{const we=se,Ie=se,Ue=new Map;for(se=Ie;se<=ye;se++){const je=K[se]=ie?mn(K[se]):jt(K[se]);je.key!=null&&Ue.set(je.key,se)}let Me,at=0;const it=ye-Ie+1;let St=!1,vt=0;const Zt=new Array(it);for(se=0;se<it;se++)Zt[se]=0;for(se=we;se<=he;se++){const je=Y[se];if(at>=it){w(je,X,ne,!0);continue}let ct;if(je.key!=null)ct=Ue.get(je.key);else for(Me=Ie;Me<=ye;Me++)if(Zt[Me-Ie]===0&&On(je,K[Me])){ct=Me;break}ct===void 0?w(je,X,ne,!0):(Zt[ct-Ie]=se+1,ct>=vt?vt=ct:St=!0,T(je,K[ct],$,null,X,ne,ue,re,ie),at++)}const Ve=St?Nh(Zt):Wn;for(Me=Ve.length-1,se=it-1;se>=0;se--){const je=Ie+se,ct=K[je],dn=je+1<Ce?K[je+1].el:te;Zt[se]===0?T(null,ct,$,dn,X,ne,ue,re,ie):St&&(Me<0||se!==Ve[Me]?q(ct,$,dn,2):Me--)}}},q=(Y,K,$,te,X=null)=>{const{el:ne,type:ue,transition:re,children:ie,shapeFlag:se}=Y;if(se&6){q(Y.component.subTree,K,$,te);return}if(se&128){Y.suspense.move(K,$,te);return}if(se&64){ue.move(Y,K,$,pe);return}if(ue===$e){A(ne,K,$);for(let he=0;he<ie.length;he++)q(ie[he],K,$,te);A(Y.anchor,K,$);return}if(ue===Io){E(Y,K,$);return}if(te!==2&&se&1&&re)if(te===0)re.beforeEnter(ne),A(ne,K,$),mt(()=>re.enter(ne),X);else{const{leave:he,delayLeave:ye,afterLeave:we}=re,Ie=()=>A(ne,K,$),Ue=()=>{he(ne,()=>{Ie(),we&&we()})};ye?ye(ne,Ie,Ue):Ue()}else A(ne,K,$)},w=(Y,K,$,te=!1,X=!1)=>{const{type:ne,props:ue,ref:re,children:ie,dynamicChildren:se,shapeFlag:Ce,patchFlag:he,dirs:ye,cacheIndex:we}=Y;if(he===-2&&(X=!1),re!=null&&Mo(re,null,$,Y,!0),we!=null&&(K.renderCache[we]=void 0),Ce&256){K.ctx.deactivate(Y);return}const Ie=Ce&1&&ye,Ue=!zn(Y);let Me;if(Ue&&(Me=ue&&ue.onVnodeBeforeUnmount)&&Kt(Me,K,Y),Ce&6)ee(Y.component,$,te);else{if(Ce&128){Y.suspense.unmount($,te);return}Ie&&kn(Y,null,K,"beforeUnmount"),Ce&64?Y.type.remove(Y,K,$,pe,te):se&&!se.hasOnce&&(ne!==$e||he>0&&he&64)?_(se,K,$,!1,!0):(ne===$e&&he&384||!X&&Ce&16)&&_(ie,K,$),te&&j(Y)}(Ue&&(Me=ue&&ue.onVnodeUnmounted)||Ie)&&mt(()=>{Me&&Kt(Me,K,Y),Ie&&kn(Y,null,K,"unmounted")},$)},j=Y=>{const{type:K,el:$,anchor:te,transition:X}=Y;if(K===$e){P($,te);return}if(K===Io){C(Y);return}const ne=()=>{l($),X&&!X.persisted&&X.afterLeave&&X.afterLeave()};if(Y.shapeFlag&1&&X&&!X.persisted){const{leave:ue,delayLeave:re}=X,ie=()=>ue($,ne);re?re(Y.el,ne,ie):ie()}else ne()},P=(Y,K)=>{let $;for(;Y!==K;)$=p(Y),l(Y),Y=$;l(K)},ee=(Y,K,$)=>{const{bum:te,scope:X,job:ne,subTree:ue,um:re,m:ie,a:se}=Y;Sa(ie),Sa(se),te&&kA(te),X.stop(),ne&&(ne.flags|=8,w(ue,Y,K,$)),re&&mt(re,K),mt(()=>{Y.isUnmounted=!0},K),K&&K.pendingBranch&&!K.isUnmounted&&Y.asyncDep&&!Y.asyncResolved&&Y.suspenseId===K.pendingId&&(K.deps--,K.deps===0&&K.resolve())},_=(Y,K,$,te=!1,X=!1,ne=0)=>{for(let ue=ne;ue<Y.length;ue++)w(Y[ue],K,$,te,X)},le=Y=>{if(Y.shapeFlag&6)return le(Y.component.subTree);if(Y.shapeFlag&128)return Y.suspense.next();const K=p(Y.anchor||Y.el),$=K&&K[zc];return $?p($):K};let ae=!1;const fe=(Y,K,$)=>{Y==null?K._vnode&&w(K._vnode,null,null,!0):T(K._vnode||null,Y,K,null,null,null,$),K._vnode=Y,ae||(ae=!0,ga(),Hc(),ae=!1)},pe={p:T,um:w,m:q,r:j,mt:y,mc:k,pc:J,pbc:N,n:le,o:e};return{render:fe,hydrate:void 0,createApp:Oh(fe)}}function DA({type:e,props:t},o){return o==="svg"&&e==="foreignObject"||o==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:o}function Tn({effect:e,job:t},o){o?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Jh(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function as(e,t,o=!1){const A=e.children,l=t.children;if(Ee(A)&&Ee(l))for(let a=0;a<A.length;a++){const n=A[a];let f=l[a];f.shapeFlag&1&&!f.dynamicChildren&&((f.patchFlag<=0||f.patchFlag===32)&&(f=l[a]=mn(l[a]),f.el=n.el),!o&&f.patchFlag!==-2&&as(n,f)),f.type===tA&&(f.el=n.el)}}function Nh(e){const t=e.slice(),o=[0];let A,l,a,n,f;const h=e.length;for(A=0;A<h;A++){const s=e[A];if(s!==0){if(l=o[o.length-1],e[l]<s){t[A]=l,o.push(A);continue}for(a=0,n=o.length-1;a<n;)f=a+n>>1,e[o[f]]<s?a=f+1:n=f;s<e[o[a]]&&(a>0&&(t[A]=o[a-1]),o[a]=A)}}for(a=o.length,n=o[a-1];a-- >0;)o[a]=n,n=t[n];return o}function vd(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:vd(t)}function Sa(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}const jh=Symbol.for("v-scx"),Wh=()=>yo(jh);function Hh(e,t){return us(e,null,t)}function rn(e,t,o){return us(e,t,o)}function us(e,t,o=We){const{immediate:A,deep:l,flush:a,once:n}=o,f=et({},o),h=t&&A||!t&&a!=="post";let s;if(Mr){if(a==="sync"){const V=Wh();s=V.__watcherHandles||(V.__watcherHandles=[])}else if(!h){const V=()=>{};return V.stop=Ft,V.resume=Ft,V.pause=Ft,V}}const d=At;f.call=(V,M,T)=>Yt(V,d,M,T);let c=!1;a==="post"?f.scheduler=V=>{mt(V,d&&d.suspense)}:a!=="sync"&&(c=!0,f.scheduler=(V,M)=>{M?V():ts(V)}),f.augmentJob=V=>{t&&(V.flags|=4),c&&(V.flags|=2,d&&(V.id=d.uid,V.i=d))};const p=eh(e,t,f);return Mr&&(s?s.push(p):h&&p()),p}function Zh(e,t,o){const A=this.proxy,l=ze(e)?e.includes(".")?yd(A,e):()=>A[e]:e.bind(A,A);let a;ke(t)?a=t:(a=t.handler,o=t);const n=Wr(this),f=us(l,a.bind(A),o);return n(),f}function yd(e,t){const o=t.split(".");return()=>{let A=e;for(let l=0;l<o.length&&A;l++)A=A[o[l]];return A}}const Ph=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${Ct(t)}Modifiers`]||e[`${Rt(t)}Modifiers`];function zh(e,t,...o){if(e.isUnmounted)return;const A=e.vnode.props||We;let l=o;const a=t.startsWith("update:"),n=a&&Ph(A,t.slice(7));n&&(n.trim&&(l=o.map(d=>ze(d)?d.trim():d)),n.number&&(l=o.map(qg)));let f,h=A[f=EA(t)]||A[f=EA(Ct(t))];!h&&a&&(h=A[f=EA(Rt(t))]),h&&Yt(h,e,6,l);const s=A[f+"Once"];if(s){if(!e.emitted)e.emitted={};else if(e.emitted[f])return;e.emitted[f]=!0,Yt(s,e,6,l)}}function Id(e,t,o=!1){const A=t.emitsCache,l=A.get(e);if(l!==void 0)return l;const a=e.emits;let n={},f=!1;if(!ke(e)){const h=s=>{const d=Id(s,t,!0);d&&(f=!0,et(n,d))};!o&&t.mixins.length&&t.mixins.forEach(h),e.extends&&h(e.extends),e.mixins&&e.mixins.forEach(h)}return!a&&!f?(_e(e)&&A.set(e,null),null):(Ee(a)?a.forEach(h=>n[h]=null):et(n,a),_e(e)&&A.set(e,n),n)}function eA(e,t){return!e||!Qo(t)?!1:(t=t.slice(2).replace(/Once$/,""),Ke(e,t[0].toLowerCase()+t.slice(1))||Ke(e,Rt(t))||Ke(e,t))}function wa(e){const{type:t,vnode:o,proxy:A,withProxy:l,propsOptions:[a],slots:n,attrs:f,emit:h,render:s,renderCache:d,props:c,data:p,setupState:V,ctx:M,inheritAttrs:T}=e,R=Ro(e);let I,x;try{if(o.shapeFlag&4){const C=l||A,v=hn.NODE_ENV!=="production"&&V.__isScriptSetup?new Proxy(C,{get(O,L,k){return th(`Property '${String(L)}' was accessed via 'this'. Avoid using 'this' in templates.`),Reflect.get(O,L,k)}}):C;I=jt(s.call(v,C,d,hn.NODE_ENV!=="production"?co(c):c,V,p,M)),x=f}else{const C=t;hn.NODE_ENV,I=jt(C.length>1?C(hn.NODE_ENV!=="production"?co(c):c,hn.NODE_ENV!=="production"?{get attrs(){return co(f)},slots:n,emit:h}:{attrs:f,slots:n,emit:h}):C(hn.NODE_ENV!=="production"?co(c):c,null)),x=t.props?f:_h(f)}}catch(C){Cr.length=0,zo(C,e,1),I=Re(bt)}let E=I;if(x&&T!==!1){const C=Object.keys(x),{shapeFlag:v}=E;C.length&&v&7&&(a&&C.some(ji)&&(x=Xh(x,a)),E=Cn(E,x,!1,!0))}return o.dirs&&(E=Cn(E,null,!1,!0),E.dirs=E.dirs?E.dirs.concat(o.dirs):o.dirs),o.transition&&Er(E,o.transition),I=E,Ro(R),I}const _h=e=>{let t;for(const o in e)(o==="class"||o==="style"||Qo(o))&&((t||(t={}))[o]=e[o]);return t},Xh=(e,t)=>{const o={};for(const A in e)(!ji(A)||!(A.slice(9)in t))&&(o[A]=e[A]);return o};function $h(e,t,o){const{props:A,children:l,component:a}=e,{props:n,children:f,patchFlag:h}=t,s=a.emitsOptions;if(t.dirs||t.transition)return!0;if(o&&h>=0){if(h&1024)return!0;if(h&16)return A?Ea(A,n,s):!!n;if(h&8){const d=t.dynamicProps;for(let c=0;c<d.length;c++){const p=d[c];if(n[p]!==A[p]&&!eA(s,p))return!0}}}else return(l||f)&&(!f||!f.$stable)?!0:A===n?!1:A?n?Ea(A,n,s):!0:!!n;return!1}function Ea(e,t,o){const A=Object.keys(t);if(A.length!==Object.keys(e).length)return!0;for(let l=0;l<A.length;l++){const a=A[l];if(t[a]!==e[a]&&!eA(o,a))return!0}return!1}function ep({vnode:e,parent:t},o){for(;t;){const A=t.subTree;if(A.suspense&&A.suspense.activeBranch===e&&(A.el=e.el),A===e)(e=t.vnode).el=o,t=t.parent;else break}}const Sd=e=>e.__isSuspense;function tp(e,t){t&&t.pendingBranch?Ee(e)?t.effects.push(...e):t.effects.push(e):lh(e)}const $e=Symbol.for("v-fgt"),tA=Symbol.for("v-txt"),bt=Symbol.for("v-cmt"),Io=Symbol.for("v-stc"),Cr=[];let Et=null;function de(e=!1){Cr.push(Et=e?null:[])}function np(){Cr.pop(),Et=Cr[Cr.length-1]||null}let Tr=1;function ka(e,t=!1){Tr+=e,e<0&&Et&&t&&(Et.hasOnce=!0)}function wd(e){return e.dynamicChildren=Tr>0?Et||Wn:null,np(),Tr>0&&Et&&Et.push(e),e}function be(e,t,o,A,l,a){return wd(qe(e,t,o,A,l,a,!0))}function Oe(e,t,o,A,l){return wd(Re(e,t,o,A,l,!0))}function Rr(e){return e?e.__v_isVNode===!0:!1}function On(e,t){return e.type===t.type&&e.key===t.key}const Ed=({key:e})=>e??null,So=({ref:e,ref_key:t,ref_for:o})=>(typeof e=="number"&&(e=""+e),e!=null?ze(e)||ut(e)||ke(e)?{i:st,r:e,k:t,f:!!o}:e:null);function qe(e,t=null,o=null,A=0,l=null,a=e===$e?0:1,n=!1,f=!1){const h={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Ed(t),ref:t&&So(t),scopeId:Pc,slotScopeIds:null,children:o,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:a,patchFlag:A,dynamicProps:l,dynamicChildren:null,appContext:null,ctx:st};return f?(ds(h,o),a&128&&e.normalize(h)):o&&(h.shapeFlag|=ze(o)?8:16),Tr>0&&!n&&Et&&(h.patchFlag>0||a&6)&&h.patchFlag!==32&&Et.push(h),h}const Re=rp;function rp(e,t=null,o=null,A=0,l=null,a=!1){if((!e||e===ld)&&(e=bt),Rr(e)){const f=Cn(e,t,!0);return o&&ds(f,o),Tr>0&&!a&&Et&&(f.shapeFlag&6?Et[Et.indexOf(e)]=f:Et.push(f)),f.patchFlag=-2,f}if(gp(e)&&(e=e.__vccOpts),t){t=op(t);let{class:f,style:h}=t;f&&!ze(f)&&(t.class=ht(f)),_e(h)&&($i(h)&&!Ee(h)&&(h=et({},h)),t.style=jo(h))}const n=ze(e)?1:Sd(e)?128:_c(e)?64:_e(e)?4:ke(e)?2:0;return qe(e,t,o,A,l,n,a,!0)}function op(e){return e?$i(e)||hd(e)?et({},e):e:null}function Cn(e,t,o=!1,A=!1){const{props:l,ref:a,patchFlag:n,children:f,transition:h}=e,s=t?me(l||{},t):l,d={__v_isVNode:!0,__v_skip:!0,type:e.type,props:s,key:s&&Ed(s),ref:t&&t.ref?o&&a?Ee(a)?a.concat(So(t)):[a,So(t)]:So(t):a,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:f,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==$e?n===-1?16:n|16:n,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:h,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Cn(e.ssContent),ssFallback:e.ssFallback&&Cn(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return h&&A&&Er(d,h.clone(d)),d}function Xn(e=" ",t=0){return Re(tA,null,e,t)}function cs(e,t){const o=Re(Io,null,e);return o.staticCount=t,o}function xe(e="",t=!1){return t?(de(),Oe(bt,null,e)):Re(bt,null,e)}function jt(e){return e==null||typeof e=="boolean"?Re(bt):Ee(e)?Re($e,null,e.slice()):Rr(e)?mn(e):Re(tA,null,String(e))}function mn(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Cn(e)}function ds(e,t){let o=0;const{shapeFlag:A}=e;if(t==null)t=null;else if(Ee(t))o=16;else if(typeof t=="object")if(A&65){const l=t.default;l&&(l._c&&(l._d=!1),ds(e,l()),l._c&&(l._d=!0));return}else{o=32;const l=t._;!l&&!hd(t)?t._ctx=st:l===3&&st&&(st.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else ke(t)?(t={default:t,_ctx:st},o=32):(t=String(t),A&64?(o=16,t=[Xn(t)]):o=8);e.children=t,e.shapeFlag|=o}function me(...e){const t={};for(let o=0;o<e.length;o++){const A=e[o];for(const l in A)if(l==="class")t.class!==A.class&&(t.class=ht([t.class,A.class]));else if(l==="style")t.style=jo([t.style,A.style]);else if(Qo(l)){const a=t[l],n=A[l];n&&a!==n&&!(Ee(a)&&a.includes(n))&&(t[l]=a?[].concat(a,n):n)}else l!==""&&(t[l]=A[l])}return t}function Kt(e,t,o,A=null){Yt(e,t,7,[o,A])}const Ap=dd();let ip=0;function sp(e,t,o){const A=e.type,l=(t?t.appContext:e.appContext)||Ap,a={uid:ip++,vnode:e,type:A,parent:t,appContext:l,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new wg(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(l.provides),ids:t?t.ids:["",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:qd(A,l),emitsOptions:Id(A,l),emit:null,emitted:null,propsDefaults:We,inheritAttrs:A.inheritAttrs,ctx:We,data:We,props:We,attrs:We,slots:We,refs:We,setupState:We,setupContext:null,suspense:o,suspenseId:o?o.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return a.ctx={_:a},a.root=t?t.root:a,a.emit=zh.bind(null,a),e.ce&&e.ce(a),a}let At=null;const kd=()=>At||st;let Bo,Bi;{const e=No(),t=(o,A)=>{let l;return(l=e[o])||(l=e[o]=[]),l.push(A),a=>{l.length>1?l.forEach(n=>n(a)):l[0](a)}};Bo=t("__VUE_INSTANCE_SETTERS__",o=>At=o),Bi=t("__VUE_SSR_SETTERS__",o=>Mr=o)}const Wr=e=>{const t=At;return Bo(e),e.scope.on(),()=>{e.scope.off(),Bo(t)}},Ta=()=>{At&&At.scope.off(),Bo(null)};function Td(e){return e.vnode.shapeFlag&4}let Mr=!1;function lp(e,t=!1,o=!1){t&&Bi(t);const{props:A,children:l}=e.vnode,a=Td(e);Uh(e,A,a,t),Qh(e,l,o);const n=a?ap(e,t):void 0;return t&&Bi(!1),n}function ap(e,t){const o=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,wh);const{setup:A}=o;if(A){sn();const l=e.setupContext=A.length>1?cp(e):null,a=Wr(e),n=tr(A,e,0,[e.props,l]),f=bc(n);if(ln(),a(),(f||e.sp)&&!zn(e)&&Ad(e),f){if(n.then(Ta,Ta),t)return n.then(h=>{Ra(e,h)}).catch(h=>{zo(h,e,0)});e.asyncDep=n}else Ra(e,n)}else Rd(e)}function Ra(e,t,o){ke(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:_e(t)&&(e.setupState=Jc(t)),Rd(e)}function Rd(e,t,o){const A=e.type;e.render||(e.render=A.render||Ft);{const l=Wr(e);sn();try{Eh(e)}finally{ln(),l()}}}const up={get(e,t){return ft(e,"get",""),e[t]}};function cp(e){const t=o=>{e.exposed=o||{}};return{attrs:new Proxy(e.attrs,up),slots:e.slots,emit:e.emit,expose:t}}function nA(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Jc(Hg(e.exposed)),{get(t,o){if(o in t)return t[o];if(o in br)return br[o](e)},has(t,o){return o in t||o in br}})):e.proxy}const dp=/(?:^|[-_])(\w)/g,fp=e=>e.replace(dp,t=>t.toUpperCase()).replace(/[-_]/g,"");function Md(e,t=!0){return ke(e)?e.displayName||e.name:e.name||t&&e.__name}function xd(e,t,o=!1){let A=Md(t);if(!A&&t.__file){const l=t.__file.match(/([^/\\]+)\.\w+$/);l&&(A=l[1])}if(!A&&e&&e.parent){const l=a=>{for(const n in a)if(a[n]===t)return n};A=l(e.components||e.parent.type.components)||l(e.appContext.components)}return A?fp(A):o?"App":"Anonymous"}function gp(e){return ke(e)&&"__vccOpts"in e}const ot=(e,t)=>Xg(e,t,Mr);function hp(e,t,o){const A=arguments.length;return A===2?_e(t)&&!Ee(t)?Rr(t)?Re(e,null,[t]):Re(e,t):Re(e,null,t):(A>3?o=Array.prototype.slice.call(arguments,2):A===3&&Rr(o)&&(o=[o]),Re(e,t,o))}const pp="3.5.13";let Ui;const Ma=typeof window<"u"&&window.trustedTypes;if(Ma)try{Ui=Ma.createPolicy("vue",{createHTML:e=>e})}catch{}const Od=Ui?e=>Ui.createHTML(e):e=>e,qp="http://www.w3.org/2000/svg",mp="http://www.w3.org/1998/Math/MathML",$t=typeof document<"u"?document:null,xa=$t&&$t.createElement("template"),Vp={insert:(e,t,o)=>{t.insertBefore(e,o||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,o,A)=>{const l=t==="svg"?$t.createElementNS(qp,e):t==="mathml"?$t.createElementNS(mp,e):o?$t.createElement(e,{is:o}):$t.createElement(e);return e==="select"&&A&&A.multiple!=null&&l.setAttribute("multiple",A.multiple),l},createText:e=>$t.createTextNode(e),createComment:e=>$t.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>$t.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,o,A,l,a){const n=o?o.previousSibling:t.lastChild;if(l&&(l===a||l.nextSibling))for(;t.insertBefore(l.cloneNode(!0),o),!(l===a||!(l=l.nextSibling)););else{xa.innerHTML=Od(A==="svg"?`<svg>${e}</svg>`:A==="mathml"?`<math>${e}</math>`:e);const f=xa.content;if(A==="svg"||A==="mathml"){const h=f.firstChild;for(;h.firstChild;)f.appendChild(h.firstChild);f.removeChild(h)}t.insertBefore(f,o)}return[n?n.nextSibling:t.firstChild,o?o.previousSibling:t.lastChild]}},gn="transition",ur="animation",xr=Symbol("_vtc"),Bd={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},bp=et({},ed,Bd),Cp=e=>(e.displayName="Transition",e.props=bp,e),Ud=Cp((e,{slots:t})=>hp(fh,vp(e),t)),Rn=(e,t=[])=>{Ee(e)?e.forEach(o=>o(...t)):e&&e(...t)},Oa=e=>e?Ee(e)?e.some(t=>t.length>1):e.length>1:!1;function vp(e){const t={};for(const B in e)B in Bd||(t[B]=e[B]);if(e.css===!1)return t;const{name:o="v",type:A,duration:l,enterFromClass:a=`${o}-enter-from`,enterActiveClass:n=`${o}-enter-active`,enterToClass:f=`${o}-enter-to`,appearFromClass:h=a,appearActiveClass:s=n,appearToClass:d=f,leaveFromClass:c=`${o}-leave-from`,leaveActiveClass:p=`${o}-leave-active`,leaveToClass:V=`${o}-leave-to`}=e,M=yp(l),T=M&&M[0],R=M&&M[1],{onBeforeEnter:I,onEnter:x,onEnterCancelled:E,onLeave:C,onLeaveCancelled:v,onBeforeAppear:O=I,onAppear:L=x,onAppearCancelled:k=E}=t,D=(B,H,y,S)=>{B._enterCancelled=S,Mn(B,H?d:f),Mn(B,H?s:n),y&&y()},N=(B,H)=>{B._isLeaving=!1,Mn(B,c),Mn(B,V),Mn(B,p),H&&H()},W=B=>(H,y)=>{const S=B?L:x,Q=()=>D(H,B,y);Rn(S,[H,Q]),Ba(()=>{Mn(H,B?h:a),_t(H,B?d:f),Oa(S)||Ua(H,A,T,Q)})};return et(t,{onBeforeEnter(B){Rn(I,[B]),_t(B,a),_t(B,n)},onBeforeAppear(B){Rn(O,[B]),_t(B,h),_t(B,s)},onEnter:W(!1),onAppear:W(!0),onLeave(B,H){B._isLeaving=!0;const y=()=>N(B,H);_t(B,c),B._enterCancelled?(_t(B,p),Fa()):(Fa(),_t(B,p)),Ba(()=>{B._isLeaving&&(Mn(B,c),_t(B,V),Oa(C)||Ua(B,A,R,y))}),Rn(C,[B,y])},onEnterCancelled(B){D(B,!1,void 0,!0),Rn(E,[B])},onAppearCancelled(B){D(B,!0,void 0,!0),Rn(k,[B])},onLeaveCancelled(B){N(B),Rn(v,[B])}})}function yp(e){if(e==null)return null;if(_e(e))return[LA(e.enter),LA(e.leave)];{const t=LA(e);return[t,t]}}function LA(e){return vi(e)}function _t(e,t){t.split(/\s+/).forEach(o=>o&&e.classList.add(o)),(e[xr]||(e[xr]=new Set)).add(t)}function Mn(e,t){t.split(/\s+/).forEach(A=>A&&e.classList.remove(A));const o=e[xr];o&&(o.delete(t),o.size||(e[xr]=void 0))}function Ba(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Ip=0;function Ua(e,t,o,A){const l=e._endId=++Ip,a=()=>{l===e._endId&&A()};if(o!=null)return setTimeout(a,o);const{type:n,timeout:f,propCount:h}=Sp(e,t);if(!n)return A();const s=n+"end";let d=0;const c=()=>{e.removeEventListener(s,p),a()},p=V=>{V.target===e&&++d>=h&&c()};setTimeout(()=>{d<h&&c()},f+1),e.addEventListener(s,p)}function Sp(e,t){const o=window.getComputedStyle(e),A=M=>(o[M]||"").split(", "),l=A(`${gn}Delay`),a=A(`${gn}Duration`),n=Da(l,a),f=A(`${ur}Delay`),h=A(`${ur}Duration`),s=Da(f,h);let d=null,c=0,p=0;t===gn?n>0&&(d=gn,c=n,p=a.length):t===ur?s>0&&(d=ur,c=s,p=h.length):(c=Math.max(n,s),d=c>0?n>s?gn:ur:null,p=d?d===gn?a.length:h.length:0);const V=d===gn&&/\b(transform|all)(,|$)/.test(A(`${gn}Property`).toString());return{type:d,timeout:c,propCount:p,hasTransform:V}}function Da(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((o,A)=>La(o)+La(e[A])))}function La(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function Fa(){return document.body.offsetHeight}function wp(e,t,o){const A=e[xr];A&&(t=(t?[t,...A]:[...A]).join(" ")),t==null?e.removeAttribute("class"):o?e.setAttribute("class",t):e.className=t}const Qa=Symbol("_vod"),Ep=Symbol("_vsh"),kp=Symbol(""),Tp=/(^|;)\s*display\s*:/;function Rp(e,t,o){const A=e.style,l=ze(o);let a=!1;if(o&&!l){if(t)if(ze(t))for(const n of t.split(";")){const f=n.slice(0,n.indexOf(":")).trim();o[f]==null&&wo(A,f,"")}else for(const n in t)o[n]==null&&wo(A,n,"");for(const n in o)n==="display"&&(a=!0),wo(A,n,o[n])}else if(l){if(t!==o){const n=A[kp];n&&(o+=";"+n),A.cssText=o,a=Tp.test(o)}}else t&&e.removeAttribute("style");Qa in e&&(e[Qa]=a?A.display:"",e[Ep]&&(A.display="none"))}const Ya=/\s*!important$/;function wo(e,t,o){if(Ee(o))o.forEach(A=>wo(e,t,A));else if(o==null&&(o=""),t.startsWith("--"))e.setProperty(t,o);else{const A=Mp(e,t);Ya.test(o)?e.setProperty(Rt(A),o.replace(Ya,""),"important"):e[A]=o}}const Ga=["Webkit","Moz","ms"],FA={};function Mp(e,t){const o=FA[t];if(o)return o;let A=Ct(t);if(A!=="filter"&&A in e)return FA[t]=A;A=Jo(A);for(let l=0;l<Ga.length;l++){const a=Ga[l]+A;if(a in e)return FA[t]=a}return t}const Ka="http://www.w3.org/1999/xlink";function Ja(e,t,o,A,l,a=Ig(t)){A&&t.startsWith("xlink:")?o==null?e.removeAttributeNS(Ka,t.slice(6,t.length)):e.setAttributeNS(Ka,t,o):o==null||a&&!yc(o)?e.removeAttribute(t):e.setAttribute(t,a?"":An(o)?String(o):o)}function Na(e,t,o,A,l){if(t==="innerHTML"||t==="textContent"){o!=null&&(e[t]=t==="innerHTML"?Od(o):o);return}const a=e.tagName;if(t==="value"&&a!=="PROGRESS"&&!a.includes("-")){const f=a==="OPTION"?e.getAttribute("value")||"":e.value,h=o==null?e.type==="checkbox"?"on":"":String(o);(f!==h||!("_value"in e))&&(e.value=h),o==null&&e.removeAttribute(t),e._value=o;return}let n=!1;if(o===""||o==null){const f=typeof e[t];f==="boolean"?o=yc(o):o==null&&f==="string"?(o="",n=!0):f==="number"&&(o=0,n=!0)}try{e[t]=o}catch{}n&&e.removeAttribute(l||t)}function xp(e,t,o,A){e.addEventListener(t,o,A)}function Op(e,t,o,A){e.removeEventListener(t,o,A)}const ja=Symbol("_vei");function Bp(e,t,o,A,l=null){const a=e[ja]||(e[ja]={}),n=a[t];if(A&&n)n.value=A;else{const[f,h]=Up(t);if(A){const s=a[t]=Fp(A,l);xp(e,f,s,h)}else n&&(Op(e,f,n,h),a[t]=void 0)}}const Wa=/(?:Once|Passive|Capture)$/;function Up(e){let t;if(Wa.test(e)){t={};let A;for(;A=e.match(Wa);)e=e.slice(0,e.length-A[0].length),t[A[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):Rt(e.slice(2)),t]}let QA=0;const Dp=Promise.resolve(),Lp=()=>QA||(Dp.then(()=>QA=0),QA=Date.now());function Fp(e,t){const o=A=>{if(!A._vts)A._vts=Date.now();else if(A._vts<=o.attached)return;Yt(Qp(A,o.value),t,5,[A])};return o.value=e,o.attached=Lp(),o}function Qp(e,t){if(Ee(t)){const o=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{o.call(e),e._stopped=!0},t.map(A=>l=>!l._stopped&&A&&A(l))}else return t}const Ha=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Yp=(e,t,o,A,l,a)=>{const n=l==="svg";t==="class"?wp(e,A,n):t==="style"?Rp(e,o,A):Qo(t)?ji(t)||Bp(e,t,o,A,a):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Gp(e,t,A,n))?(Na(e,t,A),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Ja(e,t,A,n,a,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!ze(A))?Na(e,Ct(t),A,a,t):(t==="true-value"?e._trueValue=A:t==="false-value"&&(e._falseValue=A),Ja(e,t,A,n))};function Gp(e,t,o,A){if(A)return!!(t==="innerHTML"||t==="textContent"||t in e&&Ha(t)&&ke(o));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const l=e.tagName;if(l==="IMG"||l==="VIDEO"||l==="CANVAS"||l==="SOURCE")return!1}return Ha(t)&&ze(o)?!1:t in e}const Za={};/*! #__NO_SIDE_EFFECTS__ */function Kp(e,t,o){const A=rs(e,t);Go(A)&&et(A,t);class l extends fs{constructor(n){super(A,n,o)}}return l.def=A,l}const Jp=typeof HTMLElement<"u"?HTMLElement:class{};class fs extends Jp{constructor(t,o={},A=za){super(),this._def=t,this._props=o,this._createApp=A,this._isVueCE=!0,this._instance=null,this._app=null,this._nonce=this._def.nonce,this._connected=!1,this._resolved=!1,this._numberProps=null,this._styleChildren=new WeakSet,this._ob=null,this.shadowRoot&&A!==za?this._root=this.shadowRoot:t.shadowRoot!==!1?(this.attachShadow({mode:"open"}),this._root=this.shadowRoot):this._root=this,this._def.__asyncLoader||this._resolveProps(this._def)}connectedCallback(){if(!this.isConnected)return;this.shadowRoot||this._parseSlots(),this._connected=!0;let t=this;for(;t=t&&(t.parentNode||t.host);)if(t instanceof fs){this._parent=t;break}this._instance||(this._resolved?(this._setParent(),this._update()):t&&t._pendingResolve?this._pendingResolve=t._pendingResolve.then(()=>{this._pendingResolve=void 0,this._resolveDef()}):this._resolveDef())}_setParent(t=this._parent){t&&(this._instance.parent=t._instance,this._instance.provides=t._instance.provides)}disconnectedCallback(){this._connected=!1,es(()=>{this._connected||(this._ob&&(this._ob.disconnect(),this._ob=null),this._app&&this._app.unmount(),this._instance&&(this._instance.ce=void 0),this._app=this._instance=null)})}_resolveDef(){if(this._pendingResolve)return;for(let A=0;A<this.attributes.length;A++)this._setAttr(this.attributes[A].name);this._ob=new MutationObserver(A=>{for(const l of A)this._setAttr(l.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(A,l=!1)=>{this._resolved=!0,this._pendingResolve=void 0;const{props:a,styles:n}=A;let f;if(a&&!Ee(a))for(const h in a){const s=a[h];(s===Number||s&&s.type===Number)&&(h in this._props&&(this._props[h]=vi(this._props[h])),(f||(f=Object.create(null)))[Ct(h)]=!0)}this._numberProps=f,l&&this._resolveProps(A),this.shadowRoot&&this._applyStyles(n),this._mount(A)},o=this._def.__asyncLoader;o?this._pendingResolve=o().then(A=>t(this._def=A,!0)):t(this._def)}_mount(t){this._app=this._createApp(t),t.configureApp&&t.configureApp(this._app),this._app._ceVNode=this._createVNode(),this._app.mount(this._root);const o=this._instance&&this._instance.exposed;if(o)for(const A in o)Ke(this,A)||Object.defineProperty(this,A,{get:()=>Kc(o[A])})}_resolveProps(t){const{props:o}=t,A=Ee(o)?o:Object.keys(o||{});for(const l of Object.keys(this))l[0]!=="_"&&A.includes(l)&&this._setProp(l,this[l]);for(const l of A.map(Ct))Object.defineProperty(this,l,{get(){return this._getProp(l)},set(a){this._setProp(l,a,!0,!0)}})}_setAttr(t){if(t.startsWith("data-v-"))return;const o=this.hasAttribute(t);let A=o?this.getAttribute(t):Za;const l=Ct(t);o&&this._numberProps&&this._numberProps[l]&&(A=vi(A)),this._setProp(l,A,!1,!0)}_getProp(t){return this._props[t]}_setProp(t,o,A=!0,l=!1){if(o!==this._props[t]&&(o===Za?delete this._props[t]:(this._props[t]=o,t==="key"&&this._app&&(this._app._ceVNode.key=o)),l&&this._instance&&this._update(),A)){const a=this._ob;a&&a.disconnect(),o===!0?this.setAttribute(Rt(t),""):typeof o=="string"||typeof o=="number"?this.setAttribute(Rt(t),o+""):o||this.removeAttribute(Rt(t)),a&&a.observe(this,{attributes:!0})}}_update(){jp(this._createVNode(),this._root)}_createVNode(){const t={};this.shadowRoot||(t.onVnodeMounted=t.onVnodeUpdated=this._renderSlots.bind(this));const o=Re(this._def,et(t,this._props));return this._instance||(o.ce=A=>{this._instance=A,A.ce=this,A.isCE=!0;const l=(a,n)=>{this.dispatchEvent(new CustomEvent(a,Go(n[0])?et({detail:n},n[0]):{detail:n}))};A.emit=(a,...n)=>{l(a,n),Rt(a)!==a&&l(Rt(a),n)},this._setParent()}),o}_applyStyles(t,o){if(!t)return;if(o){if(o===this._def||this._styleChildren.has(o))return;this._styleChildren.add(o)}const A=this._nonce;for(let l=t.length-1;l>=0;l--){const a=document.createElement("style");A&&a.setAttribute("nonce",A),a.textContent=t[l],this.shadowRoot.prepend(a)}}_parseSlots(){const t=this._slots={};let o;for(;o=this.firstChild;){const A=o.nodeType===1&&o.getAttribute("slot")||"default";(t[A]||(t[A]=[])).push(o),this.removeChild(o)}}_renderSlots(){const t=(this._teleportTarget||this).querySelectorAll("slot"),o=this._instance.type.__scopeId;for(let A=0;A<t.length;A++){const l=t[A],a=l.getAttribute("name")||"default",n=this._slots[a],f=l.parentNode;if(n)for(const h of n){if(o&&h.nodeType===1){const s=o+"-s",d=document.createTreeWalker(h,1);h.setAttribute(s,"");let c;for(;c=d.nextNode();)c.setAttribute(s,"")}f.insertBefore(h,l)}else for(;l.firstChild;)f.insertBefore(l.firstChild,l);f.removeChild(l)}}_injectChildStyle(t){this._applyStyles(t.styles,t)}_removeChildStyle(t){}}const Np=et({patchProp:Yp},Vp);let Pa;function Dd(){return Pa||(Pa=Gh(Np))}const jp=(...e)=>{Dd().render(...e)},za=(...e)=>{const t=Dd().createApp(...e),{mount:o}=t;return t.mount=A=>{const l=Hp(A);if(!l)return;const a=t._component;!ke(a)&&!a.render&&!a.template&&(a.template=l.innerHTML),l.nodeType===1&&(l.textContent="");const n=o(l,!1,Wp(l));return l instanceof Element&&(l.removeAttribute("v-cloak"),l.setAttribute("data-v-app","")),n},t};function Wp(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Hp(e){return ze(e)?document.querySelector(e):e}function Zp(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}const Pp="JsSIP",zp="3.10.1",Ld={title:Pp,version:zp};var YA,_a;function rt(){if(_a)return YA;_a=1;var e=Ld;return YA={USER_AGENT:"".concat(e.title," ").concat(e.version),SIP:"sip",SIPS:"sips",causes:{CONNECTION_ERROR:"Connection Error",REQUEST_TIMEOUT:"Request Timeout",SIP_FAILURE_CODE:"SIP Failure Code",INTERNAL_ERROR:"Internal Error",BUSY:"Busy",REJECTED:"Rejected",REDIRECTED:"Redirected",UNAVAILABLE:"Unavailable",NOT_FOUND:"Not Found",ADDRESS_INCOMPLETE:"Address Incomplete",INCOMPATIBLE_SDP:"Incompatible SDP",MISSING_SDP:"Missing SDP",AUTHENTICATION_ERROR:"Authentication Error",BYE:"Terminated",WEBRTC_ERROR:"WebRTC Error",CANCELED:"Canceled",NO_ANSWER:"No Answer",EXPIRES:"Expires",NO_ACK:"No ACK",DIALOG_ERROR:"Dialog Error",USER_DENIED_MEDIA_ACCESS:"User Denied Media Access",BAD_MEDIA_DESCRIPTION:"Bad Media Description",RTP_TIMEOUT:"RTP Timeout"},SIP_ERROR_CAUSES:{REDIRECTED:[300,301,302,305,380],BUSY:[486,600],REJECTED:[403,603],NOT_FOUND:[404,604],UNAVAILABLE:[480,410,408,430],ADDRESS_INCOMPLETE:[484,424],INCOMPATIBLE_SDP:[488,606],AUTHENTICATION_ERROR:[401,407]},ACK:"ACK",BYE:"BYE",CANCEL:"CANCEL",INFO:"INFO",INVITE:"INVITE",MESSAGE:"MESSAGE",NOTIFY:"NOTIFY",OPTIONS:"OPTIONS",REGISTER:"REGISTER",REFER:"REFER",UPDATE:"UPDATE",SUBSCRIBE:"SUBSCRIBE",DTMF_TRANSPORT:{INFO:"INFO",RFC2833:"RFC2833"},REASON_PHRASE:{100:"Trying",180:"Ringing",181:"Call Is Being Forwarded",182:"Queued",183:"Session Progress",199:"Early Dialog Terminated",200:"OK",202:"Accepted",204:"No Notification",300:"Multiple Choices",301:"Moved Permanently",302:"Moved Temporarily",305:"Use Proxy",380:"Alternative Service",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",410:"Gone",412:"Conditional Request Failed",413:"Request Entity Too Large",414:"Request-URI Too Long",415:"Unsupported Media Type",416:"Unsupported URI Scheme",417:"Unknown Resource-Priority",420:"Bad Extension",421:"Extension Required",422:"Session Interval Too Small",423:"Interval Too Brief",424:"Bad Location Information",428:"Use Identity Header",429:"Provide Referrer Identity",430:"Flow Failed",433:"Anonymity Disallowed",436:"Bad Identity-Info",437:"Unsupported Certificate",438:"Invalid Identity Header",439:"First Hop Lacks Outbound Support",440:"Max-Breadth Exceeded",469:"Bad Info Package",470:"Consent Needed",478:"Unresolvable Destination",480:"Temporarily Unavailable",481:"Call/Transaction Does Not Exist",482:"Loop Detected",483:"Too Many Hops",484:"Address Incomplete",485:"Ambiguous",486:"Busy Here",487:"Request Terminated",488:"Not Acceptable Here",489:"Bad Event",491:"Request Pending",493:"Undecipherable",494:"Security Agreement Required",500:"JsSIP Internal Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Server Time-out",505:"Version Not Supported",513:"Message Too Large",580:"Precondition Failure",600:"Busy Everywhere",603:"Decline",604:"Does Not Exist Anywhere",606:"Not Acceptable"},ALLOWED_METHODS:"INVITE,ACK,CANCEL,BYE,UPDATE,MESSAGE,OPTIONS,REFER,INFO,NOTIFY",ACCEPTED_BODY_TYPES:"application/sdp, application/dtmf-relay",MAX_FORWARDS:69,SESSION_EXPIRES:90,MIN_SESSION_EXPIRES:60,CONNECTION_RECOVERY_MAX_INTERVAL:30,CONNECTION_RECOVERY_MIN_INTERVAL:2},YA}var GA,Xa;function vn(){if(Xa)return GA;Xa=1;function e(R){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?e=function(x){return typeof x}:e=function(x){return x&&typeof Symbol=="function"&&x.constructor===Symbol&&x!==Symbol.prototype?"symbol":typeof x},e(R)}function t(R,I){if(!(R instanceof I))throw new TypeError("Cannot call a class as a function")}function o(R,I){if(typeof I!="function"&&I!==null)throw new TypeError("Super expression must either be null or a function");R.prototype=Object.create(I&&I.prototype,{constructor:{value:R,writable:!0,configurable:!0}}),I&&d(R,I)}function A(R){var I=h();return function(){var E=c(R),C;if(I){var v=c(this).constructor;C=Reflect.construct(E,arguments,v)}else C=E.apply(this,arguments);return l(this,C)}}function l(R,I){return I&&(e(I)==="object"||typeof I=="function")?I:a(R)}function a(R){if(R===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return R}function n(R){var I=typeof Map=="function"?new Map:void 0;return n=function(E){if(E===null||!s(E))return E;if(typeof E!="function")throw new TypeError("Super expression must either be null or a function");if(typeof I<"u"){if(I.has(E))return I.get(E);I.set(E,C)}function C(){return f(E,arguments,c(this).constructor)}return C.prototype=Object.create(E.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),d(C,E)},n(R)}function f(R,I,x){return h()?f=Reflect.construct:f=function(C,v,O){var L=[null];L.push.apply(L,v);var k=Function.bind.apply(C,L),D=new k;return O&&d(D,O.prototype),D},f.apply(null,arguments)}function h(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch{return!1}}function s(R){return Function.toString.call(R).indexOf("[native code]")!==-1}function d(R,I){return d=Object.setPrototypeOf||function(E,C){return E.__proto__=C,E},d(R,I)}function c(R){return c=Object.setPrototypeOf?Object.getPrototypeOf:function(x){return x.__proto__||Object.getPrototypeOf(x)},c(R)}var p=function(R){o(x,R);var I=A(x);function x(E,C){var v;return t(this,x),v=I.call(this),v.code=1,v.name="CONFIGURATION_ERROR",v.parameter=E,v.value=C,v.message=v.value?"Invalid value ".concat(JSON.stringify(v.value),' for parameter "').concat(v.parameter,'"'):"Missing parameter: ".concat(v.parameter),v}return x}(n(Error)),V=function(R){o(x,R);var I=A(x);function x(E){var C;return t(this,x),C=I.call(this),C.code=2,C.name="INVALID_STATE_ERROR",C.status=E,C.message="Invalid status: ".concat(E),C}return x}(n(Error)),M=function(R){o(x,R);var I=A(x);function x(E){var C;return t(this,x),C=I.call(this),C.code=3,C.name="NOT_SUPPORTED_ERROR",C.message=E,C}return x}(n(Error)),T=function(R){o(x,R);var I=A(x);function x(E){var C;return t(this,x),C=I.call(this),C.code=4,C.name="NOT_READY_ERROR",C.message=E,C}return x}(n(Error));return GA={ConfigurationError:p,InvalidStateError:V,NotSupportedError:M,NotReadyError:T},GA}var Xe={},KA,$a;function gs(){if($a)return KA;$a=1;function e(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function")}function t(a,n){for(var f=0;f<n.length;f++){var h=n[f];h.enumerable=h.enumerable||!1,h.configurable=!0,"value"in h&&(h.writable=!0),Object.defineProperty(a,h.key,h)}}function o(a,n,f){return n&&t(a.prototype,n),f&&t(a,f),a}var A=yn(),l=Ht();return KA=function(){o(a,null,[{key:"parse",value:function(f){if(f=l.parse(f,"Name_Addr_Header"),f!==-1)return f}}]);function a(n,f,h){if(e(this,a),!n||!(n instanceof A))throw new TypeError('missing or invalid "uri" parameter');this._uri=n,this._parameters={},this.display_name=f;for(var s in h)Object.prototype.hasOwnProperty.call(h,s)&&this.setParam(s,h[s])}return o(a,[{key:"setParam",value:function(f,h){f&&(this._parameters[f.toLowerCase()]=typeof h>"u"||h===null?null:h.toString())}},{key:"getParam",value:function(f){if(f)return this._parameters[f.toLowerCase()]}},{key:"hasParam",value:function(f){if(f)return this._parameters.hasOwnProperty(f.toLowerCase())&&!0||!1}},{key:"deleteParam",value:function(f){if(f=f.toLowerCase(),this._parameters.hasOwnProperty(f)){var h=this._parameters[f];return delete this._parameters[f],h}}},{key:"clearParams",value:function(){this._parameters={}}},{key:"clone",value:function(){return new a(this._uri.clone(),this._display_name,JSON.parse(JSON.stringify(this._parameters)))}},{key:"_quote",value:function(f){return f.replace(/\\/g,"\\\\").replace(/"/g,'\\"')}},{key:"toString",value:function(){var f=this._display_name?'"'.concat(this._quote(this._display_name),'" '):"";f+="<".concat(this._uri.toString(),">");for(var h in this._parameters)Object.prototype.hasOwnProperty.call(this._parameters,h)&&(f+=";".concat(h),this._parameters[h]!==null&&(f+="=".concat(this._parameters[h])));return f}},{key:"uri",get:function(){return this._uri}},{key:"display_name",get:function(){return this._display_name},set:function(f){this._display_name=f===0?"0":f}}]),a}(),KA}var JA,eu;function Ht(){return eu||(eu=1,JA=function(){function e(o){return'"'+o.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\x08/g,"\\b").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\f/g,"\\f").replace(/\r/g,"\\r").replace(/[\x00-\x07\x0B\x0E-\x1F\x80-\uFFFF]/g,escape)+'"'}var t={parse:function(A,l){var a={CRLF:d,DIGIT:c,ALPHA:p,HEXDIG:V,WSP:M,OCTET:T,DQUOTE:R,SP:I,HTAB:x,alphanum:E,reserved:C,unreserved:v,mark:O,escaped:L,LWS:k,SWS:D,HCOLON:N,TEXT_UTF8_TRIM:W,TEXT_UTF8char:B,UTF8_NONASCII:H,UTF8_CONT:y,LHEX:S,token:Q,token_nodot:U,separators:J,word:Z,STAR:G,SLASH:q,EQUAL:w,LPAREN:j,RPAREN:P,RAQUOT:ee,LAQUOT:_,COMMA:le,SEMI:ae,COLON:fe,LDQUOT:pe,RDQUOT:ge,comment:Y,ctext:K,quoted_string:$,quoted_string_clean:te,qdtext:X,quoted_pair:ne,SIP_URI_noparams:ue,SIP_URI:re,uri_scheme:ie,uri_scheme_sips:se,uri_scheme_sip:Ce,userinfo:he,user:ye,user_unreserved:we,password:Ie,hostport:Ue,host:Me,hostname:at,domainlabel:it,toplabel:St,IPv6reference:vt,IPv6address:Zt,h16:Ve,ls32:je,IPv4address:ct,dec_octet:dn,port:ks,uri_parameters:Ts,uri_parameter:lA,transport_param:Rs,user_param:Ms,method_param:xs,ttl_param:Os,maddr_param:Bs,lr_param:Us,other_param:Ds,pname:Ls,pvalue:Fs,paramchar:rr,param_unreserved:Qs,headers:Ys,header:Pr,hname:Gs,hvalue:Ks,hnv_unreserved:or,Request_Response:wf,Request_Line:Js,Request_URI:Ns,absoluteURI:aA,hier_part:js,net_path:Ws,abs_path:zr,opaque_part:Hs,uric:Ar,uric_no_slash:Zs,path_segments:Ps,segment:_r,param:uA,pchar:ir,scheme:zs,authority:_s,srvr:Xs,reg_name:$s,query:el,SIP_Version:cA,INVITEm:tl,ACKm:nl,OPTIONSm:rl,BYEm:ol,CANCELm:Al,REGISTERm:il,SUBSCRIBEm:sl,NOTIFYm:ll,REFERm:al,Method:Xr,Status_Line:ul,Status_Code:cl,extension_code:dl,Reason_Phrase:fl,Allow_Events:Ef,Call_ID:kf,Contact:Tf,contact_param:$r,name_addr:wn,display_name:eo,contact_params:dA,c_p_q:gl,c_p_expires:hl,delta_seconds:En,qvalue:pl,generic_param:tt,gen_value:ql,Content_Disposition:Rf,disp_type:ml,disp_param:fA,handling_param:Vl,Content_Encoding:Mf,Content_Length:xf,Content_Type:Of,media_type:bl,m_type:Cl,discrete_type:vl,composite_type:yl,extension_token:to,x_token:Il,m_subtype:Sl,m_parameter:gA,m_value:wl,CSeq:Bf,CSeq_value:El,Expires:Uf,Event:Df,event_type:sr,From:Lf,from_param:hA,tag_param:pA,Max_Forwards:Ff,Min_Expires:Qf,Name_Addr_Header:Yf,Proxy_Authenticate:Gf,challenge:qA,other_challenge:kl,auth_param:lr,digest_cln:no,realm:Tl,realm_value:Rl,domain:Ml,URI:ro,nonce:xl,nonce_value:Ol,opaque:Bl,stale:Ul,algorithm:Dl,qop_options:Ll,qop_value:oo,Proxy_Require:Kf,Record_Route:Jf,rec_route:Ao,Reason:Nf,reason_param:mA,reason_cause:Fl,Require:jf,Route:Wf,route_param:io,Subscription_State:Hf,substate_value:Ql,subexp_params:VA,event_reason_value:Yl,Subject:Zf,Supported:Pf,To:zf,to_param:bA,Via:_f,via_param:so,via_params:CA,via_ttl:Gl,via_maddr:Kl,via_received:Jl,via_branch:Nl,response_port:jl,rport:Wl,sent_protocol:Hl,protocol_name:Zl,transport:Pl,sent_by:zl,via_host:_l,via_port:Xl,ttl:vA,WWW_Authenticate:Xf,Session_Expires:$f,s_e_expires:$l,s_e_params:yA,s_e_refresher:ea,extension_header:eg,header_value:ta,message_body:tg,uuid_URI:ng,uuid:na,hex4:Pt,hex8:ra,hex12:oa,Refer_To:rg,Replaces:og,call_id:Aa,replaces_param:IA,to_tag:ia,from_tag:sa,early_flag:la};if(l!==void 0){if(a[l]===void 0)throw new Error("Invalid rule name: "+e(l)+".")}else l="CRLF";var n=0,f=0,h=[];function s(r){n<f||(n>f&&(f=n,h=[]),h.push(r))}function d(){var r;return A.substr(n,2)===`\r
|
package/dist/webphone.es.js
CHANGED
|
@@ -110,7 +110,7 @@ const Ic = (e) => !!(e && e.__v_isRef === !0), nt = (e) => ze(e) ? e : e == null
|
|
|
110
110
|
An(e) ? `Symbol(${(o = e.description) != null ? o : t})` : e
|
|
111
111
|
);
|
|
112
112
|
};
|
|
113
|
-
var Sg = { NVM_INC: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node", TERM_PROGRAM: "vscode", NODE: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node", NVM_CD_FLAGS: "-q", INIT_CWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", SHELL: "/bin/zsh", TERM: "xterm-256color", HOMEBREW_REPOSITORY: "/opt/homebrew", TMPDIR: "/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/", npm_config_global_prefix: "/Users/cesarbacca/.nvm/versions/node/v22.14.0", TERM_PROGRAM_VERSION: "1.97.2", MallocNanoZone: "0", ORIGINAL_XDG_CURRENT_DESKTOP: "undefined", ZDOTDIR: "/Users/cesarbacca", COLOR: "1", npm_config_noproxy: "", npm_config_local_prefix: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", NVM_DIR: "/Users/cesarbacca/.nvm", USER: "cesarbacca", COMMAND_MODE: "unix2003", npm_config_globalconfig: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc", Q_SET_PARENT_CHECK: "1", SSH_AUTH_SOCK: "/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners", VSCODE_PROFILE_INITIALIZED: "1", __CF_USER_TEXT_ENCODING: "0x1F5:0x0:0x8", npm_execpath: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js", npm_package_integrity: "null", npm_config_access: "public", PATH: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand", _: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite", npm_package_json: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json", SHELL_PID: "39908", USER_ZDOTDIR: "/Users/cesarbacca", __CFBundleIdentifier: "com.microsoft.VSCode", npm_config_init_module: "/Users/cesarbacca/.npm-init.js", npm_config_userconfig: "/Users/cesarbacca/.npmrc", PWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", TTY: "/dev/ttys006", npm_command: "run-script", VSCODE_NONCE: "96a18e43-5963-4f03-b640-682987711925", EDITOR: "vi", npm_lifecycle_event: "build-only", LANG: "es_ES.UTF-8", npm_package_name: "@tmsoft/webphone", VSCODE_GIT_ASKPASS_EXTRA_ARGS: "", XPC_FLAGS: "0x0", npm_config_npm_version: "10.9.2", npm_config_node_gyp: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js", XPC_SERVICE_NAME: "0", npm_package_version: "1.0.
|
|
113
|
+
var Sg = { NVM_INC: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node", TERM_PROGRAM: "vscode", NODE: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node", NVM_CD_FLAGS: "-q", INIT_CWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", SHELL: "/bin/zsh", TERM: "xterm-256color", HOMEBREW_REPOSITORY: "/opt/homebrew", TMPDIR: "/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/", npm_config_global_prefix: "/Users/cesarbacca/.nvm/versions/node/v22.14.0", TERM_PROGRAM_VERSION: "1.97.2", MallocNanoZone: "0", ORIGINAL_XDG_CURRENT_DESKTOP: "undefined", ZDOTDIR: "/Users/cesarbacca", COLOR: "1", npm_config_noproxy: "", npm_config_local_prefix: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", NVM_DIR: "/Users/cesarbacca/.nvm", USER: "cesarbacca", COMMAND_MODE: "unix2003", npm_config_globalconfig: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc", Q_SET_PARENT_CHECK: "1", SSH_AUTH_SOCK: "/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners", VSCODE_PROFILE_INITIALIZED: "1", __CF_USER_TEXT_ENCODING: "0x1F5:0x0:0x8", npm_execpath: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js", npm_package_integrity: "null", npm_config_access: "public", PATH: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand", _: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite", npm_package_json: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json", SHELL_PID: "39908", USER_ZDOTDIR: "/Users/cesarbacca", __CFBundleIdentifier: "com.microsoft.VSCode", npm_config_init_module: "/Users/cesarbacca/.npm-init.js", npm_config_userconfig: "/Users/cesarbacca/.npmrc", PWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", TTY: "/dev/ttys006", npm_command: "run-script", VSCODE_NONCE: "96a18e43-5963-4f03-b640-682987711925", EDITOR: "vi", npm_lifecycle_event: "build-only", LANG: "es_ES.UTF-8", npm_package_name: "@tmsoft/webphone", VSCODE_GIT_ASKPASS_EXTRA_ARGS: "", XPC_FLAGS: "0x0", npm_config_npm_version: "10.9.2", npm_config_node_gyp: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js", XPC_SERVICE_NAME: "0", npm_package_version: "1.0.6", VSCODE_INJECTION: "1", npm_package_resolved: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", HOME: "/Users/cesarbacca", SHLVL: "5", VSCODE_GIT_ASKPASS_MAIN: "/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass-main.js", HOMEBREW_PREFIX: "/opt/homebrew", LOGNAME: "cesarbacca", npm_config_cache: "/Users/cesarbacca/.npm", npm_lifecycle_script: "vite build", VSCODE_GIT_IPC_HANDLE: "/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/vscode-git-ec41402399.sock", NVM_BIN: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin", npm_config_user_agent: "npm/10.9.2 node/v22.14.0 darwin arm64 workspaces/false", GIT_ASKPASS: "/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass.sh", HOMEBREW_CELLAR: "/opt/homebrew/Cellar", INFOPATH: "/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:", VSCODE_GIT_ASKPASS_NODE: "/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Plugin).app/Contents/MacOS/Code Helper (Plugin)", QTERM_SESSION_ID: "4dd62bd2d127495fb911e54876516fcd", Q_TERM: "1.6.3", COLORTERM: "truecolor", npm_config_prefix: "/Users/cesarbacca/.nvm/versions/node/v22.14.0", npm_node_execpath: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node", NODE_ENV: "production", LAUNCH_EDITOR: "code" };
|
|
114
114
|
let wt;
|
|
115
115
|
class wg {
|
|
116
116
|
constructor(t = !1) {
|
|
@@ -1050,7 +1050,7 @@ function nn(e, t = 1 / 0, o) {
|
|
|
1050
1050
|
}
|
|
1051
1051
|
return e;
|
|
1052
1052
|
}
|
|
1053
|
-
var hn = { NVM_INC: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node", TERM_PROGRAM: "vscode", NODE: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node", NVM_CD_FLAGS: "-q", INIT_CWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", SHELL: "/bin/zsh", TERM: "xterm-256color", HOMEBREW_REPOSITORY: "/opt/homebrew", TMPDIR: "/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/", npm_config_global_prefix: "/Users/cesarbacca/.nvm/versions/node/v22.14.0", TERM_PROGRAM_VERSION: "1.97.2", MallocNanoZone: "0", ORIGINAL_XDG_CURRENT_DESKTOP: "undefined", ZDOTDIR: "/Users/cesarbacca", COLOR: "1", npm_config_noproxy: "", npm_config_local_prefix: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", NVM_DIR: "/Users/cesarbacca/.nvm", USER: "cesarbacca", COMMAND_MODE: "unix2003", npm_config_globalconfig: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc", Q_SET_PARENT_CHECK: "1", SSH_AUTH_SOCK: "/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners", VSCODE_PROFILE_INITIALIZED: "1", __CF_USER_TEXT_ENCODING: "0x1F5:0x0:0x8", npm_execpath: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js", npm_package_integrity: "null", npm_config_access: "public", PATH: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand", _: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite", npm_package_json: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json", SHELL_PID: "39908", USER_ZDOTDIR: "/Users/cesarbacca", __CFBundleIdentifier: "com.microsoft.VSCode", npm_config_init_module: "/Users/cesarbacca/.npm-init.js", npm_config_userconfig: "/Users/cesarbacca/.npmrc", PWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", TTY: "/dev/ttys006", npm_command: "run-script", VSCODE_NONCE: "96a18e43-5963-4f03-b640-682987711925", EDITOR: "vi", npm_lifecycle_event: "build-only", LANG: "es_ES.UTF-8", npm_package_name: "@tmsoft/webphone", VSCODE_GIT_ASKPASS_EXTRA_ARGS: "", XPC_FLAGS: "0x0", npm_config_npm_version: "10.9.2", npm_config_node_gyp: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js", XPC_SERVICE_NAME: "0", npm_package_version: "1.0.
|
|
1053
|
+
var hn = { NVM_INC: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/include/node", TERM_PROGRAM: "vscode", NODE: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node", NVM_CD_FLAGS: "-q", INIT_CWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", SHELL: "/bin/zsh", TERM: "xterm-256color", HOMEBREW_REPOSITORY: "/opt/homebrew", TMPDIR: "/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/", npm_config_global_prefix: "/Users/cesarbacca/.nvm/versions/node/v22.14.0", TERM_PROGRAM_VERSION: "1.97.2", MallocNanoZone: "0", ORIGINAL_XDG_CURRENT_DESKTOP: "undefined", ZDOTDIR: "/Users/cesarbacca", COLOR: "1", npm_config_noproxy: "", npm_config_local_prefix: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", NVM_DIR: "/Users/cesarbacca/.nvm", USER: "cesarbacca", COMMAND_MODE: "unix2003", npm_config_globalconfig: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/etc/npmrc", Q_SET_PARENT_CHECK: "1", SSH_AUTH_SOCK: "/private/tmp/com.apple.launchd.a2AKwPF0TS/Listeners", VSCODE_PROFILE_INITIALIZED: "1", __CF_USER_TEXT_ENCODING: "0x1F5:0x0:0x8", npm_execpath: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/bin/npm-cli.js", npm_package_integrity: "null", npm_config_access: "public", PATH: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/company/node_modules/.bin:/Users/cesarbacca/Documents/GitHub/node_modules/.bin:/Users/cesarbacca/Documents/node_modules/.bin:/Users/cesarbacca/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/cesarbacca/.local/bin:/Users/cesarbacca/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand", _: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/node_modules/.bin/vite", npm_package_json: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib/package.json", SHELL_PID: "39908", USER_ZDOTDIR: "/Users/cesarbacca", __CFBundleIdentifier: "com.microsoft.VSCode", npm_config_init_module: "/Users/cesarbacca/.npm-init.js", npm_config_userconfig: "/Users/cesarbacca/.npmrc", PWD: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", TTY: "/dev/ttys006", npm_command: "run-script", VSCODE_NONCE: "96a18e43-5963-4f03-b640-682987711925", EDITOR: "vi", npm_lifecycle_event: "build-only", LANG: "es_ES.UTF-8", npm_package_name: "@tmsoft/webphone", VSCODE_GIT_ASKPASS_EXTRA_ARGS: "", XPC_FLAGS: "0x0", npm_config_npm_version: "10.9.2", npm_config_node_gyp: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js", XPC_SERVICE_NAME: "0", npm_package_version: "1.0.6", VSCODE_INJECTION: "1", npm_package_resolved: "/Users/cesarbacca/Documents/GitHub/company/webphone-lib", HOME: "/Users/cesarbacca", SHLVL: "5", VSCODE_GIT_ASKPASS_MAIN: "/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass-main.js", HOMEBREW_PREFIX: "/opt/homebrew", LOGNAME: "cesarbacca", npm_config_cache: "/Users/cesarbacca/.npm", npm_lifecycle_script: "vite build", VSCODE_GIT_IPC_HANDLE: "/var/folders/z3/wx1ld4rn11vdcxx7v96cv9lh0000gn/T/vscode-git-ec41402399.sock", NVM_BIN: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin", npm_config_user_agent: "npm/10.9.2 node/v22.14.0 darwin arm64 workspaces/false", GIT_ASKPASS: "/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/git/dist/askpass.sh", HOMEBREW_CELLAR: "/opt/homebrew/Cellar", INFOPATH: "/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:/opt/homebrew/share/info:", VSCODE_GIT_ASKPASS_NODE: "/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Plugin).app/Contents/MacOS/Code Helper (Plugin)", QTERM_SESSION_ID: "4dd62bd2d127495fb911e54876516fcd", Q_TERM: "1.6.3", COLORTERM: "truecolor", npm_config_prefix: "/Users/cesarbacca/.nvm/versions/node/v22.14.0", npm_node_execpath: "/Users/cesarbacca/.nvm/versions/node/v22.14.0/bin/node", NODE_ENV: "production", LAUNCH_EDITOR: "code" };
|
|
1054
1054
|
const mr = [];
|
|
1055
1055
|
let OA = !1;
|
|
1056
1056
|
function th(e, ...t) {
|