regor 1.5.3 → 1.5.4

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.
@@ -555,24 +555,36 @@ var Regor = (() => {
555
555
  */
556
556
  __publicField(this, "ctx");
557
557
  /**
558
- * Controls whether Regor should automatically apply incoming `head.props`
559
- * values to the component context after `context(head)` returns.
558
+ * Controls whether Regor automatically merges parent-provided component inputs
559
+ * into the object returned by `context(head)`.
560
560
  *
561
- * Think of it as "auto wire parent inputs into my component fields".
561
+ * There are two runtime data sources for a component:
562
+ *
563
+ * 1. Parent inputs:
564
+ * values passed from the component host, such as `:title="abc"` or
565
+ * `:context="{ ... }"`. These are exposed on `head.props`.
566
+ *
567
+ * 2. Component context:
568
+ * the object returned by `context(head)`. This is the component's own local
569
+ * state.
570
+ *
571
+ * `autoProps` controls the third step: how those two sources are merged.
562
572
  *
563
573
  * - `true` (default):
564
- * - If a key exists in `head.props` but does not exist on the object
565
- * returned by `context(head)`, Regor adds that key to component context.
566
- * - Existing ref fields can receive incoming values automatically.
567
- * - Ref-to-ref inputs can be entangled when `head.entangle` is enabled.
568
- * - `false`:
569
- * - Regor does not auto-apply props.
570
- * - You fully control mapping manually inside `context(head)`.
574
+ * Regor automatically applies `head.props` to the component context.
575
+ * If a parent input name is missing from the component context, Regor adds it.
576
+ * Isolates the declared component properties,
577
+ * so a component does not accidentally inherit unwanted values from its ancestors.
571
578
  *
572
- * Use `false` when you need strict custom mapping/validation/transforms
573
- * before any value touches component state.
579
+ * - `false`:
580
+ * Regor does not merge `head.props` into the returned context.
581
+ * The component author must map values manually from `head.props`.
582
+ * Disables isolation for declared props.
574
583
  *
575
- * "Missing key" is always checked against the returned component context object.
584
+ * In short:
585
+ * - `head.props` = what the parent passed
586
+ * - `context(head)` return value = what the component defines
587
+ * - `autoProps` = whether Regor should merge the first into the second
576
588
  *
577
589
  * Example (auto add):
578
590
  * ```ts
@@ -1681,6 +1693,7 @@ var Regor = (() => {
1681
1693
  return isTemplate(node) && node.getAttributeNames().length === 0;
1682
1694
  }
1683
1695
  __unwrapComponents(element) {
1696
+ var _a, _b;
1684
1697
  const binder = this.__binder;
1685
1698
  const parser = binder.__parser;
1686
1699
  const registeredComponents = binder.__config.__components;
@@ -1714,6 +1727,7 @@ var Regor = (() => {
1714
1727
  const contextName = binder.__config.__builtInNames.context;
1715
1728
  const contextAliasName = binder.__config.__builtInNames.contextAlias;
1716
1729
  const bindName = binder.__config.__builtInNames.bind;
1730
+ const definedProps = (_b = (_a = registeredComponent.props) == null ? void 0 : _a.map(camelize)) != null ? _b : [];
1717
1731
  const getProps = (component2, capturedContext2) => {
1718
1732
  const props = {};
1719
1733
  const hasContext = component2.hasAttribute(contextName);
@@ -1724,9 +1738,7 @@ var Regor = (() => {
1724
1738
  } else if (component2.hasAttribute(contextAliasName)) {
1725
1739
  binder.__bind(contextDirective, component2, contextAliasName);
1726
1740
  }
1727
- let definedProps = registeredComponent.props;
1728
- if (!definedProps || definedProps.length === 0) return;
1729
- definedProps = definedProps.map(camelize);
1741
+ if (definedProps.length === 0) return;
1730
1742
  const definedPropsByLowerCase = new Map(
1731
1743
  definedProps.map((definedProp) => [
1732
1744
  definedProp.toLowerCase(),
@@ -1765,7 +1777,7 @@ var Regor = (() => {
1765
1777
  };
1766
1778
  const capturedContext = [...parser.__capture()];
1767
1779
  const createComponentCtx = () => {
1768
- var _a;
1780
+ var _a2;
1769
1781
  const props = getProps(component, capturedContext);
1770
1782
  const head2 = new ComponentHead(
1771
1783
  props,
@@ -1776,8 +1788,8 @@ var Regor = (() => {
1776
1788
  binder.__config.propValidationMode
1777
1789
  );
1778
1790
  const componentCtx2 = useScope(() => {
1779
- var _a2;
1780
- return (_a2 = registeredComponent.context(head2)) != null ? _a2 : {};
1791
+ var _a3;
1792
+ return (_a3 = registeredComponent.context(head2)) != null ? _a3 : {};
1781
1793
  }).context;
1782
1794
  if (head2.autoProps) {
1783
1795
  for (const [key, propsValue] of Object.entries(props)) {
@@ -1801,7 +1813,11 @@ var Regor = (() => {
1801
1813
  }
1802
1814
  } else componentCtx2[key] = propsValue;
1803
1815
  }
1804
- (_a = head2.onAutoPropsAssigned) == null ? void 0 : _a.call(head2);
1816
+ for (const key of definedProps) {
1817
+ if (key in componentCtx2) continue;
1818
+ componentCtx2[key] = void 0;
1819
+ }
1820
+ (_a2 = head2.onAutoPropsAssigned) == null ? void 0 : _a2.call(head2);
1805
1821
  }
1806
1822
  return { componentCtx: componentCtx2, head: head2 };
1807
1823
  };
@@ -1810,7 +1826,7 @@ var Regor = (() => {
1810
1826
  const len = childNodes.length;
1811
1827
  const isEmptyComponent = component.childNodes.length === 0;
1812
1828
  const expandSlot = (slot) => {
1813
- var _a;
1829
+ var _a2;
1814
1830
  const parent2 = slot.parentElement;
1815
1831
  let name = slot.name;
1816
1832
  if (isNullOrWhitespace(name)) {
@@ -1843,9 +1859,9 @@ var Regor = (() => {
1843
1859
  const unnamedTemplates = component.querySelectorAll(
1844
1860
  "template:not([name])"
1845
1861
  );
1846
- compTemplate = (_a = [...unnamedTemplates].find(
1862
+ compTemplate = (_a2 = [...unnamedTemplates].find(
1847
1863
  (x) => this.__isDefaultSlotTemplateShortcut(x)
1848
- )) != null ? _a : null;
1864
+ )) != null ? _a2 : null;
1849
1865
  }
1850
1866
  const createSwitchContext = (childNodes2) => {
1851
1867
  if (!head.enableSwitch) return;
@@ -1,3 +1,3 @@
1
- "use strict";var Regor=(()=>{var ht=Object.defineProperty,Ir=Object.defineProperties,Vr=Object.getOwnPropertyDescriptor,Pr=Object.getOwnPropertyDescriptors,Dr=Object.getOwnPropertyNames,Xn=Object.getOwnPropertySymbols;var Yn=Object.prototype.hasOwnProperty,Ur=Object.prototype.propertyIsEnumerable;var yt=Math.pow,dn=(t,e,n)=>e in t?ht(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,gt=(t,e)=>{for(var n in e||(e={}))Yn.call(e,n)&&dn(t,n,e[n]);if(Xn)for(var n of Xn(e))Ur.call(e,n)&&dn(t,n,e[n]);return t},Zn=(t,e)=>Ir(t,Pr(e));var Hr=(t,e)=>{for(var n in e)ht(t,n,{get:e[n],enumerable:!0})},Br=(t,e,n,o)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Dr(e))!Yn.call(t,r)&&r!==n&&ht(t,r,{get:()=>e[r],enumerable:!(o=Vr(e,r))||o.enumerable});return t};var jr=t=>Br(ht({},"__esModule",{value:!0}),t);var m=(t,e,n)=>dn(t,typeof e!="symbol"?e+"":e,n);var eo=(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 Vi={};Hr(Vi,{ComponentHead:()=>We,ContextRegistry:()=>ln,RegorConfig:()=>le,addUnbinder:()=>q,batch:()=>Lr,collectRefs:()=>Dt,computeMany:()=>Sr,computeRef:()=>vr,computed:()=>wr,createApp:()=>Cr,defineComponent:()=>Er,drainUnbind:()=>no,endBatch:()=>Qn,entangle:()=>Ye,flatten:()=>ie,getBindData:()=>Me,html:()=>Gn,isDeepRef:()=>He,isRaw:()=>Ze,isRef:()=>x,markRaw:()=>Ar,observe:()=>oe,observeMany:()=>Mr,observerCount:()=>kr,onMounted:()=>Rr,onUnmounted:()=>ee,pause:()=>Yt,persist:()=>Nr,pval:()=>uo,raw:()=>Or,ref:()=>xe,removeNode:()=>z,resume:()=>Zt,silence:()=>Pt,sref:()=>se,startBatch:()=>Jn,toFragment:()=>_e,toJsonTemplate:()=>rt,trigger:()=>Y,unbind:()=>ye,unref:()=>H,useScope:()=>Vt,warningHandler:()=>De,watchEffect:()=>Be});var ze=Symbol(":regor");var ye=t=>{let e=[t];for(let n=0;n<e.length;++n){let o=e[n];$r(o);for(let r=o.lastChild;r!=null;r=r.previousSibling)e.push(r)}},$r=t=>{let e=t[ze];if(!e)return;let n=e.unbinders;for(let o=0;o<n.length;++o)n[o]();n.length=0,t[ze]=void 0};var Ke=[],bt=!1,Tt,to=()=>{if(bt=!1,Tt=void 0,Ke.length!==0){for(let t=0;t<Ke.length;++t)ye(Ke[t]);Ke.length=0}},z=t=>{t.remove(),Ke.push(t),bt||(bt=!0,Tt=setTimeout(to,1))},no=()=>eo(null,null,function*(){Ke.length===0&&!bt||(Tt&&clearTimeout(Tt),to())});var K=t=>typeof t=="function",W=t=>typeof t=="string",oo=t=>typeof t=="undefined",me=t=>t==null||typeof t=="undefined",F=t=>typeof t!="string"||!(t!=null&&t.trim()),_r=Object.prototype.toString,hn=t=>_r.call(t),Ae=t=>hn(t)==="[object Map]",fe=t=>hn(t)==="[object Set]",yn=t=>hn(t)==="[object Date]",st=t=>typeof t=="symbol",w=Array.isArray,L=t=>t!==null&&typeof t=="object";var ro={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."},$=(t,...e)=>{let n=ro[t];return new Error(K(n)?n.call(ro,...e):n)};var xt=[],so=()=>{let t={onMounted:[],onUnmounted:[]};return xt.push(t),t},Pe=t=>{let e=xt[xt.length-1];if(!e&&!t)throw $(2);return e},io=t=>{let e=Pe();return t&&bn(t),xt.pop(),e},gn=Symbol("csp"),bn=t=>{let e=t,n=e[gn];if(n){let o=Pe();if(n===o)return;o.onMounted.length>0&&n.onMounted.push(...o.onMounted),o.onUnmounted.length>0&&n.onUnmounted.push(...o.onUnmounted);return}e[gn]=Pe()},Ct=t=>t[gn];var Ne=t=>{var n,o;let e=(n=Ct(t))==null?void 0:n.onUnmounted;e==null||e.forEach(r=>{r()}),(o=t.unmounted)==null||o.call(t)};var ao={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=ao[t],o=K(n)?n.call(ao,...e):n,r=De.warning;r&&(W(o)?r(o):r(o,...o.args))},De={warning:console.warn};var Et=Symbol("ref"),Z=Symbol("sref"),Rt=Symbol("raw");var x=t=>t!=null&&t[Z]===1;var Oe=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 Oe(t,`${e}.`)},wt=t=>{var n;if(t===null)return"null";if(t===void 0)return"undefined";if(x(t))return`ref<${wt(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"},Fr=t=>t.length>60?`${t.slice(0,57)}...`:t,it=(t,e=0)=>{if(e>1)return"unknown";if(x(t)){let s=t();return`ref(${it(s,e+1)})`}if(typeof t=="string")return Fr(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=>it(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=it(c,e+1);return`${a}: ${u}`}).join(", ");return Object.keys(t).length>5?`{ ${i}, ... }`:`{ ${i} }`}return"unknown"},ue=t=>{if(x(t))return`got ${wt(t)}(${it(t())})`;let e=wt(t),n=it(t);return`got ${e} (${n})`},qr=t=>t instanceof Oe?t.detail:t instanceof Error?t.message:String(t),co=(t,e)=>{let n=`, ${ue(e)}.`;return t.endsWith(n)?t.slice(0,-n.length):t},zr=(t,e,n)=>{if(e instanceof Oe){if(e.propPath===t)return co(e.detail,n);if(e.propPath===`${t}.value`&&x(n)){let o=co(e.detail,n());return o.startsWith("expected ")?`expected ref<${o.slice(9)}>`:`expected ref where ${o}`}}return qr(e)},Kr=(t,e,n)=>{let o=[];for(let r of e){let s=zr(t,r,n);o.includes(s)||o.push(s)}return o.length===0?ue(n):o.length===1?`${o[0]}, ${ue(n)}`:`${o.join(" or ")}, ${ue(n)}`},Wr=t=>typeof t=="string"?`"${t}"`:typeof t=="number"||typeof t=="boolean"?String(t):t===null?"null":t===void 0?"undefined":wt(t),Gr=(t,e)=>{typeof t!="string"&&be(e,`expected string, ${ue(t)}`)},Jr=(t,e)=>{typeof t!="number"&&be(e,`expected number, ${ue(t)}`)},Qr=(t,e)=>{typeof t!="boolean"&&be(e,`expected boolean, ${ue(t)}`)},Xr=t=>(e,n)=>{e instanceof t||be(n,`expected instance of ${t.name||"provided class"}, ${ue(e)}`)},Yr=t=>(e,n,o)=>{e!==void 0&&t(e,n,o)},Zr=t=>(e,n,o)=>{e!==null&&t(e,n,o)},es=(...t)=>(e,n,o)=>{let r=[];for(let s of t)try{s(e,n,o);return}catch(i){r.push(i)}be(n,Kr(n,r,e))},ts=t=>(e,n)=>{t.includes(e)||be(n,`expected one of ${t.map(o=>Wr(o)).join(", ")}, ${ue(e)}`)},ns=t=>(e,n,o)=>{w(e)||be(n,`expected array, ${ue(e)}`);let r=e;for(let s=0;s<r.length;++s)t(r[s],`${n}[${s}]`,o)};function os(t){return(e,n,o)=>{L(e)||be(n,`expected object, ${ue(e)}`);let r=e;for(let s in t){let i=t[s];if(!i)continue;i(r[s],`${n}.${s}`,o)}}}var rs=t=>(e,n,o)=>{if(x(e)){t(e(),`${n}.value`,o);return}be(n,`expected ref, ${ue(e)}`)},uo={fail:be,describe:ue,isString:Gr,isNumber:Jr,isBoolean:Qr,isClass:Xr,optional:Yr,nullable:Zr,or:es,oneOf:ts,arrayOf:ns,shape:os,refOf:rs};var ss=(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 Oe?n.propPath:e,s=n instanceof Oe?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})},We=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=ss(this.G,o,i);if(this.J==="warn"){De.warning(a.message,a);continue}throw a}}}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)z(e),e=e.nextSibling;for(let o of this.ctx)Ne(o)}};var Me=t=>{let e=t,n=e[ze];if(n)return n;let o={unbinders:[],data:{}};return e[ze]=o,o};var q=(t,e)=>{Me(t).unbinders.push(e)};var vt={},St={},fo=1,lo=t=>{let e=(fo++).toString();return vt[e]=t,St[e]=0,e},Tn=t=>{St[t]+=1},xn=t=>{--St[t]===0&&(delete vt[t],delete St[t])},po=t=>vt[t],Cn=()=>fo!==1&&Object.keys(vt).length>0,at="r-switch",is=t=>{let e=t.filter(o=>Ce(o)).map(o=>[...o.querySelectorAll("[r-switch]")].map(r=>r.getAttribute(at))),n=new Set;return e.forEach(o=>{o.forEach(r=>r&&n.add(r))}),[...n]},Ge=(t,e)=>{if(!Cn())return;let n=is(e);n.length!==0&&(n.forEach(Tn),q(t,()=>{n.forEach(xn)}))};var At=()=>{},En=(t,e,n,o)=>{let r=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,o),r.push(i)}ke(e,r)},Rn=Symbol("r-if"),mo=Symbol("r-else"),ho=t=>t[mo]===1,Nt=class{constructor(e){m(this,"o");m(this,"N");m(this,"ge");m(this,"Q");m(this,"X");m(this,"x");m(this,"R");this.o=e,this.N=e.r.p.if,this.ge=Mt(e.r.p.if),this.Q=e.r.p.else,this.X=e.r.p.elseif,this.x=e.r.p.for,this.R=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}k(e){let n=e.hasAttribute(this.N);return n&&this.y(e),this.o.O.j(e,o=>{o.hasAttribute(this.N)&&this.y(o)}),n}Y(e){return e[Rn]?!0:(e[Rn]=!0,Ot(e,this.ge).forEach(n=>n[Rn]=!0),!1)}y(e){if(e.hasAttribute(this.R)||this.Y(e)||this.rt(e,this.x))return;let n=e.getAttribute(this.N);if(!n){U(0,this.N,e);return}e.removeAttribute(this.N),this.M(e,n)}U(e,n,o){let r=Je(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${o!=null?o:""}`);s.insertBefore(i,e),Ge(i,r),r.forEach(c=>{z(c)}),e.remove(),n!=="if"&&(e[mo]=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:()=>{En(r,this.o,s,a)},unmount:()=>{Ee(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=At;return q(a,()=>{u.stop(),p(),p=At}),p=u.subscribe(n),[{mount:()=>{En(s,this.o,i,c)},unmount:()=>{Ee(a,c)},isTrue:()=>!!f()[0],isMounted:!1},...l]}}M(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.E(p,()=>{if(u()[0])f||(En(r,this.o,s,a),f=!0),y.forEach(b=>{b.unmount(),b.isMounted=!1});else{Ee(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=At;q(i,()=>{c.stop(),d(),d=At}),h(),d=c.subscribe(h)}};var Je=t=>{let e=de(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},ke=(t,e)=>{for(let n=0;n<e.length;++n){let o=e[n];o.nodeType===Node.ELEMENT_NODE&&(ho(o)||t.$(o))}},Ot=(t,e)=>{var o;let n=t.querySelectorAll(e);return(o=t.matches)!=null&&o.call(t,e)?[t,...n]:n},de=t=>t instanceof HTMLTemplateElement,Ce=t=>t.nodeType===Node.ELEMENT_NODE,ct=t=>t.nodeType===Node.ELEMENT_NODE,yo=t=>t instanceof HTMLSlotElement,Re=t=>de(t)?t.content.childNodes:t.childNodes,Ee=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let o=n.nextSibling;z(n),n=o}},go=function(){return this()},as=function(t){return this(t)},cs=()=>{throw new Error("value is readonly.")},us={get:go,set:as,enumerable:!0,configurable:!1},fs={get:go,set:cs,enumerable:!0,configurable:!1},Le=(t,e)=>{Object.defineProperty(t,"value",e?fs:us)},bo=(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},Mt=t=>`[${CSS.escape(t)}]`,kt=(t,e)=>(t.startsWith("@")&&(t=e.p.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.p.dynamic)),t),wn=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},ls=/-(\w)/g,_=wn(t=>t&&t.replace(ls,(e,n)=>n?n.toUpperCase():"")),ps=/\B([A-Z])/g,Qe=wn(t=>t&&t.replace(ps,"-$1").toLowerCase()),ut=wn(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var Lt={mount:()=>{}};var Xe=t=>{let e=t.trim();return e?e.split(/\s+/):[]};var It=t=>{var n,o;let e=(n=Ct(t))==null?void 0:n.onMounted;e==null||e.forEach(r=>{r()}),(o=t.mounted)==null||o.call(t)};var Sn=Symbol("scope"),Vt=t=>{try{so();let e=t();bn(e);let n={context:e,unmount:()=>Ne(e),[Sn]:1};return n[Sn]=1,n}finally{io()}},To=t=>L(t)?Sn in t:!1;var vn={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 ee=(t,e)=>{var n;(n=Pe(e))==null||n.onUnmounted.push(t)};var oe=(t,e,n,o=!0)=>{if(!x(t))throw $(3,"observe");n&&e(t());let s=t(void 0,void 0,0,e);return o&&ee(s,!0),s};var Ye=(t,e)=>{if(t===e)return()=>{};let n=oe(t,r=>e(r)),o=oe(e,r=>t(r));return e(t()),()=>{n(),o()}};var Ze=t=>!!t&&t[Rt]===1;var He=t=>(t==null?void 0:t[Et])===1;var he=[],xo=t=>{var e;he.length!==0&&((e=he[he.length-1])==null||e.add(t))},Be=t=>{if(!t)return()=>{};let e={stop:()=>{}};return ms(t,e),ee(()=>e.stop(),!0),e.stop},ms=(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(he.push(s),t(i=>n.push(i)),o)return;for(let i of[...s]){let a=oe(i,()=>{r(),Be(t)});n.push(a)}}finally{he.pop()}},Pt=t=>{let e=he.length,n=e>0&&he[e-1];try{return n&&he.push(null),t()}finally{n&&he.pop()}},Dt=t=>{try{let e=new Set;return he.push(e),{value:t(),refs:[...e]}}finally{he.pop()}};var Y=(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)||fe(r))for(let s of r)Y(s,e,!0);else if(Ae(r))for(let s of r)Y(s[0],e,!0),Y(s[1],e,!0);if(L(r))for(let s in r)Y(r[s],e,!0)}};function ds(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var et=(t,e,n)=>{n.forEach(function(o){let r=t[o];ds(e,o,function(...i){let a=r.apply(this,i),c=this[Z];for(let u of c)Y(u);return a})})},Ut=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var Co=Array.prototype,An=Object.create(Co),hs=["push","pop","shift","unshift","splice","sort","reverse"];et(Co,An,hs);var Eo=Map.prototype,Ht=Object.create(Eo),ys=["set","clear","delete"];Ut(Ht,"Map");et(Eo,Ht,ys);var Ro=Set.prototype,Bt=Object.create(Ro),gs=["add","clear","delete"];Ut(Bt,"Set");et(Ro,Bt,gs);var Te={},se=t=>{if(x(t)||Ze(t))return t;let e={auto:!0,_value:t},n=c=>L(c)?Z in c?!0:w(c)?(Object.setPrototypeOf(c,An),!0):fe(c)?(Object.setPrototypeOf(c,Bt),!0):Ae(c)?(Object.setPrototypeOf(c,Ht),!0):!1:!1,o=n(t),r=new Set,s=(c,u)=>{if(Te.stack&&Te.stack.length){Te.stack[Te.stack.length-1].add(a);return}r.size!==0&&Pt(()=>{for(let f of[...r.keys()])r.has(f)&&f(c,u)})},i=c=>{let u=c[Z];u||(c[Z]=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):(xo(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[Z]=1,Le(a,!1),o&&i(t),a};var xe=t=>{if(Ze(t))return t;let e;if(x(t)?(e=t,t=e()):e=se(t),t instanceof Node||t instanceof Date||t instanceof RegExp||t instanceof Promise||t instanceof Error)return e;if(e[Et]=1,w(t)){let n=t.length;for(let o=0;o<n;++o){let r=t[o];He(r)||(t[o]=xe(r))}return e}if(!L(t))return e;for(let n of Object.entries(t)){let o=n[1];if(He(o))continue;let r=n[0];st(r)||(t[r]=null,t[r]=xe(o))}return e};var wo=Symbol("modelBridge"),jt=()=>{},bs=t=>!!(t!=null&&t[wo]),Ts=t=>{t[wo]=1},xs=t=>{let e=xe(t());return Ts(e),e},So={collectRefObj:!0,mount:({parseResult:t,option:e})=>{if(typeof e!="string"||!e)return jt;let n=_(e),o,r,s=jt,i=()=>{s(),s=jt,o=void 0,r=void 0},a=()=>{s(),s=jt},c=(f,l)=>{o!==f&&(a(),s=Ye(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(bs(f)){if(p===f)return;x(p)?c(f,p):l[n]=f;return}r||(r=xs(f)),l[n]=r,c(f,r)};return{update:()=>{u()},unmount:()=>{s()}}}};var $t=class{constructor(e){m(this,"o");m(this,"xe");m(this,"Te","");m(this,"Re",-1);this.o=e,this.xe=e.r.p.inherit}k(e){this.ot(e)}st(e){if(this.Re!==e.size){let n=[...e.keys()];this.Te=[...n,...n.map(Qe)].join(","),this.Re=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(!de(e))return!1;let n=e.getAttributeNames();return e.hasAttribute("name")?!0:n.some(o=>o.startsWith("#"))}ct(e){return de(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.Ee();if(F(a))return;let c=this.pt(e,a);for(let u of c){if(u.hasAttribute(n.R))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,G=n.r.p.contextAlias,B=n.r.p.bind,j=(g,v)=>{let S={},J=g.hasAttribute(V);return o.E(v,()=>{o.w(S),J?n.y(vn,g,V):g.hasAttribute(G)&&n.y(vn,g,G);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(Qe)]){let ne=g.getAttribute(k);ne!==null&&(S[_(k)]=ne,g.removeAttribute(k))}let A=n.F.Ce(g,!1);for(let[k,ne]of A.entries()){let[ae,pe]=ne.te;if(!pe)continue;let D=R.get(_(pe).toLowerCase());D&&(ae!=="."&&ae!==":"&&ae!==B||n.y(So,g,k,!0,D,ne.ne))}}),S},te=[...o.L()],re=()=>{var J;let g=j(u,te),v=new We(g,u,te,b,E,n.r.propValidationMode),S=Vt(()=>{var O;return(O=y.context(v))!=null?O:{}}).context;if(v.autoProps){for(let[O,R]of Object.entries(g))if(O in S){let A=S[O];if(A===R)continue;if(x(A)){x(R)?v.entangle?q(b,Ye(R,A)):A(R()):A(R);continue}}else S[O]=R;(J=v.onAutoPropsAssigned)==null||J.call(v)}return{componentCtx:S,head:v}},{componentCtx:M,head:T}=re(),N=[...Re(d)],Q=N.length,Fe=u.childNodes.length===0,qe=g=>{var R;let v=g.parentElement,S=g.name;if(F(S)&&(S=g.getAttributeNames().filter(A=>A.startsWith("#"))[0],F(S)?S="default":S=S.substring(1)),Fe){if(S==="default"){let A=n.r.p.text,k=u.getAttribute(A);if(!F(k)){let ne=document.createElement("span");ne.setAttribute(A,k),v.insertBefore(ne,g),u.removeAttribute(A);return}}for(let A of[...g.childNodes])v.insertBefore(A,g);return}let J=u.querySelector(`template[name='${S}'], template[\\#${S}]`);!J&&S==="default"&&(J=(R=[...u.querySelectorAll("template:not([name])")].find(k=>this.ct(k)))!=null?R:null);let O=A=>{T.enableSwitch&&o.E(te,()=>{o.w(M);let k=j(g,o.L());o.E(te,()=>{o.w(k);let ne=o.L(),ae=lo(ne);for(let pe of A)Ce(pe)&&(pe.setAttribute(at,ae),Tn(ae),q(pe,()=>{xn(ae)}))})})};if(J){let A=[...Re(J)];for(let k of A)v.insertBefore(k,g);O(A)}else{if(S!=="default"){for(let k of[...Re(g)])v.insertBefore(k,g);return}let A=[...Re(u)].filter(k=>!this.at(k));for(let k of A)v.insertBefore(k,g);O(A)}},pn=g=>{if(!Ce(g))return;let v=g.querySelectorAll("slot");if(yo(g)){qe(g),g.remove();return}for(let S of v)qe(S),S.remove()};(()=>{for(let g=0;g<Q;++g)N[g]=N[g].cloneNode(!0),f.insertBefore(N[g],l),pn(N[g])})(),C.insertBefore(E,l);let mt=()=>{if(!y.inheritAttrs)return;let g=N.filter(S=>S.nodeType===Node.ELEMENT_NODE);g.length>1&&(g=g.filter(S=>S.hasAttribute(this.xe)));let v=g[0];if(v)for(let S of u.getAttributeNames()){if(S===V||S===G)continue;let J=u.getAttribute(S);if(S==="class"){let O=Xe(J);O.length>0&&v.classList.add(...O)}else if(S==="style"){let O=v.style,R=u.style;for(let A of R)O.setProperty(A,R.getPropertyValue(A))}else v.setAttribute(kt(S,n.r),J)}},I=()=>{for(let g of u.getAttributeNames())!g.startsWith("@")&&!g.startsWith(n.r.p.on)&&u.removeAttribute(g)},X=()=>{mt(),I(),o.w(M),n.we(u,!1),M.$emit=T.emit,ke(n,N),q(u,()=>{Ne(M)}),q(b,()=>{ye(u)}),It(M)};o.E(te,X)}}Ee(){let e=this.o,n=e.m,o=e.r.Z,r=n.ut(),s=this.st(o);return[...s?[s]:[],...r,...r.map(Qe)].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.q(e).reverse();for(;r.length>0;){let i=r.pop();if(i.matches(n)){o.push(i);continue}r.push(...this.q(i).reverse())}return o}j(e,n){let o=this.Ee(),r=this.q(e).reverse();for(;r.length>0;){let s=r.pop();n(s),!(!F(o)&&s.matches(o))&&r.push(...this.q(s).reverse())}}q(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];Ce(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];Ce(i)&&r.push(i)}return r}return[]}};var Nn=class{constructor(e,n){m(this,"te");m(this,"ne");m(this,"Se",[]);this.te=e,this.ne=n}},_t=class{constructor(e){m(this,"o");m(this,"ve");m(this,"Ae");m(this,"re");var o;this.o=e,this.ve=e.r.lt(),this.re=new Map;let n=new Map;for(let r of this.ve){let s=(o=r[0])!=null?o:"",i=n.get(s);i?i.push(r):n.set(s,[r])}this.Ae=n}ke(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(!ct(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.ke(c);p=new Nn(h.terms,h.flags),o.set(c,p)}p.Se.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.O.j(e,i),o}};var vo=()=>{},Cs=(t,e)=>{for(let n of t){let o=n.cloneNode(!0);e.appendChild(o)}},Ft=class{constructor(e){m(this,"o");m(this,"I");this.o=e,this.I=e.r.p.is}k(e){let n=e.hasAttribute(this.I);return(n||e.hasAttribute("is"))&&this.y(e),this.o.O.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.M(e,n)}U(e,n){let o=Je(e),r=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);r.insertBefore(s,e),Ge(s,o),o.forEach(a=>{z(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}}M(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=de(e)?o:[...o[0].childNodes],h=()=>{u.E(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]),!W(C)||F(C)){Ee(s,i);return}if(l.name===C)return;Ee(s,i);let b=document.createElement(C);for(let V of e.getAttributeNames())V!==this.I&&b.setAttribute(V,e.getAttribute(V));Cs(p,b),r.insertBefore(b,i),this.o.$(b),l.name=C})},y=vo;q(s,()=>{a.stop(),y(),y=vo}),h(),y=a.subscribe(h)}};var H=t=>{let e=t;return e!=null&&e[Z]===1?e():e};var Es=(t,e)=>{let[n,o]=e;K(o)?o(t,n):t.innerHTML=n==null?void 0:n.toString()},qt={mount:()=>({update:({el:t,values:e})=>{Es(t,e)}})};var zt=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.F,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 G=0;G<V.length;++G){let B=(h=V.item(G))==null?void 0:h.name;if(!B)continue;if(i.has(B))return;let{terms:j,flags:te}=u.ke(B),[re,M]=j,T=(y=a[B])!=null?y:a[re];if(T){if(T===qt)return;f.push({nodeIndex:l,attrName:B,directive:T,option:M,flags:te})}}++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 Rs=(t,e)=>{let n=e.parentNode;if(n)for(let o=0;o<t.items.length;++o)n.insertBefore(t.items[o],e)},ws=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},Kt=class{static dt(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,G=new Array(V).fill(0),B=new Map;for(let T=E;T<=C;++T)B.set(l[T],T);let j=!1,te=0;for(let T=b;T<=d;++T){let N=n[T],Q=B.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,G[Q-E]=T+1,Q>=te?te=Q:j=!0}let re=j?ws(G):[],M=re.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(G[T]===0){h[N]=i(N,o[N],Q);continue}let Fe=h[N];j&&(M>=0&&re[M]===T?--M:Fe&&Rs(Fe,Q))}return h}};var ft=class{constructor(e){m(this,"T",[]);m(this,"P",new Map);m(this,"se");this.se=e}get S(){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 mt(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.T.push(e),this.ie(e)}yt(e,n){let o=this.S;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}Ne(e){this.ae(e),this.T.splice(e,1);let n=this.S;for(let o=e;o<n;++o)this.T[o].order=o}Oe(e){let n=this.S;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 On=Symbol("r-for"),Ss=t=>-1,Ao=()=>{},Gt=class Gt{constructor(e){m(this,"o");m(this,"x");m(this,"Me");m(this,"R");this.o=e,this.x=e.r.p.for,this.Me=Mt(this.x),this.R=e.r.p.pre}k(e){let n=e.hasAttribute(this.x);return n&&this.Ve(e),this.o.O.j(e,o=>{o.hasAttribute(this.x)&&this.Ve(o)}),n}Y(e){return e[On]?!0:(e[On]=!0,Ot(e,this.Me).forEach(n=>n[On]=!0),!1)}Ve(e){if(e.hasAttribute(this.R)||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 me(e)?[]:(K(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 mt;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=(mt=e.getAttribute(r))!=null?mt:e.getAttribute(s);e.removeAttribute(r),e.removeAttribute(s);let a=Je(e),c=zt.ft(this.o,a),u=e.parentNode;if(!u)return;let f=`${this.x} => ${n}`,l=new Comment(`__begin__ ${f}`);u.insertBefore(l,e),Ge(l,a),a.forEach(I=>{z(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),G=(I,X)=>I===X,B=(I,X,g)=>{let v=o.createContext(X,I),S=ft.mt(v.index,X),J=()=>{var k,ne;let O=(ne=(k=p.parentNode)!=null?k:l.parentNode)!=null?ne:u,R=g.previousSibling,A=[];for(let ae=0;ae<a.length;++ae){let pe=a[ae].cloneNode(!0);O.insertBefore(pe,g),A.push(pe)}for(c?c.y(h,A):ke(h,A),R=R.nextSibling;R!==g;)S.items.push(R),R=R.nextSibling};return b?(b[0]=v.ctx,y.E(b,J)):y.E(d,()=>{y.w(v.ctx),J()}),S},j=(I,X)=>{let g=P.D(I).items,v=g[g.length-1].nextSibling;for(let S of g)z(S);P.ce(I,B(I,X,v))},te=(I,X)=>{P.w(B(I,X,p))},re=I=>{for(let X of P.D(I).items)z(X)},M=I=>{let X=P.S;for(let g=I;g<X;++g)P.D(g).index(g)},T=I=>{let X=l.parentNode,g=p.parentNode;if(!X||!g)return;let v=P.S;K(I)&&(I=I());let S=H(I[0]);if(w(S)&&S.length===0){Ee(l,p),P.Oe(0);return}let J=[];for(let D of this.Le(I[0]))J.push(D);let O=Kt.dt({oldItems:P.T,newValues:J,getKey:E,isSameValue:G,mountNewValue:(D,ce,Ve)=>B(D,ce,Ve),removeMountItem:D=>{for(let ce=0;ce<D.items.length;++ce)z(D.items[ce])},endAnchor:p});if(O){P.T=O,P.P.clear();for(let D=0;D<O.length;++D){let ce=O[D];ce.order=D,ce.index(D);let Ve=E(ce.value);Ve!==void 0&&P.P.set(Ve,ce)}return}let R=0,A=Number.MAX_SAFE_INTEGER,k=v,ne=this.o.r.forGrowThreshold,ae=()=>P.S<k+ne;for(let D of J){let ce=()=>{if(R<v){let Ve=P.D(R++);if(V(Ve.value,D)){if(G(Ve.value,D))return;j(R-1,D);return}let dt=P.ht(E(D));if(dt>=R&&dt-R<10){if(--R,A=Math.min(A,R),re(R),P.Ne(R),--v,dt>R+1)for(let mn=R;mn<dt-1&&mn<v&&!V(P.D(R).value,D);)++mn,re(R),P.Ne(R),--v;ce();return}ae()?(P.yt(R-1,B(R,D,P.D(R-1).items[0])),A=Math.min(A,R-1),++v):j(R-1,D)}else te(R++,D)};ce()}let pe=R;for(v=P.S;R<v;)re(R++);P.Oe(pe),M(A)},N=()=>{Q.stop(),qe(),qe=Ao},Q=y.V(o.list),Fe=Q.value,qe=Ao,pn=0,P=new ft(E);for(let I of this.Le(Fe()[0]))P.w(B(pn++,I,p));q(l,N),qe=Q.subscribe(T)}bt(e){var c,u;let n=Gt.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=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:Ss};return s&&(y.index=p[s.startsWith("#")?s.substring(1):s]=se(l)),y}}}xt(e){if(!e)return o=>o;let n=e.trim();if(!n)return o=>o;if(n.includes(".")){let o=this.Rt(n),r=o.length>1?o.slice(1):void 0;return s=>{let i=H(s),a=this.Ie(i,o);return a!==void 0||!r?a:this.Ie(i,r)}}return o=>{var r;return H((r=H(o))==null?void 0:r[n])}}Rt(e){return e.split(".").filter(n=>n.length>0)}Ie(e,n){var r;let o=e;for(let s of n)o=(r=H(o))==null?void 0:r[s];return H(o)}};m(Gt,"Tt",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+(.*)\s*$/);var Wt=Gt;var Jt=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,"O");m(this,"F");m(this,"r");m(this,"R");m(this,"Be");this.m=e,this.r=e.r,this.De=new Wt(this),this.Pe=new Nt(this),this.Ue=new Ft(this),this.O=new $t(this),this.F=new _t(this),this.R=this.r.p.pre,this.Be=this.r.p.dynamic}Et(e){let n=de(e)?[e]:e.querySelectorAll("template");for(let o of n){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);ke(this,i)}}$(e){++this.pe;try{if(e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.R)||this.Pe.k(e)||this.De.k(e)||this.Ue.k(e))return;this.O.k(e),this.Et(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,q(s,()=>{z(e)}),o.appendChild(e),!0}St(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.F.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.Se;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.R))return;let a=n.getAttribute(o);n.removeAttribute(o);let c=u=>{let f=u;for(;f;){let l=f.getAttribute(at);if(l)return l;f=f.parentElement}return null};if(Cn()){let u=c(n);if(u){this.m.E(po(u),()=>{this.M(e,n,a,s,i)});return}}this.M(e,n,a,s,i)}vt(e,n,o){return e!==Lt?!1:(F(o)||this.He(n,o)||this.St(n,o),!0)}M(e,n,o,r,s){if(n.nodeType!==Node.ELEMENT_NODE||o==null||this.vt(e,n,o))return;let i=this.At(r,e.once),a=this.kt(e,o),c=this.Nt(a,i);q(n,c.stop);let u=this.Ot(n,o,a,i,r,s),f=this.Mt(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=bo(e,this.Be);if(o)return this.m.V(_(o),void 0,void 0,void 0,n)}kt(e,n){return this.m.V(n,e.isLazy,e.isLazyKey,e.collectRefObj,e.once)}Nt(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}Ot(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}}Mt(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 No="http://www.w3.org/1999/xlink",vs={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 As(t){return!!t||t===""}var Ns=(t,e,n,o,r,s)=>{var a;if(o){s&&s.includes("camel")&&(o=_(o)),Qt(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];Qt(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;Qt(t,l,p,y)}else{let f=n==null?void 0:n[c],l=e[c++],p=e[c];Qt(t,l,p,f)}}},Mn={mount:()=>({update:({el:t,values:e,previousValues:n,option:o,previousOption:r,flags:s})=>{Ns(t,e,n,o,r,s)}})},Qt=(t,e,n,o)=>{if(o&&o!==e&&t.removeAttribute(o),me(e)){U(3,"r-bind",t);return}if(!W(e)){U(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){me(n)?t.removeAttributeNS(No,e.slice(6,e.length)):t.setAttributeNS(No,e,n);return}let r=e in vs;me(n)||r&&!As(n)?t.removeAttribute(e):t.setAttribute(e,r?"":n)};var Os=(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)Oo(t,s[c],i==null?void 0:i[c])}else Oo(t,s,i)}},kn={mount:()=>({update:({el:t,values:e,previousValues:n})=>{Os(t,e,n)}})},Oo=(t,e,n)=>{let o=t.classList,r=W(e),s=W(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?Xe(n):[],a=Xe(e);i.length>0&&o.remove(...i),a.length>0&&o.add(...a)}}else if(n){let i=s?Xe(n):[];i.length>0&&o.remove(...i)}};function Ms(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=yn(t),o=yn(e);if(n||o)return n&&o?t.getTime()===e.getTime():!1;if(n=st(t),o=st(e),n||o)return t===e;if(n=w(t),o=w(e),n||o)return n&&o?Ms(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 Xt(t,e){return t.findIndex(n=>we(n,e))}var Mo=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var Yt=t=>{if(!x(t))throw $(3,"pause");t(void 0,void 0,3)};var Zt=t=>{if(!x(t))throw $(3,"resume");t(void 0,void 0,4)};var Lo={mount:({el:t,parseResult:e,flags:n})=>({update:({values:o})=>{ks(t,o[0])},unmount:Ls(t,e,n)})},ks=(t,e)=>{let n=Do(t);if(n&&Io(t))w(e)?e=Xt(e,Se(t))>-1:fe(e)?e=e.has(Se(t)):e=Hs(t,e),t.checked=e;else if(n&&Vo(t))t.checked=we(e,Se(t));else if(n||Uo(t))Po(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Ho(t)){let o=t.options,r=o.length,s=t.multiple;for(let i=0;i<r;i++){let a=o[i],c=Se(a);if(s)w(e)?a.selected=Xt(e,c)>-1:a.selected=e.has(c);else if(we(Se(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else U(7,t)},lt=t=>(x(t)&&(t=t()),K(t)&&(t=t()),t?W(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}),Io=t=>t.type==="checkbox",Vo=t=>t.type==="radio",Po=t=>t.type==="number"||t.type==="range",Do=t=>t.tagName==="INPUT",Uo=t=>t.tagName==="TEXTAREA",Ho=t=>t.tagName==="SELECT",Ls=(t,e,n)=>{let o=e.value,r=lt(n==null?void 0:n.join(",")),s=lt(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=Do(t);return c&&Io(t)?Vs(t,a):c&&Vo(t)?Bs(t,a):c||Uo(t)?Is(t,i,a,o):Ho(t)?js(t,a,o):(U(7,t),()=>{})},ko=/[.,' ·٫]/,Is=(t,e,n,o)=>{let s=e.lazy?"change":"input",i=Po(t),a=()=>{!e.trim&&!lt(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=lt(o()[1]);if(i||C.number||C.int){if(C.int)d=parseInt(d);else{if(ko.test(d[d.length-1])&&d.split(ko).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},Vs=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=Se(t),a=t.checked,c=s();if(w(c)){let u=Xt(c,i),f=u!==-1;a&&!f?c.push(i):!a&&f&&c.splice(u,1)}else fe(c)?a?c.add(i):c.delete(i):s(Us(t,a))};return t.addEventListener(n,r),o},Se=t=>"_value"in t?t._value:t.value,Bo="trueValue",Ps="falseValue",jo="true-value",Ds="false-value",Us=(t,e)=>{let n=e?Bo:Ps;if(n in t)return t[n];let o=e?jo:Ds;return t.hasAttribute(o)?t.getAttribute(o):e},Hs=(t,e)=>{if(Bo in t)return we(e,t.trueValue);let o=jo;return t.hasAttribute(o)?we(e,t.getAttribute(o)):we(e,!0)},Bs=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=Se(t);s(i)};return t.addEventListener(n,r),o},js=(t,e,n)=>{let o="change",r=()=>{t.removeEventListener(o,s)},s=()=>{let i=e();if(!i)return;let c=lt(n()[1]).number,u=Array.prototype.filter.call(t.options,f=>f.selected).map(f=>c?Mo(Se(f)):Se(f));if(t.multiple){let f=i();try{if(Yt(i),fe(f)){f.clear();for(let l of u)f.add(l)}else w(f)?(f.splice(0),f.push(...u)):i(u)}finally{Zt(i),Y(i)}}else i(u[0])};return t.addEventListener(o,s),r};var $s=["stop","prevent","capture","self","once","left","right","middle","passive"],_s=t=>{let e={};if(F(t))return;let n=t.split(",");for(let o of $s)e[o]=n.includes(o);return e},Fs=(t,e,n,o,r)=>{var u,f;if(o){let l=e.value(),p=H(o.value()[0]);return W(p)?Ln(t,_(p),()=>e.value()[0],(u=r==null?void 0:r.join(","))!=null?u:l[1]):()=>{}}else if(n){let l=e.value();return Ln(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(K(p)&&(p=p()),L(p))for(let h of Object.entries(p)){let y=h[0],d=()=>{let b=e.value()[l];return K(b)&&(b=b()),b=b[y],K(b)&&(b=b()),b},C=p[y+"_flags"];s.push(Ln(t,y,d,C))}else U(2,"r-on",t)}return i},In={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})=>Fs(t,e,n,o,r)},qs=(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]},Ln=(t,e,n,o)=>{if(F(e))return U(5,"r-on",t),()=>{};let r=_s(o),s=r?{capture:r.capture,passive:r.passive,once:r.once}:void 0,i;[e,i]=qs(e,o);let a=f=>{if(!i(f)||!n&&e==="submit"&&(r!=null&&r.prevent))return;let l=n(f);K(l)&&(l=l(f)),K(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 zs=(t,e,n,o)=>{if(n){o&&o.includes("camel")&&(n=_(n)),tt(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];tt(t,a,c)}else if(L(i))for(let a of Object.entries(i)){let c=a[0],u=a[1];tt(t,c,u)}else{let a=e[s++],c=e[s];tt(t,a,c)}}},$o={mount:()=>({update:({el:t,values:e,option:n,flags:o})=>{zs(t,e,n,o)}})};function Ks(t){return!!t||t===""}var tt=(t,e,n)=>{if(me(e)){U(3,":prop",t);return}if(e==="innerHTML"||e==="textContent"){let s=[...t.childNodes];setTimeout(()=>s.forEach(ye),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=Ks(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 _o={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 Ws=(t,e)=>{let n=Me(t).data,o=n._ord;oo(o)&&(o=n._ord=t.style.display),!!e[0]?t.style.display=o:t.style.display="none"},Fo={mount:()=>({update:({el:t,values:e})=>{Ws(t,e)}})};var Gs=(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)qo(t,s[c],i==null?void 0:i[c])}else qo(t,s,i)}},en={mount:()=>({update:({el:t,values:e,previousValues:n})=>{Gs(t,e,n)}})},qo=(t,e,n)=>{let o=t.style,r=W(e);if(e&&!r){if(n&&!W(n))for(let s in n)e[s]==null&&Pn(o,s,"");for(let s in e)Pn(o,s,e[s])}else{let s=o.display;if(r?n!==e&&(o.cssText=e):n&&t.removeAttribute("style"),"_ord"in Me(t).data)return;o.display=s}},zo=/\s*!important$/;function Pn(t,e,n){if(w(n))n.forEach(o=>{Pn(t,e,o)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let o=Js(t,e);zo.test(n)?t.setProperty(Qe(o),n.replace(zo,""),"important"):t[o]=n}}var Ko=["Webkit","Moz","ms"],Vn={};function Js(t,e){let n=Vn[e];if(n)return n;let o=_(e);if(o!=="filter"&&o in t)return Vn[e]=o;o=ut(o);for(let r=0;r<Ko.length;r++){let s=Ko[r]+o;if(s in t)return Vn[e]=s}return e}var ie=t=>Wo(H(t)),Wo=(t,e=new WeakMap)=>{if(!t||!L(t))return t;if(w(t))return t.map(ie);if(fe(t)){let o=new Set;for(let r of t.keys())o.add(ie(r));return o}if(Ae(t)){let o=new Map;for(let r of t)o.set(ie(r[0]),ie(r[1]));return o}if(e.has(t))return H(e.get(t));let n=gt({},t);e.set(t,n);for(let o of Object.entries(n))n[o[0]]=Wo(H(o[1]),e);return n};var Qs=(t,e)=>{var o;let n=e[0];t.textContent=fe(n)?JSON.stringify(ie([...n])):Ae(n)?JSON.stringify(ie([...n])):L(n)?JSON.stringify(ie(n)):(o=n==null?void 0:n.toString())!=null?o:""},Go={mount:()=>({update:({el:t,values:e})=>{Qs(t,e)}})};var Jo={mount:()=>({update:({el:t,values:e})=>{tt(t,"value",e[0])}})};var Ie=class Ie{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=Ie.je)!=null?e:Ie.je=new Ie}It(){let e={},n=globalThis;for(let o of Ie.Lt.split(","))e[o]=n[o];return e.ref=xe,e.sref=se,e.flatten=ie,e}addComponent(...e){for(let n of e){if(!n.defaultName){De.warning("Registered component's default name is not defined",n);continue}this.Z.set(ut(n.defaultName),n),this._.set(ut(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this.B={".":$o,":":Mn,"@":In,[`${e}on`]:In,[`${e}bind`]:Mn,[`${e}html`]:qt,[`${e}text`]:Go,[`${e}show`]:Fo,[`${e}model`]:Lo,":style":en,[`${e}style`]:en,[`${e}bind:style`]:en,":class":kn,[`${e}bind:class`]:kn,":ref":_o,":value":Jo,[`${e}teleport`]:Lt},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(Ie,"je"),m(Ie,"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 le=Ie;var tn=(t,e)=>{if(!t)return;let o=(e!=null?e:le.getDefault()).p,r=/(\{\{[^]*?\}\}|\[\[[^]*?\]\])/g,s=[{start:"{{",end:"}}"},{start:"[[",end:"]]"}];for(let i of Ys(t,o.pre,s))Xs(i,o.text,r,s)},Xs=(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=Qo(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=Qo(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)},Ys=(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 Re(s))r(a)}};return r(t),o},Qo=(t,e)=>e.find(n=>t.startsWith(n.start)&&t.endsWith(n.end));var Zs=9,ei=10,ti=13,ni=32,ve=46,nn=44,oi=39,ri=34,on=40,nt=41,rn=91,Dn=93,Un=63,si=59,Xo=58,Yo=123,sn=125,je=43,an=45,Hn=96,Zo=47,Bn=92,er=new Set([2,3]),ir={"=":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},ii=Zn(gt({"=>":2},ir),{"||":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}),ar=Object.keys(ir),ai=new Set(ar),$n=new Set(["=>"]);ar.forEach(t=>$n.add(t));var tr={true:!0,false:!1,null:null},ci="this",ot="Expected ",$e="Unexpected ",Fn="Unclosed ",ui=ot+":",nr=ot+"expression",fi="missing }",li=$e+"object property",pi=Fn+"(",or=ot+"comma",rr=$e+"token ",mi=$e+"period",jn=ot+"expression after ",di="missing unaryOp argument",hi=Fn+"[",yi=ot+"exponent (",gi="Variable names cannot start with a number (",bi=Fn+'quote after "',pt=t=>t>=48&&t<=57,sr=t=>ii[t],_n=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)||pt(e)}i(e){return new Error(`${e} at character ${this.e}`)}g(){let e=this.h,n=this.u,o=this.e;for(;e===ni||e===Zs||e===ei||e===ti;)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===si||o===nn)this.e++;else{let r=this.v();if(r)n.push(r);else if(this.e<this.u.length){if(o===e)break;throw this.i($e+'"'+this.H+'"')}}}return n}v(){var n;let e=(n=this.Pt())!=null?n:this.$e();return this.g(),this.Dt(e)}de(){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.de(),!n))return s;if(r={value:n,prec:sr(n),right_a:$n.has(n)},i=this.z(),!i)throw this.i(jn+n);let u=[s,r,i];for(;n=this.de();){o=sr(n),r={value:n,prec:o,right_a:$n.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(jn+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.me(e);let n=this.h;if(pt(n)||n===ve)return this.Bt();if(n===oi||n===ri)e=this.Ht();else if(n===rn)e=this.jt();else{let o=this.$t();if(o){let r=this.z();if(!r)throw this.i(di);return this.me({type:7,operator:o,argument:r})}this.K(n)?(e=this.ye(),e.name in tr?e={type:4,value:tr[e.name],raw:e.name}:e.name===ci&&(e={type:5})):n===on&&(e=this._t())}return e?(e=this.W(e),this.me(e)):!1}_e(e,n,o){if(e==="=>"){let r=n.type===1?n.expressions:[n];return{type:15,params:r,body:o}}return ai.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.Ft(e),e.node||(this.qt(e),e.node)||(this.Kt(e),e.node)||(this.Fe(e),e.node)||this.zt(e),e.node}me(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===an?(this.e++,"-"):o===33?(this.e++,"!"):o===126?(this.e++,"~"):o===je?(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===ve||n===rn||n===on||n===Un;){let o;if(n===Un){if(this.u.charCodeAt(this.e+1)!==ve)break;o=!0,this.e+=2,this.g(),n=this.h}if(this.e++,n===rn){if(e={type:3,computed:!0,object:e,property:this.v()},this.g(),n=this.h,n!==Dn)throw this.i(hi);this.e++}else n===on?e={type:6,arguments:this.qe(nt),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(;pt(e.charCodeAt(o));)o++;if(e.charCodeAt(o)===ve)for(o++;pt(e.charCodeAt(o));)o++;let r=e.charCodeAt(o);if(r===101||r===69){o++;let a=e.charCodeAt(o);(a===je||a===an)&&o++;let c=o;for(;pt(e.charCodeAt(o));)o++;if(c===o){this.e=o;let u=e.slice(n,o);throw this.i(yi+u+this.H+")")}}this.e=o;let s=e.slice(n,o),i=e.charCodeAt(o);if(this.K(i))throw this.i(gi+s+this.H+")");if(i===ve||s.length===1&&s.charCodeAt(0)===ve)throw this.i(mi);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===Bn){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(bi+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($e+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)}}qe(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===nt&&r&&r>=n.length)throw this.i(rr+String.fromCharCode(e));break}else if(s===nn){if(this.e++,r++,r!==n.length){if(e===nt)throw this.i(rr+",");for(let i=n.length;i<r;i++)n.push(null)}}else{if(n.length!==r&&r!==0)throw this.i(or);{let i=this.v();if(!i||i.type===0)throw this.i(or);n.push(i)}}}if(!o)throw this.i(ot+String.fromCharCode(e));return n}_t(){this.e++;let e=this.fe(nt);if(this.f(nt))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.i(pi)}jt(){return this.e++,{type:9,elements:this.qe(Dn)}}Ft(e){if(this.f(Yo)){this.e++;let n=[];for(;!isNaN(this.h);){if(this.g(),this.f(sn)){this.e++,e.node=this.W({type:10,properties:n});return}let o=this.v();if(!o)break;if(this.g(),o.type===2&&(this.f(nn)||this.f(sn)))n.push({type:12,computed:!1,key:o,value:o,shorthand:!0});else if(this.f(Xo)){this.e++;let r=this.v();if(!r)throw this.i(li);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(nn)&&this.e++}throw this.i(fi)}}qt(e){let n=this.h;if((n===je||n===an)&&n===this.u.charCodeAt(this.e+1)){this.e+=2;let o=e.node={type:13,operator:n===je?"++":"--",argument:this.W(this.ye()),prefix:!0};if(!o.argument||!er.has(o.argument.type))throw this.i($e+o.operator)}}Gt(e){let n=e.node,o=this.h;if((o===je||o===an)&&o===this.u.charCodeAt(this.e+1)){if(!er.has(n.type))throw this.i($e+(o===je?"++":"--"));this.e+=2,e.node={type:13,operator:o===je?"++":"--",argument:n,prefix:!1}}}Kt(e){this.u.charCodeAt(this.e)===ve&&this.u.charCodeAt(this.e+1)===ve&&this.u.charCodeAt(this.e+2)===ve&&(this.e+=3,e.node={type:14,argument:this.v()})}Xt(e){if(e.node&&this.f(Un)){this.e++;let n=e.node,o=this.v();if(!o)throw this.i(nr);if(this.g(),this.f(Xo)){this.e++;let r=this.v();if(!r)throw this.i(nr);e.node={type:11,test:n,consequent:o,alternate:r}}else throw this.i(ui)}}Qt(e){if(this.g(),this.f(on)){let n=this.e;if(this.e++,this.g(),this.f(nt)){this.e++;let o=this.de();if(o==="=>"){let r=this.$e();if(!r)throw this.i(jn+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(Hn)&&(e.node={type:17,tag:n,quasi:this.Fe(e)})}Fe(e){if(!this.f(Hn))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===Hn)return u(!0),this.e+=1,e.node=r,r;if(f===36&&n.charCodeAt(this.e+1)===Yo){if(u(!1),this.e+=2,r.expressions.push(...this.fe(sn)),!this.f(sn))throw this.i("unclosed ${");this.e+=1,s=this.e}else if(f===Bn){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(rn)?o=!0:o&&this.f(Dn)&&(o=!1),this.e+=this.f(Bn)?2:1}throw this.i("Unclosed Regex")}},cr=t=>new _n(t).parse();var Ti={"=>":(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)=>yt(t,e)},xi={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},pr=t=>{if(!(t!=null&&t.some(lr)))return t;let e=[];return t.forEach(n=>lr(n)?e.push(...n):e.push(n)),e},ur=(...t)=>pr(t),qn=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Ci={"++":(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]--}},fr={"=":(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(yt(o(),n)):t[e]=yt(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}},cn=(t,e)=>K(t)?t.bind(e):t,zn=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],cn(H(o[r]),o);for(let i of this.l)if(r in i)return this.A=i[r],cn(H(i[r]),i);let s=this.ze;if(s&&r in s)return this.A=s[r],cn(H(s[r]),s)}5(e,n,o){return this.l[0]}0(e,n,o){return this.Ye(n,o,ur,...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,cn(H(i),r)}4(e,n,o){return e.value}6(e,n,o){let r=(i,...a)=>K(i)?i(...pr(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,xi[e.operator],e.argument)}8(e,n,o){let r=Ti[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,ur,...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,qn(l,o)),u=l=>this.Ze(a,e.value,n,qn(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=H(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?Ci:Ei;if(r.type===2){let a=r.name,c=this.Xe(a,o);return me(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(me(a))return;let c=this.b(e.right,n,o);return fr[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 fr[s](i,a,c)}}14(e,n,o){let r=this.b(e.argument,n,o);return w(r)&&(r.s=mr),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=H(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}=Dt(()=>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,qn(u,n)):this.b(a,e,n)));return o(...i)}},mr=Symbol("s"),lr=t=>(t==null?void 0:t.s)===mr,dr=(t,e,n,o,r,s,i)=>new zn(e,n,o,r,i).eval(t,s);var hr={},yr=t=>!!t,un=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(yr).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(yr).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,G,B)=>{try{let j=dr(E,V,h,n,o,B,r);return G&&j.refs.length>0&&y.push(...j.refs),{value:j.value,refs:j.refs,ref:j.ref}}catch(j){U(6,`evaluation error: ${e}`,j)}return{value:void 0,refs:[]}};try{let E=(b=hr[e])!=null?b:cr("["+e+"]");hr[e]=E;let V=this.l.slice(),G=E.elements,B=G.length,j=new Array(B);p.refs=j;let te=()=>{y.length=0,s||(d.clear(),u());let re=new Array(B);for(let M=0;M<B;++M){let T=G[M];if(n!=null&&n(M,-1)){re[M]=Q=>C(T,V,!1,{$event:Q}).value;continue}let N=C(T,V,!0);re[M]=N.value,j[M]=N.ref}if(!s)for(let M of y)d.has(M)||(d.add(M),a.push(oe(M,te)));if(i=re,c.size!==0)for(let M of c)c.has(M)&&M(i)};te()}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}E(e,n){try{this.ce(e),n()}finally{this.Yt()}}Yt(){var e;this.l=(e=this.tt.pop())!=null?e:[]}};var gr=t=>{let e=t.charCodeAt(0);return e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122||t==="-"||t==="_"||t===":"},Ri=(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},wi=(t,e)=>{let n=e?2:1;for(;n<t.length&&(t[n]===" "||t[n]===`
3
- `);)++n;if(n>=t.length||!gr(t[n]))return null;let o=n;for(;n<t.length&&gr(t[n]);)++n;return{start:o,end:n}},br=new Set(["table","thead","tbody","tfoot"]),Si=new Set(["thead","tbody","tfoot"]),vi=new Set(["caption","colgroup","thead","tbody","tfoot","tr"]),Ai=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),Tr=(t,e)=>`${t.slice(0,t.length-2)}></${e}>`,fn=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=Ri(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=wi(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),br.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"):Si.has((s=y==null?void 0:y.effectiveTag)!=null?s:"")?d=p==="tr"?null:"tr":(y==null?void 0:y.effectiveTag)==="table"?d=vi.has(p)?null:"tr":(y==null?void 0:y.effectiveTag)==="tr"&&(d=p==="td"||p==="th"?null:"td");let C=h&&!Ai.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?Tr(E,d):E)}else n.push(C?Tr(c,p):c);if(!h){let b=d==="trx"?"tr":d==="tdx"?"td":d==="thx"?"th":d||p;o.push({replacementHost:d,effectiveTag:b}),br.has(b)&&++r}e=a+1}return n.join("")};var Ni="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",Oi=new Set(Ni.toUpperCase().split(",")),Mi="http://www.w3.org/2000/svg",xr=(t,e)=>{de(t)?t.content.appendChild(e):t.appendChild(e)},Kn=(t,e,n,o)=>{var i;let r=t.t;if(r){let a=n&&Oi.has(r.toUpperCase())?document.createElementNS(Mi,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(kt(l,o),p)}let u=t.c;if(u)for(let f of u)Kn(f,a,n,o);xr(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)xr(e,a);else throw new Error("unsupported node type.")}},_e=(t,e,n)=>{n!=null||(n=le.getDefault());let o=document.createDocumentFragment();if(!w(t))return Kn(t,o,!!e,n),o;for(let r of t)Kn(r,o,!!e,n);return o};var Cr=(t,e={selector:"#app"},n)=>{W(e)&&(e={selector:"#app",template:e}),To(t)&&(t=t.context);let o=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!o||!Ce(o))throw $(0);n||(n=le.getDefault());let r=()=>{for(let a of[...o.childNodes])z(a)},s=a=>{for(let c of a)o.appendChild(c)};if(e.template){let a=document.createRange().createContextualFragment(fn(e.template));r(),s(a.childNodes),e.element=a}else if(e.json){let a=_e(e.json,e.isSVG,n);r(),s(a.childNodes)}return n.useInterpolation&&tn(o,n),new Wn(t,o,n).y(),q(o,()=>{Ne(t)}),It(t),{context:t,unmount:()=>{z(o)},unbind:()=>{ye(o)}}},Wn=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 un([e],o),this.o=new Jt(this.m)}y(){this.o.$(this.nt)}};var rt=t=>{if(w(t))return t.map(r=>rt(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=Re(t);return o.length>0&&(e.c=[...o].map(r=>rt(r))),e};var Er=(t,e={})=>{var s,i,a,c,u,f;w(e)&&(e={props:e}),W(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 $(1,t.selector);l.remove(),t.element=l}else if(t.template){let l=document.createRange().createContextualFragment(fn(t.template));t.element=l}else t.json&&(t.element=_e(t.json,t.isSVG,e.config),o=!0);t.element||(t.element=document.createDocumentFragment()),((i=e.useInterpolation)==null||i)&&tn(t.element,(a=e.config)!=null?a:le.getDefault());let r=t.element;if(!o&&(((u=t.isSVG)!=null?u:ct(r)&&((c=r.hasAttribute)!=null&&c.call(r,"isSVG")))||ct(r)&&r.querySelector("[isSVG]"))){let l=r.content,p=l?[...l.childNodes]:[...r.childNodes],h=rt(p);t.element=_e(h,!0,e.config)}return{context:n,template:t.element,inheritAttrs:(f=e.inheritAttrs)!=null?f:!0,props:e.props,defaultName:e.defaultName}};var ln=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 Rr=t=>{var e;(e=Pe())==null||e.onMounted.push(t)};var wr=t=>{let e,n={},o=(...r)=>{if(r.length<=2&&0 in r)throw $(4);return e&&!n.isStopped?e(...r):(e=ki(t,n),e(...r))};return o[Z]=1,Le(o,!0),o.stop=()=>{var r,s;return(s=(r=n.ref)==null?void 0:r.stop)==null?void 0:s.call(r)},ee(()=>o.stop(),!0),o},ki=(t,e)=>{var s;let n=(s=e.ref)!=null?s:se(null);e.ref=n,e.isStopped=!1;let o=0,r=Be(()=>{if(o>0){r(),e.isStopped=!0,Y(n);return}n(t()),++o});return n.stop=r,n};var Sr=(t,e)=>{let n={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw $(4);return o&&!n.isStopped?o(...s):(o=Li(t,e,n),o(...s))};return r[Z]=1,Le(r,!0),r.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},ee(()=>r.stop(),!0),r},Li=(t,e,n)=>{var a;let o=(a=n.ref)!=null?a:se(null);n.ref=o,n.isStopped=!1;let r=0,s=c=>{if(r>0){o.stop(),n.isStopped=!0,Y(o);return}let u=t.map(f=>f());o(e(...u)),++r},i=[];for(let c of t){let u=oe(c,s);i.push(u)}return s(null),o.stop=()=>{i.forEach(c=>{c()})},o};var vr=(t,e)=>{let n={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw $(4);return o&&!n.isStopped?o(...s):(o=Ii(t,e,n),o(...s))};return r[Z]=1,Le(r,!0),r.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},ee(()=>r.stop(),!0),r},Ii=(t,e,n)=>{var s;let o=(s=n.ref)!=null?s:se(null);n.ref=o,n.isStopped=!1;let r=0;return o.stop=oe(t,i=>{if(r>0){o.stop(),n.isStopped=!0,Y(o);return}o(e(i)),++r},!0),o};var Ar=t=>(t[Rt]=1,t);var Nr=(t,e)=>{if(!e)throw $(5);let o=He(t)?xe:a=>a,r=()=>localStorage.setItem(e,JSON.stringify(ie(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=Be(r);return ee(i,!0),t};var Gn=(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},Or=Gn;var Mr=(t,e,n)=>{let o=[],r=()=>{e(t.map(i=>i()))};for(let i of t)o.push(oe(i,r));n&&r();let s=()=>{for(let i of o)i()};return ee(s,!0),s};var kr=t=>{if(!x(t))throw $(3,"observerCount");return t(void 0,void 0,2)};var Lr=t=>{Jn();try{t()}finally{Qn()}},Jn=()=>{Te.stack||(Te.stack=[]),Te.stack.push(new Set)},Qn=()=>{let t=Te.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 Te.stack;for(let n of e)try{Y(n)}catch(o){console.error(o)}};return jr(Vi);})();
1
+ "use strict";var Regor=(()=>{var ht=Object.defineProperty,Ir=Object.defineProperties,Vr=Object.getOwnPropertyDescriptor,Pr=Object.getOwnPropertyDescriptors,Dr=Object.getOwnPropertyNames,Xn=Object.getOwnPropertySymbols;var Yn=Object.prototype.hasOwnProperty,Ur=Object.prototype.propertyIsEnumerable;var yt=Math.pow,dn=(t,e,n)=>e in t?ht(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,gt=(t,e)=>{for(var n in e||(e={}))Yn.call(e,n)&&dn(t,n,e[n]);if(Xn)for(var n of Xn(e))Ur.call(e,n)&&dn(t,n,e[n]);return t},Zn=(t,e)=>Ir(t,Pr(e));var Hr=(t,e)=>{for(var n in e)ht(t,n,{get:e[n],enumerable:!0})},Br=(t,e,n,o)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Dr(e))!Yn.call(t,r)&&r!==n&&ht(t,r,{get:()=>e[r],enumerable:!(o=Vr(e,r))||o.enumerable});return t};var jr=t=>Br(ht({},"__esModule",{value:!0}),t);var m=(t,e,n)=>dn(t,typeof e!="symbol"?e+"":e,n);var eo=(t,e,n)=>new Promise((o,r)=>{var s=c=>{try{a(n.next(c))}catch(l){r(l)}},i=c=>{try{a(n.throw(c))}catch(l){r(l)}},a=c=>c.done?o(c.value):Promise.resolve(c.value).then(s,i);a((n=n.apply(t,e)).next())});var Vi={};Hr(Vi,{ComponentHead:()=>We,ContextRegistry:()=>ln,RegorConfig:()=>le,addUnbinder:()=>z,batch:()=>Lr,collectRefs:()=>Dt,computeMany:()=>Sr,computeRef:()=>vr,computed:()=>wr,createApp:()=>Cr,defineComponent:()=>Er,drainUnbind:()=>no,endBatch:()=>Qn,entangle:()=>Ye,flatten:()=>ce,getBindData:()=>Le,html:()=>Gn,isDeepRef:()=>je,isRaw:()=>Ze,isRef:()=>x,markRaw:()=>Ar,observe:()=>se,observeMany:()=>Mr,observerCount:()=>kr,onMounted:()=>Rr,onUnmounted:()=>re,pause:()=>Yt,persist:()=>Nr,pval:()=>uo,raw:()=>Or,ref:()=>Ce,removeNode:()=>W,resume:()=>Zt,silence:()=>Pt,sref:()=>ae,startBatch:()=>Jn,toFragment:()=>qe,toJsonTemplate:()=>rt,trigger:()=>Z,unbind:()=>ge,unref:()=>B,useScope:()=>Vt,warningHandler:()=>He,watchEffect:()=>$e});var ze=Symbol(":regor");var ge=t=>{let e=[t];for(let n=0;n<e.length;++n){let o=e[n];$r(o);for(let r=o.lastChild;r!=null;r=r.previousSibling)e.push(r)}},$r=t=>{let e=t[ze];if(!e)return;let n=e.unbinders;for(let o=0;o<n.length;++o)n[o]();n.length=0,t[ze]=void 0};var Ke=[],bt=!1,Tt,to=()=>{if(bt=!1,Tt=void 0,Ke.length!==0){for(let t=0;t<Ke.length;++t)ge(Ke[t]);Ke.length=0}},W=t=>{t.remove(),Ke.push(t),bt||(bt=!0,Tt=setTimeout(to,1))},no=()=>eo(null,null,function*(){Ke.length===0&&!bt||(Tt&&clearTimeout(Tt),to())});var G=t=>typeof t=="function",J=t=>typeof t=="string",oo=t=>typeof t=="undefined",de=t=>t==null||typeof t=="undefined",q=t=>typeof t!="string"||!(t!=null&&t.trim()),_r=Object.prototype.toString,hn=t=>_r.call(t),Oe=t=>hn(t)==="[object Map]",fe=t=>hn(t)==="[object Set]",yn=t=>hn(t)==="[object Date]",it=t=>typeof t=="symbol",w=Array.isArray,N=t=>t!==null&&typeof t=="object";var ro={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."},_=(t,...e)=>{let n=ro[t];return new Error(G(n)?n.call(ro,...e):n)};var xt=[],so=()=>{let t={onMounted:[],onUnmounted:[]};return xt.push(t),t},Ue=t=>{let e=xt[xt.length-1];if(!e&&!t)throw _(2);return e},io=t=>{let e=Ue();return t&&bn(t),xt.pop(),e},gn=Symbol("csp"),bn=t=>{let e=t,n=e[gn];if(n){let o=Ue();if(n===o)return;o.onMounted.length>0&&n.onMounted.push(...o.onMounted),o.onUnmounted.length>0&&n.onUnmounted.push(...o.onUnmounted);return}e[gn]=Ue()},Ct=t=>t[gn];var Me=t=>{var n,o;let e=(n=Ct(t))==null?void 0:n.onUnmounted;e==null||e.forEach(r=>{r()}),(o=t.unmounted)==null||o.call(t)};var ao={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]})},H=(t,...e)=>{let n=ao[t],o=G(n)?n.call(ao,...e):n,r=He.warning;r&&(J(o)?r(o):r(o,...o.args))},He={warning:console.warn};var Et=Symbol("ref"),te=Symbol("sref"),Rt=Symbol("raw");var x=t=>t!=null&&t[te]===1;var ke=class extends Error{constructor(n,o){super(o);m(this,"propPath");m(this,"detail");this.name="PropValidationError",this.propPath=n,this.detail=o}},Te=(t,e)=>{throw new ke(t,`${e}.`)},wt=t=>{var n;if(t===null)return"null";if(t===void 0)return"undefined";if(x(t))return`ref<${wt(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"},Fr=t=>t.length>60?`${t.slice(0,57)}...`:t,at=(t,e=0)=>{if(e>1)return"unknown";if(x(t)){let s=t();return`ref(${at(s,e+1)})`}if(typeof t=="string")return Fr(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=>at(i,e+1)).join(", ");return t.length>5?`[${s}, ...]`:`[${s}]`}if(N(t)){let s=Object.entries(t).slice(0,5);if(s.length===0)return"{}";let i=s.map(([a,c])=>{let l=at(c,e+1);return`${a}: ${l}`}).join(", ");return Object.keys(t).length>5?`{ ${i}, ... }`:`{ ${i} }`}return"unknown"},ue=t=>{if(x(t))return`got ${wt(t)}(${at(t())})`;let e=wt(t),n=at(t);return`got ${e} (${n})`},qr=t=>t instanceof ke?t.detail:t instanceof Error?t.message:String(t),co=(t,e)=>{let n=`, ${ue(e)}.`;return t.endsWith(n)?t.slice(0,-n.length):t},zr=(t,e,n)=>{if(e instanceof ke){if(e.propPath===t)return co(e.detail,n);if(e.propPath===`${t}.value`&&x(n)){let o=co(e.detail,n());return o.startsWith("expected ")?`expected ref<${o.slice(9)}>`:`expected ref where ${o}`}}return qr(e)},Kr=(t,e,n)=>{let o=[];for(let r of e){let s=zr(t,r,n);o.includes(s)||o.push(s)}return o.length===0?ue(n):o.length===1?`${o[0]}, ${ue(n)}`:`${o.join(" or ")}, ${ue(n)}`},Wr=t=>typeof t=="string"?`"${t}"`:typeof t=="number"||typeof t=="boolean"?String(t):t===null?"null":t===void 0?"undefined":wt(t),Gr=(t,e)=>{typeof t!="string"&&Te(e,`expected string, ${ue(t)}`)},Jr=(t,e)=>{typeof t!="number"&&Te(e,`expected number, ${ue(t)}`)},Qr=(t,e)=>{typeof t!="boolean"&&Te(e,`expected boolean, ${ue(t)}`)},Xr=t=>(e,n)=>{e instanceof t||Te(n,`expected instance of ${t.name||"provided class"}, ${ue(e)}`)},Yr=t=>(e,n,o)=>{e!==void 0&&t(e,n,o)},Zr=t=>(e,n,o)=>{e!==null&&t(e,n,o)},es=(...t)=>(e,n,o)=>{let r=[];for(let s of t)try{s(e,n,o);return}catch(i){r.push(i)}Te(n,Kr(n,r,e))},ts=t=>(e,n)=>{t.includes(e)||Te(n,`expected one of ${t.map(o=>Wr(o)).join(", ")}, ${ue(e)}`)},ns=t=>(e,n,o)=>{w(e)||Te(n,`expected array, ${ue(e)}`);let r=e;for(let s=0;s<r.length;++s)t(r[s],`${n}[${s}]`,o)};function os(t){return(e,n,o)=>{N(e)||Te(n,`expected object, ${ue(e)}`);let r=e;for(let s in t){let i=t[s];if(!i)continue;i(r[s],`${n}.${s}`,o)}}}var rs=t=>(e,n,o)=>{if(x(e)){t(e(),`${n}.value`,o);return}Te(n,`expected ref, ${ue(e)}`)},uo={fail:Te,describe:ue,isString:Gr,isNumber:Jr,isBoolean:Qr,isClass:Xr,optional:Yr,nullable:Zr,or:es,oneOf:ts,arrayOf:ns,shape:os,refOf:rs};var ss=(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 ke?n.propPath:e,s=n instanceof ke?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})},We=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=ss(this.G,o,i);if(this.J==="warn"){He.warning(a.message,a);continue}throw a}}}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)W(e),e=e.nextSibling;for(let o of this.ctx)Me(o)}};var Le=t=>{let e=t,n=e[ze];if(n)return n;let o={unbinders:[],data:{}};return e[ze]=o,o};var z=(t,e)=>{Le(t).unbinders.push(e)};var vt={},St={},fo=1,lo=t=>{let e=(fo++).toString();return vt[e]=t,St[e]=0,e},Tn=t=>{St[t]+=1},xn=t=>{--St[t]===0&&(delete vt[t],delete St[t])},po=t=>vt[t],Cn=()=>fo!==1&&Object.keys(vt).length>0,ct="r-switch",is=t=>{let e=t.filter(o=>Re(o)).map(o=>[...o.querySelectorAll("[r-switch]")].map(r=>r.getAttribute(ct))),n=new Set;return e.forEach(o=>{o.forEach(r=>r&&n.add(r))}),[...n]},Ge=(t,e)=>{if(!Cn())return;let n=is(e);n.length!==0&&(n.forEach(Tn),z(t,()=>{n.forEach(xn)}))};var At=()=>{},En=(t,e,n,o)=>{let r=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,o),r.push(i)}Ie(e,r)},Rn=Symbol("r-if"),mo=Symbol("r-else"),ho=t=>t[mo]===1,Nt=class{constructor(e){m(this,"o");m(this,"N");m(this,"ge");m(this,"Q");m(this,"X");m(this,"x");m(this,"R");this.o=e,this.N=e.r.p.if,this.ge=Mt(e.r.p.if),this.Q=e.r.p.else,this.X=e.r.p.elseif,this.x=e.r.p.for,this.R=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}k(e){let n=e.hasAttribute(this.N);return n&&this.y(e),this.o.O.j(e,o=>{o.hasAttribute(this.N)&&this.y(o)}),n}Y(e){return e[Rn]?!0:(e[Rn]=!0,Ot(e,this.ge).forEach(n=>n[Rn]=!0),!1)}y(e){if(e.hasAttribute(this.R)||this.Y(e)||this.rt(e,this.x))return;let n=e.getAttribute(this.N);if(!n){H(0,this.N,e);return}e.removeAttribute(this.N),this.M(e,n)}U(e,n,o){let r=Je(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${o!=null?o:""}`);s.insertBefore(i,e),Ge(i,r),r.forEach(c=>{W(c)}),e.remove(),n!=="if"&&(e[mo]=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:()=>{En(r,this.o,s,a)},unmount:()=>{we(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} `),l=this.o.m.V(r),f=l.value,u=this.be(o,n),p=At;return z(a,()=>{l.stop(),p(),p=At}),p=l.subscribe(n),[{mount:()=>{En(s,this.o,i,c)},unmount:()=>{we(a,c)},isTrue:()=>!!f()[0],isMounted:!1},...u]}}M(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),l=c.value,f=!1,u=this.o.m,p=u.L(),h=()=>{u.E(p,()=>{if(l()[0])f||(En(r,this.o,s,a),f=!0),g.forEach(T=>{T.unmount(),T.isMounted=!1});else{we(i,a),f=!1;let T=!1;for(let R of g)!T&&R.isTrue()?(R.isMounted||(R.mount(),R.isMounted=!0),T=!0):(R.unmount(),R.isMounted=!1)}})},g=this.be(o,h),d=At;z(i,()=>{c.stop(),d(),d=At}),h(),d=c.subscribe(h)}};var Je=t=>{let e=he(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},Ie=(t,e)=>{for(let n=0;n<e.length;++n){let o=e[n];o.nodeType===Node.ELEMENT_NODE&&(ho(o)||t.$(o))}},Ot=(t,e)=>{var o;let n=t.querySelectorAll(e);return(o=t.matches)!=null&&o.call(t,e)?[t,...n]:n},he=t=>t instanceof HTMLTemplateElement,Re=t=>t.nodeType===Node.ELEMENT_NODE,ut=t=>t.nodeType===Node.ELEMENT_NODE,yo=t=>t instanceof HTMLSlotElement,Se=t=>he(t)?t.content.childNodes:t.childNodes,we=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let o=n.nextSibling;W(n),n=o}},go=function(){return this()},as=function(t){return this(t)},cs=()=>{throw new Error("value is readonly.")},us={get:go,set:as,enumerable:!0,configurable:!1},fs={get:go,set:cs,enumerable:!0,configurable:!1},Ve=(t,e)=>{Object.defineProperty(t,"value",e?fs:us)},bo=(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},Mt=t=>`[${CSS.escape(t)}]`,kt=(t,e)=>(t.startsWith("@")&&(t=e.p.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.p.dynamic)),t),wn=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},ls=/-(\w)/g,F=wn(t=>t&&t.replace(ls,(e,n)=>n?n.toUpperCase():"")),ps=/\B([A-Z])/g,Qe=wn(t=>t&&t.replace(ps,"-$1").toLowerCase()),ft=wn(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var Lt={mount:()=>{}};var Xe=t=>{let e=t.trim();return e?e.split(/\s+/):[]};var It=t=>{var n,o;let e=(n=Ct(t))==null?void 0:n.onMounted;e==null||e.forEach(r=>{r()}),(o=t.mounted)==null||o.call(t)};var Sn=Symbol("scope"),Vt=t=>{try{so();let e=t();bn(e);let n={context:e,unmount:()=>Me(e),[Sn]:1};return n[Sn]=1,n}finally{io()}},To=t=>N(t)?Sn in t:!1;var vn={collectRefObj:!0,mount:({parseResult:t})=>({update:({values:e})=>{let n=t.context,o=e[0];if(N(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 re=(t,e)=>{var n;(n=Ue(e))==null||n.onUnmounted.push(t)};var se=(t,e,n,o=!0)=>{if(!x(t))throw _(3,"observe");n&&e(t());let s=t(void 0,void 0,0,e);return o&&re(s,!0),s};var Ye=(t,e)=>{if(t===e)return()=>{};let n=se(t,r=>e(r)),o=se(e,r=>t(r));return e(t()),()=>{n(),o()}};var Ze=t=>!!t&&t[Rt]===1;var je=t=>(t==null?void 0:t[Et])===1;var ye=[],xo=t=>{var e;ye.length!==0&&((e=ye[ye.length-1])==null||e.add(t))},$e=t=>{if(!t)return()=>{};let e={stop:()=>{}};return ms(t,e),re(()=>e.stop(),!0),e.stop},ms=(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(ye.push(s),t(i=>n.push(i)),o)return;for(let i of[...s]){let a=se(i,()=>{r(),$e(t)});n.push(a)}}finally{ye.pop()}},Pt=t=>{let e=ye.length,n=e>0&&ye[e-1];try{return n&&ye.push(null),t()}finally{n&&ye.pop()}},Dt=t=>{try{let e=new Set;return ye.push(e),{value:t(),refs:[...e]}}finally{ye.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)||fe(r))for(let s of r)Z(s,e,!0);else if(Oe(r))for(let s of r)Z(s[0],e,!0),Z(s[1],e,!0);if(N(r))for(let s in r)Z(r[s],e,!0)}};function ds(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var et=(t,e,n)=>{n.forEach(function(o){let r=t[o];ds(e,o,function(...i){let a=r.apply(this,i),c=this[te];for(let l of c)Z(l);return a})})},Ut=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var Co=Array.prototype,An=Object.create(Co),hs=["push","pop","shift","unshift","splice","sort","reverse"];et(Co,An,hs);var Eo=Map.prototype,Ht=Object.create(Eo),ys=["set","clear","delete"];Ut(Ht,"Map");et(Eo,Ht,ys);var Ro=Set.prototype,Bt=Object.create(Ro),gs=["add","clear","delete"];Ut(Bt,"Set");et(Ro,Bt,gs);var xe={},ae=t=>{if(x(t)||Ze(t))return t;let e={auto:!0,_value:t},n=c=>N(c)?te in c?!0:w(c)?(Object.setPrototypeOf(c,An),!0):fe(c)?(Object.setPrototypeOf(c,Bt),!0):Oe(c)?(Object.setPrototypeOf(c,Ht),!0):!1:!1,o=n(t),r=new Set,s=(c,l)=>{if(xe.stack&&xe.stack.length){xe.stack[xe.stack.length-1].add(a);return}r.size!==0&&Pt(()=>{for(let f of[...r.keys()])r.has(f)&&f(c,l)})},i=c=>{let l=c[te];l||(c[te]=l=new Set),l.add(a)},a=(...c)=>{if(!(2 in c)){let f=c[0],u=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,u),e._value):(xo(a),e._value)}switch(c[2]){case 0:{let f=c[3];if(!f)return()=>{};let u=p=>{r.delete(p)};return r.add(f),()=>{u(f)}}case 1:{let f=c[1],u=e._value;s(u,f);break}case 2:return r.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[te]=1,Ve(a,!1),o&&i(t),a};var Ce=t=>{if(Ze(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[Et]=1,w(t)){let n=t.length;for(let o=0;o<n;++o){let r=t[o];je(r)||(t[o]=Ce(r))}return e}if(!N(t))return e;for(let n of Object.entries(t)){let o=n[1];if(je(o))continue;let r=n[0];it(r)||(t[r]=null,t[r]=Ce(o))}return e};var wo=Symbol("modelBridge"),jt=()=>{},bs=t=>!!(t!=null&&t[wo]),Ts=t=>{t[wo]=1},xs=t=>{let e=Ce(t());return Ts(e),e},So={collectRefObj:!0,mount:({parseResult:t,option:e})=>{if(typeof e!="string"||!e)return jt;let n=F(e),o,r,s=jt,i=()=>{s(),s=jt,o=void 0,r=void 0},a=()=>{s(),s=jt},c=(f,u)=>{o!==f&&(a(),s=Ye(f,u),o=f)},l=()=>{var h;let f=(h=t.refs[0])!=null?h:t.value()[0],u=t.context,p=u[n];if(!x(f)){if(r&&p===r){r(f);return}if(i(),x(p)){p(f);return}u[n]=f;return}if(bs(f)){if(p===f)return;x(p)?c(f,p):u[n]=f;return}r||(r=xs(f)),u[n]=r,c(f,r)};return{update:()=>{l()},unmount:()=>{s()}}}};var $t=class{constructor(e){m(this,"o");m(this,"xe");m(this,"Te","");m(this,"Re",-1);this.o=e,this.xe=e.r.p.inherit}k(e){this.ot(e)}st(e){if(this.Re!==e.size){let n=[...e.keys()];this.Te=[...n,...n.map(Qe)].join(","),this.Re=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(!he(e))return!1;let n=e.getAttributeNames();return e.hasAttribute("name")?!0:n.some(o=>o.startsWith("#"))}ct(e){return he(e)&&e.getAttributeNames().length===0}ot(e){var l,f;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.Ee();if(q(a))return;let c=this.pt(e,a);for(let u of c){if(u.hasAttribute(n.R))continue;let p=u.parentNode;if(!p)continue;let h=u.nextSibling,g=F(u.tagName).toUpperCase(),d=i[g],E=d!=null?d:s.get(g);if(!E)continue;let T=E.template;if(!T)continue;let R=u.parentElement;if(!R)continue;let k=new Comment(" begin component: "+u.tagName),X=new Comment(" end component: "+u.tagName);R.insertBefore(k,u),u.remove();let P=n.r.p.context,U=n.r.p.contextAlias,pe=n.r.p.bind,Y=(f=(l=E.props)==null?void 0:l.map(F))!=null?f:[],L=(C,A)=>{let y={},$=C.hasAttribute(P);return o.E(A,()=>{if(o.w(y),$?n.y(vn,C,P):C.hasAttribute(U)&&n.y(vn,C,U),Y.length===0)return;let D=new Map(Y.map(S=>[S.toLowerCase(),S]));for(let S of[...Y,...Y.map(Qe)]){let V=C.getAttribute(S);V!==null&&(y[F(S)]=V,C.removeAttribute(S))}let Q=n.F.Ce(C,!1);for(let[S,V]of Q.entries()){let[v,K]=V.te;if(!K)continue;let ie=D.get(F(K).toLowerCase());ie&&(v!=="."&&v!==":"&&v!==pe||n.y(So,C,S,!0,ie,V.ne))}}),y},b=[...o.L()],O=()=>{var $;let C=L(u,b),A=new We(C,u,b,k,X,n.r.propValidationMode),y=Vt(()=>{var D;return(D=E.context(A))!=null?D:{}}).context;if(A.autoProps){for(let[D,Q]of Object.entries(C))if(D in y){let S=y[D];if(S===Q)continue;if(x(S)){x(Q)?A.entangle?z(k,Ye(Q,S)):S(Q()):S(Q);continue}}else y[D]=Q;for(let D of Y)D in y||(y[D]=void 0);($=A.onAutoPropsAssigned)==null||$.call(A)}return{componentCtx:y,head:A}},{componentCtx:j,head:De}=O(),me=[...Se(T)],pn=me.length,I=u.childNodes.length===0,st=C=>{var Q;let A=C.parentElement,y=C.name;if(q(y)&&(y=C.getAttributeNames().filter(S=>S.startsWith("#"))[0],q(y)?y="default":y=y.substring(1)),I){if(y==="default"){let S=n.r.p.text,V=u.getAttribute(S);if(!q(V)){let v=document.createElement("span");v.setAttribute(S,V),A.insertBefore(v,C),u.removeAttribute(S);return}}for(let S of[...C.childNodes])A.insertBefore(S,C);return}let $=u.querySelector(`template[name='${y}'], template[\\#${y}]`);!$&&y==="default"&&($=(Q=[...u.querySelectorAll("template:not([name])")].find(V=>this.ct(V)))!=null?Q:null);let D=S=>{De.enableSwitch&&o.E(b,()=>{o.w(j);let V=L(C,o.L());o.E(b,()=>{o.w(V);let v=o.L(),K=lo(v);for(let ie of S)Re(ie)&&(ie.setAttribute(ct,K),Tn(K),z(ie,()=>{xn(K)}))})})};if($){let S=[...Se($)];for(let V of S)A.insertBefore(V,C);D(S)}else{if(y!=="default"){for(let V of[...Se(C)])A.insertBefore(V,C);return}let S=[...Se(u)].filter(V=>!this.at(V));for(let V of S)A.insertBefore(V,C);D(S)}},M=C=>{if(!Re(C))return;let A=C.querySelectorAll("slot");if(yo(C)){st(C),C.remove();return}for(let y of A)st(y),y.remove()};(()=>{for(let C=0;C<pn;++C)me[C]=me[C].cloneNode(!0),p.insertBefore(me[C],h),M(me[C])})(),R.insertBefore(X,h);let ne=()=>{if(!E.inheritAttrs)return;let C=me.filter(y=>y.nodeType===Node.ELEMENT_NODE);C.length>1&&(C=C.filter(y=>y.hasAttribute(this.xe)));let A=C[0];if(A)for(let y of u.getAttributeNames()){if(y===P||y===U)continue;let $=u.getAttribute(y);if(y==="class"){let D=Xe($);D.length>0&&A.classList.add(...D)}else if(y==="style"){let D=A.style,Q=u.style;for(let S of Q)D.setProperty(S,Q.getPropertyValue(S))}else A.setAttribute(kt(y,n.r),$)}},oe=()=>{for(let C of u.getAttributeNames())!C.startsWith("@")&&!C.startsWith(n.r.p.on)&&u.removeAttribute(C)},Ee=()=>{ne(),oe(),o.w(j),n.we(u,!1),j.$emit=De.emit,Ie(n,me),z(u,()=>{Me(j)}),z(k,()=>{ge(u)}),It(j)};o.E(b,Ee)}}Ee(){let e=this.o,n=e.m,o=e.r.Z,r=n.ut(),s=this.st(o);return[...s?[s]:[],...r,...r.map(Qe)].join(",")}pt(e,n){var s;let o=[];if(q(n))return o;if((s=e.matches)!=null&&s.call(e,n))return[e];let r=this.q(e).reverse();for(;r.length>0;){let i=r.pop();if(i.matches(n)){o.push(i);continue}r.push(...this.q(i).reverse())}return o}j(e,n){let o=this.Ee(),r=this.q(e).reverse();for(;r.length>0;){let s=r.pop();n(s),!(!q(o)&&s.matches(o))&&r.push(...this.q(s).reverse())}}q(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];Re(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];Re(i)&&r.push(i)}return r}return[]}};var Nn=class{constructor(e,n){m(this,"te");m(this,"ne");m(this,"Se",[]);this.te=e,this.ne=n}},_t=class{constructor(e){m(this,"o");m(this,"ve");m(this,"Ae");m(this,"re");var o;this.o=e,this.ve=e.r.lt(),this.re=new Map;let n=new Map;for(let r of this.ve){let s=(o=r[0])!=null?o:"",i=n.get(s);i?i.push(r):n.set(s,[r])}this.Ae=n}ke(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(/[:@]/);q(a[0])&&(a[0]=r?".":o[0]);let c=s>=0?o.slice(s+1).split("."):[],l=!1,f=!1;for(let p=0;p<c.length;++p){let h=c[p];if(!l&&h==="camel"?l=!0:!f&&h==="prop"&&(f=!0),l&&f)break}l&&(a[a.length-1]=F(a[a.length-1])),f&&(a[0]=".");let u={terms:a,flags:c};return this.re.set(e,u),u}Ce(e,n){let o=new Map;if(!ut(e))return o;let r=this.Ae,s=(a,c)=>{var f;let l=r.get((f=c[0])!=null?f:"");if(l)for(let u=0;u<l.length;++u){if(!c.startsWith(l[u]))continue;let p=o.get(c);if(!p){let h=this.ke(c);p=new Nn(h.terms,h.flags),o.set(c,p)}p.Se.push(a);return}},i=a=>{var l;let c=a.attributes;if(!(!c||c.length===0))for(let f=0;f<c.length;++f){let u=(l=c.item(f))==null?void 0:l.name;u&&s(a,u)}};return i(e),!n||!e.firstElementChild||this.o.O.j(e,i),o}};var vo=()=>{},Cs=(t,e)=>{for(let n of t){let o=n.cloneNode(!0);e.appendChild(o)}},Ft=class{constructor(e){m(this,"o");m(this,"I");this.o=e,this.I=e.r.p.is}k(e){let n=e.hasAttribute(this.I);return(n||e.hasAttribute("is"))&&this.y(e),this.o.O.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.M(e,n)}U(e,n){let o=Je(e),r=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);r.insertBefore(s,e),Ge(s,o),o.forEach(a=>{W(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}}M(e,n){let{nodes:o,parent:r,commentBegin:s,commentEnd:i}=this.U(e,` => ${n} `),a=this.o.m.V(n),c=a.value,l=this.o.m,f=l.L(),u={name:""},p=he(e)?o:[...o[0].childNodes],h=()=>{l.E(f,()=>{var R;let E=c()[0];if(N(E)&&(E.name?E=E.name:E=(R=Object.entries(l.ee()).filter(k=>k[1]===E)[0])==null?void 0:R[0]),!J(E)||q(E)){we(s,i);return}if(u.name===E)return;we(s,i);let T=document.createElement(E);for(let k of e.getAttributeNames())k!==this.I&&T.setAttribute(k,e.getAttribute(k));Cs(p,T),r.insertBefore(T,i),this.o.$(T),u.name=E})},g=vo;z(s,()=>{a.stop(),g(),g=vo}),h(),g=a.subscribe(h)}};var B=t=>{let e=t;return e!=null&&e[te]===1?e():e};var Es=(t,e)=>{let[n,o]=e;G(o)?o(t,n):t.innerHTML=n==null?void 0:n.toString()},qt={mount:()=>({update:({el:t,values:e})=>{Es(t,e)}})};var zt=class t{constructor(e){m(this,"oe");this.oe=e}static ft(e,n){var h,g;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 l=e.F,f=[],u=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 T=d;if(T.tagName==="TEMPLATE"||T.tagName.includes("-"))return;let R=F(T.tagName).toUpperCase();if(r._.has(R)||c[R])return;let k=T.attributes;for(let X=0;X<k.length;++X){let P=(h=k.item(X))==null?void 0:h.name;if(!P)continue;if(i.has(P))return;let{terms:U,flags:pe}=l.ke(P),[Y,L]=U,b=(g=a[P])!=null?g:a[Y];if(b){if(b===qt)return;f.push({nodeIndex:u,attrName:P,directive:b,option:L,flags:pe})}}++u}let E=d.childNodes;for(let T=E.length-1;T>=0;--T)p.push(E[T])}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 Rs=(t,e)=>{let n=e.parentNode;if(n)for(let o=0;o<t.items.length;++o)n.insertBefore(t.items[o],e)},ws=t=>{var a;let e=t.length,n=t.slice(),o=[],r,s,i;for(let c=0;c<e;++c){let l=t[c];if(l===0)continue;let f=o[o.length-1];if(f===void 0||t[f]<l){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]]<l?r=i+1:s=i;l<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},Kt=class{static dt(e){let{oldItems:n,newValues:o,getKey:r,isSameValue:s,mountNewValue:i,removeMountItem:a,endAnchor:c}=e,l=n.length,f=o.length,u=new Array(f),p=new Set;for(let b=0;b<f;++b){let O=r(o[b]);if(O===void 0||p.has(O))return;p.add(O),u[b]=O}let h=new Array(f),g=0,d=l-1,E=f-1;for(;g<=d&&g<=E;){let b=n[g];if(r(b.value)!==u[g]||!s(b.value,o[g]))break;b.value=o[g],h[g]=b,++g}for(;g<=d&&g<=E;){let b=n[d];if(r(b.value)!==u[E]||!s(b.value,o[E]))break;b.value=o[E],h[E]=b,--d,--E}if(g>d){for(let b=E;b>=g;--b){let O=b+1<f?h[b+1].items[0]:c;h[b]=i(b,o[b],O)}return h}if(g>E){for(let b=g;b<=d;++b)a(n[b]);return h}let T=g,R=g,k=E-R+1,X=new Array(k).fill(0),P=new Map;for(let b=R;b<=E;++b)P.set(u[b],b);let U=!1,pe=0;for(let b=T;b<=d;++b){let O=n[b],j=P.get(r(O.value));if(j===void 0){a(O);continue}if(!s(O.value,o[j])){a(O);continue}O.value=o[j],h[j]=O,X[j-R]=b+1,j>=pe?pe=j:U=!0}let Y=U?ws(X):[],L=Y.length-1;for(let b=k-1;b>=0;--b){let O=R+b,j=O+1<f?h[O+1].items[0]:c;if(X[b]===0){h[O]=i(O,o[O],j);continue}let De=h[O];U&&(L>=0&&Y[L]===b?--L:De&&Rs(De,j))}return h}};var lt=class{constructor(e){m(this,"T",[]);m(this,"P",new Map);m(this,"se");this.se=e}get S(){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 mt(e,n){return{items:[],index:e,value:n,order:-1}}w(e){e.order=this.S,this.T.push(e),this.ie(e)}yt(e,n){let o=this.S;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}Ne(e){this.ae(e),this.T.splice(e,1);let n=this.S;for(let o=e;o<n;++o)this.T[o].order=o}Oe(e){let n=this.S;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 On=Symbol("r-for"),Ss=t=>-1,Ao=()=>{},Gt=class Gt{constructor(e){m(this,"o");m(this,"x");m(this,"Me");m(this,"R");this.o=e,this.x=e.r.p.for,this.Me=Mt(this.x),this.R=e.r.p.pre}k(e){let n=e.hasAttribute(this.x);return n&&this.Ve(e),this.o.O.j(e,o=>{o.hasAttribute(this.x)&&this.Ve(o)}),n}Y(e){return e[On]?!0:(e[On]=!0,Ot(e,this.Me).forEach(n=>n[On]=!0),!1)}Ve(e){if(e.hasAttribute(this.R)||this.Y(e))return;let n=e.getAttribute(this.x);if(!n){H(0,this.x,e);return}e.removeAttribute(this.x),this.gt(e,n)}Le(e){return de(e)?[]:(G(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 st;let o=this.bt(n);if(!(o!=null&&o.list)){H(1,this.x,n,e);return}let r=this.o.r.p.key,s=this.o.r.p.keyBind,i=(st=e.getAttribute(r))!=null?st:e.getAttribute(s);e.removeAttribute(r),e.removeAttribute(s);let a=Je(e),c=zt.ft(this.o,a),l=e.parentNode;if(!l)return;let f=`${this.x} => ${n}`,u=new Comment(`__begin__ ${f}`);l.insertBefore(u,e),Ge(u,a),a.forEach(M=>{W(M)}),e.remove();let p=new Comment(`__end__ ${f}`);l.insertBefore(p,u.nextSibling);let h=this.o,g=h.m,d=g.L(),T=d.length===1?[void 0,d[0]]:void 0,R=this.xt(i),k=(M,ee)=>R(M)===R(ee),X=(M,ee)=>M===ee,P=(M,ee,ne)=>{let oe=o.createContext(ee,M),Ee=lt.mt(oe.index,ee),C=()=>{var D,Q;let A=(Q=(D=p.parentNode)!=null?D:u.parentNode)!=null?Q:l,y=ne.previousSibling,$=[];for(let S=0;S<a.length;++S){let V=a[S].cloneNode(!0);A.insertBefore(V,ne),$.push(V)}for(c?c.y(h,$):Ie(h,$),y=y.nextSibling;y!==ne;)Ee.items.push(y),y=y.nextSibling};return T?(T[0]=oe.ctx,g.E(T,C)):g.E(d,()=>{g.w(oe.ctx),C()}),Ee},U=(M,ee)=>{let ne=I.D(M).items,oe=ne[ne.length-1].nextSibling;for(let Ee of ne)W(Ee);I.ce(M,P(M,ee,oe))},pe=(M,ee)=>{I.w(P(M,ee,p))},Y=M=>{for(let ee of I.D(M).items)W(ee)},L=M=>{let ee=I.S;for(let ne=M;ne<ee;++ne)I.D(ne).index(ne)},b=M=>{let ee=u.parentNode,ne=p.parentNode;if(!ee||!ne)return;let oe=I.S;G(M)&&(M=M());let Ee=B(M[0]);if(w(Ee)&&Ee.length===0){we(u,p),I.Oe(0);return}let C=[];for(let v of this.Le(M[0]))C.push(v);let A=Kt.dt({oldItems:I.T,newValues:C,getKey:R,isSameValue:X,mountNewValue:(v,K,ie)=>P(v,K,ie),removeMountItem:v=>{for(let K=0;K<v.items.length;++K)W(v.items[K])},endAnchor:p});if(A){I.T=A,I.P.clear();for(let v=0;v<A.length;++v){let K=A[v];K.order=v,K.index(v);let ie=R(K.value);ie!==void 0&&I.P.set(ie,K)}return}let y=0,$=Number.MAX_SAFE_INTEGER,D=oe,Q=this.o.r.forGrowThreshold,S=()=>I.S<D+Q;for(let v of C){let K=()=>{if(y<oe){let ie=I.D(y++);if(k(ie.value,v)){if(X(ie.value,v))return;U(y-1,v);return}let dt=I.ht(R(v));if(dt>=y&&dt-y<10){if(--y,$=Math.min($,y),Y(y),I.Ne(y),--oe,dt>y+1)for(let mn=y;mn<dt-1&&mn<oe&&!k(I.D(y).value,v);)++mn,Y(y),I.Ne(y),--oe;K();return}S()?(I.yt(y-1,P(y,v,I.D(y-1).items[0])),$=Math.min($,y-1),++oe):U(y-1,v)}else pe(y++,v)};K()}let V=y;for(oe=I.S;y<oe;)Y(y++);I.Oe(V),L($)},O=()=>{j.stop(),me(),me=Ao},j=g.V(o.list),De=j.value,me=Ao,pn=0,I=new lt(R);for(let M of this.Le(De()[0]))I.w(P(pn++,M,p));z(u,O),me=j.subscribe(b)}bt(e){var c,l;let n=Gt.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"||(l=o[r])!=null&&l.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,u)=>{let p={},h=B(f);if(!a&&o.length===1)p[o[0]]=f;else if(w(h)){let d=0;for(let E of o)p[E]=h[d++]}else for(let d of o)p[d]=h[d];let g={ctx:p,index:Ss};return s&&(g.index=p[s.startsWith("#")?s.substring(1):s]=ae(u)),g}}}xt(e){if(!e)return o=>o;let n=e.trim();if(!n)return o=>o;if(n.includes(".")){let o=this.Rt(n),r=o.length>1?o.slice(1):void 0;return s=>{let i=B(s),a=this.Ie(i,o);return a!==void 0||!r?a:this.Ie(i,r)}}return o=>{var r;return B((r=B(o))==null?void 0:r[n])}}Rt(e){return e.split(".").filter(n=>n.length>0)}Ie(e,n){var r;let o=e;for(let s of n)o=(r=B(o))==null?void 0:r[s];return B(o)}};m(Gt,"Tt",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+(.*)\s*$/);var Wt=Gt;var Jt=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,"O");m(this,"F");m(this,"r");m(this,"R");m(this,"Be");this.m=e,this.r=e.r,this.De=new Wt(this),this.Pe=new Nt(this),this.Ue=new Ft(this),this.O=new $t(this),this.F=new _t(this),this.R=this.r.p.pre,this.Be=this.r.p.dynamic}Et(e){let n=he(e)?[e]:e.querySelectorAll("template");for(let o of n){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);Ie(this,i)}}$(e){++this.pe;try{if(e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.R)||this.Pe.k(e)||this.De.k(e)||this.Ue.k(e))return;this.O.k(e),this.Et(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,z(s,()=>{W(e)}),o.appendChild(e),!0}St(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.F.Ce(e,n),r=this.r.B;for(let[i,a]of o.entries()){let[c,l]=a.te,f=(s=r[i])!=null?s:r[c];if(!f){console.error("directive not found:",c);continue}let u=a.Se;for(let p=0;p<u.length;++p){let h=u[p];this.y(f,h,i,!1,l,a.ne)}}}y(e,n,o,r,s,i){if(n.hasAttribute(this.R))return;let a=n.getAttribute(o);n.removeAttribute(o);let c=l=>{let f=l;for(;f;){let u=f.getAttribute(ct);if(u)return u;f=f.parentElement}return null};if(Cn()){let l=c(n);if(l){this.m.E(po(l),()=>{this.M(e,n,a,s,i)});return}}this.M(e,n,a,s,i)}vt(e,n,o){return e!==Lt?!1:(q(o)||this.He(n,o)||this.St(n,o),!0)}M(e,n,o,r,s){if(n.nodeType!==Node.ELEMENT_NODE||o==null||this.vt(e,n,o))return;let i=this.At(r,e.once),a=this.kt(e,o),c=this.Nt(a,i);z(n,c.stop);let l=this.Ot(n,o,a,i,r,s),f=this.Mt(e,l,c);if(!f)return;let u=this.Vt(l,a,i,r,f);u(),e.once||(c.result=a.subscribe(u),i&&(c.dynamic=i.subscribe(u)))}At(e,n){let o=bo(e,this.Be);if(o)return this.m.V(F(o),void 0,void 0,void 0,n)}kt(e,n){return this.m.V(n,e.isLazy,e.isLazyKey,e.collectRefObj,e.once)}Nt(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}Ot(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}}Mt(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(),l=o?o.value()[0]:r;e.values=c,e.previousValues=i,e.option=l,e.previousOption=a,i=c,a=l,s(e)}}};var No="http://www.w3.org/1999/xlink",vs={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 As(t){return!!t||t===""}var Ns=(t,e,n,o,r,s)=>{var a;if(o){s&&s.includes("camel")&&(o=F(o)),Qt(t,o,e[0],r);return}let i=e.length;for(let c=0;c<i;++c){let l=e[c];if(w(l)){let f=(a=n==null?void 0:n[c])==null?void 0:a[0],u=l[0],p=l[1];Qt(t,u,p,f)}else if(N(l))for(let f of Object.entries(l)){let u=f[0],p=f[1],h=n==null?void 0:n[c],g=h&&u in h?u:void 0;Qt(t,u,p,g)}else{let f=n==null?void 0:n[c],u=e[c++],p=e[c];Qt(t,u,p,f)}}},Mn={mount:()=>({update:({el:t,values:e,previousValues:n,option:o,previousOption:r,flags:s})=>{Ns(t,e,n,o,r,s)}})},Qt=(t,e,n,o)=>{if(o&&o!==e&&t.removeAttribute(o),de(e)){H(3,"r-bind",t);return}if(!J(e)){H(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){de(n)?t.removeAttributeNS(No,e.slice(6,e.length)):t.setAttributeNS(No,e,n);return}let r=e in vs;de(n)||r&&!As(n)?t.removeAttribute(e):t.setAttribute(e,r?"":n)};var Os=(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)Oo(t,s[c],i==null?void 0:i[c])}else Oo(t,s,i)}},kn={mount:()=>({update:({el:t,values:e,previousValues:n})=>{Os(t,e,n)}})},Oo=(t,e,n)=>{let o=t.classList,r=J(e),s=J(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?Xe(n):[],a=Xe(e);i.length>0&&o.remove(...i),a.length>0&&o.add(...a)}}else if(n){let i=s?Xe(n):[];i.length>0&&o.remove(...i)}};function Ms(t,e){if(t.length!==e.length)return!1;let n=!0;for(let o=0;n&&o<t.length;o++)n=ve(t[o],e[o]);return n}function ve(t,e){if(t===e)return!0;let n=yn(t),o=yn(e);if(n||o)return n&&o?t.getTime()===e.getTime():!1;if(n=it(t),o=it(e),n||o)return t===e;if(n=w(t),o=w(e),n||o)return n&&o?Ms(t,e):!1;if(n=N(t),o=N(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||!ve(t[i],e[i]))return!1}return!0}return String(t)===String(e)}function Xt(t,e){return t.findIndex(n=>ve(n,e))}var Mo=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var Yt=t=>{if(!x(t))throw _(3,"pause");t(void 0,void 0,3)};var Zt=t=>{if(!x(t))throw _(3,"resume");t(void 0,void 0,4)};var Lo={mount:({el:t,parseResult:e,flags:n})=>({update:({values:o})=>{ks(t,o[0])},unmount:Ls(t,e,n)})},ks=(t,e)=>{let n=Do(t);if(n&&Io(t))w(e)?e=Xt(e,Ae(t))>-1:fe(e)?e=e.has(Ae(t)):e=Hs(t,e),t.checked=e;else if(n&&Vo(t))t.checked=ve(e,Ae(t));else if(n||Uo(t))Po(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Ho(t)){let o=t.options,r=o.length,s=t.multiple;for(let i=0;i<r;i++){let a=o[i],c=Ae(a);if(s)w(e)?a.selected=Xt(e,c)>-1:a.selected=e.has(c);else if(ve(Ae(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else H(7,t)},pt=t=>(x(t)&&(t=t()),G(t)&&(t=t()),t?J(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}),Io=t=>t.type==="checkbox",Vo=t=>t.type==="radio",Po=t=>t.type==="number"||t.type==="range",Do=t=>t.tagName==="INPUT",Uo=t=>t.tagName==="TEXTAREA",Ho=t=>t.tagName==="SELECT",Ls=(t,e,n)=>{let o=e.value,r=pt(n==null?void 0:n.join(",")),s=pt(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 H(8,t),()=>{};let a=()=>e.refs[0],c=Do(t);return c&&Io(t)?Vs(t,a):c&&Vo(t)?Bs(t,a):c||Uo(t)?Is(t,i,a,o):Ho(t)?js(t,a,o):(H(7,t),()=>{})},ko=/[.,' ·٫]/,Is=(t,e,n,o)=>{let s=e.lazy?"change":"input",i=Po(t),a=()=>{!e.trim&&!pt(o()[1]).trim||(t.value=t.value.trim())},c=p=>{let h=p.target;h.composing=1},l=p=>{let h=p.target;h.composing&&(h.composing=0,h.dispatchEvent(new Event(s)))},f=()=>{t.removeEventListener(s,u),t.removeEventListener("change",a),t.removeEventListener("compositionstart",c),t.removeEventListener("compositionend",l),t.removeEventListener("change",l)},u=p=>{let h=n();if(!h)return;let g=p.target;if(!g||g.composing)return;let d=g.value,E=pt(o()[1]);if(i||E.number||E.int){if(E.int)d=parseInt(d);else{if(ko.test(d[d.length-1])&&d.split(ko).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 E.trim&&(d=d.trim());h(d)};return t.addEventListener(s,u),t.addEventListener("change",a),t.addEventListener("compositionstart",c),t.addEventListener("compositionend",l),t.addEventListener("change",l),f},Vs=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=Ae(t),a=t.checked,c=s();if(w(c)){let l=Xt(c,i),f=l!==-1;a&&!f?c.push(i):!a&&f&&c.splice(l,1)}else fe(c)?a?c.add(i):c.delete(i):s(Us(t,a))};return t.addEventListener(n,r),o},Ae=t=>"_value"in t?t._value:t.value,Bo="trueValue",Ps="falseValue",jo="true-value",Ds="false-value",Us=(t,e)=>{let n=e?Bo:Ps;if(n in t)return t[n];let o=e?jo:Ds;return t.hasAttribute(o)?t.getAttribute(o):e},Hs=(t,e)=>{if(Bo in t)return ve(e,t.trueValue);let o=jo;return t.hasAttribute(o)?ve(e,t.getAttribute(o)):ve(e,!0)},Bs=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=Ae(t);s(i)};return t.addEventListener(n,r),o},js=(t,e,n)=>{let o="change",r=()=>{t.removeEventListener(o,s)},s=()=>{let i=e();if(!i)return;let c=pt(n()[1]).number,l=Array.prototype.filter.call(t.options,f=>f.selected).map(f=>c?Mo(Ae(f)):Ae(f));if(t.multiple){let f=i();try{if(Yt(i),fe(f)){f.clear();for(let u of l)f.add(u)}else w(f)?(f.splice(0),f.push(...l)):i(l)}finally{Zt(i),Z(i)}}else i(l[0])};return t.addEventListener(o,s),r};var $s=["stop","prevent","capture","self","once","left","right","middle","passive"],_s=t=>{let e={};if(q(t))return;let n=t.split(",");for(let o of $s)e[o]=n.includes(o);return e},Fs=(t,e,n,o,r)=>{var l,f;if(o){let u=e.value(),p=B(o.value()[0]);return J(p)?Ln(t,F(p),()=>e.value()[0],(l=r==null?void 0:r.join(","))!=null?l:u[1]):()=>{}}else if(n){let u=e.value();return Ln(t,F(n),()=>e.value()[0],(f=r==null?void 0:r.join(","))!=null?f:u[1])}let s=[],i=()=>{s.forEach(u=>u())},a=e.value(),c=a.length;for(let u=0;u<c;++u){let p=a[u];if(G(p)&&(p=p()),N(p))for(let h of Object.entries(p)){let g=h[0],d=()=>{let T=e.value()[u];return G(T)&&(T=T()),T=T[g],G(T)&&(T=T()),T},E=p[g+"_flags"];s.push(Ln(t,g,d,E))}else H(2,"r-on",t)}return i},In={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})=>Fs(t,e,n,o,r)},qs=(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=l=>!(r&&!l.ctrlKey||s&&!l.shiftKey||i&&!l.altKey||a&&!l.metaKey);return o?[t,l=>c(l)?l.key.toUpperCase()===o.toUpperCase():!1]:[t,c]}return[t,n=>!0]},Ln=(t,e,n,o)=>{if(q(e))return H(5,"r-on",t),()=>{};let r=_s(o),s=r?{capture:r.capture,passive:r.passive,once:r.once}:void 0,i;[e,i]=qs(e,o);let a=f=>{if(!i(f)||!n&&e==="submit"&&(r!=null&&r.prevent))return;let u=n(f);G(u)&&(u=u(f)),G(u)&&u(f)},c=()=>{t.removeEventListener(e,l,s)},l=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,l,s),c};var zs=(t,e,n,o)=>{if(n){o&&o.includes("camel")&&(n=F(n)),tt(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];tt(t,a,c)}else if(N(i))for(let a of Object.entries(i)){let c=a[0],l=a[1];tt(t,c,l)}else{let a=e[s++],c=e[s];tt(t,a,c)}}},$o={mount:()=>({update:({el:t,values:e,option:n,flags:o})=>{zs(t,e,n,o)}})};function Ks(t){return!!t||t===""}var tt=(t,e,n)=>{if(de(e)){H(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=Ks(n):n==null&&s==="string"?(n="",r=!0):s==="number"&&(n=0,r=!0)}try{t[e]=n}catch(s){r||H(4,e,o,n,s)}r&&t.removeAttribute(e)};var _o={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 Ws=(t,e)=>{let n=Le(t).data,o=n._ord;oo(o)&&(o=n._ord=t.style.display),!!e[0]?t.style.display=o:t.style.display="none"},Fo={mount:()=>({update:({el:t,values:e})=>{Ws(t,e)}})};var Gs=(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)qo(t,s[c],i==null?void 0:i[c])}else qo(t,s,i)}},en={mount:()=>({update:({el:t,values:e,previousValues:n})=>{Gs(t,e,n)}})},qo=(t,e,n)=>{let o=t.style,r=J(e);if(e&&!r){if(n&&!J(n))for(let s in n)e[s]==null&&Pn(o,s,"");for(let s in e)Pn(o,s,e[s])}else{let s=o.display;if(r?n!==e&&(o.cssText=e):n&&t.removeAttribute("style"),"_ord"in Le(t).data)return;o.display=s}},zo=/\s*!important$/;function Pn(t,e,n){if(w(n))n.forEach(o=>{Pn(t,e,o)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let o=Js(t,e);zo.test(n)?t.setProperty(Qe(o),n.replace(zo,""),"important"):t[o]=n}}var Ko=["Webkit","Moz","ms"],Vn={};function Js(t,e){let n=Vn[e];if(n)return n;let o=F(e);if(o!=="filter"&&o in t)return Vn[e]=o;o=ft(o);for(let r=0;r<Ko.length;r++){let s=Ko[r]+o;if(s in t)return Vn[e]=s}return e}var ce=t=>Wo(B(t)),Wo=(t,e=new WeakMap)=>{if(!t||!N(t))return t;if(w(t))return t.map(ce);if(fe(t)){let o=new Set;for(let r of t.keys())o.add(ce(r));return o}if(Oe(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 B(e.get(t));let n=gt({},t);e.set(t,n);for(let o of Object.entries(n))n[o[0]]=Wo(B(o[1]),e);return n};var Qs=(t,e)=>{var o;let n=e[0];t.textContent=fe(n)?JSON.stringify(ce([...n])):Oe(n)?JSON.stringify(ce([...n])):N(n)?JSON.stringify(ce(n)):(o=n==null?void 0:n.toString())!=null?o:""},Go={mount:()=>({update:({el:t,values:e})=>{Qs(t,e)}})};var Jo={mount:()=>({update:({el:t,values:e})=>{tt(t,"value",e[0])}})};var Pe=class Pe{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=Pe.je)!=null?e:Pe.je=new Pe}It(){let e={},n=globalThis;for(let o of Pe.Lt.split(","))e[o]=n[o];return e.ref=Ce,e.sref=ae,e.flatten=ce,e}addComponent(...e){for(let n of e){if(!n.defaultName){He.warning("Registered component's default name is not defined",n);continue}this.Z.set(ft(n.defaultName),n),this._.set(ft(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this.B={".":$o,":":Mn,"@":In,[`${e}on`]:In,[`${e}bind`]:Mn,[`${e}html`]:qt,[`${e}text`]:Go,[`${e}show`]:Fo,[`${e}model`]:Lo,":style":en,[`${e}style`]:en,[`${e}bind:style`]:en,":class":kn,[`${e}bind:class`]:kn,":ref":_o,":value":Jo,[`${e}teleport`]:Lt},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(Pe,"je"),m(Pe,"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 le=Pe;var tn=(t,e)=>{if(!t)return;let o=(e!=null?e:le.getDefault()).p,r=/(\{\{[^]*?\}\}|\[\[[^]*?\]\])/g,s=[{start:"{{",end:"}}"},{start:"[[",end:"]]"}];for(let i of Ys(t,o.pre,s))Xs(i,o.text,r,s)},Xs=(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 l=i[1],f=Qo(l,o);if(f&&q(i[0])&&q(i[2])){let u=t.parentElement;u.setAttribute(e,l.substring(f.start.length,l.length-f.end.length)),u.innerText="";return}}let a=document.createDocumentFragment();for(let l of i){let f=Qo(l,o);if(f){let u=document.createElement("span");u.setAttribute(e,l.substring(f.start.length,l.length-f.end.length)),a.appendChild(u)}else a.appendChild(document.createTextNode(l))}t.replaceWith(a)},Ys=(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 Se(s))r(a)}};return r(t),o},Qo=(t,e)=>e.find(n=>t.startsWith(n.start)&&t.endsWith(n.end));var Zs=9,ei=10,ti=13,ni=32,Ne=46,nn=44,oi=39,ri=34,on=40,nt=41,rn=91,Dn=93,Un=63,si=59,Xo=58,Yo=123,sn=125,_e=43,an=45,Hn=96,Zo=47,Bn=92,er=new Set([2,3]),ir={"=":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},ii=Zn(gt({"=>":2},ir),{"||":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}),ar=Object.keys(ir),ai=new Set(ar),$n=new Set(["=>"]);ar.forEach(t=>$n.add(t));var tr={true:!0,false:!1,null:null},ci="this",ot="Expected ",Fe="Unexpected ",Fn="Unclosed ",ui=ot+":",nr=ot+"expression",fi="missing }",li=Fe+"object property",pi=Fn+"(",or=ot+"comma",rr=Fe+"token ",mi=Fe+"period",jn=ot+"expression after ",di="missing unaryOp argument",hi=Fn+"[",yi=ot+"exponent (",gi="Variable names cannot start with a number (",bi=Fn+'quote after "',mt=t=>t>=48&&t<=57,sr=t=>ii[t],_n=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)||mt(e)}i(e){return new Error(`${e} at character ${this.e}`)}g(){let e=this.h,n=this.u,o=this.e;for(;e===ni||e===Zs||e===ei||e===ti;)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===si||o===nn)this.e++;else{let r=this.v();if(r)n.push(r);else if(this.e<this.u.length){if(o===e)break;throw this.i(Fe+'"'+this.H+'"')}}}return n}v(){var n;let e=(n=this.Pt())!=null?n:this.$e();return this.g(),this.Dt(e)}de(){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.de(),!n))return s;if(r={value:n,prec:sr(n),right_a:$n.has(n)},i=this.z(),!i)throw this.i(jn+n);let l=[s,r,i];for(;n=this.de();){o=sr(n),r={value:n,prec:o,right_a:$n.has(n)},c=n;let f=u=>r.right_a&&u.right_a?o>u.prec:o<=u.prec;for(;l.length>2&&f(l[l.length-2]);)i=l.pop(),n=l.pop().value,s=l.pop(),e=this._e(n,s,i),l.push(e);if(e=this.z(),!e)throw this.i(jn+c);l.push(r,e)}for(a=l.length-1,e=l[a];a>1;)e=this._e(l[a-1].value,l[a-2],e),a-=2;return e}z(){let e;if(this.g(),e=this.Ut(),e)return this.me(e);let n=this.h;if(mt(n)||n===Ne)return this.Bt();if(n===oi||n===ri)e=this.Ht();else if(n===rn)e=this.jt();else{let o=this.$t();if(o){let r=this.z();if(!r)throw this.i(di);return this.me({type:7,operator:o,argument:r})}this.K(n)?(e=this.ye(),e.name in tr?e={type:4,value:tr[e.name],raw:e.name}:e.name===ci&&(e={type:5})):n===on&&(e=this._t())}return e?(e=this.W(e),this.me(e)):!1}_e(e,n,o){if(e==="=>"){let r=n.type===1?n.expressions:[n];return{type:15,params:r,body:o}}return ai.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.Ft(e),e.node||(this.qt(e),e.node)||(this.Kt(e),e.node)||(this.Fe(e),e.node)||this.zt(e),e.node}me(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===an?(this.e++,"-"):o===33?(this.e++,"!"):o===126?(this.e++,"~"):o===_e?(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===Ne||n===rn||n===on||n===Un;){let o;if(n===Un){if(this.u.charCodeAt(this.e+1)!==Ne)break;o=!0,this.e+=2,this.g(),n=this.h}if(this.e++,n===rn){if(e={type:3,computed:!0,object:e,property:this.v()},this.g(),n=this.h,n!==Dn)throw this.i(hi);this.e++}else n===on?e={type:6,arguments:this.qe(nt),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(;mt(e.charCodeAt(o));)o++;if(e.charCodeAt(o)===Ne)for(o++;mt(e.charCodeAt(o));)o++;let r=e.charCodeAt(o);if(r===101||r===69){o++;let a=e.charCodeAt(o);(a===_e||a===an)&&o++;let c=o;for(;mt(e.charCodeAt(o));)o++;if(c===o){this.e=o;let l=e.slice(n,o);throw this.i(yi+l+this.H+")")}}this.e=o;let s=e.slice(n,o),i=e.charCodeAt(o);if(this.K(i))throw this.i(gi+s+this.H+")");if(i===Ne||s.length===1&&s.charCodeAt(0)===Ne)throw this.i(mi);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,l=!1;for(;s<n;){let u=e.charCodeAt(s);if(u===r){l=!0,this.e=s+1;break}if(u===Bn){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,l?s:n):e.slice(i,l?s:n);if(!l)throw this.e=s,this.i(bi+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(Fe+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)}}qe(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===nt&&r&&r>=n.length)throw this.i(rr+String.fromCharCode(e));break}else if(s===nn){if(this.e++,r++,r!==n.length){if(e===nt)throw this.i(rr+",");for(let i=n.length;i<r;i++)n.push(null)}}else{if(n.length!==r&&r!==0)throw this.i(or);{let i=this.v();if(!i||i.type===0)throw this.i(or);n.push(i)}}}if(!o)throw this.i(ot+String.fromCharCode(e));return n}_t(){this.e++;let e=this.fe(nt);if(this.f(nt))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.i(pi)}jt(){return this.e++,{type:9,elements:this.qe(Dn)}}Ft(e){if(this.f(Yo)){this.e++;let n=[];for(;!isNaN(this.h);){if(this.g(),this.f(sn)){this.e++,e.node=this.W({type:10,properties:n});return}let o=this.v();if(!o)break;if(this.g(),o.type===2&&(this.f(nn)||this.f(sn)))n.push({type:12,computed:!1,key:o,value:o,shorthand:!0});else if(this.f(Xo)){this.e++;let r=this.v();if(!r)throw this.i(li);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(nn)&&this.e++}throw this.i(fi)}}qt(e){let n=this.h;if((n===_e||n===an)&&n===this.u.charCodeAt(this.e+1)){this.e+=2;let o=e.node={type:13,operator:n===_e?"++":"--",argument:this.W(this.ye()),prefix:!0};if(!o.argument||!er.has(o.argument.type))throw this.i(Fe+o.operator)}}Gt(e){let n=e.node,o=this.h;if((o===_e||o===an)&&o===this.u.charCodeAt(this.e+1)){if(!er.has(n.type))throw this.i(Fe+(o===_e?"++":"--"));this.e+=2,e.node={type:13,operator:o===_e?"++":"--",argument:n,prefix:!1}}}Kt(e){this.u.charCodeAt(this.e)===Ne&&this.u.charCodeAt(this.e+1)===Ne&&this.u.charCodeAt(this.e+2)===Ne&&(this.e+=3,e.node={type:14,argument:this.v()})}Xt(e){if(e.node&&this.f(Un)){this.e++;let n=e.node,o=this.v();if(!o)throw this.i(nr);if(this.g(),this.f(Xo)){this.e++;let r=this.v();if(!r)throw this.i(nr);e.node={type:11,test:n,consequent:o,alternate:r}}else throw this.i(ui)}}Qt(e){if(this.g(),this.f(on)){let n=this.e;if(this.e++,this.g(),this.f(nt)){this.e++;let o=this.de();if(o==="=>"){let r=this.$e();if(!r)throw this.i(jn+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(Hn)&&(e.node={type:17,tag:n,quasi:this.Fe(e)})}Fe(e){if(!this.f(Hn))return;let n=this.u,o=n.length,r={type:19,quasis:[],expressions:[]},s=++this.e,i=[],a=[],c=!1,l=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 u=i.join(""),p=a.join("");return i.length=0,a.length=0,c=!1,r.quasis.push({type:18,value:{raw:u,cooked:p},tail:f})};for(;this.e<o;){let f=n.charCodeAt(this.e);if(f===Hn)return l(!0),this.e+=1,e.node=r,r;if(f===36&&n.charCodeAt(this.e+1)===Yo){if(l(!1),this.e+=2,r.expressions.push(...this.fe(sn)),!this.f(sn))throw this.i("unclosed ${");this.e+=1,s=this.e}else if(f===Bn){c||(c=!0),i.push(n.slice(s,this.e)),a.push(n.slice(s,this.e));let u=n.charCodeAt(this.e+1);i.push(n.slice(this.e,this.e+2)),a.push(this.Ke(u)),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(rn)?o=!0:o&&this.f(Dn)&&(o=!1),this.e+=this.f(Bn)?2:1}throw this.i("Unclosed Regex")}},cr=t=>new _n(t).parse();var Ti={"=>":(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)=>yt(t,e)},xi={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},pr=t=>{if(!(t!=null&&t.some(lr)))return t;let e=[];return t.forEach(n=>lr(n)?e.push(...n):e.push(n)),e},ur=(...t)=>pr(t),qn=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Ci={"++":(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]--}},fr={"=":(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(yt(o(),n)):t[e]=yt(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}},cn=(t,e)=>G(t)?t.bind(e):t,zn=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],cn(B(o[r]),o);for(let i of this.l)if(r in i)return this.A=i[r],cn(B(i[r]),i);let s=this.ze;if(s&&r in s)return this.A=s[r],cn(B(s[r]),s)}5(e,n,o){return this.l[0]}0(e,n,o){return this.Ye(n,o,ur,...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,cn(B(i),r)}4(e,n,o){return e.value}6(e,n,o){let r=(i,...a)=>G(i)?i(...pr(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,xi[e.operator],e.argument)}8(e,n,o){let r=Ti[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,ur,...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=u=>(u==null?void 0:u.type)!==15,i=(f=this.Ge)!=null?f:()=>!1,a=n===0&&this.Qe,c=u=>this.Ze(a,e.key,n,qn(u,o)),l=u=>this.Ze(a,e.value,n,qn(u,o));if(e.shorthand){let u=e.key.name;r[u]=s(e.key)&&i(u,n)?c:c()}else if(e.computed){let u=B(c());r[u]=s(e.value)&&i(u,n)?l:l()}else{let u=e.key.type===4?e.key.value:e.key.name;r[u]=s(e.value)&&i(u,n)?()=>l:l()}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?Ci:Ei;if(r.type===2){let a=r.name,c=this.Xe(a,o);return de(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(de(a))return;let c=this.b(e.right,n,o);return fr[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 fr[s](i,a,c)}}14(e,n,o){let r=this.b(e.argument,n,o);return w(r)&&(r.s=mr),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=B(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}=Dt(()=>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)?l=>this.b(a,e,qn(l,n)):this.b(a,e,n)));return o(...i)}},mr=Symbol("s"),lr=t=>(t==null?void 0:t.s)===mr,dr=(t,e,n,o,r,s,i)=>new zn(e,n,o,r,i).eval(t,s);var hr={},yr=t=>!!t,un=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(yr).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(yr).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 T;let i=[],a=[],c=new Set,l=()=>{for(let R=0;R<a.length;++R)a[R]();a.length=0},p={value:()=>i,stop:()=>{l(),c.clear()},subscribe:(R,k)=>(c.add(R),k&&R(i),()=>{c.delete(R)}),refs:[],context:this.l[0]};if(q(e))return p;let h=this.r.globalContext,g=[],d=new Set,E=(R,k,X,P)=>{try{let U=dr(R,k,h,n,o,P,r);return X&&U.refs.length>0&&g.push(...U.refs),{value:U.value,refs:U.refs,ref:U.ref}}catch(U){H(6,`evaluation error: ${e}`,U)}return{value:void 0,refs:[]}};try{let R=(T=hr[e])!=null?T:cr("["+e+"]");hr[e]=R;let k=this.l.slice(),X=R.elements,P=X.length,U=new Array(P);p.refs=U;let pe=()=>{g.length=0,s||(d.clear(),l());let Y=new Array(P);for(let L=0;L<P;++L){let b=X[L];if(n!=null&&n(L,-1)){Y[L]=j=>E(b,k,!1,{$event:j}).value;continue}let O=E(b,k,!0);Y[L]=O.value,U[L]=O.ref}if(!s)for(let L of g)d.has(L)||(d.add(L),a.push(se(L,pe)));if(i=Y,c.size!==0)for(let L of c)c.has(L)&&L(i)};pe()}catch(R){H(6,`parse error: ${e}`,R)}return p}L(){return this.l.slice()}ce(e){this.tt.push(this.l),this.l=e}E(e,n){try{this.ce(e),n()}finally{this.Yt()}}Yt(){var e;this.l=(e=this.tt.pop())!=null?e:[]}};var gr=t=>{let e=t.charCodeAt(0);return e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122||t==="-"||t==="_"||t===":"},Ri=(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},wi=(t,e)=>{let n=e?2:1;for(;n<t.length&&(t[n]===" "||t[n]===`
3
+ `);)++n;if(n>=t.length||!gr(t[n]))return null;let o=n;for(;n<t.length&&gr(t[n]);)++n;return{start:o,end:n}},br=new Set(["table","thead","tbody","tfoot"]),Si=new Set(["thead","tbody","tfoot"]),vi=new Set(["caption","colgroup","thead","tbody","tfoot","tr"]),Ai=new Set(["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"]),Tr=(t,e)=>`${t.slice(0,t.length-2)}></${e}>`,fn=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 T=t.indexOf("-->",i+4);if(T===-1){n.push(t.slice(i));break}n.push(t.slice(i,T+3)),e=T+3;continue}let a=Ri(t,i);if(a===-1){n.push(t.slice(i));break}let c=t.slice(i,a+1),l=c.startsWith("</");if(c.startsWith("<!")||c.startsWith("<?")){n.push(c),e=a+1;continue}let u=wi(c,l);if(!u){n.push(c),e=a+1;continue}let p=c.slice(u.start,u.end);if(l){let T=o[o.length-1];T?(o.pop(),n.push(T.replacementHost?`</${T.replacementHost}>`:c),br.has(T.effectiveTag)&&--r):n.push(c),e=a+1;continue}let h=c.charCodeAt(c.length-2)===47,g=o[o.length-1],d=null;r===0?p==="tr"?d="trx":p==="td"?d="tdx":p==="th"&&(d="thx"):Si.has((s=g==null?void 0:g.effectiveTag)!=null?s:"")?d=p==="tr"?null:"tr":(g==null?void 0:g.effectiveTag)==="table"?d=vi.has(p)?null:"tr":(g==null?void 0:g.effectiveTag)==="tr"&&(d=p==="td"||p==="th"?null:"td");let E=h&&!Ai.has(d||p);if(d){let T=d==="trx"||d==="tdx"||d==="thx",R=`${c.slice(0,u.start)}${d} is="${T?`r-${p}`:`regor:${p}`}"${c.slice(u.end)}`;n.push(E?Tr(R,d):R)}else n.push(E?Tr(c,p):c);if(!h){let T=d==="trx"?"tr":d==="tdx"?"td":d==="thx"?"th":d||p;o.push({replacementHost:d,effectiveTag:T}),br.has(T)&&++r}e=a+1}return n.join("")};var Ni="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",Oi=new Set(Ni.toUpperCase().split(",")),Mi="http://www.w3.org/2000/svg",xr=(t,e)=>{he(t)?t.content.appendChild(e):t.appendChild(e)},Kn=(t,e,n,o)=>{var i;let r=t.t;if(r){let a=n&&Oi.has(r.toUpperCase())?document.createElementNS(Mi,r.toLowerCase()):document.createElement(r),c=t.a;if(c)for(let f of Object.entries(c)){let u=f[0],p=f[1];u.startsWith("#")&&(p=u.substring(1),u="name"),a.setAttribute(kt(u,o),p)}let l=t.c;if(l)for(let f of l)Kn(f,a,n,o);xr(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)xr(e,a);else throw new Error("unsupported node type.")}},qe=(t,e,n)=>{n!=null||(n=le.getDefault());let o=document.createDocumentFragment();if(!w(t))return Kn(t,o,!!e,n),o;for(let r of t)Kn(r,o,!!e,n);return o};var Cr=(t,e={selector:"#app"},n)=>{J(e)&&(e={selector:"#app",template:e}),To(t)&&(t=t.context);let o=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!o||!Re(o))throw _(0);n||(n=le.getDefault());let r=()=>{for(let a of[...o.childNodes])W(a)},s=a=>{for(let c of a)o.appendChild(c)};if(e.template){let a=document.createRange().createContextualFragment(fn(e.template));r(),s(a.childNodes),e.element=a}else if(e.json){let a=qe(e.json,e.isSVG,n);r(),s(a.childNodes)}return n.useInterpolation&&tn(o,n),new Wn(t,o,n).y(),z(o,()=>{Me(t)}),It(t),{context:t,unmount:()=>{W(o)},unbind:()=>{ge(o)}}},Wn=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 un([e],o),this.o=new Jt(this.m)}y(){this.o.$(this.nt)}};var rt=t=>{if(w(t))return t.map(r=>rt(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=Se(t);return o.length>0&&(e.c=[...o].map(r=>rt(r))),e};var Er=(t,e={})=>{var s,i,a,c,l,f;w(e)&&(e={props:e}),J(t)&&(t={template:t});let n=(s=e.context)!=null?s:()=>({}),o=!1;if(t.element){let u=t.element;u.remove(),t.element=u}else if(t.selector){let u=document.querySelector(t.selector);if(!u)throw _(1,t.selector);u.remove(),t.element=u}else if(t.template){let u=document.createRange().createContextualFragment(fn(t.template));t.element=u}else t.json&&(t.element=qe(t.json,t.isSVG,e.config),o=!0);t.element||(t.element=document.createDocumentFragment()),((i=e.useInterpolation)==null||i)&&tn(t.element,(a=e.config)!=null?a:le.getDefault());let r=t.element;if(!o&&(((l=t.isSVG)!=null?l:ut(r)&&((c=r.hasAttribute)!=null&&c.call(r,"isSVG")))||ut(r)&&r.querySelector("[isSVG]"))){let u=r.content,p=u?[...u.childNodes]:[...r.childNodes],h=rt(p);t.element=qe(h,!0,e.config)}return{context:n,template:t.element,inheritAttrs:(f=e.inheritAttrs)!=null?f:!0,props:e.props,defaultName:e.defaultName}};var ln=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 Rr=t=>{var e;(e=Ue())==null||e.onMounted.push(t)};var wr=t=>{let e,n={},o=(...r)=>{if(r.length<=2&&0 in r)throw _(4);return e&&!n.isStopped?e(...r):(e=ki(t,n),e(...r))};return o[te]=1,Ve(o,!0),o.stop=()=>{var r,s;return(s=(r=n.ref)==null?void 0:r.stop)==null?void 0:s.call(r)},re(()=>o.stop(),!0),o},ki=(t,e)=>{var s;let n=(s=e.ref)!=null?s:ae(null);e.ref=n,e.isStopped=!1;let o=0,r=$e(()=>{if(o>0){r(),e.isStopped=!0,Z(n);return}n(t()),++o});return n.stop=r,n};var Sr=(t,e)=>{let n={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return o&&!n.isStopped?o(...s):(o=Li(t,e,n),o(...s))};return r[te]=1,Ve(r,!0),r.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},re(()=>r.stop(),!0),r},Li=(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 l=t.map(f=>f());o(e(...l)),++r},i=[];for(let c of t){let l=se(c,s);i.push(l)}return s(null),o.stop=()=>{i.forEach(c=>{c()})},o};var vr=(t,e)=>{let n={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw _(4);return o&&!n.isStopped?o(...s):(o=Ii(t,e,n),o(...s))};return r[te]=1,Ve(r,!0),r.stop=()=>{var s,i;return(i=(s=n.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},re(()=>r.stop(),!0),r},Ii=(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=se(t,i=>{if(r>0){o.stop(),n.isStopped=!0,Z(o);return}o(e(i)),++r},!0),o};var Ar=t=>(t[Rt]=1,t);var Nr=(t,e)=>{if(!e)throw _(5);let o=je(t)?Ce: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){H(6,`persist: failed to parse data for key ${e}`,a),r()}else r();let i=$e(r);return re(i,!0),t};var Gn=(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},Or=Gn;var Mr=(t,e,n)=>{let o=[],r=()=>{e(t.map(i=>i()))};for(let i of t)o.push(se(i,r));n&&r();let s=()=>{for(let i of o)i()};return re(s,!0),s};var kr=t=>{if(!x(t))throw _(3,"observerCount");return t(void 0,void 0,2)};var Lr=t=>{Jn();try{t()}finally{Qn()}},Jn=()=>{xe.stack||(xe.stack=[]),xe.stack.push(new Set)},Qn=()=>{let t=xe.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 xe.stack;for(let n of e)try{Z(n)}catch(o){console.error(o)}};return jr(Vi);})();