regor 1.4.7 → 1.4.9
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 +4 -3
- package/dist/regor.d.ts +5 -4
- package/dist/regor.es2015.cjs.js +64 -11
- package/dist/regor.es2015.cjs.prod.js +3 -3
- package/dist/regor.es2015.esm.js +64 -11
- package/dist/regor.es2015.esm.prod.js +3 -3
- package/dist/regor.es2015.iife.js +64 -11
- package/dist/regor.es2015.iife.prod.js +3 -3
- package/dist/regor.es2019.cjs.js +64 -11
- package/dist/regor.es2019.cjs.prod.js +3 -3
- package/dist/regor.es2019.esm.js +64 -11
- package/dist/regor.es2019.esm.prod.js +3 -3
- package/dist/regor.es2019.iife.js +64 -11
- package/dist/regor.es2019.iife.prod.js +3 -3
- package/dist/regor.es2022.cjs.js +64 -11
- package/dist/regor.es2022.cjs.prod.js +3 -3
- package/dist/regor.es2022.esm.js +64 -11
- package/dist/regor.es2022.esm.prod.js +3 -3
- package/dist/regor.es2022.iife.js +64 -11
- package/dist/regor.es2022.iife.prod.js +3 -3
- package/package.json +1 -1
package/dist/regor.es2015.esm.js
CHANGED
|
@@ -235,6 +235,9 @@ var describeValue = (value) => {
|
|
|
235
235
|
var _a;
|
|
236
236
|
if (value === null) return "null";
|
|
237
237
|
if (value === void 0) return "undefined";
|
|
238
|
+
if (isRef(value)) {
|
|
239
|
+
return `ref<${describeValue(value())}>`;
|
|
240
|
+
}
|
|
238
241
|
if (typeof value === "string") return "string";
|
|
239
242
|
if (typeof value === "number") return "number";
|
|
240
243
|
if (typeof value === "boolean") return "boolean";
|
|
@@ -249,6 +252,47 @@ var describeValue = (value) => {
|
|
|
249
252
|
const ctorName = (_a = value == null ? void 0 : value.constructor) == null ? void 0 : _a.name;
|
|
250
253
|
return ctorName && ctorName !== "Object" ? ctorName : "object";
|
|
251
254
|
};
|
|
255
|
+
var trimPreview = (value) => {
|
|
256
|
+
return value.length > 60 ? `${value.slice(0, 57)}...` : value;
|
|
257
|
+
};
|
|
258
|
+
var formatPreview = (value, depth = 0) => {
|
|
259
|
+
const maxPreviewDepth = 1;
|
|
260
|
+
const maxArrayItems = 5;
|
|
261
|
+
const maxObjectEntries = 5;
|
|
262
|
+
if (depth > maxPreviewDepth) return "unknown";
|
|
263
|
+
if (isRef(value)) {
|
|
264
|
+
const refValue = value();
|
|
265
|
+
return `ref(${formatPreview(refValue, depth + 1)})`;
|
|
266
|
+
}
|
|
267
|
+
if (typeof value === "string") return trimPreview(JSON.stringify(value));
|
|
268
|
+
if (typeof value === "number" || typeof value === "boolean" || typeof value === "bigint") {
|
|
269
|
+
return String(value);
|
|
270
|
+
}
|
|
271
|
+
if (typeof value === "symbol") return String(value);
|
|
272
|
+
if (value === null) return "null";
|
|
273
|
+
if (value === void 0) return "undefined";
|
|
274
|
+
if (value instanceof Date) return value.toISOString();
|
|
275
|
+
if (value instanceof RegExp) return String(value);
|
|
276
|
+
if (isArray(value)) {
|
|
277
|
+
const items = value.slice(0, maxArrayItems).map((x) => formatPreview(x, depth + 1)).join(", ");
|
|
278
|
+
return value.length > maxArrayItems ? `[${items}, ...]` : `[${items}]`;
|
|
279
|
+
}
|
|
280
|
+
if (isObject(value)) {
|
|
281
|
+
const entries = Object.entries(value).slice(0, maxObjectEntries);
|
|
282
|
+
if (entries.length === 0) return "{}";
|
|
283
|
+
const text = entries.map(([key, entry]) => {
|
|
284
|
+
const preview = formatPreview(entry, depth + 1);
|
|
285
|
+
return `${key}: ${preview}`;
|
|
286
|
+
}).join(", ");
|
|
287
|
+
return Object.keys(value).length > maxObjectEntries ? `{ ${text}, ... }` : `{ ${text} }`;
|
|
288
|
+
}
|
|
289
|
+
return "unknown";
|
|
290
|
+
};
|
|
291
|
+
var describe = (value) => {
|
|
292
|
+
const type = describeValue(value);
|
|
293
|
+
const preview = formatPreview(value);
|
|
294
|
+
return `got ${type} (${preview})`;
|
|
295
|
+
};
|
|
252
296
|
var formatLiteral = (value) => {
|
|
253
297
|
if (typeof value === "string") return `"${value}"`;
|
|
254
298
|
if (typeof value === "number" || typeof value === "boolean") {
|
|
@@ -259,18 +303,24 @@ var formatLiteral = (value) => {
|
|
|
259
303
|
return describeValue(value);
|
|
260
304
|
};
|
|
261
305
|
var isString2 = (value, name) => {
|
|
262
|
-
if (typeof value !== "string")
|
|
306
|
+
if (typeof value !== "string")
|
|
307
|
+
fail(name, `expected string, ${describe(value)}`);
|
|
263
308
|
};
|
|
264
309
|
var isNumber = (value, name) => {
|
|
265
|
-
if (typeof value !== "number")
|
|
310
|
+
if (typeof value !== "number")
|
|
311
|
+
fail(name, `expected number, ${describe(value)}`);
|
|
266
312
|
};
|
|
267
313
|
var isBoolean = (value, name) => {
|
|
268
|
-
if (typeof value !== "boolean")
|
|
314
|
+
if (typeof value !== "boolean")
|
|
315
|
+
fail(name, `expected boolean, ${describe(value)}`);
|
|
269
316
|
};
|
|
270
317
|
var isClass = (ctor) => {
|
|
271
318
|
return (value, name) => {
|
|
272
319
|
if (!(value instanceof ctor)) {
|
|
273
|
-
fail(
|
|
320
|
+
fail(
|
|
321
|
+
name,
|
|
322
|
+
`expected instance of ${ctor.name || "provided class"}, ${describe(value)}`
|
|
323
|
+
);
|
|
274
324
|
}
|
|
275
325
|
};
|
|
276
326
|
};
|
|
@@ -291,13 +341,13 @@ var oneOf = (values) => {
|
|
|
291
341
|
if (values.includes(value)) return;
|
|
292
342
|
fail(
|
|
293
343
|
name,
|
|
294
|
-
`expected one of ${values.map((x) => formatLiteral(x)).join(", ")}`
|
|
344
|
+
`expected one of ${values.map((x) => formatLiteral(x)).join(", ")}, ${describe(value)}`
|
|
295
345
|
);
|
|
296
346
|
};
|
|
297
347
|
};
|
|
298
348
|
var arrayOf = (validator) => {
|
|
299
349
|
return (value, name, head) => {
|
|
300
|
-
if (!isArray(value)) fail(name,
|
|
350
|
+
if (!isArray(value)) fail(name, `expected array, ${describe(value)}`);
|
|
301
351
|
const items = value;
|
|
302
352
|
for (let i = 0; i < items.length; ++i) {
|
|
303
353
|
validator(items[i], `${name}[${i}]`, head);
|
|
@@ -306,7 +356,7 @@ var arrayOf = (validator) => {
|
|
|
306
356
|
};
|
|
307
357
|
var shape = (schema) => {
|
|
308
358
|
return (value, name, head) => {
|
|
309
|
-
if (!isObject(value)) fail(name,
|
|
359
|
+
if (!isObject(value)) fail(name, `expected object, ${describe(value)}`);
|
|
310
360
|
const record = value;
|
|
311
361
|
for (const key in schema) {
|
|
312
362
|
const validator = schema[key];
|
|
@@ -316,13 +366,16 @@ var shape = (schema) => {
|
|
|
316
366
|
};
|
|
317
367
|
var refOf = (validator) => {
|
|
318
368
|
return (value, name, head) => {
|
|
319
|
-
if (
|
|
320
|
-
|
|
321
|
-
|
|
369
|
+
if (isRef(value)) {
|
|
370
|
+
validator(value(), `${name}.value`, head);
|
|
371
|
+
return;
|
|
372
|
+
}
|
|
373
|
+
fail(name, `expected ref, ${describe(value)}`);
|
|
322
374
|
};
|
|
323
375
|
};
|
|
324
376
|
var pval = {
|
|
325
377
|
fail,
|
|
378
|
+
describe,
|
|
326
379
|
isString: isString2,
|
|
327
380
|
isNumber,
|
|
328
381
|
isBoolean,
|
|
@@ -535,7 +588,7 @@ var ComponentHead = class {
|
|
|
535
588
|
);
|
|
536
589
|
}
|
|
537
590
|
/**
|
|
538
|
-
* Validates selected incoming props
|
|
591
|
+
* Validates selected incoming props at runtime.
|
|
539
592
|
*
|
|
540
593
|
* Only keys listed in `schema` are checked. Validation throws immediately
|
|
541
594
|
* on the first invalid prop and does not mutate `head.props`.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var mr=Object.defineProperty,dr=Object.defineProperties;var hr=Object.getOwnPropertyDescriptors;var qn=Object.getOwnPropertySymbols;var yr=Object.prototype.hasOwnProperty,gr=Object.prototype.propertyIsEnumerable;var mt=Math.pow,on=(n,e,t)=>e in n?mr(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,dt=(n,e)=>{for(var t in e||(e={}))yr.call(e,t)&&on(n,t,e[t]);if(qn)for(var t of qn(e))gr.call(e,t)&&on(n,t,e[t]);return n},zn=(n,e)=>dr(n,hr(e));var m=(n,e,t)=>on(n,typeof e!="symbol"?e+"":e,t);var Kn=(n,e,t)=>new Promise((o,r)=>{var s=c=>{try{a(t.next(c))}catch(u){r(u)}},i=c=>{try{a(t.throw(c))}catch(u){r(u)}},a=c=>c.done?o(c.value):Promise.resolve(c.value).then(s,i);a((t=t.apply(n,e)).next())});var Be=Symbol(":regor");var ge=n=>{let e=[n];for(let t=0;t<e.length;++t){let o=e[t];br(o);for(let r=o.lastChild;r!=null;r=r.previousSibling)e.push(r)}},br=n=>{let e=n[Be];if(!e)return;let t=e.unbinders;for(let o=0;o<t.length;++o)t[o]();t.length=0,n[Be]=void 0};var je=[],ht=!1,yt,Wn=()=>{if(ht=!1,yt=void 0,je.length!==0){for(let n=0;n<je.length;++n)ge(je[n]);je.length=0}},J=n=>{n.remove(),je.push(n),ht||(ht=!0,yt=setTimeout(Wn,1))},Tr=()=>Kn(null,null,function*(){je.length===0&&!ht||(yt&&clearTimeout(yt),Wn())});var q=n=>typeof n=="function",z=n=>typeof n=="string",Gn=n=>typeof n=="undefined",fe=n=>n==null||typeof n=="undefined",F=n=>typeof n!="string"||!(n!=null&&n.trim()),xr=Object.prototype.toString,rn=n=>xr.call(n),Se=n=>rn(n)==="[object Map]",ue=n=>rn(n)==="[object Set]",sn=n=>rn(n)==="[object Date]",et=n=>typeof n=="symbol",w=Array.isArray,I=n=>n!==null&&typeof n=="object";var Jn={0:"createApp can't find root element. You must define either a valid `selector` or an `element`. Example: createApp({}, {selector: '#app', html: '...'})",1:n=>`Component template cannot be found. selector: ${n} .`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:n=>`${n} requires ref source argument`,4:"computed is readonly.",5:"persist requires a string key."},j=(n,...e)=>{let t=Jn[n];return new Error(q(t)?t.call(Jn,...e):t)};var gt=[],Qn=()=>{let n={onMounted:[],onUnmounted:[]};return gt.push(n),n},Le=n=>{let e=gt[gt.length-1];if(!e&&!n)throw j(2);return e},Xn=n=>{let e=Le();return n&&cn(n),gt.pop(),e},an=Symbol("csp"),cn=n=>{let e=n,t=e[an];if(t){let o=Le();if(t===o)return;o.onMounted.length>0&&t.onMounted.push(...o.onMounted),o.onUnmounted.length>0&&t.onUnmounted.push(...o.onUnmounted);return}e[an]=Le()},bt=n=>n[an];var Ae=n=>{var t,o;let e=(t=bt(n))==null?void 0:t.onUnmounted;e==null||e.forEach(r=>{r()}),(o=n.unmounted)==null||o.call(n)};var Yn={8:n=>`Model binding requires a ref at ${n.outerHTML}`,7:n=>`Model binding is not supported on ${n.tagName} element at ${n.outerHTML}`,0:(n,e)=>`${n} binding expression is missing at ${e.outerHTML}`,1:(n,e,t)=>`invalid ${n} expression: ${e} at ${t.outerHTML}`,2:(n,e)=>`${n} requires object expression at ${e.outerHTML}`,3:(n,e)=>`${n} binder: key is empty on ${e.outerHTML}.`,4:(n,e,t,o)=>({msg:`Failed setting prop "${n}" on <${e.toLowerCase()}>: value ${t} is invalid.`,args:[o]}),5:(n,e)=>`${n} binding missing event type at ${e.outerHTML}`,6:(n,e)=>({msg:n,args:[e]})},U=(n,...e)=>{let t=Yn[n],o=q(t)?t.call(Yn,...e):t,r=_e.warning;r&&(z(o)?r(o):r(o,...o.args))},_e={warning:console.warn};var Tt=Symbol("ref"),Y=Symbol("sref"),xt=Symbol("raw");var x=n=>n!=null&&n[Y]===1;var $e=class extends Error{constructor(t,o){super(o);m(this,"propPath");m(this,"detail");this.name="PropValidationError",this.propPath=t,this.detail=o}},be=(n,e)=>{throw new $e(n,`${e}.`)},Cr=n=>{var t;if(n===null)return"null";if(n===void 0)return"undefined";if(typeof n=="string")return"string";if(typeof n=="number")return"number";if(typeof n=="boolean")return"boolean";if(typeof n=="bigint")return"bigint";if(typeof n=="symbol")return"symbol";if(typeof n=="function")return"function";if(w(n))return"array";if(n instanceof Date)return"Date";if(n instanceof RegExp)return"RegExp";if(n instanceof Map)return"Map";if(n instanceof Set)return"Set";let e=(t=n==null?void 0:n.constructor)==null?void 0:t.name;return e&&e!=="Object"?e:"object"},Er=n=>typeof n=="string"?`"${n}"`:typeof n=="number"||typeof n=="boolean"?String(n):n===null?"null":n===void 0?"undefined":Cr(n),Rr=(n,e)=>{typeof n!="string"&&be(e,"expected string")},vr=(n,e)=>{typeof n!="number"&&be(e,"expected number")},wr=(n,e)=>{typeof n!="boolean"&&be(e,"expected boolean")},Sr=n=>(e,t)=>{e instanceof n||be(t,`expected instance of ${n.name||"provided class"}`)},Ar=n=>(e,t,o)=>{e!==void 0&&n(e,t,o)},Nr=n=>(e,t,o)=>{e!==null&&n(e,t,o)},Mr=n=>(e,t)=>{n.includes(e)||be(t,`expected one of ${n.map(o=>Er(o)).join(", ")}`)},Or=n=>(e,t,o)=>{w(e)||be(t,"expected array");let r=e;for(let s=0;s<r.length;++s)n(r[s],`${t}[${s}]`,o)},kr=n=>(e,t,o)=>{I(e)||be(t,"expected object");let r=e;for(let s in n){let i=n[s];i(r[s],`${t}.${s}`,o)}},Lr=n=>(e,t,o)=>{x(e)||be(t,"expected ref"),n(e(),`${t}.value`,o)},Ir={fail:be,isString:Rr,isNumber:vr,isBoolean:wr,isClass:Sr,optional:Ar,nullable:Nr,oneOf:Mr,arrayOf:Or,shape:kr,refOf:Lr};var Vr=(n,e,t)=>{var i,a;let o=((a=(i=n.tagName)==null?void 0:i.toLowerCase)==null?void 0:a.call(i))||"unknown",r=t instanceof $e?t.propPath:e,s=t instanceof $e?t.detail:t instanceof Error?t.message:String(t);return t instanceof Error?new Error(`Invalid prop "${r}" on <${o}>: ${s}`,{cause:t}):new Error(`Invalid prop "${r}" on <${o}>: ${s}`,{cause:t})},tt=class{constructor(e,t,o,r,s,i){m(this,"props");m(this,"start");m(this,"end");m(this,"ctx");m(this,"autoProps",!0);m(this,"entangle",!0);m(this,"enableSwitch",!1);m(this,"onAutoPropsAssigned");m(this,"G");m(this,"J");m(this,"emit",(e,t)=>{this.G.dispatchEvent(new CustomEvent(e,{detail:t}))});this.props=e,this.G=t,this.ctx=o,this.start=r,this.end=s,this.J=i}findContext(e,t=0){var r;if(t<0)return;let o=0;for(let s of(r=this.ctx)!=null?r:[])if(s instanceof e){if(o===t)return s;++o}}requireContext(e,t=0){let o=this.findContext(e,t);if(o!==void 0)return o;throw new Error(`${e} was not found in the context stack at occurrence ${t}.`)}validateProps(e){if(this.J==="off")return;let t=this.props;for(let o in e){let r=e[o];if(!r)continue;let s=r;try{s(t[o],o,this)}catch(i){let a=Vr(this.G,o,i);if(this.J==="warn"){_e.warning(a.message,a);continue}throw a}}}unmount(){let e=this.start.nextSibling,t=this.end;for(;e&&e!==t;)J(e),e=e.nextSibling;for(let o of this.ctx)Ae(o)}};var Ie=n=>{let e=n,t=e[Be];if(t)return t;let o={unbinders:[],data:{}};return e[Be]=o,o};var K=(n,e)=>{Ie(n).unbinders.push(e)};var Et={},Ct={},Zn=1,eo=n=>{let e=(Zn++).toString();return Et[e]=n,Ct[e]=0,e},un=n=>{Ct[n]+=1},ln=n=>{--Ct[n]===0&&(delete Et[n],delete Ct[n])},to=n=>Et[n],fn=()=>Zn!==1&&Object.keys(Et).length>0,nt="r-switch",Dr=n=>{let e=n.filter(o=>Te(o)).map(o=>[...o.querySelectorAll("[r-switch]")].map(r=>r.getAttribute(nt))),t=new Set;return e.forEach(o=>{o.forEach(r=>r&&t.add(r))}),[...t]},Fe=(n,e)=>{if(!fn())return;let t=Dr(e);t.length!==0&&(t.forEach(un),K(n,()=>{t.forEach(ln)}))};var Rt=()=>{},pn=(n,e,t,o)=>{let r=[];for(let s of n){let i=s.cloneNode(!0);t.insertBefore(i,o),r.push(i)}Ne(e,r)},mn=Symbol("r-if"),no=Symbol("r-else"),oo=n=>n[no]===1,vt=class{constructor(e){m(this,"r");m(this,"k");m(this,"ge");m(this,"Q");m(this,"X");m(this,"x");m(this,"R");this.r=e,this.k=e.o.p.if,this.ge=St(e.o.p.if),this.Q=e.o.p.else,this.X=e.o.p.elseif,this.x=e.o.p.for,this.R=e.o.p.pre}ot(e,t){let o=e.parentElement;for(;o!==null&&o!==document.documentElement;){if(o.hasAttribute(t))return!0;o=o.parentElement}return!1}N(e){let t=e.hasAttribute(this.k);return t&&this.y(e),this.r.M.j(e,o=>{o.hasAttribute(this.k)&&this.y(o)}),t}Y(e){return e[mn]?!0:(e[mn]=!0,wt(e,this.ge).forEach(t=>t[mn]=!0),!1)}y(e){if(e.hasAttribute(this.R)||this.Y(e)||this.ot(e,this.x))return;let t=e.getAttribute(this.k);if(!t){U(0,this.k,e);return}e.removeAttribute(this.k),this.O(e,t)}U(e,t,o){let r=qe(e),s=e.parentNode,i=document.createComment(`__begin__ :${t}${o!=null?o:""}`);s.insertBefore(i,e),Fe(i,r),r.forEach(c=>{J(c)}),e.remove(),t!=="if"&&(e[no]=1);let a=document.createComment(`__end__ :${t}${o!=null?o:""}`);return s.insertBefore(a,i.nextSibling),{nodes:r,parent:s,commentBegin:i,commentEnd:a}}be(e,t){if(!e)return[];let o=e.nextElementSibling;if(e.hasAttribute(this.Q)){e.removeAttribute(this.Q);let{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"else");return[{mount:()=>{pn(r,this.r,s,a)},unmount:()=>{xe(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let r=e.getAttribute(this.X);if(!r)return[];e.removeAttribute(this.X);let{nodes:s,parent:i,commentBegin:a,commentEnd:c}=this.U(e,"elseif",` => ${r} `),u=this.r.m.V(r),l=u.value,f=this.be(o,t),p=Rt;return K(a,()=>{u.stop(),p(),p=Rt}),p=u.subscribe(t),[{mount:()=>{pn(s,this.r,i,c)},unmount:()=>{xe(a,c)},isTrue:()=>!!l()[0],isMounted:!1},...f]}}O(e,t){let o=e.nextElementSibling,{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"if",` => ${t} `),c=this.r.m.V(t),u=c.value,l=!1,f=this.r.m,p=f.L(),h=()=>{f.C(p,()=>{if(u()[0])l||(pn(r,this.r,s,a),l=!0),y.forEach(b=>{b.unmount(),b.isMounted=!1});else{xe(i,a),l=!1;let b=!1;for(let E of y)!b&&E.isTrue()?(E.isMounted||(E.mount(),E.isMounted=!0),b=!0):(E.unmount(),E.isMounted=!1)}})},y=this.be(o,h),d=Rt;K(i,()=>{c.stop(),d(),d=Rt}),h(),d=c.subscribe(h)}};var qe=n=>{let e=pe(n)?n.content.childNodes:[n],t=[];for(let o=0;o<e.length;++o){let r=e[o];if(r.nodeType===1){let s=r==null?void 0:r.tagName;if(s==="SCRIPT"||s==="STYLE")continue}t.push(r)}return t},Ne=(n,e)=>{for(let t=0;t<e.length;++t){let o=e[t];o.nodeType===Node.ELEMENT_NODE&&(oo(o)||n._(o))}},wt=(n,e)=>{var o;let t=n.querySelectorAll(e);return(o=n.matches)!=null&&o.call(n,e)?[n,...t]:t},pe=n=>n instanceof HTMLTemplateElement,Te=n=>n.nodeType===Node.ELEMENT_NODE,ot=n=>n.nodeType===Node.ELEMENT_NODE,ro=n=>n instanceof HTMLSlotElement,Ce=n=>pe(n)?n.content.childNodes:n.childNodes,xe=(n,e)=>{let t=n.nextSibling;for(;t!=null&&t!==e;){let o=t.nextSibling;J(t),t=o}},so=function(){return this()},Pr=function(n){return this(n)},Ur=()=>{throw new Error("value is readonly.")},Hr={get:so,set:Pr,enumerable:!0,configurable:!1},Br={get:so,set:Ur,enumerable:!0,configurable:!1},Me=(n,e)=>{Object.defineProperty(n,"value",e?Br:Hr)},io=(n,e)=>{if(!n)return!1;if(n.startsWith("["))return n.substring(1,n.length-1);let t=e.length;return n.startsWith(e)?n.substring(t,n.length-t):!1},St=n=>`[${CSS.escape(n)}]`,At=(n,e)=>(n.startsWith("@")&&(n=e.p.on+":"+n.slice(1)),n.includes("[")&&(n=n.replace(/[[\]]/g,e.p.dynamic)),n),dn=n=>{let e=Object.create(null);return t=>e[t]||(e[t]=n(t))},jr=/-(\w)/g,_=dn(n=>n&&n.replace(jr,(e,t)=>t?t.toUpperCase():"")),_r=/\B([A-Z])/g,ze=dn(n=>n&&n.replace(_r,"-$1").toLowerCase()),rt=dn(n=>n&&n.charAt(0).toUpperCase()+n.slice(1));var Nt={mount:()=>{}};var Ke=n=>{let e=n.trim();return e?e.split(/\s+/):[]};var Mt=n=>{var t,o;let e=(t=bt(n))==null?void 0:t.onMounted;e==null||e.forEach(r=>{r()}),(o=n.mounted)==null||o.call(n)};var hn=Symbol("scope"),yn=n=>{try{Qn();let e=n();cn(e);let t={context:e,unmount:()=>Ae(e),[hn]:1};return t[hn]=1,t}finally{Xn()}},ao=n=>I(n)?hn in n:!1;var gn={collectRefObj:!0,mount:({parseResult:n})=>({update:({values:e})=>{let t=n.context,o=e[0];if(I(o))for(let r of Object.entries(o)){let s=r[0],i=r[1],a=t[s];a!==i&&(x(a)?a(i):t[s]=i)}}})};var ne=(n,e)=>{var t;(t=Le(e))==null||t.onUnmounted.push(n)};var re=(n,e,t,o=!0)=>{if(!x(n))throw j(3,"observe");t&&e(n());let s=n(void 0,void 0,0,e);return o&&ne(s,!0),s};var st=(n,e)=>{if(n===e)return()=>{};let t=re(n,r=>e(r)),o=re(e,r=>n(r));return e(n()),()=>{t(),o()}};var it=n=>!!n&&n[xt]===1;var We=n=>(n==null?void 0:n[Tt])===1;var me=[],co=n=>{var e;me.length!==0&&((e=me[me.length-1])==null||e.add(n))},Ge=n=>{if(!n)return()=>{};let e={stop:()=>{}};return $r(n,e),ne(()=>e.stop(),!0),e.stop},$r=(n,e)=>{if(!n)return;let t=[],o=!1,r=()=>{for(let s of t)s();t=[],o=!0};e.stop=r;try{let s=new Set;if(me.push(s),n(i=>t.push(i)),o)return;for(let i of[...s]){let a=re(i,()=>{r(),Ge(n)});t.push(a)}}finally{me.pop()}},bn=n=>{let e=me.length,t=e>0&&me[e-1];try{return t&&me.push(null),n()}finally{t&&me.pop()}},Tn=n=>{try{let e=new Set;return me.push(e),{value:n(),refs:[...e]}}finally{me.pop()}};var Z=(n,e,t)=>{if(!x(n))return;let o=n;if(o(void 0,e,1),!t)return;let r=o();if(r){if(w(r)||ue(r))for(let s of r)Z(s,e,!0);else if(Se(r))for(let s of r)Z(s[0],e,!0),Z(s[1],e,!0);if(I(r))for(let s in r)Z(r[s],e,!0)}};function Fr(n,e,t){Object.defineProperty(n,e,{value:t,enumerable:!1,writable:!0,configurable:!0})}var Je=(n,e,t)=>{t.forEach(function(o){let r=n[o];Fr(e,o,function(...i){let a=r.apply(this,i),c=this[Y];for(let u of c)Z(u);return a})})},Ot=(n,e)=>{Object.defineProperty(n,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var uo=Array.prototype,xn=Object.create(uo),qr=["push","pop","shift","unshift","splice","sort","reverse"];Je(uo,xn,qr);var lo=Map.prototype,kt=Object.create(lo),zr=["set","clear","delete"];Ot(kt,"Map");Je(lo,kt,zr);var fo=Set.prototype,Lt=Object.create(fo),Kr=["add","clear","delete"];Ot(Lt,"Set");Je(fo,Lt,Kr);var ye={},ae=n=>{if(x(n)||it(n))return n;let e={auto:!0,_value:n},t=c=>I(c)?Y in c?!0:w(c)?(Object.setPrototypeOf(c,xn),!0):ue(c)?(Object.setPrototypeOf(c,Lt),!0):Se(c)?(Object.setPrototypeOf(c,kt),!0):!1:!1,o=t(n),r=new Set,s=(c,u)=>{if(ye.stack&&ye.stack.length){ye.stack[ye.stack.length-1].add(a);return}r.size!==0&&bn(()=>{for(let l of[...r.keys()])r.has(l)&&l(c,u)})},i=c=>{let u=c[Y];u||(c[Y]=u=new Set),u.add(a)},a=(...c)=>{if(!(2 in c)){let l=c[0],f=c[1];return 0 in c?e._value===l||x(l)&&(l=l(),e._value===l)?l:(t(l)&&i(l),e._value=l,e.auto&&s(l,f),e._value):(co(a),e._value)}switch(c[2]){case 0:{let l=c[3];if(!l)return()=>{};let f=p=>{r.delete(p)};return r.add(l),()=>{f(l)}}case 1:{let l=c[1],f=e._value;s(f,l);break}case 2:return r.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[Y]=1,Me(a,!1),o&&i(n),a};var Ee=n=>{if(it(n))return n;let e;if(x(n)?(e=n,n=e()):e=ae(n),n instanceof Node||n instanceof Date||n instanceof RegExp||n instanceof Promise||n instanceof Error)return e;if(e[Tt]=1,w(n)){let t=n.length;for(let o=0;o<t;++o){let r=n[o];We(r)||(n[o]=Ee(r))}return e}if(!I(n))return e;for(let t of Object.entries(n)){let o=t[1];if(We(o))continue;let r=t[0];et(r)||(n[r]=null,n[r]=Ee(o))}return e};var po=Symbol("modelBridge"),It=()=>{},Wr=n=>!!(n!=null&&n[po]),Gr=n=>{n[po]=1},Jr=n=>{let e=Ee(n());return Gr(e),e},mo={collectRefObj:!0,mount:({parseResult:n,option:e})=>{if(typeof e!="string"||!e)return It;let t=_(e),o,r,s=It,i=()=>{s(),s=It,o=void 0,r=void 0},a=()=>{s(),s=It},c=(l,f)=>{o!==l&&(a(),s=st(l,f),o=l)},u=()=>{var h;let l=(h=n.refs[0])!=null?h:n.value()[0],f=n.context,p=f[t];if(!x(l)){if(r&&p===r){r(l);return}if(i(),x(p)){p(l);return}f[t]=l;return}if(Wr(l)){if(p===l)return;x(p)?c(l,p):f[t]=l;return}r||(r=Jr(l)),f[t]=r,c(l,r)};return{update:()=>{u()},unmount:()=>{s()}}}};var Vt=class{constructor(e){m(this,"r");m(this,"xe");m(this,"Te","");m(this,"Re",-1);this.r=e,this.xe=e.o.p.inherit}N(e){this.rt(e)}st(e){if(this.Re!==e.size){let t=[...e.keys()];this.Te=[...t,...t.map(ze)].join(","),this.Re=e.size}return this.Te}it(e){var t;for(let o=0;o<e.length;++o){let r=(t=e[o])==null?void 0:t.components;if(r)for(let s in r)return!0}return!1}at(e){if(!pe(e))return!1;let t=e.getAttributeNames();return e.hasAttribute("name")?!0:t.some(o=>o.startsWith("#"))}ct(e){return pe(e)&&e.getAttributeNames().length===0}rt(e){let t=this.r,o=t.m,r=t.o.Z,s=t.o.$;if(r.size===0&&!this.it(o.l))return;let i=o.ee(),a=this.Ce();if(F(a))return;let c=this.pt(e,a);for(let u of c){if(u.hasAttribute(t.R))continue;let l=u.parentNode;if(!l)continue;let f=u.nextSibling,p=_(u.tagName).toUpperCase(),h=i[p],y=h!=null?h:s.get(p);if(!y)continue;let d=y.template;if(!d)continue;let C=u.parentElement;if(!C)continue;let b=new Comment(" begin component: "+u.tagName),E=new Comment(" end component: "+u.tagName);C.insertBefore(b,u),u.remove();let V=t.o.p.context,W=t.o.p.contextAlias,H=t.o.p.bind,B=(g,S)=>{let v={},G=g.hasAttribute(V);return o.C(S,()=>{o.v(v),G?t.y(gn,g,V):g.hasAttribute(W)&&t.y(gn,g,W);let M=y.props;if(!M||M.length===0)return;M=M.map(_);let R=new Map(M.map(k=>[k.toLowerCase(),k]));for(let k of[...M,...M.map(ze)]){let te=g.getAttribute(k);te!==null&&(v[_(k)]=te,g.removeAttribute(k))}let A=t.q.Ee(g,!1);for(let[k,te]of A.entries()){let[se,le]=te.te;if(!le)continue;let P=R.get(_(le).toLowerCase());P&&(se!=="."&&se!==":"&&se!==H||t.y(mo,g,k,!0,P,te.ne))}}),v},ee=[...o.L()],oe=()=>{var G;let g=B(u,ee),S=new tt(g,u,ee,b,E,t.o.propValidationMode),v=yn(()=>{var M;return(M=y.context(S))!=null?M:{}}).context;if(S.autoProps){for(let[M,R]of Object.entries(g))if(M in v){let A=v[M];if(A===R)continue;if(x(A)){x(R)?S.entangle?K(b,st(R,A)):A(R()):A(R);continue}}else v[M]=R;(G=S.onAutoPropsAssigned)==null||G.call(S)}return{componentCtx:v,head:S}},{componentCtx:O,head:T}=oe(),N=[...Ce(d)],Q=N.length,Ue=u.childNodes.length===0,He=g=>{var R;let S=g.parentElement,v=g.name;if(F(v)&&(v=g.getAttributeNames().filter(A=>A.startsWith("#"))[0],F(v)?v="default":v=v.substring(1)),Ue){if(v==="default"){let A=t.o.p.text,k=u.getAttribute(A);if(!F(k)){let te=document.createElement("span");te.setAttribute(A,k),S.insertBefore(te,g),u.removeAttribute(A);return}}for(let A of[...g.childNodes])S.insertBefore(A,g);return}let G=u.querySelector(`template[name='${v}'], template[\\#${v}]`);!G&&v==="default"&&(G=(R=[...u.querySelectorAll("template:not([name])")].find(k=>this.ct(k)))!=null?R:null);let M=A=>{T.enableSwitch&&o.C(ee,()=>{o.v(O);let k=B(g,o.L());o.C(ee,()=>{o.v(k);let te=o.L(),se=eo(te);for(let le of A)Te(le)&&(le.setAttribute(nt,se),un(se),K(le,()=>{ln(se)}))})})};if(G){let A=[...Ce(G)];for(let k of A)S.insertBefore(k,g);M(A)}else{if(v!=="default"){for(let k of[...Ce(g)])S.insertBefore(k,g);return}let A=[...Ce(u)].filter(k=>!this.at(k));for(let k of A)S.insertBefore(k,g);M(A)}},tn=g=>{if(!Te(g))return;let S=g.querySelectorAll("slot");if(ro(g)){He(g),g.remove();return}for(let v of S)He(v),v.remove()};(()=>{for(let g=0;g<Q;++g)N[g]=N[g].cloneNode(!0),l.insertBefore(N[g],f),tn(N[g])})(),C.insertBefore(E,f);let ft=()=>{if(!y.inheritAttrs)return;let g=N.filter(v=>v.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(v=>v.hasAttribute(this.xe)));let S=g[0];if(S)for(let v of u.getAttributeNames()){if(v===V||v===W)continue;let G=u.getAttribute(v);if(v==="class"){let M=Ke(G);M.length>0&&S.classList.add(...M)}else if(v==="style"){let M=S.style,R=u.style;for(let A of R)M.setProperty(A,R.getPropertyValue(A))}else S.setAttribute(At(v,t.o),G)}},L=()=>{for(let g of u.getAttributeNames())!g.startsWith("@")&&!g.startsWith(t.o.p.on)&&u.removeAttribute(g)},X=()=>{ft(),L(),o.v(O),t.ve(u,!1),O.$emit=T.emit,Ne(t,N),K(u,()=>{Ae(O)}),K(b,()=>{ge(u)}),Mt(O)};o.C(ee,X)}}Ce(){let e=this.r,t=e.m,o=e.o.Z,r=t.ut(),s=this.st(o);return[...s?[s]:[],...r,...r.map(ze)].join(",")}pt(e,t){var s;let o=[];if(F(t))return o;if((s=e.matches)!=null&&s.call(e,t))return[e];let r=this.F(e).reverse();for(;r.length>0;){let i=r.pop();if(i.matches(t)){o.push(i);continue}r.push(...this.F(i).reverse())}return o}j(e,t){let o=this.Ce(),r=this.F(e).reverse();for(;r.length>0;){let s=r.pop();t(s),!(!F(o)&&s.matches(o))&&r.push(...this.F(s).reverse())}}F(e){let t=e==null?void 0:e.children;if((t==null?void 0:t.length)!=null){let r=[];for(let s=0;s<t.length;++s){let i=t[s];Te(i)&&r.push(i)}return r}let o=e==null?void 0:e.childNodes;if((o==null?void 0:o.length)!=null){let r=[];for(let s=0;s<o.length;++s){let i=o[s];Te(i)&&r.push(i)}return r}return[]}};var Cn=class{constructor(e,t){m(this,"te");m(this,"ne");m(this,"we",[]);this.te=e,this.ne=t}},Dt=class{constructor(e){m(this,"r");m(this,"Se");m(this,"Ae");m(this,"oe");var o;this.r=e,this.Se=e.o.lt(),this.oe=new Map;let t=new Map;for(let r of this.Se){let s=(o=r[0])!=null?o:"",i=t.get(s);i?i.push(r):t.set(s,[r])}this.Ae=t}Ne(e){let t=this.oe.get(e);if(t)return t;let o=e,r=o.startsWith(".");r&&(o=":"+o.slice(1));let s=o.indexOf("."),a=(s<0?o:o.substring(0,s)).split(/[:@]/);F(a[0])&&(a[0]=r?".":o[0]);let c=s>=0?o.slice(s+1).split("."):[],u=!1,l=!1;for(let p=0;p<c.length;++p){let h=c[p];if(!u&&h==="camel"?u=!0:!l&&h==="prop"&&(l=!0),u&&l)break}u&&(a[a.length-1]=_(a[a.length-1])),l&&(a[0]=".");let f={terms:a,flags:c};return this.oe.set(e,f),f}Ee(e,t){let o=new Map;if(!ot(e))return o;let r=this.Ae,s=(a,c)=>{var l;let u=r.get((l=c[0])!=null?l:"");if(u)for(let f=0;f<u.length;++f){if(!c.startsWith(u[f]))continue;let p=o.get(c);if(!p){let h=this.Ne(c);p=new Cn(h.terms,h.flags),o.set(c,p)}p.we.push(a);return}},i=a=>{var u;let c=a.attributes;if(!(!c||c.length===0))for(let l=0;l<c.length;++l){let f=(u=c.item(l))==null?void 0:u.name;f&&s(a,f)}};return i(e),!t||!e.firstElementChild||this.r.M.j(e,i),o}};var ho=()=>{},Qr=(n,e)=>{for(let t of n){let o=t.cloneNode(!0);e.appendChild(o)}},Pt=class{constructor(e){m(this,"r");m(this,"I");this.r=e,this.I=e.o.p.is}N(e){let t=e.hasAttribute(this.I);return(t||e.hasAttribute("is"))&&this.y(e),this.r.M.j(e,o=>{(o.hasAttribute(this.I)||o.hasAttribute("is"))&&this.y(o)}),t}y(e){let t=e.getAttribute(this.I);if(!t){if(t=e.getAttribute("is"),!t)return;if(!t.startsWith("regor:")){if(!t.startsWith("r-"))return;let o=t.slice(2).trim().toLowerCase();if(!o)return;let r=e.parentNode;if(!r)return;let s=document.createElement(o);for(let i of e.getAttributeNames())i!=="is"&&s.setAttribute(i,e.getAttribute(i));for(;e.firstChild;)s.appendChild(e.firstChild);r.insertBefore(s,e),e.remove(),this.r._(s);return}t=`'${t.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.I),this.O(e,t)}U(e,t){let o=qe(e),r=e.parentNode,s=document.createComment(`__begin__ dynamic ${t!=null?t:""}`);r.insertBefore(s,e),Fe(s,o),o.forEach(a=>{J(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${t!=null?t:""}`);return r.insertBefore(i,s.nextSibling),{nodes:o,parent:r,commentBegin:s,commentEnd:i}}O(e,t){let{nodes:o,parent:r,commentBegin:s,commentEnd:i}=this.U(e,` => ${t} `),a=this.r.m.V(t),c=a.value,u=this.r.m,l=u.L(),f={name:""},p=pe(e)?o:[...o[0].childNodes],h=()=>{u.C(l,()=>{var E;let C=c()[0];if(I(C)&&(C.name?C=C.name:C=(E=Object.entries(u.ee()).filter(V=>V[1]===C)[0])==null?void 0:E[0]),!z(C)||F(C)){xe(s,i);return}if(f.name===C)return;xe(s,i);let b=document.createElement(C);for(let V of e.getAttributeNames())V!==this.I&&b.setAttribute(V,e.getAttribute(V));Qr(p,b),r.insertBefore(b,i),this.r._(b),f.name=C})},y=ho;K(s,()=>{a.stop(),y(),y=ho}),h(),y=a.subscribe(h)}};var $=n=>{let e=n;return e!=null&&e[Y]===1?e():e};var Xr=(n,e)=>{let[t,o]=e;q(o)?o(n,t):n.innerHTML=t==null?void 0:t.toString()},Ut={mount:()=>({update:({el:n,values:e})=>{Xr(n,e)}})};var Ht=class n{constructor(e){m(this,"re");this.re=e}static ft(e,t){var h,y;let o=e.m,r=e.o,s=r.p,i=new Set([s.for,s.if,s.else,s.elseif,s.pre]),a=r.B,c=o.ee();if(Object.keys(c).length>0||r.$.size>0)return;let u=e.q,l=[],f=0,p=[];for(let d=t.length-1;d>=0;--d)p.push(t[d]);for(;p.length>0;){let d=p.pop();if(d.nodeType===Node.ELEMENT_NODE){let b=d;if(b.tagName==="TEMPLATE"||b.tagName.includes("-"))return;let E=_(b.tagName).toUpperCase();if(r.$.has(E)||c[E])return;let V=b.attributes;for(let W=0;W<V.length;++W){let H=(h=V.item(W))==null?void 0:h.name;if(!H)continue;if(i.has(H))return;let{terms:B,flags:ee}=u.Ne(H),[oe,O]=B,T=(y=a[H])!=null?y:a[oe];if(T){if(T===Ut)return;l.push({nodeIndex:f,attrName:H,directive:T,option:O,flags:ee})}}++f}let C=d.childNodes;for(let b=C.length-1;b>=0;--b)p.push(C[b])}if(l.length!==0)return new n(l)}y(e,t){let o=[],r=[];for(let s=t.length-1;s>=0;--s)r.push(t[s]);for(;r.length>0;){let s=r.pop();s.nodeType===Node.ELEMENT_NODE&&o.push(s);let i=s.childNodes;for(let a=i.length-1;a>=0;--a)r.push(i[a])}for(let s=0;s<this.re.length;++s){let i=this.re[s],a=o[i.nodeIndex];a&&e.y(i.directive,a,i.attrName,!1,i.option,i.flags)}}};var Yr=(n,e)=>{let t=e.parentNode;if(t)for(let o=0;o<n.items.length;++o)t.insertBefore(n.items[o],e)},Zr=n=>{var a;let e=n.length,t=n.slice(),o=[],r,s,i;for(let c=0;c<e;++c){let u=n[c];if(u===0)continue;let l=o[o.length-1];if(l===void 0||n[l]<u){t[c]=l!=null?l:-1,o.push(c);continue}for(r=0,s=o.length-1;r<s;)i=r+s>>1,n[o[i]]<u?r=i+1:s=i;u<n[o[r]]&&(r>0&&(t[c]=o[r-1]),o[r]=c)}for(r=o.length,s=(a=o[r-1])!=null?a:-1;r-- >0;)o[r]=s,s=t[s];return o},Bt=class{static mt(e){let{oldItems:t,newValues:o,getKey:r,isSameValue:s,mountNewValue:i,removeMountItem:a,endAnchor:c}=e,u=t.length,l=o.length,f=new Array(l),p=new Set;for(let T=0;T<l;++T){let N=r(o[T]);if(N===void 0||p.has(N))return;p.add(N),f[T]=N}let h=new Array(l),y=0,d=u-1,C=l-1;for(;y<=d&&y<=C;){let T=t[y];if(r(T.value)!==f[y]||!s(T.value,o[y]))break;T.value=o[y],h[y]=T,++y}for(;y<=d&&y<=C;){let T=t[d];if(r(T.value)!==f[C]||!s(T.value,o[C]))break;T.value=o[C],h[C]=T,--d,--C}if(y>d){for(let T=C;T>=y;--T){let N=T+1<l?h[T+1].items[0]:c;h[T]=i(T,o[T],N)}return h}if(y>C){for(let T=y;T<=d;++T)a(t[T]);return h}let b=y,E=y,V=C-E+1,W=new Array(V).fill(0),H=new Map;for(let T=E;T<=C;++T)H.set(f[T],T);let B=!1,ee=0;for(let T=b;T<=d;++T){let N=t[T],Q=H.get(r(N.value));if(Q===void 0){a(N);continue}if(!s(N.value,o[Q])){a(N);continue}N.value=o[Q],h[Q]=N,W[Q-E]=T+1,Q>=ee?ee=Q:B=!0}let oe=B?Zr(W):[],O=oe.length-1;for(let T=V-1;T>=0;--T){let N=E+T,Q=N+1<l?h[N+1].items[0]:c;if(W[T]===0){h[N]=i(N,o[N],Q);continue}let Ue=h[N];B&&(O>=0&&oe[O]===T?--O:Ue&&Yr(Ue,Q))}return h}};var at=class{constructor(e){m(this,"T",[]);m(this,"P",new Map);m(this,"se");this.se=e}get w(){return this.T.length}ie(e){let t=this.se(e.value);t!==void 0&&this.P.set(t,e)}ae(e){var o;let t=this.se((o=this.T[e])==null?void 0:o.value);t!==void 0&&this.P.delete(t)}static dt(e,t){return{items:[],index:e,value:t,order:-1}}v(e){e.order=this.w,this.T.push(e),this.ie(e)}yt(e,t){let o=this.w;for(let r=e;r<o;++r)this.T[r].order=r+1;t.order=e,this.T.splice(e,0,t),this.ie(t)}D(e){return this.T[e]}ce(e,t){this.ae(e),this.T[e]=t,this.ie(t),t.order=e}ke(e){this.ae(e),this.T.splice(e,1);let t=this.w;for(let o=e;o<t;++o)this.T[o].order=o}Me(e){let t=this.w;for(let o=e;o<t;++o)this.ae(o);this.T.splice(e)}en(e){return this.P.has(e)}ht(e){var o;let t=this.P.get(e);return(o=t==null?void 0:t.order)!=null?o:-1}};var En=Symbol("r-for"),es=n=>-1,yo=()=>{},_t=class _t{constructor(e){m(this,"r");m(this,"x");m(this,"Oe");m(this,"R");this.r=e,this.x=e.o.p.for,this.Oe=St(this.x),this.R=e.o.p.pre}N(e){let t=e.hasAttribute(this.x);return t&&this.Ve(e),this.r.M.j(e,o=>{o.hasAttribute(this.x)&&this.Ve(o)}),t}Y(e){return e[En]?!0:(e[En]=!0,wt(e,this.Oe).forEach(t=>t[En]=!0),!1)}Ve(e){if(e.hasAttribute(this.R)||this.Y(e))return;let t=e.getAttribute(this.x);if(!t){U(0,this.x,e);return}e.removeAttribute(this.x),this.gt(e,t)}Le(e){return fe(e)?[]:(q(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(o=>({*[Symbol.iterator](){for(let r=1;r<=o;r++)yield r}}))(e):Object.entries(e))}gt(e,t){var ft;let o=this.bt(t);if(!(o!=null&&o.list)){U(1,this.x,t,e);return}let r=this.r.o.p.key,s=this.r.o.p.keyBind,i=(ft=e.getAttribute(r))!=null?ft:e.getAttribute(s);e.removeAttribute(r),e.removeAttribute(s);let a=qe(e),c=Ht.ft(this.r,a),u=e.parentNode;if(!u)return;let l=`${this.x} => ${t}`,f=new Comment(`__begin__ ${l}`);u.insertBefore(f,e),Fe(f,a),a.forEach(L=>{J(L)}),e.remove();let p=new Comment(`__end__ ${l}`);u.insertBefore(p,f.nextSibling);let h=this.r,y=h.m,d=y.L(),b=d.length===1?[void 0,d[0]]:void 0,E=this.xt(i),V=(L,X)=>E(L)===E(X),W=(L,X)=>L===X,H=(L,X,g)=>{let S=o.createContext(X,L),v=at.dt(S.index,X),G=()=>{var k,te;let M=(te=(k=p.parentNode)!=null?k:f.parentNode)!=null?te:u,R=g.previousSibling,A=[];for(let se=0;se<a.length;++se){let le=a[se].cloneNode(!0);M.insertBefore(le,g),A.push(le)}for(c?c.y(h,A):Ne(h,A),R=R.nextSibling;R!==g;)v.items.push(R),R=R.nextSibling};return b?(b[0]=S.ctx,y.C(b,G)):y.C(d,()=>{y.v(S.ctx),G()}),v},B=(L,X)=>{let g=D.D(L).items,S=g[g.length-1].nextSibling;for(let v of g)J(v);D.ce(L,H(L,X,S))},ee=(L,X)=>{D.v(H(L,X,p))},oe=L=>{for(let X of D.D(L).items)J(X)},O=L=>{let X=D.w;for(let g=L;g<X;++g)D.D(g).index(g)},T=L=>{let X=f.parentNode,g=p.parentNode;if(!X||!g)return;let S=D.w;q(L)&&(L=L());let v=$(L[0]);if(w(v)&&v.length===0){xe(f,p),D.Me(0);return}let G=[];for(let P of this.Le(L[0]))G.push(P);let M=Bt.mt({oldItems:D.T,newValues:G,getKey:E,isSameValue:W,mountNewValue:(P,ie,ke)=>H(P,ie,ke),removeMountItem:P=>{for(let ie=0;ie<P.items.length;++ie)J(P.items[ie])},endAnchor:p});if(M){D.T=M,D.P.clear();for(let P=0;P<M.length;++P){let ie=M[P];ie.order=P,ie.index(P);let ke=E(ie.value);ke!==void 0&&D.P.set(ke,ie)}return}let R=0,A=Number.MAX_SAFE_INTEGER,k=S,te=this.r.o.forGrowThreshold,se=()=>D.w<k+te;for(let P of G){let ie=()=>{if(R<S){let ke=D.D(R++);if(V(ke.value,P)){if(W(ke.value,P))return;B(R-1,P);return}let pt=D.ht(E(P));if(pt>=R&&pt-R<10){if(--R,A=Math.min(A,R),oe(R),D.ke(R),--S,pt>R+1)for(let nn=R;nn<pt-1&&nn<S&&!V(D.D(R).value,P);)++nn,oe(R),D.ke(R),--S;ie();return}se()?(D.yt(R-1,H(R,P,D.D(R-1).items[0])),A=Math.min(A,R-1),++S):B(R-1,P)}else ee(R++,P)};ie()}let le=R;for(S=D.w;R<S;)oe(R++);D.Me(le),O(A)},N=()=>{Q.stop(),He(),He=yo},Q=y.V(o.list),Ue=Q.value,He=yo,tn=0,D=new at(E);for(let L of this.Le(Ue()[0]))D.v(H(tn++,L,p));K(f,N),He=Q.subscribe(T)}bt(e){var c,u;let t=_t.Tt.exec(e);if(!t)return;let o=(t[1]+((c=t[2])!=null?c:"")).split(",").map(l=>l.trim()),r=o.length>1?o.length-1:-1,s=r!==-1&&(o[r]==="index"||(u=o[r])!=null&&u.startsWith("#"))?o[r]:"";s&&o.splice(r,1);let i=t[3];if(!i||o.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(l,f)=>{let p={},h=$(l);if(!a&&o.length===1)p[o[0]]=l;else if(w(h)){let d=0;for(let C of o)p[C]=h[d++]}else for(let d of o)p[d]=h[d];let y={ctx:p,index:es};return s&&(y.index=p[s.startsWith("#")?s.substring(1):s]=ae(f)),y}}}xt(e){if(!e)return o=>o;let t=e.trim();if(!t)return o=>o;if(t.includes(".")){let o=this.Rt(t),r=o.length>1?o.slice(1):void 0;return s=>{let i=$(s),a=this.Ie(i,o);return a!==void 0||!r?a:this.Ie(i,r)}}return o=>{var r;return $((r=$(o))==null?void 0:r[t])}}Rt(e){return e.split(".").filter(t=>t.length>0)}Ie(e,t){var r;let o=e;for(let s of t)o=(r=$(o))==null?void 0:r[s];return $(o)}};m(_t,"Tt",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+(.*)\s*$/);var jt=_t;var $t=class{constructor(e){m(this,"pe",0);m(this,"ue",new Map);m(this,"m");m(this,"Pe");m(this,"De");m(this,"Ue");m(this,"M");m(this,"q");m(this,"o");m(this,"R");m(this,"Be");this.m=e,this.o=e.o,this.De=new jt(this),this.Pe=new vt(this),this.Ue=new Pt(this),this.M=new Vt(this),this.q=new Dt(this),this.R=this.o.p.pre,this.Be=this.o.p.dynamic}Ct(e){let t=pe(e)?[e]:e.querySelectorAll("template");for(let o of t){if(o.hasAttribute(this.R))continue;let r=o.parentNode;if(!r)continue;let s=o.nextSibling;if(o.remove(),!o.content)continue;let i=[...o.content.childNodes];for(let a of i)r.insertBefore(a,s);Ne(this,i)}}_(e){++this.pe;try{if(e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.R)||this.Pe.N(e)||this.De.N(e)||this.Ue.N(e))return;this.M.N(e),this.Ct(e),this.ve(e,!0)}finally{--this.pe,this.pe===0&&this.Et()}}vt(e,t){let o=document;if(!o){let r=e.parentNode;for(;r!=null&&r.parentNode;)r=r.parentNode;if(!r)return null;o=r}return o.querySelector(t)}He(e,t){let o=this.vt(e,t);if(!o)return!1;let r=e.parentElement;if(!r)return!1;let s=new Comment(`teleported => '${t}'`);return r.insertBefore(s,e),e.teleportedFrom=s,s.teleportedTo=e,K(s,()=>{J(e)}),o.appendChild(e),!0}wt(e,t){this.ue.set(e,t)}Et(){let e=this.ue;if(e.size!==0){this.ue=new Map;for(let[t,o]of e.entries())this.He(t,o)}}ve(e,t){var s;let o=this.q.Ee(e,t),r=this.o.B;for(let[i,a]of o.entries()){let[c,u]=a.te,l=(s=r[i])!=null?s:r[c];if(!l){console.error("directive not found:",c);continue}let f=a.we;for(let p=0;p<f.length;++p){let h=f[p];this.y(l,h,i,!1,u,a.ne)}}}y(e,t,o,r,s,i){if(t.hasAttribute(this.R))return;let a=t.getAttribute(o);t.removeAttribute(o);let c=u=>{let l=u;for(;l;){let f=l.getAttribute(nt);if(f)return f;l=l.parentElement}return null};if(fn()){let u=c(t);if(u){this.m.C(to(u),()=>{this.O(e,t,a,s,i)});return}}this.O(e,t,a,s,i)}St(e,t,o){return e!==Nt?!1:(F(o)||this.He(t,o)||this.wt(t,o),!0)}O(e,t,o,r,s){if(t.nodeType!==Node.ELEMENT_NODE||o==null||this.St(e,t,o))return;let i=this.At(r,e.once),a=this.Nt(e,o),c=this.kt(a,i);K(t,c.stop);let u=this.Mt(t,o,a,i,r,s),l=this.Ot(e,u,c);if(!l)return;let f=this.Vt(u,a,i,r,l);f(),e.once||(c.result=a.subscribe(f),i&&(c.dynamic=i.subscribe(f)))}At(e,t){let o=io(e,this.Be);if(o)return this.m.V(_(o),void 0,void 0,void 0,t)}Nt(e,t){return this.m.V(t,e.isLazy,e.isLazyKey,e.collectRefObj,e.once)}kt(e,t){let o={stop:()=>{var r,s,i;e.stop(),t==null||t.stop(),(r=o.result)==null||r.call(o),(s=o.dynamic)==null||s.call(o),(i=o.mounted)==null||i.call(o),o.result=void 0,o.dynamic=void 0,o.mounted=void 0}};return o}Mt(e,t,o,r,s,i){return{el:e,expr:t,values:o.value(),previousValues:void 0,option:r?r.value()[0]:s,previousOption:void 0,flags:i,parseResult:o,dynamicOption:r}}Ot(e,t,o){let r=e.mount(t);if(typeof r=="function"){o.mounted=r;return}return r!=null&&r.unmount&&(o.mounted=r.unmount),r==null?void 0:r.update}Vt(e,t,o,r,s){let i,a;return()=>{let c=t.value(),u=o?o.value()[0]:r;e.values=c,e.previousValues=i,e.option=u,e.previousOption=a,i=c,a=u,s(e)}}};var go="http://www.w3.org/1999/xlink",ts={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function ns(n){return!!n||n===""}var os=(n,e,t,o,r,s)=>{var a;if(o){s&&s.includes("camel")&&(o=_(o)),Ft(n,o,e[0],r);return}let i=e.length;for(let c=0;c<i;++c){let u=e[c];if(w(u)){let l=(a=t==null?void 0:t[c])==null?void 0:a[0],f=u[0],p=u[1];Ft(n,f,p,l)}else if(I(u))for(let l of Object.entries(u)){let f=l[0],p=l[1],h=t==null?void 0:t[c],y=h&&f in h?f:void 0;Ft(n,f,p,y)}else{let l=t==null?void 0:t[c],f=e[c++],p=e[c];Ft(n,f,p,l)}}},Rn={mount:()=>({update:({el:n,values:e,previousValues:t,option:o,previousOption:r,flags:s})=>{os(n,e,t,o,r,s)}})},Ft=(n,e,t,o)=>{if(o&&o!==e&&n.removeAttribute(o),fe(e)){U(3,"r-bind",n);return}if(!z(e)){U(6,`Attribute key is not string at ${n.outerHTML}`,e);return}if(e.startsWith("xlink:")){fe(t)?n.removeAttributeNS(go,e.slice(6,e.length)):n.setAttributeNS(go,e,t);return}let r=e in ts;fe(t)||r&&!ns(t)?n.removeAttribute(e):n.setAttribute(e,r?"":t)};var rs=(n,e,t)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=t==null?void 0:t[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)bo(n,s[c],i==null?void 0:i[c])}else bo(n,s,i)}},vn={mount:()=>({update:({el:n,values:e,previousValues:t})=>{rs(n,e,t)}})},bo=(n,e,t)=>{let o=n.classList,r=z(e),s=z(t);if(e&&!r){if(t&&!s)for(let i in t)(!(i in e)||!e[i])&&o.remove(i);for(let i in e)e[i]&&o.add(i)}else if(r){if(t!==e){let i=s?Ke(t):[],a=Ke(e);i.length>0&&o.remove(...i),a.length>0&&o.add(...a)}}else if(t){let i=s?Ke(t):[];i.length>0&&o.remove(...i)}};function ss(n,e){if(n.length!==e.length)return!1;let t=!0;for(let o=0;t&&o<n.length;o++)t=Re(n[o],e[o]);return t}function Re(n,e){if(n===e)return!0;let t=sn(n),o=sn(e);if(t||o)return t&&o?n.getTime()===e.getTime():!1;if(t=et(n),o=et(e),t||o)return n===e;if(t=w(n),o=w(e),t||o)return t&&o?ss(n,e):!1;if(t=I(n),o=I(e),t||o){if(!t||!o)return!1;let r=Object.keys(n).length,s=Object.keys(e).length;if(r!==s)return!1;for(let i in n){let a=Object.prototype.hasOwnProperty.call(n,i),c=Object.prototype.hasOwnProperty.call(e,i);if(a&&!c||!Re(n[i],e[i]))return!1}return!0}return String(n)===String(e)}function qt(n,e){return n.findIndex(t=>Re(t,e))}var To=n=>{let e=parseFloat(n);return isNaN(e)?n:e};var wn=n=>{if(!x(n))throw j(3,"pause");n(void 0,void 0,3)};var Sn=n=>{if(!x(n))throw j(3,"resume");n(void 0,void 0,4)};var Co={mount:({el:n,parseResult:e,flags:t})=>({update:({values:o})=>{is(n,o[0])},unmount:as(n,e,t)})},is=(n,e)=>{let t=wo(n);if(t&&Eo(n))w(e)?e=qt(e,ve(n))>-1:ue(e)?e=e.has(ve(n)):e=ms(n,e),n.checked=e;else if(t&&Ro(n))n.checked=Re(e,ve(n));else if(t||So(n))vo(n)?n.value!==(e==null?void 0:e.toString())&&(n.value=e):n.value!==e&&(n.value=e);else if(Ao(n)){let o=n.options,r=o.length,s=n.multiple;for(let i=0;i<r;i++){let a=o[i],c=ve(a);if(s)w(e)?a.selected=qt(e,c)>-1:a.selected=e.has(c);else if(Re(ve(a),e)){n.selectedIndex!==i&&(n.selectedIndex=i);return}}!s&&n.selectedIndex!==-1&&(n.selectedIndex=-1)}else U(7,n)},ct=n=>(x(n)&&(n=n()),q(n)&&(n=n()),n?z(n)?{trim:n.includes("trim"),lazy:n.includes("lazy"),number:n.includes("number"),int:n.includes("int")}:{trim:!!n.trim,lazy:!!n.lazy,number:!!n.number,int:!!n.int}:{trim:!1,lazy:!1,number:!1,int:!1}),Eo=n=>n.type==="checkbox",Ro=n=>n.type==="radio",vo=n=>n.type==="number"||n.type==="range",wo=n=>n.tagName==="INPUT",So=n=>n.tagName==="TEXTAREA",Ao=n=>n.tagName==="SELECT",as=(n,e,t)=>{let o=e.value,r=ct(t==null?void 0:t.join(",")),s=ct(o()[1]),i={int:r.int||s.int,lazy:r.lazy||s.lazy,number:r.number||s.number,trim:r.trim||s.trim};if(!e.refs[0])return U(8,n),()=>{};let a=()=>e.refs[0],c=wo(n);return c&&Eo(n)?us(n,a):c&&Ro(n)?ds(n,a):c||So(n)?cs(n,i,a,o):Ao(n)?hs(n,a,o):(U(7,n),()=>{})},xo=/[.,' ·٫]/,cs=(n,e,t,o)=>{let s=e.lazy?"change":"input",i=vo(n),a=()=>{!e.trim&&!ct(o()[1]).trim||(n.value=n.value.trim())},c=p=>{let h=p.target;h.composing=1},u=p=>{let h=p.target;h.composing&&(h.composing=0,h.dispatchEvent(new Event(s)))},l=()=>{n.removeEventListener(s,f),n.removeEventListener("change",a),n.removeEventListener("compositionstart",c),n.removeEventListener("compositionend",u),n.removeEventListener("change",u)},f=p=>{let h=t();if(!h)return;let y=p.target;if(!y||y.composing)return;let d=y.value,C=ct(o()[1]);if(i||C.number||C.int){if(C.int)d=parseInt(d);else{if(xo.test(d[d.length-1])&&d.split(xo).length===2){if(d+="0",d=parseFloat(d),isNaN(d))d="";else if(h()===d)return}d=parseFloat(d)}isNaN(d)&&(d=""),n.value=d}else C.trim&&(d=d.trim());h(d)};return n.addEventListener(s,f),n.addEventListener("change",a),n.addEventListener("compositionstart",c),n.addEventListener("compositionend",u),n.addEventListener("change",u),l},us=(n,e)=>{let t="change",o=()=>{n.removeEventListener(t,r)},r=()=>{let s=e();if(!s)return;let i=ve(n),a=n.checked,c=s();if(w(c)){let u=qt(c,i),l=u!==-1;a&&!l?c.push(i):!a&&l&&c.splice(u,1)}else ue(c)?a?c.add(i):c.delete(i):s(ps(n,a))};return n.addEventListener(t,r),o},ve=n=>"_value"in n?n._value:n.value,No="trueValue",ls="falseValue",Mo="true-value",fs="false-value",ps=(n,e)=>{let t=e?No:ls;if(t in n)return n[t];let o=e?Mo:fs;return n.hasAttribute(o)?n.getAttribute(o):e},ms=(n,e)=>{if(No in n)return Re(e,n.trueValue);let o=Mo;return n.hasAttribute(o)?Re(e,n.getAttribute(o)):Re(e,!0)},ds=(n,e)=>{let t="change",o=()=>{n.removeEventListener(t,r)},r=()=>{let s=e();if(!s)return;let i=ve(n);s(i)};return n.addEventListener(t,r),o},hs=(n,e,t)=>{let o="change",r=()=>{n.removeEventListener(o,s)},s=()=>{let i=e();if(!i)return;let c=ct(t()[1]).number,u=Array.prototype.filter.call(n.options,l=>l.selected).map(l=>c?To(ve(l)):ve(l));if(n.multiple){let l=i();try{if(wn(i),ue(l)){l.clear();for(let f of u)l.add(f)}else w(l)?(l.splice(0),l.push(...u)):i(u)}finally{Sn(i),Z(i)}}else i(u[0])};return n.addEventListener(o,s),r};var ys=["stop","prevent","capture","self","once","left","right","middle","passive"],gs=n=>{let e={};if(F(n))return;let t=n.split(",");for(let o of ys)e[o]=t.includes(o);return e},bs=(n,e,t,o,r)=>{var u,l;if(o){let f=e.value(),p=$(o.value()[0]);return z(p)?An(n,_(p),()=>e.value()[0],(u=r==null?void 0:r.join(","))!=null?u:f[1]):()=>{}}else if(t){let f=e.value();return An(n,_(t),()=>e.value()[0],(l=r==null?void 0:r.join(","))!=null?l:f[1])}let s=[],i=()=>{s.forEach(f=>f())},a=e.value(),c=a.length;for(let f=0;f<c;++f){let p=a[f];if(q(p)&&(p=p()),I(p))for(let h of Object.entries(p)){let y=h[0],d=()=>{let b=e.value()[f];return q(b)&&(b=b()),b=b[y],q(b)&&(b=b()),b},C=p[y+"_flags"];s.push(An(n,y,d,C))}else U(2,"r-on",n)}return i},Nn={isLazy:(n,e)=>e===-1&&n%2===0,isLazyKey:(n,e)=>e===0&&!n.endsWith("_flags"),once:!1,collectRefObj:!0,mount:({el:n,parseResult:e,option:t,dynamicOption:o,flags:r})=>bs(n,e,t,o,r)},Ts=(n,e)=>{if(n.startsWith("keydown")||n.startsWith("keyup")||n.startsWith("keypress")){e!=null||(e="");let t=[...n.split("."),...e.split(",")];n=t[0];let o=t[1],r=t.includes("ctrl"),s=t.includes("shift"),i=t.includes("alt"),a=t.includes("meta"),c=u=>!(r&&!u.ctrlKey||s&&!u.shiftKey||i&&!u.altKey||a&&!u.metaKey);return o?[n,u=>c(u)?u.key.toUpperCase()===o.toUpperCase():!1]:[n,c]}return[n,t=>!0]},An=(n,e,t,o)=>{if(F(e))return U(5,"r-on",n),()=>{};let r=gs(o),s=r?{capture:r.capture,passive:r.passive,once:r.once}:void 0,i;[e,i]=Ts(e,o);let a=l=>{if(!i(l)||!t&&e==="submit"&&(r!=null&&r.prevent))return;let f=t(l);q(f)&&(f=f(l)),q(f)&&f(l)},c=()=>{n.removeEventListener(e,u,s)},u=l=>{if(!r){a(l);return}try{if(r.left&&l.button!==0||r.middle&&l.button!==1||r.right&&l.button!==2||r.self&&l.target!==n)return;r.stop&&l.stopPropagation(),r.prevent&&l.preventDefault(),a(l)}finally{r.once&&c()}};return n.addEventListener(e,u,s),c};var xs=(n,e,t,o)=>{if(t){o&&o.includes("camel")&&(t=_(t)),Qe(n,t,e[0]);return}let r=e.length;for(let s=0;s<r;++s){let i=e[s];if(w(i)){let a=i[0],c=i[1];Qe(n,a,c)}else if(I(i))for(let a of Object.entries(i)){let c=a[0],u=a[1];Qe(n,c,u)}else{let a=e[s++],c=e[s];Qe(n,a,c)}}},Oo={mount:()=>({update:({el:n,values:e,option:t,flags:o})=>{xs(n,e,t,o)}})};function Cs(n){return!!n||n===""}var Qe=(n,e,t)=>{if(fe(e)){U(3,":prop",n);return}if(e==="innerHTML"||e==="textContent"){let s=[...n.childNodes];setTimeout(()=>s.forEach(ge),1),n[e]=t!=null?t:"";return}let o=n.tagName;if(e==="value"&&o!=="PROGRESS"&&!o.includes("-")){n._value=t;let s=o==="OPTION"?n.getAttribute("value"):n.value,i=t!=null?t:"";s!==i&&(n.value=i),t==null&&n.removeAttribute(e);return}let r=!1;if(t===""||t==null){let s=typeof n[e];s==="boolean"?t=Cs(t):t==null&&s==="string"?(t="",r=!0):s==="number"&&(t=0,r=!0)}try{n[e]=t}catch(s){r||U(4,e,o,t,s)}r&&n.removeAttribute(e)};var ko={once:!0,mount:({el:n,parseResult:e,expr:t})=>{let o=e,r=o.value()[0],s=w(r),i=o.refs[0];return s?r.push(n):i?i==null||i(n):o.context[t]=n,()=>{if(s){let a=r.indexOf(n);a!==-1&&r.splice(a,1)}else i==null||i(null)}}};var Es=(n,e)=>{let t=Ie(n).data,o=t._ord;Gn(o)&&(o=t._ord=n.style.display),!!e[0]?n.style.display=o:n.style.display="none"},Lo={mount:()=>({update:({el:n,values:e})=>{Es(n,e)}})};var Rs=(n,e,t)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=t==null?void 0:t[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)Io(n,s[c],i==null?void 0:i[c])}else Io(n,s,i)}},zt={mount:()=>({update:({el:n,values:e,previousValues:t})=>{Rs(n,e,t)}})},Io=(n,e,t)=>{let o=n.style,r=z(e);if(e&&!r){if(t&&!z(t))for(let s in t)e[s]==null&&On(o,s,"");for(let s in e)On(o,s,e[s])}else{let s=o.display;if(r?t!==e&&(o.cssText=e):t&&n.removeAttribute("style"),"_ord"in Ie(n).data)return;o.display=s}},Vo=/\s*!important$/;function On(n,e,t){if(w(t))t.forEach(o=>{On(n,e,o)});else if(t==null&&(t=""),e.startsWith("--"))n.setProperty(e,t);else{let o=vs(n,e);Vo.test(t)?n.setProperty(ze(o),t.replace(Vo,""),"important"):n[o]=t}}var Do=["Webkit","Moz","ms"],Mn={};function vs(n,e){let t=Mn[e];if(t)return t;let o=_(e);if(o!=="filter"&&o in n)return Mn[e]=o;o=rt(o);for(let r=0;r<Do.length;r++){let s=Do[r]+o;if(s in n)return Mn[e]=s}return e}var ce=n=>Po($(n)),Po=(n,e=new WeakMap)=>{if(!n||!I(n))return n;if(w(n))return n.map(ce);if(ue(n)){let o=new Set;for(let r of n.keys())o.add(ce(r));return o}if(Se(n)){let o=new Map;for(let r of n)o.set(ce(r[0]),ce(r[1]));return o}if(e.has(n))return $(e.get(n));let t=dt({},n);e.set(n,t);for(let o of Object.entries(t))t[o[0]]=Po($(o[1]),e);return t};var ws=(n,e)=>{var o;let t=e[0];n.textContent=ue(t)?JSON.stringify(ce([...t])):Se(t)?JSON.stringify(ce([...t])):I(t)?JSON.stringify(ce(t)):(o=t==null?void 0:t.toString())!=null?o:""},Uo={mount:()=>({update:({el:n,values:e})=>{ws(n,e)}})};var Ho={mount:()=>({update:({el:n,values:e})=>{Qe(n,"value",e[0])}})};var Oe=class Oe{constructor(e){m(this,"B",{});m(this,"p",{});m(this,"lt",()=>Object.keys(this.B).filter(e=>e.length===1||!e.startsWith(":")));m(this,"Z",new Map);m(this,"$",new Map);m(this,"forGrowThreshold",10);m(this,"globalContext");m(this,"useInterpolation",!0);m(this,"propValidationMode","throw");if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.It()}static getDefault(){var e;return(e=Oe.je)!=null?e:Oe.je=new Oe}It(){let e={},t=globalThis;for(let o of Oe.Lt.split(","))e[o]=t[o];return e.ref=Ee,e.sref=ae,e.flatten=ce,e}addComponent(...e){for(let t of e){if(!t.defaultName){_e.warning("Registered component's default name is not defined",t);continue}this.Z.set(rt(t.defaultName),t),this.$.set(rt(t.defaultName).toLocaleUpperCase(),t)}}setDirectives(e){this.B={".":Oo,":":Rn,"@":Nn,[`${e}on`]:Nn,[`${e}bind`]:Rn,[`${e}html`]:Ut,[`${e}text`]:Uo,[`${e}show`]:Lo,[`${e}model`]:Co,":style":zt,[`${e}style`]:zt,[`${e}bind:style`]:zt,":class":vn,[`${e}bind:class`]:vn,":ref":ko,":value":Ho,[`${e}teleport`]:Nt},this.p={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,context:":context",contextAlias:`${e}context`,bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this.B,this.p)}};m(Oe,"je"),m(Oe,"Lt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var de=Oe;var Kt=(n,e)=>{if(!n)return;let o=(e!=null?e:de.getDefault()).p,r=/(\{\{[^]*?\}\}|\[\[[^]*?\]\])/g,s=[{start:"{{",end:"}}"},{start:"[[",end:"]]"}];for(let i of As(n,o.pre,s))Ss(i,o.text,r,s)},Ss=(n,e,t,o)=>{var c;let r=n.textContent;if(!r)return;let s=t,i=r.split(s);if(i.length<=1)return;if(((c=n.parentElement)==null?void 0:c.childNodes.length)===1&&i.length===3){let u=i[1],l=Bo(u,o);if(l&&F(i[0])&&F(i[2])){let f=n.parentElement;f.setAttribute(e,u.substring(l.start.length,u.length-l.end.length)),f.innerText="";return}}let a=document.createDocumentFragment();for(let u of i){let l=Bo(u,o);if(l){let f=document.createElement("span");f.setAttribute(e,u.substring(l.start.length,u.length-l.end.length)),a.appendChild(f)}else a.appendChild(document.createTextNode(u))}n.replaceWith(a)},As=(n,e,t)=>{let o=[],r=s=>{var i;if(s.nodeType===Node.TEXT_NODE)t.some(a=>{var c;return(c=s.textContent)==null?void 0:c.includes(a.start)})&&o.push(s);else{if((i=s==null?void 0:s.hasAttribute)!=null&&i.call(s,e))return;for(let a of Ce(s))r(a)}};return r(n),o},Bo=(n,e)=>e.find(t=>n.startsWith(t.start)&&n.endsWith(t.end));var Ns=9,Ms=10,Os=13,ks=32,we=46,Wt=44,Ls=39,Is=34,Gt=40,Xe=41,Jt=91,kn=93,Ln=63,Vs=59,jo=58,_o=123,Qt=125,De=43,Xt=45,In=96,$o=47,Vn=92,Fo=new Set([2,3]),Jo={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},Ds=zn(dt({"=>":2},Jo),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),Qo=Object.keys(Jo),Ps=new Set(Qo),Pn=new Set(["=>"]);Qo.forEach(n=>Pn.add(n));var qo={true:!0,false:!1,null:null},Us="this",Ye="Expected ",Pe="Unexpected ",Hn="Unclosed ",Hs=Ye+":",zo=Ye+"expression",Bs="missing }",js=Pe+"object property",_s=Hn+"(",Ko=Ye+"comma",Wo=Pe+"token ",$s=Pe+"period",Dn=Ye+"expression after ",Fs="missing unaryOp argument",qs=Hn+"[",zs=Ye+"exponent (",Ks="Variable names cannot start with a number (",Ws=Hn+'quote after "',ut=n=>n>=48&&n<=57,Go=n=>Ds[n],Un=class{constructor(e){m(this,"u");m(this,"e");this.u=e,this.e=0}get H(){return this.u.charAt(this.e)}get h(){return this.u.charCodeAt(this.e)}f(e){return this.u.charCodeAt(this.e)===e}K(e){return e>=65&&e<=90||e>=97&&e<=122||e===36||e===95||e>=128}le(e){return this.K(e)||ut(e)}i(e){return new Error(`${e} at character ${this.e}`)}g(){let e=this.h,t=this.u,o=this.e;for(;e===ks||e===Ns||e===Ms||e===Os;)e=t.charCodeAt(++o);this.e=o}parse(){let e=this.fe();return e.length===1?e[0]:{type:0,body:e}}fe(e){let t=[];for(;this.e<this.u.length;){let o=this.h;if(o===Vs||o===Wt)this.e++;else{let r=this.S();if(r)t.push(r);else if(this.e<this.u.length){if(o===e)break;throw this.i(Pe+'"'+this.H+'"')}}}return t}S(){var t;let e=(t=this.Pt())!=null?t:this._e();return this.g(),this.Dt(e)}me(){this.g();let e=this.u,t=this.e,o=e.charCodeAt(t),r=e.charCodeAt(t+1),s=e.charCodeAt(t+2),i=e.charCodeAt(t+3);if(isNaN(o))return!1;let a=!1,c=0;return o===62&&r===62&&s===62&&i===61?(a=">>>=",c=4):o===61&&r===61&&s===61?(a="===",c=3):o===33&&r===61&&s===61?(a="!==",c=3):o===62&&r===62&&s===62?(a=">>>",c=3):o===60&&r===60&&s===61?(a="<<=",c=3):o===62&&r===62&&s===61?(a=">>=",c=3):o===42&&r===42&&s===61?(a="**=",c=3):o===61&&r===62?(a="=>",c=2):o===124&&r===124?(a="||",c=2):o===63&&r===63?(a="??",c=2):o===38&&r===38?(a="&&",c=2):o===61&&r===61?(a="==",c=2):o===33&&r===61?(a="!=",c=2):o===60&&r===61?(a="<=",c=2):o===62&&r===61?(a=">=",c=2):o===60&&r===60?(a="<<",c=2):o===62&&r===62?(a=">>",c=2):o===43&&r===61?(a="+=",c=2):o===45&&r===61?(a="-=",c=2):o===42&&r===61?(a="*=",c=2):o===47&&r===61?(a="/=",c=2):o===37&&r===61?(a="%=",c=2):o===38&&r===61?(a="&=",c=2):o===94&&r===61?(a="^=",c=2):o===124&&r===61?(a="|=",c=2):o===42&&r===42?(a="**",c=2):o===105&&r===110?this.le(e.charCodeAt(t+2))||(a="in",c=2):o===61?(a="=",c=1):o===124?(a="|",c=1):o===94?(a="^",c=1):o===38?(a="&",c=1):o===60?(a="<",c=1):o===62?(a=">",c=1):o===43?(a="+",c=1):o===45?(a="-",c=1):o===42?(a="*",c=1):o===47?(a="/",c=1):o===37&&(a="%",c=1),a?(this.e+=c,a):!1}_e(){let e,t,o,r,s,i,a,c;if(s=this.z(),!s||(t=this.me(),!t))return s;if(r={value:t,prec:Go(t),right_a:Pn.has(t)},i=this.z(),!i)throw this.i(Dn+t);let u=[s,r,i];for(;t=this.me();){o=Go(t),r={value:t,prec:o,right_a:Pn.has(t)},c=t;let l=f=>r.right_a&&f.right_a?o>f.prec:o<=f.prec;for(;u.length>2&&l(u[u.length-2]);)i=u.pop(),t=u.pop().value,s=u.pop(),e=this.$e(t,s,i),u.push(e);if(e=this.z(),!e)throw this.i(Dn+c);u.push(r,e)}for(a=u.length-1,e=u[a];a>1;)e=this.$e(u[a-1].value,u[a-2],e),a-=2;return e}z(){let e;if(this.g(),e=this.Ut(),e)return this.de(e);let t=this.h;if(ut(t)||t===we)return this.Bt();if(t===Ls||t===Is)e=this.Ht();else if(t===Jt)e=this.jt();else{let o=this._t();if(o){let r=this.z();if(!r)throw this.i(Fs);return this.de({type:7,operator:o,argument:r})}this.K(t)?(e=this.ye(),e.name in qo?e={type:4,value:qo[e.name],raw:e.name}:e.name===Us&&(e={type:5})):t===Gt&&(e=this.$t())}return e?(e=this.W(e),this.de(e)):!1}$e(e,t,o){if(e==="=>"){let r=t.type===1?t.expressions:[t];return{type:15,params:r,body:o}}return Ps.has(e)?{type:16,operator:e,left:t,right:o}:{type:8,operator:e,left:t,right:o}}Ut(){let e={node:!1};return this.qt(e),e.node||(this.Ft(e),e.node)||(this.Kt(e),e.node)||(this.qe(e),e.node)||this.zt(e),e.node}de(e){let t={node:e};return this.Wt(t),this.Gt(t),this.Jt(t),t.node}_t(){let e=this.u,t=this.e,o=e.charCodeAt(t),r=e.charCodeAt(t+1),s=e.charCodeAt(t+2),i=e.charCodeAt(t+3);return o===Xt?(this.e++,"-"):o===33?(this.e++,"!"):o===126?(this.e++,"~"):o===De?(this.e++,"+"):o===110&&r===101&&s===119&&!this.le(i)?(this.e+=3,"new"):!1}Pt(){let e={};return this.Qt(e),e.node}Dt(e){let t={node:e};return this.Xt(t),t.node}W(e){this.g();let t=this.h;for(;t===we||t===Jt||t===Gt||t===Ln;){let o;if(t===Ln){if(this.u.charCodeAt(this.e+1)!==we)break;o=!0,this.e+=2,this.g(),t=this.h}if(this.e++,t===Jt){if(e={type:3,computed:!0,object:e,property:this.S()},this.g(),t=this.h,t!==kn)throw this.i(qs);this.e++}else t===Gt?e={type:6,arguments:this.Fe(Xe),callee:e}:(o&&this.e--,this.g(),e={type:3,computed:!1,object:e,property:this.ye()});o&&(e.optional=!0),this.g(),t=this.h}return e}Bt(){let e=this.u,t=this.e,o=t;for(;ut(e.charCodeAt(o));)o++;if(e.charCodeAt(o)===we)for(o++;ut(e.charCodeAt(o));)o++;let r=e.charCodeAt(o);if(r===101||r===69){o++;let a=e.charCodeAt(o);(a===De||a===Xt)&&o++;let c=o;for(;ut(e.charCodeAt(o));)o++;if(c===o){this.e=o;let u=e.slice(t,o);throw this.i(zs+u+this.H+")")}}this.e=o;let s=e.slice(t,o),i=e.charCodeAt(o);if(this.K(i))throw this.i(Ks+s+this.H+")");if(i===we||s.length===1&&s.charCodeAt(0)===we)throw this.i($s);return{type:4,value:parseFloat(s),raw:s}}Ht(){let e=this.u,t=e.length,o=this.e,r=e.charCodeAt(this.e++),s=this.e,i=s,a=[],c=!1,u=!1;for(;s<t;){let f=e.charCodeAt(s);if(f===r){u=!0,this.e=s+1;break}if(f===Vn){c||(c=!0),a.push(e.slice(i,s));let p=e.charCodeAt(s+1);a.push(this.Ke(p)),s+=2,i=s}else s++}let l=c?a.join("")+e.slice(i,u?s:t):e.slice(i,u?s:t);if(!u)throw this.e=s,this.i(Ws+l+'"');return{type:4,value:l,raw:e.substring(o,this.e)}}Ke(e){switch(e){case 110:return`
|
|
2
|
-
`;case 114:return"\r";case 116:return" ";case 98:return"\b";case 102:return"\f";case 118:return"\v";default:return isNaN(e)?"":String.fromCharCode(e)}}ye(){let e=this.h,t=this.e;if(this.K(e))this.e++;else throw this.i(Pe+this.H);for(;this.e<this.u.length&&(e=this.h,this.le(e));)this.e++;return{type:2,name:this.u.slice(t,this.e)}}Fe(e){let t=[],o=!1,r=0;for(;this.e<this.u.length;){this.g();let s=this.h;if(s===e){if(o=!0,this.e++,e===Xe&&r&&r>=t.length)throw this.i(Wo+String.fromCharCode(e));break}else if(s===Wt){if(this.e++,r++,r!==t.length){if(e===Xe)throw this.i(Wo+",");for(let i=t.length;i<r;i++)t.push(null)}}else{if(t.length!==r&&r!==0)throw this.i(Ko);{let i=this.S();if(!i||i.type===0)throw this.i(Ko);t.push(i)}}}if(!o)throw this.i(Ye+String.fromCharCode(e));return t}$t(){this.e++;let e=this.fe(Xe);if(this.f(Xe))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.i(_s)}jt(){return this.e++,{type:9,elements:this.Fe(kn)}}qt(e){if(this.f(_o)){this.e++;let t=[];for(;!isNaN(this.h);){if(this.g(),this.f(Qt)){this.e++,e.node=this.W({type:10,properties:t});return}let o=this.S();if(!o)break;if(this.g(),o.type===2&&(this.f(Wt)||this.f(Qt)))t.push({type:12,computed:!1,key:o,value:o,shorthand:!0});else if(this.f(jo)){this.e++;let r=this.S();if(!r)throw this.i(js);let s=o.type===9;t.push({type:12,computed:s,key:s?o.elements[0]:o,value:r,shorthand:!1}),this.g()}else t.push(o);this.f(Wt)&&this.e++}throw this.i(Bs)}}Ft(e){let t=this.h;if((t===De||t===Xt)&&t===this.u.charCodeAt(this.e+1)){this.e+=2;let o=e.node={type:13,operator:t===De?"++":"--",argument:this.W(this.ye()),prefix:!0};if(!o.argument||!Fo.has(o.argument.type))throw this.i(Pe+o.operator)}}Gt(e){let t=e.node,o=this.h;if((o===De||o===Xt)&&o===this.u.charCodeAt(this.e+1)){if(!Fo.has(t.type))throw this.i(Pe+(o===De?"++":"--"));this.e+=2,e.node={type:13,operator:o===De?"++":"--",argument:t,prefix:!1}}}Kt(e){this.u.charCodeAt(this.e)===we&&this.u.charCodeAt(this.e+1)===we&&this.u.charCodeAt(this.e+2)===we&&(this.e+=3,e.node={type:14,argument:this.S()})}Xt(e){if(e.node&&this.f(Ln)){this.e++;let t=e.node,o=this.S();if(!o)throw this.i(zo);if(this.g(),this.f(jo)){this.e++;let r=this.S();if(!r)throw this.i(zo);e.node={type:11,test:t,consequent:o,alternate:r}}else throw this.i(Hs)}}Qt(e){if(this.g(),this.f(Gt)){let t=this.e;if(this.e++,this.g(),this.f(Xe)){this.e++;let o=this.me();if(o==="=>"){let r=this._e();if(!r)throw this.i(Dn+o);e.node={type:15,params:null,body:r};return}}this.e=t}}Jt(e){let t=e.node,o=t.type;(o===2||o===3)&&this.f(In)&&(e.node={type:17,tag:t,quasi:this.qe(e)})}qe(e){if(!this.f(In))return;let t=this.u,o=t.length,r={type:19,quasis:[],expressions:[]},s=++this.e,i=[],a=[],c=!1,u=l=>{if(!c){let h=t.slice(s,this.e);return r.quasis.push({type:18,value:{raw:h,cooked:h},tail:l})}i.push(t.slice(s,this.e)),a.push(t.slice(s,this.e));let f=i.join(""),p=a.join("");return i.length=0,a.length=0,c=!1,r.quasis.push({type:18,value:{raw:f,cooked:p},tail:l})};for(;this.e<o;){let l=t.charCodeAt(this.e);if(l===In)return u(!0),this.e+=1,e.node=r,r;if(l===36&&t.charCodeAt(this.e+1)===_o){if(u(!1),this.e+=2,r.expressions.push(...this.fe(Qt)),!this.f(Qt))throw this.i("unclosed ${");this.e+=1,s=this.e}else if(l===Vn){c||(c=!0),i.push(t.slice(s,this.e)),a.push(t.slice(s,this.e));let f=t.charCodeAt(this.e+1);i.push(t.slice(this.e,this.e+2)),a.push(this.Ke(f)),this.e+=2,s=this.e}else this.e+=1}throw this.i("Unclosed `")}Wt(e){let t=e.node;if(!t||t.operator!=="new"||!t.argument)return;if(!t.argument||![6,3].includes(t.argument.type))throw this.i("Expected new function()");e.node=t.argument;let o=e.node;for(;o.type===3||o.type===6&&o.callee.type===3;)o=o.type===3?o.object:o.callee.object;o.type=20}zt(e){if(!this.f($o))return;let t=++this.e,o=!1;for(;this.e<this.u.length;){if(this.h===$o&&!o){let r=this.u.slice(t,this.e),s="";for(;++this.e<this.u.length;){let a=this.h;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.H;else break}let i;try{i=new RegExp(r,s)}catch(a){throw this.i(a.message)}return e.node={type:4,value:i,raw:this.u.slice(t-1,this.e)},e.node=this.W(e.node),e.node}this.f(Jt)?o=!0:o&&this.f(kn)&&(o=!1),this.e+=this.f(Vn)?2:1}throw this.i("Unclosed Regex")}},Xo=n=>new Un(n).parse();var Gs={"=>":(n,e)=>{},"=":(n,e)=>{},"*=":(n,e)=>{},"**=":(n,e)=>{},"/=":(n,e)=>{},"%=":(n,e)=>{},"+=":(n,e)=>{},"-=":(n,e)=>{},"<<=":(n,e)=>{},">>=":(n,e)=>{},">>>=":(n,e)=>{},"&=":(n,e)=>{},"^=":(n,e)=>{},"|=":(n,e)=>{},"||":(n,e)=>n()||e(),"??":(n,e)=>{var t;return(t=n())!=null?t:e()},"&&":(n,e)=>n()&&e(),"|":(n,e)=>n|e,"^":(n,e)=>n^e,"&":(n,e)=>n&e,"==":(n,e)=>n==e,"!=":(n,e)=>n!=e,"===":(n,e)=>n===e,"!==":(n,e)=>n!==e,"<":(n,e)=>n<e,">":(n,e)=>n>e,"<=":(n,e)=>n<=e,">=":(n,e)=>n>=e,in:(n,e)=>n in e,"<<":(n,e)=>n<<e,">>":(n,e)=>n>>e,">>>":(n,e)=>n>>>e,"+":(n,e)=>n+e,"-":(n,e)=>n-e,"*":(n,e)=>n*e,"/":(n,e)=>n/e,"%":(n,e)=>n%e,"**":(n,e)=>mt(n,e)},Js={"-":n=>-n,"+":n=>+n,"!":n=>!n,"~":n=>~n,new:n=>n},tr=n=>{if(!(n!=null&&n.some(er)))return n;let e=[];return n.forEach(t=>er(t)?e.push(...t):e.push(t)),e},Yo=(...n)=>tr(n),Bn=(n,e)=>{if(!n)return e;let t=Object.create(e!=null?e:{});return t.$event=n,t},Qs={"++":(n,e)=>{let t=n[e];if(x(t)){let o=t();return t(++o),o}return++n[e]},"--":(n,e)=>{let t=n[e];if(x(t)){let o=t();return t(--o),o}return--n[e]}},Xs={"++":(n,e)=>{let t=n[e];if(x(t)){let o=t();return t(o+1),o}return n[e]++},"--":(n,e)=>{let t=n[e];if(x(t)){let o=t();return t(o-1),o}return n[e]--}},Zo={"=":(n,e,t)=>{let o=n[e];return x(o)?o(t):n[e]=t},"+=":(n,e,t)=>{let o=n[e];return x(o)?o(o()+t):n[e]+=t},"-=":(n,e,t)=>{let o=n[e];return x(o)?o(o()-t):n[e]-=t},"*=":(n,e,t)=>{let o=n[e];return x(o)?o(o()*t):n[e]*=t},"/=":(n,e,t)=>{let o=n[e];return x(o)?o(o()/t):n[e]/=t},"%=":(n,e,t)=>{let o=n[e];return x(o)?o(o()%t):n[e]%=t},"**=":(n,e,t)=>{let o=n[e];return x(o)?o(mt(o(),t)):n[e]=mt(n[e],t)},"<<=":(n,e,t)=>{let o=n[e];return x(o)?o(o()<<t):n[e]<<=t},">>=":(n,e,t)=>{let o=n[e];return x(o)?o(o()>>t):n[e]>>=t},">>>=":(n,e,t)=>{let o=n[e];return x(o)?o(o()>>>t):n[e]>>>=t},"|=":(n,e,t)=>{let o=n[e];return x(o)?o(o()|t):n[e]|=t},"&=":(n,e,t)=>{let o=n[e];return x(o)?o(o()&t):n[e]&=t},"^=":(n,e,t)=>{let o=n[e];return x(o)?o(o()^t):n[e]^=t}},Yt=(n,e)=>q(n)?n.bind(e):n,jn=class{constructor(e,t,o,r,s){m(this,"l");m(this,"ze");m(this,"We");m(this,"Ge");m(this,"A");m(this,"Je");m(this,"Qe");this.l=w(e)?e:[e],this.ze=t,this.We=o,this.Ge=r,this.Qe=!!s}Xe(e,t){if(t&&e in t)return t;for(let o of this.l)if(e in o)return o}2(e,t,o){let r=e.name;if(r==="$root")return this.l[this.l.length-1];if(r==="$parent")return this.l[1];if(r==="$ctx")return[...this.l];if(o&&r in o)return this.A=o[r],Yt($(o[r]),o);for(let i of this.l)if(r in i)return this.A=i[r],Yt($(i[r]),i);let s=this.ze;if(s&&r in s)return this.A=s[r],Yt($(s[r]),s)}5(e,t,o){return this.l[0]}0(e,t,o){return this.Ye(t,o,Yo,...e.body)}1(e,t,o){return this.E(t,o,(...r)=>r.pop(),...e.expressions)}3(e,t,o){let{obj:r,key:s}=this.he(e,t,o),i=r==null?void 0:r[s];return this.A=i,Yt($(i),r)}4(e,t,o){return e.value}6(e,t,o){let r=(i,...a)=>q(i)?i(...tr(a)):i,s=this.E(++t,o,r,e.callee,...e.arguments);return this.A=s,s}7(e,t,o){return this.E(t,o,Js[e.operator],e.argument)}8(e,t,o){let r=Gs[e.operator];switch(e.operator){case"||":case"&&":case"??":return r(()=>this.b(e.left,t,o),()=>this.b(e.right,t,o))}return this.E(t,o,r,e.left,e.right)}9(e,t,o){return this.Ye(++t,o,Yo,...e.elements)}10(e,t,o){let r={},s=(...i)=>{i.forEach(a=>{Object.assign(r,a)})};return this.E(++t,o,s,...e.properties),r}11(e,t,o){return this.E(t,o,r=>this.b(r?e.consequent:e.alternate,t,o),e.test)}12(e,t,o){var l;let r={},s=f=>(f==null?void 0:f.type)!==15,i=(l=this.Ge)!=null?l:()=>!1,a=t===0&&this.Qe,c=f=>this.Ze(a,e.key,t,Bn(f,o)),u=f=>this.Ze(a,e.value,t,Bn(f,o));if(e.shorthand){let f=e.key.name;r[f]=s(e.key)&&i(f,t)?c:c()}else if(e.computed){let f=$(c());r[f]=s(e.value)&&i(f,t)?u:u()}else{let f=e.key.type===4?e.key.value:e.key.name;r[f]=s(e.value)&&i(f,t)?()=>u:u()}return r}he(e,t,o){let r=this.b(e.object,t,o),s=e.computed?this.b(e.property,t,o):e.property.name;return{obj:r,key:s}}13(e,t,o){let r=e.argument,s=e.operator,i=e.prefix?Qs:Xs;if(r.type===2){let a=r.name,c=this.Xe(a,o);return fe(c)?void 0:i[s](c,a)}if(r.type===3){let{obj:a,key:c}=this.he(r,t,o);return i[s](a,c)}}16(e,t,o){let r=e.left,s=e.operator;if(r.type===2){let i=r.name,a=this.Xe(i,o);if(fe(a))return;let c=this.b(e.right,t,o);return Zo[s](a,i,c)}if(r.type===3){let{obj:i,key:a}=this.he(r,t,o),c=this.b(e.right,t,o);return Zo[s](i,a,c)}}14(e,t,o){let r=this.b(e.argument,t,o);return w(r)&&(r.s=nr),r}17(e,t,o){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},t,o)}19(e,t,o){let r=(...s)=>s.reduce((i,a,c)=>i+=a+e.quasis[c+1].value.cooked,e.quasis[0].value.cooked);return this.E(t,o,r,...e.expressions)}18(e,t,o){return e.value.cooked}20(e,t,o){let r=(s,...i)=>new s(...i);return this.E(t,o,r,e.callee,...e.arguments)}15(e,t,o){return(...r)=>{let s=Object.create(o!=null?o:{}),i=e.params;if(i){let a=0;for(let c of i)s[c.name]=r[a++]}return this.b(e.body,t,s)}}b(e,t,o){let r=$(this[e.type](e,t,o));return this.Je=e.type,r}Ze(e,t,o,r){let s=this.b(t,o,r);return e&&this.et()?this.A:s}et(){let e=this.Je;return(e===2||e===3||e===6)&&x(this.A)}eval(e,t){let{value:o,refs:r}=Tn(()=>this.b(e,-1,t)),s={value:o,refs:r};return this.et()&&(s.ref=this.A),s}E(e,t,o,...r){let s=r.map(i=>i&&this.b(i,e,t));return o(...s)}Ye(e,t,o,...r){let s=this.We;if(!s)return this.E(e,t,o,...r);let i=r.map((a,c)=>a&&(a.type!==15&&s(c,e)?u=>this.b(a,e,Bn(u,t)):this.b(a,e,t)));return o(...i)}},nr=Symbol("s"),er=n=>(n==null?void 0:n.s)===nr,or=(n,e,t,o,r,s,i)=>new jn(e,t,o,r,i).eval(n,s);var rr={},sr=n=>!!n,Zt=class{constructor(e,t){m(this,"l");m(this,"o");m(this,"tt",[]);this.l=e,this.o=t}v(e){this.l=[e,...this.l]}ee(){return this.l.map(t=>t.components).filter(sr).reverse().reduce((t,o)=>{for(let[r,s]of Object.entries(o))t[r.toUpperCase()]=s;return t},{})}ut(){let e=[],t=new Set,o=this.l.map(r=>r.components).filter(sr).reverse();for(let r of o)for(let s of Object.keys(r))t.has(s)||(t.add(s),e.push(s));return e}V(e,t,o,r,s){var b;let i=[],a=[],c=new Set,u=()=>{for(let E=0;E<a.length;++E)a[E]();a.length=0},p={value:()=>i,stop:()=>{u(),c.clear()},subscribe:(E,V)=>(c.add(E),V&&E(i),()=>{c.delete(E)}),refs:[],context:this.l[0]};if(F(e))return p;let h=this.o.globalContext,y=[],d=new Set,C=(E,V,W,H)=>{try{let B=or(E,V,h,t,o,H,r);return W&&B.refs.length>0&&y.push(...B.refs),{value:B.value,refs:B.refs,ref:B.ref}}catch(B){U(6,`evaluation error: ${e}`,B)}return{value:void 0,refs:[]}};try{let E=(b=rr[e])!=null?b:Xo("["+e+"]");rr[e]=E;let V=this.l.slice(),W=E.elements,H=W.length,B=new Array(H);p.refs=B;let ee=()=>{y.length=0,s||(d.clear(),u());let oe=new Array(H);for(let O=0;O<H;++O){let T=W[O];if(t!=null&&t(O,-1)){oe[O]=Q=>C(T,V,!1,{$event:Q}).value;continue}let N=C(T,V,!0);oe[O]=N.value,B[O]=N.ref}if(!s)for(let O of y)d.has(O)||(d.add(O),a.push(re(O,ee)));if(i=oe,c.size!==0)for(let O of c)c.has(O)&&O(i)};ee()}catch(E){U(6,`parse error: ${e}`,E)}return p}L(){return this.l.slice()}ce(e){this.tt.push(this.l),this.l=e}C(e,t){try{this.ce(e),t()}finally{this.Yt()}}Yt(){var e;this.l=(e=this.tt.pop())!=null?e:[]}};var ir=n=>{let e=n.charCodeAt(0);return e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122||n==="-"||n==="_"||n===":"},Ys=(n,e)=>{let t="";for(let o=e;o<n.length;++o){let r=n[o];if(t){r===t&&(t="");continue}if(r==='"'||r==="'"){t=r;continue}if(r===">")return o}return-1},Zs=(n,e)=>{let t=e?2:1;for(;t<n.length&&(n[t]===" "||n[t]===`
|
|
3
|
-
`);)++
|
|
1
|
+
var yr=Object.defineProperty,gr=Object.defineProperties;var br=Object.getOwnPropertyDescriptors;var Wn=Object.getOwnPropertySymbols;var Tr=Object.prototype.hasOwnProperty,xr=Object.prototype.propertyIsEnumerable;var dt=Math.pow,sn=(t,e,n)=>e in t?yr(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,ht=(t,e)=>{for(var n in e||(e={}))Tr.call(e,n)&&sn(t,n,e[n]);if(Wn)for(var n of Wn(e))xr.call(e,n)&&sn(t,n,e[n]);return t},Gn=(t,e)=>gr(t,br(e));var m=(t,e,n)=>sn(t,typeof e!="symbol"?e+"":e,n);var Jn=(t,e,n)=>new Promise((o,r)=>{var s=c=>{try{a(n.next(c))}catch(u){r(u)}},i=c=>{try{a(n.throw(c))}catch(u){r(u)}},a=c=>c.done?o(c.value):Promise.resolve(c.value).then(s,i);a((n=n.apply(t,e)).next())});var je=Symbol(":regor");var ge=t=>{let e=[t];for(let n=0;n<e.length;++n){let o=e[n];Cr(o);for(let r=o.lastChild;r!=null;r=r.previousSibling)e.push(r)}},Cr=t=>{let e=t[je];if(!e)return;let n=e.unbinders;for(let o=0;o<n.length;++o)n[o]();n.length=0,t[je]=void 0};var _e=[],yt=!1,gt,Qn=()=>{if(yt=!1,gt=void 0,_e.length!==0){for(let t=0;t<_e.length;++t)ge(_e[t]);_e.length=0}},J=t=>{t.remove(),_e.push(t),yt||(yt=!0,gt=setTimeout(Qn,1))},Er=()=>Jn(null,null,function*(){_e.length===0&&!yt||(gt&&clearTimeout(gt),Qn())});var q=t=>typeof t=="function",z=t=>typeof t=="string",Xn=t=>typeof t=="undefined",le=t=>t==null||typeof t=="undefined",F=t=>typeof t!="string"||!(t!=null&&t.trim()),Rr=Object.prototype.toString,an=t=>Rr.call(t),Ae=t=>an(t)==="[object Map]",ue=t=>an(t)==="[object Set]",cn=t=>an(t)==="[object Date]",tt=t=>typeof t=="symbol",w=Array.isArray,L=t=>t!==null&&typeof t=="object";var Yn={0:"createApp can't find root element. You must define either a valid `selector` or an `element`. Example: createApp({}, {selector: '#app', html: '...'})",1:t=>`Component template cannot be found. selector: ${t} .`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed is readonly.",5:"persist requires a string key."},j=(t,...e)=>{let n=Yn[t];return new Error(q(n)?n.call(Yn,...e):n)};var bt=[],Zn=()=>{let t={onMounted:[],onUnmounted:[]};return bt.push(t),t},Ie=t=>{let e=bt[bt.length-1];if(!e&&!t)throw j(2);return e},eo=t=>{let e=Ie();return t&&fn(t),bt.pop(),e},un=Symbol("csp"),fn=t=>{let e=t,n=e[un];if(n){let o=Ie();if(n===o)return;o.onMounted.length>0&&n.onMounted.push(...o.onMounted),o.onUnmounted.length>0&&n.onUnmounted.push(...o.onUnmounted);return}e[un]=Ie()},Tt=t=>t[un];var Ne=t=>{var n,o;let e=(n=Tt(t))==null?void 0:n.onUnmounted;e==null||e.forEach(r=>{r()}),(o=t.unmounted)==null||o.call(t)};var to={8:t=>`Model binding requires a ref at ${t.outerHTML}`,7:t=>`Model binding is not supported on ${t.tagName} element at ${t.outerHTML}`,0:(t,e)=>`${t} binding expression is missing at ${e.outerHTML}`,1:(t,e,n)=>`invalid ${t} expression: ${e} at ${n.outerHTML}`,2:(t,e)=>`${t} requires object expression at ${e.outerHTML}`,3:(t,e)=>`${t} binder: key is empty on ${e.outerHTML}.`,4:(t,e,n,o)=>({msg:`Failed setting prop "${t}" on <${e.toLowerCase()}>: value ${n} is invalid.`,args:[o]}),5:(t,e)=>`${t} binding missing event type at ${e.outerHTML}`,6:(t,e)=>({msg:t,args:[e]})},U=(t,...e)=>{let n=to[t],o=q(n)?n.call(to,...e):n,r=$e.warning;r&&(z(o)?r(o):r(o,...o.args))},$e={warning:console.warn};var xt=Symbol("ref"),Y=Symbol("sref"),Ct=Symbol("raw");var x=t=>t!=null&&t[Y]===1;var Fe=class extends Error{constructor(n,o){super(o);m(this,"propPath");m(this,"detail");this.name="PropValidationError",this.propPath=n,this.detail=o}},be=(t,e)=>{throw new Fe(t,`${e}.`)},ln=t=>{var n;if(t===null)return"null";if(t===void 0)return"undefined";if(x(t))return`ref<${ln(t())}>`;if(typeof t=="string")return"string";if(typeof t=="number")return"number";if(typeof t=="boolean")return"boolean";if(typeof t=="bigint")return"bigint";if(typeof t=="symbol")return"symbol";if(typeof t=="function")return"function";if(w(t))return"array";if(t instanceof Date)return"Date";if(t instanceof RegExp)return"RegExp";if(t instanceof Map)return"Map";if(t instanceof Set)return"Set";let e=(n=t==null?void 0:t.constructor)==null?void 0:n.name;return e&&e!=="Object"?e:"object"},wr=t=>t.length>60?`${t.slice(0,57)}...`:t,Et=(t,e=0)=>{if(e>1)return"unknown";if(x(t)){let s=t();return`ref(${Et(s,e+1)})`}if(typeof t=="string")return wr(JSON.stringify(t));if(typeof t=="number"||typeof t=="boolean"||typeof t=="bigint"||typeof t=="symbol")return String(t);if(t===null)return"null";if(t===void 0)return"undefined";if(t instanceof Date)return t.toISOString();if(t instanceof RegExp)return String(t);if(w(t)){let s=t.slice(0,5).map(i=>Et(i,e+1)).join(", ");return t.length>5?`[${s}, ...]`:`[${s}]`}if(L(t)){let s=Object.entries(t).slice(0,5);if(s.length===0)return"{}";let i=s.map(([a,c])=>{let u=Et(c,e+1);return`${a}: ${u}`}).join(", ");return Object.keys(t).length>5?`{ ${i}, ... }`:`{ ${i} }`}return"unknown"},Te=t=>{let e=ln(t),n=Et(t);return`got ${e} (${n})`},vr=t=>typeof t=="string"?`"${t}"`:typeof t=="number"||typeof t=="boolean"?String(t):t===null?"null":t===void 0?"undefined":ln(t),Sr=(t,e)=>{typeof t!="string"&&be(e,`expected string, ${Te(t)}`)},Ar=(t,e)=>{typeof t!="number"&&be(e,`expected number, ${Te(t)}`)},Nr=(t,e)=>{typeof t!="boolean"&&be(e,`expected boolean, ${Te(t)}`)},Or=t=>(e,n)=>{e instanceof t||be(n,`expected instance of ${t.name||"provided class"}, ${Te(e)}`)},Mr=t=>(e,n,o)=>{e!==void 0&&t(e,n,o)},kr=t=>(e,n,o)=>{e!==null&&t(e,n,o)},Lr=t=>(e,n)=>{t.includes(e)||be(n,`expected one of ${t.map(o=>vr(o)).join(", ")}, ${Te(e)}`)},Ir=t=>(e,n,o)=>{w(e)||be(n,`expected array, ${Te(e)}`);let r=e;for(let s=0;s<r.length;++s)t(r[s],`${n}[${s}]`,o)},Vr=t=>(e,n,o)=>{L(e)||be(n,`expected object, ${Te(e)}`);let r=e;for(let s in t){let i=t[s];i(r[s],`${n}.${s}`,o)}},Dr=t=>(e,n,o)=>{if(x(e)){t(e(),`${n}.value`,o);return}be(n,`expected ref, ${Te(e)}`)},Pr={fail:be,describe:Te,isString:Sr,isNumber:Ar,isBoolean:Nr,isClass:Or,optional:Mr,nullable:kr,oneOf:Lr,arrayOf:Ir,shape:Vr,refOf:Dr};var Ur=(t,e,n)=>{var i,a;let o=((a=(i=t.tagName)==null?void 0:i.toLowerCase)==null?void 0:a.call(i))||"unknown",r=n instanceof Fe?n.propPath:e,s=n instanceof Fe?n.detail:n instanceof Error?n.message:String(n);return n instanceof Error?new Error(`Invalid prop "${r}" on <${o}>: ${s}`,{cause:n}):new Error(`Invalid prop "${r}" on <${o}>: ${s}`,{cause:n})},nt=class{constructor(e,n,o,r,s,i){m(this,"props");m(this,"start");m(this,"end");m(this,"ctx");m(this,"autoProps",!0);m(this,"entangle",!0);m(this,"enableSwitch",!1);m(this,"onAutoPropsAssigned");m(this,"G");m(this,"J");m(this,"emit",(e,n)=>{this.G.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.G=n,this.ctx=o,this.start=r,this.end=s,this.J=i}findContext(e,n=0){var r;if(n<0)return;let o=0;for(let s of(r=this.ctx)!=null?r:[])if(s instanceof e){if(o===n)return s;++o}}requireContext(e,n=0){let o=this.findContext(e,n);if(o!==void 0)return o;throw new Error(`${e} was not found in the context stack at occurrence ${n}.`)}validateProps(e){if(this.J==="off")return;let n=this.props;for(let o in e){let r=e[o];if(!r)continue;let s=r;try{s(n[o],o,this)}catch(i){let a=Ur(this.G,o,i);if(this.J==="warn"){$e.warning(a.message,a);continue}throw a}}}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)J(e),e=e.nextSibling;for(let o of this.ctx)Ne(o)}};var Ve=t=>{let e=t,n=e[je];if(n)return n;let o={unbinders:[],data:{}};return e[je]=o,o};var K=(t,e)=>{Ve(t).unbinders.push(e)};var wt={},Rt={},no=1,oo=t=>{let e=(no++).toString();return wt[e]=t,Rt[e]=0,e},pn=t=>{Rt[t]+=1},mn=t=>{--Rt[t]===0&&(delete wt[t],delete Rt[t])},ro=t=>wt[t],dn=()=>no!==1&&Object.keys(wt).length>0,ot="r-switch",Hr=t=>{let e=t.filter(o=>xe(o)).map(o=>[...o.querySelectorAll("[r-switch]")].map(r=>r.getAttribute(ot))),n=new Set;return e.forEach(o=>{o.forEach(r=>r&&n.add(r))}),[...n]},qe=(t,e)=>{if(!dn())return;let n=Hr(e);n.length!==0&&(n.forEach(pn),K(t,()=>{n.forEach(mn)}))};var vt=()=>{},hn=(t,e,n,o)=>{let r=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,o),r.push(i)}Oe(e,r)},yn=Symbol("r-if"),so=Symbol("r-else"),io=t=>t[so]===1,St=class{constructor(e){m(this,"o");m(this,"k");m(this,"ge");m(this,"Q");m(this,"X");m(this,"x");m(this,"E");this.o=e,this.k=e.r.p.if,this.ge=Nt(e.r.p.if),this.Q=e.r.p.else,this.X=e.r.p.elseif,this.x=e.r.p.for,this.E=e.r.p.pre}rt(e,n){let o=e.parentElement;for(;o!==null&&o!==document.documentElement;){if(o.hasAttribute(n))return!0;o=o.parentElement}return!1}N(e){let n=e.hasAttribute(this.k);return n&&this.y(e),this.o.M.j(e,o=>{o.hasAttribute(this.k)&&this.y(o)}),n}Y(e){return e[yn]?!0:(e[yn]=!0,At(e,this.ge).forEach(n=>n[yn]=!0),!1)}y(e){if(e.hasAttribute(this.E)||this.Y(e)||this.rt(e,this.x))return;let n=e.getAttribute(this.k);if(!n){U(0,this.k,e);return}e.removeAttribute(this.k),this.O(e,n)}U(e,n,o){let r=ze(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${o!=null?o:""}`);s.insertBefore(i,e),qe(i,r),r.forEach(c=>{J(c)}),e.remove(),n!=="if"&&(e[so]=1);let a=document.createComment(`__end__ :${n}${o!=null?o:""}`);return s.insertBefore(a,i.nextSibling),{nodes:r,parent:s,commentBegin:i,commentEnd:a}}be(e,n){if(!e)return[];let o=e.nextElementSibling;if(e.hasAttribute(this.Q)){e.removeAttribute(this.Q);let{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"else");return[{mount:()=>{hn(r,this.o,s,a)},unmount:()=>{Ce(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let r=e.getAttribute(this.X);if(!r)return[];e.removeAttribute(this.X);let{nodes:s,parent:i,commentBegin:a,commentEnd:c}=this.U(e,"elseif",` => ${r} `),u=this.o.m.V(r),f=u.value,l=this.be(o,n),p=vt;return K(a,()=>{u.stop(),p(),p=vt}),p=u.subscribe(n),[{mount:()=>{hn(s,this.o,i,c)},unmount:()=>{Ce(a,c)},isTrue:()=>!!f()[0],isMounted:!1},...l]}}O(e,n){let o=e.nextElementSibling,{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"if",` => ${n} `),c=this.o.m.V(n),u=c.value,f=!1,l=this.o.m,p=l.L(),h=()=>{l.R(p,()=>{if(u()[0])f||(hn(r,this.o,s,a),f=!0),y.forEach(b=>{b.unmount(),b.isMounted=!1});else{Ce(i,a),f=!1;let b=!1;for(let E of y)!b&&E.isTrue()?(E.isMounted||(E.mount(),E.isMounted=!0),b=!0):(E.unmount(),E.isMounted=!1)}})},y=this.be(o,h),d=vt;K(i,()=>{c.stop(),d(),d=vt}),h(),d=c.subscribe(h)}};var ze=t=>{let e=pe(t)?t.content.childNodes:[t],n=[];for(let o=0;o<e.length;++o){let r=e[o];if(r.nodeType===1){let s=r==null?void 0:r.tagName;if(s==="SCRIPT"||s==="STYLE")continue}n.push(r)}return n},Oe=(t,e)=>{for(let n=0;n<e.length;++n){let o=e[n];o.nodeType===Node.ELEMENT_NODE&&(io(o)||t._(o))}},At=(t,e)=>{var o;let n=t.querySelectorAll(e);return(o=t.matches)!=null&&o.call(t,e)?[t,...n]:n},pe=t=>t instanceof HTMLTemplateElement,xe=t=>t.nodeType===Node.ELEMENT_NODE,rt=t=>t.nodeType===Node.ELEMENT_NODE,ao=t=>t instanceof HTMLSlotElement,Ee=t=>pe(t)?t.content.childNodes:t.childNodes,Ce=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let o=n.nextSibling;J(n),n=o}},co=function(){return this()},Br=function(t){return this(t)},jr=()=>{throw new Error("value is readonly.")},_r={get:co,set:Br,enumerable:!0,configurable:!1},$r={get:co,set:jr,enumerable:!0,configurable:!1},Me=(t,e)=>{Object.defineProperty(t,"value",e?$r:_r)},uo=(t,e)=>{if(!t)return!1;if(t.startsWith("["))return t.substring(1,t.length-1);let n=e.length;return t.startsWith(e)?t.substring(n,t.length-n):!1},Nt=t=>`[${CSS.escape(t)}]`,Ot=(t,e)=>(t.startsWith("@")&&(t=e.p.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.p.dynamic)),t),gn=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},Fr=/-(\w)/g,_=gn(t=>t&&t.replace(Fr,(e,n)=>n?n.toUpperCase():"")),qr=/\B([A-Z])/g,Ke=gn(t=>t&&t.replace(qr,"-$1").toLowerCase()),st=gn(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var Mt={mount:()=>{}};var We=t=>{let e=t.trim();return e?e.split(/\s+/):[]};var kt=t=>{var n,o;let e=(n=Tt(t))==null?void 0:n.onMounted;e==null||e.forEach(r=>{r()}),(o=t.mounted)==null||o.call(t)};var bn=Symbol("scope"),Tn=t=>{try{Zn();let e=t();fn(e);let n={context:e,unmount:()=>Ne(e),[bn]:1};return n[bn]=1,n}finally{eo()}},fo=t=>L(t)?bn in t:!1;var xn={collectRefObj:!0,mount:({parseResult:t})=>({update:({values:e})=>{let n=t.context,o=e[0];if(L(o))for(let r of Object.entries(o)){let s=r[0],i=r[1],a=n[s];a!==i&&(x(a)?a(i):n[s]=i)}}})};var ne=(t,e)=>{var n;(n=Ie(e))==null||n.onUnmounted.push(t)};var re=(t,e,n,o=!0)=>{if(!x(t))throw j(3,"observe");n&&e(t());let s=t(void 0,void 0,0,e);return o&&ne(s,!0),s};var it=(t,e)=>{if(t===e)return()=>{};let n=re(t,r=>e(r)),o=re(e,r=>t(r));return e(t()),()=>{n(),o()}};var at=t=>!!t&&t[Ct]===1;var Ge=t=>(t==null?void 0:t[xt])===1;var me=[],lo=t=>{var e;me.length!==0&&((e=me[me.length-1])==null||e.add(t))},Je=t=>{if(!t)return()=>{};let e={stop:()=>{}};return zr(t,e),ne(()=>e.stop(),!0),e.stop},zr=(t,e)=>{if(!t)return;let n=[],o=!1,r=()=>{for(let s of n)s();n=[],o=!0};e.stop=r;try{let s=new Set;if(me.push(s),t(i=>n.push(i)),o)return;for(let i of[...s]){let a=re(i,()=>{r(),Je(t)});n.push(a)}}finally{me.pop()}},Cn=t=>{let e=me.length,n=e>0&&me[e-1];try{return n&&me.push(null),t()}finally{n&&me.pop()}},En=t=>{try{let e=new Set;return me.push(e),{value:t(),refs:[...e]}}finally{me.pop()}};var Z=(t,e,n)=>{if(!x(t))return;let o=t;if(o(void 0,e,1),!n)return;let r=o();if(r){if(w(r)||ue(r))for(let s of r)Z(s,e,!0);else if(Ae(r))for(let s of r)Z(s[0],e,!0),Z(s[1],e,!0);if(L(r))for(let s in r)Z(r[s],e,!0)}};function Kr(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var Qe=(t,e,n)=>{n.forEach(function(o){let r=t[o];Kr(e,o,function(...i){let a=r.apply(this,i),c=this[Y];for(let u of c)Z(u);return a})})},Lt=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var po=Array.prototype,Rn=Object.create(po),Wr=["push","pop","shift","unshift","splice","sort","reverse"];Qe(po,Rn,Wr);var mo=Map.prototype,It=Object.create(mo),Gr=["set","clear","delete"];Lt(It,"Map");Qe(mo,It,Gr);var ho=Set.prototype,Vt=Object.create(ho),Jr=["add","clear","delete"];Lt(Vt,"Set");Qe(ho,Vt,Jr);var ye={},ae=t=>{if(x(t)||at(t))return t;let e={auto:!0,_value:t},n=c=>L(c)?Y in c?!0:w(c)?(Object.setPrototypeOf(c,Rn),!0):ue(c)?(Object.setPrototypeOf(c,Vt),!0):Ae(c)?(Object.setPrototypeOf(c,It),!0):!1:!1,o=n(t),r=new Set,s=(c,u)=>{if(ye.stack&&ye.stack.length){ye.stack[ye.stack.length-1].add(a);return}r.size!==0&&Cn(()=>{for(let f of[...r.keys()])r.has(f)&&f(c,u)})},i=c=>{let u=c[Y];u||(c[Y]=u=new Set),u.add(a)},a=(...c)=>{if(!(2 in c)){let f=c[0],l=c[1];return 0 in c?e._value===f||x(f)&&(f=f(),e._value===f)?f:(n(f)&&i(f),e._value=f,e.auto&&s(f,l),e._value):(lo(a),e._value)}switch(c[2]){case 0:{let f=c[3];if(!f)return()=>{};let l=p=>{r.delete(p)};return r.add(f),()=>{l(f)}}case 1:{let f=c[1],l=e._value;s(l,f);break}case 2:return r.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[Y]=1,Me(a,!1),o&&i(t),a};var Re=t=>{if(at(t))return t;let e;if(x(t)?(e=t,t=e()):e=ae(t),t instanceof Node||t instanceof Date||t instanceof RegExp||t instanceof Promise||t instanceof Error)return e;if(e[xt]=1,w(t)){let n=t.length;for(let o=0;o<n;++o){let r=t[o];Ge(r)||(t[o]=Re(r))}return e}if(!L(t))return e;for(let n of Object.entries(t)){let o=n[1];if(Ge(o))continue;let r=n[0];tt(r)||(t[r]=null,t[r]=Re(o))}return e};var yo=Symbol("modelBridge"),Dt=()=>{},Qr=t=>!!(t!=null&&t[yo]),Xr=t=>{t[yo]=1},Yr=t=>{let e=Re(t());return Xr(e),e},go={collectRefObj:!0,mount:({parseResult:t,option:e})=>{if(typeof e!="string"||!e)return Dt;let n=_(e),o,r,s=Dt,i=()=>{s(),s=Dt,o=void 0,r=void 0},a=()=>{s(),s=Dt},c=(f,l)=>{o!==f&&(a(),s=it(f,l),o=f)},u=()=>{var h;let f=(h=t.refs[0])!=null?h:t.value()[0],l=t.context,p=l[n];if(!x(f)){if(r&&p===r){r(f);return}if(i(),x(p)){p(f);return}l[n]=f;return}if(Qr(f)){if(p===f)return;x(p)?c(f,p):l[n]=f;return}r||(r=Yr(f)),l[n]=r,c(f,r)};return{update:()=>{u()},unmount:()=>{s()}}}};var Pt=class{constructor(e){m(this,"o");m(this,"xe");m(this,"Te","");m(this,"Ee",-1);this.o=e,this.xe=e.r.p.inherit}N(e){this.ot(e)}st(e){if(this.Ee!==e.size){let n=[...e.keys()];this.Te=[...n,...n.map(Ke)].join(","),this.Ee=e.size}return this.Te}it(e){var n;for(let o=0;o<e.length;++o){let r=(n=e[o])==null?void 0:n.components;if(r)for(let s in r)return!0}return!1}at(e){if(!pe(e))return!1;let n=e.getAttributeNames();return e.hasAttribute("name")?!0:n.some(o=>o.startsWith("#"))}ct(e){return pe(e)&&e.getAttributeNames().length===0}ot(e){let n=this.o,o=n.m,r=n.r.Z,s=n.r.$;if(r.size===0&&!this.it(o.l))return;let i=o.ee(),a=this.Re();if(F(a))return;let c=this.pt(e,a);for(let u of c){if(u.hasAttribute(n.E))continue;let f=u.parentNode;if(!f)continue;let l=u.nextSibling,p=_(u.tagName).toUpperCase(),h=i[p],y=h!=null?h:s.get(p);if(!y)continue;let d=y.template;if(!d)continue;let C=u.parentElement;if(!C)continue;let b=new Comment(" begin component: "+u.tagName),E=new Comment(" end component: "+u.tagName);C.insertBefore(b,u),u.remove();let V=n.r.p.context,W=n.r.p.contextAlias,H=n.r.p.bind,B=(g,S)=>{let v={},G=g.hasAttribute(V);return o.R(S,()=>{o.w(v),G?n.y(xn,g,V):g.hasAttribute(W)&&n.y(xn,g,W);let O=y.props;if(!O||O.length===0)return;O=O.map(_);let R=new Map(O.map(k=>[k.toLowerCase(),k]));for(let k of[...O,...O.map(Ke)]){let te=g.getAttribute(k);te!==null&&(v[_(k)]=te,g.removeAttribute(k))}let A=n.q.Ce(g,!1);for(let[k,te]of A.entries()){let[se,fe]=te.te;if(!fe)continue;let P=R.get(_(fe).toLowerCase());P&&(se!=="."&&se!==":"&&se!==H||n.y(go,g,k,!0,P,te.ne))}}),v},ee=[...o.L()],oe=()=>{var G;let g=B(u,ee),S=new nt(g,u,ee,b,E,n.r.propValidationMode),v=Tn(()=>{var O;return(O=y.context(S))!=null?O:{}}).context;if(S.autoProps){for(let[O,R]of Object.entries(g))if(O in v){let A=v[O];if(A===R)continue;if(x(A)){x(R)?S.entangle?K(b,it(R,A)):A(R()):A(R);continue}}else v[O]=R;(G=S.onAutoPropsAssigned)==null||G.call(S)}return{componentCtx:v,head:S}},{componentCtx:M,head:T}=oe(),N=[...Ee(d)],Q=N.length,He=u.childNodes.length===0,Be=g=>{var R;let S=g.parentElement,v=g.name;if(F(v)&&(v=g.getAttributeNames().filter(A=>A.startsWith("#"))[0],F(v)?v="default":v=v.substring(1)),He){if(v==="default"){let A=n.r.p.text,k=u.getAttribute(A);if(!F(k)){let te=document.createElement("span");te.setAttribute(A,k),S.insertBefore(te,g),u.removeAttribute(A);return}}for(let A of[...g.childNodes])S.insertBefore(A,g);return}let G=u.querySelector(`template[name='${v}'], template[\\#${v}]`);!G&&v==="default"&&(G=(R=[...u.querySelectorAll("template:not([name])")].find(k=>this.ct(k)))!=null?R:null);let O=A=>{T.enableSwitch&&o.R(ee,()=>{o.w(M);let k=B(g,o.L());o.R(ee,()=>{o.w(k);let te=o.L(),se=oo(te);for(let fe of A)xe(fe)&&(fe.setAttribute(ot,se),pn(se),K(fe,()=>{mn(se)}))})})};if(G){let A=[...Ee(G)];for(let k of A)S.insertBefore(k,g);O(A)}else{if(v!=="default"){for(let k of[...Ee(g)])S.insertBefore(k,g);return}let A=[...Ee(u)].filter(k=>!this.at(k));for(let k of A)S.insertBefore(k,g);O(A)}},on=g=>{if(!xe(g))return;let S=g.querySelectorAll("slot");if(ao(g)){Be(g),g.remove();return}for(let v of S)Be(v),v.remove()};(()=>{for(let g=0;g<Q;++g)N[g]=N[g].cloneNode(!0),f.insertBefore(N[g],l),on(N[g])})(),C.insertBefore(E,l);let pt=()=>{if(!y.inheritAttrs)return;let g=N.filter(v=>v.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(v=>v.hasAttribute(this.xe)));let S=g[0];if(S)for(let v of u.getAttributeNames()){if(v===V||v===W)continue;let G=u.getAttribute(v);if(v==="class"){let O=We(G);O.length>0&&S.classList.add(...O)}else if(v==="style"){let O=S.style,R=u.style;for(let A of R)O.setProperty(A,R.getPropertyValue(A))}else S.setAttribute(Ot(v,n.r),G)}},I=()=>{for(let g of u.getAttributeNames())!g.startsWith("@")&&!g.startsWith(n.r.p.on)&&u.removeAttribute(g)},X=()=>{pt(),I(),o.w(M),n.we(u,!1),M.$emit=T.emit,Oe(n,N),K(u,()=>{Ne(M)}),K(b,()=>{ge(u)}),kt(M)};o.R(ee,X)}}Re(){let e=this.o,n=e.m,o=e.r.Z,r=n.ut(),s=this.st(o);return[...s?[s]:[],...r,...r.map(Ke)].join(",")}pt(e,n){var s;let o=[];if(F(n))return o;if((s=e.matches)!=null&&s.call(e,n))return[e];let r=this.F(e).reverse();for(;r.length>0;){let i=r.pop();if(i.matches(n)){o.push(i);continue}r.push(...this.F(i).reverse())}return o}j(e,n){let o=this.Re(),r=this.F(e).reverse();for(;r.length>0;){let s=r.pop();n(s),!(!F(o)&&s.matches(o))&&r.push(...this.F(s).reverse())}}F(e){let n=e==null?void 0:e.children;if((n==null?void 0:n.length)!=null){let r=[];for(let s=0;s<n.length;++s){let i=n[s];xe(i)&&r.push(i)}return r}let o=e==null?void 0:e.childNodes;if((o==null?void 0:o.length)!=null){let r=[];for(let s=0;s<o.length;++s){let i=o[s];xe(i)&&r.push(i)}return r}return[]}};var wn=class{constructor(e,n){m(this,"te");m(this,"ne");m(this,"ve",[]);this.te=e,this.ne=n}},Ut=class{constructor(e){m(this,"o");m(this,"Se");m(this,"Ae");m(this,"re");var o;this.o=e,this.Se=e.r.lt(),this.re=new Map;let n=new Map;for(let r of this.Se){let s=(o=r[0])!=null?o:"",i=n.get(s);i?i.push(r):n.set(s,[r])}this.Ae=n}Ne(e){let n=this.re.get(e);if(n)return n;let o=e,r=o.startsWith(".");r&&(o=":"+o.slice(1));let s=o.indexOf("."),a=(s<0?o:o.substring(0,s)).split(/[:@]/);F(a[0])&&(a[0]=r?".":o[0]);let c=s>=0?o.slice(s+1).split("."):[],u=!1,f=!1;for(let p=0;p<c.length;++p){let h=c[p];if(!u&&h==="camel"?u=!0:!f&&h==="prop"&&(f=!0),u&&f)break}u&&(a[a.length-1]=_(a[a.length-1])),f&&(a[0]=".");let l={terms:a,flags:c};return this.re.set(e,l),l}Ce(e,n){let o=new Map;if(!rt(e))return o;let r=this.Ae,s=(a,c)=>{var f;let u=r.get((f=c[0])!=null?f:"");if(u)for(let l=0;l<u.length;++l){if(!c.startsWith(u[l]))continue;let p=o.get(c);if(!p){let h=this.Ne(c);p=new wn(h.terms,h.flags),o.set(c,p)}p.ve.push(a);return}},i=a=>{var u;let c=a.attributes;if(!(!c||c.length===0))for(let f=0;f<c.length;++f){let l=(u=c.item(f))==null?void 0:u.name;l&&s(a,l)}};return i(e),!n||!e.firstElementChild||this.o.M.j(e,i),o}};var bo=()=>{},Zr=(t,e)=>{for(let n of t){let o=n.cloneNode(!0);e.appendChild(o)}},Ht=class{constructor(e){m(this,"o");m(this,"I");this.o=e,this.I=e.r.p.is}N(e){let n=e.hasAttribute(this.I);return(n||e.hasAttribute("is"))&&this.y(e),this.o.M.j(e,o=>{(o.hasAttribute(this.I)||o.hasAttribute("is"))&&this.y(o)}),n}y(e){let n=e.getAttribute(this.I);if(!n){if(n=e.getAttribute("is"),!n)return;if(!n.startsWith("regor:")){if(!n.startsWith("r-"))return;let o=n.slice(2).trim().toLowerCase();if(!o)return;let r=e.parentNode;if(!r)return;let s=document.createElement(o);for(let i of e.getAttributeNames())i!=="is"&&s.setAttribute(i,e.getAttribute(i));for(;e.firstChild;)s.appendChild(e.firstChild);r.insertBefore(s,e),e.remove(),this.o._(s);return}n=`'${n.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.I),this.O(e,n)}U(e,n){let o=ze(e),r=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);r.insertBefore(s,e),qe(s,o),o.forEach(a=>{J(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${n!=null?n:""}`);return r.insertBefore(i,s.nextSibling),{nodes:o,parent:r,commentBegin:s,commentEnd:i}}O(e,n){let{nodes:o,parent:r,commentBegin:s,commentEnd:i}=this.U(e,` => ${n} `),a=this.o.m.V(n),c=a.value,u=this.o.m,f=u.L(),l={name:""},p=pe(e)?o:[...o[0].childNodes],h=()=>{u.R(f,()=>{var E;let C=c()[0];if(L(C)&&(C.name?C=C.name:C=(E=Object.entries(u.ee()).filter(V=>V[1]===C)[0])==null?void 0:E[0]),!z(C)||F(C)){Ce(s,i);return}if(l.name===C)return;Ce(s,i);let b=document.createElement(C);for(let V of e.getAttributeNames())V!==this.I&&b.setAttribute(V,e.getAttribute(V));Zr(p,b),r.insertBefore(b,i),this.o._(b),l.name=C})},y=bo;K(s,()=>{a.stop(),y(),y=bo}),h(),y=a.subscribe(h)}};var $=t=>{let e=t;return e!=null&&e[Y]===1?e():e};var es=(t,e)=>{let[n,o]=e;q(o)?o(t,n):t.innerHTML=n==null?void 0:n.toString()},Bt={mount:()=>({update:({el:t,values:e})=>{es(t,e)}})};var jt=class t{constructor(e){m(this,"oe");this.oe=e}static ft(e,n){var h,y;let o=e.m,r=e.r,s=r.p,i=new Set([s.for,s.if,s.else,s.elseif,s.pre]),a=r.B,c=o.ee();if(Object.keys(c).length>0||r.$.size>0)return;let u=e.q,f=[],l=0,p=[];for(let d=n.length-1;d>=0;--d)p.push(n[d]);for(;p.length>0;){let d=p.pop();if(d.nodeType===Node.ELEMENT_NODE){let b=d;if(b.tagName==="TEMPLATE"||b.tagName.includes("-"))return;let E=_(b.tagName).toUpperCase();if(r.$.has(E)||c[E])return;let V=b.attributes;for(let W=0;W<V.length;++W){let H=(h=V.item(W))==null?void 0:h.name;if(!H)continue;if(i.has(H))return;let{terms:B,flags:ee}=u.Ne(H),[oe,M]=B,T=(y=a[H])!=null?y:a[oe];if(T){if(T===Bt)return;f.push({nodeIndex:l,attrName:H,directive:T,option:M,flags:ee})}}++l}let C=d.childNodes;for(let b=C.length-1;b>=0;--b)p.push(C[b])}if(f.length!==0)return new t(f)}y(e,n){let o=[],r=[];for(let s=n.length-1;s>=0;--s)r.push(n[s]);for(;r.length>0;){let s=r.pop();s.nodeType===Node.ELEMENT_NODE&&o.push(s);let i=s.childNodes;for(let a=i.length-1;a>=0;--a)r.push(i[a])}for(let s=0;s<this.oe.length;++s){let i=this.oe[s],a=o[i.nodeIndex];a&&e.y(i.directive,a,i.attrName,!1,i.option,i.flags)}}};var ts=(t,e)=>{let n=e.parentNode;if(n)for(let o=0;o<t.items.length;++o)n.insertBefore(t.items[o],e)},ns=t=>{var a;let e=t.length,n=t.slice(),o=[],r,s,i;for(let c=0;c<e;++c){let u=t[c];if(u===0)continue;let f=o[o.length-1];if(f===void 0||t[f]<u){n[c]=f!=null?f:-1,o.push(c);continue}for(r=0,s=o.length-1;r<s;)i=r+s>>1,t[o[i]]<u?r=i+1:s=i;u<t[o[r]]&&(r>0&&(n[c]=o[r-1]),o[r]=c)}for(r=o.length,s=(a=o[r-1])!=null?a:-1;r-- >0;)o[r]=s,s=n[s];return o},_t=class{static mt(e){let{oldItems:n,newValues:o,getKey:r,isSameValue:s,mountNewValue:i,removeMountItem:a,endAnchor:c}=e,u=n.length,f=o.length,l=new Array(f),p=new Set;for(let T=0;T<f;++T){let N=r(o[T]);if(N===void 0||p.has(N))return;p.add(N),l[T]=N}let h=new Array(f),y=0,d=u-1,C=f-1;for(;y<=d&&y<=C;){let T=n[y];if(r(T.value)!==l[y]||!s(T.value,o[y]))break;T.value=o[y],h[y]=T,++y}for(;y<=d&&y<=C;){let T=n[d];if(r(T.value)!==l[C]||!s(T.value,o[C]))break;T.value=o[C],h[C]=T,--d,--C}if(y>d){for(let T=C;T>=y;--T){let N=T+1<f?h[T+1].items[0]:c;h[T]=i(T,o[T],N)}return h}if(y>C){for(let T=y;T<=d;++T)a(n[T]);return h}let b=y,E=y,V=C-E+1,W=new Array(V).fill(0),H=new Map;for(let T=E;T<=C;++T)H.set(l[T],T);let B=!1,ee=0;for(let T=b;T<=d;++T){let N=n[T],Q=H.get(r(N.value));if(Q===void 0){a(N);continue}if(!s(N.value,o[Q])){a(N);continue}N.value=o[Q],h[Q]=N,W[Q-E]=T+1,Q>=ee?ee=Q:B=!0}let oe=B?ns(W):[],M=oe.length-1;for(let T=V-1;T>=0;--T){let N=E+T,Q=N+1<f?h[N+1].items[0]:c;if(W[T]===0){h[N]=i(N,o[N],Q);continue}let He=h[N];B&&(M>=0&&oe[M]===T?--M:He&&ts(He,Q))}return h}};var ct=class{constructor(e){m(this,"T",[]);m(this,"P",new Map);m(this,"se");this.se=e}get v(){return this.T.length}ie(e){let n=this.se(e.value);n!==void 0&&this.P.set(n,e)}ae(e){var o;let n=this.se((o=this.T[e])==null?void 0:o.value);n!==void 0&&this.P.delete(n)}static dt(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.v,this.T.push(e),this.ie(e)}yt(e,n){let o=this.v;for(let r=e;r<o;++r)this.T[r].order=r+1;n.order=e,this.T.splice(e,0,n),this.ie(n)}D(e){return this.T[e]}ce(e,n){this.ae(e),this.T[e]=n,this.ie(n),n.order=e}ke(e){this.ae(e),this.T.splice(e,1);let n=this.v;for(let o=e;o<n;++o)this.T[o].order=o}Me(e){let n=this.v;for(let o=e;o<n;++o)this.ae(o);this.T.splice(e)}en(e){return this.P.has(e)}ht(e){var o;let n=this.P.get(e);return(o=n==null?void 0:n.order)!=null?o:-1}};var vn=Symbol("r-for"),os=t=>-1,To=()=>{},Ft=class Ft{constructor(e){m(this,"o");m(this,"x");m(this,"Oe");m(this,"E");this.o=e,this.x=e.r.p.for,this.Oe=Nt(this.x),this.E=e.r.p.pre}N(e){let n=e.hasAttribute(this.x);return n&&this.Ve(e),this.o.M.j(e,o=>{o.hasAttribute(this.x)&&this.Ve(o)}),n}Y(e){return e[vn]?!0:(e[vn]=!0,At(e,this.Oe).forEach(n=>n[vn]=!0),!1)}Ve(e){if(e.hasAttribute(this.E)||this.Y(e))return;let n=e.getAttribute(this.x);if(!n){U(0,this.x,e);return}e.removeAttribute(this.x),this.gt(e,n)}Le(e){return le(e)?[]:(q(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(o=>({*[Symbol.iterator](){for(let r=1;r<=o;r++)yield r}}))(e):Object.entries(e))}gt(e,n){var pt;let o=this.bt(n);if(!(o!=null&&o.list)){U(1,this.x,n,e);return}let r=this.o.r.p.key,s=this.o.r.p.keyBind,i=(pt=e.getAttribute(r))!=null?pt:e.getAttribute(s);e.removeAttribute(r),e.removeAttribute(s);let a=ze(e),c=jt.ft(this.o,a),u=e.parentNode;if(!u)return;let f=`${this.x} => ${n}`,l=new Comment(`__begin__ ${f}`);u.insertBefore(l,e),qe(l,a),a.forEach(I=>{J(I)}),e.remove();let p=new Comment(`__end__ ${f}`);u.insertBefore(p,l.nextSibling);let h=this.o,y=h.m,d=y.L(),b=d.length===1?[void 0,d[0]]:void 0,E=this.xt(i),V=(I,X)=>E(I)===E(X),W=(I,X)=>I===X,H=(I,X,g)=>{let S=o.createContext(X,I),v=ct.dt(S.index,X),G=()=>{var k,te;let O=(te=(k=p.parentNode)!=null?k:l.parentNode)!=null?te:u,R=g.previousSibling,A=[];for(let se=0;se<a.length;++se){let fe=a[se].cloneNode(!0);O.insertBefore(fe,g),A.push(fe)}for(c?c.y(h,A):Oe(h,A),R=R.nextSibling;R!==g;)v.items.push(R),R=R.nextSibling};return b?(b[0]=S.ctx,y.R(b,G)):y.R(d,()=>{y.w(S.ctx),G()}),v},B=(I,X)=>{let g=D.D(I).items,S=g[g.length-1].nextSibling;for(let v of g)J(v);D.ce(I,H(I,X,S))},ee=(I,X)=>{D.w(H(I,X,p))},oe=I=>{for(let X of D.D(I).items)J(X)},M=I=>{let X=D.v;for(let g=I;g<X;++g)D.D(g).index(g)},T=I=>{let X=l.parentNode,g=p.parentNode;if(!X||!g)return;let S=D.v;q(I)&&(I=I());let v=$(I[0]);if(w(v)&&v.length===0){Ce(l,p),D.Me(0);return}let G=[];for(let P of this.Le(I[0]))G.push(P);let O=_t.mt({oldItems:D.T,newValues:G,getKey:E,isSameValue:W,mountNewValue:(P,ie,Le)=>H(P,ie,Le),removeMountItem:P=>{for(let ie=0;ie<P.items.length;++ie)J(P.items[ie])},endAnchor:p});if(O){D.T=O,D.P.clear();for(let P=0;P<O.length;++P){let ie=O[P];ie.order=P,ie.index(P);let Le=E(ie.value);Le!==void 0&&D.P.set(Le,ie)}return}let R=0,A=Number.MAX_SAFE_INTEGER,k=S,te=this.o.r.forGrowThreshold,se=()=>D.v<k+te;for(let P of G){let ie=()=>{if(R<S){let Le=D.D(R++);if(V(Le.value,P)){if(W(Le.value,P))return;B(R-1,P);return}let mt=D.ht(E(P));if(mt>=R&&mt-R<10){if(--R,A=Math.min(A,R),oe(R),D.ke(R),--S,mt>R+1)for(let rn=R;rn<mt-1&&rn<S&&!V(D.D(R).value,P);)++rn,oe(R),D.ke(R),--S;ie();return}se()?(D.yt(R-1,H(R,P,D.D(R-1).items[0])),A=Math.min(A,R-1),++S):B(R-1,P)}else ee(R++,P)};ie()}let fe=R;for(S=D.v;R<S;)oe(R++);D.Me(fe),M(A)},N=()=>{Q.stop(),Be(),Be=To},Q=y.V(o.list),He=Q.value,Be=To,on=0,D=new ct(E);for(let I of this.Le(He()[0]))D.w(H(on++,I,p));K(l,N),Be=Q.subscribe(T)}bt(e){var c,u;let n=Ft.Tt.exec(e);if(!n)return;let o=(n[1]+((c=n[2])!=null?c:"")).split(",").map(f=>f.trim()),r=o.length>1?o.length-1:-1,s=r!==-1&&(o[r]==="index"||(u=o[r])!=null&&u.startsWith("#"))?o[r]:"";s&&o.splice(r,1);let i=n[3];if(!i||o.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(f,l)=>{let p={},h=$(f);if(!a&&o.length===1)p[o[0]]=f;else if(w(h)){let d=0;for(let C of o)p[C]=h[d++]}else for(let d of o)p[d]=h[d];let y={ctx:p,index:os};return s&&(y.index=p[s.startsWith("#")?s.substring(1):s]=ae(l)),y}}}xt(e){if(!e)return o=>o;let n=e.trim();if(!n)return o=>o;if(n.includes(".")){let o=this.Et(n),r=o.length>1?o.slice(1):void 0;return s=>{let i=$(s),a=this.Ie(i,o);return a!==void 0||!r?a:this.Ie(i,r)}}return o=>{var r;return $((r=$(o))==null?void 0:r[n])}}Et(e){return e.split(".").filter(n=>n.length>0)}Ie(e,n){var r;let o=e;for(let s of n)o=(r=$(o))==null?void 0:r[s];return $(o)}};m(Ft,"Tt",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+(.*)\s*$/);var $t=Ft;var qt=class{constructor(e){m(this,"pe",0);m(this,"ue",new Map);m(this,"m");m(this,"Pe");m(this,"De");m(this,"Ue");m(this,"M");m(this,"q");m(this,"r");m(this,"E");m(this,"Be");this.m=e,this.r=e.r,this.De=new $t(this),this.Pe=new St(this),this.Ue=new Ht(this),this.M=new Pt(this),this.q=new Ut(this),this.E=this.r.p.pre,this.Be=this.r.p.dynamic}Rt(e){let n=pe(e)?[e]:e.querySelectorAll("template");for(let o of n){if(o.hasAttribute(this.E))continue;let r=o.parentNode;if(!r)continue;let s=o.nextSibling;if(o.remove(),!o.content)continue;let i=[...o.content.childNodes];for(let a of i)r.insertBefore(a,s);Oe(this,i)}}_(e){++this.pe;try{if(e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.E)||this.Pe.N(e)||this.De.N(e)||this.Ue.N(e))return;this.M.N(e),this.Rt(e),this.we(e,!0)}finally{--this.pe,this.pe===0&&this.Ct()}}wt(e,n){let o=document;if(!o){let r=e.parentNode;for(;r!=null&&r.parentNode;)r=r.parentNode;if(!r)return null;o=r}return o.querySelector(n)}He(e,n){let o=this.wt(e,n);if(!o)return!1;let r=e.parentElement;if(!r)return!1;let s=new Comment(`teleported => '${n}'`);return r.insertBefore(s,e),e.teleportedFrom=s,s.teleportedTo=e,K(s,()=>{J(e)}),o.appendChild(e),!0}vt(e,n){this.ue.set(e,n)}Ct(){let e=this.ue;if(e.size!==0){this.ue=new Map;for(let[n,o]of e.entries())this.He(n,o)}}we(e,n){var s;let o=this.q.Ce(e,n),r=this.r.B;for(let[i,a]of o.entries()){let[c,u]=a.te,f=(s=r[i])!=null?s:r[c];if(!f){console.error("directive not found:",c);continue}let l=a.ve;for(let p=0;p<l.length;++p){let h=l[p];this.y(f,h,i,!1,u,a.ne)}}}y(e,n,o,r,s,i){if(n.hasAttribute(this.E))return;let a=n.getAttribute(o);n.removeAttribute(o);let c=u=>{let f=u;for(;f;){let l=f.getAttribute(ot);if(l)return l;f=f.parentElement}return null};if(dn()){let u=c(n);if(u){this.m.R(ro(u),()=>{this.O(e,n,a,s,i)});return}}this.O(e,n,a,s,i)}St(e,n,o){return e!==Mt?!1:(F(o)||this.He(n,o)||this.vt(n,o),!0)}O(e,n,o,r,s){if(n.nodeType!==Node.ELEMENT_NODE||o==null||this.St(e,n,o))return;let i=this.At(r,e.once),a=this.Nt(e,o),c=this.kt(a,i);K(n,c.stop);let u=this.Mt(n,o,a,i,r,s),f=this.Ot(e,u,c);if(!f)return;let l=this.Vt(u,a,i,r,f);l(),e.once||(c.result=a.subscribe(l),i&&(c.dynamic=i.subscribe(l)))}At(e,n){let o=uo(e,this.Be);if(o)return this.m.V(_(o),void 0,void 0,void 0,n)}Nt(e,n){return this.m.V(n,e.isLazy,e.isLazyKey,e.collectRefObj,e.once)}kt(e,n){let o={stop:()=>{var r,s,i;e.stop(),n==null||n.stop(),(r=o.result)==null||r.call(o),(s=o.dynamic)==null||s.call(o),(i=o.mounted)==null||i.call(o),o.result=void 0,o.dynamic=void 0,o.mounted=void 0}};return o}Mt(e,n,o,r,s,i){return{el:e,expr:n,values:o.value(),previousValues:void 0,option:r?r.value()[0]:s,previousOption:void 0,flags:i,parseResult:o,dynamicOption:r}}Ot(e,n,o){let r=e.mount(n);if(typeof r=="function"){o.mounted=r;return}return r!=null&&r.unmount&&(o.mounted=r.unmount),r==null?void 0:r.update}Vt(e,n,o,r,s){let i,a;return()=>{let c=n.value(),u=o?o.value()[0]:r;e.values=c,e.previousValues=i,e.option=u,e.previousOption=a,i=c,a=u,s(e)}}};var xo="http://www.w3.org/1999/xlink",rs={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function ss(t){return!!t||t===""}var is=(t,e,n,o,r,s)=>{var a;if(o){s&&s.includes("camel")&&(o=_(o)),zt(t,o,e[0],r);return}let i=e.length;for(let c=0;c<i;++c){let u=e[c];if(w(u)){let f=(a=n==null?void 0:n[c])==null?void 0:a[0],l=u[0],p=u[1];zt(t,l,p,f)}else if(L(u))for(let f of Object.entries(u)){let l=f[0],p=f[1],h=n==null?void 0:n[c],y=h&&l in h?l:void 0;zt(t,l,p,y)}else{let f=n==null?void 0:n[c],l=e[c++],p=e[c];zt(t,l,p,f)}}},Sn={mount:()=>({update:({el:t,values:e,previousValues:n,option:o,previousOption:r,flags:s})=>{is(t,e,n,o,r,s)}})},zt=(t,e,n,o)=>{if(o&&o!==e&&t.removeAttribute(o),le(e)){U(3,"r-bind",t);return}if(!z(e)){U(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){le(n)?t.removeAttributeNS(xo,e.slice(6,e.length)):t.setAttributeNS(xo,e,n);return}let r=e in rs;le(n)||r&&!ss(n)?t.removeAttribute(e):t.setAttribute(e,r?"":n)};var as=(t,e,n)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=n==null?void 0:n[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)Co(t,s[c],i==null?void 0:i[c])}else Co(t,s,i)}},An={mount:()=>({update:({el:t,values:e,previousValues:n})=>{as(t,e,n)}})},Co=(t,e,n)=>{let o=t.classList,r=z(e),s=z(n);if(e&&!r){if(n&&!s)for(let i in n)(!(i in e)||!e[i])&&o.remove(i);for(let i in e)e[i]&&o.add(i)}else if(r){if(n!==e){let i=s?We(n):[],a=We(e);i.length>0&&o.remove(...i),a.length>0&&o.add(...a)}}else if(n){let i=s?We(n):[];i.length>0&&o.remove(...i)}};function cs(t,e){if(t.length!==e.length)return!1;let n=!0;for(let o=0;n&&o<t.length;o++)n=we(t[o],e[o]);return n}function we(t,e){if(t===e)return!0;let n=cn(t),o=cn(e);if(n||o)return n&&o?t.getTime()===e.getTime():!1;if(n=tt(t),o=tt(e),n||o)return t===e;if(n=w(t),o=w(e),n||o)return n&&o?cs(t,e):!1;if(n=L(t),o=L(e),n||o){if(!n||!o)return!1;let r=Object.keys(t).length,s=Object.keys(e).length;if(r!==s)return!1;for(let i in t){let a=Object.prototype.hasOwnProperty.call(t,i),c=Object.prototype.hasOwnProperty.call(e,i);if(a&&!c||!we(t[i],e[i]))return!1}return!0}return String(t)===String(e)}function Kt(t,e){return t.findIndex(n=>we(n,e))}var Eo=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var Nn=t=>{if(!x(t))throw j(3,"pause");t(void 0,void 0,3)};var On=t=>{if(!x(t))throw j(3,"resume");t(void 0,void 0,4)};var wo={mount:({el:t,parseResult:e,flags:n})=>({update:({values:o})=>{us(t,o[0])},unmount:fs(t,e,n)})},us=(t,e)=>{let n=No(t);if(n&&vo(t))w(e)?e=Kt(e,ve(t))>-1:ue(e)?e=e.has(ve(t)):e=ys(t,e),t.checked=e;else if(n&&So(t))t.checked=we(e,ve(t));else if(n||Oo(t))Ao(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Mo(t)){let o=t.options,r=o.length,s=t.multiple;for(let i=0;i<r;i++){let a=o[i],c=ve(a);if(s)w(e)?a.selected=Kt(e,c)>-1:a.selected=e.has(c);else if(we(ve(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else U(7,t)},ut=t=>(x(t)&&(t=t()),q(t)&&(t=t()),t?z(t)?{trim:t.includes("trim"),lazy:t.includes("lazy"),number:t.includes("number"),int:t.includes("int")}:{trim:!!t.trim,lazy:!!t.lazy,number:!!t.number,int:!!t.int}:{trim:!1,lazy:!1,number:!1,int:!1}),vo=t=>t.type==="checkbox",So=t=>t.type==="radio",Ao=t=>t.type==="number"||t.type==="range",No=t=>t.tagName==="INPUT",Oo=t=>t.tagName==="TEXTAREA",Mo=t=>t.tagName==="SELECT",fs=(t,e,n)=>{let o=e.value,r=ut(n==null?void 0:n.join(",")),s=ut(o()[1]),i={int:r.int||s.int,lazy:r.lazy||s.lazy,number:r.number||s.number,trim:r.trim||s.trim};if(!e.refs[0])return U(8,t),()=>{};let a=()=>e.refs[0],c=No(t);return c&&vo(t)?ps(t,a):c&&So(t)?gs(t,a):c||Oo(t)?ls(t,i,a,o):Mo(t)?bs(t,a,o):(U(7,t),()=>{})},Ro=/[.,' ·٫]/,ls=(t,e,n,o)=>{let s=e.lazy?"change":"input",i=Ao(t),a=()=>{!e.trim&&!ut(o()[1]).trim||(t.value=t.value.trim())},c=p=>{let h=p.target;h.composing=1},u=p=>{let h=p.target;h.composing&&(h.composing=0,h.dispatchEvent(new Event(s)))},f=()=>{t.removeEventListener(s,l),t.removeEventListener("change",a),t.removeEventListener("compositionstart",c),t.removeEventListener("compositionend",u),t.removeEventListener("change",u)},l=p=>{let h=n();if(!h)return;let y=p.target;if(!y||y.composing)return;let d=y.value,C=ut(o()[1]);if(i||C.number||C.int){if(C.int)d=parseInt(d);else{if(Ro.test(d[d.length-1])&&d.split(Ro).length===2){if(d+="0",d=parseFloat(d),isNaN(d))d="";else if(h()===d)return}d=parseFloat(d)}isNaN(d)&&(d=""),t.value=d}else C.trim&&(d=d.trim());h(d)};return t.addEventListener(s,l),t.addEventListener("change",a),t.addEventListener("compositionstart",c),t.addEventListener("compositionend",u),t.addEventListener("change",u),f},ps=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=ve(t),a=t.checked,c=s();if(w(c)){let u=Kt(c,i),f=u!==-1;a&&!f?c.push(i):!a&&f&&c.splice(u,1)}else ue(c)?a?c.add(i):c.delete(i):s(hs(t,a))};return t.addEventListener(n,r),o},ve=t=>"_value"in t?t._value:t.value,ko="trueValue",ms="falseValue",Lo="true-value",ds="false-value",hs=(t,e)=>{let n=e?ko:ms;if(n in t)return t[n];let o=e?Lo:ds;return t.hasAttribute(o)?t.getAttribute(o):e},ys=(t,e)=>{if(ko in t)return we(e,t.trueValue);let o=Lo;return t.hasAttribute(o)?we(e,t.getAttribute(o)):we(e,!0)},gs=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=ve(t);s(i)};return t.addEventListener(n,r),o},bs=(t,e,n)=>{let o="change",r=()=>{t.removeEventListener(o,s)},s=()=>{let i=e();if(!i)return;let c=ut(n()[1]).number,u=Array.prototype.filter.call(t.options,f=>f.selected).map(f=>c?Eo(ve(f)):ve(f));if(t.multiple){let f=i();try{if(Nn(i),ue(f)){f.clear();for(let l of u)f.add(l)}else w(f)?(f.splice(0),f.push(...u)):i(u)}finally{On(i),Z(i)}}else i(u[0])};return t.addEventListener(o,s),r};var Ts=["stop","prevent","capture","self","once","left","right","middle","passive"],xs=t=>{let e={};if(F(t))return;let n=t.split(",");for(let o of Ts)e[o]=n.includes(o);return e},Cs=(t,e,n,o,r)=>{var u,f;if(o){let l=e.value(),p=$(o.value()[0]);return z(p)?Mn(t,_(p),()=>e.value()[0],(u=r==null?void 0:r.join(","))!=null?u:l[1]):()=>{}}else if(n){let l=e.value();return Mn(t,_(n),()=>e.value()[0],(f=r==null?void 0:r.join(","))!=null?f:l[1])}let s=[],i=()=>{s.forEach(l=>l())},a=e.value(),c=a.length;for(let l=0;l<c;++l){let p=a[l];if(q(p)&&(p=p()),L(p))for(let h of Object.entries(p)){let y=h[0],d=()=>{let b=e.value()[l];return q(b)&&(b=b()),b=b[y],q(b)&&(b=b()),b},C=p[y+"_flags"];s.push(Mn(t,y,d,C))}else U(2,"r-on",t)}return i},kn={isLazy:(t,e)=>e===-1&&t%2===0,isLazyKey:(t,e)=>e===0&&!t.endsWith("_flags"),once:!1,collectRefObj:!0,mount:({el:t,parseResult:e,option:n,dynamicOption:o,flags:r})=>Cs(t,e,n,o,r)},Es=(t,e)=>{if(t.startsWith("keydown")||t.startsWith("keyup")||t.startsWith("keypress")){e!=null||(e="");let n=[...t.split("."),...e.split(",")];t=n[0];let o=n[1],r=n.includes("ctrl"),s=n.includes("shift"),i=n.includes("alt"),a=n.includes("meta"),c=u=>!(r&&!u.ctrlKey||s&&!u.shiftKey||i&&!u.altKey||a&&!u.metaKey);return o?[t,u=>c(u)?u.key.toUpperCase()===o.toUpperCase():!1]:[t,c]}return[t,n=>!0]},Mn=(t,e,n,o)=>{if(F(e))return U(5,"r-on",t),()=>{};let r=xs(o),s=r?{capture:r.capture,passive:r.passive,once:r.once}:void 0,i;[e,i]=Es(e,o);let a=f=>{if(!i(f)||!n&&e==="submit"&&(r!=null&&r.prevent))return;let l=n(f);q(l)&&(l=l(f)),q(l)&&l(f)},c=()=>{t.removeEventListener(e,u,s)},u=f=>{if(!r){a(f);return}try{if(r.left&&f.button!==0||r.middle&&f.button!==1||r.right&&f.button!==2||r.self&&f.target!==t)return;r.stop&&f.stopPropagation(),r.prevent&&f.preventDefault(),a(f)}finally{r.once&&c()}};return t.addEventListener(e,u,s),c};var Rs=(t,e,n,o)=>{if(n){o&&o.includes("camel")&&(n=_(n)),Xe(t,n,e[0]);return}let r=e.length;for(let s=0;s<r;++s){let i=e[s];if(w(i)){let a=i[0],c=i[1];Xe(t,a,c)}else if(L(i))for(let a of Object.entries(i)){let c=a[0],u=a[1];Xe(t,c,u)}else{let a=e[s++],c=e[s];Xe(t,a,c)}}},Io={mount:()=>({update:({el:t,values:e,option:n,flags:o})=>{Rs(t,e,n,o)}})};function ws(t){return!!t||t===""}var Xe=(t,e,n)=>{if(le(e)){U(3,":prop",t);return}if(e==="innerHTML"||e==="textContent"){let s=[...t.childNodes];setTimeout(()=>s.forEach(ge),1),t[e]=n!=null?n:"";return}let o=t.tagName;if(e==="value"&&o!=="PROGRESS"&&!o.includes("-")){t._value=n;let s=o==="OPTION"?t.getAttribute("value"):t.value,i=n!=null?n:"";s!==i&&(t.value=i),n==null&&t.removeAttribute(e);return}let r=!1;if(n===""||n==null){let s=typeof t[e];s==="boolean"?n=ws(n):n==null&&s==="string"?(n="",r=!0):s==="number"&&(n=0,r=!0)}try{t[e]=n}catch(s){r||U(4,e,o,n,s)}r&&t.removeAttribute(e)};var Vo={once:!0,mount:({el:t,parseResult:e,expr:n})=>{let o=e,r=o.value()[0],s=w(r),i=o.refs[0];return s?r.push(t):i?i==null||i(t):o.context[n]=t,()=>{if(s){let a=r.indexOf(t);a!==-1&&r.splice(a,1)}else i==null||i(null)}}};var vs=(t,e)=>{let n=Ve(t).data,o=n._ord;Xn(o)&&(o=n._ord=t.style.display),!!e[0]?t.style.display=o:t.style.display="none"},Do={mount:()=>({update:({el:t,values:e})=>{vs(t,e)}})};var Ss=(t,e,n)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=n==null?void 0:n[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)Po(t,s[c],i==null?void 0:i[c])}else Po(t,s,i)}},Wt={mount:()=>({update:({el:t,values:e,previousValues:n})=>{Ss(t,e,n)}})},Po=(t,e,n)=>{let o=t.style,r=z(e);if(e&&!r){if(n&&!z(n))for(let s in n)e[s]==null&&In(o,s,"");for(let s in e)In(o,s,e[s])}else{let s=o.display;if(r?n!==e&&(o.cssText=e):n&&t.removeAttribute("style"),"_ord"in Ve(t).data)return;o.display=s}},Uo=/\s*!important$/;function In(t,e,n){if(w(n))n.forEach(o=>{In(t,e,o)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let o=As(t,e);Uo.test(n)?t.setProperty(Ke(o),n.replace(Uo,""),"important"):t[o]=n}}var Ho=["Webkit","Moz","ms"],Ln={};function As(t,e){let n=Ln[e];if(n)return n;let o=_(e);if(o!=="filter"&&o in t)return Ln[e]=o;o=st(o);for(let r=0;r<Ho.length;r++){let s=Ho[r]+o;if(s in t)return Ln[e]=s}return e}var ce=t=>Bo($(t)),Bo=(t,e=new WeakMap)=>{if(!t||!L(t))return t;if(w(t))return t.map(ce);if(ue(t)){let o=new Set;for(let r of t.keys())o.add(ce(r));return o}if(Ae(t)){let o=new Map;for(let r of t)o.set(ce(r[0]),ce(r[1]));return o}if(e.has(t))return $(e.get(t));let n=ht({},t);e.set(t,n);for(let o of Object.entries(n))n[o[0]]=Bo($(o[1]),e);return n};var Ns=(t,e)=>{var o;let n=e[0];t.textContent=ue(n)?JSON.stringify(ce([...n])):Ae(n)?JSON.stringify(ce([...n])):L(n)?JSON.stringify(ce(n)):(o=n==null?void 0:n.toString())!=null?o:""},jo={mount:()=>({update:({el:t,values:e})=>{Ns(t,e)}})};var _o={mount:()=>({update:({el:t,values:e})=>{Xe(t,"value",e[0])}})};var ke=class ke{constructor(e){m(this,"B",{});m(this,"p",{});m(this,"lt",()=>Object.keys(this.B).filter(e=>e.length===1||!e.startsWith(":")));m(this,"Z",new Map);m(this,"$",new Map);m(this,"forGrowThreshold",10);m(this,"globalContext");m(this,"useInterpolation",!0);m(this,"propValidationMode","throw");if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.It()}static getDefault(){var e;return(e=ke.je)!=null?e:ke.je=new ke}It(){let e={},n=globalThis;for(let o of ke.Lt.split(","))e[o]=n[o];return e.ref=Re,e.sref=ae,e.flatten=ce,e}addComponent(...e){for(let n of e){if(!n.defaultName){$e.warning("Registered component's default name is not defined",n);continue}this.Z.set(st(n.defaultName),n),this.$.set(st(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this.B={".":Io,":":Sn,"@":kn,[`${e}on`]:kn,[`${e}bind`]:Sn,[`${e}html`]:Bt,[`${e}text`]:jo,[`${e}show`]:Do,[`${e}model`]:wo,":style":Wt,[`${e}style`]:Wt,[`${e}bind:style`]:Wt,":class":An,[`${e}bind:class`]:An,":ref":Vo,":value":_o,[`${e}teleport`]:Mt},this.p={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,context:":context",contextAlias:`${e}context`,bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this.B,this.p)}};m(ke,"je"),m(ke,"Lt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var de=ke;var Gt=(t,e)=>{if(!t)return;let o=(e!=null?e:de.getDefault()).p,r=/(\{\{[^]*?\}\}|\[\[[^]*?\]\])/g,s=[{start:"{{",end:"}}"},{start:"[[",end:"]]"}];for(let i of Ms(t,o.pre,s))Os(i,o.text,r,s)},Os=(t,e,n,o)=>{var c;let r=t.textContent;if(!r)return;let s=n,i=r.split(s);if(i.length<=1)return;if(((c=t.parentElement)==null?void 0:c.childNodes.length)===1&&i.length===3){let u=i[1],f=$o(u,o);if(f&&F(i[0])&&F(i[2])){let l=t.parentElement;l.setAttribute(e,u.substring(f.start.length,u.length-f.end.length)),l.innerText="";return}}let a=document.createDocumentFragment();for(let u of i){let f=$o(u,o);if(f){let l=document.createElement("span");l.setAttribute(e,u.substring(f.start.length,u.length-f.end.length)),a.appendChild(l)}else a.appendChild(document.createTextNode(u))}t.replaceWith(a)},Ms=(t,e,n)=>{let o=[],r=s=>{var i;if(s.nodeType===Node.TEXT_NODE)n.some(a=>{var c;return(c=s.textContent)==null?void 0:c.includes(a.start)})&&o.push(s);else{if((i=s==null?void 0:s.hasAttribute)!=null&&i.call(s,e))return;for(let a of Ee(s))r(a)}};return r(t),o},$o=(t,e)=>e.find(n=>t.startsWith(n.start)&&t.endsWith(n.end));var ks=9,Ls=10,Is=13,Vs=32,Se=46,Jt=44,Ds=39,Ps=34,Qt=40,Ye=41,Xt=91,Vn=93,Dn=63,Us=59,Fo=58,qo=123,Yt=125,Pe=43,Zt=45,Pn=96,zo=47,Un=92,Ko=new Set([2,3]),Yo={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},Hs=Gn(ht({"=>":2},Yo),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),Zo=Object.keys(Yo),Bs=new Set(Zo),Bn=new Set(["=>"]);Zo.forEach(t=>Bn.add(t));var Wo={true:!0,false:!1,null:null},js="this",Ze="Expected ",Ue="Unexpected ",_n="Unclosed ",_s=Ze+":",Go=Ze+"expression",$s="missing }",Fs=Ue+"object property",qs=_n+"(",Jo=Ze+"comma",Qo=Ue+"token ",zs=Ue+"period",Hn=Ze+"expression after ",Ks="missing unaryOp argument",Ws=_n+"[",Gs=Ze+"exponent (",Js="Variable names cannot start with a number (",Qs=_n+'quote after "',ft=t=>t>=48&&t<=57,Xo=t=>Hs[t],jn=class{constructor(e){m(this,"u");m(this,"e");this.u=e,this.e=0}get H(){return this.u.charAt(this.e)}get h(){return this.u.charCodeAt(this.e)}f(e){return this.u.charCodeAt(this.e)===e}K(e){return e>=65&&e<=90||e>=97&&e<=122||e===36||e===95||e>=128}le(e){return this.K(e)||ft(e)}i(e){return new Error(`${e} at character ${this.e}`)}g(){let e=this.h,n=this.u,o=this.e;for(;e===Vs||e===ks||e===Ls||e===Is;)e=n.charCodeAt(++o);this.e=o}parse(){let e=this.fe();return e.length===1?e[0]:{type:0,body:e}}fe(e){let n=[];for(;this.e<this.u.length;){let o=this.h;if(o===Us||o===Jt)this.e++;else{let r=this.S();if(r)n.push(r);else if(this.e<this.u.length){if(o===e)break;throw this.i(Ue+'"'+this.H+'"')}}}return n}S(){var n;let e=(n=this.Pt())!=null?n:this._e();return this.g(),this.Dt(e)}me(){this.g();let e=this.u,n=this.e,o=e.charCodeAt(n),r=e.charCodeAt(n+1),s=e.charCodeAt(n+2),i=e.charCodeAt(n+3);if(isNaN(o))return!1;let a=!1,c=0;return o===62&&r===62&&s===62&&i===61?(a=">>>=",c=4):o===61&&r===61&&s===61?(a="===",c=3):o===33&&r===61&&s===61?(a="!==",c=3):o===62&&r===62&&s===62?(a=">>>",c=3):o===60&&r===60&&s===61?(a="<<=",c=3):o===62&&r===62&&s===61?(a=">>=",c=3):o===42&&r===42&&s===61?(a="**=",c=3):o===61&&r===62?(a="=>",c=2):o===124&&r===124?(a="||",c=2):o===63&&r===63?(a="??",c=2):o===38&&r===38?(a="&&",c=2):o===61&&r===61?(a="==",c=2):o===33&&r===61?(a="!=",c=2):o===60&&r===61?(a="<=",c=2):o===62&&r===61?(a=">=",c=2):o===60&&r===60?(a="<<",c=2):o===62&&r===62?(a=">>",c=2):o===43&&r===61?(a="+=",c=2):o===45&&r===61?(a="-=",c=2):o===42&&r===61?(a="*=",c=2):o===47&&r===61?(a="/=",c=2):o===37&&r===61?(a="%=",c=2):o===38&&r===61?(a="&=",c=2):o===94&&r===61?(a="^=",c=2):o===124&&r===61?(a="|=",c=2):o===42&&r===42?(a="**",c=2):o===105&&r===110?this.le(e.charCodeAt(n+2))||(a="in",c=2):o===61?(a="=",c=1):o===124?(a="|",c=1):o===94?(a="^",c=1):o===38?(a="&",c=1):o===60?(a="<",c=1):o===62?(a=">",c=1):o===43?(a="+",c=1):o===45?(a="-",c=1):o===42?(a="*",c=1):o===47?(a="/",c=1):o===37&&(a="%",c=1),a?(this.e+=c,a):!1}_e(){let e,n,o,r,s,i,a,c;if(s=this.z(),!s||(n=this.me(),!n))return s;if(r={value:n,prec:Xo(n),right_a:Bn.has(n)},i=this.z(),!i)throw this.i(Hn+n);let u=[s,r,i];for(;n=this.me();){o=Xo(n),r={value:n,prec:o,right_a:Bn.has(n)},c=n;let f=l=>r.right_a&&l.right_a?o>l.prec:o<=l.prec;for(;u.length>2&&f(u[u.length-2]);)i=u.pop(),n=u.pop().value,s=u.pop(),e=this.$e(n,s,i),u.push(e);if(e=this.z(),!e)throw this.i(Hn+c);u.push(r,e)}for(a=u.length-1,e=u[a];a>1;)e=this.$e(u[a-1].value,u[a-2],e),a-=2;return e}z(){let e;if(this.g(),e=this.Ut(),e)return this.de(e);let n=this.h;if(ft(n)||n===Se)return this.Bt();if(n===Ds||n===Ps)e=this.Ht();else if(n===Xt)e=this.jt();else{let o=this._t();if(o){let r=this.z();if(!r)throw this.i(Ks);return this.de({type:7,operator:o,argument:r})}this.K(n)?(e=this.ye(),e.name in Wo?e={type:4,value:Wo[e.name],raw:e.name}:e.name===js&&(e={type:5})):n===Qt&&(e=this.$t())}return e?(e=this.W(e),this.de(e)):!1}$e(e,n,o){if(e==="=>"){let r=n.type===1?n.expressions:[n];return{type:15,params:r,body:o}}return Bs.has(e)?{type:16,operator:e,left:n,right:o}:{type:8,operator:e,left:n,right:o}}Ut(){let e={node:!1};return this.qt(e),e.node||(this.Ft(e),e.node)||(this.Kt(e),e.node)||(this.qe(e),e.node)||this.zt(e),e.node}de(e){let n={node:e};return this.Wt(n),this.Gt(n),this.Jt(n),n.node}_t(){let e=this.u,n=this.e,o=e.charCodeAt(n),r=e.charCodeAt(n+1),s=e.charCodeAt(n+2),i=e.charCodeAt(n+3);return o===Zt?(this.e++,"-"):o===33?(this.e++,"!"):o===126?(this.e++,"~"):o===Pe?(this.e++,"+"):o===110&&r===101&&s===119&&!this.le(i)?(this.e+=3,"new"):!1}Pt(){let e={};return this.Qt(e),e.node}Dt(e){let n={node:e};return this.Xt(n),n.node}W(e){this.g();let n=this.h;for(;n===Se||n===Xt||n===Qt||n===Dn;){let o;if(n===Dn){if(this.u.charCodeAt(this.e+1)!==Se)break;o=!0,this.e+=2,this.g(),n=this.h}if(this.e++,n===Xt){if(e={type:3,computed:!0,object:e,property:this.S()},this.g(),n=this.h,n!==Vn)throw this.i(Ws);this.e++}else n===Qt?e={type:6,arguments:this.Fe(Ye),callee:e}:(o&&this.e--,this.g(),e={type:3,computed:!1,object:e,property:this.ye()});o&&(e.optional=!0),this.g(),n=this.h}return e}Bt(){let e=this.u,n=this.e,o=n;for(;ft(e.charCodeAt(o));)o++;if(e.charCodeAt(o)===Se)for(o++;ft(e.charCodeAt(o));)o++;let r=e.charCodeAt(o);if(r===101||r===69){o++;let a=e.charCodeAt(o);(a===Pe||a===Zt)&&o++;let c=o;for(;ft(e.charCodeAt(o));)o++;if(c===o){this.e=o;let u=e.slice(n,o);throw this.i(Gs+u+this.H+")")}}this.e=o;let s=e.slice(n,o),i=e.charCodeAt(o);if(this.K(i))throw this.i(Js+s+this.H+")");if(i===Se||s.length===1&&s.charCodeAt(0)===Se)throw this.i(zs);return{type:4,value:parseFloat(s),raw:s}}Ht(){let e=this.u,n=e.length,o=this.e,r=e.charCodeAt(this.e++),s=this.e,i=s,a=[],c=!1,u=!1;for(;s<n;){let l=e.charCodeAt(s);if(l===r){u=!0,this.e=s+1;break}if(l===Un){c||(c=!0),a.push(e.slice(i,s));let p=e.charCodeAt(s+1);a.push(this.Ke(p)),s+=2,i=s}else s++}let f=c?a.join("")+e.slice(i,u?s:n):e.slice(i,u?s:n);if(!u)throw this.e=s,this.i(Qs+f+'"');return{type:4,value:f,raw:e.substring(o,this.e)}}Ke(e){switch(e){case 110:return`
|
|
2
|
+
`;case 114:return"\r";case 116:return" ";case 98:return"\b";case 102:return"\f";case 118:return"\v";default:return isNaN(e)?"":String.fromCharCode(e)}}ye(){let e=this.h,n=this.e;if(this.K(e))this.e++;else throw this.i(Ue+this.H);for(;this.e<this.u.length&&(e=this.h,this.le(e));)this.e++;return{type:2,name:this.u.slice(n,this.e)}}Fe(e){let n=[],o=!1,r=0;for(;this.e<this.u.length;){this.g();let s=this.h;if(s===e){if(o=!0,this.e++,e===Ye&&r&&r>=n.length)throw this.i(Qo+String.fromCharCode(e));break}else if(s===Jt){if(this.e++,r++,r!==n.length){if(e===Ye)throw this.i(Qo+",");for(let i=n.length;i<r;i++)n.push(null)}}else{if(n.length!==r&&r!==0)throw this.i(Jo);{let i=this.S();if(!i||i.type===0)throw this.i(Jo);n.push(i)}}}if(!o)throw this.i(Ze+String.fromCharCode(e));return n}$t(){this.e++;let e=this.fe(Ye);if(this.f(Ye))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.i(qs)}jt(){return this.e++,{type:9,elements:this.Fe(Vn)}}qt(e){if(this.f(qo)){this.e++;let n=[];for(;!isNaN(this.h);){if(this.g(),this.f(Yt)){this.e++,e.node=this.W({type:10,properties:n});return}let o=this.S();if(!o)break;if(this.g(),o.type===2&&(this.f(Jt)||this.f(Yt)))n.push({type:12,computed:!1,key:o,value:o,shorthand:!0});else if(this.f(Fo)){this.e++;let r=this.S();if(!r)throw this.i(Fs);let s=o.type===9;n.push({type:12,computed:s,key:s?o.elements[0]:o,value:r,shorthand:!1}),this.g()}else n.push(o);this.f(Jt)&&this.e++}throw this.i($s)}}Ft(e){let n=this.h;if((n===Pe||n===Zt)&&n===this.u.charCodeAt(this.e+1)){this.e+=2;let o=e.node={type:13,operator:n===Pe?"++":"--",argument:this.W(this.ye()),prefix:!0};if(!o.argument||!Ko.has(o.argument.type))throw this.i(Ue+o.operator)}}Gt(e){let n=e.node,o=this.h;if((o===Pe||o===Zt)&&o===this.u.charCodeAt(this.e+1)){if(!Ko.has(n.type))throw this.i(Ue+(o===Pe?"++":"--"));this.e+=2,e.node={type:13,operator:o===Pe?"++":"--",argument:n,prefix:!1}}}Kt(e){this.u.charCodeAt(this.e)===Se&&this.u.charCodeAt(this.e+1)===Se&&this.u.charCodeAt(this.e+2)===Se&&(this.e+=3,e.node={type:14,argument:this.S()})}Xt(e){if(e.node&&this.f(Dn)){this.e++;let n=e.node,o=this.S();if(!o)throw this.i(Go);if(this.g(),this.f(Fo)){this.e++;let r=this.S();if(!r)throw this.i(Go);e.node={type:11,test:n,consequent:o,alternate:r}}else throw this.i(_s)}}Qt(e){if(this.g(),this.f(Qt)){let n=this.e;if(this.e++,this.g(),this.f(Ye)){this.e++;let o=this.me();if(o==="=>"){let r=this._e();if(!r)throw this.i(Hn+o);e.node={type:15,params:null,body:r};return}}this.e=n}}Jt(e){let n=e.node,o=n.type;(o===2||o===3)&&this.f(Pn)&&(e.node={type:17,tag:n,quasi:this.qe(e)})}qe(e){if(!this.f(Pn))return;let n=this.u,o=n.length,r={type:19,quasis:[],expressions:[]},s=++this.e,i=[],a=[],c=!1,u=f=>{if(!c){let h=n.slice(s,this.e);return r.quasis.push({type:18,value:{raw:h,cooked:h},tail:f})}i.push(n.slice(s,this.e)),a.push(n.slice(s,this.e));let l=i.join(""),p=a.join("");return i.length=0,a.length=0,c=!1,r.quasis.push({type:18,value:{raw:l,cooked:p},tail:f})};for(;this.e<o;){let f=n.charCodeAt(this.e);if(f===Pn)return u(!0),this.e+=1,e.node=r,r;if(f===36&&n.charCodeAt(this.e+1)===qo){if(u(!1),this.e+=2,r.expressions.push(...this.fe(Yt)),!this.f(Yt))throw this.i("unclosed ${");this.e+=1,s=this.e}else if(f===Un){c||(c=!0),i.push(n.slice(s,this.e)),a.push(n.slice(s,this.e));let l=n.charCodeAt(this.e+1);i.push(n.slice(this.e,this.e+2)),a.push(this.Ke(l)),this.e+=2,s=this.e}else this.e+=1}throw this.i("Unclosed `")}Wt(e){let n=e.node;if(!n||n.operator!=="new"||!n.argument)return;if(!n.argument||![6,3].includes(n.argument.type))throw this.i("Expected new function()");e.node=n.argument;let o=e.node;for(;o.type===3||o.type===6&&o.callee.type===3;)o=o.type===3?o.object:o.callee.object;o.type=20}zt(e){if(!this.f(zo))return;let n=++this.e,o=!1;for(;this.e<this.u.length;){if(this.h===zo&&!o){let r=this.u.slice(n,this.e),s="";for(;++this.e<this.u.length;){let a=this.h;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.H;else break}let i;try{i=new RegExp(r,s)}catch(a){throw this.i(a.message)}return e.node={type:4,value:i,raw:this.u.slice(n-1,this.e)},e.node=this.W(e.node),e.node}this.f(Xt)?o=!0:o&&this.f(Vn)&&(o=!1),this.e+=this.f(Un)?2:1}throw this.i("Unclosed Regex")}},er=t=>new jn(t).parse();var Xs={"=>":(t,e)=>{},"=":(t,e)=>{},"*=":(t,e)=>{},"**=":(t,e)=>{},"/=":(t,e)=>{},"%=":(t,e)=>{},"+=":(t,e)=>{},"-=":(t,e)=>{},"<<=":(t,e)=>{},">>=":(t,e)=>{},">>>=":(t,e)=>{},"&=":(t,e)=>{},"^=":(t,e)=>{},"|=":(t,e)=>{},"||":(t,e)=>t()||e(),"??":(t,e)=>{var n;return(n=t())!=null?n:e()},"&&":(t,e)=>t()&&e(),"|":(t,e)=>t|e,"^":(t,e)=>t^e,"&":(t,e)=>t&e,"==":(t,e)=>t==e,"!=":(t,e)=>t!=e,"===":(t,e)=>t===e,"!==":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e,in:(t,e)=>t in e,"<<":(t,e)=>t<<e,">>":(t,e)=>t>>e,">>>":(t,e)=>t>>>e,"+":(t,e)=>t+e,"-":(t,e)=>t-e,"*":(t,e)=>t*e,"/":(t,e)=>t/e,"%":(t,e)=>t%e,"**":(t,e)=>dt(t,e)},Ys={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},rr=t=>{if(!(t!=null&&t.some(or)))return t;let e=[];return t.forEach(n=>or(n)?e.push(...n):e.push(n)),e},tr=(...t)=>rr(t),$n=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Zs={"++":(t,e)=>{let n=t[e];if(x(n)){let o=n();return n(++o),o}return++t[e]},"--":(t,e)=>{let n=t[e];if(x(n)){let o=n();return n(--o),o}return--t[e]}},ei={"++":(t,e)=>{let n=t[e];if(x(n)){let o=n();return n(o+1),o}return t[e]++},"--":(t,e)=>{let n=t[e];if(x(n)){let o=n();return n(o-1),o}return t[e]--}},nr={"=":(t,e,n)=>{let o=t[e];return x(o)?o(n):t[e]=n},"+=":(t,e,n)=>{let o=t[e];return x(o)?o(o()+n):t[e]+=n},"-=":(t,e,n)=>{let o=t[e];return x(o)?o(o()-n):t[e]-=n},"*=":(t,e,n)=>{let o=t[e];return x(o)?o(o()*n):t[e]*=n},"/=":(t,e,n)=>{let o=t[e];return x(o)?o(o()/n):t[e]/=n},"%=":(t,e,n)=>{let o=t[e];return x(o)?o(o()%n):t[e]%=n},"**=":(t,e,n)=>{let o=t[e];return x(o)?o(dt(o(),n)):t[e]=dt(t[e],n)},"<<=":(t,e,n)=>{let o=t[e];return x(o)?o(o()<<n):t[e]<<=n},">>=":(t,e,n)=>{let o=t[e];return x(o)?o(o()>>n):t[e]>>=n},">>>=":(t,e,n)=>{let o=t[e];return x(o)?o(o()>>>n):t[e]>>>=n},"|=":(t,e,n)=>{let o=t[e];return x(o)?o(o()|n):t[e]|=n},"&=":(t,e,n)=>{let o=t[e];return x(o)?o(o()&n):t[e]&=n},"^=":(t,e,n)=>{let o=t[e];return x(o)?o(o()^n):t[e]^=n}},en=(t,e)=>q(t)?t.bind(e):t,Fn=class{constructor(e,n,o,r,s){m(this,"l");m(this,"ze");m(this,"We");m(this,"Ge");m(this,"A");m(this,"Je");m(this,"Qe");this.l=w(e)?e:[e],this.ze=n,this.We=o,this.Ge=r,this.Qe=!!s}Xe(e,n){if(n&&e in n)return n;for(let o of this.l)if(e in o)return o}2(e,n,o){let r=e.name;if(r==="$root")return this.l[this.l.length-1];if(r==="$parent")return this.l[1];if(r==="$ctx")return[...this.l];if(o&&r in o)return this.A=o[r],en($(o[r]),o);for(let i of this.l)if(r in i)return this.A=i[r],en($(i[r]),i);let s=this.ze;if(s&&r in s)return this.A=s[r],en($(s[r]),s)}5(e,n,o){return this.l[0]}0(e,n,o){return this.Ye(n,o,tr,...e.body)}1(e,n,o){return this.C(n,o,(...r)=>r.pop(),...e.expressions)}3(e,n,o){let{obj:r,key:s}=this.he(e,n,o),i=r==null?void 0:r[s];return this.A=i,en($(i),r)}4(e,n,o){return e.value}6(e,n,o){let r=(i,...a)=>q(i)?i(...rr(a)):i,s=this.C(++n,o,r,e.callee,...e.arguments);return this.A=s,s}7(e,n,o){return this.C(n,o,Ys[e.operator],e.argument)}8(e,n,o){let r=Xs[e.operator];switch(e.operator){case"||":case"&&":case"??":return r(()=>this.b(e.left,n,o),()=>this.b(e.right,n,o))}return this.C(n,o,r,e.left,e.right)}9(e,n,o){return this.Ye(++n,o,tr,...e.elements)}10(e,n,o){let r={},s=(...i)=>{i.forEach(a=>{Object.assign(r,a)})};return this.C(++n,o,s,...e.properties),r}11(e,n,o){return this.C(n,o,r=>this.b(r?e.consequent:e.alternate,n,o),e.test)}12(e,n,o){var f;let r={},s=l=>(l==null?void 0:l.type)!==15,i=(f=this.Ge)!=null?f:()=>!1,a=n===0&&this.Qe,c=l=>this.Ze(a,e.key,n,$n(l,o)),u=l=>this.Ze(a,e.value,n,$n(l,o));if(e.shorthand){let l=e.key.name;r[l]=s(e.key)&&i(l,n)?c:c()}else if(e.computed){let l=$(c());r[l]=s(e.value)&&i(l,n)?u:u()}else{let l=e.key.type===4?e.key.value:e.key.name;r[l]=s(e.value)&&i(l,n)?()=>u:u()}return r}he(e,n,o){let r=this.b(e.object,n,o),s=e.computed?this.b(e.property,n,o):e.property.name;return{obj:r,key:s}}13(e,n,o){let r=e.argument,s=e.operator,i=e.prefix?Zs:ei;if(r.type===2){let a=r.name,c=this.Xe(a,o);return le(c)?void 0:i[s](c,a)}if(r.type===3){let{obj:a,key:c}=this.he(r,n,o);return i[s](a,c)}}16(e,n,o){let r=e.left,s=e.operator;if(r.type===2){let i=r.name,a=this.Xe(i,o);if(le(a))return;let c=this.b(e.right,n,o);return nr[s](a,i,c)}if(r.type===3){let{obj:i,key:a}=this.he(r,n,o),c=this.b(e.right,n,o);return nr[s](i,a,c)}}14(e,n,o){let r=this.b(e.argument,n,o);return w(r)&&(r.s=sr),r}17(e,n,o){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},n,o)}19(e,n,o){let r=(...s)=>s.reduce((i,a,c)=>i+=a+e.quasis[c+1].value.cooked,e.quasis[0].value.cooked);return this.C(n,o,r,...e.expressions)}18(e,n,o){return e.value.cooked}20(e,n,o){let r=(s,...i)=>new s(...i);return this.C(n,o,r,e.callee,...e.arguments)}15(e,n,o){return(...r)=>{let s=Object.create(o!=null?o:{}),i=e.params;if(i){let a=0;for(let c of i)s[c.name]=r[a++]}return this.b(e.body,n,s)}}b(e,n,o){let r=$(this[e.type](e,n,o));return this.Je=e.type,r}Ze(e,n,o,r){let s=this.b(n,o,r);return e&&this.et()?this.A:s}et(){let e=this.Je;return(e===2||e===3||e===6)&&x(this.A)}eval(e,n){let{value:o,refs:r}=En(()=>this.b(e,-1,n)),s={value:o,refs:r};return this.et()&&(s.ref=this.A),s}C(e,n,o,...r){let s=r.map(i=>i&&this.b(i,e,n));return o(...s)}Ye(e,n,o,...r){let s=this.We;if(!s)return this.C(e,n,o,...r);let i=r.map((a,c)=>a&&(a.type!==15&&s(c,e)?u=>this.b(a,e,$n(u,n)):this.b(a,e,n)));return o(...i)}},sr=Symbol("s"),or=t=>(t==null?void 0:t.s)===sr,ir=(t,e,n,o,r,s,i)=>new Fn(e,n,o,r,i).eval(t,s);var ar={},cr=t=>!!t,tn=class{constructor(e,n){m(this,"l");m(this,"r");m(this,"tt",[]);this.l=e,this.r=n}w(e){this.l=[e,...this.l]}ee(){return this.l.map(n=>n.components).filter(cr).reverse().reduce((n,o)=>{for(let[r,s]of Object.entries(o))n[r.toUpperCase()]=s;return n},{})}ut(){let e=[],n=new Set,o=this.l.map(r=>r.components).filter(cr).reverse();for(let r of o)for(let s of Object.keys(r))n.has(s)||(n.add(s),e.push(s));return e}V(e,n,o,r,s){var b;let i=[],a=[],c=new Set,u=()=>{for(let E=0;E<a.length;++E)a[E]();a.length=0},p={value:()=>i,stop:()=>{u(),c.clear()},subscribe:(E,V)=>(c.add(E),V&&E(i),()=>{c.delete(E)}),refs:[],context:this.l[0]};if(F(e))return p;let h=this.r.globalContext,y=[],d=new Set,C=(E,V,W,H)=>{try{let B=ir(E,V,h,n,o,H,r);return W&&B.refs.length>0&&y.push(...B.refs),{value:B.value,refs:B.refs,ref:B.ref}}catch(B){U(6,`evaluation error: ${e}`,B)}return{value:void 0,refs:[]}};try{let E=(b=ar[e])!=null?b:er("["+e+"]");ar[e]=E;let V=this.l.slice(),W=E.elements,H=W.length,B=new Array(H);p.refs=B;let ee=()=>{y.length=0,s||(d.clear(),u());let oe=new Array(H);for(let M=0;M<H;++M){let T=W[M];if(n!=null&&n(M,-1)){oe[M]=Q=>C(T,V,!1,{$event:Q}).value;continue}let N=C(T,V,!0);oe[M]=N.value,B[M]=N.ref}if(!s)for(let M of y)d.has(M)||(d.add(M),a.push(re(M,ee)));if(i=oe,c.size!==0)for(let M of c)c.has(M)&&M(i)};ee()}catch(E){U(6,`parse error: ${e}`,E)}return p}L(){return this.l.slice()}ce(e){this.tt.push(this.l),this.l=e}R(e,n){try{this.ce(e),n()}finally{this.Yt()}}Yt(){var e;this.l=(e=this.tt.pop())!=null?e:[]}};var ur=t=>{let e=t.charCodeAt(0);return e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122||t==="-"||t==="_"||t===":"},ti=(t,e)=>{let n="";for(let o=e;o<t.length;++o){let r=t[o];if(n){r===n&&(n="");continue}if(r==='"'||r==="'"){n=r;continue}if(r===">")return o}return-1},ni=(t,e)=>{let n=e?2:1;for(;n<t.length&&(t[n]===" "||t[n]===`
|
|
3
|
+
`);)++n;if(n>=t.length||!ur(t[n]))return null;let o=n;for(;n<t.length&&ur(t[n]);)++n;return{start:o,end:n}},fr=new Set(["table","thead","tbody","tfoot"]),oi=new Set(["thead","tbody","tfoot"]),ri=new Set(["caption","colgroup","thead","tbody","tfoot","tr"]),si=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),lr=(t,e)=>`${t.slice(0,t.length-2)}></${e}>`,nn=t=>{var s;let e=0,n=[],o=[],r=0;for(;e<t.length;){let i=t.indexOf("<",e);if(i===-1){n.push(t.slice(e));break}if(n.push(t.slice(e,i)),t.startsWith("<!--",i)){let b=t.indexOf("-->",i+4);if(b===-1){n.push(t.slice(i));break}n.push(t.slice(i,b+3)),e=b+3;continue}let a=ti(t,i);if(a===-1){n.push(t.slice(i));break}let c=t.slice(i,a+1),u=c.startsWith("</");if(c.startsWith("<!")||c.startsWith("<?")){n.push(c),e=a+1;continue}let l=ni(c,u);if(!l){n.push(c),e=a+1;continue}let p=c.slice(l.start,l.end);if(u){let b=o[o.length-1];b?(o.pop(),n.push(b.replacementHost?`</${b.replacementHost}>`:c),fr.has(b.effectiveTag)&&--r):n.push(c),e=a+1;continue}let h=c.charCodeAt(c.length-2)===47,y=o[o.length-1],d=null;r===0?p==="tr"?d="trx":p==="td"?d="tdx":p==="th"&&(d="thx"):oi.has((s=y==null?void 0:y.effectiveTag)!=null?s:"")?d=p==="tr"?null:"tr":(y==null?void 0:y.effectiveTag)==="table"?d=ri.has(p)?null:"tr":(y==null?void 0:y.effectiveTag)==="tr"&&(d=p==="td"||p==="th"?null:"td");let C=h&&!si.has(d||p);if(d){let b=d==="trx"||d==="tdx"||d==="thx",E=`${c.slice(0,l.start)}${d} is="${b?`r-${p}`:`regor:${p}`}"${c.slice(l.end)}`;n.push(C?lr(E,d):E)}else n.push(C?lr(c,p):c);if(!h){let b=d==="trx"?"tr":d==="tdx"?"td":d==="thx"?"th":d||p;o.push({replacementHost:d,effectiveTag:b}),fr.has(b)&&++r}e=a+1}return n.join("")};var ii="svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view",ai=new Set(ii.toUpperCase().split(",")),ci="http://www.w3.org/2000/svg",pr=(t,e)=>{pe(t)?t.content.appendChild(e):t.appendChild(e)},qn=(t,e,n,o)=>{var i;let r=t.t;if(r){let a=n&&ai.has(r.toUpperCase())?document.createElementNS(ci,r.toLowerCase()):document.createElement(r),c=t.a;if(c)for(let f of Object.entries(c)){let l=f[0],p=f[1];l.startsWith("#")&&(p=l.substring(1),l="name"),a.setAttribute(Ot(l,o),p)}let u=t.c;if(u)for(let f of u)qn(f,a,n,o);pr(e,a);return}let s=t.d;if(s){let a;switch((i=t.n)!=null?i:Node.TEXT_NODE){case Node.COMMENT_NODE:a=document.createComment(s);break;case Node.TEXT_NODE:a=document.createTextNode(s);break}if(a)pr(e,a);else throw new Error("unsupported node type.")}},et=(t,e,n)=>{n!=null||(n=de.getDefault());let o=document.createDocumentFragment();if(!w(t))return qn(t,o,!!e,n),o;for(let r of t)qn(r,o,!!e,n);return o};var ui=(t,e={selector:"#app"},n)=>{z(e)&&(e={selector:"#app",template:e}),fo(t)&&(t=t.context);let o=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!o||!xe(o))throw j(0);n||(n=de.getDefault());let r=()=>{for(let a of[...o.childNodes])J(a)},s=a=>{for(let c of a)o.appendChild(c)};if(e.template){let a=document.createRange().createContextualFragment(nn(e.template));r(),s(a.childNodes),e.element=a}else if(e.json){let a=et(e.json,e.isSVG,n);r(),s(a.childNodes)}return n.useInterpolation&&Gt(o,n),new zn(t,o,n).y(),K(o,()=>{Ne(t)}),kt(t),{context:t,unmount:()=>{J(o)},unbind:()=>{ge(o)}}},zn=class{constructor(e,n,o){m(this,"Zt");m(this,"nt");m(this,"r");m(this,"m");m(this,"o");this.Zt=e,this.nt=n,this.r=o,this.m=new tn([e],o),this.o=new qt(this.m)}y(){this.o._(this.nt)}};var lt=t=>{if(w(t))return t.map(r=>lt(r));let e={};if(t.tagName)e.t=t.tagName;else return t.nodeType===Node.COMMENT_NODE&&(e.n=Node.COMMENT_NODE),t.textContent&&(e.d=t.textContent),e;let n=t.getAttributeNames();n.length>0&&(e.a=Object.fromEntries(n.map(r=>{var s;return[r,(s=t.getAttribute(r))!=null?s:""]})));let o=Ee(t);return o.length>0&&(e.c=[...o].map(r=>lt(r))),e};var fi=(t,e={})=>{var s,i,a,c,u,f;w(e)&&(e={props:e}),z(t)&&(t={template:t});let n=(s=e.context)!=null?s:()=>({}),o=!1;if(t.element){let l=t.element;l.remove(),t.element=l}else if(t.selector){let l=document.querySelector(t.selector);if(!l)throw j(1,t.selector);l.remove(),t.element=l}else if(t.template){let l=document.createRange().createContextualFragment(nn(t.template));t.element=l}else t.json&&(t.element=et(t.json,t.isSVG,e.config),o=!0);t.element||(t.element=document.createDocumentFragment()),((i=e.useInterpolation)==null||i)&&Gt(t.element,(a=e.config)!=null?a:de.getDefault());let r=t.element;if(!o&&(((u=t.isSVG)!=null?u:rt(r)&&((c=r.hasAttribute)!=null&&c.call(r,"isSVG")))||rt(r)&&r.querySelector("[isSVG]"))){let l=r.content,p=l?[...l.childNodes]:[...r.childNodes],h=lt(p);t.element=et(h,!0,e.config)}return{context:n,template:t.element,inheritAttrs:(f=e.inheritAttrs)!=null?f:!0,props:e.props,defaultName:e.defaultName}};var Kn=class{constructor(){m(this,"byConstructor",new Map)}register(e){this.byConstructor.set(e.constructor,e)}unregisterByClass(e){this.byConstructor.delete(e)}unregister(e){let n=e.constructor;this.byConstructor.get(n)===e&&this.byConstructor.delete(n)}find(e){for(let n of this.byConstructor.values())if(n instanceof e)return n}require(e){let n=this.find(e);if(n)return n;throw new Error(`${e.name} is not registered in ContextRegistry.`)}};var li=t=>{var e;(e=Ie())==null||e.onMounted.push(t)};var pi=t=>{let e,n={},o=(...r)=>{if(r.length<=2&&0 in r)throw j(4);return e&&!n.isStopped?e(...r):(e=mi(t,n),e(...r))};return o[Y]=1,Me(o,!0),o.stop=()=>{var r,s;return(s=(r=n.ref)==null?void 0:r.stop)==null?void 0:s.call(r)},ne(()=>o.stop(),!0),o},mi=(t,e)=>{var s;let n=(s=e.ref)!=null?s:ae(null);e.ref=n,e.isStopped=!1;let o=0,r=Je(()=>{if(o>0){r(),e.isStopped=!0,Z(n);return}n(t()),++o});return n.stop=r,n};var di=(t,e)=>{let n={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw j(4);return o&&!n.isStopped?o(...s):(o=hi(t,e,n),o(...s))};return r[Y]=1,Me(r,!0),r.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},ne(()=>r.stop(),!0),r},hi=(t,e,n)=>{var a;let o=(a=n.ref)!=null?a:ae(null);n.ref=o,n.isStopped=!1;let r=0,s=c=>{if(r>0){o.stop(),n.isStopped=!0,Z(o);return}let u=t.map(f=>f());o(e(...u)),++r},i=[];for(let c of t){let u=re(c,s);i.push(u)}return s(null),o.stop=()=>{i.forEach(c=>{c()})},o};var yi=(t,e)=>{let n={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw j(4);return o&&!n.isStopped?o(...s):(o=gi(t,e,n),o(...s))};return r[Y]=1,Me(r,!0),r.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},ne(()=>r.stop(),!0),r},gi=(t,e,n)=>{var s;let o=(s=n.ref)!=null?s:ae(null);n.ref=o,n.isStopped=!1;let r=0;return o.stop=re(t,i=>{if(r>0){o.stop(),n.isStopped=!0,Z(o);return}o(e(i)),++r},!0),o};var bi=t=>(t[Ct]=1,t);var Ti=(t,e)=>{if(!e)throw j(5);let o=Ge(t)?Re:a=>a,r=()=>localStorage.setItem(e,JSON.stringify(ce(t()))),s=localStorage.getItem(e);if(s!=null)try{t(o(JSON.parse(s)))}catch(a){U(6,`persist: failed to parse data for key ${e}`,a),r()}else r();let i=Je(r);return ne(i,!0),t};var mr=(t,...e)=>{let n="",o=t,r=e,s=o.length,i=r.length;for(let a=0;a<s;++a)n+=o[a],a<i&&(n+=r[a]);return n},xi=mr;var Ci=(t,e,n)=>{let o=[],r=()=>{e(t.map(i=>i()))};for(let i of t)o.push(re(i,r));n&&r();let s=()=>{for(let i of o)i()};return ne(s,!0),s};var Ei=t=>{if(!x(t))throw j(3,"observerCount");return t(void 0,void 0,2)};var Ri=t=>{dr();try{t()}finally{hr()}},dr=()=>{ye.stack||(ye.stack=[]),ye.stack.push(new Set)},hr=()=>{let t=ye.stack;if(!t||t.length===0)return;let e=t.pop();if(t.length){let n=t[t.length-1];for(let o of e)n.add(o);return}delete ye.stack;for(let n of e)try{Z(n)}catch(o){console.error(o)}};export{nt as ComponentHead,Kn as ContextRegistry,de as RegorConfig,K as addUnbinder,Ri as batch,En as collectRefs,di as computeMany,yi as computeRef,pi as computed,ui as createApp,fi as defineComponent,Er as drainUnbind,hr as endBatch,it as entangle,ce as flatten,Ve as getBindData,mr as html,Ge as isDeepRef,at as isRaw,x as isRef,bi as markRaw,re as observe,Ci as observeMany,Ei as observerCount,li as onMounted,ne as onUnmounted,Nn as pause,Ti as persist,Pr as pval,xi as raw,Re as ref,J as removeNode,On as resume,Cn as silence,ae as sref,dr as startBatch,et as toFragment,lt as toJsonTemplate,Z as trigger,ge as unbind,$ as unref,Tn as useScope,$e as warningHandler,Je as watchEffect};
|